From c7d35b92b90940b466ea016dbbb3f1c6dfa0c3ab Mon Sep 17 00:00:00 2001 From: Antonis Tarantilis Date: Fri, 3 Mar 2023 09:31:49 +0000 Subject: [PATCH 01/45] refactor(header): firefox accessibility errors fix --- src/ui/Header/Header.jsx | 1 + theme/themes/eea/elements/button.overrides | 31 +++++++++++++++++----- 2 files changed, 25 insertions(+), 7 deletions(-) diff --git a/src/ui/Header/Header.jsx b/src/ui/Header/Header.jsx index 0b6406b8be..471f5c23ca 100644 --- a/src/ui/Header/Header.jsx +++ b/src/ui/Header/Header.jsx @@ -278,6 +278,7 @@ const Main = ({ activeItem.indexOf(item['@id']) !== -1 || activeItem.indexOf(item.url) !== -1 } + tabIndex="0" > {renderGlobalMenuItem(item, { onClick: menuOnClick, diff --git a/theme/themes/eea/elements/button.overrides b/theme/themes/eea/elements/button.overrides index 6f24819837..051c0b94bb 100644 --- a/theme/themes/eea/elements/button.overrides +++ b/theme/themes/eea/elements/button.overrides @@ -33,7 +33,8 @@ cursor: pointer; text-align: initial; - &:focus { + &:focus, + &:focus-visible { outline: none; } } @@ -56,7 +57,8 @@ cursor: pointer; text-align: initial; - &:focus { + &:focus, + &:focus-visible { outline: none; } } @@ -119,12 +121,14 @@ p.ui.button { &:hover, &:active, - &:focus { + &:focus, + &:focus-visible { background-color: @textButtonBackground; color: @primaryColorHover; } - &:focus { + &:focus, + &:focus-visible { box-shadow: @textButtonFocusedBoxShadow; } } @@ -141,6 +145,7 @@ p.ui.button { &:active, &:visited, &:focus, + &:focus-visible, &:hover { border: @buttonBorder @white; background: @searchButtonBackground; @@ -193,6 +198,8 @@ p.ui.button { .ui.inverted.primary.button:hover, .ui.inverted.primary.buttons .button:focus, .ui.inverted.primary.button:focus, +.ui.inverted.primary.buttons .button:focus-visible, +.ui.inverted.primary.button:focus-visible, .ui.inverted.primary.buttons .button.active, .ui.inverted.primary.button.active, .ui.inverted.primary.buttons .button:active, @@ -206,7 +213,9 @@ p.ui.button { } .ui.inverted.primary.buttons .button:focus, -.ui.inverted.primary.button:focus { +.ui.inverted.primary.button:focus, +.ui.inverted.primary.buttons .button:focus-visible, +.ui.inverted.primary.button:focus-visible { background-color: @primaryColorFocus; } @@ -231,6 +240,8 @@ p.ui.button { .ui.inverted.secondary.button:hover, .ui.inverted.secondary.buttons .button:focus, .ui.inverted.secondary.button:focus, +.ui.inverted.secondary.buttons .button:focus-visible, +.ui.inverted.secondary.button:focus-visible, .ui.inverted.secondary.buttons .button.active, .ui.inverted.secondary.button.active, .ui.inverted.secondary.buttons .button:active, @@ -244,7 +255,9 @@ p.ui.button { } .ui.inverted.secondary.buttons .button:focus, -.ui.inverted.secondary.button:focus { +.ui.inverted.secondary.button:focus, +\.ui.inverted.secondary.buttons .button:focus-visible, +.ui.inverted.secondary.button:focus-visible { background-color: @secondaryColorFocus; } @@ -275,6 +288,8 @@ p.ui.button { .ui.inverted.tertiary.button:hover, .ui.inverted.tertiary.buttons .button:focus, .ui.inverted.tertiary.button:focus, +.ui.inverted.tertiary.buttons .button:focus-visible, +.ui.inverted.tertiary.button:focus-visible, .ui.inverted.tertiary.buttons .button.active, .ui.inverted.tertiary.button.active, .ui.inverted.tertiary.buttons .button:active, @@ -289,7 +304,9 @@ p.ui.button { } .ui.tertiary.buttons .button:focus, -.ui.tertiary.button:focus { +.ui.tertiary.button:focus, +.ui.tertiary.buttons .button:focus-visible, +.ui.tertiary.button:focus-visible { background-color: @tertiaryColorFocus; } From d13137f024d6357514b85f184d219eb81dd585f2 Mon Sep 17 00:00:00 2001 From: David Ichim Date: Mon, 6 Mar 2023 22:35:29 +0200 Subject: [PATCH 02/45] change(mega-menu): use lists for navigation, enhance voice over support for better accessibility --- src/ui/Header/Header.jsx | 6 ++-- src/ui/Header/HeaderMenuPopUp.js | 48 +++++++++++++++++--------------- 2 files changed, 29 insertions(+), 25 deletions(-) diff --git a/src/ui/Header/Header.jsx b/src/ui/Header/Header.jsx index 471f5c23ca..77a0748e5d 100644 --- a/src/ui/Header/Header.jsx +++ b/src/ui/Header/Header.jsx @@ -265,7 +265,7 @@ const Main = ({
{menuItems && ( -
{renderGlobalMenuItem(item, { onClick: menuOnClick, })} ))} -
+ )} {!hideSearch && ( diff --git a/theme/themes/eea/elements/button.overrides b/theme/themes/eea/elements/button.overrides index 6f24819837..5d9cce6416 100644 --- a/theme/themes/eea/elements/button.overrides +++ b/theme/themes/eea/elements/button.overrides @@ -116,6 +116,7 @@ p.ui.button { background-color: @textButtonBackground; color: @primaryColor; text-decoration: underline; + padding: @textButtonPadding; &:hover, &:active, diff --git a/theme/themes/eea/elements/button.variables b/theme/themes/eea/elements/button.variables index ac8f1c47f7..a66095b464 100644 --- a/theme/themes/eea/elements/button.variables +++ b/theme/themes/eea/elements/button.variables @@ -38,6 +38,7 @@ /* Text Button */ @textButtonBackground: transparent; +@textButtonPadding: @em-space-1 @em-space-3; @textButtonFocusedBoxShadow: 0 0 0 2px @primaryColorHover inset; /* Search Button */ From 03fe83dce70c6931c543b93c71e3cd8e16f99ec8 Mon Sep 17 00:00:00 2001 From: Antonis Tarantilis Date: Tue, 28 Mar 2023 11:25:32 +0000 Subject: [PATCH 14/45] change(ContextNavigation): accessibility updates, not restructuring of the volto component --- .../ContextNavigation.stories.jsx | 22 +++++++++++++++---- .../themes/eea/extras/contextNavigation.less | 6 +++-- .../eea/extras/contextNavigation.variables | 2 +- 3 files changed, 23 insertions(+), 7 deletions(-) diff --git a/src/ui/ContextNavigation/ContextNavigation.stories.jsx b/src/ui/ContextNavigation/ContextNavigation.stories.jsx index 9ad3297193..e1ff9428e6 100644 --- a/src/ui/ContextNavigation/ContextNavigation.stories.jsx +++ b/src/ui/ContextNavigation/ContextNavigation.stories.jsx @@ -125,14 +125,15 @@ function Template({ ...args }) { return (
- + \ No newline at end of file diff --git a/docs/docs/webdev/Guidelines/intro/index.html b/docs/docs/webdev/Guidelines/intro/index.html index dc80a3b26d..9eb5d3a9a6 100644 --- a/docs/docs/webdev/Guidelines/intro/index.html +++ b/docs/docs/webdev/Guidelines/intro/index.html @@ -5,14 +5,14 @@ Intro | EEA Design System - +

Intro

Guidelines

The DS v1 is the EEA's design system, created with a set of guiding principles that followed throughout the process. By following a user-centered design approach and best UX practices, the DS v1 is the result of in-depth research into the users' needs and goals, offering solutions that are assessed, tested and revised continuously. All components included in the DS v1 follow the Web Content Accessibility Guidelines (WCAG).

The main characteristics of our design system are:

  • Minimal use of drop shadows
  • Sharp edges and corners
  • Uncluttered, distraction-free design
  • High readability with clear typography
  • Easily adjusted for responsive design

We emphasize more on functionality rather than appearance and in parallel we try to offer a consistent appearance irrespective of the screen resolution and types of devices. Trying not to use unnecessary designing elements, we focus on faster site designing and minimum loading time.

- + \ No newline at end of file diff --git a/docs/docs/webdev/Guidelines/spacing/index.html b/docs/docs/webdev/Guidelines/spacing/index.html index e4d57354a6..1d8202cc30 100644 --- a/docs/docs/webdev/Guidelines/spacing/index.html +++ b/docs/docs/webdev/Guidelines/spacing/index.html @@ -5,7 +5,7 @@ Spacing | EEA Design System - + @@ -13,7 +13,7 @@

Spacing

To ensure that layouts are visually balanced, most measurements align to 8px, which corresponds to both spacing and the overall layout. Consistent spacing creates visual balance that makes the user interface (UI) easier for merchants to scan. Apply consistent spacing to improve the quality of the UI. Components are sized in 8px increments, ensuring a consistent visual rhythm across each screen. Smaller elements, such as icons, can align to a 4px grid, while typography can fall on a 4px baseline grid, meaning that each line’s typographic baseline is spaced in increments of 4px from its neighbor.

Principles

Create visual rhythm
We use incrementally measured spacing to create harmonious arrangements of components and text. This gives the elements a predictable rhythm, which makes the experience as a whole feel intentional and well designed.

Precise but flexible
Beyond mathematical precision, spacing also reacts to the objects it surrounds, giving more space to larger objects, less to small. Optical adjustments can also be made if an element looks off and the spacing needs a nudge to make things feel right.

Two types of spacing scale

Component Spacing
Controls the spacing inside the components.
For components use smaller increments. ( 4px, 8px, 12px, 16px, 20px, 24px, 32px, 36px, 40px, 48px)

Layout Spacing
Controls space between the components.
For layout scale use larger increments (16px, 24px, 32px, 48px, 64px, 96px )

Spacing Gaps in pixels

Token namePixelsTypically used
space-0251pxnot typically used
space-052pxnot typically used
space-14pxseparate related elements and for small padding
space-28pxonly for right and left padding of buttons, form elements and horizontal tabs
space-312pxto separate unrelated elements or groups and for normal padding
space-416pxto separate sub-sections of content
space-520pxto separate sub-sections of content
space-624pxto separate sub-sections of content
space-728pxto separate sections of content
space-832pxto separate sections of content
space-936pxto separate sections of content
space-1040px
space-1144px
space-1248px
space-1352px
space-1456px
space-1560px
space-1664px
space-1768px
space-1872px
space-1976px
space-2080px
space-2496px

Spacing Gaps in rem

Token nameRem
rem-space-0250.063rem
rem-space-050.125rem
rem-space-10.25rem
rem-space-20.5rem
rem-space-30.75rem
rem-space-41rem
rem-space-51.25rem
rem-space-61.5rem
rem-space-71.75rem
rem-space-82rem
rem-space-92.25rem
rem-space-102.5rem
rem-space-112.75rem
rem-space-123rem
rem-space-133.25rem
rem-space-143.5rem
rem-space-153.75rem
rem-space-164rem
rem-space-174.25rem
rem-space-184.5rem
rem-space-194.75rem
rem-space-205rem
rem-space-246rem

Spacing Gaps in em

Token nameRem
em-space-0250.063em
em-space-050.125em
em-space-10.25em
em-space-20.5em
em-space-30.75em
em-space-41em
em-space-51.25em
em-space-61.5em
em-space-71.75em
em-space-82em
em-space-92.25em
em-space-102.5em
em-space-112.75em
em-space-123em
em-space-133.25em
em-space-143.5em
em-space-153.75em
em-space-164em
em-space-174.25em
em-space-184.5em
em-space-194.75em
em-space-205em
em-space-246em
- + \ No newline at end of file diff --git a/docs/docs/webdev/Guidelines/typography/index.html b/docs/docs/webdev/Guidelines/typography/index.html index a5fe0e8433..77b3a3034f 100644 --- a/docs/docs/webdev/Guidelines/typography/index.html +++ b/docs/docs/webdev/Guidelines/typography/index.html @@ -5,7 +5,7 @@ Typography | EEA Design System - + @@ -16,7 +16,7 @@ but 150% tends to be the most quoted sweet spot (and a WCAG recommendation). You should experiment to see what looks best with your text. The line-height value is always divisible by 4 to support the grid.

This is why for body text we use 150% line height, while for headers we use 120% due to the larger font size where using 150% would add too much space between the heading lines.


Letter spacing

Letter spacing (also known as character spacing or tracking ) is the adjustment of the horizontal white space between the letters in a block of text. Unlike kerning, which affects only designated pairs of letters, letterspacing affects every pair. By adjusting letter spacing to the environment you are working with you will help readers consume your information faster, and more efficiently. The fun part is that they won’t even notice it!

Headings -0.015em (-1.5%)

Body 0%

Caption and Small text 0.01em (1%)


Text color

Body text color is blue-grey-5 (#3D5265)

Color also plays a key role in an interface’s typographic hierarchy, often by established types like:

  • Brand colors and supplementary colors, for most interface text whether body or heading.
  • Interactive, not just for links but also flat buttons, tab labels, and more
  • Disabled, often resulting is especially lower contrast treatments
  • Error, usually red, for the highest contrast with its surroundings

Line length

Line-length is the number of characters displayed in a single line. Lines that are too long or too short can distract readers. For readability, limit to no more than 80 characters including spaces for desktop. Line length for mobile is recommended to use 40 to 60 characters including space per line.


Base Font Size

We set 16px (1rem) as the base font size for body text to ensure readability. It is the default font size for most browsers.


Desktop Styles

Heading 1

Font Size: 44px or 2.75rem
Letter spacing: -0.015em (-1.5%)
Line height: 1.2 (120%)

Heading 2

Font Size: 32px or 2rem
Letter spacing: -0.015em (-1.5%)
Line height: 1.2 (120%)

Heading 3

Font Size: 26px or 1.625rem
Letter spacing: -0.015em (-1.5%)
Line height: 1.2 (120%)

Heading 4

Font Size: 20px or 1.25rem
Letter spacing: -0.015em (-1.5%)
Line height: 1.2 (120%)
Heading 5
Font Size: 18px or 1.125rem
Letter spacing: -0.015em (-1.5%)
Line height: 1.2 (120%)

Body text

Font Size: 16px or 1rem
Letter spacing: 0 (0%)
Line height: 1.5 (150%)

Caption text

Font Size: 14px or 0.875rem
Letter spacing: 0.01 (1%)
Line height: 1.5 (150%)

Small text

Font Size: 12px or 0.75rem
Letter spacing: 0.01 (1%)
Line height: 1.5 (150%)

Mobile Styles

Heading 1

Font Size: 30px or 1.875rem
Letter spacing: -0.015em (-1.5%)
Line height: 1.2 (120%)

Heading 2

Font Size: 24px or 1.5rem
Letter spacing: -0.015em (-1.5%)
Line height: 1.2 (120%)

Heading 3

Font Size: 20px or 1.25rem
Letter spacing: -0.015em (-1.5%)
Line height: 1.2 (120%)

Heading 4

Font Size: 18px or 1.125rem
Letter spacing: -0.015em (-1.5%)
Line height: 1.2 (120%)

Body

Font Size: 16px or 1rem
Letter spacing: 0 (0%)
Line height: 1.5 (150%)

Caption

Font Size: 14px or 0.875rem
Letter spacing: 0.01em (1%)
Line height: 1.5 (150%)

Small text

Font Size: 12px or 0.75rem
Letter spacing: 0.01em (1%)
Line height: 1.5 (150%)

Typography tokens

Weight

Token nameValueStyle
font-weight-1100Thin
font-weight-2200Light
font-weight-3300Book
font-weight-4400Regular
font-weight-5500Medium
font-weight-6600SemiBold
font-weight-7700Bold
font-weight-8800ExtraBold
font-weight-9900Black

Line height

Token nameValue(no unit)
font-lineheight-00.95
font-lineheight-01.1
font-lineheight-11.2
font-lineheight-21.375
font-lineheight-31.5
font-lineheight-41.75
font-lineheight-52

Letter spacing

Token nameValue(em)
font-letterspacing-000-.02
font-letterspacing-00-.015
font-letterspacing-0-.01
font-letterspacing-1.01
font-letterspacing-2.015
font-letterspacing-3.02
font-letterspacing-4.075
font-letterspacing-5.15

Font size

Token nameValue(rem)Value(px)
font-size-00.7512
font-size-0.87514
font-size-1116
font-size-21.12518
font-size-31.2520
font-size-41.524
font-size-51.62526
font-size-61.87530
font-size-7232
font-size-82.2536
font-size-92.540
font-size-102.7544

Font size fluid

Token nameValue
font-size-fluid-0clamp(1.125rem, 2vw, 1.25rem)
font-size-fluid-1clamp(1.25rem, 4vw, 1.625rem)
font-size-fluid-2clamp(1.5rem, 6vw, 2rem)
font-size-fluid-3clamp(1.875rem, 9vw, 2.75rem)
- + \ No newline at end of file diff --git a/docs/docs/webdev/Resources/developer-guidelines/index.html b/docs/docs/webdev/Resources/developer-guidelines/index.html index a3bf4f516f..5cabc5871d 100644 --- a/docs/docs/webdev/Resources/developer-guidelines/index.html +++ b/docs/docs/webdev/Resources/developer-guidelines/index.html @@ -5,7 +5,7 @@ Developer Guidelines | EEA Design System - + @@ -71,7 +71,7 @@ guidelines as to what combinations of props and variations are allowed, to ensure a consistent look and feel. One place to document these constraints is in the control options we have in Storybook.

- + \ No newline at end of file diff --git a/docs/docs/webdev/Resources/theming-guidelines/index.html b/docs/docs/webdev/Resources/theming-guidelines/index.html index f4256a8edb..1ed7b4e1bf 100644 --- a/docs/docs/webdev/Resources/theming-guidelines/index.html +++ b/docs/docs/webdev/Resources/theming-guidelines/index.html @@ -5,7 +5,7 @@ Theming Guidelines | EEA Design System - + @@ -28,7 +28,7 @@ it's simply a job of changing one global variable:

// site.variables
/* This adjusts the meta alignment across all elements */
@metaAlign: right;

The same is true with colors used in components, try to avoid custom values set on components only as they should be part of the site.variables color pallete.

Semantic UI global setting example

We see this rule played out in many places within site.variables:

// site.variables
/*--------------
Form Input
---------------*/
/* This adjusts the default form input across all elements */
@inputBackground : @white;

Then within form.variables we have several rules that make use of the global setting:

// form.variables
/* Text Area */
@textAreaBackground: @inputBackground;

/* Inverted */
@invertedInputBackground: @inputBackground;

Check components design when having odd numbers or images

As written down in the Card component issue, if your component accepts images consider how they would adapt in case there is a mix between portrait and landscapei images.

What about situations where you have an odd number of elements or the body of the components differ in size?

The components need to be checked for such situations and to ensure they are flexible to deal with these mix and match elements.

Ex:

If the card is flex based and the parent wrapper is flex as well, consider adding a max-height to the card body or image wrapper so that they all keep a standard size.

Code formatting

  • CSS and less files should be formatted using prettier. Indent space will be 2 spaces.
  • Files should be edited as Unix files, with LF line endings.
- + \ No newline at end of file diff --git a/docs/docs/webdev/Templates/Grid/index.html b/docs/docs/webdev/Templates/Grid/index.html index af769f9254..40d725ea12 100644 --- a/docs/docs/webdev/Templates/Grid/index.html +++ b/docs/docs/webdev/Templates/Grid/index.html @@ -5,7 +5,7 @@ Grid | EEA Design System - + @@ -16,7 +16,7 @@

Don’ts

Do not make gutters too large or the same width as the columns. Oversized gutters will not leave enough room for content and may prevent a layout from appearing unified.

Breakpoints

A breakpoint is the screen size threshold determined by specific layout requirements. At a given breakpoint range, the layout adjusts to suit the screen size and orientation. ΕΕΑ provides responsive layouts based on 4-column, 8-column, and 12-column grids, available for use across different screens, devices, and orientations. Each breakpoint range determines the number of columns, and recommended margins and gutters for each display size.

BreakpointsColumnsGuttersMargins
Mobile320-480px420px or 1.25rem30px or 1.875rem
Tablet481-835px8 20px or 1.25rem40px or 2.5rem
Desktop1025px and above1220px or 1.25rem140px or 8.75rem
- + \ No newline at end of file diff --git a/docs/docs/webdev/Templates/PageHeader/index.html b/docs/docs/webdev/Templates/PageHeader/index.html index ec646e2034..425d88f90c 100644 --- a/docs/docs/webdev/Templates/PageHeader/index.html +++ b/docs/docs/webdev/Templates/PageHeader/index.html @@ -5,13 +5,13 @@ Page Header | EEA Design System - +

Page Header

The page header component provides users with the context of the page. It is always placed just below the site header.

Anatomy

ComponentsMandatoryOptional
Page titleyesno
Meta (content type, published date, modified date, reading time)noyes
Download - Bookmark actionsnoyes
Breadcrumb
The Breadcrumb component provides information on the page and its relationship to the site's hierarchy and structure.
It is optional if your website's navigational structure has less than 3 levels.
noyes
Image copyrightsyesno

Do's

  • ensure the pages contain all the components and elements in the anatomy table above
  • always use a page header when building your internal pages
  • when choosing a background image, make sure it highlights the main object related to the content and is meaningful
  • choose image copyright text colors accordingly, use light font color on darker images and darker font color on lighter ones

Don'ts

  • don't use more than one-page header per page
  • do not use a background image unless there is a communication need, as it might be a distraction

When to use

  • to highlight the topic of the page, or to show important information about the page

When not to use

  • the page header is not used for the homepage of the website
- + \ No newline at end of file diff --git a/docs/docs/webdev/Templates/SiteFooter/index.html b/docs/docs/webdev/Templates/SiteFooter/index.html index dc37d31729..329a313e43 100644 --- a/docs/docs/webdev/Templates/SiteFooter/index.html +++ b/docs/docs/webdev/Templates/SiteFooter/index.html @@ -5,13 +5,13 @@ Site Footer | EEA Design System - +

Site Footer

The core footer provides supplementary information such as copyright, legal, privacy, social media, contact information and links to other important sites within the EEA. It is always placed at the bottom of every page. Always use a footer when building your page

Anatomy

Νο.ComponentsMandatoryDescription
1EEA logoyesLogo of European Environment Agency (EEA)
2EIONET logoyesLogo of European Environment Information and Observation Network
3Contact information
yesLinks to the associated services available through the EEA site
4Social mediayesLinks to social EEA's social media
5Environmental information systemsyesEuropean Information Systems
6Legal navigationyesContains legal information links - consistent throughout the family sites
7Content owner detailsyesIndicates ownership over the site's content

Do's

  • make sure the footer contain all the elements in the anatomy table above

Don'ts

  • don't use more than one footer per page
- + \ No newline at end of file diff --git a/docs/docs/webdev/Templates/SiteHeader/index.html b/docs/docs/webdev/Templates/SiteHeader/index.html index c88f882c38..6250bb27df 100644 --- a/docs/docs/webdev/Templates/SiteHeader/index.html +++ b/docs/docs/webdev/Templates/SiteHeader/index.html @@ -5,13 +5,13 @@ Site Header | EEA Design System - +

Site Header

The EEA header shows users that they are on EEA portal and which service they are using.

Anatomy

Νο.ComponentsMandatoryDescription
1Official EU website statementyesAll official European Union website addresses are in the europa.eu domain
2Environmental Information systemsyesComplete list of EEA's thematic websites
3Languages
yesLanguage select
4EEA IdentityyesLogo of European Environmental Agency
5MenuyesMain navigation of the website
6SearchyesEnables the user to search and retrieve related information from using keywords

Do’s

  • You must use the EEA header at the top of every page if your service is being hosted on one of these domains:
    • Eea.europa.eu
  • Make sure that contain all mandatory element from the Anatomy table

Dont’s

  • You must not use the EEA header if your service is not being hosted in one of the above domains.
- + \ No newline at end of file diff --git a/docs/docs/webdev/Utilities/intro/index.html b/docs/docs/webdev/Utilities/intro/index.html index 417a069847..fdb0306dfb 100644 --- a/docs/docs/webdev/Utilities/intro/index.html +++ b/docs/docs/webdev/Utilities/intro/index.html @@ -5,13 +5,13 @@ Utilities | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/whatsnew/index.html b/docs/docs/whatsnew/index.html index 92369e858e..f17f464eb1 100644 --- a/docs/docs/whatsnew/index.html +++ b/docs/docs/whatsnew/index.html @@ -5,13 +5,13 @@ What's new | EEA Design System - +
-

What's new

EEA Design System (1.0)

Components ready to be used

The following components are ready to be used as Volto blocks, slate integration, or via the advanced block styler:

  • Accordion block
  • Call to Action block
  • Callout - part of the Description block, slate
  • Card - part of the Teaser block and Listing block, it includes several variations like round card e.g., used for Avatar
  • Divider block
  • Headings slate
  • Hero block
  • Item block - used for text with an icon (remixicon or custom SVG/image) on the left/right
  • List slate - ordered and unordered
  • Quote block
  • Statistic block
  • Tag block
  • Table block
  • Tabs block
  • Timeline block

Future releases

Below is a non-exhaustive list of the work-in-progress which is planned for future releases:

  • Navigation Portlet (used on the left/right hand of content)
  • Spacing/padding system. We want to add the ability for editors to consistently apply various spacing/padding on certain components in order to allow a better alignment when components are used together.
  • Improve docusaurus and storybook with more components, controls, and variations in order to better reflect what is possible in Volto.

Generated by auto-changelog.

Unreleased - 2023-03-29T12:35:52.490Z

🚀 New Features

  • feat: add viewport-(width/height) less functions 68300a3

💅 Enhancements

  • change(docusaurus): set full class name for remix icons f435e10
  • refactor(Banner.jsx): use flattenToAppURL helper function to get image source URL 24b13d7

🏠 Internal changes

  • style(theme): update container width and margins in eea theme 3e4446a

🛠️ Others

  • horizontal overflow hidden in view mode f395f27

1.0.5 - 2023-03-28

🚀 New Features

  • feat: improve full-width class 70bba7e

🐛 Bug Fixes

  • fix(banner): Add missing divider for time tag #327 from eea/banner-metadata c46a583
  • fix(banner): Add missing divider for time tag 7d68c39

1.0.4 - 2023-03-27

🚀 New Features

  • feat(copyright): Add copyright prefix - Image - refs #250724 6a72772

🏠 Internal changes

  • style(copyright): Cleanup useless min-height - refs #250724 f2457df

🛠️ Others

1.0.3 - 2023-03-24

🐛 Bug Fixes

  • fix: improve full-width class 9322259
  • fix(header): Remove z-index from subsite logo #320 from eea/subsite-logo 5091100
  • fix(header): Remove z-index from subsite logo d433a97

💅 Enhancements

  • change(header): Add search popup customizations from eea-website-theme 43e5a78
  • change(popup): create custom popup for better accessibility 036aac9
  • change(popup): added most important popup properties from Semantic ui implementation 61f65bc
  • change(banner): use custom-made Popup for better accessibility 10d0fcf
  • change(banner): use custom-made Popup for better accessibility 9108bee
  • change(popup): added also the basic property a4497ac
  • change(colors): update gray-4 color value #321 from eea/update-gray-4 f458ff0
  • change(banner): MetadataField now uses proper time tag when value is datetime b4c4d34
  • refactor(tokens): updated gray-4 b890df7
  • change(footer): Fix error and empty div if no social links are present #319 from eea/footer-social 8922246
  • change(footer): Fix error and empty div if no social links are present 5d934a6

🛠️ Others

1.0.2 - 2023-03-14

🐛 Bug Fixes

  • fix(megamenu): topic menu title is now placed before content 6004bcb
  • fix(megamenu): removed in depth nav_title renaming that set title wrongly to a-z topics 899ca0e

💅 Enhancements

  • change(megamenu): removed special styling from at a glance mega menu section fd0c4c8
  • change(footer): renamed thematic information platforms to environmental information systems e7004a7
  • change(docusaurus): updated static image of footer sections 4ff3185

🏠 Documentation changes

  • docs(What's new): Update 'What's new' d7ed9d6

🛠️ Others

  • fixed accordion selector typo f4cabc8

1.0.1 - 2023-03-13

1.0.0 - 2023-03-13

🐛 Bug Fixes

  • fix(Footer): Open internal links within the same page 5b3e409

💅 Enhancements

  • change(banner): use huge scale instead of full image for better performance 381c58e

1.0.0-beta.6 - 2023-03-10

🚀 New Features

  • feat(site): serve Roboto fonts from eea design system package instead of google fonts #311 from eea/roboto-library f6a1b3e

🐛 Bug Fixes

  • fix: full-width is now properly sized 6e2e348
  • fix(storybook): add fontDisplay 078966a

💅 Enhancements

  • change(image): copyright position fixes, moved image floating to image-block-container 53422e0
  • change(colors:) update the design system colour palette #312 from eea/update-color-palette a5fb694
  • refactor(docusaurus): added roboto library 19de7b1
  • refactor(storybook): added roboto library e991621
  • refactor(tokens): update colours 3a2c1e1
  • refactor(storybook): restored site variables a48478b
  • change(copyright): implemented copyright hover design 6b12441

🏠 Internal changes

  • chore(storybook): switched google fonts to true 4a8cae4
  • chore(colours): changed back yellow 6 87c9bbc
  • chore(lint): lint 9b0f125
  • chore(storybook): lint 29bc809

🏠 Documentation changes

  • docs(colours): colours update 161007e
  • docs(colours): accessibility ee342aa

🛠️ Others

1.0.0-beta.5 - 2023-03-07

💅 Enhancements

  • change(carousel): tweak size of carousel dots for better touch interaction e1fb823
  • change(footer): removed min width and height from links ac33219

🏠 Internal changes

  • style(hiddenStructure): Add hiddenStructure utility to be used with h1 heading on frontpage - refs #158717 672cca2

🛠️ Others

  • fixed less build failure due to changes in footer.less 190bc8c
  • lazyload bg img on footer also ae07162
  • lazyload footer images a0633c9
  • Increase performance - mobile friendly 07d86c8
  • better useOnScreen hook c214b6b
  • role change for accessibility 5e758e0
  • minimum tap dimension for mobile a25e9a8
  • Release 1.0.0-beta.5 e4417e1
  • Add Sonarqube tag using eea-website-frontend addons list b227cf8
  • feature(mobile): increased performance by lazy loading footer images #303 from eea/increase_performance 80d1df1
  • useOnScreen default export 3e6cfdd
  • use aria-labels on dropdown 27e1443
  • prettier a7f8384

1.0.0-beta.4 - 2023-03-01

🚀 New Features

  • feat(footer): Add footer description 2ad0f71
  • feat(footer): Add footer description #306 from eea/footer-description bf655d1

🐛 Bug Fixes

  • fix(footer): Don't show empty row if description is not present 2ca7f7d
  • fix(footer): Add class for children 3c50d15
  • fix(search): Fix search links color #307 from eea/search-accessibility a76f48b
  • fix(search): Fix search links color 69c42ef

💅 Enhancements

  • change(carousel): tweak card width and padding for better arrow alignment e184f70
  • change(storybook): include footer description in storybook e904aa0

🛠️ Others

1.0.0-beta.3 - 2023-02-21

🚀 New Features

  • feat(accordion): storybook accessibility by using buttons for titles #297 from eea/accessibility-accordion 809d52b

🐛 Bug Fixes

  • fix(dropdown): remove close on blur so that we can navigate links using keyboard 5442715

💅 Enhancements

  • change(language): dropdown to use links for proper keyboard navigation 6a7de30
  • refactor(images): cleared unused/renamed images assets 821f5c1
  • refactor(Accessibility): add box-shadow on focus-visible components b1adcc3
  • refactor(images): remove unused docusaurus svgs c5ef14c
  • refactor(header): add escape key functionality, actions from div to button to have proper focus state 8081aa4
  • change(language): restore dropdown duplication in order to properly show and hide language dropdown cb28888
  • change(search): to reflect changes from eea-website-theme 2cc35e0
  • refactor(footer): update p with h3 heading tag for header ca1477b
  • refactor(footer images): removed unused/renamed 186de6b
  • refactor(Accordion): div titles to buttons, test in mobile mega menu accordions eaad4b4
  • refactor(docusaurus): cleanup decorative images fedc4d4
  • change(accessibility): style outline instead of box-shadow 53209f3
  • refactor(Footer): update mobile header size 01ab7f0
  • change(header): set the logo class directly on the link f8fba50
  • refactor(images): clear docusaurus unused pngs db5c611
  • refactor(header-images): removed unused 8250d94
  • change(language): hide language dropdown by default cc6064f
  • change(header): top dropdown menu keyboard navigation #293 from eea/accessibility-megamenu-searchbox 1e6fa65
  • change(button): set focus styling for buttons 33ebfca
  • change(footer): Avoid devtools warning in FooterActions #304 from eea/avoid_warning d774824
  • change(footer): Accessibility update p with h3 heading tag for theme sites title #302 from eea/footer-accessibility 5bf70de
  • change(documentation): Rename all image files to follow the agreed convention #301 from eea/refactor-image-filenames cfe44ef

🏠 Internal changes

  • style(header): react syntax fix 3add127
  • chore(docusaurus): ignore website/.yarn 0b33ffd

🏠 Documentation changes

  • docs(guidelines): add image name convention 290747c

🛠️ Others

1.0.0-beta.2 - 2023-02-13

🐛 Bug Fixes

  • fix(footer): action and copyright #300 from eea/develop 579f3e4
  • fix(footer): action or copyright links are simple a tags for external link 9af5070
  • fix(accessibility): added navigation and footer id's for skip link 48354b9

💅 Enhancements

  • change(footer): typos and modified footer links to be center aligned ac23f04
  • change(footer): added gap for actions and copyright 7d32ddd
  • change(footer): modified footer gap b8a820a
  • change(footer): removed extra text and date from copyright section af47bbe
  • change(navigation): raise z-index of go to top link 485ca72

🏠 Internal changes

  • chore(docs): Update eea.hbs template to beta - refs #158717 196538e

🛠️ Others

1.0.0-beta.1 - 2023-02-09

🚀 New Features

  • feat(search): Add search suggestions style 6b2b77b
  • feat(search): Add search suggestions style #296 from eea/search-suggestions 3b0c956

💅 Enhancements

  • change(search): Add proper margin for search popup 190c9f5

🛠️ Others

1.0.0-alpha.15 - 2023-02-08

🚀 New Features

  • feat(Card): add teaser card grid story 53cac0b
  • feat(utilities): Complete list of text-align utilities - refs #160747 224fab6
  • feat(small): CSS for small HTML tag - refs #160747 ad3c0ad
  • feat(fw-light): Add font weight light utility - refs #160747 c44cf57

🐛 Bug Fixes

  • fix(card): teaser card dimensions on tablet size #290 from eea/teaser-card-grid 013fdf5

💅 Enhancements

  • change(card): added extra content for teaser card story 30690ae
  • refactor(style-menu): add text-color to paragraphs styles #291 from eea/stylemenu-theme-colors 2d78307
  • change(header): Small fix in search popup #292 from eea/search-popup 86c1305
  • refactor(style-menu): add text-color to paragraphs styles 3446bc2
  • change(color): darkCyan is now replaced everywhere by the new green ef3791d
  • change(header): Small fix in search popup 3d622ea

🛠️ Others

1.0.0-alpha.14 - 2023-01-30

💅 Enhancements

  • change(mobile menu): integrate a-z topic with menu rendering logic #287 from eea/develop 05d4c04
  • change(mobile menu): integrate a-z topic with menu rendering logic 246d3d8

🛠️ Others

1.0.0-alpha.13.1 - 2023-01-30

💅 Enhancements

  • change(mobile menu): hardcode a-z topics to '/en/topics-in-depth' #286 from eea/develop 6436224
  • change(mobile menu): hardcode a-z topics to '/en/topics-in-depth' 5235b52

🛠️ Others

1.0.0-alpha.13 - 2023-01-27

🚀 New Features

  • feat(utilities): added has--bg--top center and bottom utility classes 051e6d7

🐛 Bug Fixes

  • fix(header): update green color used in page header #284 from eea/fix-banner-background 29d54db

💅 Enhancements

  • change(site): added fixes from customVolto.css to design package 51ba9b5
  • refactor(Banner): update banner background green color fd4a552
  • change(mobile menu): changed link for a-z topics to point to in depth 721bf23

🛠️ Others

  • 1.0.0-alpha.13 release #285 from eea/develop c966940
  • bump next version to alpha 13 897e906
  • Back to dev 5780dc7

1.0.0-alpha.12 - 2023-01-24

🚀 New Features

  • feat(card, colors): visited color change and title on image option for cards #283 from eea/develop e638ee6

🐛 Bug Fixes

  • fix(mobile menu): sub links when an accordion section is active bb3be81

💅 Enhancements

  • refactor(Card): create card template for stories 2fa77f3
  • refactor(Card): add image with title css 6e6e63e
  • change(card): implement title on image within image section ff6cc60
  • change(card): added image card section, tweaked mobile heading size 0f879e1
  • change(cards): moved image gradient overlay to a mixin.less file 8b4928a
  • refactor(card): Update titles value and size c35ad5c
  • refactor(docusaurus): applied image naming convention ee7bc29
  • change(cards): added image for all storybook card examples 3f19413
  • change(banner): restored label value of metadata field when type isn't date 571a4f2
  • change(card): title padding value for a more balance look 74b6556
  • change(card): removed uppercase transform from title on image 2948ae1
  • change(colors, Docusaurus): Visited link colour change and thematic logo replacement #278 from eea/refactor-visited-link f82d978
  • refactor(storybook): visited link variables b209b2f

🏠 Documentation changes

  • docs(colors): visited link update ece77fe

🛠️ Others

  • fix typos in footer gradient variables 4006640
  • change version to alpha 12 instead of 1 final 3225025
  • feature(card): new card variation with title on top of image #267 from eea/title-on-image-card 2c0ca95
  • Back to dev 477d997

1.0.0-alpha.11 - 2023-01-17

🚀 New Features

  • feat(docusaurus): Header and footer elements section #277 0df271c

🐛 Bug Fixes

  • fix(banner): storybook date input and simplified gradient opacity 7674d76
  • fix(banner): re-added title class on banner title 6d15799

💅 Enhancements

  • refactor(banner): sync storybook and Volto component c9087cc
  • change(banner): removed margin from title 17e592c
  • refactor(banner): sync storybook and Volto component #275 from eea/sync-page-banner-theme 4331fb4

🏠 Documentation changes

  • docs(footer): updates on header elements b41c550
  • docs(footer): add elements anatomy d9f0872

🛠️ Others

  • add(banner): banner title css d003247
  • Release 1.0.0-alpha.11 07e8f85
  • renamed image elements as requested in review 8541fb6
  • remove(banner-gradiant): image gradiant in favour of text 1b58520
  • update(gradient): use 8deg angle 6fd597d
  • update(gradiant): make it 0deg 1bb2696
  • remove(comment) referencing old verison of title 4226d42

1.0.0-alpha.10 - 2023-01-13

🐛 Bug Fixes

  • fix(subsite): Fix logo size on subsite section 65fff54
  • fix(subsite): Fix logo size on subsite section #279 from eea/subsite-fixes 8f6cf94
  • fix(mega-menu): show sub grid only if there are children ddfbd82

🛠️ Others

  • Add variable definitions 293fe65
  • Release 1.0.0-alpha.10 7014d08
  • Add Sonarqube tag using advisory-board-frontend addons list ef58a6f
  • Back to dev 31d4616

1.0.0-alpha.9 - 2022-12-28

💅 Enhancements

  • change(contextnav): Default title is text, custom title is link #273 from eea/context-nav-link-title ef7bdb7

🛠️ Others

  • Show document and folder content-type in Navigation listing 8471db3
  • Default title is text, custom title is link 1ae95b0
  • Context nav title link to # a27a6b7

1.0.0-alpha.8 - 2022-12-23

🚀 New Features

  • feat(copyright): Align copyright options with Volto integration - refs #158210 6bac7f6

💅 Enhancements

  • refactor(logo): import theme site logos to the story 2f29136
  • refactor(logo): update logo and mega search gradient e11f44d
  • refactor(logos): convert logo names to lowercase 07b8228
  • change(item): use default logic of setting align class on content 6b5b47c
  • refactor(logo): update logo 170efe5
  • refactor(logos): convert storybook logo names to lowercase c4b24ec
  • refactor(logo): add eea roboto font logo variations de1224a
  • refactor(logo): add container and segment to logo story 61eff16
  • change(item): removed requirement for aligned classes to be on content 30c0d5d
  • change(logos): cleanup eea logo reference to only eea-logo and eea-logo-white.svg 2796e05

🏠 Internal changes

  • chore(npmignore): Reduce npmjs package size 164c8a5
  • chore(npmignore): Reduce npmjs package size ade9d5b
  • chore(docs): renamed logo mdx to md 52e9d46

🏠 Documentation changes

  • docs(logos): svgs without classes 28a5833
  • docs(logos): add dark mode logos ccc1609
  • docs(logo): update eea logos and add logo wrapper 91cdd66
  • docs(logo): update logos on docusaurus 760e101
  • docs(logos): updated svgs dc224e1
  • docs(logos): add thematic logos 5a21a30
  • docs(logos): add zipped svgs for download 5855bf8
  • docs(logos): wisef logo update 8f90b59
  • docs(logos): move to static, add download 8c1fd5f
  • docs(logos): improve eea logo visibility 82188ab
  • docs(logos): change eea logo to svg f57b846

🛠️ Others

  • logo update or docusaurus thematic logo listing #274 from eea/develop dde90be
  • (feat): Add ability to disable the language select from website top menu - refs #158616 411c8e4
  • Proof reading page header section 230239e
  • bump package version b4628be
  • feature(docusaurus, storybook): logos selection for sites plus inverted options #253 from eea/doc-logo-page dbfc90d
  • Add Sonarqube tag using advisory-board-frontend addons list c4769e9
  • test(Jenkins): Run tests and cypress with latest canary @plone/volto 92feea0

1.0.0-alpha.7 - 2022-12-16

🚀 New Features

  • feat(item): normalized size for image or icon items #258 from eea/refactor-items 945170f

🐛 Bug Fixes

  • fix(card): rounded after removal of has--rounded--true style class d4727af
  • fix(item): removed margin set for description which pushed the text from icon d9d4031
  • fix(project): Proper paths if volto-eea-design-system package is not installed, but in development #270 from eea/correct_paths 0f8ee8d

💅 Enhancements

  • refactor(item): update icon variations and paddings 6a407b3
  • refactor(item): update spacing 2fd91c4
  • refactor(item): initial values for new sizes & add description class 3546296
  • refactor(item): add icon and more size options 1120bb6
  • refactor(item): update image and icon sizes b802573
  • change(item): set same height as width on item images 69cbd23
  • refactor(item): update item part 2 9812ae2
  • change(item): rename large to big class 24ff127
  • change(item): added tiny size that outputs 24px icon sizes 2ea9636
  • change(image): added preview image size default to 400px a0aa867
  • refactor(item): update operator for condition controls 149ccb2

🛠️ Others

  • Proper paths if the package is not installed, but in development 7a2655f
  • Update .project.eslintrc.js a2fd3f2
  • added back descriptionDistance variable until package release 3af811a
  • Release 1.0.0-alpha.7 7e66bcc
  • Add Sonarqube tag using cca-frontend addons list ce47e9b
  • Back to dev cb531c9

1.0.0-alpha.6 - 2022-12-07

🚀 New Features

  • feat(copyright): create copyright component and import it in banner 8fcde9d
  • feat(Header): add hideSearch prop 13ddfe5
  • feat(Docusaurus): Image copyright information #257 from eea/image-copyright-info 2119515

🐛 Bug Fixes

  • fix(tags): content gap when using tags-content wrapper c4eb9b8

💅 Enhancements

  • refactor(hero): add copyright component to hero 0fa88fa
  • change(copyright): implementation to add classes on content sections e10bde6
  • change(copyright): removed color variant 747b8a2
  • change(copyright): removed copyrightVariant from Banner and Hero stories ac62e07
  • change(tagList): modified implementation to align to volto-tags-block 7a57a3d
  • refactor(copyright): remove data section 52cb09d
  • change(copyright): line height to match page header implementation a56254e
  • change(copyright): now uses text color css variable with fallback to white ee7268b

🏠 Documentation changes

  • docs(copyright): copyright documentation a90ed76

🛠️ Others

  • Update usage_markdown.md f76d4a2
  • grammar fixes cb2a5a5
  • Release 1.0.0-alpha.6 6ca32f0
  • feature(copyright): image information #250 from eea/feature-copyright a8618c7
  • lint fix by introducing local variable tagsGap 7b6c0ae
  • Update 3-images.md 1b0ef03

1.0.0-alpha.5 - 2022-11-29

🚀 New Features

  • feat(Iconography): import and showcase remix icons 777112f

🐛 Bug Fixes

  • fix(docusaurus): right bar overflow fix 197c763
  • fix(lists): bullet position by using padding instead of margin 0ecae2e
  • fix(label): color for yellow variant as white isn't accessible on yellow color 91d8880
  • fix(contentBox): avoid text decoration for header-link added on cards 3ccb592
  • fix(label): margin value for ribbon image left and right margin f8e1129

💅 Enhancements

  • refactor(docusaurus): eea color palette in separate file 6c855df
  • refactor(docusaurus): classes for color boxes 80219d5
  • refactor(docusaurus): move supplementary, state and link colors to partials 2776be3
  • refactor(docusaurus): fix side menu / moved more content in palette partial f5b7077
  • change(tag): set gap on tags element for margin between tag elements 726bc6d

🏠 Internal changes

  • chore(colours): fix wrong class name 51ad0a8

🏠 Documentation changes

  • docs(docusaurus): Iconography updates, thematic platforms 2a0e596
  • docs(colors): thematic pages integration ea7a422
  • docs(docusaurus): color updates cc13b54
  • docs(colors): fix swatches accessibility 306cb74
  • docs(docusaurus): typography and colors fixes according to comments on PR ae20a72
  • docs(colours): adjust logos heights 854d4fb
  • docs(typography): merge designer and dev units 65c240e
  • docs(typography): readded extra font sizes, fixed fluid a4a5d89
  • docs(typography): changed em to percentages d417600
  • docs(colors): minors updates and instructions 84ac882
  • docs(colors): blue-grey-6 adjustment e7ab2d1
  • docs(colours): added active colour 574f7a9
  • docs(colors): switch FISE logo to png 335471f
  • docs(colors): updated visited 0248fd1
  • docs(FISE): replaced logo f7d8331

🛠️ Others

  • perf(docusaurus): added remixicon and roboto locally b67b1a7
  • feature(Docusaurus): Updates on color palette information including thematic websites #231 from eea/refactor-docusaurus ec7843d
  • Upgrade Jenkinsfile storybook to yarn 3 d20de8d
  • Back to dev 563fbc5

1.0.0-alpha.4 - 2022-11-22

🐛 Bug Fixes

  • fix(cards-storybook): load slick carousel css for arrow and pagination styles 1159b1b

💅 Enhancements

  • change(cards): refactor cards theming implementation d4e4542
  • change(cards): allow rounded, inverted and theme parameter to be set by has classes 4b4ad89
  • change(card): expect has classes on the card directly 6a9e38b
  • change(utilities): added has text classes to the text alignment utilities e6974c6
  • change(utilities): modified class name for text align using has naming 579a0cb
  • change(theme): ensure that only direct children of container have a default top and bottom margin 7f8b8dc
  • change(build): upgrade action to trigger workflow and wait to latest version c63ad3f
  • refactor(card): theming implementation to allow has theming classes #265 from eea/card-refactoring 24edc99
  • change(theme): add slick-carousel dependency f2eec7d

🛠️ Others

1.0.0-alpha.3 - 2022-11-16

🚀 New Features

  • feat(Header): Add subsite section styling #263 from eea/subsite 00398b8

🐛 Bug Fixes

  • fix(search): position now changed by default to absolute from relative 51b08fc
  • fix(megaMenu): remove paddings for buttons added by active class ec33ebf

💅 Enhancements

  • change(components): load overrides files for our defined semantic files adde7a9
  • change(container): fullwidth now take into account devices without hover 5a35a65
  • change(container): ensure only the top level elements behave like containers 98b85d1
  • change(container): modified column-block grid to remove margin and padding when using full width class 35c1cee
  • change(mega-menu): hide home link and accordion content from mobile menu 1a69172
  • change(container): width from min width 1280px to 1365px max width 66e551e
  • change(container): removed app extras and view setting of layout sizes f6dc1ee
  • change(views): customized DefaultView to pass class into page-document area 91123aa
  • refactor(megaMenu): desktop - use buttons for menu section titles and readjust content cb9315f
  • refactor(megaMenu): add nav_title and nav_description attributes 0d7a568
  • refactor(megaMenu): style sub-title and nav-description b2a48fd
  • refactor(sidemenu): add third level list and items & update active indication e2d87da
  • change(columns): implement narrow, container and wide width classes 9696b54
  • change(container): story to add classes that modify the max width of the containers 37948f8
  • change(container): affect only left and right margin of containers 183265b
  • change(containers): modified class names after layout checks 1dc3689
  • refactor(sidemenu): add is_in_path and is_current attributes for an active example a3fe7fd
  • change(container): story to avoid adding containerwidth property to container div c13d83c
  • refactor(megaMenu): mobile - use buttons for menu section titles a7b632f
  • refactor(megaMenu): update padding variables c5f2583
  • change(views): moved narrow style bellow the default container width styles 72fa58d
  • change(listing): removed container from default view page-document area 69f3d8f
  • change(views): rename classes names to width_view and added app extras layout component 745b772
  • change(container): use important flag for left and right margin a49c83a
  • change(container): add variables for edit and add section of containers f2e2c33
  • refactor(megaMenu): update sub-title paddings 992f919
  • change(site): add a 1rem margin top and bottom on all styled classes dabf6c1
  • change(homepage): removed hiding of staging banner from homepage 4ba2cd7
  • change(container): unset values of page-document on 1200+ browser width dd5bea3
  • change(megamenu): set children to be appended to the right of the menu title b69c23a
  • change(theme): modified wide width to point to 1320px as it's perfectly divisible by 4 8f82573
  • change(theme): modified wide width to point to 1368px as it's perfectly divisible by 4 2349fee
  • change(container): renamed content-text-width to container-text-width 6f788c2
  • change(listing): provide ui container fallback if no class is passed to default view af9e94d
  • change(narrow-view): re-added container class to page-document 56b44a6
  • change(view): set container width for view-viewview class as well 29dc324

🏠 Internal changes

  • style: load header/footer overrides e5b5e0f
  • style(megaMenu): restore item description color 8a19bbb
  • style(megaMenu): restore accordion content bottom padding 8e0c5a7

🛠️ Others

  • Add subsite styling e79c0ed
  • WIP settings column grid width when using full size class affc7ac
  • code cleanup 2cdc3e5
  • fix eslint 30c52e4
  • test(estlint): Fix .project.eslintrc.js aaeaa07
  • modified left value of full width classes with toolbars 70d82d4
  • Release 1.0.0-alpha.3 8fc86a7
  • feature(content): added NarrowView useful for modifying the containers from content-area d937df7
  • jslint fix 9846159
  • Feature(container): flexible container size #260 from eea/feature-flexible-container 8f84c5b
  • Add Sonarqube tag using circularity-frontend addons list 76a41c7
  • fix broken variable call for contentBox.variables introduced in previous commit by mistake d249c11
  • clean up 89f3cb3
  • removed console log from code fad86ae

1.0.0-alpha.2 - 2022-10-28

💅 Enhancements

  • change(documentation): grammarly proof-read suggestions 9f609be
  • refactor(volto-slate): Upgrade to @plone/volto-slate - refs #153447 853d9d1

🏠 Internal changes

🛠️ Others

  • test(cypress): Upgrade to Cypress 10 / Razzle 4 c1c1f4b
  • more explanations a8b2272
  • add announcement bar, showing that EEA DS is WIP e14aeac
  • Update dependencies ee30a2b

1.0.0-alpha.1 - 2022-10-20

💅 Enhancements

  • refactor(footer): update svg and tablet contact link sizes 6aba061
  • change(blockquote): renamed to Callout reflecting the correct naming from Storybook 61a518c
  • change(footer): Shadow removed from logo & tablet updates #252 from eea/fix-footer 6df783d
  • change(colors): updated theme classes for text to use css variable colors cb089fd

🏠 Internal changes

  • style(footer): reduce social icons margin f6a9cf7

🏠 Documentation changes

  • docs(alpha): Update included components in 1.0 alpha version - refs #154387 fcc5af9
  • docs(callout): Rename Blockqoute to Callout in docusaurus - refs #154387 8d733ac

🛠️ Others

0.9.6 - 2022-12-16

🛠️ Others

  • Release 0.9.6 ae19b83
  • feature(copyright): image information #250 from eea/feature-copyright 7b323ed
  • Release-it 1f5671d

0.9.5 - 2022-10-20

🐛 Bug Fixes

  • fix(statistic): margin and slate colors when using the inverted options f263dea

0.9.4 - 2022-10-19

🐛 Bug Fixes

  • fix(edit-interface): block chooser and power user menu item colors when inside content-box 7aee4f1
  • fix(header): hero text going over the logo and menu on mobile resolutions 1434508
  • fix(content-box): z-index of box-inner and added underline to slate links c8b7c7e
  • fix(content-box): adding of underline to links c2f5f0f

💅 Enhancements

  • change(banner,colors): content box theme aware colors banner changes#254 from eea/develop bcb9a8c
  • change(Banner): Add subtitle subcomponent bb67f4c
  • change(item): moved svg filter definitions to item.overrides de70366
  • change(accordion): accordion titles with themes colors can now be modified by css variables e2ac13e
  • change(colors): in lists and callouts to allow color changes 940d1b8
  • change(colors): added backgroundColorSupplementary color variable 1f5262a
  • change(list,bullet): color is no longer primary instead it's text color css variant 8c04670
  • change(statistics): use theme colors with css variable for easy color customization fb72a01
  • change(Banner): Show label in metadata field 1acda3c
  • change(tags, items): use text color with css variable for content color for easy customization 6660e2e
  • change(styling): modified naming of theme css variables a332961
  • change(colors): added backgroundColor color variable b7e6831
  • change(quote): use secondary css var for easier color replacement 7a32312
  • change(statistics): tweaked margin of statistics so that they don't overflow over context boxes b4a8e33
  • change(accordion): allow customization of accordion title background color 6590baf
  • change(colors): introduced css variables for primary colors #247 ac80825
  • change(content-box): override primary text color to white as well 28b43c7

🛠️ Others

  • Include changes in the storybook a4d9fa4

0.9.3 - 2022-10-04

🐛 Bug Fixes

  • fix(card, contentBox): meta font size, removed header override of cards a7f94b9
  • fix(List): Ordered list item story - refs #155248 c70a2bc
  • fix(OrderedList): li third level margin left - refs #155248 fba5cb9
  • fix(cards): inherit color of card description ceda799
  • fix(accordion): Fix content default padding - refs #153783 566adf7

💅 Enhancements

  • change(site): committed fixed from custom into eea design package 9b9a1fd
  • change(jenkins): added yarn policy for storybook building 3d1b844
  • change(docusaurus): typography updates 60a93a4
  • change(item): added item image coloring when applying theming classes 0403fe4
  • change(accordion, site): change text color to tertiary instead of black 4641058
  • change(accordion): allow customization of accordion title with css variables 15e7d27
  • change(content-box): added css variables that will set text color and background for children 86cac53
  • change(tabs): allow customization of tab active and hover color 4370f42
  • change(tabs): color for tabs-block section 6778c92
  • change(cards): by default date is set to appear on the right of the meta section b7b80e8
  • change(cards): carousel dots are now relative positioned daa40a4

🏠 Documentation changes

  • docs(typography): update, local fonts 39a32d9
  • docs(typography): token fix to match used values for heightheight and letterspacing 91693ec
  • docs(typography): token fix to match used values for lineheight ff41b56
  • docs(typography): remove semibold 6eb3e08

🛠️ Others

  • test(cypress): Fix md5 dependency 17f618e

0.9.2 - 2022-09-27

0.9.1 - 2022-09-27

💅 Enhancements

  • change(cards): added ability to change the text alignment using css variables ed532ac
  • change(styles): use flex-end values only instead of end to avoid babel warning 24244b2
  • change(rounded): image size, border radius to ensure more image are turned into rounded options 51e23c1

🛠️ Others

  • Merge pull request #243 from eea/develop 576564c
  • Add Sonarqube tag using eea-website-frontend addons list 4a5be6e
  • Back to dev b251255

0.9.0 - 2022-09-19

🚀 New Features

  • feat(countUp): intall countup package and import it in statistics 10ba7cf
  • feat(docusaurus): custom editUrl function for the components usage pages - taskman refs #154076 93c4240
  • feat(site): Styling scroll-to-text fragments #238 1883fcf
  • feat(docusaurus): added Edit this page link in footer of each page - taskman refs #154076 2cf8746

🐛 Bug Fixes

  • fix(header): Prevent dropdown closing when clicking inside content 838f340
  • fix(cards): position of bullets and arrow clicking on events page 148723 22ef828
  • fix(cards): rounded images show up now even when card parent is cards 48f5e81
  • fix(statistic): add a min-width to content so unwrapped statistics don't break 7c5d511
  • fix(sideNavigation): add role list to list item 58f322b
  • fix(sideNavigation): remove unused useState import f9ea677

💅 Enhancements

  • refactor(sideNavigation): implement the design to the initial navigation & make component dynamic b673d63
  • refactor(header): update top bar 626bdd5
  • refactor(statistic): create custom export and add links 9f9ed56
  • refactor(statistic): update inverted style and add background variations 7578dc6
  • refactor(statistic): remove horizontal display on mobiles & update columns control 58f00e1
  • refactor(header): minor fixes spotted in testing 0f0f3ab
  • refactor(header): update main section heights d669f01
  • refactor(sideNavigation): remove green border and divider 939cd9b
  • refactor(link): update colors for link states 3e9f599
  • change(cards): styles img tag outside of .image ee89274
  • refactor(sideNavigation): update controls a3e8430
  • refactor(statistic): fix firefox issue for fit content 87aa113
  • change(statistics): rearrange controls order b19ae70
  • refactor(statistic): add max width to wrap text for all content 758f8ce
  • refactor(statistic): add max width to label so it wraps the text 824a127
  • change(Side menu & in page navigation): styling according to figma design #221 b2df858
  • change(header): align header with latest figma changes #232 135cd68
  • change(cards): integration when cards also contain call to action buttons f0d8766
  • refactor(iconography): icon group headings b9ccd80
  • refactor(header): add variables for some sizes 8eae84e
  • refactor(Statisctic): Rename slateVariation to extraVariation a07c589
  • change(docusaurus): started example on how to add headings for iconography 53cf843
  • change(cards): remove center alignment of rounded cards body area, only the image is now centered fdfac48
  • change(color): updated link colors #234 feabfe7
  • change(mockup): Access to figma style tokens 0bb25be
  • refactor(statistic): update margin 5190f56
  • refactor(button): adjust vertical margin db6d441

🏠 Internal changes

  • style(statistic): update decimal point 7976aa4
  • style(link): update visited link color d3b18b3

🏠 Documentation changes

  • docs(iconography): added icons, guidelines 0073f1d

🛠️ Others

  • Delete 2-test-new-page.md 749eff9
  • Create 2-test-new-page ab623ff
  • Release 0.9.0 eb7e2e5
  • stylelint fix 114e3f9
  • Move text fragments style to site.overrides 8368cbe
  • Styling scroll-to-text fragments 1bb3914
  • Update Header.stories.js 9036c74
  • feature(Docusaurus): Reflect usage of remixicon in iconography page #239 0802b32
  • Update 1-design.md 146115a
  • Test workflow for contribution - taskman refs #154076 dcb924f
  • perf(figma): access to style tokens 27d8dbe
  • Rename 2-test-new-page to 2-test-new-page.md 4e3be10

0.8.1 - 2022-08-26

🐛 Bug Fixes

  • fix(message): fix size controls ee51e1d
  • fix(docusaurus): intro page hero title color now that headers are using tertiary color 618e3cb

💅 Enhancements

  • refactor(message): restore semantic variables 1c16621
  • refactor(messages): mix semantc and token colors for messages 12efa75
  • refactor(emotiveColors): temp update for tests 61a720c
  • change(footer): removed line between sections and moved actions back to the bottom of footer d9f33e4
  • change(storybook): headings storybook now uses tertiary color by default reflecting site options 1061e77
  • refactor(message): add container to story 1259ece
  • refactor(message): remove override with custom background color on error 9b40cd7
  • refactor(message): add header controls 960c2f7
  • change(message): use semantic colors for messages #204 from eea/refactor-message 22d2c43

🏠 Documentation changes

  • docs(figma): added figma files to repo 6bd4144

0.8.0 - 2022-08-20

🚀 New Features

  • feat(IconCard): card with icon instead of image a85a179

🐛 Bug Fixes

  • fix(docusaurus): typography guideline now has real font values for headings, body, caption and small text 9508db9
  • fix(card): fix content gaps, adjust new meta section and update text color for default f1a78e1
  • fix(item): remove duplicate argType dde0be5
  • fix(iconCard): add aria-label at links 44f64c7
  • fix(card): merge fix df440ec
  • fix(heroblock): color even on edit page by inheriting color instead of using the tertiary color ac53fb7
  • fix(tab): add tabindex for accessibility error ab512be
  • fix(carousel): restore missing variable 1728312
  • fix(carousel): restore flex grow for cards and opacity for arrows ce71305

💅 Enhancements

  • refactor(carousel) add links in carousel cards & update structure and variables of less files f99cb21
  • refactor(iconCard): add control for variations and link 5e1b6a1
  • change(docusaurus, fonts): documented font letter spacing modification 522712a
  • refactor(card): css updates for card variations and styling updates c8b4a43
  • refactor(publicationCard): add links and fix accessibily issue 80adf6c
  • refactor(card): add new section in meta and remove links bfb82ae
  • refactor(item): add stackable functionality 8d714fa
  • refactor(card): update meta section and controls 5e28e12
  • refactor(roundedCard): remove unnecessary code and controls and add all variations 6305c54
  • refactor(roundedCard): add optional link for image and header a6d3bf2
  • refactor(card): add tertiary hover and update css selectors ca06948
  • change(fonts): updated font sizes with values given in figma 4b0ae48
  • change(style): color, space and adjust line-height as described in docusaurus 3366da2
  • change(headings): only h2-h6 get tertiary color 7d81308
  • change(site): removed Archivo import as we should only use Roboto font a6af056
  • change(docusaurus): use tertiary color for headings and body color mirroring the design system styles 145fe73
  • change(fonts): modified headings font size as well as line height f0771ea
  • change(fonts): updated font sizes with values given in figma f16eef7
  • change(docusaurus): use Roboto font from google fonts also for docusaurus adca8e9
  • change(headers): added headerColor variable so that thematic sites can easily choose another heading color f09d2c5
  • change(fonts): typo fixes for typography section of docusaurus cae4b02
  • change(fonts): modified footer and header values afer global font size changes f160d35
  • refactor(iconCards): run prettier fe84e46
  • change(typography): inherit header colors with @headerColor variable 91d9357
  • change(breadcrumb): use tertiary color also for breadcrumb c5cbd44
  • change(heading): on homepage on the first hero set font size to h1 and inherit color 5711096
  • refactor(carousel): update card titles to display styling fix edd966b
  • change(docusaurus): use the tertiary color for body and heading colors 11c4ed4
  • change(typography): modified lineheight-0 after headers now use 1.2 instead of 1.25 04d78a8
  • refactor(card): add links to cards and replace description with title in carousel 0258737

🛠️ Others

  • feature(heading): and cards refactoring #227 from eea/develop 334fbda
  • Update package.json 3870cf3
  • Header refactor 153536 #226 from eea/header-refactor-153536 87a6fe7
  • feature(item): icon is now stackable moving the icon on top #220 b716acf

0.7.6 - 2022-08-15

💅 Enhancements

  • change(footer): Footer updates 147837 #225 fa9ae58
  • refactor(footer): initial redesign of main section 8e85617
  • refactor(footer): restructure theme sites logo columns dcba45a
  • change(footer): set actions before thematic section on mobile db25f96
  • change(footer): fix missing key warning from react dev 77f72d5
  • change(footer): Footer updates 147837 #222 32fed23

0.7.5 - 2022-08-11

💅 Enhancements

  • change(megamenu): mobile improvements with See all links, active elements and non accordion children #224 6767b99
  • change(megamenu): render accordion only if children have children be63ce2
  • change(megamenu): mobile menu design tweaks as seen in latest figma 26d74dc
  • change(megamenu): removed icon from at a change menu items and they are no longer bold as requested 043e772
  • change(megamenu): reset first level panels after each item pass 175351b
  • change(megamenu): mobile menu improvements #223 b3cabfe
  • change(megamenu): fixed key error warnings 075bf01
  • change(megamenu): handle default active sub accordion 6192a99
  • change(megamenu): enable active border only for items not titles fb0b869

🛠️ Others

0.7.3 - 2022-08-04

💅 Enhancements

  • change(megamenu): added icon on mega menu header section d0ad4d8

0.7.2 - 2022-08-03

🐛 Bug Fixes

  • fix(contentBox): z-index of content hidden by bg when using content-box-inner c5a7dac

🛠️ Others

  • Set focus on search input field in the popup on click d12c051
  • Make cypress tests work with both slate and draft selectors 4d8e5b1

0.7.1 - 2022-08-01

0.7.0 - 2022-08-01

🚀 New Features

  • feat(accordion,buttons): primary, secondary and tertiary variations #209 c34617f

🐛 Bug Fixes

  • fix(megamenu): key warning errors 4ecd279
  • fix(container): add padding also for block editors when we are on the add page not just edit b857aad
  • fix(header): bump opacity of gradient class to get rid of green hue of header text 2011b40
  • fix(header): remove console log 3a20023

💅 Enhancements

  • refactor(callToAction): add tertiary variant and restructure exports ac6695a
  • refactor(accordion): add color variations 3504c15
  • change(megamenu): WIP bringing back rendering of item with callback and path modification 6e43d43
  • refactor(megaMenu): add slide down transition and update targetRefs on close 9667157
  • change(megamenu): use renderMenuItem in order to render menu items 9ed5cbd
  • change(footer): replaced eionet logo with an svg variant and tweaked size of eionet to match size of eea logo 32ce462
  • refactor(callToAction): update tertiary state colors 159668a
  • change(accordion): style default accordion using the grey from semantic ui e24907d
  • refactor(accordion): add variations and create a default export 4a9c68f
  • refactor(colors): add tertiary shades for element states 1e24a7e
  • change(tests): try to modify tests to use slate instead of draft a2e2485
  • change(megamenu): set active class on storybook list items 112bff1
  • change(megamenu): add border for active element of menu 5e7dfa5
  • change(package): condition modification of navDepth settings dd21dad
  • change(mega menu): use non variable to fix build of volto-kitkat-frontend 3ecd652
  • change(header): prefix mega-menu active class for adding border 32898cb
  • change(tests): use data-slate-editor instead of contents that was found in draft js instead of slate 1e0413c
  • change(stories): hide variant control from button link story 43f8c41
  • change(stories): hide variant control from button link story aea7126

🛠️ Others

  • feature(theme): added context navigation component story and default style 5a6955f
  • feature(megamenu): open default accordions on mobile navigation based on pathname cc299c1
  • fix eslint warnings 3b30282
  • bump release version to 0.7.0 fa82cbd
  • Theme fixes, mega menu selected element both in desktop and mobile #211 b482729
  • feature(mega-menu): added menu slide down animation #208 4360d0e

0.6.5 - 2022-07-06

🐛 Bug Fixes

  • fix(header): double click to close dropdown is no longer required b8a2ed0
  • fix(header): menu generation when atAGlance isn't found d68b03c
  • fix(menu): removed minHeight that enlarged the global menu 133be1e
  • fix(hero): image dimensions when full width and height isn't enabled 4114f73
  • fix(contentBox): removed negative z-index that hid fullwidth bg color bd60faf

💅 Enhancements

  • change(hero): tweaked hero block height and padding 994b6f8
  • change(item): tweak size and padding of icon when used inside item dbdef19
  • change(typography): updated letterspacing values and clarified values used for certain type tokens 8a13bf8
  • change(item): enable theming for icon and text color and added tertiary option 6d4444f
  • change(header): top section chevron sizes and margin as requested in enhancements document b307c74
  • change(cards): add underline to links when applied to headers and use tertiary color by default 874f956
  • change(utilities): wrap in quotes h2 and h3 of quoted-wrapper 8aa4716
  • change(package): bump package version to 0.6.5 denoting bug fixes release 0585aeb

0.6.1 - 2022-07-01

🚀 New Features

  • feat(UnderlinedTitle): create story and necessary utilities 8beb56b
  • feat(headers): added underlined titles with theming support af67561

💅 Enhancements

  • refactor(heading): move underline story and update controls 2c9bfd2
  • refactor(underlineTitle): add content box for different variations 0878915
  • refactor(underlinedTitle): add control for changing heading size 211f515
  • refactor(underlinedTitle): Restore text variation dropdown control bd8c611
  • refactor(utilities): add color variation for headings and text 7e3a779
  • refactor(utilities): update border bottom utility and restore line height for headings 7fe4a7b
  • refactor(headings): update the line height of headers according to docusaurus instructions 9da19b3

🏠 Internal changes

  • chore(countup): package for statistics 26fcd09

0.6.0 - 2022-07-01

🐛 Bug Fixes

  • fix(item): adjust the container in stories a848c46
  • fix(tag): align start for tags on mobile, update path for Tag List and add containers b9de845
  • fix(item): update image width & height on mobiles and add 3 line clamp for description 0cd2c46
  • fix(pageheader): metadata font size on mobile to be readable 0a9b1fa
  • fix(breadcrumb): fixed variable name for breadcrumb item 2b547eb

💅 Enhancements

  • refactor(Item):create item story with custom default class 069ae02
  • refactor(pagination): add pastanage menu overrides and remove any eea theme css from default story 5080810
  • refactor(item): update variables from px to rem 30eed78
  • refactor(Item):add default item mobile padding 3518465
  • change(site): added fixes from custom 0fe4d80
  • refactor(Pagination): add default pagination stopry and rename previous as Secondary a5e3e13
  • refactor(pagination): comment out secondary pagination and its styling bcf4cff
  • refactor(tags): remove content class and add flex wrap d6333ca
  • change(logo): use a real svg logo for white eea logo 3b80dc7
  • change(header): show eea information systems on tablet as well ce82ceb
  • refactor(tokens): update letter spacing tokens 5f8753b
  • change(letterspacing): updated letter spacing positive values b31818f
  • change(pageheader): add bottom margin on mobile for sharing dropdown actions d3cda47
  • change(pageheader): removed blogger, reddit and stumbleupon sharing links e4acc4e
  • refactor(Item): add default item background color c978c8d
  • change(package): bump package version 1f01f72

🏠 Internal changes

  • style(item): update item image e585e9d

🏠 Documentation changes

  • docs(colors): token usage c433ec6
  • docs(Docusaurus): typography and spacing updates 48d1269
  • docs(Docusaurus): various fixes a972a31
  • docs(typography): updates 66d95e4

🛠️ Others

  • Tabs block custom border left/top ca4cce0
  • Fix sidebar tabs in Volto CSS c287db5

0.5.5 - 2022-06-23

🐛 Bug Fixes

  • fix(contentBox): color of cards when inside content-boxes 76a4520

💅 Enhancements

  • change(homepage): moved fixes of homepage to custom and colored carousel arrow 0a226ef

0.5.4 - 2022-06-16

🐛 Bug Fixes

  • fix(block-style): Content box preview in sidebar 6362766
  • fix(header): ensure transparency goes as high as the search icon 4470e13

💅 Enhancements

  • change(contentBox): add background as before element instead of using full-width 7e0a596
  • change(content-box): content box links are now underlined f7976f5
  • change(homepage): added fixes from custom c3e0333
  • change(hero): add margin top with the height of the top section on edit fefa6bb
  • change(cards): fix default card color when inside content-boxes 6fdf3aa
  • change(container): removed override of content-box-inner container 66fe7d4

0.5.3 - 2022-06-16

🐛 Bug Fixes

  • fix(homepage): hero and homepage fixes for #151156 #198 43d4efc
  • fix(header): fixed top section width on edit page ce5898b

💅 Enhancements

  • change(hero): added min height to hero-block-image-wrapper 3cc37c0
  • change(hero): spaced hero block has a 3rem margin top and bottom c463b03
  • change(hero): added extra top margin on hero-block-body from tablet and up within homepage 64142c3
  • change(hero): tweak min height of hero block e1271b4
  • change(card,contentBox): use inherit for text color to inherit black from body c1ba3b6
  • change(container): on section-edit modify only left and right padding values fe6e3ec
  • change(utilities): bump z-index of overlay class ede3209
  • change(hero): fixed variable reference for margin of body from homepage 092b90b

0.5.2 - 2022-06-14

🚀 New Features

  • feat(contentBox) : add new Content Box component 2ebbb47
  • feat(ContentBox): Add primary, secondary, tertiary themes 87cb2fe
  • feat(ContentBox): Update storybook with available themes 93b26b2

💅 Enhancements

  • refactor(contentBox): restructure the component to be more flexible f0d2de6

🏠 Internal changes

  • chore(contentBox) : add lint changes 5aaf740

🛠️ Others

0.5.1 - 2022-06-13

💅 Enhancements

  • change(header): changed homepage text color 64ce8b6
  • change(hero): added styles for adding dark overlay to hero bf1d292
  • change(homepage): hide stagingBanner on homepage fb6e319
  • change(header): use variable for homepage hero-block padding 89ff344
  • change(tokens): modified grey-4 color to point to a 10% shade from original color b406283
  • change(header): added min-height for mega menu needed for 1 items menus 18814f4
  • change(hero): hero section block integration #192 4ea2f40

🛠️ Others

0.5.0 - 2022-06-11

🚀 New Features

  • feat(hero): added storybook implementation of hero component #172 17b9d16
  • feat(hero): add hero block component and stories 6019fc8

🐛 Bug Fixes

  • fix(header): Internal links in mega menu d8ca135
  • fix(header): show active menu when clicking on children a54fa67
  • fix(header): accessibility and dropdown possition fixes 505ac36
  • fix(header): fix accessibility issue by David 783dcec
  • fix(header): dropdowns disappear on resize 52338fd
  • fix(header-topdropdown): dedupe html elements for topdropdowns cd8a2a7
  • fix(header): transparency class should apply on the current bg color or image f9a0033
  • fix(header): mobile dropdown now visible 34371b4
  • fix(header): dropdown disappears after window resize #116 fc7dd8b
  • fix(header-topdropdown): dedupe html dropdown elements for topdropdowns #115 f10a7a8

💅 Enhancements

  • refactor(megaMenu): update mega menu in header component 2d1ce45
  • refactor(header): update structure and variables of top bar af70909
  • change(header): renamed mega menu items href attribute to url 3ed8144
  • refactor(header): update main section and and add color variations f2f0fd1
  • refactor(header): minor updates on colors and widths a70129f
  • refactor(hero): add full-heigh control to adjust height a45cb7c
  • change(header): disable sticky setting until feature is more stable 1d7af95
  • refactor(hero):make button variant and inverted different button controls 7e182ca
  • refactor(header):main bar sticky on scroll up 9c9e7c6
  • refactor(headings): update heading sizes for mobile 19f3cca
  • change(header): hide first link(home) from header menu on site ae7f3b9
  • change(megamenu): typo correction and key setting on list.items 96d2c4f
  • change(header): use Link instead of a tag for menu items 9812b3f
  • refactor(header): add control for inverted logo 023ca45
  • refactor(hero): move quoted utility to h2 tag 7376676
  • refactor(header): add link for menu title inside desktop mega menu 24355d0
  • refactor(utilities): update hex with color token 8dc65ef
  • refactor(header): and mega menu to latest spec #114 44fcf68
  • refactor(header): update search input and file endings afab36f
  • refactor(header): add control that toggles transparency class on main section b8d4bdb
  • refactor(header): restore union dropdown after implementation 7e98bab
  • refactor(header): minor responsive fixes 16a0006
  • refactor(hero): align hero's text and meta seperately 4fa958f
  • refactor(hero):add button variant controls f362a7b
  • refactor(header): update search input 368962e
  • change(header): mark top level active menu item 665c449
  • refactor(hero):prettier & style changes d846884
  • refactor(header): add control for main section stickiness 2f07572
  • change(header): use viewport width for changing mobile text in header dropdowns b50fa58
  • refactor(header): add fluid font sizes 5f2743e
  • refactor(header) add position sticky & transparent for main section 29df772
  • refactor(hero): update variables with new design tokens 1d97922
  • refactor(Language List): render language dropdown as ul and li elements 3617442
  • change(header): introduced item class to the mega menu link content 00ca376
  • refactor(Language List): add less variables 7ccc1cc
  • change(header): disabled active menu when clicking on globalnav links 3f7b5ee
  • change(header): target link instead of span directly 9e865fb
  • refactor(header): remove unused imports 7e232db

🛠️ Others

  • Add item themes; override .block .ui.image width based on size 06010db
  • Move item icon themes to item.overrides 31e8921
  • Override only the width 8d49270
  • Override tile image in .block parrent 005655d
  • Update package.json 9dc3816
  • feature(item): added themes to item icons #190 a6a2907
  • update storybook header.topdropdown e58ac08
  • use volto-screen-helper width ea156aa
  • Add divider content for metadata field in Banner 327ad1c
  • rename to viewportWidth 32162e7
  • don't connect component to store 470b8ba
  • Add end of line 51639d8
  • behave as mobile under 480 only 11b99e1
  • make it account for all mobile-s,m,l 69e23ae

0.4.5 - 2022-06-08

💅 Enhancements

  • change(tabs): Add style for tabs accordion template #187 fb8adbf
  • change(footer): avoid react error by providing key prop to grid column ef0b193

🛠️ Others

0.4.4 - 2022-06-08

🚀 New Features

  • feat(divider): create story for divider b10a2e0

🐛 Bug Fixes

  • fix(divider): restore space between classes c595c15
  • fix(divider): Text colors and transform e524e10
  • fix(footer): story aria labels for social media links 254bdc7

💅 Enhancements

  • refactor(footer): update logos and less structure 66b8e0f
  • refactor(footer): first footer updates d18a2ee
  • refactor(footer): logo updates and adjustments 101bc9d
  • refactor(footer): use tokens and adjust spacing 2cb1669
  • change(footer): moved SubFooter logic to SubFooter.jsx from Footer story 902383a
  • refactor(Divider):add divider with content inside story e2d66dc
  • change(footer): added managed by section as properties 9328fc3
  • refactor(divider): remove custom divider d4870d2
  • refactor(Divider_:remove green color class & add tertiary 95f3018
  • refactor(footer): use remix icons for social links 5ef9aa2
  • refactor(Divider):remove clean class and use fitted prop 8d2be35
  • change(Divider): Rename color property to theme 0deffc8
  • refactor(footer): update links and logo align 7afbab9
  • change(footer): tweaked column sizes to the values before my changes fdf2718
  • refactor(footer): to latest figma design #182 3e0ba2b
  • refactor(footer): move subfooter logic to the proper component #185 3034577
  • refactor(footer): update controls b0b872b
  • refactor(testimonial): update divider 784450a
  • refactor(testimonial): changed divider color to secondary 84282f9
  • refactor(divider): remove custom divider from theme config a0409e8

🏠 Documentation changes

  • docs(divider): switch to secondary color 239844b
  • docs(divider): showcase path fix d5ea03f

🛠️ Others

0.4.3 - 2022-06-03

🐛 Bug Fixes

  • fix(edit): Fix columns/accordion inner toolbar padding fafbb52

💅 Enhancements

  • change(docusaurus): completed removal of description from guides 42424b9

0.4.2 - 2022-06-02

💅 Enhancements

  • change(docusaurus): moved color swatches around in the color guide 8a395fc
  • change(docusaurus): removed description from components and introduced category listing f220bf0
  • change(docusaurus): rename gap to space and added em spaces f5b042d
  • change(docusaurus): moved extra docs to webdev section 1ce0797
  • change(docusaurus): moved md_components files into webdev/md_components 73c1c08
  • change(docusaurus): added category yml for all sections 1740572
  • change(docusaurus): color guideline updates and spacing tokens documentation #148 c1154ba
  • change(docusaurus): modified story links to avoid broken usage tabs 78dc8d8
  • change(docusaurus): renamed several file id's so that they match the incremental naming sequence 11299c9

🏠 Documentation changes

  • docs(Docusaurus): timeline, testimonial, quote and tags aaa54ec
  • docs(spacing): add relative gap tokens 92abc8f
  • docs(colors): updated colors a28c99e
  • docs(tags/content): new page about tags and content 60be402
  • docs(Docusaurus): labeled icons f6a0f61
  • docs(typography): add font size and line height tokens 2ff65e4
  • docs(spacing): add spacing gap tokens 2d53727
  • docs(spacing): add missing gaps 442db46
  • docs(docusaurus): minor fix 6e66513
  • docs(spacing): aligned images e946fe5
  • docs(spacing): new image fcd3294

🛠️ Others

  • merge changes from develop into docusaurus token documentation a940138
  • perf(docs): restructuring order 8f4134d

0.4.1 - 2022-06-02

🚀 New Features

  • feat(languageLabeledIcon) : add new component 110558e
  • feat(LanguageLabeledIcon):add new component d00200c
  • feat(newTabLabeledIcon) : add new component 8f5cd31
  • feat(labeledIconGroup) : add new component 787d648
  • feat(DownLoadLabeledIcon) : add new component 6ea2fa1

🐛 Bug Fixes

  • fix(LabeledIcon) : fix lint errors 91b042f
  • fix(LabeledIconGroup) : fix links for tests daa1065
  • fix(LanguageLabeledIcon):bug fix & languages change 1436e2b
  • fix(LabeledIconGroup):fix based on Langauge & Download Labeled icon components changes 3015864
  • fix(newTabLabeledIcon) : add link item b1a9ada
  • fix(Labeled Icons):minor bug fix 00f3022

💅 Enhancements

  • refactor(labeledIcons): adjust new tab labeled icon to figma and replace px with rems 904615d
  • refactor(LanguageLabeledIcon):implement with pop up 0f3dd8f
  • refactor(labeledIcon): add group wrapper in labeled icon stories 4b7dd31
  • refactor(DownloadLabeledIcon):implement with pop up aa61f9b
  • refactor(labeledIcons): adjust language labeled icon to figma 5741e3d
  • refactor(labeledIcons): adjust download icon to figma and replace px with rems 4ae8530
  • refactor(LanguageLabeledIcons):minor storybook change 78f5544
  • refactor(LanguageLabeledIcon): set language code to uppercase and minor storybook change ac28693
  • refactor(labeledIcon): adjust paddings 9c1ecdd
  • refactor(labeledIcons): update margins for group labeled icons 5fa5ca9
  • refactor(labeledIcons): add variable for icon color 9f9d3cb
  • refactor(labeledIcons): update colors on download links c042642

🏠 Internal changes

  • chore(labeledIconGroup) : lint changes 535cee4
  • style(downloadLabeledIcon) : fix styling 6d8e3ac
  • style(downloadLabeledIcon) : fix alignment 4558017
  • chore(LabeledIconGroup) : lint changes ab36476

0.4.0 - 2022-06-01

🚀 New Features

  • feat(Carousel): create carousel for cards 2b0d737
  • feat(ItemwithIcons): Initial Item group with icons, new item variation 7f4ea47
  • feat(utilities): add file and basic utilities 05c88b2
  • feat(utilities): add file with basic utilities classes #173 855185f

🐛 Bug Fixes

  • fix(tokens): hsla function for shadows b8e5d37
  • fix(tokens): remove css var from less file a9c4224
  • fix(carousel):add storybook controls descriptions 269a603
  • fix(item): remove image width css from item.less 7b21cb2
  • fix(table): Set responsive breakpoint to @tabletBreakpoint 067e018

💅 Enhancements

  • refactor(item): import item.less in theme definitions c516374
  • refactor(Label):add corner,ribbon & basic label stories and styles e2bbbb9
  • refactor(Label):style changes based on label importance class ce4d5d1
  • change(tokens): rename gap to space and added em spaces 719efc4
  • refactor(item): add classes for size, set default to tile and add controls for grouped items d5a0405
  • refactor(tokens): add borders, shadows, shapes and z-index tokens 7069106
  • change(tokens): name spacing tokens gaps and added missing values up to 80px as documented 9fbd912
  • refactor(quote): Rename sourceInfo to extra info 76c2b40
  • refactor(item): WIP replacing unstackable with row e3a44de
  • refactor(tocens): add color design tokens 13bb165
  • refactor(item): adjust margins to match figma designs 6334581
  • refactor(carousel): remove title from story and color on card hover 12a1d7c
  • change(tokens): updated sizes with 4-8-16px increments 1f53d65
  • change(tokens): added size tokens to be used for width of elements cda5dea
  • change(utilities): values need important rule 96150d9
  • change(tokens): added also rem space values aedbbdd
  • change(tokens): updated z-index tokens with negative values 404efe4
  • refactor(tokens): add 14px font size token 8d8695d
  • refactor(docusaurus): restructured and improved sections navigation #174 b47b026
  • refactor(tokens): add 12 and 14px font size token #176 3681147
  • refactor(tokens): remove conditional border radius f0fe5ad

🏠 Documentation changes

  • docs(website): created new sections, improved website navigation 243f0be
  • docs(homepage): adding design system homepage with links for upcoming sections c9a9685
  • docs(docusaurus): copyedit, improved navigation 998762a
  • docs(website): restructuring, moved current DS docs to new folder 8bb612f
  • docs(homepage): copy editing ee37d6f

🛠️ Others

  • Release 0.4.0 f4bc509
  • feature(homepage): added Item group with icons #167 2ec99f5
  • feature(tokens): added borders, z-index, shadows tokens #171 74c1788
  • feature(tokens): added initial color design tokens #169 da3eae0
  • perf(carousel): added slick library ca9be51

0.3.1 - 2022-05-19

🐛 Bug Fixes

  • fix(input,segment): toggle inputs and padding fixes within Volto sidebar forms de030d6

💅 Enhancements

  • change(login): restored width of login container to 376px 0564293

0.3.0 - 2022-05-17

🚀 New Features

  • feat(Callout):create Callout component with Blockquote style 3d486b1
  • feat(callout): Align the Callout component with Volto slate component e9343ff

🐛 Bug Fixes

  • fix(testimonial): fix storybook arg names b9df52f
  • fix(table): tweak responsive table for extra long headers 7f9f9e2
  • fix(quote): fix color and padding issue 310d6b3
  • fix(accordion): Fix accordion active title color 57af165
  • fix(testimonial): remove info arguement 9593d95

💅 Enhancements

  • refactor(Table):add responsive mobile table story and styles aed69e6
  • refactor(testimonial): adjust to volto design | fix avatar image size 546070e
  • refactor(Quote):rename Pullquote component to Quote 9384a0c
  • refactor(Quote):rename Quote.Metadata to Quote.SourceInfo dfae8b1
  • refactor(Quote): rename Author to Source 6d400f6
  • refactor(Quote):move Testimonial component under Quote folder e2467c2
  • refactor(testimonial): readjust rounded card b419334
  • refactor(Table):wrap table with semantic ui container 24ac2bb
  • refactor(Testimonial):minor storybook bug fix 7b6d128
  • refactor(Callout): wrap story with semantic ui container ead362d
  • refactor(quote): update action name to match the functionality caf2e35
  • refactor(table): add borders to responsive table with celled attribute 8a71a67
  • change(table): make use of headerSortableWhiteSpace variable fd836fb
  • change(table): use the @mobileLandscapeBreakpoint for max 480px media query 90880ab
  • refactor(Quote):rename pullquote to Quote in Testimonial f54da19
  • refactor(Testimonial): change card class name e995c32
  • refactor(Testimonial): prettier changes 904594b

🛠️ Others

  • feature(tokens): added tokens folder for design tokens we can use in the system a542172
  • perf(lint): fix f2ef3ab
  • Release 0.3.0 8724b28

0.2.4 - 2022-05-13

💅 Enhancements

  • change(segment): brought back overrides from pastanaga into our theme 14efd02
  • change(container): removed padding from containers restoring thus the defaults c2ed813
  • change(grid-story): added container as grid width is influenced by container width 459f481
  • change(breadcrumb): removed padding from breadcrumb added by container c5df567
  • change(container): modified all outputted widths to align to grid 9f29cef
  • change(breakpoints): restore Semantic UI breakpoints, adding extra needed values e7f5b1e
  • change(container): restore maxWidth to 100% now that the last value is 1120px 8b55c58
  • change(header): wrap header globalnav links useful for editing section 10d4f56
  • change(breadcrumb): added vertical variant to the breadcrumbs like we do in Volto f405f84
  • change(breakpoints): added also contentBreakpoint for backward compatibility b6c9212

🛠️ Others

  • [JENKINSFILE] Add failure comment, no jenkins fail c325bf1
  • prettier changes 134da52
  • [JENKINSFILE] format PR comments 739438c
  • [JENKINSFILE] mention comment author in comment 39a26aa
  • [JENKINSFILE] remove debug, add error per stage 903eecd

0.2.3 - 2022-04-29

🚀 New Features

  • feat(CallToAction):add feat call to action ab53642

💅 Enhancements

  • refactor(button): add container to stories 6c02c19
  • refactor(tab): update vertical tab columns and content b473fab
  • refactor(call to action):render call to action with Button as="a" e7dfabf
  • refactor(button): update inverted button colors c822021
  • refactor(Tab):scrollbar change in mobile & vertical tab fix 0e34cbf
  • change(banner): added icon class to share icons 48e866e
  • refactor(Button): move button to forms folder 94996fc
  • refactor(Tab):minor change in secondary pointing menu variables 280b6c4

🏠 Documentation changes

  • docs(button): import call to action stories e4eed44

0.2.2 - 2022-04-22

🐛 Bug Fixes

  • fix(publicationCard): restore line endings 582859e
  • fix(form): added back overrides from Pastanaga theme a3f7ff8
  • fix(OrderedList) : add list only if sub list exists 8acbc8d
  • fix(label): update highlight label color d55bbb0
  • fix(publication card): run prettier 81a5bfc
  • fix(avatar) : fix naming convention for arg 84fc5fa
  • fix(tab): restore mobile font sizes 58f39be
  • fix(addForm): add min height to add form and fixed block chooser overflow ca4415d
  • fix(OrderedList): adjust margins to fourth sublists 663d384
  • fix(dropdown): being hidden because of third party css 7d353df
  • fix(modal): overflow hidden as clearfix of last child from modal b4923f5
  • fix(RelatedContent):fix merge conflict adc34bf
  • fix(button): labeled class needs to be placed after left or right keyword 53d1204

💅 Enhancements

  • refactor(card): prettier fixes e10e3d6
  • refactor(card): add card variations e16d05b
  • refactor(card): remove stories 0deb0ca
  • refactor(card):delete primary and secondary card stories 1f95d22
  • refactor(Avatar) : remake avatar as card variant ea77cdd
  • refactor(card): add styles for card variations 7407bd3
  • refactor(storybook): add story with related content inside of a tab dca008a
  • refactor(card): Rename variables from avatar to rounded be01316
  • refactor(avatar): update less variables and layer structure f965db1
  • refactor(PublicationCard):remake publication card to be a semantic card variation 5a0c6ab
  • change(button): simplified button styling fe892d6
  • change(button): simplified storybook naming and examples 9a7df4f
  • refactor(Avatar) : convert avatar component to card variation 2004a94
  • refactor(Related Content): change in grid and add see all button 955450e
  • change(button): added back button.overrides from pastanaga theme 3b55acb
  • refactor(card): add card class control 68c91a9
  • refactor(card):delete publication card variables & overrides files 6be8a03
  • refactor(OrderedList): rename TOC to Ordered List and add container to the story e00c4db
  • refactor(card): add card grid fluid story with no columns f38251c
  • refactor(list): remove horizontal control 1f5e576
  • refactor(avatarGrid): update less variables and layer structure db554a8
  • refactor(Related Content):show button when there are more hidden cards 57ff1c8
  • refactor(RelatedContent):change to use new card variant instead of publication card component 7cf424a
  • change(breadcrumb): brought back pastanaga overrides to breadcrumbs bca1c93
  • refactor(card):delete publication card folder & story 68bf773
  • change(buttons): modified basic and circular variant behavior c06fed9
  • refactor(card):tertiary variation minor story update 87b8dca
  • refactor(DescriptionList): add container to story d647c1a
  • refactor(List):render ordered list with ol,li tags 87813c1
  • refactor(OrderedList) : change table of contents story to ordered list cb6197c
  • refactor(publicationCard): update tag and name variables c109ad9
  • refactor(UnorderedList): update list as ul, list items as li and add container to strory 2c096e1
  • refactor(card):organize controls and minor bug fixes f3f6e35
  • refactor(less variables): publication card style changes c5a84e9
  • refactor(less variables): add less to related content e1a5543
  • refactor(RelatedContent):delete publication card component 2ed0ed4
  • change(button): basic button is again without padding, border and background 5a907c7
  • refactor(PublicationCard):remove link wrapper 5911a0d
  • refactor(less variables): change publication card height per viewport d7a5256
  • refactor(Timeline):change timeline icons b2fe0bf
  • refactor(publicationCard): replace px with rems 53bf8da
  • refactor(Related Content): change in related content grid bf856ce
  • refactor(List):render description list with dl,dt,dd tags ec669a7
  • change(button): show only labeled variant for buttons with icons bf49944
  • refactor(card): import image for rounded card ca5a47e
  • refactor(progress): add container to story dfb33bb
  • refactor(storybook): add publication card story with different description sizes 23af97b
  • refactor(List):render default list with dl & dt tags ece2280
  • refactor(storybook): add publication cards stories with longer description 37adefa
  • change(button): basic icon buttons no longer have box shadows c2f3ea3
  • refactor(card): remove story afc5f79
  • refactor(less variables): change card description line number per device 6946fda
  • refactor(card): update rounded card image path 8db3a85
  • refactor(DefaultList): add container to story f971193
  • change(button): bumped z-index of sidenav expand button 445ed8a
  • change(progress,label): color accessibility fixes #151 09cf6e3
  • change(button): text button now has an underline with a focus border like other buttons cdd9043
  • refactor(card): update card variation grids path 756589c
  • refactor(card): minor fixes 3a880d7
  • change(button): primary color is blue and secondary is green 53e0a0c
  • refactor(List):change styles to match with the tags lists are rendered 2673890
  • refactor(progress): update colors for accessibility ea2f454
  • refactor(card): move avatarGrid & relatedContent to Card folder 1959d52
  • refactor(Timeline): change storybook timeline colors to fix accessibility issues 79da8dc
  • change(segment): restore light grey background color for secondary segments 8716b08
  • refactor(relatedContent): adjust column paddings 8a1520d
  • refactor(storybook): clear up code 3ada154
  • refactor(card): use the rounded class for avatar grid 8c000f3
  • refactor(card) Update rounded card class 140b587
  • refactor(avatar): add variable for image border radius c23341c
  • refactor(label): add container to story 565101f
  • refactor(progress): update value color for accessibility error 6fc76f8
  • refactor(card):use jsx extension 413d328

🏠 Internal changes

  • chore(Avatar) : add container to stories 41b748c
  • style(OrderedList): prettier fixes ed95e4d

🛠️ Others

0.2.1 - 2022-04-08

🐛 Bug Fixes

  • fix(version): Switch to 2.0.0.alpha.1 83b8b8e

🛠️ Others

  • cleanup(loader): Remove useless HTML d1d180c

0.2.0 - 2022-04-04

🚀 New Features

  • feat(card) : add new default card color-schme 965adea
  • feat(label): Handle slate links and footnotes f382431

🐛 Bug Fixes

  • fix(buttons,toggles): border and background color when active 147629 #139 ea36f31
  • fix(checkboxes): background color when they are toggles 4b6ab67
  • fix(buttons): border set on basic buttons appearing on svg elements of Volto UI 69ca73f
  • fix(label): Zotero/Footnotes inside label 0ee4d58
  • fix(card) : add control for image url in storybook b28e530
  • fix(less variables):change font family e4bca9e
  • fix(storybook):minor bug fix 9fc53bc
  • fix(tag): fixes merged theme config eb30363
  • fix(Banner): prop types fix a270e5b

💅 Enhancements

  • refactor(tag): splits Tags component to TagList and tag, changes default tags style 78a5f8c
  • refactor(Banner):add banner share pop up in banner story c9688b2
  • refactor(tag): remove classes and actions that add background color ce9b6f9
  • refactor(Banner):change banner's image wrapper implementation 9153dd1
  • change(package): bump release version to 1.10.0 7e984c1
  • refactor(card): align cards and images, update less variables d47c978
  • refactor(card): add class inverted for default card 919a56e
  • refactor(tag): changes component name e1db068
  • refactor(tag): changes color metallicBlue to bottleGreen e4b68ac
  • refactor(less variables): change tag list mobile view fcded3d
  • refactor(tagList): update story to not use tag color classes 8b5b61b
  • refactor(Banner):minor bug fix ff8c352
  • refactor(Banner): add metadata field sub component 327b7e7
  • refactor(banner): add and adjust remix icon for banner action 1bf3ffa
  • refactor(banner): replace px with rem and adjust share popup padding a568329
  • refactor(Banner):add type class to metadata field and apply styles to it 86a2866
  • refactor(less variables):change tag list styles 8670087
  • refactor(banner): share items display flex on desktop 3ff8684
  • change(banner): added background gradient, share popup, metadata show and hide #136 2f5dcca
  • refactor(banner): update gradient 570ee1e
  • refactor(tags): removes hardcoded ':' ea58e86
  • refactor(card): remove card border bc77739

🏠 Internal changes

  • style(card) : add lint and prettier changes 9d9a773
  • style(tag): remove comments 501fcdf
  • style(tag): stylelint and prettier changes 08b6386

🛠️ Others

0.1.9 - 2022-03-25

🚀 New Features

  • feat(all): 1.9 release #124 0d3f6fb
  • feat(callout): Align volto-slate callout with blockquote style 9e0bb49

🐛 Bug Fixes

  • fix(inpageNavigation): restore hidden on top functionality c554e6e
  • fix(list): Fix TOC margin on 3rd level f17da79
  • fix(inpageNavigation) : add smooth scroll animation 42f6564

💅 Enhancements

  • refactor(footer): update visual and mobile margins 64f05af
  • refactor(header): restore union dropdown after implementation a7029c5
  • refactor(pullquote): adjust to the new figma design 78e4606
  • refactor(breadcrumb): adjust font sizes and import remix divider 5fcabaf
  • change(header): use viewport width for changing mobile text in header dropdowns 5a7868e
  • refactor(inpageNavigation): adjust to the new figma design 4073acf
  • refactor(tab): add max width for tab items 366d279
  • refactor(less variables):change pullquote styles 9ad94bb
  • refactor(Pullquote):change quote positions and add Pullquote.Metadata sub component 6bce35f
  • refactor(inpageNavigation): Update to remix icons 19a6061
  • refactor(inpageNavigation) : move icon & text to be in column 0953910
  • change(breadcrumbs): modified breadcrumbs template to behave like breadrumb template 490a559
  • change(package): bump release version to 1.9.0 43a6e4b
  • refactor(breadcrumb): adjust font sizes and import remix divider #120 09a3a01
  • change(menu): modified secondaryPointingItemMaxWidth to a value that equals to 250 ea138a1
  • refactor(pullquote): introduce meta section, use remix icons, integrate slate callouts #119 fd740c9
  • refactor(footer): updated visuals and gradients #117 e5c6d18
  • change(scrollToTop): feature inpage navigation revamp #121 3cf20a8
  • refactor(footer): update visual and gradient 764ec23
  • change(header): use 12px font size for mobile resolution dropdowns 6dad0fa
  • change(nav): added navDepth to 3 in order to enable mega menu integration c4f73fd

🏠 Internal changes

  • style(inpageNavigation) : lint changes 3641d78
  • style(inpageNavigation) : add less variables 0699c70
  • style(pullquote): create variable for icon font size fea9b0a
  • style(inpageNavigation) : add lint & prettier changes f8dd012
  • style(inpageNavigation): remove comment 1aee011

🛠️ Others

0.1.8 - 2022-03-18

🐛 Bug Fixes

  • fix(card): avoid long links from spilling outside of card body area 95b8951

💅 Enhancements

  • change(typography): set heading sizes as detailed in docusaurus typography section 189bf20
  • change(docusaurus): content tweaks, inpage navigation section #112 b62d1b1

🏠 Internal changes

  • chore(docusaurus): fixed grid tablet breakpoint value c7fbc09

🏠 Documentation changes

  • docs(docusaurus): capitalization remove bf8fa44
  • docs(docusaurus): update 1c04976
  • docs(docusaurus): comment address on pr 112 6e4fe3b
  • docs(docusaurus): color minor update 13f9fda
  • docs(docusaurus): tabs and breadcrump update d0547e5

🛠️ Others

  • doc(colours): add more content ec66248
  • Add divider content for metadata field in Banner f1e34bd
  • Release 1.8.0 fd6ba04

0.1.7 - 2022-03-15

🚀 New Features

  • feat(less): add global gap sizes 3c83f20
  • feat(icons): import remix css 29967fb

🐛 Bug Fixes

  • fix(menu): fix border overflow for tabs and pagination e88721f
  • fix(accordion): responsive and accessibility issues c225935

💅 Enhancements

  • refactor(menu): update paddings for tabs and pagination 533a509
  • refactor(accordion): import semantic icon for remix arrows 9aa77d8
  • refactor(all) icons, accordion, button and menu itml #108 52ed2ca
  • change(storybook): segment stories now contain several elements 98a7654
  • change(table): inherit header alignment instead of hard-coding values ebb5193
  • refactor(icons): add remix icons c4c1a92
  • refactor(container): restore mobile width to auto 2df184c
  • refactor(button): update action button hover color bb09d71

🏠 Internal changes

  • chore(docusaurus): docs delete 5f9d733

🏠 Documentation changes

  • docs(colors): corrections da64c4c
  • docs(list): default list showcase 8ded062

🛠️ Others

  • bug(form): input min-width more specific to not break volto interface 3f5b5d4
  • Update package.json 3dba28b

0.1.6 - 2022-03-11

🚀 New Features

  • feat(cards): add custom display for volto-block-image-cards 645096a
  • feat(PublicationCard):create publication card component & styles 3e5f9b7
  • feat(PublicationCard):create publication card component & styles 12cdd5d
  • feat(Related Content): create Related Content component 77eda95
  • feat(Related Content): create Related Content component 08d495b
  • feat(pagination,related) added several r3 components #105 08d47c1

🐛 Bug Fixes

  • fix(Related Content): limit publication card number to 4 e7df032
  • fix(less variables):rename publication card variables 55c6fb8
  • fix(Publication Card): add link to card and arg name fix 36a7c96
  • fix(radio): fix bullet scaling issue with firefox 5f02c95
  • fix(radio): fix bullet scaling issue with firefox dbb2e27

💅 Enhancements

  • refactor(form): remove custom classes and add container to form items 6b5442a
  • refactor(form): remove custom classes and add container to form items d1ec083
  • refactor(form): update form wrapper component a719576
  • refactor(form): update form wrapper component 0736ec7
  • refactor(form): adjust form items to volto theming 4213cfb
  • refactor(form): adjust form items to volto theming 374ffbc
  • refactor(breadcrumb): remove custom class anf and new variables b3cb83d
  • refactor(breadcrumb): remove custom class anf and new variables d5808ad
  • refactor(storybook): clear up unnecessary form elements controls f7e7d5b
  • refactor(storybook): small change in unordered list story 3ffd872
  • refactor(storybook): small change in unordered list story 6ce16e9
  • refactor(pagination): fix menu overrides for tabs that affects pagination fe8c4ca
  • refactor(pagination): fix menu overrides for tabs that affects pagination 3f4b726
  • refactor(Loader):remove image & add background image 70fe041
  • refactor(Loader):remove image & add background image ac38126
  • refactor(list): remove selection control a09b179
  • refactor(list): remove selection control 17bf710
  • refactor(storybook):unordered list minor change df2b727
  • refactor(storybook):unordered list minor change ef6db73
  • refactor(colors): remove metalic blue color b2f95b6
  • refactor(colors): remove metalic blue color 1eea33f
  • refactor(button): update variables b1774d8
  • refactor(button): update variables 061f3e3
  • change(blockquote): treat slate as a variation of blockquote component 19bd9a5
  • refactor(container): remove important from rules e984771
  • refactor(storybook):add textarea control to add/remove fluid class 475f540
  • refactor(container): remove important from rules 1cc6984
  • refactor(storybook): add required attribute to form fields fecee27
  • refactor(progressBar): update progress bar colors with vars c4ef1f0
  • refactor(progressBar): update progress bar colors with vars a44d73c
  • refactor(storybook): add required attribute to form fields 21da79e
  • refactor(list): adjust bullet size 2b29e4e
  • refactor(list): adjust bullet size 61c341c
  • refactor(statistic): add inverted background to global variables 1427e70
  • refactor(statistic): add inverted background to global variables ea25dfa
  • refactor(statistic): remove custom class 46cc560
  • refactor(container): update mobile width d548a44
  • refactor(grid): replace px with rem units e792f51
  • refactor(statistic): remove custom class b5c8e7c
  • change(docusaurus): updated template to change what's new title 3e15f4d
  • change(footer): added display variable for footer site logos d5b3c2f
  • refactor(grid): replace px with rem units f0331d0
  • change(github): auto deploy only on develop branch 11d6b4e
  • refactor(header): implementation in preparation for Volto integration #20 #89 95b136d
  • change(github): trigger autobuild when modifying templates contents 46094b1

🏠 Internal changes

  • style(list): prettier fixes f9e3b05
  • style(list): prettier fixes 8eb715b
  • chore(github): merge changes from develop to develop-itml 063bd6e
  • chore(github): build deployment only on develop branch a5a1b08
  • chore(github): build deployment only on develop branch bb455aa
  • chore(github): merge changes from develop to develop-itml 129c12f

🛠️ Others

  • Revert "chore(github): merge changes from develop to develop-itml" ca9520f
  • refactor breadcrumbs component, make it functional and customizable e902d69
  • rollback(cards): move custom display to volto-block-image-cards 2564b1e
  • bring back segment wrapper and make it attached 8458f03
  • no display: flex for blockquote added from slate 5595ce1
  • Add rule about code length a5f3652
  • Add indenting rule 15c44cb
  • fix warning related to proptype 946c6c6
  • fix profile section css overflow db5126f
  • Add rule about import sorting 804e188
  • don't use volto-slate 6a02976
  • remove segment custom width 1d3ea40
  • Add rule about naming vars 8f9020f
  • update style for accordion title 0b0d678
  • Release 1.6.0 e771e65
  • update bbcab87
  • add margin to <br> element to simulate gap as in design c6685c1
  • make breadcrumbs default size as tiny 589581f
  • remove uneeded style 82a8fb1
  • Add rule about hardcoded values e04e0df
  • Add file mode rule 65c9a93
  • Add DRY rule 66c9c3a
  • set profile section overflow to auto 71ab47f
  • Add Sonarqube tag using eea-website-frontend addons list 647a6e3
  • removed override already present in card.less 50d2ab2
  • update 7a1d482
  • Add functional components rule; add classnames rule 91a0b06
  • added comment about need for removal of this fix later 65b8166

0.1.5 - 2022-03-08

🚀 New Features

  • feat(cards): add custom display for volto-block-image-cards f49ffb6
  • feat(KeyContent): add new component 2534c54
  • feat(docusaurus): Updated developer guidelines ca146ff
  • feat(storybook): add testimonial component 55d9747
  • feat(storybook): add AvatarGrid component b668445
  • feat(storybook):add Loader component f675834

🐛 Bug Fixes

  • fix(breakpoints): fix largest screen breakpoint bug on scaling e4a11c8
  • fix(profile): section css overflow and padding issues #95 bb9eb0f
  • fix(storybook): lint auto changes for AvatarGrid b8e74f1
  • fix(components): add grid structure to various components cc33546
  • fix(header) re-added span tags removed in pull request #74 00702d7

💅 Enhancements

  • refactor(button): styling updates 37afda5
  • refactor(tab): updates on variables and overrides 54bf703
  • change(blockquote): treat slate as a variation of blockquote component 5e8a8b8
  • change(footer): added display variable for footer site logos 2f942b4
  • refactor(checkbox/radio): remove header from message and adjust top position of bullet 4a072b3
  • refactor(color): remove secondaryColorDarken variable 74c8ba0
  • change(docusaurus): updated template to change what's new title 58f58c8
  • change(github): auto deploy only on develop branch bfa35a3
  • refactor(header): implementation in preparation for Volto integration #20 #97 cddda20
  • refactor(breadcrumbs): component, make it functional and pluggable #32 #94 9f42e80
  • change(card): added styles for volto cards integration #92 a46ac21
  • refactor(grid): remove column count from example ac0e9cf
  • change(github): trigger autobuild when modifying templates contents 5f7d152
  • refactor(grid): remove custom grid 1d978a9
  • refactor(Form):change form field wrapper implementation 73cdd6d
  • refactor(message): update colors to match design 633ce31
  • refactor(checkbox/radio): update variables and remove important rules ad533b4
  • refactor(less variables): add variables to less for new components 47df026
  • refactor(Tab): fix vertical tab alignment 401bdf2
  • refactor(lint changes): add lint changes 6f6847f
  • refactor(inpageNavigation): adjust to volto theming 62f74ea
  • refactor(message): updates on styling b4cf850
  • refactor(banner): update class name ef0969b
  • change(github): use develop for auto pushing a32a723

🏠 Internal changes

  • style(design-system): unix eol 631fa90
  • style(checkbox/radio): prettier fixes a04939f
  • style(design-system): unix eol 3c753f0
  • style(message): stylelint fix 5b75057

🏠 Documentation changes

  • docs(docusaurus): visuals guidelines 544a950
  • docs(docusaurus): search guidelines 0fb229d
  • docs(docusaurus): loader page 892a25d

🛠️ Others

  • Reformat header.less 1f99dfc
  • Close menu when changing path 65daea9
  • refactor breadcrumbs component, make it functional and customizable 4ec374e
  • rollback(cards): move custom display to volto-block-image-cards 79d4c89
  • Open overlay menu on global menu click cc749bc
  • bring back segment wrapper and make it attached 9f413ff
  • Use renderMenuItem also in mobile menu 02de0bb
  • Fix clicking outside closes menu af52664
  • Cleanup args in header story 2bf6a30
  • fix warning related to proptype 824b9be
  • fix profile section css overflow 8fd2654
  • don't use volto-slate 70ca3d4
  • remove segment custom width 4a60d84
  • update 96f4af0
  • Fix TopDropdownMenu component rendering in mobile a4626de
  • Add usePrevious hook 797faba
  • make breadcrumbs default size as tiny 3c8e1c6
  • Update package.json fa020cb
  • Add rule about hardcoded values 0c6912c
  • set profile section overflow to auto 8db62bb
  • added comment about need for removal of this fix later 6fdbd71
  • Add Sonarqube tag using eea-website-frontend addons list 6051724
  • removed override already present in card.less 93c4e5a
  • Remove console.log calls 8a3a4cb
  • update 81bb7d4
  • Update comment ffa2400
  • merge develop into this branch ad5b388
  • WIP a8d97f1
  • Use header.less from develop branch 99edbc6
  • WIP 57b5783
  • WIP 785da36
  • WIP 5d1eba9
  • adds Tags e37fc19
  • Add useClickOutside hook 70364c8
  • Implement outside click handling fa6f818
  • Simplify overlay menu template 28b0478
  • fixes less variables, fixes tags positioning cc19b9b
  • WIP 15bc0f4
  • no display: flex for blockquote added from slate 312a893
  • Add rule about code length 318cd48
  • Add indenting rule d589685
  • Add rule about import sorting cd337c1
  • Add rule about naming vars b112de0
  • Bring back classNames from header subpopup e477a51
  • removes tags hashtag from jsx 6b8b3e9
  • WIP d481324
  • fixes undefined on empty classes 4b29080
  • stylelint changes a5ab830
  • Footer link color @white 578e4f7
  • add margin to <br> element to simulate gap as in design 9ab9a97
  • impors colors from site variables 6117267
  • small fix for the link in footer action 72df049
  • remove uneeded style 66e9064
  • use proper naming conventions for var naming 596e314
  • Add file mode rule 805baa7
  • use less variables b43ac8d
  • Add DRY rule 2f1584e
  • Add functional components rule; add classnames rule 1b2915e
  • fix z-index of header 7d2a5d6
  • Remove comment 7d120b1

0.1.4 - 2022-03-01

💅 Enhancements

  • refactor(pagination): adjust to volto theming 06cc3b6
  • refactor(Form):create form field wrapper file 95b9934
  • refactor(megaMenu): update margins for menu items 230e476
  • refactor(megaMenu): update gradient 47f2ea4

🏠 Documentation changes

  • docs(docusaurus): divider page c6bb238

🛠️ Others

0.1.4-beta.0 - 2022-02-25

🚀 New Features

  • feat(github): added feature and bug reports templates with our guidelines as checkboxes 1549093

0.1.3 - 2022-02-25

🐛 Bug Fixes

  • fix(all): change eol to unix 62e7224
  • fix(banner): separate url value f9c9140
  • fix(all): merge eol c68f6e0
  • fix(blockquote): align self property now uses a valid entry ec76163

💅 Enhancements

  • refactor(megaMenu): new implementation ff013af
  • change(volto): removed customizations made for ims theme from volto-eea-design-system bc8d514
  • refactor(Timeline): divide to sub components and change files to .jsx 3e2bd3b
  • refactor(header): update variables 4e5d08d
  • refactor(Header): link header's menu to mega menu 08406d8
  • refactor(Menu): change mega menu implementation 455a51b
  • refactor(Grid):minor changes and delete extra files 272585d
  • refactor(timeline): adjust to volto theming b98641a
  • refactor(megaMenu): fix link hover issue for tablet 564e972
  • refactor(header): add remix icons and minor updates c9c97dd
  • refactor(Header): change header buttons implementation 6608b8c
  • refactor(Header): add sub components and change existing Main 74c35a3
  • refactor(table): adjust to volto theming ab7a0e8
  • refactor(Footer): delete Actions & ThemeSites files and clear imports 7a78456
  • refactor(header): update variables 326655a
  • refactor(Breadcrumb): add react router link and minor bug fix 073a3a3
  • refactor(Header): show menu on search & minor bug fix 4d49a8a
  • refactor(List): add extra default list story 95665cd
  • change(docusaurus) change generation of what's new section and bump package version 6c35cff
  • refactor(Footer): minor code changes 67cb4bc
  • refactor(Menu): add class to mega menu items for styling 19baa34
  • change(accordion): modified default accordion stories titles with real accordion names cf11cc8
  • refactor(Header): accessibility image alt fix a7347a6
  • refactor(header): adjust to volto in progress 760beca
  • refactor(Header): header items as storybook arguments 388c752
  • refactor(banner): update less variables 35b0a98
  • refactor(banner): actions as buttons; don't hardcode url for banner image; subcomponentize Banner, add Banner.Action; add developer guidelines on inline styles and line endings; 6dd5a41
  • refactor(blockquote): fix responsive margins and sizes rems 209f94f
  • refactor(Input): label position and style change 970074a
  • refactor(header): update dropdown menu 32eb0fa
  • refactor(timeline): theming updates c80c9aa
  • refactor(Blockquote):remove image stories a6357ca
  • change(docusaurus) proofread blockquote usage section and removed unused api section 0bb29fd
  • change(infrastructure) cherry-pick fix 9639243 skipping jenkins on auto commits fc744cd
  • change(ci) build storybook and docusaurus only when pushing to develop-itml branch 4de0cbf
  • change(infrastructure): modify whats new doc when committing the auto deployment 39df33e
  • change(blockquote): introduce float argument for blockquote with image storybook 8fc7290
  • refactor(pullquote): add word break 2245e53
  • refactor(Banner): minor bug fix b9073b6
  • refactor(table): fix th font weight a96a0a7
  • refactor(comment): remove avatar border radius d42c37b
  • refactor(banner): adjust title size 7a24d9c
  • refactor(Image): change image path a580da6
  • change(infrastructure): specify that docs folder contains changes for deployment a1ca915

🏠 Internal changes

  • style(input) prettier fixes e83fa0c
  • chore(storybook): prettier fix 354c7b3
  • chore(design system): technical commit for edw integration tests 9f76035
  • style(storybook): prettier fixes 3c9ad34
  • chore(infrastructure) updated branch with changes from bitbucket 77866f8

🛠️ Others

  • doc(colours):fix color to better show primary ones 705b789
  • doc(colours):change font size to fit text in one line 4ad7516
  • bump package release to 1.3.0 f3cfe4f
  • Refactor banner into content subcomponent f8df238
  • lint fixes cda322d
  • rollback don'ts grammar change and disable unresolved import for Banner.stories.jsx a1bd715
  • Add space line in component d4d1a5f

0.1.2 - 2022-02-17

🚀 New Features

  • feat(blockquote) added blockquote styles as a custom module d30662e

🐛 Bug Fixes

  • fix(inpageNavigation): hide at the top of the page 97ef500
  • fix(footer):missing image ac91a29
  • fix(comment):fix broken image 8125dc1
  • fix(message): fix font loading fdc498e
  • fix(logo): logo change 5f8c8af

💅 Enhancements

  • refactor(storybook): multiple components fixes 4a3ff51
  • change(infrastructure) re-enable integration tests for auto release stack ce8daf8
  • refactor(storybook): global site files styling update f3770f1
  • refactor(storybook): multiple components 9277aac
  • refactor(footer) adjust to volto theming update a59f1c3
  • refactor(header): minor styling update dd6b55c
  • refactor(Header): change header mega menu 7559b57
  • refactor(banner): adjust to volto theming 451b949
  • refactor(accordion): minor styling update aeaf25f
  • refactor(footer): adjust to volto theming bdff176
  • refactor(footer):mobile responsiveness 14822be
  • refactor(storybook): main and custom less files update 1607760
  • refactor(timeline): update after removing timeline addon f54d380
  • refactor(Footer): replace with subcomponents 378c652
  • refactor(Header): header change 029e850
  • refactor(Header): change header bar 2b766fd
  • change(docusaurus) use itml branch for docusaurus deployment 6e286c5
  • refactor(accordion): adjust to volto theming 971fcb8
  • refactor(Header): add sub components 7f955db
  • change(docusaurus) tweak auto deployment to always commit changes from docs a2940da
  • refactor(banner): less and variables files created d5b1a8a
  • refactor(label): adjust to volto theming 3c945e1
  • refactor(message): adjust to volto theming 3e950fc
  • refactor(Footer): add sub components and props c3d1487
  • refactor(modal): modal and confirm adjust to volto theming 83b60e9
  • refactor(comment): adjust to volto theming 84348c3
  • refactor(storybook):adjust headings 32f64f9
  • refactor(Header): add comments to header menu c2c83b2
  • refactor(Accordion): clear up accordion stories code 4e59b8f
  • refactor(segmant): adjust to volto theming 3ab211e
  • refactor(button) minor styling update 8782bb2
  • refactor(banner): change image position cdd76d5
  • refactor(breadcrumbs): update less variables 640817e
  • refactor(list): adjust to volto theming 1079c73
  • refactor(timeline):adjust timeline module 213eb11
  • refactor(blockquote):adjust to volto theming 5eec87f
  • refactor(progress): add progress bar colors ccf3c98
  • refactor(pullquote):adjust to volto theming fee4466
  • refactor(Header): change mobile mega menu c7ecf18
  • refactor(statistic): adjust to volto theming b726e49
  • refactor(button) adjust to volto theming eb257f8
  • refactor(form): minor styling update 79934b2
  • refactor(Footer): create Actions & Sites sub components 446840b
  • refactor(inpageNavigation): adjust to volto theming 85c631a
  • refactor(Inpage Navigation): changed button's display 36e5b4f
  • enhancement(docusaurus) modified headings to be within release versions 19ace30
  • refactor(storybook): move components to ui folder cb91f88
  • refactor(Header): change mega menu de0fc6b
  • refactor(Pullquote): divide Pullquote to sub components 34413c4
  • enhancement(docusaurus) replace changelog when auto-building docs Refs #145331 da25c0e
  • refactor(popup): adjust to volto theming d0d192d
  • refactor(card):adjust to volto theming 2ab6f91
  • refactor(item): adjust to volto theming 89a16af
  • refactor(pullquotes) remove unnecessary variables e0d20a3
  • refactor(progress):adjust to volto theming d1ab950
  • refactor(blockquote) change variables names 36fd5be
  • refactor(comment): adjust font sizes 0311ed1
  • refactor(InpageNavigation): clear up code 1d7afdc
  • refactor(container): change variable name for computer padding 26d123f
  • refactor(inpageNavigation): remove imports 25c1d1c
  • refactor(storybook): update ui index components exports ce78d47
  • change(infrastructure) auto build storybook when pushing to develop-itml branch of volto-eea-design-system e9aa5bc
  • refactor(storybook): delete demo stories 8b58d02
  • change(docusaurus) align deployment steps for building docusaurus 37e4ce0
  • refactor(storybook): remove components from customizations folder 8930ede
  • refactor(tab): minor styling update 1252ad0
  • refactor(comment): change avatar src e5f9c4c
  • refactor(banner) : change file type and folder 878742b
  • refactor(form elements):changed text 919beea
  • refactor(Image): change image src b971084
  • refactor(Pullquote): add component propTypes d32c5e6
  • refactor(blockquote): adjust font sizes d71a3ce
  • refactor(footer): update font sizes 1c91c35
  • refactor(Blockquote): add component proTypes ea02649
  • refactor(logo): update image f611372
  • refactor(docusaurus): restore config f2c5239
  • refactor(blockquote): update component name 572e655
  • refactor(header): fix story header import ceda6c7
  • change(infrastructure) auto build docusaurus when pushing to develop-itml branch 7bebdf5
  • refactor(storybook): remove components from customization folder 4a9bb9b
  • refactor(banner):story rename 56ff603
  • change(testing) removed navigation from cypress tests until component is finished 5549f4c
  • refactor(Segment): change to .jsx extension 5cb35d8
  • refactor(Pullquote): change to .jsx extension 564cf7e
  • refactor(PopUp):change to .jsx extension dcb24ff
  • refactor(InpageNavigation): change to .jsx extension dfefce3
  • refactor(Blockquote): change to .jsx extension 44a1645
  • refactor(heading): story name update aa10f34

🏠 Internal changes

  • style(footer): prettier fix 902c257
  • style(storybook): prettier fixes 59f941d

🏠 Documentation changes

  • docs(docusaurus):multiple page updates 2aba73e
  • docs(docusaurus):update page content 565697f
  • docs(grid):update components grid 60eb083
  • docs(docusaurus): page adjustments 0641eac
  • docs(docusaurus):updated various pages f860176
  • docs(docusaurus): logo change 3af5e5c

🛠️ Others

  • added sortable table stories and descriptions 6d44dd7
  • Layout components theming 5861013
  • recovered files from origin a4ac04f
  • grid component & stories changes 4a5752e
  • Updated what's new section with actual commits from volto-eea-design-system repo fc5e3c3
  • Docusaurus title possible fix. db699e7
  • form elements stories added description & default values 6b4f6eb
  • removed API tabs 58aa928
  • Layout updates 854f388
  • Refs #142123 removed extra customization of semantic.less: ab9de81
  • added page-header,footer and grid in docusaurus 660c8e3
  • Manual docs build and commit 666eb6a
  • added svg & png files f1338d5
  • added missing components to docusaurus 934dfd8
  • Control descriptions updated 56581eb
  • Grid updates 700332d
  • Button theming update 0ec68b6
  • site variebales & overrides changes 7251162
  • Table and Tabs theming 49f0860
  • Responsiveness updates 48e1351
  • added various components to docusaurus 550d719
  • Checkbox and radio updates 24652a2
  • remove images from typography and colour docs 8493e92
  • added guidelines' text and finished all components 02d75fc
  • added more missing components in docusaurus 8be8263
  • Prettier changes on docusaurus 5f1e5eb
  • Grid updates ae09945
  • Minor fixes for tests 3bdf306
  • Layout updates 8b7a4dc
  • Footer and TOC theming bb3d3c4
  • Refs #145331 manually commit changelog until autobuild is stabilized 93168b0
  • label component changes df8c0ff
  • added several sections to the theming guidelines ff1a649
  • Updated removed files. 84f9b8c
  • added more docusaurus components 52a3b9e
  • Progress Bar 9f2efc9
  • Modal and Confirm updates 3b306c6
  • Add proper changes to whatsnew meant in previous commit 40f78e3
  • Form Descriptions de0dfbc
  • Prettier fixes 1337e6f
  • Deleted files b82f982
  • add new images for spacing 7b7b2c4
  • Messages Theming ad621a3
  • added new content to docusaurus 1c83452
  • Minor less updates a36a8bb
  • Tabs and lists updates e37eef1
  • Inpage nav and timeline components 76f0f82
  • Prettier updated files 679b9d2
  • dropdown initial d8aef26
  • Prettier changes f068af0
  • List initial 6d3b969
  • List story updated e96a6f6
  • Statistics updates 74bf639
  • styling c169cc0
  • timeline comp storybook changes 1f42686
  • feature(docusaurus) added theming guidelines ded1f04
  • Properly commented out integration tests. 48b3a15
  • Reattempting commented out integrations tests. 3dd8211
  • Button theming 4231e1c
  • Card initial 06dace5
  • form element storybook changes c4b06aa
  • Pagination theming 2a80175
  • Accordion theming 8061bf9
  • global var updates and radio story 9526ee2
  • created pullquote component & stories df35563
  • Item stories added description & default values 9d459f2
  • storybook clean up code bffd326
  • List updates 28f1b53
  • Button classes updates 788c289
  • Prettier fixes 678c9be
  • Removed header title from partial docusaurus components. ed7c45e
  • created banner component and stories 9be170f
  • Breadcrumb stories description & defaultValue -- clean up code 186ab65
  • Refs #142123 added customization of semantic.less: 1e02356
  • Card stories added description & default values f6b408f
  • Statistic and accordion updates 16064ce
  • breadcrumb component & stories changes 5bceb98
  • Container initial 3eb7155
  • doc(docusaurus):Fix text for various parts bfd3fa2
  • blockquote component & stories 879b640
  • Refs #143412 removed doc comments breaking doc building e6a6756
  • Popup updates ce2d641
  • Global variables for colors and borders added 6e5fbd6
  • Tab stories changes 5429cfb
  • Confirm stories added description & default value 85cda14
  • Kebab case class names b41cd07
  • Card and Comment class updates 3899465
  • Accordion updates c97ba39
  • item stories changes 772e41f
  • Accordion class updates 9cdde86
  • Comment stories added description & default value cb6f25b
  • Accrodion stories description & default value ab8fb88
  • Pullquotes updates c598421
  • Modal and confirm class updates 0ae47e6
  • Tab and paggination updates 96796ff
  • Form Updates e986a9f
  • Classes renamed 73c8c3d
  • List and item less updates ce0de17
  • Confirm theming 36e20ce
  • container overrides changes 4b3970b
  • Docusaurus theming fc4a8c5
  • refacto(headings): update mobile headings sizes b2e9f83
  • list stories and style changes c61db53
  • Tab theming e31e6c3
  • Message and pagination classes updates c230687
  • Segment initial d5724fe
  • Refs #143412 removed doc comments from api_markdown breaking doc building efeacba
  • Timeline and responsiveness updates 1ed1524
  • Refs #142123 use swap font-display for performance reasons 083738f
  • Breadcrumb stories minor changes 3d0d17c
  • Table component stories minor change 0bf4083
  • List stories changes a64b304
  • blockquote component minor changes cdf71a8
  • ckeckbox stories minor change 6d6e508
  • image component storybook changes 91290ec
  • button overrides changes d5b78dd
  • accordion overrides changes fdcf7d5
  • Accordion component and stories changes 5079247
  • Card theming 23bbb9d
  • statistic overrides changes 2b11cb5
  • Refs #143412 build docs only on pull request like we do with storybook 473bb87
  • Card component stories minor change | added link icon deb423a
  • comment component stories changes f1c5e75
  • Accordion component bug fixed 815e91d
  • Refs #145331 use iso date to release so that we see also time ceedf08
  • correct connfig for doco 93e1313
  • Item updates fae93d4
  • added layout grid 2e6be55
  • tab overrides changes 87aaf32
  • message overrides changes 6dccfca
  • segment storie changes 296371f
  • progress component stories changes df10c2e
  • message comp storybook changes c86b405
  • Accordion cmponent stories | minor bug fix 6de0d81
  • Refs #145331 add all changes when auto building docusaurus ce11cce
  • perf(timeline):removed semantic timeline package 0aeb34a
  • Tablet Breakpoint update b229c27
  • Refs #143412 set storyBook Url to eea.github.io b7fdecb
  • bump package version to signaling of a major release c835f1d
  • small commit to trigger deployment of storybook and docusaurus be46ea3
  • doc(accordion):revert previous change 3de02da
  • fix typo for caption @desktop line-height pixel number 1671552
  • Commented out integration tests. 574cfec
  • popup overrides changes a9555e3
  • container component stories fixes 692cfce
  • Added timeline to package json fixed f2e93e0
  • Refs #142123 modified import of volto-eea-design-system icon.less: a7fab7d
  • Refs #142123 reference icon.less from this package: 5616e6d
  • Menu component stories change 2797716
  • Image stories minor change ddb9f1d
  • card component stories changes 6ccba1e
  • Added timeline to package json 93031d6
  • table stories code clean up b7b2a56
  • Refs #143412 removed extra baseUrl from docusaurus config 79f36da
  • Accordion stories minor change ffe808a
  • Theme assets 3f4bea4
  • Merged with develop 167ec9f

0.1.2-beta.2 - 2022-01-03

0.1.2-beta.1 - 2021-12-22

🛠️ Others

  • Tab component stories minor changes 4690a6f
  • Comment component stories minor changes a87cb6a
  • Form stories changes fc30c90
  • Grid component stories minor changes 798fdd0
  • Image component stories minor changes be93385
  • Menu component stories minor changes cb1f9a8
  • Dropdown component stories minor changes 57cf954
  • Header component stories minor changes 264fd46
  • Confirn component minor changes 9a00bc1
  • Item component stories minor changes 6994fa0
  • Label component stories changes 5cc5843
  • Container component stories minor changes e6e40b3
  • Message component stories minor changes ba9d377
  • Breadcrumb component stories minor changes ff7a176
  • Modal component stories minor changes af1fe6a
  • List stories changes 0016042
  • Button component stories minor changes 690dfd2
  • Radio component stories minor changes 84eac30
  • Progress component stories minor changes e676357
  • Pagination component stories minor changes b1af226
  • Segment component stories minor changes 5f8c7ef
  • Refs #143412 eslint fixes for component stories badcb91
  • Table component stories minor changes 7c104b8
  • Refs #143412 more eslint fixes a88c091
  • Refs #143412 warn for broken links instead of throwing bd5821c
  • Refs #143412 merge changes from develop-itml to develop branch bca28b9
  • made tabs dynamic for api tab ea37ecb
  • Basic storybook/Docusaurus components 840ab60
  • created List directory & srories based on semantic-ui List component 51f1901
  • made tabs as component easy to call for other components 07bae49
  • Popup Component | minor fixes 2ff9908
  • created stories for Tab component 95e3a73
  • created Table directory and stories based on semantic-ui Table component e16115d
  • List component stories - minor changes de11343
  • created stories for Comment component a20f884
  • created stories for Grid component 360d2a8
  • created stories for Image component 3c1d2bc
  • created stories for Menu component 17e3b37
  • Added untracked files 75f0afd
  • created Dropdown stories d6a2538
  • created Header component stories b833979
  • created stories for semantic-ui Confirm component 6fddccc
  • created Statistic directory and stories with semantic-ui Statistic component cd62498
  • created Item component stories 90ec2be
  • created stories for Container component 41934f6
  • created Label component stories 71732f6
  • created Message component stories adcbeab
  • created Modal component stories c25409d
  • Breadcrumb component stories and minor changes 6264d92
  • created Pagination component stories 57cdad3
  • created Segment component stories d8d01d7
  • created stories for Radio component 1fd062d
  • Menu stories minor changes 6ba5e0d
  • Statistic component stories minor changes 3c874a5
  • Card component stories minor changes 290bda8
  • Accrordion stories minor changes 2ee3f59
  • renamed Demo folder to Layout b9f6d05
  • remove test exclusion 94dba3e
  • Accordion component stories minor changes e672d59
  • fix docusaurus url (removed trailing /) b6c59fc
  • Item component stories - minor changes f0a9902
  • eea logos and assets b435b51

0.1.2-beta.0 - 2021-12-18

🛠️ Others

  • Refs #140454 added github action to build docusaurus to the develop branch abe6a72

0.1.1 - 2021-12-16

🛠️ Others

  • Refs #140454 changed the following to volto-eea-design-system: 6791d41
  • Refs #140454 corrected base url for docusaurus website build 98271b3
  • Initial test changes on design system/docusaurus. 9dad612
  • After prettier check 9ec40b4
  • Refs #140454 restore SearchWidget.jsx content and removed dummy text from docs intro page 7505df8
  • Refs #140454 added references to eea and the storybook in the docusaurus footer 42bbfcd
  • Refs #140454 lint fixes 9502f2b
  • Add SonarQube badges a4e0a40
  • Refs #140454 brought changes from develop-itml and upgrades docusaurus 207c873
  • Refs #140454 removed extra content not needed by the docusaurus site bc68ebe
  • Refs #140454 updated docusaurus to latest beta d68ed8a

0.1.1-beta.0 - 2021-12-09

🛠️ Others

  • Refs #140454 moved header and footer templates from volto-ims-theme: e2d5e56
  • Refs #140454 added website folder with docusaurus site skeleton 6fd15f4
  • Refs #142794 added commented implementation of the header and footer area: 773ad87
  • Refs #140454 changed the following: 4137ec4
  • Refs #140454 removed storybook from volto-eea-design-system: a129ffb
  • Refs #140454 added storybook as a dev dependency: e04ae4e
  • Refs #140454 updated Breadcrumbs.jsx to latest version: 63fe507
  • Refs #140454 we should use jsx and not mdx for storybook tests 3668e66
  • Refs #140454 updated eea-design-system readme with extra info on package contents d2efc3d
  • Refs #142010 - Optimize Volto-addons gitflow pipelines 3af46d2
  • Refs #140454 Renamed folders of docusaurus website: 15bca74
  • Add demo story 757c409
  • Refs #142794 enabled minimum css so that header looks decent adbe233
  • Refs #140454 use the develop branch for the readme linking, it's always more up to date 23dcf16
  • Refs #140454 added missing themes reference for the eea theme e9ca244
  • Refs #140454 modified assets imports after move to volto-eea-design-system 2250cc7
  • Load footer in segment 80d38a9
  • Refs #140454 bump package version to 1.1.0 from 0.1.1 from develop branch: 1314039
  • Refs #142794 keep toolbalWidth variables in case design system runs in an older version of Volto 1a8b305
  • Refs #142794 changed the following: fbb80b1
  • Refs #140454 moved storybook scripts to the scripts section 705c4c3
  • Refs #140454 removed dangling comma 514f24d
  • Refs #140454 changed link to the start of the docs 0e16fdf
  • Refs #140454 add h1 to the list of elements that are max 800px and centered 7d3c30f
  • Add Sonarqube tag using ims-frontend addons list 8d657d0

0.1.0 - 2021-11-17

🛠️ Others

  • Refs #140454 changed the following to volto-eea-design-system: 40d2af6
  • Refs #141204 elements folder now has the variables and overrides from pastanaga theme 595b4e6
  • Refs #141204 use font awesome from SemanticUI instead of Pastanaga: 4e273ca
  • Refs #141204 removed the components customizations from volto-eea-design-system: c98c260
  • Refs #141204 added customizations folder from volto-ims-theme to volto-eea-design-system: ff4bf44
  • Refs #141204 modules folder now has the variables and overrides from pastanaga theme f2841b6
  • Refs #141204 customized Comments.jsx to remove unnecessary container b2e95d7
  • Refs #132149 added initial commit for volto-eea-design-system: 2934b91
  • Refs #141204 collection folder now has the variables and overrides from pastanaga: 213d496
  • Refs #141204 removed search widget customization, we can use volto-ims-theme for that file b7e8b0c
  • Refs #141204 stylelint quick fixes 5595925
  • Refs #141204 changed the following: 769f4f9
  • Refs #141204 changed the following to the eea theme: 06d8d86
  • Refs #141204 eea site.variables now use all values from pastanaga's site.variables 6535c0f
  • Refs #141204 simplified container overrides: 5125003
  • Release 1.0.0 177d0ce
  • Refs #141204 globals folder now has the variables and overrides from pastanaga theme 116a0c3
  • Refs #141204 changed the following: 2e7f423
  • Refs #141204 modules folder now has the variables and overrides from pastanaga theme: 27a201d
  • Refs #141204 text elements are now with a max width and centered within content-area: bbed7bb
  • Refs #141204 added main.variables entries from pastanaga to eea theme 1cbbc55
  • Refs #141204 modified theme image imports for component customizations ef3238a
  • Refs #141204 modified container width to be auto: 2e8d2e0
  • Refs #141204 modified several icons to use the \f values instead of \e: c397145
  • Refs #141204 changed the following: c518eda
  • Refs #141204 ensure that main column isn't enlarged over the sidebar section on edit f7a2868
  • Refs #141204 changed the following to the form styling: eb92e05
  • Refs #141204 modified path of theme folder location for image selection f8cca45
  • Refs #141204 added missing mobileScrollbarWidth variables introduced as part of the mobile navigation pull request 444c78d
  • Refs #140454 reference font and image path from ~volto-themes instead of relative ec93ed3
  • Refs #141204 ensure that Volto doesn't crash when site module is set to eea: 51f2f27
  • Refs #141204 added tiny size prop to Breadcrumbs in order to have it as 12px 56a12e2

0.0.1 - 2021-11-17

🛠️ Others

- +

What's new

EEA Design System (1.0)

Components ready to be used

The following components are ready to be used as Volto blocks, slate integration, or via the advanced block styler:

  • Accordion block
  • Call to Action block
  • Callout - part of the Description block, slate
  • Card - part of the Teaser block and Listing block, it includes several variations like round card e.g., used for Avatar
  • Divider block
  • Headings slate
  • Hero block
  • Item block - used for text with an icon (remixicon or custom SVG/image) on the left/right
  • List slate - ordered and unordered
  • Quote block
  • Statistic block
  • Tag block
  • Table block
  • Tabs block
  • Timeline block

Future releases

Below is a non-exhaustive list of the work-in-progress which is planned for future releases:

  • Navigation Portlet (used on the left/right hand of content)
  • Spacing/padding system. We want to add the ability for editors to consistently apply various spacing/padding on certain components in order to allow a better alignment when components are used together.
  • Improve docusaurus and storybook with more components, controls, and variations in order to better reflect what is possible in Volto.

Generated by auto-changelog.

Unreleased - 2023-03-30T19:12:41.039Z

💅 Enhancements

  • change(breadcrumbs,mega-menu): better screen readers support, see links instead of groups #309 from eea/firefox-accessibility-tab-issues d6b0b4a
  • refactor(megaMenu): align menu items with demo site for better testing 82a5c84
  • refactor(breadcrumbs): updates on structure and story for accessibility 770c8c0
  • refactor(megaMenu): Restructure Topics and Countries lists d816e7a
  • change(mega-menu): use lists for navigation, enhance voice over support for better accessibility d13137f
  • refactor(header): firefox accessibility errors fix c7d35b9
  • change(breadcrumbs): label modification for better screen reader output c967bef
  • refactor(megaMenu): clean up function after test 883eb73
  • change(mega-menu): added code to align countries left column subtitle with the right column 1aa33dd
  • change(mega-menu): sub-title padding tweaks for better spacing normalization e08668d
  • change(breadcrumbs): fixed sizing of breadcrumbs list items 1761e98

🏠 Internal changes

  • style(megaMenu): remove comments and unused properties fa5f8f8

1.0.6 - 2023-03-29

🚀 New Features

  • feat: add viewport-(width/height) less functions and fixed banner image url #329 from eea/develop e8e70bd
  • feat: add viewport-(width/height) less functions 68300a3

💅 Enhancements

  • change(docusaurus): set full class name for remix icons f435e10
  • refactor(Banner.jsx): use flattenToAppURL helper function to get image source URL 24b13d7

🏠 Internal changes

  • style(theme): update container width and margins in eea theme 3e4446a

🛠️ Others

  • horizontal overflow hidden in view mode f395f27

1.0.5 - 2023-03-28

🚀 New Features

  • feat: improve full-width class 70bba7e

🐛 Bug Fixes

  • fix(banner): Add missing divider for time tag #327 from eea/banner-metadata c46a583
  • fix(banner): Add missing divider for time tag 7d68c39

1.0.4 - 2023-03-27

🚀 New Features

  • feat(copyright): Add copyright prefix - Image - refs #250724 6a72772

🏠 Internal changes

  • style(copyright): Cleanup useless min-height - refs #250724 f2457df

🛠️ Others

1.0.3 - 2023-03-24

🐛 Bug Fixes

  • fix: improve full-width class 9322259
  • fix(header): Remove z-index from subsite logo #320 from eea/subsite-logo 5091100
  • fix(header): Remove z-index from subsite logo d433a97

💅 Enhancements

  • change(header): Add search popup customizations from eea-website-theme 43e5a78
  • change(popup): create custom popup for better accessibility 036aac9
  • change(popup): added most important popup properties from Semantic ui implementation 61f65bc
  • change(banner): use custom-made Popup for better accessibility 10d0fcf
  • change(banner): use custom-made Popup for better accessibility 9108bee
  • change(popup): added also the basic property a4497ac
  • change(colors): update gray-4 color value #321 from eea/update-gray-4 f458ff0
  • change(banner): MetadataField now uses proper time tag when value is datetime b4c4d34
  • refactor(tokens): updated gray-4 b890df7
  • change(footer): Fix error and empty div if no social links are present #319 from eea/footer-social 8922246
  • change(footer): Fix error and empty div if no social links are present 5d934a6

🛠️ Others

1.0.2 - 2023-03-14

🐛 Bug Fixes

  • fix(megamenu): topic menu title is now placed before content 6004bcb
  • fix(megamenu): removed in depth nav_title renaming that set title wrongly to a-z topics 899ca0e

💅 Enhancements

  • change(megamenu): removed special styling from at a glance mega menu section fd0c4c8
  • change(footer): renamed thematic information platforms to environmental information systems e7004a7
  • change(docusaurus): updated static image of footer sections 4ff3185

🏠 Documentation changes

  • docs(What's new): Update 'What's new' d7ed9d6

🛠️ Others

  • fixed accordion selector typo f4cabc8

1.0.1 - 2023-03-13

1.0.0 - 2023-03-13

🐛 Bug Fixes

  • fix(Footer): Open internal links within the same page 5b3e409

💅 Enhancements

  • change(banner): use huge scale instead of full image for better performance 381c58e

1.0.0-beta.6 - 2023-03-10

🚀 New Features

  • feat(site): serve Roboto fonts from eea design system package instead of google fonts #311 from eea/roboto-library f6a1b3e

🐛 Bug Fixes

  • fix: full-width is now properly sized 6e2e348
  • fix(storybook): add fontDisplay 078966a

💅 Enhancements

  • change(image): copyright position fixes, moved image floating to image-block-container 53422e0
  • change(colors:) update the design system colour palette #312 from eea/update-color-palette a5fb694
  • refactor(docusaurus): added roboto library 19de7b1
  • refactor(storybook): added roboto library e991621
  • refactor(tokens): update colours 3a2c1e1
  • refactor(storybook): restored site variables a48478b
  • change(copyright): implemented copyright hover design 6b12441

🏠 Internal changes

  • chore(storybook): switched google fonts to true 4a8cae4
  • chore(colours): changed back yellow 6 87c9bbc
  • chore(lint): lint 9b0f125
  • chore(storybook): lint 29bc809

🏠 Documentation changes

  • docs(colours): colours update 161007e
  • docs(colours): accessibility ee342aa

🛠️ Others

1.0.0-beta.5 - 2023-03-07

💅 Enhancements

  • change(carousel): tweak size of carousel dots for better touch interaction e1fb823
  • change(footer): removed min width and height from links ac33219

🏠 Internal changes

  • style(hiddenStructure): Add hiddenStructure utility to be used with h1 heading on frontpage - refs #158717 672cca2

🛠️ Others

  • fixed less build failure due to changes in footer.less 190bc8c
  • lazyload bg img on footer also ae07162
  • lazyload footer images a0633c9
  • Increase performance - mobile friendly 07d86c8
  • better useOnScreen hook c214b6b
  • role change for accessibility 5e758e0
  • minimum tap dimension for mobile a25e9a8
  • Release 1.0.0-beta.5 e4417e1
  • Add Sonarqube tag using eea-website-frontend addons list b227cf8
  • feature(mobile): increased performance by lazy loading footer images #303 from eea/increase_performance 80d1df1
  • useOnScreen default export 3e6cfdd
  • use aria-labels on dropdown 27e1443
  • prettier a7f8384

1.0.0-beta.4 - 2023-03-01

🚀 New Features

  • feat(footer): Add footer description 2ad0f71
  • feat(footer): Add footer description #306 from eea/footer-description bf655d1

🐛 Bug Fixes

  • fix(footer): Don't show empty row if description is not present 2ca7f7d
  • fix(footer): Add class for children 3c50d15
  • fix(search): Fix search links color #307 from eea/search-accessibility a76f48b
  • fix(search): Fix search links color 69c42ef

💅 Enhancements

  • change(carousel): tweak card width and padding for better arrow alignment e184f70
  • change(storybook): include footer description in storybook e904aa0

🛠️ Others

1.0.0-beta.3 - 2023-02-21

🚀 New Features

  • feat(accordion): storybook accessibility by using buttons for titles #297 from eea/accessibility-accordion 809d52b

🐛 Bug Fixes

  • fix(dropdown): remove close on blur so that we can navigate links using keyboard 5442715

💅 Enhancements

  • change(language): dropdown to use links for proper keyboard navigation 6a7de30
  • refactor(images): cleared unused/renamed images assets 821f5c1
  • refactor(Accessibility): add box-shadow on focus-visible components b1adcc3
  • refactor(images): remove unused docusaurus svgs c5ef14c
  • refactor(header): add escape key functionality, actions from div to button to have proper focus state 8081aa4
  • change(language): restore dropdown duplication in order to properly show and hide language dropdown cb28888
  • change(search): to reflect changes from eea-website-theme 2cc35e0
  • refactor(footer): update p with h3 heading tag for header ca1477b
  • refactor(footer images): removed unused/renamed 186de6b
  • refactor(Accordion): div titles to buttons, test in mobile mega menu accordions eaad4b4
  • refactor(docusaurus): cleanup decorative images fedc4d4
  • change(accessibility): style outline instead of box-shadow 53209f3
  • refactor(Footer): update mobile header size 01ab7f0
  • change(header): set the logo class directly on the link f8fba50
  • refactor(images): clear docusaurus unused pngs db5c611
  • refactor(header-images): removed unused 8250d94
  • change(language): hide language dropdown by default cc6064f
  • change(header): top dropdown menu keyboard navigation #293 from eea/accessibility-megamenu-searchbox 1e6fa65
  • change(button): set focus styling for buttons 33ebfca
  • change(footer): Avoid devtools warning in FooterActions #304 from eea/avoid_warning d774824
  • change(footer): Accessibility update p with h3 heading tag for theme sites title #302 from eea/footer-accessibility 5bf70de
  • change(documentation): Rename all image files to follow the agreed convention #301 from eea/refactor-image-filenames cfe44ef

🏠 Internal changes

  • style(header): react syntax fix 3add127
  • chore(docusaurus): ignore website/.yarn 0b33ffd

🏠 Documentation changes

  • docs(guidelines): add image name convention 290747c

🛠️ Others

1.0.0-beta.2 - 2023-02-13

🐛 Bug Fixes

  • fix(footer): action and copyright #300 from eea/develop 579f3e4
  • fix(footer): action or copyright links are simple a tags for external link 9af5070
  • fix(accessibility): added navigation and footer id's for skip link 48354b9

💅 Enhancements

  • change(footer): typos and modified footer links to be center aligned ac23f04
  • change(footer): added gap for actions and copyright 7d32ddd
  • change(footer): modified footer gap b8a820a
  • change(footer): removed extra text and date from copyright section af47bbe
  • change(navigation): raise z-index of go to top link 485ca72

🏠 Internal changes

  • chore(docs): Update eea.hbs template to beta - refs #158717 196538e

🛠️ Others

1.0.0-beta.1 - 2023-02-09

🚀 New Features

  • feat(search): Add search suggestions style 6b2b77b
  • feat(search): Add search suggestions style #296 from eea/search-suggestions 3b0c956

💅 Enhancements

  • change(search): Add proper margin for search popup 190c9f5

🛠️ Others

1.0.0-alpha.15 - 2023-02-08

🚀 New Features

  • feat(Card): add teaser card grid story 53cac0b
  • feat(utilities): Complete list of text-align utilities - refs #160747 224fab6
  • feat(small): CSS for small HTML tag - refs #160747 ad3c0ad
  • feat(fw-light): Add font weight light utility - refs #160747 c44cf57

🐛 Bug Fixes

  • fix(card): teaser card dimensions on tablet size #290 from eea/teaser-card-grid 013fdf5

💅 Enhancements

  • change(card): added extra content for teaser card story 30690ae
  • refactor(style-menu): add text-color to paragraphs styles #291 from eea/stylemenu-theme-colors 2d78307
  • change(header): Small fix in search popup #292 from eea/search-popup 86c1305
  • refactor(style-menu): add text-color to paragraphs styles 3446bc2
  • change(color): darkCyan is now replaced everywhere by the new green ef3791d
  • change(header): Small fix in search popup 3d622ea

🛠️ Others

1.0.0-alpha.14 - 2023-01-30

💅 Enhancements

  • change(mobile menu): integrate a-z topic with menu rendering logic #287 from eea/develop 05d4c04
  • change(mobile menu): integrate a-z topic with menu rendering logic 246d3d8

🛠️ Others

1.0.0-alpha.13.1 - 2023-01-30

💅 Enhancements

  • change(mobile menu): hardcode a-z topics to '/en/topics-in-depth' #286 from eea/develop 6436224
  • change(mobile menu): hardcode a-z topics to '/en/topics-in-depth' 5235b52

🛠️ Others

1.0.0-alpha.13 - 2023-01-27

🚀 New Features

  • feat(utilities): added has--bg--top center and bottom utility classes 051e6d7

🐛 Bug Fixes

  • fix(header): update green color used in page header #284 from eea/fix-banner-background 29d54db

💅 Enhancements

  • change(site): added fixes from customVolto.css to design package 51ba9b5
  • refactor(Banner): update banner background green color fd4a552
  • change(mobile menu): changed link for a-z topics to point to in depth 721bf23

🛠️ Others

  • 1.0.0-alpha.13 release #285 from eea/develop c966940
  • bump next version to alpha 13 897e906
  • Back to dev 5780dc7

1.0.0-alpha.12 - 2023-01-24

🚀 New Features

  • feat(card, colors): visited color change and title on image option for cards #283 from eea/develop e638ee6

🐛 Bug Fixes

  • fix(mobile menu): sub links when an accordion section is active bb3be81

💅 Enhancements

  • refactor(Card): create card template for stories 2fa77f3
  • refactor(Card): add image with title css 6e6e63e
  • change(card): implement title on image within image section ff6cc60
  • change(card): added image card section, tweaked mobile heading size 0f879e1
  • change(cards): moved image gradient overlay to a mixin.less file 8b4928a
  • refactor(card): Update titles value and size c35ad5c
  • refactor(docusaurus): applied image naming convention ee7bc29
  • change(cards): added image for all storybook card examples 3f19413
  • change(banner): restored label value of metadata field when type isn't date 571a4f2
  • change(card): title padding value for a more balance look 74b6556
  • change(card): removed uppercase transform from title on image 2948ae1
  • change(colors, Docusaurus): Visited link colour change and thematic logo replacement #278 from eea/refactor-visited-link f82d978
  • refactor(storybook): visited link variables b209b2f

🏠 Documentation changes

  • docs(colors): visited link update ece77fe

🛠️ Others

  • fix typos in footer gradient variables 4006640
  • change version to alpha 12 instead of 1 final 3225025
  • feature(card): new card variation with title on top of image #267 from eea/title-on-image-card 2c0ca95
  • Back to dev 477d997

1.0.0-alpha.11 - 2023-01-17

🚀 New Features

  • feat(docusaurus): Header and footer elements section #277 0df271c

🐛 Bug Fixes

  • fix(banner): storybook date input and simplified gradient opacity 7674d76
  • fix(banner): re-added title class on banner title 6d15799

💅 Enhancements

  • refactor(banner): sync storybook and Volto component c9087cc
  • change(banner): removed margin from title 17e592c
  • refactor(banner): sync storybook and Volto component #275 from eea/sync-page-banner-theme 4331fb4

🏠 Documentation changes

  • docs(footer): updates on header elements b41c550
  • docs(footer): add elements anatomy d9f0872

🛠️ Others

  • add(banner): banner title css d003247
  • Release 1.0.0-alpha.11 07e8f85
  • renamed image elements as requested in review 8541fb6
  • remove(banner-gradiant): image gradiant in favour of text 1b58520
  • update(gradient): use 8deg angle 6fd597d
  • update(gradiant): make it 0deg 1bb2696
  • remove(comment) referencing old verison of title 4226d42

1.0.0-alpha.10 - 2023-01-13

🐛 Bug Fixes

  • fix(subsite): Fix logo size on subsite section 65fff54
  • fix(subsite): Fix logo size on subsite section #279 from eea/subsite-fixes 8f6cf94
  • fix(mega-menu): show sub grid only if there are children ddfbd82

🛠️ Others

  • Add variable definitions 293fe65
  • Release 1.0.0-alpha.10 7014d08
  • Add Sonarqube tag using advisory-board-frontend addons list ef58a6f
  • Back to dev 31d4616

1.0.0-alpha.9 - 2022-12-28

💅 Enhancements

  • change(contextnav): Default title is text, custom title is link #273 from eea/context-nav-link-title ef7bdb7

🛠️ Others

  • Show document and folder content-type in Navigation listing 8471db3
  • Default title is text, custom title is link 1ae95b0
  • Context nav title link to # a27a6b7

1.0.0-alpha.8 - 2022-12-23

🚀 New Features

  • feat(copyright): Align copyright options with Volto integration - refs #158210 6bac7f6

💅 Enhancements

  • refactor(logo): import theme site logos to the story 2f29136
  • refactor(logo): update logo and mega search gradient e11f44d
  • refactor(logos): convert logo names to lowercase 07b8228
  • change(item): use default logic of setting align class on content 6b5b47c
  • refactor(logo): update logo 170efe5
  • refactor(logos): convert storybook logo names to lowercase c4b24ec
  • refactor(logo): add eea roboto font logo variations de1224a
  • refactor(logo): add container and segment to logo story 61eff16
  • change(item): removed requirement for aligned classes to be on content 30c0d5d
  • change(logos): cleanup eea logo reference to only eea-logo and eea-logo-white.svg 2796e05

🏠 Internal changes

  • chore(npmignore): Reduce npmjs package size 164c8a5
  • chore(npmignore): Reduce npmjs package size ade9d5b
  • chore(docs): renamed logo mdx to md 52e9d46

🏠 Documentation changes

  • docs(logos): svgs without classes 28a5833
  • docs(logos): add dark mode logos ccc1609
  • docs(logo): update eea logos and add logo wrapper 91cdd66
  • docs(logo): update logos on docusaurus 760e101
  • docs(logos): updated svgs dc224e1
  • docs(logos): add thematic logos 5a21a30
  • docs(logos): add zipped svgs for download 5855bf8
  • docs(logos): wisef logo update 8f90b59
  • docs(logos): move to static, add download 8c1fd5f
  • docs(logos): improve eea logo visibility 82188ab
  • docs(logos): change eea logo to svg f57b846

🛠️ Others

  • logo update or docusaurus thematic logo listing #274 from eea/develop dde90be
  • (feat): Add ability to disable the language select from website top menu - refs #158616 411c8e4
  • Proof reading page header section 230239e
  • bump package version b4628be
  • feature(docusaurus, storybook): logos selection for sites plus inverted options #253 from eea/doc-logo-page dbfc90d
  • Add Sonarqube tag using advisory-board-frontend addons list c4769e9
  • test(Jenkins): Run tests and cypress with latest canary @plone/volto 92feea0

1.0.0-alpha.7 - 2022-12-16

🚀 New Features

  • feat(item): normalized size for image or icon items #258 from eea/refactor-items 945170f

🐛 Bug Fixes

  • fix(card): rounded after removal of has--rounded--true style class d4727af
  • fix(item): removed margin set for description which pushed the text from icon d9d4031
  • fix(project): Proper paths if volto-eea-design-system package is not installed, but in development #270 from eea/correct_paths 0f8ee8d

💅 Enhancements

  • refactor(item): update icon variations and paddings 6a407b3
  • refactor(item): update spacing 2fd91c4
  • refactor(item): initial values for new sizes & add description class 3546296
  • refactor(item): add icon and more size options 1120bb6
  • refactor(item): update image and icon sizes b802573
  • change(item): set same height as width on item images 69cbd23
  • refactor(item): update item part 2 9812ae2
  • change(item): rename large to big class 24ff127
  • change(item): added tiny size that outputs 24px icon sizes 2ea9636
  • change(image): added preview image size default to 400px a0aa867
  • refactor(item): update operator for condition controls 149ccb2

🛠️ Others

  • Proper paths if the package is not installed, but in development 7a2655f
  • Update .project.eslintrc.js a2fd3f2
  • added back descriptionDistance variable until package release 3af811a
  • Release 1.0.0-alpha.7 7e66bcc
  • Add Sonarqube tag using cca-frontend addons list ce47e9b
  • Back to dev cb531c9

1.0.0-alpha.6 - 2022-12-07

🚀 New Features

  • feat(copyright): create copyright component and import it in banner 8fcde9d
  • feat(Header): add hideSearch prop 13ddfe5
  • feat(Docusaurus): Image copyright information #257 from eea/image-copyright-info 2119515

🐛 Bug Fixes

  • fix(tags): content gap when using tags-content wrapper c4eb9b8

💅 Enhancements

  • refactor(hero): add copyright component to hero 0fa88fa
  • change(copyright): implementation to add classes on content sections e10bde6
  • change(copyright): removed color variant 747b8a2
  • change(copyright): removed copyrightVariant from Banner and Hero stories ac62e07
  • change(tagList): modified implementation to align to volto-tags-block 7a57a3d
  • refactor(copyright): remove data section 52cb09d
  • change(copyright): line height to match page header implementation a56254e
  • change(copyright): now uses text color css variable with fallback to white ee7268b

🏠 Documentation changes

  • docs(copyright): copyright documentation a90ed76

🛠️ Others

  • Update usage_markdown.md f76d4a2
  • grammar fixes cb2a5a5
  • Release 1.0.0-alpha.6 6ca32f0
  • feature(copyright): image information #250 from eea/feature-copyright a8618c7
  • lint fix by introducing local variable tagsGap 7b6c0ae
  • Update 3-images.md 1b0ef03

1.0.0-alpha.5 - 2022-11-29

🚀 New Features

  • feat(Iconography): import and showcase remix icons 777112f

🐛 Bug Fixes

  • fix(docusaurus): right bar overflow fix 197c763
  • fix(lists): bullet position by using padding instead of margin 0ecae2e
  • fix(label): color for yellow variant as white isn't accessible on yellow color 91d8880
  • fix(contentBox): avoid text decoration for header-link added on cards 3ccb592
  • fix(label): margin value for ribbon image left and right margin f8e1129

💅 Enhancements

  • refactor(docusaurus): eea color palette in separate file 6c855df
  • refactor(docusaurus): classes for color boxes 80219d5
  • refactor(docusaurus): move supplementary, state and link colors to partials 2776be3
  • refactor(docusaurus): fix side menu / moved more content in palette partial f5b7077
  • change(tag): set gap on tags element for margin between tag elements 726bc6d

🏠 Internal changes

  • chore(colours): fix wrong class name 51ad0a8

🏠 Documentation changes

  • docs(docusaurus): Iconography updates, thematic platforms 2a0e596
  • docs(colors): thematic pages integration ea7a422
  • docs(docusaurus): color updates cc13b54
  • docs(colors): fix swatches accessibility 306cb74
  • docs(docusaurus): typography and colors fixes according to comments on PR ae20a72
  • docs(colours): adjust logos heights 854d4fb
  • docs(typography): merge designer and dev units 65c240e
  • docs(typography): readded extra font sizes, fixed fluid a4a5d89
  • docs(typography): changed em to percentages d417600
  • docs(colors): minors updates and instructions 84ac882
  • docs(colors): blue-grey-6 adjustment e7ab2d1
  • docs(colours): added active colour 574f7a9
  • docs(colors): switch FISE logo to png 335471f
  • docs(colors): updated visited 0248fd1
  • docs(FISE): replaced logo f7d8331

🛠️ Others

  • perf(docusaurus): added remixicon and roboto locally b67b1a7
  • feature(Docusaurus): Updates on color palette information including thematic websites #231 from eea/refactor-docusaurus ec7843d
  • Upgrade Jenkinsfile storybook to yarn 3 d20de8d
  • Back to dev 563fbc5

1.0.0-alpha.4 - 2022-11-22

🐛 Bug Fixes

  • fix(cards-storybook): load slick carousel css for arrow and pagination styles 1159b1b

💅 Enhancements

  • change(cards): refactor cards theming implementation d4e4542
  • change(cards): allow rounded, inverted and theme parameter to be set by has classes 4b4ad89
  • change(card): expect has classes on the card directly 6a9e38b
  • change(utilities): added has text classes to the text alignment utilities e6974c6
  • change(utilities): modified class name for text align using has naming 579a0cb
  • change(theme): ensure that only direct children of container have a default top and bottom margin 7f8b8dc
  • change(build): upgrade action to trigger workflow and wait to latest version c63ad3f
  • refactor(card): theming implementation to allow has theming classes #265 from eea/card-refactoring 24edc99
  • change(theme): add slick-carousel dependency f2eec7d

🛠️ Others

1.0.0-alpha.3 - 2022-11-16

🚀 New Features

  • feat(Header): Add subsite section styling #263 from eea/subsite 00398b8

🐛 Bug Fixes

  • fix(search): position now changed by default to absolute from relative 51b08fc
  • fix(megaMenu): remove paddings for buttons added by active class ec33ebf

💅 Enhancements

  • change(components): load overrides files for our defined semantic files adde7a9
  • change(container): fullwidth now take into account devices without hover 5a35a65
  • change(container): ensure only the top level elements behave like containers 98b85d1
  • change(container): modified column-block grid to remove margin and padding when using full width class 35c1cee
  • change(mega-menu): hide home link and accordion content from mobile menu 1a69172
  • change(container): width from min width 1280px to 1365px max width 66e551e
  • change(container): removed app extras and view setting of layout sizes f6dc1ee
  • change(views): customized DefaultView to pass class into page-document area 91123aa
  • refactor(megaMenu): desktop - use buttons for menu section titles and readjust content cb9315f
  • refactor(megaMenu): add nav_title and nav_description attributes 0d7a568
  • refactor(megaMenu): style sub-title and nav-description b2a48fd
  • refactor(sidemenu): add third level list and items & update active indication e2d87da
  • change(columns): implement narrow, container and wide width classes 9696b54
  • change(container): story to add classes that modify the max width of the containers 37948f8
  • change(container): affect only left and right margin of containers 183265b
  • change(containers): modified class names after layout checks 1dc3689
  • refactor(sidemenu): add is_in_path and is_current attributes for an active example a3fe7fd
  • change(container): story to avoid adding containerwidth property to container div c13d83c
  • refactor(megaMenu): mobile - use buttons for menu section titles a7b632f
  • refactor(megaMenu): update padding variables c5f2583
  • change(views): moved narrow style bellow the default container width styles 72fa58d
  • change(listing): removed container from default view page-document area 69f3d8f
  • change(views): rename classes names to width_view and added app extras layout component 745b772
  • change(container): use important flag for left and right margin a49c83a
  • change(container): add variables for edit and add section of containers f2e2c33
  • refactor(megaMenu): update sub-title paddings 992f919
  • change(site): add a 1rem margin top and bottom on all styled classes dabf6c1
  • change(homepage): removed hiding of staging banner from homepage 4ba2cd7
  • change(container): unset values of page-document on 1200+ browser width dd5bea3
  • change(megamenu): set children to be appended to the right of the menu title b69c23a
  • change(theme): modified wide width to point to 1320px as it's perfectly divisible by 4 8f82573
  • change(theme): modified wide width to point to 1368px as it's perfectly divisible by 4 2349fee
  • change(container): renamed content-text-width to container-text-width 6f788c2
  • change(listing): provide ui container fallback if no class is passed to default view af9e94d
  • change(narrow-view): re-added container class to page-document 56b44a6
  • change(view): set container width for view-viewview class as well 29dc324

🏠 Internal changes

  • style: load header/footer overrides e5b5e0f
  • style(megaMenu): restore item description color 8a19bbb
  • style(megaMenu): restore accordion content bottom padding 8e0c5a7

🛠️ Others

  • Add subsite styling e79c0ed
  • WIP settings column grid width when using full size class affc7ac
  • code cleanup 2cdc3e5
  • fix eslint 30c52e4
  • test(estlint): Fix .project.eslintrc.js aaeaa07
  • modified left value of full width classes with toolbars 70d82d4
  • Release 1.0.0-alpha.3 8fc86a7
  • feature(content): added NarrowView useful for modifying the containers from content-area d937df7
  • jslint fix 9846159
  • Feature(container): flexible container size #260 from eea/feature-flexible-container 8f84c5b
  • Add Sonarqube tag using circularity-frontend addons list 76a41c7
  • fix broken variable call for contentBox.variables introduced in previous commit by mistake d249c11
  • clean up 89f3cb3
  • removed console log from code fad86ae

1.0.0-alpha.2 - 2022-10-28

💅 Enhancements

  • change(documentation): grammarly proof-read suggestions 9f609be
  • refactor(volto-slate): Upgrade to @plone/volto-slate - refs #153447 853d9d1

🏠 Internal changes

🛠️ Others

  • test(cypress): Upgrade to Cypress 10 / Razzle 4 c1c1f4b
  • more explanations a8b2272
  • add announcement bar, showing that EEA DS is WIP e14aeac
  • Update dependencies ee30a2b

1.0.0-alpha.1 - 2022-10-20

💅 Enhancements

  • refactor(footer): update svg and tablet contact link sizes 6aba061
  • change(blockquote): renamed to Callout reflecting the correct naming from Storybook 61a518c
  • change(footer): Shadow removed from logo & tablet updates #252 from eea/fix-footer 6df783d
  • change(colors): updated theme classes for text to use css variable colors cb089fd

🏠 Internal changes

  • style(footer): reduce social icons margin f6a9cf7

🏠 Documentation changes

  • docs(alpha): Update included components in 1.0 alpha version - refs #154387 fcc5af9
  • docs(callout): Rename Blockqoute to Callout in docusaurus - refs #154387 8d733ac

🛠️ Others

0.9.6 - 2022-12-16

🛠️ Others

  • Release 0.9.6 ae19b83
  • feature(copyright): image information #250 from eea/feature-copyright 7b323ed
  • Release-it 1f5671d

0.9.5 - 2022-10-20

🐛 Bug Fixes

  • fix(statistic): margin and slate colors when using the inverted options f263dea

0.9.4 - 2022-10-19

🐛 Bug Fixes

  • fix(edit-interface): block chooser and power user menu item colors when inside content-box 7aee4f1
  • fix(header): hero text going over the logo and menu on mobile resolutions 1434508
  • fix(content-box): z-index of box-inner and added underline to slate links c8b7c7e
  • fix(content-box): adding of underline to links c2f5f0f

💅 Enhancements

  • change(banner,colors): content box theme aware colors banner changes#254 from eea/develop bcb9a8c
  • change(Banner): Add subtitle subcomponent bb67f4c
  • change(item): moved svg filter definitions to item.overrides de70366
  • change(accordion): accordion titles with themes colors can now be modified by css variables e2ac13e
  • change(colors): in lists and callouts to allow color changes 940d1b8
  • change(colors): added backgroundColorSupplementary color variable 1f5262a
  • change(list,bullet): color is no longer primary instead it's text color css variant 8c04670
  • change(statistics): use theme colors with css variable for easy color customization fb72a01
  • change(Banner): Show label in metadata field 1acda3c
  • change(tags, items): use text color with css variable for content color for easy customization 6660e2e
  • change(styling): modified naming of theme css variables a332961
  • change(colors): added backgroundColor color variable b7e6831
  • change(quote): use secondary css var for easier color replacement 7a32312
  • change(statistics): tweaked margin of statistics so that they don't overflow over context boxes b4a8e33
  • change(accordion): allow customization of accordion title background color 6590baf
  • change(colors): introduced css variables for primary colors #247 ac80825
  • change(content-box): override primary text color to white as well 28b43c7

🛠️ Others

  • Include changes in the storybook a4d9fa4

0.9.3 - 2022-10-04

🐛 Bug Fixes

  • fix(card, contentBox): meta font size, removed header override of cards a7f94b9
  • fix(List): Ordered list item story - refs #155248 c70a2bc
  • fix(OrderedList): li third level margin left - refs #155248 fba5cb9
  • fix(cards): inherit color of card description ceda799
  • fix(accordion): Fix content default padding - refs #153783 566adf7

💅 Enhancements

  • change(site): committed fixed from custom into eea design package 9b9a1fd
  • change(jenkins): added yarn policy for storybook building 3d1b844
  • change(docusaurus): typography updates 60a93a4
  • change(item): added item image coloring when applying theming classes 0403fe4
  • change(accordion, site): change text color to tertiary instead of black 4641058
  • change(accordion): allow customization of accordion title with css variables 15e7d27
  • change(content-box): added css variables that will set text color and background for children 86cac53
  • change(tabs): allow customization of tab active and hover color 4370f42
  • change(tabs): color for tabs-block section 6778c92
  • change(cards): by default date is set to appear on the right of the meta section b7b80e8
  • change(cards): carousel dots are now relative positioned daa40a4

🏠 Documentation changes

  • docs(typography): update, local fonts 39a32d9
  • docs(typography): token fix to match used values for heightheight and letterspacing 91693ec
  • docs(typography): token fix to match used values for lineheight ff41b56
  • docs(typography): remove semibold 6eb3e08

🛠️ Others

  • test(cypress): Fix md5 dependency 17f618e

0.9.2 - 2022-09-27

0.9.1 - 2022-09-27

💅 Enhancements

  • change(cards): added ability to change the text alignment using css variables ed532ac
  • change(styles): use flex-end values only instead of end to avoid babel warning 24244b2
  • change(rounded): image size, border radius to ensure more image are turned into rounded options 51e23c1

🛠️ Others

  • Merge pull request #243 from eea/develop 576564c
  • Add Sonarqube tag using eea-website-frontend addons list 4a5be6e
  • Back to dev b251255

0.9.0 - 2022-09-19

🚀 New Features

  • feat(countUp): intall countup package and import it in statistics 10ba7cf
  • feat(docusaurus): custom editUrl function for the components usage pages - taskman refs #154076 93c4240
  • feat(site): Styling scroll-to-text fragments #238 1883fcf
  • feat(docusaurus): added Edit this page link in footer of each page - taskman refs #154076 2cf8746

🐛 Bug Fixes

  • fix(header): Prevent dropdown closing when clicking inside content 838f340
  • fix(cards): position of bullets and arrow clicking on events page 148723 22ef828
  • fix(cards): rounded images show up now even when card parent is cards 48f5e81
  • fix(statistic): add a min-width to content so unwrapped statistics don't break 7c5d511
  • fix(sideNavigation): add role list to list item 58f322b
  • fix(sideNavigation): remove unused useState import f9ea677

💅 Enhancements

  • refactor(sideNavigation): implement the design to the initial navigation & make component dynamic b673d63
  • refactor(header): update top bar 626bdd5
  • refactor(statistic): create custom export and add links 9f9ed56
  • refactor(statistic): update inverted style and add background variations 7578dc6
  • refactor(statistic): remove horizontal display on mobiles & update columns control 58f00e1
  • refactor(header): minor fixes spotted in testing 0f0f3ab
  • refactor(header): update main section heights d669f01
  • refactor(sideNavigation): remove green border and divider 939cd9b
  • refactor(link): update colors for link states 3e9f599
  • change(cards): styles img tag outside of .image ee89274
  • refactor(sideNavigation): update controls a3e8430
  • refactor(statistic): fix firefox issue for fit content 87aa113
  • change(statistics): rearrange controls order b19ae70
  • refactor(statistic): add max width to wrap text for all content 758f8ce
  • refactor(statistic): add max width to label so it wraps the text 824a127
  • change(Side menu & in page navigation): styling according to figma design #221 b2df858
  • change(header): align header with latest figma changes #232 135cd68
  • change(cards): integration when cards also contain call to action buttons f0d8766
  • refactor(iconography): icon group headings b9ccd80
  • refactor(header): add variables for some sizes 8eae84e
  • refactor(Statisctic): Rename slateVariation to extraVariation a07c589
  • change(docusaurus): started example on how to add headings for iconography 53cf843
  • change(cards): remove center alignment of rounded cards body area, only the image is now centered fdfac48
  • change(color): updated link colors #234 feabfe7
  • change(mockup): Access to figma style tokens 0bb25be
  • refactor(statistic): update margin 5190f56
  • refactor(button): adjust vertical margin db6d441

🏠 Internal changes

  • style(statistic): update decimal point 7976aa4
  • style(link): update visited link color d3b18b3

🏠 Documentation changes

  • docs(iconography): added icons, guidelines 0073f1d

🛠️ Others

  • Delete 2-test-new-page.md 749eff9
  • Create 2-test-new-page ab623ff
  • Release 0.9.0 eb7e2e5
  • stylelint fix 114e3f9
  • Move text fragments style to site.overrides 8368cbe
  • Styling scroll-to-text fragments 1bb3914
  • Update Header.stories.js 9036c74
  • feature(Docusaurus): Reflect usage of remixicon in iconography page #239 0802b32
  • Update 1-design.md 146115a
  • Test workflow for contribution - taskman refs #154076 dcb924f
  • perf(figma): access to style tokens 27d8dbe
  • Rename 2-test-new-page to 2-test-new-page.md 4e3be10

0.8.1 - 2022-08-26

🐛 Bug Fixes

  • fix(message): fix size controls ee51e1d
  • fix(docusaurus): intro page hero title color now that headers are using tertiary color 618e3cb

💅 Enhancements

  • refactor(message): restore semantic variables 1c16621
  • refactor(messages): mix semantc and token colors for messages 12efa75
  • refactor(emotiveColors): temp update for tests 61a720c
  • change(footer): removed line between sections and moved actions back to the bottom of footer d9f33e4
  • change(storybook): headings storybook now uses tertiary color by default reflecting site options 1061e77
  • refactor(message): add container to story 1259ece
  • refactor(message): remove override with custom background color on error 9b40cd7
  • refactor(message): add header controls 960c2f7
  • change(message): use semantic colors for messages #204 from eea/refactor-message 22d2c43

🏠 Documentation changes

  • docs(figma): added figma files to repo 6bd4144

0.8.0 - 2022-08-20

🚀 New Features

  • feat(IconCard): card with icon instead of image a85a179

🐛 Bug Fixes

  • fix(docusaurus): typography guideline now has real font values for headings, body, caption and small text 9508db9
  • fix(card): fix content gaps, adjust new meta section and update text color for default f1a78e1
  • fix(item): remove duplicate argType dde0be5
  • fix(iconCard): add aria-label at links 44f64c7
  • fix(card): merge fix df440ec
  • fix(heroblock): color even on edit page by inheriting color instead of using the tertiary color ac53fb7
  • fix(tab): add tabindex for accessibility error ab512be
  • fix(carousel): restore missing variable 1728312
  • fix(carousel): restore flex grow for cards and opacity for arrows ce71305

💅 Enhancements

  • refactor(carousel) add links in carousel cards & update structure and variables of less files f99cb21
  • refactor(iconCard): add control for variations and link 5e1b6a1
  • change(docusaurus, fonts): documented font letter spacing modification 522712a
  • refactor(card): css updates for card variations and styling updates c8b4a43
  • refactor(publicationCard): add links and fix accessibily issue 80adf6c
  • refactor(card): add new section in meta and remove links bfb82ae
  • refactor(item): add stackable functionality 8d714fa
  • refactor(card): update meta section and controls 5e28e12
  • refactor(roundedCard): remove unnecessary code and controls and add all variations 6305c54
  • refactor(roundedCard): add optional link for image and header a6d3bf2
  • refactor(card): add tertiary hover and update css selectors ca06948
  • change(fonts): updated font sizes with values given in figma 4b0ae48
  • change(style): color, space and adjust line-height as described in docusaurus 3366da2
  • change(headings): only h2-h6 get tertiary color 7d81308
  • change(site): removed Archivo import as we should only use Roboto font a6af056
  • change(docusaurus): use tertiary color for headings and body color mirroring the design system styles 145fe73
  • change(fonts): modified headings font size as well as line height f0771ea
  • change(fonts): updated font sizes with values given in figma f16eef7
  • change(docusaurus): use Roboto font from google fonts also for docusaurus adca8e9
  • change(headers): added headerColor variable so that thematic sites can easily choose another heading color f09d2c5
  • change(fonts): typo fixes for typography section of docusaurus cae4b02
  • change(fonts): modified footer and header values afer global font size changes f160d35
  • refactor(iconCards): run prettier fe84e46
  • change(typography): inherit header colors with @headerColor variable 91d9357
  • change(breadcrumb): use tertiary color also for breadcrumb c5cbd44
  • change(heading): on homepage on the first hero set font size to h1 and inherit color 5711096
  • refactor(carousel): update card titles to display styling fix edd966b
  • change(docusaurus): use the tertiary color for body and heading colors 11c4ed4
  • change(typography): modified lineheight-0 after headers now use 1.2 instead of 1.25 04d78a8
  • refactor(card): add links to cards and replace description with title in carousel 0258737

🛠️ Others

  • feature(heading): and cards refactoring #227 from eea/develop 334fbda
  • Update package.json 3870cf3
  • Header refactor 153536 #226 from eea/header-refactor-153536 87a6fe7
  • feature(item): icon is now stackable moving the icon on top #220 b716acf

0.7.6 - 2022-08-15

💅 Enhancements

  • change(footer): Footer updates 147837 #225 fa9ae58
  • refactor(footer): initial redesign of main section 8e85617
  • refactor(footer): restructure theme sites logo columns dcba45a
  • change(footer): set actions before thematic section on mobile db25f96
  • change(footer): fix missing key warning from react dev 77f72d5
  • change(footer): Footer updates 147837 #222 32fed23

0.7.5 - 2022-08-11

💅 Enhancements

  • change(megamenu): mobile improvements with See all links, active elements and non accordion children #224 6767b99
  • change(megamenu): render accordion only if children have children be63ce2
  • change(megamenu): mobile menu design tweaks as seen in latest figma 26d74dc
  • change(megamenu): removed icon from at a change menu items and they are no longer bold as requested 043e772
  • change(megamenu): reset first level panels after each item pass 175351b
  • change(megamenu): mobile menu improvements #223 b3cabfe
  • change(megamenu): fixed key error warnings 075bf01
  • change(megamenu): handle default active sub accordion 6192a99
  • change(megamenu): enable active border only for items not titles fb0b869

🛠️ Others

0.7.3 - 2022-08-04

💅 Enhancements

  • change(megamenu): added icon on mega menu header section d0ad4d8

0.7.2 - 2022-08-03

🐛 Bug Fixes

  • fix(contentBox): z-index of content hidden by bg when using content-box-inner c5a7dac

🛠️ Others

  • Set focus on search input field in the popup on click d12c051
  • Make cypress tests work with both slate and draft selectors 4d8e5b1

0.7.1 - 2022-08-01

0.7.0 - 2022-08-01

🚀 New Features

  • feat(accordion,buttons): primary, secondary and tertiary variations #209 c34617f

🐛 Bug Fixes

  • fix(megamenu): key warning errors 4ecd279
  • fix(container): add padding also for block editors when we are on the add page not just edit b857aad
  • fix(header): bump opacity of gradient class to get rid of green hue of header text 2011b40
  • fix(header): remove console log 3a20023

💅 Enhancements

  • refactor(callToAction): add tertiary variant and restructure exports ac6695a
  • refactor(accordion): add color variations 3504c15
  • change(megamenu): WIP bringing back rendering of item with callback and path modification 6e43d43
  • refactor(megaMenu): add slide down transition and update targetRefs on close 9667157
  • change(megamenu): use renderMenuItem in order to render menu items 9ed5cbd
  • change(footer): replaced eionet logo with an svg variant and tweaked size of eionet to match size of eea logo 32ce462
  • refactor(callToAction): update tertiary state colors 159668a
  • change(accordion): style default accordion using the grey from semantic ui e24907d
  • refactor(accordion): add variations and create a default export 4a9c68f
  • refactor(colors): add tertiary shades for element states 1e24a7e
  • change(tests): try to modify tests to use slate instead of draft a2e2485
  • change(megamenu): set active class on storybook list items 112bff1
  • change(megamenu): add border for active element of menu 5e7dfa5
  • change(package): condition modification of navDepth settings dd21dad
  • change(mega menu): use non variable to fix build of volto-kitkat-frontend 3ecd652
  • change(header): prefix mega-menu active class for adding border 32898cb
  • change(tests): use data-slate-editor instead of contents that was found in draft js instead of slate 1e0413c
  • change(stories): hide variant control from button link story 43f8c41
  • change(stories): hide variant control from button link story aea7126

🛠️ Others

  • feature(theme): added context navigation component story and default style 5a6955f
  • feature(megamenu): open default accordions on mobile navigation based on pathname cc299c1
  • fix eslint warnings 3b30282
  • bump release version to 0.7.0 fa82cbd
  • Theme fixes, mega menu selected element both in desktop and mobile #211 b482729
  • feature(mega-menu): added menu slide down animation #208 4360d0e

0.6.5 - 2022-07-06

🐛 Bug Fixes

  • fix(header): double click to close dropdown is no longer required b8a2ed0
  • fix(header): menu generation when atAGlance isn't found d68b03c
  • fix(menu): removed minHeight that enlarged the global menu 133be1e
  • fix(hero): image dimensions when full width and height isn't enabled 4114f73
  • fix(contentBox): removed negative z-index that hid fullwidth bg color bd60faf

💅 Enhancements

  • change(hero): tweaked hero block height and padding 994b6f8
  • change(item): tweak size and padding of icon when used inside item dbdef19
  • change(typography): updated letterspacing values and clarified values used for certain type tokens 8a13bf8
  • change(item): enable theming for icon and text color and added tertiary option 6d4444f
  • change(header): top section chevron sizes and margin as requested in enhancements document b307c74
  • change(cards): add underline to links when applied to headers and use tertiary color by default 874f956
  • change(utilities): wrap in quotes h2 and h3 of quoted-wrapper 8aa4716
  • change(package): bump package version to 0.6.5 denoting bug fixes release 0585aeb

0.6.1 - 2022-07-01

🚀 New Features

  • feat(UnderlinedTitle): create story and necessary utilities 8beb56b
  • feat(headers): added underlined titles with theming support af67561

💅 Enhancements

  • refactor(heading): move underline story and update controls 2c9bfd2
  • refactor(underlineTitle): add content box for different variations 0878915
  • refactor(underlinedTitle): add control for changing heading size 211f515
  • refactor(underlinedTitle): Restore text variation dropdown control bd8c611
  • refactor(utilities): add color variation for headings and text 7e3a779
  • refactor(utilities): update border bottom utility and restore line height for headings 7fe4a7b
  • refactor(headings): update the line height of headers according to docusaurus instructions 9da19b3

🏠 Internal changes

  • chore(countup): package for statistics 26fcd09

0.6.0 - 2022-07-01

🐛 Bug Fixes

  • fix(item): adjust the container in stories a848c46
  • fix(tag): align start for tags on mobile, update path for Tag List and add containers b9de845
  • fix(item): update image width & height on mobiles and add 3 line clamp for description 0cd2c46
  • fix(pageheader): metadata font size on mobile to be readable 0a9b1fa
  • fix(breadcrumb): fixed variable name for breadcrumb item 2b547eb

💅 Enhancements

  • refactor(Item):create item story with custom default class 069ae02
  • refactor(pagination): add pastanage menu overrides and remove any eea theme css from default story 5080810
  • refactor(item): update variables from px to rem 30eed78
  • refactor(Item):add default item mobile padding 3518465
  • change(site): added fixes from custom 0fe4d80
  • refactor(Pagination): add default pagination stopry and rename previous as Secondary a5e3e13
  • refactor(pagination): comment out secondary pagination and its styling bcf4cff
  • refactor(tags): remove content class and add flex wrap d6333ca
  • change(logo): use a real svg logo for white eea logo 3b80dc7
  • change(header): show eea information systems on tablet as well ce82ceb
  • refactor(tokens): update letter spacing tokens 5f8753b
  • change(letterspacing): updated letter spacing positive values b31818f
  • change(pageheader): add bottom margin on mobile for sharing dropdown actions d3cda47
  • change(pageheader): removed blogger, reddit and stumbleupon sharing links e4acc4e
  • refactor(Item): add default item background color c978c8d
  • change(package): bump package version 1f01f72

🏠 Internal changes

  • style(item): update item image e585e9d

🏠 Documentation changes

  • docs(colors): token usage c433ec6
  • docs(Docusaurus): typography and spacing updates 48d1269
  • docs(Docusaurus): various fixes a972a31
  • docs(typography): updates 66d95e4

🛠️ Others

  • Tabs block custom border left/top ca4cce0
  • Fix sidebar tabs in Volto CSS c287db5

0.5.5 - 2022-06-23

🐛 Bug Fixes

  • fix(contentBox): color of cards when inside content-boxes 76a4520

💅 Enhancements

  • change(homepage): moved fixes of homepage to custom and colored carousel arrow 0a226ef

0.5.4 - 2022-06-16

🐛 Bug Fixes

  • fix(block-style): Content box preview in sidebar 6362766
  • fix(header): ensure transparency goes as high as the search icon 4470e13

💅 Enhancements

  • change(contentBox): add background as before element instead of using full-width 7e0a596
  • change(content-box): content box links are now underlined f7976f5
  • change(homepage): added fixes from custom c3e0333
  • change(hero): add margin top with the height of the top section on edit fefa6bb
  • change(cards): fix default card color when inside content-boxes 6fdf3aa
  • change(container): removed override of content-box-inner container 66fe7d4

0.5.3 - 2022-06-16

🐛 Bug Fixes

  • fix(homepage): hero and homepage fixes for #151156 #198 43d4efc
  • fix(header): fixed top section width on edit page ce5898b

💅 Enhancements

  • change(hero): added min height to hero-block-image-wrapper 3cc37c0
  • change(hero): spaced hero block has a 3rem margin top and bottom c463b03
  • change(hero): added extra top margin on hero-block-body from tablet and up within homepage 64142c3
  • change(hero): tweak min height of hero block e1271b4
  • change(card,contentBox): use inherit for text color to inherit black from body c1ba3b6
  • change(container): on section-edit modify only left and right padding values fe6e3ec
  • change(utilities): bump z-index of overlay class ede3209
  • change(hero): fixed variable reference for margin of body from homepage 092b90b

0.5.2 - 2022-06-14

🚀 New Features

  • feat(contentBox) : add new Content Box component 2ebbb47
  • feat(ContentBox): Add primary, secondary, tertiary themes 87cb2fe
  • feat(ContentBox): Update storybook with available themes 93b26b2

💅 Enhancements

  • refactor(contentBox): restructure the component to be more flexible f0d2de6

🏠 Internal changes

  • chore(contentBox) : add lint changes 5aaf740

🛠️ Others

0.5.1 - 2022-06-13

💅 Enhancements

  • change(header): changed homepage text color 64ce8b6
  • change(hero): added styles for adding dark overlay to hero bf1d292
  • change(homepage): hide stagingBanner on homepage fb6e319
  • change(header): use variable for homepage hero-block padding 89ff344
  • change(tokens): modified grey-4 color to point to a 10% shade from original color b406283
  • change(header): added min-height for mega menu needed for 1 items menus 18814f4
  • change(hero): hero section block integration #192 4ea2f40

🛠️ Others

0.5.0 - 2022-06-11

🚀 New Features

  • feat(hero): added storybook implementation of hero component #172 17b9d16
  • feat(hero): add hero block component and stories 6019fc8

🐛 Bug Fixes

  • fix(header): Internal links in mega menu d8ca135
  • fix(header): show active menu when clicking on children a54fa67
  • fix(header): accessibility and dropdown possition fixes 505ac36
  • fix(header): fix accessibility issue by David 783dcec
  • fix(header): dropdowns disappear on resize 52338fd
  • fix(header-topdropdown): dedupe html elements for topdropdowns cd8a2a7
  • fix(header): transparency class should apply on the current bg color or image f9a0033
  • fix(header): mobile dropdown now visible 34371b4
  • fix(header): dropdown disappears after window resize #116 fc7dd8b
  • fix(header-topdropdown): dedupe html dropdown elements for topdropdowns #115 f10a7a8

💅 Enhancements

  • refactor(megaMenu): update mega menu in header component 2d1ce45
  • refactor(header): update structure and variables of top bar af70909
  • change(header): renamed mega menu items href attribute to url 3ed8144
  • refactor(header): update main section and and add color variations f2f0fd1
  • refactor(header): minor updates on colors and widths a70129f
  • refactor(hero): add full-heigh control to adjust height a45cb7c
  • change(header): disable sticky setting until feature is more stable 1d7af95
  • refactor(hero):make button variant and inverted different button controls 7e182ca
  • refactor(header):main bar sticky on scroll up 9c9e7c6
  • refactor(headings): update heading sizes for mobile 19f3cca
  • change(header): hide first link(home) from header menu on site ae7f3b9
  • change(megamenu): typo correction and key setting on list.items 96d2c4f
  • change(header): use Link instead of a tag for menu items 9812b3f
  • refactor(header): add control for inverted logo 023ca45
  • refactor(hero): move quoted utility to h2 tag 7376676
  • refactor(header): add link for menu title inside desktop mega menu 24355d0
  • refactor(utilities): update hex with color token 8dc65ef
  • refactor(header): and mega menu to latest spec #114 44fcf68
  • refactor(header): update search input and file endings afab36f
  • refactor(header): add control that toggles transparency class on main section b8d4bdb
  • refactor(header): restore union dropdown after implementation 7e98bab
  • refactor(header): minor responsive fixes 16a0006
  • refactor(hero): align hero's text and meta seperately 4fa958f
  • refactor(hero):add button variant controls f362a7b
  • refactor(header): update search input 368962e
  • change(header): mark top level active menu item 665c449
  • refactor(hero):prettier & style changes d846884
  • refactor(header): add control for main section stickiness 2f07572
  • change(header): use viewport width for changing mobile text in header dropdowns b50fa58
  • refactor(header): add fluid font sizes 5f2743e
  • refactor(header) add position sticky & transparent for main section 29df772
  • refactor(hero): update variables with new design tokens 1d97922
  • refactor(Language List): render language dropdown as ul and li elements 3617442
  • change(header): introduced item class to the mega menu link content 00ca376
  • refactor(Language List): add less variables 7ccc1cc
  • change(header): disabled active menu when clicking on globalnav links 3f7b5ee
  • change(header): target link instead of span directly 9e865fb
  • refactor(header): remove unused imports 7e232db

🛠️ Others

  • Add item themes; override .block .ui.image width based on size 06010db
  • Move item icon themes to item.overrides 31e8921
  • Override only the width 8d49270
  • Override tile image in .block parrent 005655d
  • Update package.json 9dc3816
  • feature(item): added themes to item icons #190 a6a2907
  • update storybook header.topdropdown e58ac08
  • use volto-screen-helper width ea156aa
  • Add divider content for metadata field in Banner 327ad1c
  • rename to viewportWidth 32162e7
  • don't connect component to store 470b8ba
  • Add end of line 51639d8
  • behave as mobile under 480 only 11b99e1
  • make it account for all mobile-s,m,l 69e23ae

0.4.5 - 2022-06-08

💅 Enhancements

  • change(tabs): Add style for tabs accordion template #187 fb8adbf
  • change(footer): avoid react error by providing key prop to grid column ef0b193

🛠️ Others

0.4.4 - 2022-06-08

🚀 New Features

  • feat(divider): create story for divider b10a2e0

🐛 Bug Fixes

  • fix(divider): restore space between classes c595c15
  • fix(divider): Text colors and transform e524e10
  • fix(footer): story aria labels for social media links 254bdc7

💅 Enhancements

  • refactor(footer): update logos and less structure 66b8e0f
  • refactor(footer): first footer updates d18a2ee
  • refactor(footer): logo updates and adjustments 101bc9d
  • refactor(footer): use tokens and adjust spacing 2cb1669
  • change(footer): moved SubFooter logic to SubFooter.jsx from Footer story 902383a
  • refactor(Divider):add divider with content inside story e2d66dc
  • change(footer): added managed by section as properties 9328fc3
  • refactor(divider): remove custom divider d4870d2
  • refactor(Divider_:remove green color class & add tertiary 95f3018
  • refactor(footer): use remix icons for social links 5ef9aa2
  • refactor(Divider):remove clean class and use fitted prop 8d2be35
  • change(Divider): Rename color property to theme 0deffc8
  • refactor(footer): update links and logo align 7afbab9
  • change(footer): tweaked column sizes to the values before my changes fdf2718
  • refactor(footer): to latest figma design #182 3e0ba2b
  • refactor(footer): move subfooter logic to the proper component #185 3034577
  • refactor(footer): update controls b0b872b
  • refactor(testimonial): update divider 784450a
  • refactor(testimonial): changed divider color to secondary 84282f9
  • refactor(divider): remove custom divider from theme config a0409e8

🏠 Documentation changes

  • docs(divider): switch to secondary color 239844b
  • docs(divider): showcase path fix d5ea03f

🛠️ Others

0.4.3 - 2022-06-03

🐛 Bug Fixes

  • fix(edit): Fix columns/accordion inner toolbar padding fafbb52

💅 Enhancements

  • change(docusaurus): completed removal of description from guides 42424b9

0.4.2 - 2022-06-02

💅 Enhancements

  • change(docusaurus): moved color swatches around in the color guide 8a395fc
  • change(docusaurus): removed description from components and introduced category listing f220bf0
  • change(docusaurus): rename gap to space and added em spaces f5b042d
  • change(docusaurus): moved extra docs to webdev section 1ce0797
  • change(docusaurus): moved md_components files into webdev/md_components 73c1c08
  • change(docusaurus): added category yml for all sections 1740572
  • change(docusaurus): color guideline updates and spacing tokens documentation #148 c1154ba
  • change(docusaurus): modified story links to avoid broken usage tabs 78dc8d8
  • change(docusaurus): renamed several file id's so that they match the incremental naming sequence 11299c9

🏠 Documentation changes

  • docs(Docusaurus): timeline, testimonial, quote and tags aaa54ec
  • docs(spacing): add relative gap tokens 92abc8f
  • docs(colors): updated colors a28c99e
  • docs(tags/content): new page about tags and content 60be402
  • docs(Docusaurus): labeled icons f6a0f61
  • docs(typography): add font size and line height tokens 2ff65e4
  • docs(spacing): add spacing gap tokens 2d53727
  • docs(spacing): add missing gaps 442db46
  • docs(docusaurus): minor fix 6e66513
  • docs(spacing): aligned images e946fe5
  • docs(spacing): new image fcd3294

🛠️ Others

  • merge changes from develop into docusaurus token documentation a940138
  • perf(docs): restructuring order 8f4134d

0.4.1 - 2022-06-02

🚀 New Features

  • feat(languageLabeledIcon) : add new component 110558e
  • feat(LanguageLabeledIcon):add new component d00200c
  • feat(newTabLabeledIcon) : add new component 8f5cd31
  • feat(labeledIconGroup) : add new component 787d648
  • feat(DownLoadLabeledIcon) : add new component 6ea2fa1

🐛 Bug Fixes

  • fix(LabeledIcon) : fix lint errors 91b042f
  • fix(LabeledIconGroup) : fix links for tests daa1065
  • fix(LanguageLabeledIcon):bug fix & languages change 1436e2b
  • fix(LabeledIconGroup):fix based on Langauge & Download Labeled icon components changes 3015864
  • fix(newTabLabeledIcon) : add link item b1a9ada
  • fix(Labeled Icons):minor bug fix 00f3022

💅 Enhancements

  • refactor(labeledIcons): adjust new tab labeled icon to figma and replace px with rems 904615d
  • refactor(LanguageLabeledIcon):implement with pop up 0f3dd8f
  • refactor(labeledIcon): add group wrapper in labeled icon stories 4b7dd31
  • refactor(DownloadLabeledIcon):implement with pop up aa61f9b
  • refactor(labeledIcons): adjust language labeled icon to figma 5741e3d
  • refactor(labeledIcons): adjust download icon to figma and replace px with rems 4ae8530
  • refactor(LanguageLabeledIcons):minor storybook change 78f5544
  • refactor(LanguageLabeledIcon): set language code to uppercase and minor storybook change ac28693
  • refactor(labeledIcon): adjust paddings 9c1ecdd
  • refactor(labeledIcons): update margins for group labeled icons 5fa5ca9
  • refactor(labeledIcons): add variable for icon color 9f9d3cb
  • refactor(labeledIcons): update colors on download links c042642

🏠 Internal changes

  • chore(labeledIconGroup) : lint changes 535cee4
  • style(downloadLabeledIcon) : fix styling 6d8e3ac
  • style(downloadLabeledIcon) : fix alignment 4558017
  • chore(LabeledIconGroup) : lint changes ab36476

0.4.0 - 2022-06-01

🚀 New Features

  • feat(Carousel): create carousel for cards 2b0d737
  • feat(ItemwithIcons): Initial Item group with icons, new item variation 7f4ea47
  • feat(utilities): add file and basic utilities 05c88b2
  • feat(utilities): add file with basic utilities classes #173 855185f

🐛 Bug Fixes

  • fix(tokens): hsla function for shadows b8e5d37
  • fix(tokens): remove css var from less file a9c4224
  • fix(carousel):add storybook controls descriptions 269a603
  • fix(item): remove image width css from item.less 7b21cb2
  • fix(table): Set responsive breakpoint to @tabletBreakpoint 067e018

💅 Enhancements

  • refactor(item): import item.less in theme definitions c516374
  • refactor(Label):add corner,ribbon & basic label stories and styles e2bbbb9
  • refactor(Label):style changes based on label importance class ce4d5d1
  • change(tokens): rename gap to space and added em spaces 719efc4
  • refactor(item): add classes for size, set default to tile and add controls for grouped items d5a0405
  • refactor(tokens): add borders, shadows, shapes and z-index tokens 7069106
  • change(tokens): name spacing tokens gaps and added missing values up to 80px as documented 9fbd912
  • refactor(quote): Rename sourceInfo to extra info 76c2b40
  • refactor(item): WIP replacing unstackable with row e3a44de
  • refactor(tocens): add color design tokens 13bb165
  • refactor(item): adjust margins to match figma designs 6334581
  • refactor(carousel): remove title from story and color on card hover 12a1d7c
  • change(tokens): updated sizes with 4-8-16px increments 1f53d65
  • change(tokens): added size tokens to be used for width of elements cda5dea
  • change(utilities): values need important rule 96150d9
  • change(tokens): added also rem space values aedbbdd
  • change(tokens): updated z-index tokens with negative values 404efe4
  • refactor(tokens): add 14px font size token 8d8695d
  • refactor(docusaurus): restructured and improved sections navigation #174 b47b026
  • refactor(tokens): add 12 and 14px font size token #176 3681147
  • refactor(tokens): remove conditional border radius f0fe5ad

🏠 Documentation changes

  • docs(website): created new sections, improved website navigation 243f0be
  • docs(homepage): adding design system homepage with links for upcoming sections c9a9685
  • docs(docusaurus): copyedit, improved navigation 998762a
  • docs(website): restructuring, moved current DS docs to new folder 8bb612f
  • docs(homepage): copy editing ee37d6f

🛠️ Others

  • Release 0.4.0 f4bc509
  • feature(homepage): added Item group with icons #167 2ec99f5
  • feature(tokens): added borders, z-index, shadows tokens #171 74c1788
  • feature(tokens): added initial color design tokens #169 da3eae0
  • perf(carousel): added slick library ca9be51

0.3.1 - 2022-05-19

🐛 Bug Fixes

  • fix(input,segment): toggle inputs and padding fixes within Volto sidebar forms de030d6

💅 Enhancements

  • change(login): restored width of login container to 376px 0564293

0.3.0 - 2022-05-17

🚀 New Features

  • feat(Callout):create Callout component with Blockquote style 3d486b1
  • feat(callout): Align the Callout component with Volto slate component e9343ff

🐛 Bug Fixes

  • fix(testimonial): fix storybook arg names b9df52f
  • fix(table): tweak responsive table for extra long headers 7f9f9e2
  • fix(quote): fix color and padding issue 310d6b3
  • fix(accordion): Fix accordion active title color 57af165
  • fix(testimonial): remove info arguement 9593d95

💅 Enhancements

  • refactor(Table):add responsive mobile table story and styles aed69e6
  • refactor(testimonial): adjust to volto design | fix avatar image size 546070e
  • refactor(Quote):rename Pullquote component to Quote 9384a0c
  • refactor(Quote):rename Quote.Metadata to Quote.SourceInfo dfae8b1
  • refactor(Quote): rename Author to Source 6d400f6
  • refactor(Quote):move Testimonial component under Quote folder e2467c2
  • refactor(testimonial): readjust rounded card b419334
  • refactor(Table):wrap table with semantic ui container 24ac2bb
  • refactor(Testimonial):minor storybook bug fix 7b6d128
  • refactor(Callout): wrap story with semantic ui container ead362d
  • refactor(quote): update action name to match the functionality caf2e35
  • refactor(table): add borders to responsive table with celled attribute 8a71a67
  • change(table): make use of headerSortableWhiteSpace variable fd836fb
  • change(table): use the @mobileLandscapeBreakpoint for max 480px media query 90880ab
  • refactor(Quote):rename pullquote to Quote in Testimonial f54da19
  • refactor(Testimonial): change card class name e995c32
  • refactor(Testimonial): prettier changes 904594b

🛠️ Others

  • feature(tokens): added tokens folder for design tokens we can use in the system a542172
  • perf(lint): fix f2ef3ab
  • Release 0.3.0 8724b28

0.2.4 - 2022-05-13

💅 Enhancements

  • change(segment): brought back overrides from pastanaga into our theme 14efd02
  • change(container): removed padding from containers restoring thus the defaults c2ed813
  • change(grid-story): added container as grid width is influenced by container width 459f481
  • change(breadcrumb): removed padding from breadcrumb added by container c5df567
  • change(container): modified all outputted widths to align to grid 9f29cef
  • change(breakpoints): restore Semantic UI breakpoints, adding extra needed values e7f5b1e
  • change(container): restore maxWidth to 100% now that the last value is 1120px 8b55c58
  • change(header): wrap header globalnav links useful for editing section 10d4f56
  • change(breadcrumb): added vertical variant to the breadcrumbs like we do in Volto f405f84
  • change(breakpoints): added also contentBreakpoint for backward compatibility b6c9212

🛠️ Others

  • [JENKINSFILE] Add failure comment, no jenkins fail c325bf1
  • prettier changes 134da52
  • [JENKINSFILE] format PR comments 739438c
  • [JENKINSFILE] mention comment author in comment 39a26aa
  • [JENKINSFILE] remove debug, add error per stage 903eecd

0.2.3 - 2022-04-29

🚀 New Features

  • feat(CallToAction):add feat call to action ab53642

💅 Enhancements

  • refactor(button): add container to stories 6c02c19
  • refactor(tab): update vertical tab columns and content b473fab
  • refactor(call to action):render call to action with Button as="a" e7dfabf
  • refactor(button): update inverted button colors c822021
  • refactor(Tab):scrollbar change in mobile & vertical tab fix 0e34cbf
  • change(banner): added icon class to share icons 48e866e
  • refactor(Button): move button to forms folder 94996fc
  • refactor(Tab):minor change in secondary pointing menu variables 280b6c4

🏠 Documentation changes

  • docs(button): import call to action stories e4eed44

0.2.2 - 2022-04-22

🐛 Bug Fixes

  • fix(publicationCard): restore line endings 582859e
  • fix(form): added back overrides from Pastanaga theme a3f7ff8
  • fix(OrderedList) : add list only if sub list exists 8acbc8d
  • fix(label): update highlight label color d55bbb0
  • fix(publication card): run prettier 81a5bfc
  • fix(avatar) : fix naming convention for arg 84fc5fa
  • fix(tab): restore mobile font sizes 58f39be
  • fix(addForm): add min height to add form and fixed block chooser overflow ca4415d
  • fix(OrderedList): adjust margins to fourth sublists 663d384
  • fix(dropdown): being hidden because of third party css 7d353df
  • fix(modal): overflow hidden as clearfix of last child from modal b4923f5
  • fix(RelatedContent):fix merge conflict adc34bf
  • fix(button): labeled class needs to be placed after left or right keyword 53d1204

💅 Enhancements

  • refactor(card): prettier fixes e10e3d6
  • refactor(card): add card variations e16d05b
  • refactor(card): remove stories 0deb0ca
  • refactor(card):delete primary and secondary card stories 1f95d22
  • refactor(Avatar) : remake avatar as card variant ea77cdd
  • refactor(card): add styles for card variations 7407bd3
  • refactor(storybook): add story with related content inside of a tab dca008a
  • refactor(card): Rename variables from avatar to rounded be01316
  • refactor(avatar): update less variables and layer structure f965db1
  • refactor(PublicationCard):remake publication card to be a semantic card variation 5a0c6ab
  • change(button): simplified button styling fe892d6
  • change(button): simplified storybook naming and examples 9a7df4f
  • refactor(Avatar) : convert avatar component to card variation 2004a94
  • refactor(Related Content): change in grid and add see all button 955450e
  • change(button): added back button.overrides from pastanaga theme 3b55acb
  • refactor(card): add card class control 68c91a9
  • refactor(card):delete publication card variables & overrides files 6be8a03
  • refactor(OrderedList): rename TOC to Ordered List and add container to the story e00c4db
  • refactor(card): add card grid fluid story with no columns f38251c
  • refactor(list): remove horizontal control 1f5e576
  • refactor(avatarGrid): update less variables and layer structure db554a8
  • refactor(Related Content):show button when there are more hidden cards 57ff1c8
  • refactor(RelatedContent):change to use new card variant instead of publication card component 7cf424a
  • change(breadcrumb): brought back pastanaga overrides to breadcrumbs bca1c93
  • refactor(card):delete publication card folder & story 68bf773
  • change(buttons): modified basic and circular variant behavior c06fed9
  • refactor(card):tertiary variation minor story update 87b8dca
  • refactor(DescriptionList): add container to story d647c1a
  • refactor(List):render ordered list with ol,li tags 87813c1
  • refactor(OrderedList) : change table of contents story to ordered list cb6197c
  • refactor(publicationCard): update tag and name variables c109ad9
  • refactor(UnorderedList): update list as ul, list items as li and add container to strory 2c096e1
  • refactor(card):organize controls and minor bug fixes f3f6e35
  • refactor(less variables): publication card style changes c5a84e9
  • refactor(less variables): add less to related content e1a5543
  • refactor(RelatedContent):delete publication card component 2ed0ed4
  • change(button): basic button is again without padding, border and background 5a907c7
  • refactor(PublicationCard):remove link wrapper 5911a0d
  • refactor(less variables): change publication card height per viewport d7a5256
  • refactor(Timeline):change timeline icons b2fe0bf
  • refactor(publicationCard): replace px with rems 53bf8da
  • refactor(Related Content): change in related content grid bf856ce
  • refactor(List):render description list with dl,dt,dd tags ec669a7
  • change(button): show only labeled variant for buttons with icons bf49944
  • refactor(card): import image for rounded card ca5a47e
  • refactor(progress): add container to story dfb33bb
  • refactor(storybook): add publication card story with different description sizes 23af97b
  • refactor(List):render default list with dl & dt tags ece2280
  • refactor(storybook): add publication cards stories with longer description 37adefa
  • change(button): basic icon buttons no longer have box shadows c2f3ea3
  • refactor(card): remove story afc5f79
  • refactor(less variables): change card description line number per device 6946fda
  • refactor(card): update rounded card image path 8db3a85
  • refactor(DefaultList): add container to story f971193
  • change(button): bumped z-index of sidenav expand button 445ed8a
  • change(progress,label): color accessibility fixes #151 09cf6e3
  • change(button): text button now has an underline with a focus border like other buttons cdd9043
  • refactor(card): update card variation grids path 756589c
  • refactor(card): minor fixes 3a880d7
  • change(button): primary color is blue and secondary is green 53e0a0c
  • refactor(List):change styles to match with the tags lists are rendered 2673890
  • refactor(progress): update colors for accessibility ea2f454
  • refactor(card): move avatarGrid & relatedContent to Card folder 1959d52
  • refactor(Timeline): change storybook timeline colors to fix accessibility issues 79da8dc
  • change(segment): restore light grey background color for secondary segments 8716b08
  • refactor(relatedContent): adjust column paddings 8a1520d
  • refactor(storybook): clear up code 3ada154
  • refactor(card): use the rounded class for avatar grid 8c000f3
  • refactor(card) Update rounded card class 140b587
  • refactor(avatar): add variable for image border radius c23341c
  • refactor(label): add container to story 565101f
  • refactor(progress): update value color for accessibility error 6fc76f8
  • refactor(card):use jsx extension 413d328

🏠 Internal changes

  • chore(Avatar) : add container to stories 41b748c
  • style(OrderedList): prettier fixes ed95e4d

🛠️ Others

0.2.1 - 2022-04-08

🐛 Bug Fixes

  • fix(version): Switch to 2.0.0.alpha.1 83b8b8e

🛠️ Others

  • cleanup(loader): Remove useless HTML d1d180c

0.2.0 - 2022-04-04

🚀 New Features

  • feat(card) : add new default card color-schme 965adea
  • feat(label): Handle slate links and footnotes f382431

🐛 Bug Fixes

  • fix(buttons,toggles): border and background color when active 147629 #139 ea36f31
  • fix(checkboxes): background color when they are toggles 4b6ab67
  • fix(buttons): border set on basic buttons appearing on svg elements of Volto UI 69ca73f
  • fix(label): Zotero/Footnotes inside label 0ee4d58
  • fix(card) : add control for image url in storybook b28e530
  • fix(less variables):change font family e4bca9e
  • fix(storybook):minor bug fix 9fc53bc
  • fix(tag): fixes merged theme config eb30363
  • fix(Banner): prop types fix a270e5b

💅 Enhancements

  • refactor(tag): splits Tags component to TagList and tag, changes default tags style 78a5f8c
  • refactor(Banner):add banner share pop up in banner story c9688b2
  • refactor(tag): remove classes and actions that add background color ce9b6f9
  • refactor(Banner):change banner's image wrapper implementation 9153dd1
  • change(package): bump release version to 1.10.0 7e984c1
  • refactor(card): align cards and images, update less variables d47c978
  • refactor(card): add class inverted for default card 919a56e
  • refactor(tag): changes component name e1db068
  • refactor(tag): changes color metallicBlue to bottleGreen e4b68ac
  • refactor(less variables): change tag list mobile view fcded3d
  • refactor(tagList): update story to not use tag color classes 8b5b61b
  • refactor(Banner):minor bug fix ff8c352
  • refactor(Banner): add metadata field sub component 327b7e7
  • refactor(banner): add and adjust remix icon for banner action 1bf3ffa
  • refactor(banner): replace px with rem and adjust share popup padding a568329
  • refactor(Banner):add type class to metadata field and apply styles to it 86a2866
  • refactor(less variables):change tag list styles 8670087
  • refactor(banner): share items display flex on desktop 3ff8684
  • change(banner): added background gradient, share popup, metadata show and hide #136 2f5dcca
  • refactor(banner): update gradient 570ee1e
  • refactor(tags): removes hardcoded ':' ea58e86
  • refactor(card): remove card border bc77739

🏠 Internal changes

  • style(card) : add lint and prettier changes 9d9a773
  • style(tag): remove comments 501fcdf
  • style(tag): stylelint and prettier changes 08b6386

🛠️ Others

0.1.9 - 2022-03-25

🚀 New Features

  • feat(all): 1.9 release #124 0d3f6fb
  • feat(callout): Align volto-slate callout with blockquote style 9e0bb49

🐛 Bug Fixes

  • fix(inpageNavigation): restore hidden on top functionality c554e6e
  • fix(list): Fix TOC margin on 3rd level f17da79
  • fix(inpageNavigation) : add smooth scroll animation 42f6564

💅 Enhancements

  • refactor(footer): update visual and mobile margins 64f05af
  • refactor(header): restore union dropdown after implementation a7029c5
  • refactor(pullquote): adjust to the new figma design 78e4606
  • refactor(breadcrumb): adjust font sizes and import remix divider 5fcabaf
  • change(header): use viewport width for changing mobile text in header dropdowns 5a7868e
  • refactor(inpageNavigation): adjust to the new figma design 4073acf
  • refactor(tab): add max width for tab items 366d279
  • refactor(less variables):change pullquote styles 9ad94bb
  • refactor(Pullquote):change quote positions and add Pullquote.Metadata sub component 6bce35f
  • refactor(inpageNavigation): Update to remix icons 19a6061
  • refactor(inpageNavigation) : move icon & text to be in column 0953910
  • change(breadcrumbs): modified breadcrumbs template to behave like breadrumb template 490a559
  • change(package): bump release version to 1.9.0 43a6e4b
  • refactor(breadcrumb): adjust font sizes and import remix divider #120 09a3a01
  • change(menu): modified secondaryPointingItemMaxWidth to a value that equals to 250 ea138a1
  • refactor(pullquote): introduce meta section, use remix icons, integrate slate callouts #119 fd740c9
  • refactor(footer): updated visuals and gradients #117 e5c6d18
  • change(scrollToTop): feature inpage navigation revamp #121 3cf20a8
  • refactor(footer): update visual and gradient 764ec23
  • change(header): use 12px font size for mobile resolution dropdowns 6dad0fa
  • change(nav): added navDepth to 3 in order to enable mega menu integration c4f73fd

🏠 Internal changes

  • style(inpageNavigation) : lint changes 3641d78
  • style(inpageNavigation) : add less variables 0699c70
  • style(pullquote): create variable for icon font size fea9b0a
  • style(inpageNavigation) : add lint & prettier changes f8dd012
  • style(inpageNavigation): remove comment 1aee011

🛠️ Others

0.1.8 - 2022-03-18

🐛 Bug Fixes

  • fix(card): avoid long links from spilling outside of card body area 95b8951

💅 Enhancements

  • change(typography): set heading sizes as detailed in docusaurus typography section 189bf20
  • change(docusaurus): content tweaks, inpage navigation section #112 b62d1b1

🏠 Internal changes

  • chore(docusaurus): fixed grid tablet breakpoint value c7fbc09

🏠 Documentation changes

  • docs(docusaurus): capitalization remove bf8fa44
  • docs(docusaurus): update 1c04976
  • docs(docusaurus): comment address on pr 112 6e4fe3b
  • docs(docusaurus): color minor update 13f9fda
  • docs(docusaurus): tabs and breadcrump update d0547e5

🛠️ Others

  • doc(colours): add more content ec66248
  • Add divider content for metadata field in Banner f1e34bd
  • Release 1.8.0 fd6ba04

0.1.7 - 2022-03-15

🚀 New Features

  • feat(less): add global gap sizes 3c83f20
  • feat(icons): import remix css 29967fb

🐛 Bug Fixes

  • fix(menu): fix border overflow for tabs and pagination e88721f
  • fix(accordion): responsive and accessibility issues c225935

💅 Enhancements

  • refactor(menu): update paddings for tabs and pagination 533a509
  • refactor(accordion): import semantic icon for remix arrows 9aa77d8
  • refactor(all) icons, accordion, button and menu itml #108 52ed2ca
  • change(storybook): segment stories now contain several elements 98a7654
  • change(table): inherit header alignment instead of hard-coding values ebb5193
  • refactor(icons): add remix icons c4c1a92
  • refactor(container): restore mobile width to auto 2df184c
  • refactor(button): update action button hover color bb09d71

🏠 Internal changes

  • chore(docusaurus): docs delete 5f9d733

🏠 Documentation changes

  • docs(colors): corrections da64c4c
  • docs(list): default list showcase 8ded062

🛠️ Others

  • bug(form): input min-width more specific to not break volto interface 3f5b5d4
  • Update package.json 3dba28b

0.1.6 - 2022-03-11

🚀 New Features

  • feat(cards): add custom display for volto-block-image-cards 645096a
  • feat(PublicationCard):create publication card component & styles 3e5f9b7
  • feat(PublicationCard):create publication card component & styles 12cdd5d
  • feat(Related Content): create Related Content component 77eda95
  • feat(Related Content): create Related Content component 08d495b
  • feat(pagination,related) added several r3 components #105 08d47c1

🐛 Bug Fixes

  • fix(Related Content): limit publication card number to 4 e7df032
  • fix(less variables):rename publication card variables 55c6fb8
  • fix(Publication Card): add link to card and arg name fix 36a7c96
  • fix(radio): fix bullet scaling issue with firefox 5f02c95
  • fix(radio): fix bullet scaling issue with firefox dbb2e27

💅 Enhancements

  • refactor(form): remove custom classes and add container to form items 6b5442a
  • refactor(form): remove custom classes and add container to form items d1ec083
  • refactor(form): update form wrapper component a719576
  • refactor(form): update form wrapper component 0736ec7
  • refactor(form): adjust form items to volto theming 4213cfb
  • refactor(form): adjust form items to volto theming 374ffbc
  • refactor(breadcrumb): remove custom class anf and new variables b3cb83d
  • refactor(breadcrumb): remove custom class anf and new variables d5808ad
  • refactor(storybook): clear up unnecessary form elements controls f7e7d5b
  • refactor(storybook): small change in unordered list story 3ffd872
  • refactor(storybook): small change in unordered list story 6ce16e9
  • refactor(pagination): fix menu overrides for tabs that affects pagination fe8c4ca
  • refactor(pagination): fix menu overrides for tabs that affects pagination 3f4b726
  • refactor(Loader):remove image & add background image 70fe041
  • refactor(Loader):remove image & add background image ac38126
  • refactor(list): remove selection control a09b179
  • refactor(list): remove selection control 17bf710
  • refactor(storybook):unordered list minor change df2b727
  • refactor(storybook):unordered list minor change ef6db73
  • refactor(colors): remove metalic blue color b2f95b6
  • refactor(colors): remove metalic blue color 1eea33f
  • refactor(button): update variables b1774d8
  • refactor(button): update variables 061f3e3
  • change(blockquote): treat slate as a variation of blockquote component 19bd9a5
  • refactor(container): remove important from rules e984771
  • refactor(storybook):add textarea control to add/remove fluid class 475f540
  • refactor(container): remove important from rules 1cc6984
  • refactor(storybook): add required attribute to form fields fecee27
  • refactor(progressBar): update progress bar colors with vars c4ef1f0
  • refactor(progressBar): update progress bar colors with vars a44d73c
  • refactor(storybook): add required attribute to form fields 21da79e
  • refactor(list): adjust bullet size 2b29e4e
  • refactor(list): adjust bullet size 61c341c
  • refactor(statistic): add inverted background to global variables 1427e70
  • refactor(statistic): add inverted background to global variables ea25dfa
  • refactor(statistic): remove custom class 46cc560
  • refactor(container): update mobile width d548a44
  • refactor(grid): replace px with rem units e792f51
  • refactor(statistic): remove custom class b5c8e7c
  • change(docusaurus): updated template to change what's new title 3e15f4d
  • change(footer): added display variable for footer site logos d5b3c2f
  • refactor(grid): replace px with rem units f0331d0
  • change(github): auto deploy only on develop branch 11d6b4e
  • refactor(header): implementation in preparation for Volto integration #20 #89 95b136d
  • change(github): trigger autobuild when modifying templates contents 46094b1

🏠 Internal changes

  • style(list): prettier fixes f9e3b05
  • style(list): prettier fixes 8eb715b
  • chore(github): merge changes from develop to develop-itml 063bd6e
  • chore(github): build deployment only on develop branch a5a1b08
  • chore(github): build deployment only on develop branch bb455aa
  • chore(github): merge changes from develop to develop-itml 129c12f

🛠️ Others

  • Revert "chore(github): merge changes from develop to develop-itml" ca9520f
  • refactor breadcrumbs component, make it functional and customizable e902d69
  • rollback(cards): move custom display to volto-block-image-cards 2564b1e
  • bring back segment wrapper and make it attached 8458f03
  • no display: flex for blockquote added from slate 5595ce1
  • Add rule about code length a5f3652
  • Add indenting rule 15c44cb
  • fix warning related to proptype 946c6c6
  • fix profile section css overflow db5126f
  • Add rule about import sorting 804e188
  • don't use volto-slate 6a02976
  • remove segment custom width 1d3ea40
  • Add rule about naming vars 8f9020f
  • update style for accordion title 0b0d678
  • Release 1.6.0 e771e65
  • update bbcab87
  • add margin to <br> element to simulate gap as in design c6685c1
  • make breadcrumbs default size as tiny 589581f
  • remove uneeded style 82a8fb1
  • Add rule about hardcoded values e04e0df
  • Add file mode rule 65c9a93
  • Add DRY rule 66c9c3a
  • set profile section overflow to auto 71ab47f
  • Add Sonarqube tag using eea-website-frontend addons list 647a6e3
  • removed override already present in card.less 50d2ab2
  • update 7a1d482
  • Add functional components rule; add classnames rule 91a0b06
  • added comment about need for removal of this fix later 65b8166

0.1.5 - 2022-03-08

🚀 New Features

  • feat(cards): add custom display for volto-block-image-cards f49ffb6
  • feat(KeyContent): add new component 2534c54
  • feat(docusaurus): Updated developer guidelines ca146ff
  • feat(storybook): add testimonial component 55d9747
  • feat(storybook): add AvatarGrid component b668445
  • feat(storybook):add Loader component f675834

🐛 Bug Fixes

  • fix(breakpoints): fix largest screen breakpoint bug on scaling e4a11c8
  • fix(profile): section css overflow and padding issues #95 bb9eb0f
  • fix(storybook): lint auto changes for AvatarGrid b8e74f1
  • fix(components): add grid structure to various components cc33546
  • fix(header) re-added span tags removed in pull request #74 00702d7

💅 Enhancements

  • refactor(button): styling updates 37afda5
  • refactor(tab): updates on variables and overrides 54bf703
  • change(blockquote): treat slate as a variation of blockquote component 5e8a8b8
  • change(footer): added display variable for footer site logos 2f942b4
  • refactor(checkbox/radio): remove header from message and adjust top position of bullet 4a072b3
  • refactor(color): remove secondaryColorDarken variable 74c8ba0
  • change(docusaurus): updated template to change what's new title 58f58c8
  • change(github): auto deploy only on develop branch bfa35a3
  • refactor(header): implementation in preparation for Volto integration #20 #97 cddda20
  • refactor(breadcrumbs): component, make it functional and pluggable #32 #94 9f42e80
  • change(card): added styles for volto cards integration #92 a46ac21
  • refactor(grid): remove column count from example ac0e9cf
  • change(github): trigger autobuild when modifying templates contents 5f7d152
  • refactor(grid): remove custom grid 1d978a9
  • refactor(Form):change form field wrapper implementation 73cdd6d
  • refactor(message): update colors to match design 633ce31
  • refactor(checkbox/radio): update variables and remove important rules ad533b4
  • refactor(less variables): add variables to less for new components 47df026
  • refactor(Tab): fix vertical tab alignment 401bdf2
  • refactor(lint changes): add lint changes 6f6847f
  • refactor(inpageNavigation): adjust to volto theming 62f74ea
  • refactor(message): updates on styling b4cf850
  • refactor(banner): update class name ef0969b
  • change(github): use develop for auto pushing a32a723

🏠 Internal changes

  • style(design-system): unix eol 631fa90
  • style(checkbox/radio): prettier fixes a04939f
  • style(design-system): unix eol 3c753f0
  • style(message): stylelint fix 5b75057

🏠 Documentation changes

  • docs(docusaurus): visuals guidelines 544a950
  • docs(docusaurus): search guidelines 0fb229d
  • docs(docusaurus): loader page 892a25d

🛠️ Others

  • Reformat header.less 1f99dfc
  • Close menu when changing path 65daea9
  • refactor breadcrumbs component, make it functional and customizable 4ec374e
  • rollback(cards): move custom display to volto-block-image-cards 79d4c89
  • Open overlay menu on global menu click cc749bc
  • bring back segment wrapper and make it attached 9f413ff
  • Use renderMenuItem also in mobile menu 02de0bb
  • Fix clicking outside closes menu af52664
  • Cleanup args in header story 2bf6a30
  • fix warning related to proptype 824b9be
  • fix profile section css overflow 8fd2654
  • don't use volto-slate 70ca3d4
  • remove segment custom width 4a60d84
  • update 96f4af0
  • Fix TopDropdownMenu component rendering in mobile a4626de
  • Add usePrevious hook 797faba
  • make breadcrumbs default size as tiny 3c8e1c6
  • Update package.json fa020cb
  • Add rule about hardcoded values 0c6912c
  • set profile section overflow to auto 8db62bb
  • added comment about need for removal of this fix later 6fdbd71
  • Add Sonarqube tag using eea-website-frontend addons list 6051724
  • removed override already present in card.less 93c4e5a
  • Remove console.log calls 8a3a4cb
  • update 81bb7d4
  • Update comment ffa2400
  • merge develop into this branch ad5b388
  • WIP a8d97f1
  • Use header.less from develop branch 99edbc6
  • WIP 57b5783
  • WIP 785da36
  • WIP 5d1eba9
  • adds Tags e37fc19
  • Add useClickOutside hook 70364c8
  • Implement outside click handling fa6f818
  • Simplify overlay menu template 28b0478
  • fixes less variables, fixes tags positioning cc19b9b
  • WIP 15bc0f4
  • no display: flex for blockquote added from slate 312a893
  • Add rule about code length 318cd48
  • Add indenting rule d589685
  • Add rule about import sorting cd337c1
  • Add rule about naming vars b112de0
  • Bring back classNames from header subpopup e477a51
  • removes tags hashtag from jsx 6b8b3e9
  • WIP d481324
  • fixes undefined on empty classes 4b29080
  • stylelint changes a5ab830
  • Footer link color @white 578e4f7
  • add margin to <br> element to simulate gap as in design 9ab9a97
  • impors colors from site variables 6117267
  • small fix for the link in footer action 72df049
  • remove uneeded style 66e9064
  • use proper naming conventions for var naming 596e314
  • Add file mode rule 805baa7
  • use less variables b43ac8d
  • Add DRY rule 2f1584e
  • Add functional components rule; add classnames rule 1b2915e
  • fix z-index of header 7d2a5d6
  • Remove comment 7d120b1

0.1.4 - 2022-03-01

💅 Enhancements

  • refactor(pagination): adjust to volto theming 06cc3b6
  • refactor(Form):create form field wrapper file 95b9934
  • refactor(megaMenu): update margins for menu items 230e476
  • refactor(megaMenu): update gradient 47f2ea4

🏠 Documentation changes

  • docs(docusaurus): divider page c6bb238

🛠️ Others

0.1.4-beta.0 - 2022-02-25

🚀 New Features

  • feat(github): added feature and bug reports templates with our guidelines as checkboxes 1549093

0.1.3 - 2022-02-25

🐛 Bug Fixes

  • fix(all): change eol to unix 62e7224
  • fix(banner): separate url value f9c9140
  • fix(all): merge eol c68f6e0
  • fix(blockquote): align self property now uses a valid entry ec76163

💅 Enhancements

  • refactor(megaMenu): new implementation ff013af
  • change(volto): removed customizations made for ims theme from volto-eea-design-system bc8d514
  • refactor(Timeline): divide to sub components and change files to .jsx 3e2bd3b
  • refactor(header): update variables 4e5d08d
  • refactor(Header): link header's menu to mega menu 08406d8
  • refactor(Menu): change mega menu implementation 455a51b
  • refactor(Grid):minor changes and delete extra files 272585d
  • refactor(timeline): adjust to volto theming b98641a
  • refactor(megaMenu): fix link hover issue for tablet 564e972
  • refactor(header): add remix icons and minor updates c9c97dd
  • refactor(Header): change header buttons implementation 6608b8c
  • refactor(Header): add sub components and change existing Main 74c35a3
  • refactor(table): adjust to volto theming ab7a0e8
  • refactor(Footer): delete Actions & ThemeSites files and clear imports 7a78456
  • refactor(header): update variables 326655a
  • refactor(Breadcrumb): add react router link and minor bug fix 073a3a3
  • refactor(Header): show menu on search & minor bug fix 4d49a8a
  • refactor(List): add extra default list story 95665cd
  • change(docusaurus) change generation of what's new section and bump package version 6c35cff
  • refactor(Footer): minor code changes 67cb4bc
  • refactor(Menu): add class to mega menu items for styling 19baa34
  • change(accordion): modified default accordion stories titles with real accordion names cf11cc8
  • refactor(Header): accessibility image alt fix a7347a6
  • refactor(header): adjust to volto in progress 760beca
  • refactor(Header): header items as storybook arguments 388c752
  • refactor(banner): update less variables 35b0a98
  • refactor(banner): actions as buttons; don't hardcode url for banner image; subcomponentize Banner, add Banner.Action; add developer guidelines on inline styles and line endings; 6dd5a41
  • refactor(blockquote): fix responsive margins and sizes rems 209f94f
  • refactor(Input): label position and style change 970074a
  • refactor(header): update dropdown menu 32eb0fa
  • refactor(timeline): theming updates c80c9aa
  • refactor(Blockquote):remove image stories a6357ca
  • change(docusaurus) proofread blockquote usage section and removed unused api section 0bb29fd
  • change(infrastructure) cherry-pick fix 9639243 skipping jenkins on auto commits fc744cd
  • change(ci) build storybook and docusaurus only when pushing to develop-itml branch 4de0cbf
  • change(infrastructure): modify whats new doc when committing the auto deployment 39df33e
  • change(blockquote): introduce float argument for blockquote with image storybook 8fc7290
  • refactor(pullquote): add word break 2245e53
  • refactor(Banner): minor bug fix b9073b6
  • refactor(table): fix th font weight a96a0a7
  • refactor(comment): remove avatar border radius d42c37b
  • refactor(banner): adjust title size 7a24d9c
  • refactor(Image): change image path a580da6
  • change(infrastructure): specify that docs folder contains changes for deployment a1ca915

🏠 Internal changes

  • style(input) prettier fixes e83fa0c
  • chore(storybook): prettier fix 354c7b3
  • chore(design system): technical commit for edw integration tests 9f76035
  • style(storybook): prettier fixes 3c9ad34
  • chore(infrastructure) updated branch with changes from bitbucket 77866f8

🛠️ Others

  • doc(colours):fix color to better show primary ones 705b789
  • doc(colours):change font size to fit text in one line 4ad7516
  • bump package release to 1.3.0 f3cfe4f
  • Refactor banner into content subcomponent f8df238
  • lint fixes cda322d
  • rollback don'ts grammar change and disable unresolved import for Banner.stories.jsx a1bd715
  • Add space line in component d4d1a5f

0.1.2 - 2022-02-17

🚀 New Features

  • feat(blockquote) added blockquote styles as a custom module d30662e

🐛 Bug Fixes

  • fix(inpageNavigation): hide at the top of the page 97ef500
  • fix(footer):missing image ac91a29
  • fix(comment):fix broken image 8125dc1
  • fix(message): fix font loading fdc498e
  • fix(logo): logo change 5f8c8af

💅 Enhancements

  • refactor(storybook): multiple components fixes 4a3ff51
  • change(infrastructure) re-enable integration tests for auto release stack ce8daf8
  • refactor(storybook): global site files styling update f3770f1
  • refactor(storybook): multiple components 9277aac
  • refactor(footer) adjust to volto theming update a59f1c3
  • refactor(header): minor styling update dd6b55c
  • refactor(Header): change header mega menu 7559b57
  • refactor(banner): adjust to volto theming 451b949
  • refactor(accordion): minor styling update aeaf25f
  • refactor(footer): adjust to volto theming bdff176
  • refactor(footer):mobile responsiveness 14822be
  • refactor(storybook): main and custom less files update 1607760
  • refactor(timeline): update after removing timeline addon f54d380
  • refactor(Footer): replace with subcomponents 378c652
  • refactor(Header): header change 029e850
  • refactor(Header): change header bar 2b766fd
  • change(docusaurus) use itml branch for docusaurus deployment 6e286c5
  • refactor(accordion): adjust to volto theming 971fcb8
  • refactor(Header): add sub components 7f955db
  • change(docusaurus) tweak auto deployment to always commit changes from docs a2940da
  • refactor(banner): less and variables files created d5b1a8a
  • refactor(label): adjust to volto theming 3c945e1
  • refactor(message): adjust to volto theming 3e950fc
  • refactor(Footer): add sub components and props c3d1487
  • refactor(modal): modal and confirm adjust to volto theming 83b60e9
  • refactor(comment): adjust to volto theming 84348c3
  • refactor(storybook):adjust headings 32f64f9
  • refactor(Header): add comments to header menu c2c83b2
  • refactor(Accordion): clear up accordion stories code 4e59b8f
  • refactor(segmant): adjust to volto theming 3ab211e
  • refactor(button) minor styling update 8782bb2
  • refactor(banner): change image position cdd76d5
  • refactor(breadcrumbs): update less variables 640817e
  • refactor(list): adjust to volto theming 1079c73
  • refactor(timeline):adjust timeline module 213eb11
  • refactor(blockquote):adjust to volto theming 5eec87f
  • refactor(progress): add progress bar colors ccf3c98
  • refactor(pullquote):adjust to volto theming fee4466
  • refactor(Header): change mobile mega menu c7ecf18
  • refactor(statistic): adjust to volto theming b726e49
  • refactor(button) adjust to volto theming eb257f8
  • refactor(form): minor styling update 79934b2
  • refactor(Footer): create Actions & Sites sub components 446840b
  • refactor(inpageNavigation): adjust to volto theming 85c631a
  • refactor(Inpage Navigation): changed button's display 36e5b4f
  • enhancement(docusaurus) modified headings to be within release versions 19ace30
  • refactor(storybook): move components to ui folder cb91f88
  • refactor(Header): change mega menu de0fc6b
  • refactor(Pullquote): divide Pullquote to sub components 34413c4
  • enhancement(docusaurus) replace changelog when auto-building docs Refs #145331 da25c0e
  • refactor(popup): adjust to volto theming d0d192d
  • refactor(card):adjust to volto theming 2ab6f91
  • refactor(item): adjust to volto theming 89a16af
  • refactor(pullquotes) remove unnecessary variables e0d20a3
  • refactor(progress):adjust to volto theming d1ab950
  • refactor(blockquote) change variables names 36fd5be
  • refactor(comment): adjust font sizes 0311ed1
  • refactor(InpageNavigation): clear up code 1d7afdc
  • refactor(container): change variable name for computer padding 26d123f
  • refactor(inpageNavigation): remove imports 25c1d1c
  • refactor(storybook): update ui index components exports ce78d47
  • change(infrastructure) auto build storybook when pushing to develop-itml branch of volto-eea-design-system e9aa5bc
  • refactor(storybook): delete demo stories 8b58d02
  • change(docusaurus) align deployment steps for building docusaurus 37e4ce0
  • refactor(storybook): remove components from customizations folder 8930ede
  • refactor(tab): minor styling update 1252ad0
  • refactor(comment): change avatar src e5f9c4c
  • refactor(banner) : change file type and folder 878742b
  • refactor(form elements):changed text 919beea
  • refactor(Image): change image src b971084
  • refactor(Pullquote): add component propTypes d32c5e6
  • refactor(blockquote): adjust font sizes d71a3ce
  • refactor(footer): update font sizes 1c91c35
  • refactor(Blockquote): add component proTypes ea02649
  • refactor(logo): update image f611372
  • refactor(docusaurus): restore config f2c5239
  • refactor(blockquote): update component name 572e655
  • refactor(header): fix story header import ceda6c7
  • change(infrastructure) auto build docusaurus when pushing to develop-itml branch 7bebdf5
  • refactor(storybook): remove components from customization folder 4a9bb9b
  • refactor(banner):story rename 56ff603
  • change(testing) removed navigation from cypress tests until component is finished 5549f4c
  • refactor(Segment): change to .jsx extension 5cb35d8
  • refactor(Pullquote): change to .jsx extension 564cf7e
  • refactor(PopUp):change to .jsx extension dcb24ff
  • refactor(InpageNavigation): change to .jsx extension dfefce3
  • refactor(Blockquote): change to .jsx extension 44a1645
  • refactor(heading): story name update aa10f34

🏠 Internal changes

  • style(footer): prettier fix 902c257
  • style(storybook): prettier fixes 59f941d

🏠 Documentation changes

  • docs(docusaurus):multiple page updates 2aba73e
  • docs(docusaurus):update page content 565697f
  • docs(grid):update components grid 60eb083
  • docs(docusaurus): page adjustments 0641eac
  • docs(docusaurus):updated various pages f860176
  • docs(docusaurus): logo change 3af5e5c

🛠️ Others

  • added sortable table stories and descriptions 6d44dd7
  • Layout components theming 5861013
  • recovered files from origin a4ac04f
  • grid component & stories changes 4a5752e
  • Updated what's new section with actual commits from volto-eea-design-system repo fc5e3c3
  • Docusaurus title possible fix. db699e7
  • form elements stories added description & default values 6b4f6eb
  • removed API tabs 58aa928
  • Layout updates 854f388
  • Refs #142123 removed extra customization of semantic.less: ab9de81
  • added page-header,footer and grid in docusaurus 660c8e3
  • Manual docs build and commit 666eb6a
  • added svg & png files f1338d5
  • added missing components to docusaurus 934dfd8
  • Control descriptions updated 56581eb
  • Grid updates 700332d
  • Button theming update 0ec68b6
  • site variebales & overrides changes 7251162
  • Table and Tabs theming 49f0860
  • Responsiveness updates 48e1351
  • added various components to docusaurus 550d719
  • Checkbox and radio updates 24652a2
  • remove images from typography and colour docs 8493e92
  • added guidelines' text and finished all components 02d75fc
  • added more missing components in docusaurus 8be8263
  • Prettier changes on docusaurus 5f1e5eb
  • Grid updates ae09945
  • Minor fixes for tests 3bdf306
  • Layout updates 8b7a4dc
  • Footer and TOC theming bb3d3c4
  • Refs #145331 manually commit changelog until autobuild is stabilized 93168b0
  • label component changes df8c0ff
  • added several sections to the theming guidelines ff1a649
  • Updated removed files. 84f9b8c
  • added more docusaurus components 52a3b9e
  • Progress Bar 9f2efc9
  • Modal and Confirm updates 3b306c6
  • Add proper changes to whatsnew meant in previous commit 40f78e3
  • Form Descriptions de0dfbc
  • Prettier fixes 1337e6f
  • Deleted files b82f982
  • add new images for spacing 7b7b2c4
  • Messages Theming ad621a3
  • added new content to docusaurus 1c83452
  • Minor less updates a36a8bb
  • Tabs and lists updates e37eef1
  • Inpage nav and timeline components 76f0f82
  • Prettier updated files 679b9d2
  • dropdown initial d8aef26
  • Prettier changes f068af0
  • List initial 6d3b969
  • List story updated e96a6f6
  • Statistics updates 74bf639
  • styling c169cc0
  • timeline comp storybook changes 1f42686
  • feature(docusaurus) added theming guidelines ded1f04
  • Properly commented out integration tests. 48b3a15
  • Reattempting commented out integrations tests. 3dd8211
  • Button theming 4231e1c
  • Card initial 06dace5
  • form element storybook changes c4b06aa
  • Pagination theming 2a80175
  • Accordion theming 8061bf9
  • global var updates and radio story 9526ee2
  • created pullquote component & stories df35563
  • Item stories added description & default values 9d459f2
  • storybook clean up code bffd326
  • List updates 28f1b53
  • Button classes updates 788c289
  • Prettier fixes 678c9be
  • Removed header title from partial docusaurus components. ed7c45e
  • created banner component and stories 9be170f
  • Breadcrumb stories description & defaultValue -- clean up code 186ab65
  • Refs #142123 added customization of semantic.less: 1e02356
  • Card stories added description & default values f6b408f
  • Statistic and accordion updates 16064ce
  • breadcrumb component & stories changes 5bceb98
  • Container initial 3eb7155
  • doc(docusaurus):Fix text for various parts bfd3fa2
  • blockquote component & stories 879b640
  • Refs #143412 removed doc comments breaking doc building e6a6756
  • Popup updates ce2d641
  • Global variables for colors and borders added 6e5fbd6
  • Tab stories changes 5429cfb
  • Confirm stories added description & default value 85cda14
  • Kebab case class names b41cd07
  • Card and Comment class updates 3899465
  • Accordion updates c97ba39
  • item stories changes 772e41f
  • Accordion class updates 9cdde86
  • Comment stories added description & default value cb6f25b
  • Accrodion stories description & default value ab8fb88
  • Pullquotes updates c598421
  • Modal and confirm class updates 0ae47e6
  • Tab and paggination updates 96796ff
  • Form Updates e986a9f
  • Classes renamed 73c8c3d
  • List and item less updates ce0de17
  • Confirm theming 36e20ce
  • container overrides changes 4b3970b
  • Docusaurus theming fc4a8c5
  • refacto(headings): update mobile headings sizes b2e9f83
  • list stories and style changes c61db53
  • Tab theming e31e6c3
  • Message and pagination classes updates c230687
  • Segment initial d5724fe
  • Refs #143412 removed doc comments from api_markdown breaking doc building efeacba
  • Timeline and responsiveness updates 1ed1524
  • Refs #142123 use swap font-display for performance reasons 083738f
  • Breadcrumb stories minor changes 3d0d17c
  • Table component stories minor change 0bf4083
  • List stories changes a64b304
  • blockquote component minor changes cdf71a8
  • ckeckbox stories minor change 6d6e508
  • image component storybook changes 91290ec
  • button overrides changes d5b78dd
  • accordion overrides changes fdcf7d5
  • Accordion component and stories changes 5079247
  • Card theming 23bbb9d
  • statistic overrides changes 2b11cb5
  • Refs #143412 build docs only on pull request like we do with storybook 473bb87
  • Card component stories minor change | added link icon deb423a
  • comment component stories changes f1c5e75
  • Accordion component bug fixed 815e91d
  • Refs #145331 use iso date to release so that we see also time ceedf08
  • correct connfig for doco 93e1313
  • Item updates fae93d4
  • added layout grid 2e6be55
  • tab overrides changes 87aaf32
  • message overrides changes 6dccfca
  • segment storie changes 296371f
  • progress component stories changes df10c2e
  • message comp storybook changes c86b405
  • Accordion cmponent stories | minor bug fix 6de0d81
  • Refs #145331 add all changes when auto building docusaurus ce11cce
  • perf(timeline):removed semantic timeline package 0aeb34a
  • Tablet Breakpoint update b229c27
  • Refs #143412 set storyBook Url to eea.github.io b7fdecb
  • bump package version to signaling of a major release c835f1d
  • small commit to trigger deployment of storybook and docusaurus be46ea3
  • doc(accordion):revert previous change 3de02da
  • fix typo for caption @desktop line-height pixel number 1671552
  • Commented out integration tests. 574cfec
  • popup overrides changes a9555e3
  • container component stories fixes 692cfce
  • Added timeline to package json fixed f2e93e0
  • Refs #142123 modified import of volto-eea-design-system icon.less: a7fab7d
  • Refs #142123 reference icon.less from this package: 5616e6d
  • Menu component stories change 2797716
  • Image stories minor change ddb9f1d
  • card component stories changes 6ccba1e
  • Added timeline to package json 93031d6
  • table stories code clean up b7b2a56
  • Refs #143412 removed extra baseUrl from docusaurus config 79f36da
  • Accordion stories minor change ffe808a
  • Theme assets 3f4bea4
  • Merged with develop 167ec9f

0.1.2-beta.2 - 2022-01-03

0.1.2-beta.1 - 2021-12-22

🛠️ Others

  • Tab component stories minor changes 4690a6f
  • Comment component stories minor changes a87cb6a
  • Form stories changes fc30c90
  • Grid component stories minor changes 798fdd0
  • Image component stories minor changes be93385
  • Menu component stories minor changes cb1f9a8
  • Dropdown component stories minor changes 57cf954
  • Header component stories minor changes 264fd46
  • Confirn component minor changes 9a00bc1
  • Item component stories minor changes 6994fa0
  • Label component stories changes 5cc5843
  • Container component stories minor changes e6e40b3
  • Message component stories minor changes ba9d377
  • Breadcrumb component stories minor changes ff7a176
  • Modal component stories minor changes af1fe6a
  • List stories changes 0016042
  • Button component stories minor changes 690dfd2
  • Radio component stories minor changes 84eac30
  • Progress component stories minor changes e676357
  • Pagination component stories minor changes b1af226
  • Segment component stories minor changes 5f8c7ef
  • Refs #143412 eslint fixes for component stories badcb91
  • Table component stories minor changes 7c104b8
  • Refs #143412 more eslint fixes a88c091
  • Refs #143412 warn for broken links instead of throwing bd5821c
  • Refs #143412 merge changes from develop-itml to develop branch bca28b9
  • made tabs dynamic for api tab ea37ecb
  • Basic storybook/Docusaurus components 840ab60
  • created List directory & srories based on semantic-ui List component 51f1901
  • made tabs as component easy to call for other components 07bae49
  • Popup Component | minor fixes 2ff9908
  • created stories for Tab component 95e3a73
  • created Table directory and stories based on semantic-ui Table component e16115d
  • List component stories - minor changes de11343
  • created stories for Comment component a20f884
  • created stories for Grid component 360d2a8
  • created stories for Image component 3c1d2bc
  • created stories for Menu component 17e3b37
  • Added untracked files 75f0afd
  • created Dropdown stories d6a2538
  • created Header component stories b833979
  • created stories for semantic-ui Confirm component 6fddccc
  • created Statistic directory and stories with semantic-ui Statistic component cd62498
  • created Item component stories 90ec2be
  • created stories for Container component 41934f6
  • created Label component stories 71732f6
  • created Message component stories adcbeab
  • created Modal component stories c25409d
  • Breadcrumb component stories and minor changes 6264d92
  • created Pagination component stories 57cdad3
  • created Segment component stories d8d01d7
  • created stories for Radio component 1fd062d
  • Menu stories minor changes 6ba5e0d
  • Statistic component stories minor changes 3c874a5
  • Card component stories minor changes 290bda8
  • Accrordion stories minor changes 2ee3f59
  • renamed Demo folder to Layout b9f6d05
  • remove test exclusion 94dba3e
  • Accordion component stories minor changes e672d59
  • fix docusaurus url (removed trailing /) b6c59fc
  • Item component stories - minor changes f0a9902
  • eea logos and assets b435b51

0.1.2-beta.0 - 2021-12-18

🛠️ Others

  • Refs #140454 added github action to build docusaurus to the develop branch abe6a72

0.1.1 - 2021-12-16

🛠️ Others

  • Refs #140454 changed the following to volto-eea-design-system: 6791d41
  • Refs #140454 corrected base url for docusaurus website build 98271b3
  • Initial test changes on design system/docusaurus. 9dad612
  • After prettier check 9ec40b4
  • Refs #140454 restore SearchWidget.jsx content and removed dummy text from docs intro page 7505df8
  • Refs #140454 added references to eea and the storybook in the docusaurus footer 42bbfcd
  • Refs #140454 lint fixes 9502f2b
  • Add SonarQube badges a4e0a40
  • Refs #140454 brought changes from develop-itml and upgrades docusaurus 207c873
  • Refs #140454 removed extra content not needed by the docusaurus site bc68ebe
  • Refs #140454 updated docusaurus to latest beta d68ed8a

0.1.1-beta.0 - 2021-12-09

🛠️ Others

  • Refs #140454 moved header and footer templates from volto-ims-theme: e2d5e56
  • Refs #140454 added website folder with docusaurus site skeleton 6fd15f4
  • Refs #142794 added commented implementation of the header and footer area: 773ad87
  • Refs #140454 changed the following: 4137ec4
  • Refs #140454 removed storybook from volto-eea-design-system: a129ffb
  • Refs #140454 added storybook as a dev dependency: e04ae4e
  • Refs #140454 updated Breadcrumbs.jsx to latest version: 63fe507
  • Refs #140454 we should use jsx and not mdx for storybook tests 3668e66
  • Refs #140454 updated eea-design-system readme with extra info on package contents d2efc3d
  • Refs #142010 - Optimize Volto-addons gitflow pipelines 3af46d2
  • Refs #140454 Renamed folders of docusaurus website: 15bca74
  • Add demo story 757c409
  • Refs #142794 enabled minimum css so that header looks decent adbe233
  • Refs #140454 use the develop branch for the readme linking, it's always more up to date 23dcf16
  • Refs #140454 added missing themes reference for the eea theme e9ca244
  • Refs #140454 modified assets imports after move to volto-eea-design-system 2250cc7
  • Load footer in segment 80d38a9
  • Refs #140454 bump package version to 1.1.0 from 0.1.1 from develop branch: 1314039
  • Refs #142794 keep toolbalWidth variables in case design system runs in an older version of Volto 1a8b305
  • Refs #142794 changed the following: fbb80b1
  • Refs #140454 moved storybook scripts to the scripts section 705c4c3
  • Refs #140454 removed dangling comma 514f24d
  • Refs #140454 changed link to the start of the docs 0e16fdf
  • Refs #140454 add h1 to the list of elements that are max 800px and centered 7d3c30f
  • Add Sonarqube tag using ims-frontend addons list 8d657d0

0.1.0 - 2021-11-17

🛠️ Others

  • Refs #140454 changed the following to volto-eea-design-system: 40d2af6
  • Refs #141204 elements folder now has the variables and overrides from pastanaga theme 595b4e6
  • Refs #141204 use font awesome from SemanticUI instead of Pastanaga: 4e273ca
  • Refs #141204 removed the components customizations from volto-eea-design-system: c98c260
  • Refs #141204 added customizations folder from volto-ims-theme to volto-eea-design-system: ff4bf44
  • Refs #141204 modules folder now has the variables and overrides from pastanaga theme f2841b6
  • Refs #141204 customized Comments.jsx to remove unnecessary container b2e95d7
  • Refs #132149 added initial commit for volto-eea-design-system: 2934b91
  • Refs #141204 collection folder now has the variables and overrides from pastanaga: 213d496
  • Refs #141204 removed search widget customization, we can use volto-ims-theme for that file b7e8b0c
  • Refs #141204 stylelint quick fixes 5595925
  • Refs #141204 changed the following: 769f4f9
  • Refs #141204 changed the following to the eea theme: 06d8d86
  • Refs #141204 eea site.variables now use all values from pastanaga's site.variables 6535c0f
  • Refs #141204 simplified container overrides: 5125003
  • Release 1.0.0 177d0ce
  • Refs #141204 globals folder now has the variables and overrides from pastanaga theme 116a0c3
  • Refs #141204 changed the following: 2e7f423
  • Refs #141204 modules folder now has the variables and overrides from pastanaga theme: 27a201d
  • Refs #141204 text elements are now with a max width and centered within content-area: bbed7bb
  • Refs #141204 added main.variables entries from pastanaga to eea theme 1cbbc55
  • Refs #141204 modified theme image imports for component customizations ef3238a
  • Refs #141204 modified container width to be auto: 2e8d2e0
  • Refs #141204 modified several icons to use the \f values instead of \e: c397145
  • Refs #141204 changed the following: c518eda
  • Refs #141204 ensure that main column isn't enlarged over the sidebar section on edit f7a2868
  • Refs #141204 changed the following to the form styling: eb92e05
  • Refs #141204 modified path of theme folder location for image selection f8cca45
  • Refs #141204 added missing mobileScrollbarWidth variables introduced as part of the mobile navigation pull request 444c78d
  • Refs #140454 reference font and image path from ~volto-themes instead of relative ec93ed3
  • Refs #141204 ensure that Volto doesn't crash when site module is set to eea: 51f2f27
  • Refs #141204 added tiny size prop to Breadcrumbs in order to have it as 12px 56a12e2

0.0.1 - 2021-11-17

🛠️ Others

+ \ No newline at end of file diff --git a/docs/index.html b/docs/index.html index 8d18e6a412..c99de2ef82 100644 --- a/docs/index.html +++ b/docs/index.html @@ -5,13 +5,13 @@ Welcome to EEA Design System Homepage | EEA Design System - +

EEA Design System

Creating a consistent user experience for our digital products

I am a...

Web developer

Design system for web developers

Web designer

Design system for web designers

Web content creator

Tips and tricks for writing for the web

Publication writer

Writing manual for publications

Publication designer

Design system for publications

Data scientist

Design system for data scientists

- + \ No newline at end of file diff --git a/website/docs/2-whatsnew.md b/website/docs/2-whatsnew.md index 13597cc431..9bdf2751b5 100644 --- a/website/docs/2-whatsnew.md +++ b/website/docs/2-whatsnew.md @@ -32,10 +32,31 @@ Below is a non-exhaustive list of the work-in-progress which is planned for futu Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). -### [Unreleased](https://github.com/eea/volto-eea-design-system/compare/1.0.5...HEAD) - 2023-03-29T12:35:52.490Z +### [Unreleased](https://github.com/eea/volto-eea-design-system/compare/1.0.6...HEAD) - 2023-03-30T19:12:41.039Z + +#### :nail_care: Enhancements + +- change(breadcrumbs,mega-menu): better screen readers support, see links instead of groups #309 from eea/firefox-accessibility-tab-issues [`d6b0b4a`](https://github.com/eea/volto-eea-design-system/commit/d6b0b4adba8f04799491025fb41ac97e875bcce0) +- refactor(megaMenu): align menu items with demo site for better testing [`82a5c84`](https://github.com/eea/volto-eea-design-system/commit/82a5c84cfde81dd8243f3f9a2d1fcaa8ac4b1463) +- refactor(breadcrumbs): updates on structure and story for accessibility [`770c8c0`](https://github.com/eea/volto-eea-design-system/commit/770c8c0bce88c5d9301ab0293a8e4865849bfeb2) +- refactor(megaMenu): Restructure Topics and Countries lists [`d816e7a`](https://github.com/eea/volto-eea-design-system/commit/d816e7ab9cdf2f202ab994201c16241cfb26c33a) +- change(mega-menu): use lists for navigation, enhance voice over support for better accessibility [`d13137f`](https://github.com/eea/volto-eea-design-system/commit/d13137f024d6357514b85f184d219eb81dd585f2) +- refactor(header): firefox accessibility errors fix [`c7d35b9`](https://github.com/eea/volto-eea-design-system/commit/c7d35b92b90940b466ea016dbbb3f1c6dfa0c3ab) +- change(breadcrumbs): label modification for better screen reader output [`c967bef`](https://github.com/eea/volto-eea-design-system/commit/c967bef63ac6f622f5936235dd5590831a674d15) +- refactor(megaMenu): clean up function after test [`883eb73`](https://github.com/eea/volto-eea-design-system/commit/883eb73cbc3db6a1fadd0200118eafdce91b7aab) +- change(mega-menu): added code to align countries left column subtitle with the right column [`1aa33dd`](https://github.com/eea/volto-eea-design-system/commit/1aa33dd7ac7154a91515eef688f276d664d5d7f3) +- change(mega-menu): sub-title padding tweaks for better spacing normalization [`e08668d`](https://github.com/eea/volto-eea-design-system/commit/e08668dd9fd948e57628e5582e7a4a7f08d96451) +- change(breadcrumbs): fixed sizing of breadcrumbs list items [`1761e98`](https://github.com/eea/volto-eea-design-system/commit/1761e984a6ffebbcca0c7b88128a01235fc6b903) + +#### :house: Internal changes + +- style(megaMenu): remove comments and unused properties [`fa5f8f8`](https://github.com/eea/volto-eea-design-system/commit/fa5f8f878421d879026aacd86e5390112b8852a1) + +### [1.0.6](https://github.com/eea/volto-eea-design-system/compare/1.0.5...1.0.6) - 2023-03-29 #### :rocket: New Features +- feat: add viewport-(width/height) less functions and fixed banner image url #329 from eea/develop [`e8e70bd`](https://github.com/eea/volto-eea-design-system/commit/e8e70bdc81f4f301a9dce370867a873e55563048) - feat: add viewport-(width/height) less functions [`68300a3`](https://github.com/eea/volto-eea-design-system/commit/68300a3c34e66954c7ef3a6e52baa37431fbfa9e) #### :nail_care: Enhancements From 05f664dde27f1e0580ab7f32a7934e4d8e85c918 Mon Sep 17 00:00:00 2001 From: Antonis Tarantilis Date: Fri, 31 Mar 2023 13:35:03 +0000 Subject: [PATCH 28/45] refactor(label): add href attribute to links --- src/ui/Label/Label.stories.js | 16 +++++++++++++++- theme/themes/eea/elements/label.overrides | 4 ++++ 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/src/ui/Label/Label.stories.js b/src/ui/Label/Label.stories.js index db51b5c664..a6c3aaac0e 100644 --- a/src/ui/Label/Label.stories.js +++ b/src/ui/Label/Label.stories.js @@ -48,7 +48,12 @@ export default { const Template = (args) => ( - + ); @@ -57,6 +62,7 @@ Default.args = { content: 'Label', pointing: false, importance: null, + link: '/#', }; export const Ribbon = (args) => ( @@ -64,10 +70,13 @@ export const Ribbon = (args) => ( +
+
paragraph ( Ribbon.args = { content: 'Ribbon Label', importance: null, + link: '/#', }; Ribbon.parameters = { @@ -92,6 +102,7 @@ export const Corner = (args) => ( src="https://react.semantic-ui.com/images/wireframe/image.png" label={{ as: 'a', + href: `${args.link}`, corner: 'right', icon: 'save', className: `${args.importance ? args.importance : ''}`, @@ -104,6 +115,7 @@ export const Corner = (args) => ( Corner.args = { importance: null, + link: '/#', }; Corner.parameters = { @@ -118,6 +130,7 @@ export const Basic = (args) => ( className={args.importance ? args.importance : ''} basic as="a" + href={args.link} > ); @@ -126,4 +139,5 @@ Basic.args = { content: 'Basic Label', pointing: false, importance: null, + link: '/#', }; diff --git a/theme/themes/eea/elements/label.overrides b/theme/themes/eea/elements/label.overrides index 2e1bd90cbd..dc7c0fa2e6 100644 --- a/theme/themes/eea/elements/label.overrides +++ b/theme/themes/eea/elements/label.overrides @@ -164,3 +164,7 @@ a.ui.basic.highlight.label:hover { background: @labelNoBackground; } } + +a.ui.corner.label i.icon:hover { + cursor: pointer; +} \ No newline at end of file From 18eaaf41fa80a3e175341a2ddd7376b8281fee7d Mon Sep 17 00:00:00 2001 From: Antonis Tarantilis Date: Fri, 31 Mar 2023 13:36:50 +0000 Subject: [PATCH 29/45] fix(tag): fix in args --- src/ui/Tag/Tag.stories.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/Tag/Tag.stories.jsx b/src/ui/Tag/Tag.stories.jsx index aafc0cf998..154f4baff1 100644 --- a/src/ui/Tag/Tag.stories.jsx +++ b/src/ui/Tag/Tag.stories.jsx @@ -16,7 +16,7 @@ export default { export const Default = (args) => ( - {args.title} + {args.title} ); From 4e7bcc2c1843cda3340c7077d4119302603a120f Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 3 Apr 2023 14:54:46 +0000 Subject: [PATCH 30/45] Autobuild of docusaurus docs --- docs/404.html | 4 ++-- ...ements-5372482011916ad559b7b4a9f7c180d1.jpg | Bin 0 -> 856229 bytes ...ements-d4cce6387532509cd95ab7a26b83fd8f.jpg | Bin 188742 -> 0 bytes ...10606c.92eeae11.js => 1a10606c.216f709e.js} | 2 +- docs/assets/js/41d5c757.0d9cade4.js | 1 + docs/assets/js/41d5c757.8f7541fb.js | 1 - ...in.ee0bc8a7.js => runtime~main.4df05331.js} | 2 +- docs/blog/archive/index.html | 4 ++-- docs/docs/category/components/index.html | 4 ++-- docs/docs/category/forms/index.html | 4 ++-- docs/docs/category/guidelines/index.html | 4 ++-- docs/docs/category/maps-and-charts/index.html | 4 ++-- docs/docs/category/publications/index.html | 4 ++-- docs/docs/category/quotes/index.html | 4 ++-- docs/docs/category/resources/index.html | 4 ++-- docs/docs/category/search/index.html | 4 ++-- docs/docs/category/templates/index.html | 4 ++-- docs/docs/category/utilities/index.html | 4 ++-- docs/docs/category/visuals/index.html | 4 ++-- docs/docs/category/web-content/index.html | 4 ++-- docs/docs/category/web-development/index.html | 4 ++-- docs/docs/dataguide/intro/index.html | 4 ++-- docs/docs/intro/index.html | 4 ++-- docs/docs/pubguide/design/index.html | 4 ++-- docs/docs/pubguide/writing/index.html | 4 ++-- docs/docs/webcontent/intro/index.html | 4 ++-- .../webdev/Components/Accordion/index.html | 4 ++-- .../webdev/Components/Breadcrumb/index.html | 4 ++-- docs/docs/webdev/Components/Buttons/index.html | 4 ++-- docs/docs/webdev/Components/Callout/index.html | 4 ++-- docs/docs/webdev/Components/Cards/index.html | 4 ++-- docs/docs/webdev/Components/Comment/index.html | 4 ++-- docs/docs/webdev/Components/Confirm/index.html | 4 ++-- docs/docs/webdev/Components/Content/index.html | 4 ++-- docs/docs/webdev/Components/Divider/index.html | 4 ++-- .../Components/Forms/Checkbox/index.html | 4 ++-- .../Components/Forms/Dropdown/index.html | 4 ++-- .../webdev/Components/Forms/Radio/index.html | 4 ++-- .../Components/Forms/TextArea/index.html | 4 ++-- .../Components/Forms/TextInput/index.html | 4 ++-- .../docs/webdev/Components/Headings/index.html | 4 ++-- docs/docs/webdev/Components/Image/index.html | 4 ++-- .../Components/Inpage-Navigation/index.html | 4 ++-- docs/docs/webdev/Components/Item/index.html | 4 ++-- .../webdev/Components/Labeled-icons/index.html | 4 ++-- docs/docs/webdev/Components/Labels/index.html | 4 ++-- docs/docs/webdev/Components/Lists/index.html | 4 ++-- docs/docs/webdev/Components/Loader/index.html | 4 ++-- docs/docs/webdev/Components/Logo/index.html | 4 ++-- .../docs/webdev/Components/Messages/index.html | 4 ++-- docs/docs/webdev/Components/Modal/index.html | 4 ++-- .../webdev/Components/Pagination/index.html | 4 ++-- docs/docs/webdev/Components/Popup/index.html | 4 ++-- .../docs/webdev/Components/Progress/index.html | 4 ++-- .../webdev/Components/Quote/Quote/index.html | 4 ++-- .../Components/Quote/Testimonial/index.html | 4 ++-- .../Components/Search/Filters/index.html | 4 ++-- .../Components/Search/Searchbox/index.html | 4 ++-- .../Components/Search/Suggestions/index.html | 4 ++-- docs/docs/webdev/Components/Segment/index.html | 4 ++-- .../webdev/Components/Statistic/index.html | 4 ++-- docs/docs/webdev/Components/Tab/index.html | 4 ++-- docs/docs/webdev/Components/Table/index.html | 4 ++-- docs/docs/webdev/Components/Tags/index.html | 4 ++-- .../docs/webdev/Components/Timeline/index.html | 4 ++-- .../Components/Visuals/Charts/index.html | 4 ++-- .../Components/Visuals/Dashboard/index.html | 4 ++-- .../webdev/Components/Visuals/Maps/index.html | 4 ++-- docs/docs/webdev/Guidelines/colours/index.html | 4 ++-- .../webdev/Guidelines/iconography/index.html | 4 ++-- docs/docs/webdev/Guidelines/images/index.html | 4 ++-- docs/docs/webdev/Guidelines/intro/index.html | 4 ++-- docs/docs/webdev/Guidelines/spacing/index.html | 4 ++-- .../webdev/Guidelines/typography/index.html | 4 ++-- .../Resources/developer-guidelines/index.html | 4 ++-- .../Resources/theming-guidelines/index.html | 4 ++-- docs/docs/webdev/Templates/Grid/index.html | 4 ++-- .../webdev/Templates/PageHeader/index.html | 4 ++-- .../webdev/Templates/SiteFooter/index.html | 6 +++--- .../webdev/Templates/SiteHeader/index.html | 4 ++-- docs/docs/webdev/Utilities/intro/index.html | 4 ++-- docs/docs/whatsnew/index.html | 6 +++--- docs/index.html | 4 ++-- website/docs/2-whatsnew.md | 8 +++++++- 84 files changed, 166 insertions(+), 160 deletions(-) create mode 100644 docs/assets/images/footer-elements-5372482011916ad559b7b4a9f7c180d1.jpg delete mode 100644 docs/assets/images/footer-elements-d4cce6387532509cd95ab7a26b83fd8f.jpg rename docs/assets/js/{1a10606c.92eeae11.js => 1a10606c.216f709e.js} (99%) create mode 100644 docs/assets/js/41d5c757.0d9cade4.js delete mode 100644 docs/assets/js/41d5c757.8f7541fb.js rename docs/assets/js/{runtime~main.ee0bc8a7.js => runtime~main.4df05331.js} (72%) diff --git a/docs/404.html b/docs/404.html index d5df09f3eb..5101c27e85 100644 --- a/docs/404.html +++ b/docs/404.html @@ -5,13 +5,13 @@ Page Not Found | EEA Design System - +

Page Not Found

We could not find what you were looking for.

Please contact the owner of the site that linked you to the original URL and let them know their link is broken.

- + \ No newline at end of file diff --git a/docs/assets/images/footer-elements-5372482011916ad559b7b4a9f7c180d1.jpg b/docs/assets/images/footer-elements-5372482011916ad559b7b4a9f7c180d1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8ac74dc77b27be36d9ec32e711f9955606188c41 GIT binary patch literal 856229 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

q#fk<_k zuhD2e1{q_OS;5g1fZ%_9<12IN?$>qN6uMP!kkv!z$C8@(Opa6A!Tjqta(dVlGtwf* zcz3wF7vi)=_wD0(+*|;(E9*}1kI&jjkS_R&!&CpnnQ3vHB!3oU-7f2izxps~utwX=oa6Jfs2Z`fWU^s8 zukha{=+l5|?687p6XMltD&sGnx@#B;5cwoVRi$zc5qmiQX(!KljE#yuTC2%ea}fAdCGAd`uHZU6isiWYrC z5kJ#`nlQY#^5^Vb79bnT#dZGPv%Aa;rvC~3rCGo-=gpg}bZ|%?5Tv*9M}Gj?P#&R@ zUzn1sFst6!y#%I&wky|=f(xo;68FCZv_+f7er5>a&GPLj7ZX)D+@s9{M;+rlw@Qt3 z6uF9xK$&)R>5X_d_Zobp2eM;IP^KbskN=aI+E(A77{==6GwtVT6h8Bl*4d9G)O0$r zcYs9rg#PSt(4P`>C!=y{JU69OXD(ijX3)RfYX(tg_h7Vf0C8See7M=otDjof(be-q zX3YRx-d@sFl1b|GaIja8xW+G`qcSX3?wD>Dh_(y_%^o%s%LkE?h(_{HcUoK1s;Gb1 z!Q7U2?bBr__c-hYMQ_T|QZGvXW008Se&qYCY39$IzZoT%{Hd6S4jeL-A%XKJ$fY?r zWY+$fp)K+*yLs|7lgUI+mP^e8&$wM(#6F)geQ=a@x@^^){bBn#wuS4VPt()!K#c-4 zd&IM+SkGz#87W7Bfso)GTt!6zEpl>gKe8quT$o#V5u*-1^GY4cautcR_h?VE6|44{)$FKv8&qIz8@u?jrF4uYa2^hwACTVYPc-lvZ``OK=CD zGy;?p;&tyDc+Vdi6b1YdxYLG8BO6tB4^-2b%3pihnv+jfpJin?tS&G0MY~)b@kYk2 zEZR2EHNJi%rJa> zE{%qx@Lk$UisO+pFk4UXKu37uY;G=CgXRZ%8Qd6#87@a~RGU(2I*tZv#iPyJ2$jQ?B zAIW@5aA;2YDd^mt_g6ud`54&OB#|=qSajBnP3^;yCIJ%Ju=x=FcY1JtM3x=H5LUw$dfuBDH&x zPWbJ?OrLY%V-p2Mh$EiY&C@!z|L6*1?|&?D*uv7W*h~sTo|KFfNK-`oIrrV9AGBa( zkn7l;`H5>>`_XwDF{i_oqea{84utzB^QeGj`80d9|Ij83$?{4N&)W7EHCMZMUU&Yv z!Z!_P(7hfX<^yc+?S}NIllASXts8RA84^;Yzv$3E!`BKIVSy`dHKW|_ncmC+J?Gq# zw2Q#Gkc^8@oZkd@C0Ro3L(#7B@8>0{#1RlOVJD#`q4rSWq0Rb$&zL%pV!W5~=iYq+ zU@UFinBDp^y9M;X<$cK0=@{msw}EzVerCS?><_AOWy&aH0Vs0+4qVg6szJg>GtYt5 z$B8gRXZsNWSjC0;0B^FH$vnTmvkyNGW*gjI$<02wk>Ln?d%^}pu!EPygEiYvYJ!!Ki18k62*&b*d^cQIv2 zF&Xrgx%2mb&%GFC?4H|FH<(q|g;a&Jc$jZx`}sw>#;VK-oI7(lf>ks=zxzh6CZGEa z$GHfGOE<{$6IVH<%i6IFZPU-%lvnRBpZWv2d6AXDB&O{Ia~ymtU(N69s{v)YAkh86 zR<9m81f1@IiW~SF%@-s%rN*if3^?=U7p9(*{*R>d4ri->|G1}12dYc$4%DVLwYtzq zQJchQYepJs#imbp&5BjKwPL3=5=3aL_7yh%C6_;3E^>0t`JDT6 z-|zS9{ZsTW*ZmZF%TXYVC`c^N-~rWiFhwoUh@O+ zoyO(Sz`tCJoe#npOh68hJU#(KF^3>@GYN>##qTFJ@@2_pw`Fn%dgIItPH&Vc`;G}R z*G)IEpYIwBkyIv~m?#@97M8y_fTgpRFUoDh80(`-@$?# zB9(goavlHWz)5ugkw$Fu)`5XUTKmm6n~6VkMl&CdD(^_l~#5VW_0lZeM_E? z`+lS=SoDGP18u!GT?34jtPfzW7=W2o{*|ALg z&X{~RpAQ26Wl8r0S?VoWcpqi-nTLseM;OqLocSInUR7zTU{(YU2zuG%fJsN7)w5%x zbg~gaW_a?}MAYUGcDm@((UUbvWPj5W`(;M*fl_c;Gxmfl>R_$-7@>dy$7+(u9*nmf zLmZ?seb^`3D1kF#iXt;JKC{laf(7!gm44OC6{DgYFYnqF9`=d5@cMO*hnHtT6?tFF zuAbU7LHF>eO!Ss*H&rTXOdqL(5=Pxiirr^N=9(;Npq}A37iSF5)BdDyQhk*@nsLPR zUyt9TzL-Tt_)D!+#hkzS*)k&H$|>C>ER_r;JNX1yloG~%WE?N8s-zF@$sIUj3CksK z^urS?>=C7C-vKLMYm_T3!%71I$2MohP@;5LPrd?1Vu!zB3uY{8-Z+j`&w5`T-*fd< zsC%oBW6N%mNPW4__{Hc8xGdQ#q0J>6BzWl?m0l1yVNfNn zu~M(=1MfADZGMc_Tq?J-d!FQYJE>g;SL9*f-7nidVx|s|JrEYtVpbvuFZ;1(6aQde zvec_rAE3MjQVnj`GTjQ}-o`^bQp0N;>cXR{U%+633O0B7xhrH!Ml2U;s|YA|g&LMW z{djiKB0VtIM3UK|vh^5K>2?a^9~eNE%dtnhw0$EJLqp8hit{o`V9#Me;CsQjpmAO! z#miBF_iJ_)b63#1Fcr8aoqRfmuj1r4A6!$UEbM%*AYMhIZ)%p>SO>w>P{|MqSR0Sm zj}W%Zs7VO@u7XEj(1FQITb-#%rC-gOpJxmQ8bP-c`8Jswlt#NJ(=UR%&~MB}3v;Cs61tMi>u4}b* zZfUYIjouzCgf1jdF4vHPMfR=lW7WEORDrkBCDGUjqn)Tu_IS0rq9oPAZ(1GsQ(#{A zHocj@0@XKZWid?1@TIuUt*cq3qK}rFTiW3X*(4gGXJDsj)Nk0=4LUiv`Kw&7U$hLV zL<_d@guhVEeLM3WP=h@A;&|BTd1Si^N(c|3D`&(=T!{9K9>Is}hm0IVX<`>})%R<= z{q&1Yz>E4tdeM$|NAxr!KAfuXL^<{9_o0&j3|BCy)IJ@zTkm|>^*t|tsle8IJ z!hCRo%Dn0Hb;@INt*)DQxs`6t$5G0+DLWgJrhMkZ_AGY{I%KwGdh6#B;-(gO)aG}(^tpTfr}+TOw}RtZ&SDW9K>@uW<>!FR0F;s5veYs#NDWD{ zzVx!*`4CNnitLEG#%7;W%7v9(Au6X+Gwl>jfBNvkPJ;9b92Bl4PktZY3VBND4Tkv% zY*C^Fg}P)>*`GTnqsMWp1Bb}#)Hm!ewjb$8Cc{#Y6Ug^>}phrl{G z)K);w-fMmHh=q$OZABpEo>l|ZQ#j!jmylnz+sYy2w}=^g>(@5#Y*VM6^9mf~VOHrJsh%jw@f{N?WZSsgwOaywEAOIT zt&^JE9a%ijN6ja*NlQ(04X!ET(Wz!cQ}=6zOTT#hGnGOLGJ=_YhP8AIJ?08vca6HF zwcoT)jw|^cNopCYCoErQ#Dc?$pWi(486+9NW&14jXT>WIDJNfUVD>fjBGD(s0-y-R zONnS!l@l2e!kNN0V&@m_lM~QEWl9;oyDttk80~s289fcr#?~T_nzawXHCh3iNO$X$ z@?f`*Mpsi{@Az+vZpT1S)bM%+J|$(_e-g<$Fb_{mGgds6&juOJ9B}_kJOnua#%Irh zXy@dDUxCg@zFMx<>naj_9#)VvNK`CIEfeStscb8uoS-~@cg-lkazfk#mk$nFp!aA+ zZ4li|Ra}Vh3SD$9+~L|mPnyw@Jd)3jvnZ<;4}9sx_x1hw;`tb?dlm#V52S%tO249} zPS#lKpNOqt+6C6BQNI z5R0m;F@rLUn!`ZR)pF~U_=2<>@ARd4!@>&XJD%3ern=`i7Y0pM2LBEvf=G&wKaVAJ zzE&zQOWzU>xYuR#ma|4E^?^+2&ZTR(0{CDh@NcHx*e zLMTBE#L2blJws$?Ra2Argdf87_I8wZo}L@*Re&v3#R5w zoRCa$6>8R(Z4uV3i;ut#8@L|nRkw0tdcyx)eK(hd5WlBqf$%H^3ygXaBeQoU@4Byp zy+^K=s!7(Ag-+>kNG4Irp<2u+adHG{Pg(W5CdPc-4$*|Lw*=haXxR52l5aLRh*stS zg)l!>ZeMr(+p+wo5Ay4LHG;AT zq=_{zAk@f}3W zBW-WtX|h@MZ|sKWYfG%`a*20t)r#A5ri9mP6|=>i7>bHYuWrP?-XCR!l5@f@{)W+8nthP>jZ(5o^a^XV0-G)i2%_l7dDw z%;8|CIw-FsH+@*fDPsnM>l+s!swLBNLNaEu#OyfJrxB)#3(Iv?5vELhl^V+NjOiz` zU~Ze(TGE~Pe@GH}&#c!~#;#?|?W+fE-Vj^Pv4r1v`M6yoqmNisy?S-Tmm@T_&mdo3 zFTpkm2%u!vSE|(Xh-qIwKML?__>v)24%vd~NU@smOFMx1I^l$oT*{VJ$V(3?b89%X zqM;Y19A;v-|1*O0bSY^6^4{IBss8QMCk-onfPF2*uQ|*v9oaNbD8h}FPTQ0XWYm9{rSq8) zVWm_wMe*#)xTd$#6fVHrhvd}jK(KbDSviaMOV%OXt#h8Pr#5;lp~Hherh1)_r;d~v z7sAXn1JODI;4Hmi2*||5YG|XoI;N&7p~cs2*Cm0sh~#D3a-#^QpIBJbR*Ku4k0;*R zbZ@Q?-MdxPeZ%Qi>EaC#5wiHh3W;C!3aYMZLT-7C4^q>xR)kEem!gE6u&B9ykWuf% zAQ>*4I!doE4(=%ysIW$W%!`#wWCDb%--V%z#zSP-iY>cTO^(|m-sSkNsxTg_XtoxL zdeUY4X|GhXcUHov8WlQuD^SB2G{LM+K*IexSn#FF$^e@}ZI`q5bIoNv10yd$-O}Yv zBS^C%LZKB3)^cxF^wOF%CEg2%Bfx;(-1yFte?v-}C_D4WgIUCA)u!8Zu zMGFrAvUg*%yIb<;l~WmLSJna71#b%9^_zo7#QA`1*RS6?FXvmvx|{L>@LAT{g?C*X zE^%YSm!kfxy@e|Uj)VOo|GYxUU}qW zS2%IC{d!$P^Xut|(v>WsmacK67VG>gi3E1pX}HiWY>E@kdCOv;A2Gfx_EYpu@0xZb z1TCCWY^9N=<6V3-R6V!2XEqy^AwM_!3al%?6zTV;F=Q>fqp%$Z(J1*>6rz!y;DLrt z)~_4EU>b7+Ec`sSMl0jm%Fe19os@g2b3TW_xJJfS_ZlHlHO{Wk zjGXy^{$lf5gYc9 zsBu!$Fd`6o>mmU1AK#?I5S6tzK@J|TA3RbqyF4x9p6BrR-024PkHwx{URem`FIUz! zU%Y3zl0&0!4${mJ*}q{{hZ&wI$;B+T3P*DTBd(+Mr%zA#G|@6Elv+#rON|ttrK@>v zj=Y_(OOrf0$JKjjVr9$?jG;f4xvLysYM&5%tzf2S83U#7;LJ{gb-LwdIWo7ae1fA0 zTIy3-v;Htsr5yrEp|Y`l*fCF8$Ryd#sYtJ`RSzVYY^>L95N2x9>T`xiXS+yNSfN&H zRqLQ7B4}?=pl6e;k2EW;7{hCo#8uSP`q^a)b`hgGy;LvB-j%DIh%`<^x^wZiufOv9UArBiTFCdQ>1FxxkF4n++0mDR1yF!CsANTVe(==r)VU2!* z0^*w02PEWvPZYhC2s_oTNc2k_#+m4C_UueV(lHiV+rdkQo+#_I$^$`{0hp^j!seV^ zKvO`-1F}`pooPdU*p2b*Uw;%fwCkuA=5;8#?Wn|iH|vxq;L~ZoZ{PXxxImjN|9NX? z=?CanOJVUI7v+1Ht-;8@Tv`kg68^5rlyKwBtE1+{+6`l+`D>c>1t?3?fnkX8-j^Da zOGCeJ@WgQNA&a35QqIH=;Kq(|Eo@x=Hh6z)$#7@;(k&AXz@3Pi)lOHsq&C=gVSRqu zY5N63nxU96$xY(}4TQMQC(;#LTz}t&)6!D@M_t0ovQ$9-vOJRq_iWQ93@@(1Nva{j|@2H0xH( zmB9D9ZW1Y-hBqVfW`3r`4*|^Sz3WR;UY`bibKG*)=+C&LBOZVg{wY2QglA)rcbvLV8G3oO4(laRIl~AJe6ko{^W~Sf=7Y|xCWgP zw}qttJCkL+;Tx3d{QSjx9`4_tgZbPQF4RnDJ6+e4dw89}@Zy$_jRDShv}7HLRZC(_ z_~Iwce!cCfHa5TcRWFcTAv4Rq_m%N)>~Wu649mj2F!j~;CaT=za_+|suC=u8r5`+e zS|KNJPy}n=b%!mDedqD?RBC)~jV{90s3TyY??O0#5$A~v@5mb<(LDCL*`|dtwXy~1 zhva4GOaDr&n!@mgZkdfXyZY^;3mi}6Ixi>eH(#vcQ&{o(tn#_}HTkwf0_u!(#&w+M z8(2?G*^Ph)ku}JcGS{Y73%0&Oc?tKa4Mi(j`f_6&*^R!Oa_}^ z7=NJiV%qhGAwLl3mIsY zl~J{~^J|I)^~YAL#;bR?#(Z{`XmgB)xvY7I91k5+%Ti{CVu$+tD6G_UbR?k+n=dI* z^q83Xm@dcWe|zu8%d_{mecoTUKeCiY5uAkjsPPt_4DlZdb*gBc%3@BmtZbTX8zicf z>PB{LKMur3@}RgKUWgwHKi74j@GP?Rs*?san5n42LJuNdvMJIZ8bp%}_^)$m&+R;G zd)3|LaX8@mgADF!TJ%PQvVLoIJW9J*d!O=oO5j~&yIgz5l_AwH)c4mr6^gw6eQ`VN z5*(vwORyc^4NI=6!3vq?X-jZ(uOxq+T6=!u#po~~TxiUWgJ|rB@a4Xp^};>b;V@IS zV+}E^jVm9yOT`KAR+rR(M@|mmg!j<7x; zf4kd*LpyFmF$UaE)<=^_jleoQmAfY>iCe;xSAtXF>D17JkW+Sz?IsF!qrYqdD| zJUD+9@}FvC)af8{jg`aJX0)OW2(XQV)(X^6;{kykn3&tZq^x~>{l@)8exyGt<}}G* z@_~giXa73)C+$w{EyD~8%%e`d2jI6YdCeRq@e;%EcIf{kg|`)S4H?YDTQjX_F@4#; zTu{^yfz559P_Ev{}sKjJcL^$B&z6wz!Q|rIHFMmVB1Cams zr|%~xH51rs@m4;+gtVQDa>wcq2%eY4hL(k&+Yb*m3j{X-`M5mGqGMXJ$0zTc>#;z=l3-!dYLxg2DGWP32{FqD9w; zOgb0Pp4$fkYG`2Bw`haO{I+-`H_>30(`kBQ?xMt+e&f{U>fog}ErGWLfRBtBmlvb- zp+oI+$mU+VA7^lD__e$m*mFfCM)dn8|Cwy&nv3%Q{ELdBtNgT>{uEI(-qKu8Nd8qDBKOUZ9x;k zAzY~Ry>mY-1GXL(F{F#!F0Ka8SthCZ8Nm@=qfJ3=r~4y<;XeOZ4ZX9QUu)Uq2n^-i z(TjNcur<9KccVhJdebOkDWB@`XQg?pcT=yLBW-?ir!zaRaHUbg*U^~VQCa4*98^6L zhD9#&Xj(b7+&t%+?$9mL;$Dk$KW>|KS)u_?c(>Qw9O1!!KgPkKw_Dk_`b~v9Qc8&~ z94MRax*c*1Malq;mgg%~&|t#3?LTTt!?=vG#L4!vMf@u_qCWG^8r58Q*kIKwydpZq zbMk7&G-vxWMyCe^c(^Y1o-e#K)#lO zQZzxAC;l&&+$~_?%0NfADmU-^n|Ls>+W9M+VP>wHFsozJ<%$op&pi5>rbjt>CMpe&BekPbI+Jv_}we5Tb32SB;MU2@yzMR#X( zx(EN{?eB&U@%`ljq*8v^tP@NMW@hl?a=z=GB-5k&F?P(DE^f>yM?7=Gu!^e{lXXDQ zO#%D)AG#wsWX2Psl8K<*%TsT7=Uk}zb?K8wQlE+08tUKC>JVA3rU;Fa1B+V4?@ujL zKgo3X`|@^}s>S*$JwQOfnHr%BMfd`x6Vig6(`pp`Mm=}`CE4Uw;DHZGf%XjFul@ug z|K*Z6jJ;L=MKt#KBH`YI(QnTaH6_w0)HK)VaNCK zL+;(T=C>}-3hs&)9!nU!Q`glhuXGb89Yl!(Rqt0ti6l;9#@yAZ17h=9AH7hf>)aJAYC7&KXr1N#V zHcfAXYx&5gRdm{H3=~+etoI@RD~?neCBDo^cl`>=euou%;p=2K#Kp!dn191Jka;Pf&n(Ut-oe@ zb3eV~;yFz6a|&W`q5QjrBzgAgy8ruUQ~xe<9|_XdbHnK{a`L11+kwSoKjc3-&*TkY zht-*^1yLeZ^UTropTkGm^8rj^#a2g)j8jCezQ3{dXYpl)5YTo z783SV<>k*`OokejPo9v*)upqq?H+BP^*@&R@Of~eR1NWCmhSHEvW44Q7n)=p(cN?O zlliJy6W%ui6H)^PVxoZ}ZDYq-dXEP+=PcabC z04}!}bPSU(JY_hG)K}@+Sf;0tvVe~XIF`xwg5|1&_K~{Sv${bZj(*bq7wQxy9wx~C znv)T}i+knKm}c4h*2Cj+!XDkDmGkFRGQJ*Xw*h9*qb^Vu5}@7+8GYV*__Pq>K8x5vvu8dpBjyhap%1gcw6HrUWTx)F^Y!DmxFj-^>mgqvW}wjd4i zy1s3}F=dYwuHqZ>_F7Vky8W;2*Q|CY8aLxJ2Qx1u=A+3LHDapNDs`5cKkraOQ?^kS zOdu`-R)L#prsu7~C5M(}Bei^8W}!4YYRhnJ%*i_I5d2dFDc=e^Qc1e=dy|#D`z{$k zhSB{aD6dl01t1Wa^`kkeue?jFn^tB#z8jb5dYZsnys%gcG?Jb_)iN#R-8n%VYmJ3h zw8ZK^$#=on)EQYnGIzyD+W_oDFg!4e9y<7TjkE-2l*UZeu=}}_xym7+n`Sa4HQ%)w z-X0b7ITIW1TH$9$BX0p}yG-+9NR2%#>O*O@!?zd(#P4tLf?=dAl}V)2pmnYbkf850 zqG=XK$qn8hG2xp+`FT4dgxDQr!0P?<2oWquXwH4-surw1(rS-qb9{R(biLoEie};P zV&|2E$n`0f_9^q>EjA=IkD}2hdaA$FgW*)zp?93jS&ul2R5g`1pw|NrO1yuXi1qK` zGLTyaPUAzj$JOqWUf0l#hC|jvnB(JSAx$ID1ZnRGB1@NfNk(#nun~Z_u*r}QX?B6K z2G6#uXD>tBYF(MXYtF}hABP21`3}%VXqxvF_Dc7%Lt@9G2R_~~mW*?|FrvSW^23iS zlh%*rsp%-%z}cg_Cp77P>z~WM(KGi{ z%!RKJb@$@A@?X5v;j9&-!vlGD z)~!Lx>+}PmFh!nOirujC97t-yrI!{%OQR!u9QWSbi5E>Y_`txbbVOLId5;LYe0s)) z5b6+h3b-n|H*C6F?AmhC648JDEhtMPQAbKUwwW^Z{-l*dXHzK5P!+9HC# zi8610e7UZKJia(W{gh7#*OoIjO~no9cf=U|LDV;dcVR19j+GkH28c=cD`aUHu`>@1}n<+R*` zt==skF#0GQzg^a5k$S;?VPi?#35G;R`k}+x14SlaAz4NKrAPDvJE!FFn zlZ`r1IqALWDyU(&bW~clS;rPf`Rz{qNmRhHrG3h`NSk~V! zwTBt!PuZP>?$R-+IF|9Y`-lRzR*ZeizqI{E1((V>P=tPs>aR?m^c1D(JB6jkPiOCD zY)kJ)c5TI=49dDS(BST3xbQ<{ODqqH=yrz}3 zSgg7x67=5rWHYt*iF^9J;nc)kfqdCJd|!NHsa6Lgn=}tZd$dR08%rGdCQsF7VaMG# z@yWBRwcF|da`x;m@f6q14fp&5(~>HZ2_{*iD!te%_-KDQg=PWQvo5mBK;o73#UjzW>WRnjD5GD2I@HAPYd()CxjTLp0di^gH~?RXtqf#&(v*%4-ar<4xquXnne zp_Z%Mn~A#f7JV{azzBw#Z$@spU>7&+_F@j3BCO}iJd|lBR02jAVeTIuh3@w9svYSr z=uFfQQ?^+%$CNHKX;lAPLbV(((=%p8eQx!ml~-gT-=}4 zc^Syx1nU3Ho|%1b$LHi}R_Jr-l*iA1-P{iB8u0J#c3-ERQ*Ic|MW9oX+ zmrmkL=54DAoi9=*;c|9b~dX%_A8K`S;6^meVNFIx@W ztGH4(s_2X8D@O^&6}-=}Nv{~#)tJw!bt#(+TC^#mpyiz*pkf(weF<%lwoL+OF2_S) z1ldTu@VhlOaMRy!YLNe4NL&~?<$#}RYF2sQj&$)Dc<|KZz`}FM)_lvMyoh(g&Ue}% zk!L!sS38?$=GHLjBjBD997q$^d*@93=P_KZ-y#t?0ixMRQY%XsrYkE!4^cW5`??Ol zX&=BmJ>)szgnop)=a(zP) zoYgh~F-2lp&$c#h!_oz(>==aX}8C2|sic-gM3LeU0huq}qwa zrr_L;tmNNkZ4sUvo0?9Ebe(LAUDSH*i|q!2AKNJK7kY&~Ei1qKc^>^1U7clIBq4`f z_{$ZcxHPeNqiQpM+K`Xga&9!HW)BqevFpn3S+XyFHs(>go+YK9Yw;p2Lje_~*@kZ~_D#Org)$Af zp`B*oX20E*;NX=q`LP@~^bMzVNTAfU%pR9TuhGP_q=h|;FM3Lb^ z4|QH2y$iLdGk+hI^MNta#-k`nLb1nM?dx|Z!qw6P;t;Jgusa=poN~ADXjK}4=9yL( zv|@FmeisY}P?37*#0UpF?U50h1Nj;+Z>o2C@`}o*_mU@TuU~u6_anmtlb070J#TK^ z?0j&s|AKo#7IxSLC&;th`kEXi7qKp>YUZclPhD8+F3p_56O{{a zSyXXv<*E9{TnYGgNf4Y_EHBSuAP`k~>9uCt&Ou9X9UU9XEvQpyUh}u181&*ycb0k6ffU3nS{QsYX(RD= ziH-jLBG)i{X}q~rW4YM;Qs#k8K@WTQTu&`(UX>O1UXjPj3G(3t{>uv|toJ2rtcJ>R ze}tCg4tkshSz0Zei{Ps#+S+Oe_MCb7%d1FJ>30#U-&jX!rrViM?l^ONw*t3$If#_FVR z-2Nf<@jU5>h!53@*Ye1YY1#yPyb{W8FAKIuWY?+}$CjNkhS?Wymf6n3DzwRJK$>(h zsZp|$j7o*Z&0TX36Pq@UmG<%;o&-x;t{}?UFJGGW925HC|3+^qNy;b(WxCQ`L>=*6 z_5*NCbyR0qe}nt0>Qz2jaq3wZ^uB zaLR4*grab2`Sv36(O82Nx!mKA8l66!EVoKCx>k4%vqC_GvL}?@q3N!-GGjlm__6$kA z%OAT)f3wZiNgK3CJ#-_5B=M2UO-EYs>ydMH|A|7EPA&)4Ug)ySP~10z1)j&l43#MKnW#@68R4-# zI75k9!U_hl?3)z=o{N5iboxwpeDQ2^cKE;3&&v2 zW|O~V-8sdH`$fo?d%hW)uPm)kE0gN3Pi+jEulbXcqy^vq*>~9U!l5^lk*|#2-WBoQ zetE=*;f6HHOjee5Zw9E6z-v$gKzDie!ec_<2tr-Ueu#XWV{y;jmXI_pl(VtKq1*GC zFg}U9k3>hpP^#q})k{B*l*MFN8+uY|>}%%;mGy-BaLFYqr9N%*A5l3VCHSJ^)tc{B zdaX)xM~$t17B`_apWgBy!dz2)&r+b%U*l_P|aEh~si zKe%8_Gp8a@GW~2NQ70jK@FdjOO8cu9>=u8)+nI+Csq13Zn zd@IwxfQqew;%e-mE}Qsy1Qi!u()Pm+#R~Tc1@cxS+Q!E>?J_iFLxM z(kbpgdOV=mtWjFrQ66LrQqQv6f-p3?mLysU4I^$S#j9-g+{TBw)b6XW?~jL#WMfqN z%03iC4vd&cs#d*NcQK3t}+miLTLM|5TtQLBiV~0<*cd1+)?_ zWg>XyEibJWfF3opE-uB#i<6JoYVolYiJhKbs(R>%X52cM6LrI9gP5*zAQ`m@fTTCK z(nitaEZ6u;=$AvwyrK};76^>;*Sl3{m`#W;^FiAKykfeqLHde0-qYbd-F=Yzh4n|g897*dEnZkdA}Xjp4w}n%0{=6G8H3x-`}f|gY+x) zBIeTXh%>MuC#x>o_BKl&_e{L%@RFz0-IgcZ4-n1+F4VM$ z6j~J8o9QMWrhjC;VCBbr4d)}=JTC;O3|gy9d^<1m1btgDkKqYt#7Bqjl4VIfNvPYuX+Rhpzr*8r}SaHwZXu| z*_=Z+r9}2R?@fb**iY}BL?@Ibl)vP8C?{9S<(7E*{23|a!C$Vsb>P|7D_>I$9x=RK z6*iUY`2Can+~y^Yh8#J|qj_8&YCq@aI!@t$CN!$Q#N%{?wiwcSJL{|4XT8Xs|hvcjcn%y38wRb1;<>p$0%;-=ER2Lp4mbTfl zMe#T4LyP=02>e&|9X9t{w}n=ybp!8@M<3i(B;<|WAvh!wjTMb|UPWw%C_q!B`;{kV zUYV%gdv#Gx`?w-;Fpb^YaQUIum24mWuRt@ndM5^Q$UdB140o>Z!A396``Jc>m|K*s zbauAzSUe91H84DRVeNbd{||C0uFfGoWl_ui=^`RjQfqz|%3S{`V$9P5DG+(5m|NiD z=Vi?jC+4k~x97@G42UsCSf_m!FTk`NLa6y;0-vFP0T|FVD?J>)+}qM*>s zT1WIp|3u@{E)oCc{698*;Tos|q^);oq7&fX{N=jT_UtSvqBT?Rfti29-RxMd&i5aA zW-7#Q1aV92EO`^^{~OU;$_1qNY+fDYaueN&`cEh?AtYU_rrGiHz7^o%;dYMuo9y>O=CzL#-jX*yu9Wu*7hY#%p&Z}qt1Mn zpIb91lZCLEyk_FH?=L!;2Z!~WI4n|$%#}|QfGHn}!#Vv9TTr7t2gvNKhNm%YXct4C zXNIC1qC}}r6M7+kxum}^i3T&(DkhwLRpIkNtj@+kG--Vw7UNP>C#JHOq`h&ecO-ui zeEWICj2O3XE2Gum4>vbw-v|75Y5m|5a5avr2Hp}aY}}beGV%<6T)O`+UH#lc=_FT- z(4}5t>wN%#^!8WEvtxnZr_O>{&vaNrGl`8$vcT|+c{a>fE%l^o^!ACI;KPAj(a#v$ z|4B?%q`AicK?^lz=)tonrlrMwU*(k(DuqB?{fp#5p>|bKJ<{}FE=kg~?p6%#$y$z# zn8p1S$_=xU3RO`ShJNm8ai}!CDwkL6;3D4D-lZk<`8WI+ByL4*7+(8qc zsvGQ|^Zdt;9_C3zD>v*f{kEvqm%(usWy7R~m-4HbgdOheD^vL8jme)9Lwv`y1qC}l z7p`BS2A-;{|zL()8^ty z8I6Bo!fCoF9}XvA{p`1>8_r0MUHcb_bNxqi+~A1Z%wnnE#t(6c&{t9?JYbJvuYPDd z#B69CB<^kODY@3-+GVUEx@I){D4oY>sgklDm4v2646=7=Ro=14@5X@D9m!u~S2erV z^(x@7%b9bDR|18v(jMPZ`SIxcg^Z|8woAC8OEv`>T>?m*mEBXaa*O74i^cEG&we@~ z+i0xEl(GgIctv&%qe|D-AHUJWR`!{twXXb9d9%)M{zc(2bLRW&yk9PEUqDYw%M(>Kp0s_Czl&Hkl z>TW^9foEq_dedgh{);*N%rKn}!L@E_-P0^m!xX>zIvu#pQ|K}M!J3I56C*?uBMv9m z@thf0;%nrN<=)xZAaB|2A!2S(9IfNUXm5~Q+T3#ks%;H|Ka2L~x&&b1+w{A8_?Ddt zq}y?wZ%$r$x4O9U7@|8lyZ$5p!fT17-(!^4SuG-o^^G~oVCA>5?pv%y$7JuWaOY89 z>jsI=y6LyP$nku?1uP|h#5B*laWfM;F*o(K2VyQ2t3=0OIO`h990Jr9JF>(P*^TQp z6CSG!YVb^nL~15T+<){c^om|vGG4(_BFVtXvcNR{@$3kwn`Raq5pB%*V!Ouw$-Ewt zCj09n^Fcgy#xy%}K*hN+-}yL(9Rs!%{)uH zBGKiMVEN$qWaYb4QG+@V_t}CuK^iDhtNy@mXOi{Z`V;hw$?4e2g$KFb9l@ibR2dws z{&)#p-3n|1li8Rz)3f*Z#H3vrQ)t#I>#bZ!-}(oDwRqoGoot^o?sF897|c)u9Zz#h z@N)RU6op?lx;#6TLsDoe+Hf6NCqC>P`99oXU;Mm!P20O)PNVpukWCzroCxzNnha~S z*Jwl~j5q-*+u!=1ff|=29nZrc=?NDm?d?K$wi5w2c+g+2nZI0nw*O$f0O3a_+iRVX zXdHfElBi<P-ah#OKRm)%Hu@%tvkWIB7J zkhpWubk2_jd{5HW_GP>lf0IH?B$$YQ?BHKHTnLatbvtPbtjYbe;s?P7-9_uF45D6}wp@!PFNM2yjaUw0&#&%9<> zKLaR(nrVcTanf@1a5eSL!xr=0lDqTs?r(e?nB(QPN`56;T4(l4g5oRT8gmnkje&li zxKl01$8?Rf@O#iD6lH~I|H!ewlqp!{TxaR*veRlGQqX#f+)?Exr}#R9|M`H-$cbwr zFL7l&uN?~K+*BqyWwj1T2zQ5tvwiI8Et*(zXbKj;$|SCCFBhz5*4NplRqnP>)$PaW zu-%dI9_`Q2!4R3}%zA^EjQW67Dr9+Jv)PI`8d8)nUsDwrdiH z6*Bv(S8#RJpu7H3HuWzT1?y}L2NI%I0J)jKPR3h|uQ*xW5?=B(?!1e;Kx~(p~>! zw;I0bfR^zQ1oiDra0M~oyfnm=KMsL6mfN()RuMAnWeqi#5<9IA28l0sl+uEB;st*5 zDqD@IGpp=GK1hUl2-uMcBO+qw?%|tY80pYieB-#U)CcEp9_Q}3iOLfoIGfz9RX|9s z8)OM}A%)14(o{k~0X>#*8_Y_XA(G#hjl^gBGL?g7%{XaUdZ(`Ozp=*+zx40h9WL-_ zUOPH@&e=eOHxLd3#xOzrf_g8cGsPzGhWqkoH1XoS%&SY|KsRf{F(m0IIdJu zx{zFQE7#m}C%05CBSax{%bhfGzgsDiYlg`^_q&BL%&1)FT83dpVQw>okzwE8r=LGy z_Son1c%Sn==kwr<;+bEGngw8=nE zY+CddR!Gf3r}H0MMrw_%NQuBKq&Z5VJYRC_k;sqJ30c(Z9nB3y*$D(TlD1LO>Ydg; z-y=0D<|MXy10!BTzJbvI;!T0m;;nT z*|%3?ntML`9*X<%p<9of9=_?4ixo}+2pQFxiKR`&cdn&pEPK@aZfl9oS;Oo*;B_bH z&3deFJLQAS8vUBaHrfeIFmmlinpf4;(THJy=?vH6e``1qQ6k>}_RLfXDwxK@(`-!& zy#txOWhlbw;&9rEarPkggN5`)?ehLlvLqre54U4!id8(Z+iBGbIYN$$9_h&#!9kc( zN#xv)uW!RoUH^}xWowjH=`^br+p7mrFTpP|)I`+{@_DL~F33 zjT9GoURbMi_#2Pq*c)<7(QPPrk|ax6w8Fd*zUb`8GpjLqp!}mtyeXQe_g%Z_550vn zLdF`gH1H=i5=WjnV6S|zkfFO}Palyn%90J0jlH`%W`b3Bc%V2J0wyFxN}7#Fd}oH3 zP$1w-btKCxU((nM7j7d~zWYj?yC)=lO&vrv`suJs=qw+?9*H1DWd9(u@#QipCgi}G zgO4E%o4i1V%k&z}D=EjlG3NKDLtCk|o--fU4&+lONMBsdha3$)DEgJ7eFkaxO_w&9 z1B)|X%|dpt-Nv{L^+S4K?PE5lcG!5c(MgOmuDcGJ?C1nv@C+3i$_#jWM7$SK-E0$XGz7Os}QX}0b%WhbyNRaSicDP643>uB^d_20t zr!BWeC<|T0WrzL$x^nRGr_5SZTt~)l?_?x;XJx(=OZhiAR>c1{YdQGzKd_8r`u$;~kK;G1^iW6e%+7dX~YJi%v3?bGeO}1UT^6pZ-D9=u3$7j zJTV!gp3O1~+=^&BocZrxhb%eoh;jF-(#)2PV;J%m3s(o{#ggy!0(n%=pxZzSVFKWn zd$VDncC61A$_SvdQbm)1SrwftQ=p|@WN25P<;m=zRM5KR`6akD8^e8)qrSTH8Hv-^ z7%ynI-Nu#AiQ84%A)AQ=tXL6YTTngpn;Ol}KleWd4$as|b>0hZ5J1`Z>$W8Q=eqip z&qDbafP=^Y0K{w&#qJ$kf&Vdd=-U^JFS2j_YbTZn%P-bL-cVk?K4T5O4|^Tuif(ae zw(DJ2ewRJt1+Pz6UOUw^(?_}hYeIJbINJH3%){gohzEeFvzj|ua~P3s>D-RlJ)F#T z{V_8Hnd=P}=DrcmEys1+HkCIlfEK{oaXR&yUJ3H0XDx5$uq>d^IJabMe+QnUirEU$ z)G}m?1_z*wcy1`CmN*dF!(v;#ie5Zvyre?;Gkj7YHc%@-5J5Jyhby&3PX4i-J;|Ot z{d0CyVupD+-Ub$?i$pckgD?p1O1r(;3iEQs@pZl2`ER3vOiiu1&N3F#=6Wp!=Ym0ojrw61Pmv3NLKq*(QMLS=sVdM+J=VAQ%#z z+PPuX zv{e)wl{ZhuRUC>a@mqwJ6}q+~N;Dm&cMdoSDM67De7)|0DsYkN)Ri4n%1o%RyesF;~AF#gk}?WZhQUmm-}j6@&8MJJK9ma4_? zjADp5U)Xw6XF5FIs9dj25prQfZXdwln*|?;6qn8I6l=N~+EK#%Ji`r)g_AB8FeT}6 zD>v9CRMomClgOj4qDkZVykCb=*el)m|_E;~efMjX~O!q7=%-`db$RIr5V( zB{2K&xx|vq7_M75Hx=S^c#8DQJ|IkF+$}u{ZNj0da~3)C-U-M5G4!tlMI)8c#-7Y! z_ugBqNY4aWCLK0J>L2nKl5mG~iSPNrsWPnI`;Byu)#EyRWf1}_x3scSj@VomQT6gVYG|`+ zn6O@L;>FM17%w^!qeV`xXT{^ zguQwH(0PLErFGeXN1u&Y{qtl$sM070>mB5eRuG^ACCzw? z2z0l=kBFkW;^bU?1d}C$g0*+)JrW@XHp!D9T z%vR|gY)$3y2gOLUxiKTY`wF+lsE{i6MqM_Z1pTbzMu;!_zE{ZhT4r!#gC`zdFIHE* z044_79Uo6NPe|hwV}23UB*!XdZQT$X>w(b|EyU?wLo@Rixn&e)T{m!%^$RPGkL`C_ z=OK|L>$tc*qTv~+TycWAPh%gKU-ZIAIHJC(T3CVLfDQNpo2yhoxS>pO+d&vwwQaAQ zSx#c8<)6H}$>YoLW(!3yAzQ{ax6M#txoKw$nG?sW*{))GCgy(04};90G5Pl#DBpDB zMu`TbpF~`plS}rUnEcz>83*%&b!eajLah>42kur3W*iu+&f8l{D>V;G8XnjnD^911 z%EOG1DT{)qyZt9DmUto`fzZXRJp7&bCt~dF^Q6E3ysv++G!pR}Ya^@th&7mCnqgY%2GL6`o9bcl4D!Bfe0H zvTaNVR~2sg)Wfz6Vlk-edFuOvl=b+W`voi#UMsRpp*!H691TmY{c!KfB~=Em4{bDs zN&d$GzA7}#K}rTWYReD2nUO!=5BaO6%H8kUzvLfnL`Nz#f+cG=Gw`**PlKKq4j8$Y zaVu4y%fo^@88kcgfMmD<5{73qm=4*z)h|DU5yDGo5ch*>?Y@c**T$2-E{XY9((c@D zm4-hf=?5JK9oN2+*E!65HRUy%qhAFTYigSYP^xN6rWecfRc|}0sP$g{ zbtDIL-2NL{K!W~KvBHC=mL2K`=E};9k#V88PDNruF#ySueHmGu}@-kZ*qv} zO?GweVFTs{MvtYHCyu;Pl%1dX*hL2hPajv$1=-kUEvdF`rH(AOK!{iOpJz6+qRrbq z{8i7Ruf13+(+x;?(KvV|m2ZZ~7%7tdKz`Arq;ApTn=y8$mvd569oXfSA~8SLoVM9# zg&aUE}I-?+PMb8wRvgXN zTP;OHNP z4t7w)D5rO-ol+VGy;c%sB7HbFnIGP|S)5dwRdQM-?(|b(hl1Y2?0_e6{<3o_UpnMDgWAov8Pa|CFYG^`c4fqyEEod-{=HtEQYs{ro(fV&RV5sEj#Ak(V5U)?%E!nQ*V=_S{Dc<< zrJ=u|8Qh)b85UI>E?Ua;zSiO1_DNfhPmZ0+k>37}S_b!g+3a-C06B zD^>8}r`|hg!x3XcQ*;BEh=!2pVNQ~h-FIJAs;K@*sV`(N4#DlGWk>tQ`+NJREk}$& zw!B0VLItxrMtM72OS5a+AH@vZi9_Z2vh}Z!T3SLkuL(mDGiQwA#xm$WR&)nx&cjXr zr-sLsb8-hytUL)pb@cJvk|vuCcsw#SUHuJ_ho$7Lsv{-s$>TUUH%lBX&hh5k7yWP^E_N05Z}B$Yt)yRI1@DzZ`Z?7plu3Ht5$#gX z6AdQXf%hrlMx$8 zO#{P0i0qX&ZYDr5Hetr~8#H%eBI0_fcHC%^hC=9qD|&mR z()ITgB~W~CegnZaOuD3C(drfI=t-e4paAJ97UwHHQkR z1KW_dColP~Flo4Jru-f`zp68$u<9X#K+|R)NBXANhx@;o;wNfqA=!Ska*^lD7x6o5 zeY|h5imZV7u`4XI5YBxo-0R)pPTAx}BO~MH$&$IVUlTHJXb8>naimiCWd)vf;6=g8 zN$^p}k#)7|4mOAc@7QcBYqCwIPy!{DT$V~%z8JBju*Cft=3$44v-e4~Xhgs7EMs1T zG4$He)<`FT3h6hzr4=XPVgFxLdxxcT`lC7@7|Jgt3Uz5 z^g-H>A4b562@n0DO2L(DMw&8Ec>`z%U}mpP^-=Z^1n3XPhhG$RlkKPvzpGO&coa;B z!OP3sDNzzFo)$Tl6H{HRUbS6GJGT9`zVbEmZZ=*v9`AVV^j5@o2i9dhJh%JoIw%^O z^KP=&jIKRkGR(gmd*hiQ|3EF+fnUa$I9XfNzST5a(2iG;NObP1pVhBqeyuv%UtFfC zK%tIYeqV4KP5BvRkagZ7h`!EFc`N)GA-tlR63YAhu4{;xAH4%O+GXqnTxxeC=~jCv zi0uoN>t?+snhjyQZ@x07OiF(Q)i$vWR zG%jLjipiISiHm9ZLQv{K>(aX>fLtAnr*nCSH8Yh%7e*gPs$DEF3FRuL9d!-?2CvR7 z2EXu~3sfpo%FDgI{c`9!5t!_zIRX~BC{?pT_mn6myd?Z*8i`npBX zlF`j2I1|&00z7c>XKY?-DX(hS*+LjAqH+%RxM!o)&O~2%$?xAA@~vM@hm}$Ce;lyVE~rE5UD<{lyj5-6YBL7asZvTkKLL;j zgF%Wr61PW(#?%>3$-FXBmldWiQAM+O>r6B328?A6AoSq+CXEkT1(k{q?(|f6Y=51) zpo`=P>ps8PDLbk>4zoO8rr>wpX&ATkl_53ZHYSbz<@KK)&RTJN^=bO93+!RN+UOmQb`^tZX}<2Dgd;hq>S=uOW{O{o-M-#dzB?@ArQ&SKJ_a#cZDCLZ8nzD|6ahXD-C%X zq`{z2@R_`~9`){raeE#O>QGh^Eq+%XqUpCXxRQS=&13WnRS|H4zw!$7#^ZLI`q&xO zOFo!BaxG9B2~DyK+g3Y{JDmbVfUx~0mXbQ7un2OIl9Kd|6%fa8SWV}P5BYN3_vK?E z`lmLX5({y{LgK_XFfNJ2bcA;{)V}jW=}W~5zqY zE`f@sH#17TgUt1q$gA+Oj$dkJxZHi}jn3th`O@Acx-CCb6umo`o>dlyqOSbC3~c=; z3VyGojo!NprLF#3(uD0Ex6wn$WJ2=oLtu*I6sqrzcoe0t_0LXR9t9whfZY%}MU#Dh z2D&G7nD2`#Zz z;g0u@^*3DGXFdBcMhMeDF*924WdizzMgo`G2?Y?U8Fae7&VNU-4FB-U`D04QfO+9X zz0$156Ngc3lopS-5yB8t#vc>Z72iVM5S`F42 zZl~DZ1fqls;~K})NREQh34$LUpOt8b@#@3<%+)LwEv16bV84xAk)~$x|d(-`gmb&zcAhT_0#B*APryhPOHO4aNUj(J?|%eEJ;(Nwkk;c z&*&aMeFcX@@eM1;{F5El#%M68t%CN2f6-r`R$UwQy$6IJwY@w>dqQN|zp{K(+tYrO zTk!GVRf-7#3e^zPjrYEgzKJQJk#yS-^Ddn0SC9dQmFgd}28# zRPj|zgRa#|vF107m_ph)=pNt)$j%pYX2Vp^%l3!`J z^JoG`5pUv~Ktg#wE%*qz_7~BwcghjIDD;|PQJBp{g+Bq8UlPw~T3|%y+}m4QKINw> z*~fQ(g-+`;!zG`mF1?9I%wxC9Dc>OwuhF>;adLW&ng@rb|!idW?K z7!jQ%*d5I`Vq#yGe6gClQ?J9C$bX|Gp(>9r#%cP9m(+%3%+5;NB=4#r?Izo)X zzuy$^@fcgLw`Sn*c1q!1lVqb{yp;)uu1$uTC(p})*GZXNXFu&*v@9FYAEV#>=`Fl< zE`~ru9begT&TLPg+zEnNwG~(%`5zmN=8J=G*I0*sr7i(ga;5C&VX}T1!{_9Jw-{hS z6tsKzQgmzIYUi_q*k5Ss&SR~)VnoH)6)r}#zDIipTG~K$11J*DX86l*)`ffX9x#?K zD3DuXfHUzeklv?3x6eHZ8J6dTB6PmJR>gk%wRq;Bk1wuQUyY0_6~HeWJxJEMxroOJ z<+6@O{Xfm6Q2Lz7Iq0bo?GxL0CEzqR2k-EHMxT9bop46?F#y zZ3#qM8|$fQF!xg9hu=t>oQm2W>bT{aRP1f<&2k-e4DNkfP+o%MyyY=reUnm~aiY;I z(yH20ElivNNj5djSa~`;Bus8a8aOsQd{#a#3_CA!>T|S+6$Z_92tLm}u79!Kf;0H6 zv(S*2OFN7SRdiCjOoQ4xz?b|2;dwCPKFW3Zm=c+!o)A7^iG-_aXg?pZrXXD8h+oV* zo}zxl5v)3d{63X%=>0HS!DL`scAcLX)5U&nb~w0(lA{io^=z!~Yv$kq?Xl;{B(bDP zIiTPY0W+qr3Bsk+91LdmtJd@;pbZIPT&Rw`;6*zQoY|$2Hv7&>=Bu`A zG)39ql6yrS6bjw~uf!8+GN*cdh~F;rogz$@&A-gXerh%{ds6M7c0wiztwqzd*~-BM zWeZ5LHjp-Dije$XSin*ml3<;f z!6+;D?ajlYwp~MGN|XiS;)0#Ye+(Am!^6~WSl08#mT2BoAJFLk zffmBxl9uv9`xnspGLw#t-^+XS+63MTww=KJvj z^B!kCWsOgubp_Dpp5Mt7>oQtj8=w~?{N8j~`Ll>x84sZHg}cWWi?##(5mm(L{Cwid zsS`%uw|g%+xW7raICCiq0=*M3lqv~R=`xl#_J2IFmx7vF`#8ILw>t$|X##JHtf?$> z0QV_TamAk?96W>~+q0K^_dQTsFx9ewViIV&xddr*3|b@360R7JJbAC^lq;2VZ|?UUn$-WX5lm!m&_VIxp2KGl};$GP15#;)q$G zoW=(7Xa;u$^9$kv)jcTI-c4B)8>2fTX@q%Cjv1G`VfTLYqf2r8iyKyVoCrfG-|I`p zy(Y5_W}fp8^JvznaM}zxYBla@S!=O*P9=ABIL`M~W8168BqN8$C`%-6;W0?7(8Dq3 z-efJ39G)re8R*V(mpM3LFx^_K@zn0aFOt2xy0z;ZFv)j-fZ4{gG%T`WzRf3RWe_#n z-kvxwPv;$fGF?)M(Hgxwx#nF33W$6X5woF!mCcE0%#yJt9X;(HkQvbfUd`FHpgIGs z0KdB(zX&56IhJb&L5Ds&Y9wy4ExY-;b^G9H+Wb&~u?NXB;E?DXe>C`vl-k_m6VCtJ z)mP}OuulN2Xj(1l;G~7AOpQMO*{HWZCo zxzM00EdTMI1W@mJuZ9Sz^+fiXDDRw{dwY0gtyfc@PgDJ07|sdEBg&M@xc9X;l4<=m zaJmbE*;)VY&To@(+@tvN(lbrFQZqK7aR0L<4?{EAq+ZyBKDOzY8Uxu@oPGDIPjTm} zP%O8rOHu;C{3&m?5rEOFt(z}0MqArW-)KveElNn@{(jQZf3E6?L5^$MCBeja$&@wb z`(VWbU%sXxm4RlfpfASd+MnQUduxXd$F-$RHp#wACIT<^3o>dw4lKj4>PjL5W4>;p zk)xgDHz^J}1%rkEOfL)1f3#}NuW04}$B??WkU~EG;4zu=v^9H1(%PEEjC~Xvy;0d@ zJ;m28t0tE&3=va=SpoA66m?lebkRFu5K5-=lP*=Pkkn0HUGMJ-P-Baz?#FhW>0{v7 z`2YOL%|u(4+ zu73f7KX;{89?U7kH_96sx`F@(!rMhl&mKqRmrwml*4CLnd=ALV+5TBi?Q}=N|6>3y zwId!PMIK`C$pxNIT*8yP`WlbSo=MfK2Ke(-_Y$miW(EePx~fm>@D(f>8mrghj5Vny zM~Yj!Dl+ZHm2*T}2RoSz>EZE?mt$IQ3e`2Hg2~~}TC7TnH&zV23wCxZYXgGJ<1;8lzLlJOFLA-j8|^~dyEcwW zv5gB}4|C(Br7pp9A~g;aZf7`uX*sf}njds;70l6{=0HhhDo3ARYI1}Mw~iz?8{#{&&HYvZg3Zi*0wPOlB`ynV>m8^>ip0#wyn7Tu_db*)NMSDn|oJ0xo;vn zu!h`36802gS$CtBF%t2nsXceo*ZYdn3srl1zJoyF!}j9y`aW_KH_^@GKF`NRJhy~e zQoY?3G$@J$ltzkF%O`Xirh7fDSk5SJG0R?QLdg|!9l3TAk$mAJEH|CFRM0+$irl0g zQBC#IW|G65zifmqYJXm-WW;EbX}bzu{jFZ^(l}7#3tcv58E;n+NUh^6=WyP4^jRQy z{f1N~CtHIKgayy0f31u{lj%sHUrwn0lFr)>n=}vC4fb(>SwW8KjaR9))WN(PzXiH7 zgM%)esUlbE={6S!^eZpx#Vp;KkrU3-bb}M$I5cSzO1!J^e{1##0iC}N31eL=0i>fW zLk@hw?_3N7>98Y;!{y}Y1?VW6-f;bFr|^AF8nQV_k?@@3`omjJVe5Z+P&E_cV3pb) zx6ly!e0$<|>g3No#!Hx_WAc^dT=lKnG%9TOZ>GI>w(3~-d?qYb$jWQyaox%Ctk33; z3Sy?@i+3HP4GoDcIfLpLt<8mA`ee8yL2Yhsb8KDwW@~dkr?`~Dw>#EOa4}13p+Kwq zcYML3*=@n5PbY_iA1&so-8X-?uy`BAtp}z(BO|pliJyo6 zFI}%L__GwWHJ1g*Bm4d8EiEkpFi^GR^_z*;C3Maj+`OuP^R-SfU{;X_lXungw0rKx zoM1??t-M;IG1BHc=L0R^Hs5K!vsnJ7GtIOij{P>A%99^F?3JioSc8&S79X_hN;U^O1LfP_{Ia#Dt z=UF($#0p$At|GIY6m{Rt&F|?kJupnf%X`X3SNWL*o6dSmrv5pX8mN?hw>`BVuZ-Z& ztTz5q!!N(9Fq!xWOfS(HGV!YmEOLxYIeTkd5J1t*U*2 z8AzVQEXsh&PgZ-)GG<7*ymmD}*|-w2x!7f?LQ|RkJh_Kn6>fq_V%tM|zXu)`n~mIV)NkWtq1}CIf3-#m0KYdYN}(Mj006iVNd82Tx3n zlkv$7el~SpyW)B#@&g53@`IkiHLJBEoA1v!xx-ibk!^46pE-I3Ck~Q`b~C0LUcP4& zVY3OZlvEl~IFaNfynLJan1ga&8%?ooEmCG0faUdCc-lXOVMrcWuj>Q2p!A{{^T*zn zCyViKA0_Aj?1kThvR7x;o_u4`5*y38H!r+!sC0pClW4LP+yhnEG7Y|)UtP(wOhcfPS>`5 zIw%0r`_4^Mo;&8AlV;1Ywyr0xpfYx`&j&VwuRZM?`tJ2Ra-n0d6{_0Vaglk8?Dl{_M+F6S1&u`Oybn@Kd4#MK;Z7OQ z(X{263Ep9K%qDP&eovj1zry`(k9%n`Eg8@}6(@gMy>A=kfS)zxtL;ub?677%cit_s z@~VHX9?sDGdeD?%wW`|%gGv#2mWrF=evB}i6zJj zEh@JwX*(bke`l#mSMg%Vr(NOO1NAk_7;OX`K`N91!eZJe*CX51fJyM;5Gv@Wn8vkR zgnh4Pf~>dPTiYz!U3F9W=APz8exz^L_*Q|X>gwQ!86~1Rhx1L%n`k*vilon}(I7f@ zwq}2f!xa#(aiz!HTU{2mc7|)jq_Wwq4lnBp^(p#;pphr`z~sHYN3t$8-5y1X?=*(E zWv?Rw+k!k>68AR>!NX5oq2t5ypx)outj*%*51yamdVWvsh>#CVJrG^AbvMeSxa?*# zU;&!XbPD(NQu*{@Kd$46axb%Q+RLO{PV4(Q!TQU(O~t8xU1u5@Dv3dqgOih&$1&GA z16ng@nqhwfiGBp5+I;$piGhbD?^^DwKtv5nt#0PMe+RnG@XcF9r1<&y*nB$4Q1E=k<{_#d@6xn z+Il%r@dr>5fAa+wIL%2B2@pa99Mu?cJTq^%U(eTA?=@^<@q~1`>vptgJI0OU?_q{n5r5>; zJ>lxMA-$jPq|7=JXbtq*T|x0V3qIsg?h>)>BqOxc4Kt_&dGxm!ZY>n67%H5R%BDKr z4paZaTBP^6v47*9!8nKe^K)TOFbIEs%NdYLPzDTwY5+;kyEM5Cm+pAVDzXv21vLsi z(7Ir_U-WQhXUaAs_13sEiy^VdFtsh_qD1rs0D0HcDPTbu^jnm5nek2Btd-75n%st0 zKD7$UuhdHNaI@`B1s!F@45Oiyxq5#%xme5%2%_8zEF2!F{`kKhW%Y694wQ zyJCI*6jyzMNIRzcwjbK)@@0JQZ1dRViA$||w~w(XWAMbx{!Zth2|d{Gdjn)9ScvJu z{4Fu=^$WT34Y|?h84~3=^jPlO22InVOlc@5BU_%FS5HB0Ar0?&Y<(U--R$o=89U#r z9#ps?jJUlPX_?12H;*4m^zYNcs4b$LaRt8ke_1)5CGL)27q?te9-Z9Le-s(@KHn4S z5UMn)w<_qJmm@2_tJP5*B?J=-dv_8?GAzGg&%iX z>{6@!XXHIW`f%xKF-W1fx{baEmg36fG5!66cTfkAIo>bC_cU!pPdiR|?h`K#!0G~4 z?q1@*pWX4#!!hOYv$4#J(Iwkl)LRc&acWEg;*QZY=KD11fTQ-g#4r2HB2v%f0ioup zGtR1#SYCJhYg4`oQ`)R~+1Ms9diW!#H?S6NLb#c+cN3;>dpG%}bbDcLqlr3 zxyVZZxSVNN@5|3xjPeaVIX?mK;6 zgXQS?WlgJ;$LHjZ?F_g89=aW{ZORhV6{%J!*p+c8oEIpMk4}Fq;}jdzI8rOSv_-7$I}lKdSft)gd8koDyWBhBlUB0Lplj zKu9f*bq^+d2H!++A%uA>%_Mh_y%%!>GTb>?Kc8phu!hOo3|ht`GTFE3TR_6mONZc?M+Af1JGg{m!BJ z<5a%hEQhNrKY4__?X$;ju{LQ}$Xp$4aZ6yp2fEYz>R@fOGa_(rX=#@(wbDQV#?|+| zH$(c5ne3T-Pc#jLZb<{F?7!PC_u)_^%4o}priaMqe)2jr^Kk8N;wy1F4}rFJA}gq- z&zP@m8y-Mi+v_J|vCLk;IiTY|PvD=MU%{UPCMz38_gB7bt>N=qC@DHy1jTBea{NK_pXXa`)u^qWCR8_PQxL0+bqvD!cjQ6j#48Ry zq{Js8eGOr-L*VAm_L9$UN$)&=%)rvpB4fT9Be1lm*N8D;YRToZ^Tz@$=AV88TS`Z` zFLlUE@Yf1H<@xPfeQ1Z2<+S^BvIaU|pQwAP&3#!uO5bsx7Z@829%D%kp%1$yJw#fUhF@fXDP^AlD*eL9GCu>SuR^4x`6CSL*|8#+`Ts`OTyE ztopwbgIAacd+b4HUr*>BS4lPjQM4c8ieCGc)wtE6A*u{UD(At9-`5V0FwO9Dm_E&IP^z?uJw-a3^ zAfEc~w!&7Lj`YR8mQk(QU%%+qC#q{Ym-wlL)5kZV?+(mgjLApnWo%{-fqbE78f~R_ z%X0WSR6IeYM&3p0gq)JZKG~U}v~K6708(0ac;Mi%h}UX1*b9mzMVi~&yW2{E%Q_535gcglBZd~9D6YOKBoI^A8!6CNYgt-Svof&P z&|o=2ME=JRO50Iog86?8R*BdtZq@G6*F^b12kqNlh=u`%Xkz%vpC#(TTlI+lPtL}f zIy<$p=+6261)~+l@B5G~mkI2-3eK+{QJ-UMxS1FWBAnjXJk5`%q3s88kxT>hmnkZ%@uz$LVw9(|7qbb%jfw5~7*FRm=`NlVJ&}R}B zeK-2fU|0CNLqK4S7!Q7I)6Afe$g-`vxA=ByQB1YpxbqjeVGl>E_XFZ_7W=}bRo1l^ z93Wo-r+AYHt#dfra?A`*w|m@4XO8V*-69l_#`kFx+<-IW8}Nw&W|Z99!hY=x+B4qg zH2Y9md$C(yo@=|%$%SN2RqluiAo_$`C|T{$KmTb%F7-199%rXP3k7`X<8Hov2#4+C zy9bm$uoJ-)$f%?{((h46f4ogGT~fH`brPB^LEO%u(%@<*#`!S`t=O$I#V`iTP zOMvAoPDjV-T_z6cd>y$aEtixN9F}MChkr6pHC(kX!=7B5lLTu{sM{ojk#rRAeIh-+ z^$8N?BFU}BtTpiw?iHl|^=K2l*l&I5$+6WUY4<4cmPj}#yy53DI3RH^gYXuQwz5&a zKaX}#T6|O}F&}Z<^){uT^HFm9Ro{3mpru_{Kn8_xk*eq0cEVY9nGQJVw6y;i5{g$2 zFOUzd=4E%a^wv^VeGAqIIPH=4$P*}{{XYh4z#OyQg}VCSvRq1?zS?nkR0MFEoq;#; zP62$t-M#)Z2xuGV4D8e*H#^%R(1qYXF{Z4ny^drup%*g| z78G-y-*Y8fPwgwuKd~cCL7m^vSo{0DaOx$yL(~DVj;h)kH`tiT6~DgcU7s| z>94DC(6Dt3uiQY zE8d_yQlO_}tBLl47RGtkFo)DwshF`*AZ!C_iVV%3UTvEh7ImJU3L#ixIA*loSN8;l zi={s?#%&elyS2RP0KADZM{A4O=EV@oUVVFq1J8F#^*71pymtH&@+i|^=|V$BA+wk) z$z=0{hge>>6RfgztWx5k7}AR>fmp;Q}nZ^Lwt<|_4Zu%Et1$5`gBPtl~bb=_?H z%w&Cy&MO(2WPqLCJ~-Z(G7#{31riTi7eS*~0*)q2u^@ba0;r;naGL1S_ z5XWc7$Uk~ojnzAz1sXjh>>L?yxgDT!mWAz@opaILJ~ui5OPzx#C=ETR7s_+K`p}V|jUO9kidzN4YU=KP71J_cxeb z9rCpV1r@~z9JBw&AP4f~Tv|AJf+if*DIc|Qf6XuW$a^_YyKlS9W$_<1{hr{)}r z_%UcsQ57h+7!6`%o|TGlICg`-zCv@aFLE*M#+G}@1JL{i(uSR4;UET`h2kf%M5 z_n*Z@nwJS?PLPiJ&Yj$7w_Fr(wK=+Y0v@dL8zdi_NwnJiI>fAp2G`f-JY9Z_5s%bk zf8meIY)%qC(%lX29gXFLHqQ4zZ$!uyI3WLAiHqQ_F)ALeUHgcsEqQ1|81R;Mf_ajn z={o9C>ZQAitM?xnzEF5K)>#t4`$z2JB4;cw_k#CDiEfuqGV%kravd9L>;>~>ue~cZ z$AsM}bzs%YlL!=hAz>cytEg1$%nDcK=+2zVZ}9Auo~)INmc8bE3x1DWzF5emdm1K5 zG$h^iPhZ33ma9fUbPY{FGH&U4g$r4(eCKFP320|~J)Qr~gx=j86XMi1!rYIRf;jYb&cF=Qj5Z zv8a{9j%FhHr-IweCXYv5{`3tV9=_M1@i!K&#)VUtaJu__t_DJPKou92WS^%_NwI16 zEL8?7QtfOy0k0xy-ahAwS5qJtZO$CCI6O1CjOyB)CL-q*?eY?Ui5+jF+@PG8a6akN zPIp?qsgm2JU_5R16m^xU!_?=;QB-6!Sl0RlC&!gr3C=z8HCC35QlZft|B#M{j4KI-N2EGo1o3PG#%oI}AvQ6n;9p-`< zJxqN!_G!TuE9@(;)X`Wjx{}@}B^~H`B^$52Lm+@E2N1QTJDJofXwL4Bh`M2%k53qX zzKw~NvAtx#xb564^q1BPs31Y+(+xQowV_9weJ6oECA~(VpworV8*YHVJkmhV4_&cO zSpo!$ZCkZN^OAGQxDZdM3TIiiC%?riRSAJ4jl(YK8|JG|yQW~rp96Rbo2Je7)3NU&y<$7e}A=%EcEo;k}iO=>n+{ycJks_sYwO*V7jppD%JWig~yyC&t%DpA*A5~?3A}R{@vTZbV|M|_c@XZPgZ?- z3YUAeWfio3+VQ!AE zUqsmcJh6>^E0$co&AT{{ctoWmu^zUG&;t9rfZKFc0e}zL0t#v}jjC8vh~jP^=kWQW zXLm0S51H3>P znwci<2#LmtmU6$|1sgK@lgqcGpn^azUb)}*b3(wo#!XGL&w4u{jmUV_Oj!x<_r9Ue zQmciJ)al9pF^GzU8iGzLK-K{bfKjz+OIH|A)>^TGixL}o1y4uGJ@V?dQegkV;lFP$0nrU8hDsxpg|%i zh>9DS$B!;Ex6D_0R*I$pGvM|%C3ns$&*{9D32CL!OC!~y#gbn|#cRMuj3JpIPk!rL z;k9Ervhm2jtO_EtDV|X82KI1*!P#_9IX5II;2>&n@8^!Tv{l+9!C$W&qZRB$-;oY~ z5ezA#nzXZlu{&7%5i{E=3)#(ldF`gfM*Pe2Zp$!giI3pW$1j12aOGe*5L@#hax&AP z!&JjKMA+IX^oAXR1C>C}KM`n0hq^0o9rfI(57Vo8GC4{ode+YJluP?a679L#H9etc z4kk0#yvhj-2MV*^Ey+^9q*xDGd&2jp^HLpSS4^96X>3NmH6rcic8poIHzp_$?O!&_ z^CmXvs}*{n5qTtMH>t`VEF$CHU>+S$95=I4P%=g8RkHk#qq7cc>g~fg3W`bzqJWf0 zN-5nS@*^iLAdFDy8r?BO1wnF@Afa>(q&8}Rbk~3hqf=t^hyn9GzW?wC7hJpGJm)#j z`QG>axqTzhAQLQvGaUl2u#KU2j+}Tj1jl1U$zcy@+xt4Ob(tnq!<) zcXF2~HY-J49sMMB`@wVY2YuW>qHmv)=jbR^cX5=x@P7~8diWqwg#1^tUk6r-U zq0m{@Tq>$)`{buXi)hLi?mNhWp=+DvR5mr9MJsV;lhEn0mt(p=tCf2{MqRS%N5@)A z%;^JP_|nChhez<}7S?@yB&co-RCzdnGrbu2@#@p-QvcXxIEdD6L;GpOeIY+UI#r`jpIPznK z6`CVH$f8QF;I&Y)f(QyaxCF>@5!|`Nba~^`lWHC4SWFq~{M`mgFFWQgikK>AM{XlN zm2efczDLHS)2EwTEeGBG`ff|80?b^XW-!_rq&U24h}CwJ-`Bd&g-F%lIZsKkiR#z5 zKar9|S;R~Mu}TlMbkO#j1CIY*GRlR^JDFhJI&=-OuA!{JIWRkm5`jRHOzRMBCsPj9 zgYsWuUyFn7l~9cVtR=axh=J%#iF{*dw-3{YA{%ASQar*^;NfGW&dm7!O2(Kj1Xthe)scG9(V~R z?z(@bF)z)HhthSCo#ko|a{8ckewX()dX%cuKH*w8Iw~C5?>Cbw;9AlGmO()j@S7VQ z$iSp(N3X4H06=c2R@u-~iSpQRN3vg4Ze2yN8BL4exLnqLNGUpjPY zSrkR3t%l^?2?7V|AD9$``3k-*`geS?kIMVdX;*K~ZH~O3is|a>A(!_x5j2*hpooHf z;+JleiQ|c%a#EqOOp!97;r~mLvkxG9u5w<%mP161l_i>)>1WR0PCYsPqX_cnsXH?7 zqJ-Lqzn;dK=0)545YL=T$F`5~flW$hyoc@ILUC%dtQBd~^TQMxMXWBhy08DF-@xam z>fTYbiFk*ROw(Xd_Hh>O()>P8(q`kZ_JVBmB@8^9Z`gTIoCR#*O-f4Jt}$CGusOri zJnkSZ;VCDgW6`8siD?-h_B2($LB>JYCJK8NZvMCr5(e`VK7%YU_KVT!m|rIlDhEQp zZGqw&pleCGgDTMnBf)mqzzjJ5Gb7JRWmii`w6HrMkr-h~w2)MU(8-B1(z&tfT) z>ZCyN6+dp>qe$|KJv)9EdmtTJfk6ojOQJT*dV&P{oW40;Wsj6(dDfUpa{iP|tn!X? zF7t&sKKGnn@Xa>UYA~n*MQSt5_2YrqSAzkc#l2TynOmtJZB zgr)g#Kzt}>Ks=W7Ckfw;9HF*unUx=m=O3`W-I^#HY?|-hS!+k{LN>I<~apA{-}izrBZ`D?UoU?%e|}}4VL9jC z^p)@3HLjX_giC1U5eHlmx_0=NMBwU#>&R@^TIgIxY=?WZ;^qqN@{eK!(@1wDZ46VRL{&^-ydv!@`hTAe(rGK zVPll_tg)o+WA$hau4Em84;ZNV3eV!D&)Q=O7V_CGpWk*A*j&$mz+N86dvg3IBCE+n znI9SZUj2{bL zvH;!|h4MqvF%Yrbl=5Nmpv<5XSe`Sc-ZC)%0}o{M;Llm0YgX*D*T+8KF{g zld6s9jZIMHu-Xzxt-PS$?T+ha4(lAPA5#wB^eQl)enE1@q|8{N2q&UW3K{1`1g;D3 zz17!WdJXhIEiy0iqdZ7e>yr+fZ_ZUr+r?H}2a||e`=maxi%=mD5p*%WDD<4B1XO%w z7;VAcH!qY25L8S)Uy7!RZ4tZ?zKt-A6DbB}*C}h7RC}atdg4+u()69!bT8Rhc|vc~ zaw?OhwSicxKof96%sa9SMSbafQ^n{*Zv5?|6VDRwZjrO4>{bzTS=UxY_K?^&Nu(A< zz&%%{tK}d5RhY-GC}Zwi{z{qFSkvLJTnB2Ji6)Rui;!*I99IoxVwOiQuKP9qGGlW6%VFjne>@JQ5y%JRH|tF=n+w0SrLF@UAZLKoA4nyosz)z0?@%!hQ&ik@A{V*z00Su+_>v15KvKcdk;+sF)MdX&^dI+acZ1qV`Or?U`9M?8*C zHZ$WpKh`?gIEnnCd!dt`|6OF)cS0|*iqffk0TPpXYcamAt4{Juaq_$nN=X<1K@Fgt zooBe|Tm36)F*Cf?$fL3*s4RLJl$}WzpxbQiVAzz&65Q&?lDa{{CNuKx7s~sezS!I4 zaPk`^v7Z=>D%T~cYI{R7ukc!gm*wa1sEqkF&8ORhpBn;&<$I^lti3C5e$E{qXbK{s z&6S+&Zh+-S_iNp1auFnkqSJGx*yE7K*{RkE_E!!@-(Q>EzZDzXzxOD{)sMf4y!TEf zn^&`^`E76|zQo5CXVz@s=-8xPi*%a8>NenQBr$-`Ecu>=S^3GRHZx-Yo3~?~VMGW# z#VCpDP(z1#&55maKzlH6;7+tbytp;j%x>E7NK5I6YlRu6($%dFln!^*E~ufWeGwDY z&S$Y(%0&8%HHtJQX^2*v+s|)-$l{-_=3}!&{d&{k4+320%yU^Q^81H%*g{Yd8NuCM zF7Vp!lgwc`q7`ODS@hOL&yUrZqr~^!f!SVh3t_iBh~*lkMX=v@WE0#qSV(K{4Fnz< z={!@r2HomBJU<5fTYW%A^QQDg|MOEBT#vx7mF#oYTU&i=M^=~t!bCPbOx?&p1_)lb z_ZRWH4|~koSQk||TDI%CZaTM0Am_Ofli$UVyp3;M{E(R7yW7jib1N%~vl2g5J))EMczs z8u2GX9i|6AV)iqemNVPppD}fIHXCax6+%>?U2DxF!>4BMA%WhRDeoJ85h=Lu2GmR+ z-!a*KMo3!yyrFJ3RkoXf^#1qJ!|c!|(rUpvnD)XnEX-8UYb7{i7l`Kyo} z{%OnVxBS(A0q~*EnE@Fcyh{+K_Hs+>81F5UvM0u6lsq&yK6Du9R6J$>YF)+Xa+91& z+smZu-4jCyFv|?B3G-)&3f5dMuL<{8d75h9$%NM}d-JT+y+CIo(?hykhX1Uw8zEvTW(vKvajs@$=A`e@j#=j4s@-bO^tfA{`Ilsjl3@p3rc3eu zmj`>CyiBr3sI~G$hYh0+v;U=nQ}WUi-{vE7CTOSmB`@tjiqihopRwUHC_{9C z0pjNC&r91T9q-(kV)-RD((I(oYC4uJnVFO?1T85TB7a=!t{}r$JQm66mPDzaMbI#O z8u~fu(Qp%*q62?fCe!hD>qRQRIBVc5=h5yrPDXhwzT~u862*dQ535hUx)`&etg_Tw zU(#3|DiO~1tj6q@;K3czd$`?@z@vC&bS3AH+a9dh&8`Vf;)d{r!hf)Aky&Gg+TLCA) zbXLdf>_QJ<6C8h#mXGn-TtHgKoa~(e-DIixsw4c1g{-TP>xzeTqT=}P^Wa4l+Iu`K#oYSY|1r%Bh1HjMH0fN`Vv3+=HxJ+g zTCW=Jt*@UhsGW|_Z05ScCy&*{!Hj>Q#YVhI%dX?j~cN>5KOE0S1TZ48G zN$U_*w;6jOw|3NJ6he-Ofd?=9dIpFj&DmLv2jL+#XMuNaul

Iaw)Ikj0HyPVena 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 D$-@uHftYi)lJAcg)iKb z?BZUTbsMtFbXgNU$9MKl&v{I8Ud?HPg#2eScPyqoSg+9<5pXC%#)=@jeKbkI!3kNI z*+H(!m8{E~&TrXiti={9`cfeCDkDW> zi6$ZYpFhtg4t3npG=*MNei(53zQlzlO{Y66ok8}xF_V28T#HWqRku6je-b`l?Dg2O zvb{&)Dr?+y4HePB09XiyL224bc2~EnC|*IhtYH-B3f|01KN#yTx`8u~k?t0@=Oy-i zgq>ZK#Pna0O}&0vV02zWDEH+f&+~aGzEXt2Qud%2Dh)*kd~g$Gm>w~{F|sSTI|s0K z#6mM(zU8Mi={hSjixbf`a&H*He*Gtbd*2Q}>j!58I`5p8+O4!PF|vM=#^+1$XH3!! zC#Cz&LJC|$!b8#%ilw)$y8K^$SUgsH^t1V8wk7gTR2>J<N$VV983ozlwh#%m(o&03Of?=4~4I~LLFGPN_yBWr<$Z{ zf>#fY>jRGXtZvm1(_Kq7Mgw>*7h4YyY`jtRYfm9sulOLzl3b2AyPZne9bO*i!agP# z)Y*H=z0+0SzRvU-H4-Ih(Ao_gl&ak=Ny9r4{B7dOdOR52Hy%bf zfQz1o&fYQ+%F!z{krB1L&RO)2qCIOb>w3lID7OPfHHo@=W1|coo7w=l# zEw1C5;nuZCY8Q)a9b}Zxy!`jy4y~e>={_G$SSURce0@M`Mig;G*BDL8HrOcc(u3oc zGA;tSg+bd)HdGMfO?qtH*3K=#1Z;0z%Mx=8{f^g%uK*m&1~G%3{*)0K9MGu&YQteP z_*mJ@x_o{u{n`wU@)drM2nV6bKtcDd!TpTw;Jvvh_yf$n)5^U64YaA8hKH z2?cS|>Ypc4Y2jWx-+;SdFUE)TJ0Tb{`_@`};8p0>F70;UbzJSr#QRzjl~IqdIm7%e z)~N1Br|tqSCKzeupdfy%VcXu{+oM&!A-shE;IK{YLC+s>^}PeyVF#%3 zqsTRwfBPmoP5vRg)=znW&1>WEJOJyl8$Klx6pZeB0lLZC0+JK;sbY~C{;ho6J|`KS zHy`_1-fa?y@_OOO!t5)bw(83H*;^2^!r#Agd*PCvoLIfb_ccYB8iWOrzc%FB)z)3H z4~bCS8ou%DL}-LW!oMA!{M4oFQvuS5CbLaY-*E+a82Ljw-%@OM7M4J9(oPMvW#o zZZrKnYTmlecm3paa}AplB>=#lkRa8J?m>VX&xZ=&Dl==zcxB<{x)r1e)dYA)0AEVL37!?&KCwSI^A2e= zK3KqdM^M+nX9ZtN{tf@KyQ=#Y5Yyhm&P7HY)nN&3q!tR#d~3y{?z_P-Mu7&Qe=#sv z4r^U!;iWoye%aY3Zxri;cdLTd$imC;n{$yoAiZ5{8pz5{j|<)rd=U` zI_la^l<(e;Ikd=w7%V^smF<1Tvv+4*{|}S8z2JMGD2ZGmA`!s#D|(|fMz;or*gG5~ z;{^ZCVp{OF;__j@f=|2~d3D>1ZU^81NvYfbIIxR(cUR>{Ct^SaAWG~wS^bBJMFhQq zkCCIqw8d!L6i)%xdt#iA+u?A9r-qnvtL+fhhz=8LBwM4#V}t zyrX|w>&$I$u+u1hp20xEbC>DnWW=wCZ594CD{TSwxH}ddf)e2Vw99(dKO!1p38;|n zB&}rUlx*iKk?se0h6r`#6=D;F?#o2kmtkNATCDSAQL7KrF26+~b;7MJvq6`LJ*mfz zt19m8KCTyu?CNRp&1eYzsHu9bK6p90hUCtOq~blT<6zEbGO}Rv@c^(2?5lC3dDo zE!ck@i)vym9<6NDThH^;bCQa8zs0_jo1rCVk0uhcErFrkb$)6tPZoDI`gi9{QnLg^ zQB`DOVM$0ev7l$tT^Bt;1OCR2S6>2b0xP)A$}96FasS3tf~~JyO$NKpN^@=PcI&8# z_(Hkw{j6$iUN6R%%NqWtq`#YFK7A8gsNx)-a4jR0sMHQ(X2oUeX6 z!B>!cc2SMJM=JWg1Xax)B9u9K?CFWE7m-{W9gAKmL>RBmV>lG|y2f|ESdUw@Uad~b z*5g-m@W$EM>TUO4F2Sc9fgM98crck6&tR!XpDk*2k53tq+&z0ZhvywIGhQpJ&dQ$<3AtrPpEby6|s%ZxA ziIYlW{EW7Ryypq!cbK6UZm#bU8GM-4IqKfMecMpbWwaw=m?)URl4H2U8^w3}-YZL$ zPnN-V)Eln90=-TMJUQxSJo8uLOcAbE;+;P9d0(A~s{IN2S;S{%cFIzp<$S^|>|ft< z1&H+5eJ_pcekWQRyK`!bp1o1`%o_Zoe5ubT12djSsYN$fZ>c zh7|)bN`;FlHcv*{nB9_@4U?_Zn!PWy7tv|aUV}g7z{XKY<^#BSV++0wusI9(#7@SApio8RJV|a$>D+|GcreSTJ0K^OHQb zXvS$|XgPdRJo{MR-8W)ZTFVQ^6x)k+#jL1ziDxrTgbl{7Y^AhU!nkZ7|(F(!;#}Cf}*PQp*o6Batzj#vHJ6Iu&URSOKEp2EDjRV*6x0R7?Xq2de0{5HZw z;7)t8VS)R8v&tb69#w7q683a&0|y-=dj^X7l)N zK%KJI2lm&RVZ>zg+GsPbJ~%`UhBgOKuxP}!5y*TMZf*KY@{6L?ijrDL%B4Za>~2pV z&e~Hsb>VqKioXMmz%FGuZel8m_$OnLm=9;D? z?#+k{L>o!?7%m<1z{d;X>a3CVOq>^UGJi@k*^bThJEnfu7;4Uy?wX|hNZ)A7Mr=dU z#}`JL0+$|rPOos;xu5M)^ClS}vhp{0?*XY#Z0BrUB?Av-oYqkFSp%(UP#X1{C9{Np z4q-2(pPm|0O07N$`B`D-c6Voy&O_e5Inj~-J$yan5ymS@;nlLLHja?{rmC{7h>f+2 z(?jatxHfscB`JNUgfuMhxSBSm)nV`XlVvqH=|PC6Uu`_CN2O;m#+-p#~=@ePKVNg+R&-o#JRPp!m zse_t&-SwKW&5NO7-UuWViO-S;^QP6SK^wV0@Zn9uAj&!oF)QnHw_f(~EIMLFwDZSC zk75&F^JeD3g53{153Qv`)m9FGqCutLJ80zXg{%#;>Pz3cW%mWZ*edn`1Lh(trmq|U za>~q!z|1Jj5yxEao*kef{osuipNZ3%(?WM=3KC}}VK!REoGWR~@$Lbk=iNB9JxeaM z6d4!T{OgmWRcLIGQXLsQvA}M9)a_psy|}8};9a$gbGKB)BT}X!=L?F8EO%}sBBq+w zNNqJl5UyphGELyfcfl-cQL;`d>8e>=zk-j#)fe}g?NbF`T$0%rcd_Y@m{fG%#n>4& zu@B6ZVglTa!Ti_8I$Hu(p-^ajL6Y;GVjcf^ge!?@3;ZI&sb>@_D=6K^?94H#>P4Pthx%Xu{DyDP2KVbM9y@q&2w13hR+m*9%M6U_J?^|&(YO6&?vqnP zt?LH#y}sDOWP9-=Yr`6jDJ#B{ZowB<@56{(>**qeG z$HdCxuF!`PUOMBR=nI{cbGys2PEgXT$1EKxpc!!gbr~Cu4Iz!7%w~GCXPvnoJ}mQc zCo;fQxF~1pXLP^|m2=nh-oJ0eK_BT6{Bz=8zjf4~{UVzLJ2lySh1q=61#fz!IEv7Z zOEWjLmG#5)`y&up?P=?u(*oZvwjL=O3X|`+;~zCU19Vk!5wUfFs`bLFetv<_{{0Owf6fY(P*bnj;3`V?%o-a?73qCl`cq}EF^90 z+_%FUViKX-|{8z zj`bQh?0D)D!RP%y=gk4hmZ{?54R{Y#diURIzXF4j4$tEI=Z1Iv&kTI*eImV%k+7N6 z`f7Fm&g$vwe*5FmVX2-{-Ya&lmDRYlx%2zDfFo2Ssu)_j;k0h>E~POk#YPEcmotV3 zM#0B?lB_&7YHgj|r7KMg9PriDhD{a>d`ml*_bjA3zN%V>Ut$Tiv^!5H$ZL;ifcq z<4S{MvGf#yQcy!K#a^lk%}8jdT!f6Z^z*S|QAEo44J7F10#34l(H6f2UWG*g)2_kqhA&@N@Q#iP-=8n}S_BV6&~76^9Us4z?MVd{7%_O&7624TkPUTK9=f(5{ug;+s=J1};j zhAqPW9w-z$oeWe~5pUIXr`1R?2$2xJnT^Zifpih=L%SJS?v)`sAntlOKB4dREwH+3 zQcI32h0sXwh+8(g<~sYU#B=X#?C(9t7mRC+A#_0i&%Cb5i(YmdTi7A{))ZTkyls|wB(v>vWtFbI!LPYn6$T_sUIiDq;QjD}Mp^zscO`sGuMj>1aM-MFvC4)i zvc<&jt-@$U`0&$>bXP93 zM{#^oAvN2xHIE|-KEEtIRWZ3bwE+tvjYvLA3hK$%4Ne#{8UssumnQ1FU(Q*9B%cZM z3shjWk@b`^e_F$CaB}QJVs}F|(#-~}SD~}jXrA2cS8(t^EZqoGvnnfn<)6H|q{PaN zae$rFe{Xzw{IiH?UD^|{;!tT?!15?Q=_sW!el?4`dW7Ovtow%N=`hMqNM%>@czF~J ztsQoUBPkCzE~Ab0U2#ucbRM~) zgVl!?Aa1iGB$+f!L0KiVJSLF_jhkatJ$U{Rc2+k6<6%{@dvOvn3)z{GS(mR;leC*e`d**V96MP9w6B}n zHFy;yE_{%1)!#4HkmO4ktIFGLFdHw1TynW)ucW1%+u|>4{9Fu8fbQja+;ty;KJX4t;w(iEjE%Hc7D72&`>F1JL z-uGjEug~)PyQp?f#ixmx#JjUZ_1&~95KA2xB;rpscgoqO(qvAUp(#NM>f(PZW!r9){^Zn#_Vtvlk}=hqh8c+bzsLVFgmCJh=VK<;VCnYV8x(n`A0`*^@bUNOx^l!*Ol(Pzx#;^>Do@mnXC$k3Sc)wG z?C*z_X@yNH8heNU;~%|)h+dIi5(!fV6ob*^pWR(RMhVsWj?&$QeUJqc{z4g!)^myH zWgek`B%cevKar(6_f~oJMAxHpHO+ST-o6Bd$vd5Te6ON^3T?$288f5w&zyAnh?$ji z1E^%c9hVZ+!+N5)MFpu#%}fKsr{xoW78y}}xpJ@oegqX}p&muKg8WK-9t@0PD(dtx z2S#o=8G*9BhaKPU4|pFx;O;#eet!$1sAL59EZtSRRiA}!C*FQ_%xvh|dN`w`c zroqriyDzX`-t(Vx@-pnCN(1{Lk{VBA$fm#A2JLsey(g$g-^JrE$i$u;*!QWQDI{%JABICuN2{2VkYVi zvvYuG^fc>|p!c|$s8{ljx&s=KSy0kI^Qrn^C8|`v{mlc$Qo`kh!8+-^syGytnsK z$f%ZOlKH{!Tgj~rfAjpczN^SkDiMz}FXy(=D*0K_sc8xse-Sg(^P!%(RcKkQE6#-m zh#FaxZU-Xg+Qs|pWlc?hwV3q-lMkNWYMspEO)!AHiXf>!mHGs`@?_B_+55}$?aO(x zh-9RO;t^ygxZz!N5;m>>z$PUvSbrl_C{f$}Qh$(Jt_nEZ^4Z0}c!Lu^*XpP!CccFx zWG+zPU>WheiB>#R1dv;P@Dp3I9~-67nda>b){3pEG=)i{eqRkOMyMu{5|BK2s`S{{ zlVw}pQm<1x>RPh6uY8M_pnQko)mu74>F?@8x^Jvu%z#SG%&tP)NWM;PrWnmcBqZWMY$g0cN_{8e`-Wqu(uMq-Tgs0$`Ui9i?}A$fnpToK!By z)au>azX=a5Is5AylccA^8$Z~`_9Z_Q$oO8Q7KxI7;Cf@KTZv(ZJWAw;`b1qr-|E&; z%@5Kamu$KVV<>?PXt2!uC!Ab5y-djJleFST3PVuqcM1req_8HkGEDf17-b{t-?$$`2d3tKsAX*|J zDqlA5$@dHax4|}*yv*79mMH=lybgCE-04`f4tirN#{RJRsa~mc=kh0x=Ot`hH(=pT z3v*e#eJ07hUG$#g0J?hp{xMag@4H$9C8xd_ZLIAWBwp{XJr3be?lU*{-%u=8@8*Kh z%Kf~~=bp70egF1^Xjy1cu3X*w3T=g_s(QJUP+xq-(H@2I@Ec(`0jfGKzNH9JBR*Sj zcdaxmsJ`J_RR-7`t6|@hfjRFAE01ucw3UTyT{AtX*ojmQUNh2xQDw)|2ICysF~fZ{ z8f8(7jnyI4S6SK4;rw#pj|lD|592>4G=`n9Id|3J-(rtf`T9DJPe*P)N7XvA+-xOn zhU^2J(@z3R9qOd_UFI`~9@Ia~PCX&YeV%VJ=N?Z;Es@WWBWdD8FAsQd;zyy5^<{!7e15ZShH>&A7^D64>{?PyXa7#{LJazFYk`iG$6gO3RFi1 z8*9b3^n-P$;8q2>p2tC0nJ&U?)E}lCu(t5CqGWGOWgHPB*vn7soG-hjz+E=Tll(!9 z#nF}ZAYd2AVC%-zN#}2NNRKXTXg1+x-L3B8bZd2eL{t7TsLM}sGGW=)mx@}v_Rm84 zlJj;rM@~g88-Ga5>0#fY;9$l>x5;^;u?{g9-O=EQe^zzfObLHIILt-drZ8@+|e^V%7X-$xY@i5siR5BYu0eEB}*nYgI=ME$L~4-eC~>5Q6-%GbrY zf)eIRtLpt5{J})jd9D=uSSQ19pT(Ok$5IuY|Hw@!N31$IT)P_|P5kJnm)nBJ zQ)%W4tKtD%rJHtk>zEq4DA7vk2>G%g7`U*J=)!H4xvX=AbYFQF(k4D^Z;+eJP2l+` zCGunxn(X{`$f@RC@O{pHHH8CjBJjN6mvc^b!M}NH`I+x??#Tslm(nTpHhJDgP{UeV zZ#eg2a6*GgqkWEH%|u#+nXwu0#&RBfp;3@4lNwahvpBW22JIMX9iPyad+VhV{;1`7 zyu~AX^Q+I+%#^us_4T7xWPpvkFW;~e%5mV3-z!N^&dke1Z#Gdvd7kEOb%lA*gl1tt z^z%Cqd4DT9Kd#E98VHjo=#~0SJZ5p$6~w-hmi!vmG{TJO{Il9mxFCri5>IJW)uqWKj-I~|=rv3fC(`9e3XLe(Cny3hNUS&2IGIB0(bdHodFTMWRH=IIWgyoaJ6|6x}@ea-kY?2>lifUtzxyVN`|RJa&4Bcv*Ao5_xqJ+W)jk<$pcNFsdtH#lj&h}xd#0{*3&UW>p)Jpr=DiOxg1{rwTstdKS@c(W zyBo1ag(y~+Aj%o?pglgzc_O^ zaJ#`1g6;eMDzZp8p!WjGc^uIa>{4a>fxI_l1}3eo%**Bdu+qPyrngeA&pdyg-7Yw{ z;#|0C=uyw-x)Lu;|x{Lc})>Sq2-6<3eGndlsZ~RAp zk1cEIBm5Yf7MV-ky&J!DB-@c7Jh_wh$2 zrQlP8D%TJ7#bO>M=sl(*(B$oj6d_6z);0@)j~6!5>mJ0{s=wQKLwS4eYglAILIq=S z&hUf(I@3qVUpKsUuipFl*ehyJ6ir@i!MMYf#yaH4S+KdyJ-(%)>q0=srPHsCP5QmL z>w8PvU&EU1F(J7%`b)fP@5of^`YQ*ySUD`&My(;vl@LxW_}0rpLM6wIz*OebD$X<7otV1 z-8S^z;Gu9EknOPxMvTo@-2~w^f-^EgHEY!~md>1zzDOI?XgFRXF;jQHhJ6?mW#sOX zmzBE~L;tbX9=zX8oj%@Y*x9Ol4Xgj_r)li%fAzQ$Po%};hXEwfb?hG|Fn(t+1TOyf zjrJ?$(m<%{J{i9|xU(+zmoN;>`2uc-I0hPRqD2BoK)hnMO|v@^5q2J7LwLm0?J+D5 zmfAtMH$F!Ujh$7MWuFb)^)#lH7iJMe9RX3uyC-<|A3pE~u&3uX8m!kL9s1Lj_zfsX)zHv@s+`^Hm(wjI#DrjRz}u)R)k98C1% zp6(F5bxKf^pKnf5iX+G1g5)=aQpC_cqk&Zojv>?Gr#r#M5dvgw8{PZKff-lXz0}86xoAw^sP=CBdo7qNilRpXjJ#=I>e3l1}pT2-uI+L>GYHr z8g_c)tE));K`82my;Ty|Y-V+H%?e=yrrCq9A=|giyQ+V27)||J`6H`Ww`!YW`)a7T z3zTrVqmhl}yG~IM7e3(U<9pB_X|T`+;^M(k5LKGTHl^ceYLWxDv_Kx|ZD>y0=wacI z3^a&z*JGA0{jS;H%i^(4M7kYS{<}Rf@J!!JVK`*Z3=hrk~#OOj{+UGtu_RnRL} z>W8^9PHa-4Wx<5pU4gu&+UQSA;nG)?5+%Z(D=Os-{rA$K|eO(^r{_k7B&R=X3GkRca7vPq29~A5cT& z0&z#B?3q@VWWDZ%gZr(WUlS8|WM)^QPBgdT<3FUC%rC9zh783Pj_-$t zWG%*;VoiyII4pFG$Z-pxwTatmAWpRE@GJ32{D|-Q7-Qk2b#CCW@I$>mXVh3U!ftfq z;Ew;ET>yNkge3N{9duFXG5W$JVfW9~s(JE3=8uC4vEN~<{hG=o?VF{D#s(@nt-9t)19sEv@C9T>bkn5# z@KfPojE#@UR_`j@gCF@(G{#*GqC^mLu7;V_)>nD?K^I5TmC^RedNLbgHPW&!3;lu0 z<649w&w%ZwCJ1z;_E^)_I8+~_wjort0x@lpLHh^QWO4=EQRjS}{Pi5l^Pl4G7Z6Tn zv33{SeZdmuAQLNng_rxY7LXUd^=Ul(pst+tV-E%+>%C_Ic7g7{Q;xF^qP7=4jNu?& z)7k8AG(V@RRgOU8ru|~hE+!vyHZDMNYU{^xFK*?JQpg69hJK9w_0`P zdR8m?6GM}l4OfqeWgb=Q>l-VWWTbo=Cd@rG7xPxdDa+YnHcT|gF4{6NZT1`-PN*^8j~G3SiKueJ`+mY`%(XG?)W}T@@<}SDzljw2w{mFsiRY zZ&>z^(!a&b8wBkeyicAQ(5Y1V$MJ3e6k$4S$@=RxIaX+5p7uz^ZCU3N?VaPHOQhet7Uo-(70G+fx`RuUGSQ z1#)R9!pc@i_2!yG#K3Q>Ze~<@WQCC-*f_utHbo_cn(pDjsrsvvXjqdUiB>Z;W%YYl zHLUWRtCdiz4bhb+4W8-c=b|7jZj7t0tJ*?*`!s`_87`&BDp}p(V)(!lA-rpl@Y)!NkA?4Hm6g#tzyk86<|< zO_B09fIu1;Duh;YUMmw7t#oqbwVqO1|4YRnWa5a{54^;tU8lzSqSDRv ztCw=kh6<7<0fdq-(V%KJu@Wf#g?(Qspeo?3XnQI%vg7OUuEJ$jp?yk3eU!IbJuuN@ z;u=A*sp*}QbTLPFp8g$$*gO9U{&;~(>ou0lO;j>%A-f;7?{|S!4J4p6TVVkGry7uIPO6hsh|4Se?l4iyI&?G#jwBvLth2A&FrZ z6z>(}$nWleQmgkv)BgnvAO&Z~{=bt%oSuNV@quK@;s ze{!g5OjsN+_zZb#;J$66;kyA=2wK;nUJ^o{I^M78^s!pWANDMUlp?r+7sT~MmUruK z+XJBTac%1ty)~a^wmW#&s%fWIGaf|6OgIzAV^j6)?!kU$KmvOZPDme1 zJMUH|HW}49CiOmRcmbGt1vi=g)yhKl;oesI-FmIL#{FkUtHy`Yv5HR(cIZO#xMy=( zKn0JuQW3G94F4`k@x_Ju4XLojTD?_stR9+9XkDE0O;Y4eQ)(QU-Ql*pI^yTjlqq)B-^5uSftVNh?KutD*ri;n>HDW}UN%!2<;~mA})fLDT#k%ef(^;ds zpyDa8#s5Roc?Po8{%_pVYWwJ*sp~1> z9|e=98gRC3x{b~8GrXj210OaL30|bSkTGRFWr7JZqVZXwAKHs4je@1T4{Ji#XLEeQ z6+(}cS8%(y=%vTaV*#x}lpo0Wj`k_gPYf>BP9G;L2nwYYjq22zL(3`;*Pemm$HD*B z%}F`@o`Bgv-0!I|+4^rT4h&Ee&5esy&t7;6x<>X7J=tqivt z&QdP-3N)q}sLyy+=D35;Yx2DeRfTIZ*EQ89goWL`_#qHTEJ+E*r}Vy8xJX)RE+T(4 zF7dq`CrE#5IU9_Tg4>@`PPbg~>*I+e=u9ipA+Cx7$qCo=`I@EJ-*=(?wvo?;CTDA* z)ojJEX}e~Yrl&#@T%tD5ld@j?wU0dr*rw+`;R|H_KV?|T`&V-|07p-kpW8)a z3S`f$s*lgLB#W}g(0Iu5 zkN0>{yB6~z9i|+A%1ZIkSYy5p3Of1SL>@GhqBGO|t{BskQM~rm=1;bD`XJO-F|!~L zeOmA1rGZ*F;elDa-B?taXcM#;zORbDwH$I;XjNsC7m{Mc z9rr`rg=14EWRIPBLBgWYYDG1f@1LZo4d?q^AlgWuN-bYLc`a(5S}ob@Ol59wk*y^`)*Imf?#XDR>&h|dmBm5Hzd2B?z-Qq~WR9H-x-jj(EqQVTD z(p$5!%1Z18_wD8h7NZd?qX)TM#noT}Dd;hFZ07TFb7>kinKTYCT^8XIeZkM=HbI)! z$+vRKBo*0X%Wj{aKFXFgD`}fPbspr{5iKhY@#}Du>~%sMH%g_>1~g$^L&j@aNFmqh zQ|+2hUreajRA(s+^7!)F6H5UO=^@ca9pAeYGM#)}UxAPU=)vAJ*BR}vOq*7F+{b6+ zN#|XsdDmleShkds&n+0ShihTom(0{Y%ltK;L^R)%#`zXQj7lBXd-iF=Mua-}?b`ai z%gw<4tOdHMTnt3GWbM>c5)fd#UR{g^m=$Tc8`95D?z-{ zIp)1}g%Ejp!+WIg>>_@oFn&x`tm;`!-=yJ}WZ!YY2^ikPCLT$E7Z ztI}n~au0_?^E6N`*=JvC?p!}gthG_g~p``P_*t*>fYB#Wq3-NX!2XOn|eSbR!qu8`Rvi8;M7-7XiOGw;M$@EPW4 zbH;{}{)*OFxQ4&w=w=<7pCpZXM)}zE_Hk6_isPUc+QY(~@=-ZcttfommUa7)V0Zgs_J}emV-2cIdyX@a|?&oRrLsm*@1L~e?DOU}HmcMfU-D6P)NzC$`NKjp6Z1y?on|#%pwu89jcQmZOpw?xP_N5C zegK1M{QL+eOp!sGBvuGZ14B13{KrId;)nXfhm7RNckDRrkaqmJx^YXh> zOz{FHfGB_H_v2RY3OP*Eu(nf-SjIWTlxZGy&wTxsQN~#5=Yndv#MK|a$8xRz@KM=n zX$;6SnTQUDf62Ccj>qB66D=a8)W>^QVyQP4Wd7Zl6&!1^$E=U8(RiBo(j(+|6DdTJ z@ThlXbsa2Vj(IvE16xa*9Tgh!s;s_RG_9)Z6xTC^5nnTSD4XldQQGZbsF7N~hK3!5 zRc#f8Qmx-RpXx|ziO{c_SgooliVgWysDc^GD-4Eh>J|!>;lOC1=!E9_0*IJwD}#ny zr~?!v#hqXVuxZ`AgG6+5zSq8kyiWe2jbSW2iq(UxnQqi-lwxQVpTu;S~zI#@m_Uu0N;&u9M{VerIXB`9yfn^1mChX z_H_@u9xTB<=%w(ii@e~WW)phk`zop^&AuuV3BIFpT|w4nlZ~q|6&=?- zUuyX(DD|DkPqYXd!O&1H$Xm*>@E7ewkID^bmgt*1qRFz0?9a-tC+#5@VuQpBf|Z6@ zK6`t<+_JJ;^(b9v6FCc(1LA;w0)`6({3**Z{)jyq$k1Y}rm-#{4Bt-CZU6@ENQXA% zFwVWSXV1LJgL`IQG;0^qQaUN-w3#3H)lKbPV;S0G$90h#_|vx)K)xufng)g;yR^xI z+SHr)dB)l+(KLzmHhQw-0(XUFOa0G?do-fja3r=ON13rN_%d?AG?wIiI5EUL>6&~w zE>f29VXlv<;!t^Sc50pt+EpB8r80+IG_J^nCExyCDLJlTQ4mu)J|?kJTd35e$n`O{ z55rr(9R@g$FF62Lt4sTas9mM90NF2mb*r0zgx<$sPb8+Ab{iVOwx^r3r`MIQw%Z#| zm0cX>g86i83eZU7M>G6?>2$^wQdoPd+(X+E_lzZvLp>)*QQ6MjGuRy$+w8@P#e(QA zLuolH%Y`-FTTulJMxPVRO?WU`+v~^B?uGo@-@kCOdJagVRV>kxl51AU;>8|T?$#I+ z)Ku=gs3B{}qNwexY+WP7^z{0e0sBdLKMOnZ?q_Ow%uv{CxzL;cXnwo%)zPxv9^fM% zo~85^Rf~nUN-AlQF8_@W%C8u5&BDr!oUZXG5W?nzzD|5W8Q1#LNR4Z-& zWu1dV9-zFCkb(=14q$e#ybd$kQ}5AY*=2w0=?L13Nzt&KAEqZ;=*C5{ta4Gng(r<1M?D?1OvCOX=+P{NmToHYErWRS~0wRh=PhQ;1QrNhL;tDe-=gec2 zdm?>Uu*LXe6!k8NJx+2*0d)lyF>&hc^fR;5G^LAga=Q>b5hziT3MNas_#|{&rX|^q z6b2O-=H_ZnHT(BVsrFB-G%vS}=p8Z|wKpnR#T1p#i#mPH{TleyrrZn@T5mVok*6bS zR+2ZS`l8&A>Yp}t&KPqXbdJI-=zGyFQF$Uch@P)HcYE7qb-4c01qv85n^{l($J%}r z52X6gaJ1{FzjT7(R|jeiE5E2HWcEFG1Df9=p1*X7TGwd(ZJfJp%?plvVM6DqLz&BD z_>-227K18s?Kf@4!<`#{nzZtKga&D4mFsHtX>2*q(UTCtT6+fvAdUBCMN6vq1&;y< ztC+6BIx&4|%!$LYbXj;dPH=k)F6aumlwn?MULwGNBovy+QAV*td9lGfyUKk=VruDzAq&SyPchmxA}htBABU~dote|54~jOeY%b2 zm<)mf`7V)TIz#ClcjLhxly}|r=%V&2caYkZScN%O%^LFO;}he$WKOHR(oMCS`&2Ew6lVdG??4^LOg|w_V>|p?BAG zJZ!hOm#Dy4BVDKCvJ$+^(gpmzJL`uS)Z-2=h;lH;^!pX#mI(K%Wr(I5j$^d9cxOCW z+4{Kj{8JkT?9sw-a)ba?g?y)geDYwFYA}z#0ac2)yXTl(xORT&3wG5)2UNpDf7>Uyufyamapu8>87t8F~IaB;EhzsLI1S% z{70jK$Eo%y^yFe-{67>i=5S?XyTxd?cG0v0l^7Zwb8Fof20nR0Y~vv#!Em{>JKB%3 zkEo{e19=a<-bob_v4d>=<^=%9K<>JaQQUokhoal~=VG*+Zy9Su4NfrCexZn(qRc+; z;1%<>;%)Emy_%B7aj}ObY#0-W7TDVaBO(G7GB4t%^eby;Ct2u?)rCL&OZQ~VbK4Wh zp*=n@9Xp&F2=NNMqx|$sz7h0{dqZqoq`tAHA?|lm+}KCqM?8rd_VgAc13@GW#*ooM)8yPMQ_8^fc6^D z%OWoIq2))#Nau6TGZ^koETQ_S3|NJ~0c(;qqFo)~S^X<#-ZY6OUXOO)8|VTyf6QA) z->H0i@m>O5ne`Owt`s&HymKFQ#opc{G(djf(;C<=Ay_;5tp{A7@g+1U{`TpUVTB*} zVWcm`t`Eg?QZ%`{aVEErZK(*BP=EKYXUYt(g0HPMUS?uWT(x~?`yxZ<5zjnGoTGfK zEMmT~Tif+t^(J76?1n02#%uxA?Q%!APsuu%xS4kL-|URz6vS8x)d?imHF+gymB|^b z2({w6sxP}w+;l(CY}lYm77-qZjNgePMyFg=G&~+4EHE=fcJ9 z15BR{hVdJ+l%=lt`583K*K+91xz7%;KV&xZa!da*;fGULWFyg@0a;~ylg*3BP2Aqq zv-y_R>EFE3>dmeprli4B=~DZ(pcI3iczoP`bb`9|Im+bT<`4D9U`T%jFpCh`Bs7rS_fRsN4uWR3b2x@6%#hUw8d-0 zaS3t-j(0_!W@o?c+8Ckc&mw0c#DcDMICdoiW^XP7Z58S*BV5DWL87sENVYYB$K&gR z+Xt$3Aa=8dv9?Ru?cbUo$8qv5EQqdtO$nN-m(>&B!6_l@&%)2bDW@!(In6O`sa_4$ zAyVGc5fVbsx?JmnK>4keOiqxSePO2L0M7?`JxP-y&s624j1P;RDxTZs$`^CF;2%kY ziUEYCaEonBef`)uH!%#dzz39pb_IbkszLe8I>7bA(Pw+L4)%Ai3T5CoSA+H*f<+gt zE#Yx1neP8&>ZQ8#>VCjk?`}Tlh!{1}5k&orq&OnTDMpT+PLzij4=gRt(5htJP+K2K zKU4L&MJ^*_f>J*qZ>(^WMV`Y`>0ICK$p9nyp>( z{}K9NeF`@3A=OztMb_b7UO?2_mghu0Zdg}LS9U_y&-^4UGfrZ?(V}%M&3a`V>SZC? z2M-kecQhkbJNs^wAX}gCoXig+80$TQtJKOrZze<2Oa>?b;7NFD!?`shwT)O)V>0{L z>E+u`2I1^MlPXWk<4czXr5dOF>7R95K4!K8;%#XE+>kLPqA}ECqS1BL>kls3@Z1-G zid~`SRRIKv{_jKRE&iA9F#MH~f0egTWtdP6=xO!{V}LXqU)=!)&LFEBu(AjI@r$Y= z0k<;K;5$*my<&;IobMKr{t24h{W0)b>D@A*9Fn>uIwLZthmdMztwd%!$K45@p62Lt zjc3lB_4N(@*WFPa$$4RZai;ZwxKdN(Hx>vUC`4}z?2l=CPw$+=!cq#Ii1m9!5%s3< z&C4!9_#-^^78HW2eInRnS@gcYVL{(TFFJrzTg)wY%X8bBw1&;NnuI_NqmO+;CG`v_&gV}a?zQ)AmE0flFm0^>H@)s1c z>r$b^R``4rtUzouJ5RMgcd>3>gi~V1UC5FGHba zDX|0Yy6SUP;Da?*BDn;uJ1>0GR#mStpga8D-u~OaxBB8+03nDQ8h+uvZ0i_$<0E&- z($}RUvmJulBHho(An!E@?aI+PKM$|`&y#fqswRaJ4*N9N^)v!BzM}BHDB3;B91SA=BMH$MpAx)%5JD1H2b+e!Jkiez>*zm+m5kSoG#s z3-r9>&TINh7q46W_u^GTrqk=?6CanmiuBm>qqe!2Bg}V$p4lwH4-`fq9Lb;T|L40~ zgr6!;@;^u4cK-bL$3Oqm(zAC{ltUrF=5z6;f2!=Th>CWVra$@U_ID`oOMx?q;Ox*_ zOdPB4fn^z!!JBneMet%@AMhd&zvl!*pvM2#K&!*HZ!YbtSr|fL)J5PyXwzo0!O$|!B0}8&H1o3xq z!G3ngyYDQ<5=$)8zS4;`i}>766cE#u3oEN@%78{qkQq%eVk=|`1q!aD{7Szu$cTx zoi}7PzVLF4>z$O<kSAJ;MvF8DIrjk|v(%q%Nc~a1!fRODR@qzJP{^A%7cIQ7n$IcWFK-qZK z>zY!{3v5-c{PaUGrr%sV4`vs^Rr|?Bw4|V)IITU93hO=wLc&bV2+3_9dpVYb{^!vu zk+C~DM?A={>vIbVQKbZ|QEB;awWvs;PgekuC5nb4?i~%e@y`(-O#Y=)6+{i-p6n6v zpG-v?HBe!JeSLRS_)zs%0NkrQfp8@9E7bKgbngiewg-H)tp7&t;j!S}ly>!@!p;9( zv_oNS@*Hyh+@FwAB?^4~!?&rhwM|u8mPpDI#`Ign-_qfX>Z@oIM5fAG;!~rP_l3km z-ft<@CJjeaQU1=Fh$8>BH3Hu-FA5C2EQ@^TwW&kZ5~ByhpZ?Od>1d-?X)pIrBbcbe zDY_vl-wrkWQDJZ<(*f3b)Y_*Dz6A7>)Q~GFPXd;X7ty!>nVmJ}jRCCJwnO*Ew<`}D zyxNAo@@;Nh8QsDfO~s%j|I(3=NJ^sIlzy=@p&&t4Uj%k33geyMhtFwk+tS!MotW|- zJrz#FW9A0-=WD+$7Ai;JgMXqTQ0Kmn6Hwl2Dc_!@0e53qf$r1qi140J-(hd`USE$6 zos7A9O0~}`gSEu7BjYw;8AjZi6I;C~N~^l2;%5 zFG2cE=>1u(@IYV%>2-=GfuH^s? zCgZTPDSewwQ?=pwGtJW07H>wanpunkp<&M16USj$CI9sIBemr>TO*$cjp^#1#v8K? zLN&2ngF&Pj?SX;i{TYT6fKTN}kZ(&>QkR+~MuYZ9}J`P;; zAsy*|ZknzH-VABfd7h7?SDoPTLB^BXzPrumvk4Th8;1_oXMgF65en|)hKvc9dOqbz z`dDuIm-aK$>u>)1_ASce0_!)@W5a>Ys~@*Es@KTBgz)HUd+SxF{2cB`nZf1Hk%q5> z!%rVbyqeDgl(S#scQ1P@C9@0M%PHm1coukf?;E`zojTpc zliKNn+z&0MWfQzBYhG};=@r@xK-mmA3mFcO>o z(!FNiIQI@Pdjzd~Xn)7+h{H&;yGB=5!E;y;HzC{g*6$(X#*DP=%EQJs0?6ojptD;( zN_%~7dCqkt1p#P`!GVqnO$?tMr^&(AwXIVv4;0KZjNV)w<~;k3bL04iWM)h9c2a$l zCG*@#s71O6DTgR;ZL>!dW4A^6iPhn>2*jK5jd~!FWYPih9|ipmn{xQE?o`0d?AFl= z6Kfje`@Vbaj|!ReyRVKCH8iy9YKO5JqZ@ho)D02|rfGSz~_Rc#jF>ab1H z6#L1ba7AiX#NLN6F&9DM*nwqp52H!?IOSA<&a!pc<_l?yD|MsWmeE$x zR@eN)dCh6gu)>3YAJ`4-(b@e;R9hp#dF6oC`YpsGh1B%Iu^a%+FaQW|ItQ#rLZ z)r{R5v6e=LiumB|Gqz70438V}^ZLJkZaVMD)`yEcOuhC?(l!4v%6dZjZZcbjOx5#d zf?(a3`_s6rk~QIsd^D2WKa|z(Ye4Nc*(5^{taO zQiz0iHN0eDH*e+Zf+I651!O+a=kKUw7u-VbVi^5_|+rT?&RJ;KjKbBSbqK%lRF6v&+nT<2dIF-9>%LED)v06^WHUE)b<1QiIo^TK4wQrITjr1%XO57Y zxuBel!apb~@AeFD=Djg*jR$Z9RH)pJ>C5Drj9`DhRg1hGxC$)@xcmRoHM|gMY?ARW zf6}|z@01UUXDey++;I&$q$)TD&4g`=z$rqffe5W)$e@TmHgjTo(cJ1w+vMHak?}yt zfU>n&$a5*e;N_gANrU^}aVKdS>|9|)w(o==Ul?$KUe?ydXX-xHpEugxIJX||Pt2T2 zX|yCEI6NG#yan;?Rx30Yjb``XAo2=oldSu~&L)43n!}m3>E<8I>T2ue@oBOh?j*=@unHepKcg`u7yfXcqMx)pMyS+d7EFHf^s;D) zx|`fRToip0h=Wb#gFv#P)#Lwwi6WvsqLqf&JqV)FfVgW-uKpk7&W^9W;Q|mSFH>!E zBVpC8;Hh-tl28{ZjFi;cx*6!&3P^_Y^UgFWo+ROOwFvEqV=8YlajZ}{S5U8E zbXj>~jb%_$C#?11puo%ucCgfChR3kPBG~POt-^c6;MH+jUFMg%v$d1DGwAB%#%Wx| zRyh?>JXe4GYpspf-GOx?%*@qkQPX@w?`K#-PIGhf;~C*8{lT#h&70{(j?VE5pqGgQ z0(a}<3R43zZcnE>iZ@S+oChODXWE6gM4X!u60~cS#=dF${y@&^&kY%9<(iq^;2#zm zCH~@e)T$@u?C0AT)3|*b76ZYgIsQ=U$t19ih1~JUMNKJly?U(Fl+cSP?u@osOabGf zPZe@1S@$cqG2SogT3|MJv}o7Db%&NgBv3iR~+PRNZ98elaoKHKnyM)yICu{E=Su=BDV(L5xAh-A4SG42~M1> z&F|pWh?+{%|=9+!tDFjKhryGq}}fBAI)I zsB<2pfk-GuS4rp1@3=#9k-p#qsK|&yU0YLdIBWLQ&USbPF(U7f&{noitq)R#dj*5) z8XH=oY0m=zfR4-i%2A`VcK`cnt7b_lC&Uc(j{MPg9|L3BjkGg6BSIA_v2E;51L)3 zd3Ls%@?c1_Rg9q!L`Bv7$?8>m*|0?fkMFGmyO34lg&7JhHcP5i8|1!rGFp`oa{D>h zSZUtJ>eaUd$Z_P*+6?6d_s7Gf_H z{n-Vc1z9wLbe-q052Q=!iDc1wNte#n$}HeX0zh zaNKR{7Ka8)x%=1i3QNL>NaE1K9H<#L5)expN|2W%+t&8nuE-Id;I{?IFMu{vEyY=BI(f7ID#2&EU(4G&+@$2EH)>CNJ2S! z(7O-Mq_&>yLJVB5dpaQaiH|dHU6Xvy1NbW8mog2}#ad^(1^bvm!EhAUtJ}_d62{cvHGd@wG=p0cXU!tKCN`vSD zrEqSX7jj@rrd47KIxWN6Vi7L1r+pSe1$|MTVJ}}6 z4R)oS=>64qvto2YJiiycxSD|e!rxG7q|-qA-ct%Y%8sxFQ^ps zzNoe(8x%H>TYh~&^X)$x1O?~W?xF+1_+dkAwBqOB?W0g1!p;=!+A~5bVRJnd-$~rw zSPrbwU%xv_r9<7Qb{z}6;X+vOBbO);DiI@$uQkLapPEW-`syj6d5Z!$ww>t8Lp(BF z`)&>@b_}j=Nn$pEbq<<+t_Gf~{?sT|ZnEt_MCqVqgs^xA=u9{%P^pbY5tCf2RT{lO zab#+*ASan$bDQ`_J4SZLnEqua@tNHU;x5&Qx#MVH!i;#k zecRl8Wqcp4h_)e=$uzA6P*Wrf#_#VzI&URwOxF4e6ws?}erSo~NUZS088ydEI=}UQeFers> zZ9V)_K{^I+B2x)VX?Utiu20*!oejoUGQ1}1RJxd{r@%74(au&xB*V^vFtmk!8=GQdX7i5@ohOf9e z+$S7m;767S=Cdrm81hD!lD0Df+wYQcrattFUrfXCzR!NzTG`>HUHG5H-*qjzzmo;` zWE6)MyF(Zse`&GGebuHePAPFW<&)GgeV+cxTQ7m~gO?5U6-CTYL2HF7%CPgT&t1}p zSd?KV1Nh#2=N9>Q-&)XoDaVZmWx}mSwm_mwH}p?#4jsBDUypA8V4{@ zsi%$5l=p^vfHRbc;n22>c?jZi7|$N>hjN&cCBZWg7G@gmyWmI%gPY@199o-*-iJA* zPAE{G7rW_5K%+ps3dmg~Fhq#fbN+Gm!fwnJnDz(qV#bP{kz;~}<@Z{R=2*YY2ziN$ z&IUCe?ViTtirGD!86MvLOUFrh>bvcm=bNnl z#@EKPCf}mtBUM^Ny6b6Se6kZbB--G0m$eOPTsGs?xB%yZOPM&w6M3_z7U?8EWGtdx z(h@a={|&wVT(4_-sZ@h{ha5%MuAWspCMrUQo4JgCc3xObQyKVwwI4U-6vch$?YP$j zlLg3{I)CXZ^Wo>7hBX&#c{x<8Lt}1yv~LyxO```GnomZz$!CJR>mLVqAYuX4`02Ta5<(xa2@yUwm5E z8tKRa`#iCr83xPI$@X;*;p+7-5C%P#{ZctBZyV(%WH5T{Fw*B=R;F4iNNnbd$=GiC z@ct!}V7{CwGmjx)^0;+ulKZ<%t;*o+z!a4)HMzrb9NCh##>fVET5(y$p_0k82Zeg-%NAea23;)oaTwv>1a=6L(Wf&oeHu zo2dDW7?nEgE`*9EjXjcd;itWH9mZJ)pFGRRpbblU15AsVzBwIuKTt~Zwc#3y7&L?)fn>0Zri-f2@{mTAnB}-`& zxlZ12iE}KkgDYGnSPyy*D5mKT$d?wileDqg-%v5xDM?go;Q7zj&gp`dklR*u$B(Yv zVFK+czX^M=;3d=D_c_n8qbV6zNwWJxxl`9ad-rD|GCSVm0O2NiE4((1&*Ao~@p4h! zqUQs!k~9zhL^~gM!MtUkAh3j6$|I3>t8Nz#Lurg5tAzjlxNmwPgL$!P&*vCLRTDGc z$Ox+RQgMjw+*S%%iiyesU%+j)?+(wSx77D?j#tRFXSR+GVQ#x8?dRMN$*B1)TbJFK zn82NDu&$PbeG#-6~&*I z{w{m&rE6tZ)(78DEVvX<)_J;}lU4)5rkKXdY3N>lcRfNvscS`Qp&&X@_9k+BUM;X3 z$7$GV-3U`z`gFkYEA^`SLu zV02OoLouv9OpL8QLTYW*oJ~3V<0y-jnsZzW^R-$hPv=S*9ka$r?LT-B`u`hE3#RbT{ChHe~5~F1nzZ+9BrGkKq_U_CVOADCRb*Hd>w3 zw5Al${z0_YWb4+>%aHZ8fr3He>v;v+=nA!jYDc!+nsk#WA@j23$#@=er*M!zPj&gi zK8I^`y589vZPEPf4kC01I~UEYgF2=lsH@YD7p3i_{@vH120~g6Yf}?F7bB4A`GZA= z_8+zWiCQ~YQ6ZIM^(#g@Mg2w~rE1vQ=Y>fbr_cXI2eJ#fP?0(PN5R{=zJ76w3#-zqS1w&pUHFcZN(L=F%L~|cRu&^E#Al${tBx`Pr(X}-|8pd z0K=uk0nJriCNRTl!XNJcSm0QLbG<*d8eK8aa6z9upq=d|?IOLW5suI88s<(k9M9jr z&^{a++AKhHv{?fl14$;p?4muchF8=s9Fkcujd$5q?!@zwNwXx0sgx^ZnQkqy$e|Yl zH>PL#e(qoaquNX7!1&-gnbuCq3SQfVp}J>f z_8hxz_*g}cXb~`TdOogb@T1S`m{%+6CCLDnbVL6x?#KJ{A*Uo;D;^Eek*M^Xs26iU zW8?1l80)=J9kfH-o#p+$+-)-*Zs#J0Q8w1ag5$+8U@UY9G~wMZks2I2H4|^(buNu) ze@=_hZma4p)n-K5jNleUi=eGf0ue%OsC&O#$4;2Ew@LFtAGmbwD()UE>Q9(g zT1D|sYSiKx+3v5N^XiQNGh)OCX=T6d9egIfxGg+L`?2=#4{BCzSYXu?Jx{J&NfLn| z5-35X6-pph9B&RE%1%T-WO zx)>p<+{DzagV`?~mHr|pB4*#IkTwD=KOh;hWN_D9Y$$QlXmRQMgZ4{A42hc0ITB`8 z;ZY0I15Ip$WCOh^t8p5tpJB+J(4C~CYkalqp~#pp@#Fj(yMcg6#T^`77>rN|-EKXS z>s$^oR`cz7v;iyY&FYqZ*#!TZo-ROtXpY1y;n5QRo)?uGxC^F*RiWgqb1jxKl-;3h>DXld?p0M6VGYgh zaW-x7A^zRNy|LAu(Uo-m@{VRSL!VihsM^o22Sa&_Ah`_10c(o=`Fq66>UY{-WxmZZ zh5bWTnH6f<1sL*BaOe80+}LIyf)&~{gbzC*WmZ%>Gd?O1pJzMN6h|6+ZUEqkf5KhSX>7zwbwkjG)Da^Xm%L zYV!>I4K32|nMiFSCHd3MLF}XcA=<_K8q>+eT6+4h$xGknt^XId(#j~@6hN!qr=ACG0p21% zZH};qyX;Y}>K5G&io5t2KB$K4CS|tSsrX0O7_2D8Z(3=>fd6jg8yoqGf6Jr|{ZacJ z=4YSh)>fd=gmvh#SJZU%s!Bhjm%G43TdV>IcGU|Bmyn%Y{?4K~{ zU6CG{xCqugrg(tMkdnyDL53_aXvk=ykBQNeEe7*D98kW$!T_ng`hl-{Kq9m1cn zTOCvVu5^uv7WcOotV`YDl;|-#NPw2C2H9u*miN@~wT%$Z6i>tin>d^+9W7OufXZ|c z(-j>3B+{V#^ae`{pt3O~i)CgMz$A{3&#^6P3Lo>KcoN@&7T(F1tCIt(B|hIsH>VlRjkhfaGv?vRPQNUPoxedcq4ecc5R2A)`i02 zyO^TY9D9cUi5QyW2=m#kwW3Xg%k=VI+67@3&ZT`eZ#e8c8ZWvrU*To4J*z2W^`#Zt z+|W=Tts+?0kdgNyshEe*Gw(hg;2K+awVW8W%Ap-1CKKN`qcDnh{ILFXp1R5s6|K#b z=~OWkhW&f{m?hnt0>L5RZ%MksA|74jyUU0$b!B?ILm@JesPZ8 zjr8^x6m^-VVCOL_u}ji(>2nS)UR$+pHoZ+|-2M(x>&oXEuSN+_F?AD8O(X&FyY^eYNmuUTH6PPL~xtDCnwx7RSG-d1(4(E4Fuh8TEu;8R( zxQpymK-FMwAEC`P1vB?riQNo=+HUQOFnE_;NeLgbUK+EGLlv)i3h_Q`QRP<-!#)Sg z+`6R4jUGaq8>7}sh%Vw*?-^&<({msw!41IFTqh$r@yS1=alcKurY2kSQ}$TC1)nHC z{gW>_S`bpDQ}N^&367{O=B_AHu!ozD)s;zmXO5~5q|~-Mi8+<(wra|34>4JrKo{PI z2DdoGo4HRx_+I<6JxG|}?60?vx9bC!a5W_)X@Gc*%L5B4u$znK?B1-;RUAO(h^=1V2V(|<=b0ieGdZ0yc$JfNNZwYc~6{6BJ`hjGy$9Q{`mCtLcO(Xl8>kH zLE|bgD94~}eIrIDTHYO9lwMC=s!t2pJ1;THlB(1=iz~FD4Q1}O)Ss|q3BrO+%kA~& zUI_h;GwwYO7225;NLE2Kv~A$?wkT5PGR4~nC86>aKi{M&h#0n+=%Y-!rqvWaV1D#F@0YZ??_{$!=3BcIdgC?_+8ZXv zqbnA7~8UN&(nPyN0er2Mo%U*Jg{(jCh6On)UUsP@p5&_t_m5Iumm2B+k#x4x`%oHdY| z)YCke;#edeoU1VvYj5nz`_d}a1&CMLXQ1?O?S61?*33U9ek{ex5Cz~#iw74Ax~>?kc|o{X-I7M z)(ocfgZT;^>XNC0ljbZo6^q_=D%$BkHTN@^)MN>lrZ_gNbueNSK_<6z=eI=Yi$w`u z{)V!nTe@3%@Ct8_ji2O*8-SoAOssUyqm7fDfOzJimV2S+c%L*rJvnU;xnx{x?Clb% z(hotxqcXNIsGGWlKNi^)(zkXXmd!=yfg2lRfrUC&n5!)5e-5;r)eS{gK zB=oF<3TwI=5r^=9gG%=oKIDA^xn#N(_`!2R~cyWv)y*-<7Sg*;?{eK4lzLxW05_lRtc7dCBW*q3u)^tC`z*Ahr5D^sO;4 zNbPe*NQL;UVP^+2q~ambx_XbMX<1Z#LCQf7-SzB4-haPqwS>ZX{NVn%N2-0FGGpMO zz8|I;wRzQEK07=FCZN?Dd(^=H>8#pb?3-NHa$5iIGG`3sXGYw&q{o<0t90~uMMYc>2CF3GCO zm&C8$9F)z4q?&9incG)YRqu~AHF(sOjh2}+Dr}S)rXSXg2@MEW&UG9H8?2SYXs6}A znK}(!O-m^q{y&X@4mdL$X^l9v;DxM>~^*CnVG-M^dTEQUmbOZ!K)HNys0 zP2z>qwupFbjT}GXXu_qtLWS+MwwNT&3o<{K67s#4S^1gnSR`tBIe8)UP@he|4yhS@=nGSpp@n^6-{5vl7w0v;H?Cggi||`GiWsB$m^;&^0QD_j;J}<3I59E zG?vP;j@%>WsnPt`{H7xXL{md4ry@0uPn~dh>3q2KRQn`!e?@dLP_5lm_rG!FE z8K6duUF%R2E;nun0Q%OHq+0WhGkOqjAyWA>T?8dstVm1K~eym4I_w`-6H^P8UJ*ch53KZ z0|8QpfWV@H`Oc!RhCd@RQXO%QbOZ#yF!MScuY-3oV`l=aO6fQ2=>4aJ5J~5R{qjQd zd=X$EkpJ5i4cux7#ST6l`1xD=#Q+m*P~xYmNM7@&1+AdNQv}+d`}eD9@N;5G+Eoz| z0CCahzfn;hnHilr@)vb7ClMz;sc>H!eWlHT=-(E}?Rfa;{vBq3wzxO?xn=f5txsCw z%aL|1W$RB4a3;zoeF**U)1EfD7bN62iU!06awCA?1jG!1+Nr!)^^s4qAK|@DtWHkW zc^_fq`i!pmomsD|acyqL_)f(c~-T&kz*L{Eo=73F7JEN6kv2%&4Z@&D&1JJ;-@Bu(lB$gEOGFLN}&NCX3CgOlb0o%Y8BP!=%L zI8k2^Y5qv*Sh&k8T1!)1c0XcC4`MX$E#SSvj@?T7E9ocN$?=FH(UHi-#h_KSwJ^%> zHT4yOu%h8L%G~vXFo&l^&=sG(v$q{ytXZy(v4}f)V|^0l$Bh`PCU{CQ#Rqt~E^-}~ zVlL*sl9Mu{eU6ZF#CZNOT3B06NW^EI5%%ccNL?Ky+TsXML?rHS+-BTaNXk$0d(RS> zQSJ2G`Q7uc*Hc3Z1CpkvCE7`D>Dwhy(RYkeJ&f-%rG`9Dd`H{|rsSql^oB|pY9Hr& zS^U`M%WIyg3I5Kk=`-^1&f@nKg}z>13ojs5mWCU0!)Sc>{t*NGb_?3fz;DkGb_M10zB;RmS{GEE$#_n^Lnir}ta*h8*ViN*owS`#kG5SyT z9%Z@|IR={i{YEEQ>wQGk#Y8zqlw7+&A5D6ExUfd&>FWY6CB6&&&Vk#Gokdgi_!*d< zf;@g@I6wp`g%747oE$$PAw{BO!}854=umcd+%v8e`83$+ni|`{alH_+u=9l(r?7T0 zr_N9E*e?^dNeu&1D?Snx4Y1wmzf4LNb#>X6&9(LZ7CwjorGBC7RkxITdd0*ofU;WH zWVuHw&mD&yz4FF%AYg{fZ2`2LC70tJztKF()UGWe>k0XV*y)fgXpT*FdqbZf7f9<) zgUUkpZI`rLRO@>3UMK>Tt`G-sUl46VKV%o3Q;jC|&(%qNe{^2zvrt+R_Cb>u>*N`s zZ~N;*hwb{RLHx5%xxA(STZ?sXq4GP3!#mn)M?;G=XD^++|D;R6BdsLhOMCU|@Z@#^ zD}`PU*L`~`W&E;>zKj3U)zx2ib|BxX?`{8HSmar}$noeVP^vnLrJo9vh_#C1>|9*? zj^my2e2e8Dt9$0D^EjSjbh+}p^HBO*9I@p2#1WJ*wK`z7ZZNz*cJ}qxc0eb3=Pop&)Gm3t^Xu<4Cs3lss;1Pz z9S(^KY?;=d0@$;&AC_g#OR1uiD53JxVUVc>eQo#e;8>*%}CHZazejaX3xzDXOj02-eXHc1f$gIo9tPchD%OozvR7AZf58 z=ovRo#iuQ(ut33+=Gcr>s+XY!es!q!<}}U(w6Vzv zZI~*96rL!70!_@iQFU89MiM`FCpw;I1k%D|`W8$uW7YPiZcS&JQ6(n1BJCrC^Co2l zLn30|W@aX5rt9s9U^`Tzfhi1cJAMGZ1T$4Jl0fAygEP&hlwo?KeTSj`QLWXRu^n9I z5icW0e@xVw2;Xw8iyz;t*iXD+bK7v{MeV0@bRiD3fCvk^vO6D=C-G#eI~a5{a^jCz z!XbmdGUVWGgiR;M!{H_k5udYPpf8_*p0t)-i}paju`lRMznXh3i<|KAtR^8Kd4kjA zhT~P|D-9uJqB&JJPQ*SOVA#HR@~qakNGTil8n z(;X+4Bsf*XyzHA|x5nwkOK9MGkaYdNb}pgop~YQquW=ERC-+8?*3^nJJjJWrq?)*k z(8<*dt!h+J^>gU-e6O0z{LH)Rxde_=ElIyF)mg}<^1-5bRo~7pPQcTpSF;REJ3@e7 z%4nlz@RU6TS)71Z_!r(nIO^x_)dR z!@%}$Pp()X_A*4b;p_gq9gf5PO`fBUn8uHu8GtBWOMr@$CK*@m(=F7nkTuyFIRP@V zMlE5dAhJ-eb`2pbQ#%j@IDcB!XB=Bp{r_v!1h4nP&(6G4D&tmh694mTH(YaG7h?qR ztilvO7)FKXms7p$T;#56xMcDk3cReo-5c_GhNK!Kt02)3$^0(#7d}+8sV;58D1@>> zFfpCX7zAmO#wkhlqzHw9;-)?`=E4~F;uyQDS$s)PilQgfpJzyN8Hih6&p4V%>zgfPi2V8e#B^A7TRPD&*#kUsIn%N za0B(zsuC1d7N}@H$qMT-z8CVca^C1!-9-l?>$_UHMO(cx^xoD@&hE4X9@ii>6m3aN=8v;b~|Sbk93>KWYly9fg#$vkn-Gl`L0lIyvd6E zAP4M*p_x9Dx)eWU83UXWR9`kw$lZbB8Ez}(io%zF_!Ofq4#`zykak!H&YdRV?u2Bw zUc7UvN8K@K6@aerD#BXmBQ*7VKbLq|)V(y=BWDi*htER7%?_1YSJ)aHzO&{)1#5s? zZ!N2>wZ0Yi%ihGQTbbeE{|3HHcNTYX3)N8!eI#a2d%&xqab(dTtl}*x30*_rlr0~h zPJcdou`T?e_mPw!lS$Az?FvMXM5_|k*klQ@>VL)WssQtoec|jaC#4T4#C>&*>e&@X zNQJ-rdZ+xytd&P|Gu)N|;2Ed0L6rUV6XiWk#3>IarnH}-N$ES9c0(98-hR`O@FuIa z5uiXySkI^=50)?7=jr*kYt!4L@8C)BhX;i5IK~v@w%?LjmSvE=s;d`X7dcby^F}?Z zWYRh}C!hf&mzPY~oLt^VNt&7s7iO6VE0|)^6Z^0c;*~$yhZKo-FI;{x1UsKGRv7ci zLwm5jb>1~*w7*_|ssVRkLK_IFS!zl+f;Go^O(P{{281b@34A}mJF?q6*v?V;(avFP z*h$JRIc}|>ViOa_);z3aYM>fQ#`d-r2v+R(s;r$I+RsibG#_7lqSI2~ z-qk)YD5H7jJ1O&03$%RIR#ESnpTGD>9BMysfKdVRJj5kq8Z=b^BbR!(y`4b>@08U* zBg^^|G&yb?)r-No-l-iJwD3UHCq}~u+`LVvtB8laOC(xMHBa4Mp-C8v3-NJov-sA) zmT1~|;IP!1tMtsQ=S+9?abDF{ex@U5k4~<)L;jOVJO0Chc7{9oE0;bZID2yeW9=Qh zD`1eR_K2BeyVrEAfHXN-_R_K0LUe;bTXi*s(+Jltwx*@5jyktGfRr5`igpOD@PozAD2&v3+NXf~%?V4f}8vuj1QICs~{OIHIOU z5B@fGwYghq6vu1RTj=1RI05EXHT9~wFnW_z^LwoxT2#tb&4B^kcZO9C8erJYZ3#AO z6b5c)ltD4gSz9Y>Ay!Eh-6pGtGcJs-z>Un5DBjWt?n>iKcCFIWrROK)9+%x3Ke%(I z`T=oDKtcKeN&M|^>v2;%1nA_Lp>et4kVqrK2s=_ksD(sS1(YW`dP70ED%0cP8CL|x z&Pe7=56%)P_puzNB+1eyATbp7=6Iixc9bSfaSWVUZU(225bOyfc|z2v;L2a(_PKe{ zvzSlc+0qZ=1DK7c9`q#WE(#WUj$Fbq8*X(@>{N5|$n}~A`Xax@gUiept(As6F*O#k zseWN6ofQpvMyWkPs+Rw#{jkVW+d-~6x3!{~Nqjav5#DuIjrCf@4nq6)xZ3;dO zi{Wg!@a9ZGZI&MFhWMGB5Q5=zTup7BL>O?;n1cbJ_`S8U3X)uh zU22lF`ONE6iT4S-ir=R`z7cWYV_E(s^9>|dkkvGS#5DR&jO!m%HYJZs$aoB|&3J9m zGt0JoZGzHM;{y{SG<4JJ@{Z+rP@TP6nTnlC{mpiExkUFzMpDsw|8PEjW~pQic%H?7 zW8%Zjd`hzoiU?rT!*k!T#khv^ILAzIzm9ruC8}`l^TV?a-_mV*MMnxi-84o+sPMTM znAiaQ?ibHddu`-f)IJ$vg3oLl9cUcM+E>Z+@STAE{6}1I9B_Sty0LMWid)w67Yok2 z$~{gEuQBygs4hhBp0BWLH@o4f_--k*)DG~pD&Kc8EMx=5gFjjAue^SStu{M)OCEM*(Nh~$$AfZ_F zOKgHgLwaUxTpy?*xa7RrrC7QH1v*+fsyZtn^iWvZ}6@{&49_<^C&^H=} zT%wHPTSv~nyfzf?;GpLGuY5D zG9f>4us?CU6-a|~GX%vmRd9~h`}nXm3IQS>0c1Rha^DeRC#=$mt!gFU25;cQCRhIv=WiaHF!ZH8;j#+uPX6Djw=9IiKyhQ~lv_8g`iAIBuqab4<#2`tZ3f ztI)#wL%#9jqQOkehsTBdzY0|)F00j+N_S17Pws@vlzL8d#40)3IuiC16>Nt5kHfl& zY^T65?p56G4Hk%sf}nT??e)O^7Dj(;_WX-X{9Xlm3!5+f-!ZvJ51I)w^8;5*K*)w6EzkF^8)+(h}9AuJ;+= zil4%5q~zLTRxL~I%RgKn{2zATejUeH!fm;hGJqFx!_}u41cY$o-5rEeRbUF_C5)yU_wrzkwHX=M{5pj z*ueDDE_;5FJB__YY5Ho)$Vyx4-Td+UXUc>4Mw$hyYTxMrIFMC!miv5FeO+^P( zjjZTrf-)v%8*4(V)@~~QRwR0IwJp7Py!>4)gAkwa6gzl`GCtTsHKrp25MO_L5;A-; z+Z8Q8e6z{O+QmkrU5=gPO;yY5u=qwe2FMNiSIGb}E#<23!$%I8J@-EPcOpkie{u@U znSR6RLBgfvPs4Z5M2F;PGLCH-Ep7mj#9ibslW@^)f_D82B`^c@ydPj|kA;D&2X$xj zkX7g671FP=E4HCRf`8W}{nGQC zmT$BzLy1T5S}U_=%VkrYGoCJ!C)Dhr#Kq)!)mDHk;(#ZPC`{mirozhsf0^FVDE+S~ z971C=)Xdp?5+AAVcn-=GTue36|K!rfEu!p5Gy5?QE^(fc7;et{dBvuFsA#A{Sri)) zUiFf1xY$@JQzOa(g~qH{P$$t5Zeblyh!4us@iMVID=fDP@k5V2*UlLiwrB*UP%#q&t}!8k(WMi z$~DKU7qC}O$(3x~ok|ZM$~!;JRej^;kwb-S2)aD=&_V-tgPTY^U z1}Fv_@`wc$yz^%bMB8I{zuO)aJ0~)}@CUfcjCKPgOFw|YHztQTQNE3r25+M>5Mv!@ z{xX#+B~u=udy`l5kJf;=n_zTz$B2fuP@OLx9`lLQf{~kq6UFNZaZ+Q5;oq%IlgLZ2zZSAutM!$y-yb)A z>}=6tB4bpvuw_T`T4~z}1m!Nc8sqHVmKw0#X92C>Oj0ZoHn)`u_4astG64Z^BYTi^ zuKWYzlX8S-V$cE!KUA>&wmF>> z)-lbpBZ3b3uMg9pO|+ULMwtu;gy5Tow?vCdpeIDL$&4`=ww`&Lf3-ya%N+^u`@I2M{#^W_CcSd~YxWrdo!}$rT!dC0mp|n!V zbglZF<)!Oge#LQZ`c}T_OHz{AzL`xjQ)~Tu$GMAfu1J4(H|+PCq z_R&^Xeiy+I_xfI>7e{(cPb)e%8+@z@sN6XHWxC!0s5x4#2AfL!46&KnV(&Xy9U45L z)MNu9h!4ys!saTfcaR63CtsR500$cug^S^~RKXp{Tt#$Pz}5H(g5A#OtMI#X5sGWe z*2~gzTLFd=S$Dhi6WUV1XJSf9=B2Gu8$E0aEluj*EJ!vl!YQAgtt50;QjMYdMKWjN z+gi;Z6gx#5TR``XElrVqhxCiO2U90V1`GYv4r0Ug_)c&~E4X^5eJdKl(})PuN#8NC zA%vfU&UZT+9}IcA*N?t^LBQlMh_XU#vNB^SFm^|$3e-t@u}5aTf6&NxPe{S>(K36J z=XU#}H)R85#uxSpNQsOr{jF3BPh%S_(QE=dt0t)a19GkGms(SJHZcg&`QdTGe zrT!Ro|L{X;T_O9E;lu@LLaesu?mPdv^LkxD2_F#XwWIr#e0o0KBV?iWq!3_0gnSN2 z6--Xj<@LH2&Xt-UeE5^=r~1mvwU)=u?1Pd!1Q=;7;^r8zW1D#>&{K7jk3_qUvdk5G z1jZLCy-xlzA*^sfxJ(P0h~i?TuBuxKd6Z@KcDYDloVyrFS^$BkjPp(n9uyURF(1)dgRPa ztZMKYF;bZ@s$K?D#Z>{y@&bCJWdVBXAccCkQ~V3b67I-#Ukm(C^F``si43%7vjdLi z){f`0HwgjAxR*$tyN(gXKeF^P%8K5-b}dQfd-t}8kXfwU=l=YetoDVQWq{s>!di#* zioX2dy9okR)6w^3zf2TWR5X3G_|r1~+L(P;uPappP-R`?UyJL?ed5?KH(SiI+f8)z zMGi@X570g_JZ83SF1{|82%1{A$AQm za4HY|`iecHwcZUI@Xao7IFDs;L7Ovu0|7;bsW8zVEmsd86+cx-gwHR%0Pkou+_4NQ zwC3yJE;w7&)^FzFs4BZl%B%ak(MjTu!fT%;{@cOId4-wv);9xz62pPV(r7&y_we!x zN+@0qH6T&tWb*v<3#)W-)orr)P4TC%g0&Kon$%X*icIVOgYfRt9st`mP-<)m)zUuZ z4L?PN9N(hfImuN{=A+8A2qeGr@@f{Ns&?R17?Qz_&lVEH+EvZZy}}~d>`1CrPuM~s z(pO+YB#8gZLASh9{++PBx+DWx*U*ny!O_gU28Vu8K8IKN72t|cr%|dfdZdGtqcG2- z^-jKZ=}Asi!1sL#yGCo)2i73lpN}iZvAGh=YR3lL&6Vt4peeBV;GB&NZO59k{2kAROD$GaR-1Ud!0IIO&9ps6BlDLf^6-XgK*-#h#Fp*?xD_sQQiz{T$K#L_;utVj4xoM+E zyZB!c&O!DD&@Am>PcD#=(?O1S7Np)M$gF>RP1(=sVm}P#oZMaJYh4^Rh&DD-w@OQF zDiXb9Y-|yTm;GX?Rc!&GtpMxyJzR(iB=Bc|v^Da1u=4?idKb!DI1h`NKBtS}Yik&r zkBM-n%A4L$hu;cUYtG1m}K>IzA%on^-Z34%Gi zXwH}fr3SZcFRkXjyX$+BXVqEH4lW+FZ@6#;Yr|(5epQ-|9IYJRNW0V6dA+&`O@Gc$ zr>bs>cW1^wuz7}gb2_@`RqpR12~DMPs5x6dpFG6hm^eY)82HUuS;%^y=M4LxVOPz= zh4=SvI{3W$N30NRo(nKOhL(J)Ar&**9Qb{*K2(#zoG3hG_YA1AZaUZ2$gZ=I^BMh5 zYAfp>-*Ca!C-A>W$Wg=@^zezck--P4kiSfZx_jWA<{&2sq1x9;QyJrhX7uAj!{;lE~PNlKo?Z9Wi_n7c;x&oT?(KSb2^;p;4qm zXz@iB;MZAXCa>X{1@sCqDjXVh{N63T>xw7m#!LS+@@}wSliudB<|#0G{>H5{GT8aW zbC&N7fedub!eXmW!?KAH_%GAH$3_u{CSM`L1HS?U(vEDSATzR+`g|2xaFH0$SD{>x(LPWh(%It{2ZQBF*5w)bki zIOofg@Kw*ji0gi{orM2=`8J_jjU8tgda|dWYPx7V?R%ZqFnao6SfVV@7Mtq3UJ0}K z&>y$AJ82>@k+7&=VFmFqH3ND6QRp^rpcCkN7GS5XPoYW}@+M}~ zwBbol=N2uH=GJTu`>|+!8RRqbFkpXwea+l?R2z-~(}1C0{YozX;^OjRBJE4$0@M3H z)z>F2{F>(cll&dR2lWJ{_n5j6!2VS4L4rq_ICZYlM{Rcp&`NLJVoW>=Yd$=G;`sIb zSyojs9%y-;jb+=7uE6xGuiM#_(ffayP^?QLHiRk7@Za^Kdou~N(1jYMivx-prTSvt z_Y{l2Fs%r!oZf9r)d-!Bgf0S%VN_g&q)`ED<=gf@O}BFVeh7tyy&m)D`BPj*EKUU` z{c4PxtKqbM@WL5q{THr@cH`sDHfnlqfxZ_xK7FcvA)bdAr2}_W*8657K_1YhVTNiT z!PZByVAeZiF1b6$FKP%;|I=CY_J4wXzmp!doI5Q<^Y3@MOCl7DM})mmlI|q+Km0Gj z%0tc(BqQyCpRI3e3T~Z-ga$=oL`5cziiA0S+834PkLj`J!{onZhT7;1d0}Q-!-7G} zyE!on-66c<^%&KQ-}L$(QYjuLkV#v4_XI==T#|ZIlKuWL z&gC3j?(@CNTtip;R#YVmjrnM(|OdaAm|BP0OOMS=;PX6b-)O+wYKj-3g2WLUX z&cNnucA;k~G@!Z`jSJ8Ed7Rsb0G09vf3a8F5 zw9n+NcvG8Abd<6NPg((M&jaq^7|6sw3FG2Px;k&t{xXe- zGCqq^j^GcJ@styPZkL4JvmDyzPP4LqT06@pMNF_bfdT(n2(NRe#h+@Srwgxh=(SSf zks6UDKMvIvB??bGPQuB%!plO=n@M*jZhD&;FXmKP?3OBbR<*DB9U<0&KW12AcnBY?AW;^3S2=3pi7<7F}Y?78qiruYI$ME}AJ z9*rg$Q2vXMdwWs9I-g5+*!dGc3sU=>2VSTBabP?-Tqoz%F1nopbkO*CNsOKm{B?aO z@$J!T%k!6|yg0;C@}|!GJ2HviUV`oAuqI9ZWeWRFCTbf36ej!27C8HtmCKf{D%w!wf)5tjX{YoetAtCqhmXN5P50=gaZcBqoT2Z1+LG@9nKD&G4+1L5WG1j9s$hhHRuW4`Sk)# zWIBI`#yFe87RaYgS_eW`6uCaCCjXa7(ZS%~TSP+5`c|@6leVGB+d6vFUnUxL);S3w z^q=wV(1G@?4yinCCd$@+KJB>E-60tb4u9Q3JN7$z5$S*c@GtONw*Ewb;$lbAZ6GYMrWoWSpn(vDJkWqOsWI}`T|cbm_iJ$lmMobx)>r}M}95aC4k zF5)AXN`)Ex5RDcBHrd^4uYorp0UOANNH4z`p)jG93IuKFyhGj!iA3oy7Tf*I#-gc! z5zoBTB`5oJ66L$*(0%Q+vJg)}yRMw*kPb8F zU3ddaM(TZyC6Y#a_C$={z@OANe!Lb@wDN+k{vdwJ<&)gAnj|BhnY=ALX%SzYpWizfY0b=of*!9pryTY8I%Q3=%^v4{ zJ0vgFWZ+{h=ep6iA*OOO#p?{$vQyBK)%u^`Wdkj>9*sXCYWKV%waz~aDmNtTzpeT-c50)= z7vDGBQIloigZ;+=fY)g?7|1?o%BABsGNDWxjjg)l`N@};&wE_%FpAm$;T4bN@j zZFag}9U*rDM{IM1ZpVD6pDvsGO+mRm-2T8fYEnpq40@`lR;^|D)VC@nUKp>inFehs zpB6yI%fs6~L-;&L4sGRpR*dF_TsCsk((G%;%T!0qy3GcLE2gmV%N{EEL6FS}M=tu( zSD4AnJg`&7g|cTg(D^>Mz_T9MsO%66s(!wx8CuGiS8vo^V2fa@Q&oW5KKfo+YpOUR zd=JVsSDvqPV^kU9{wBMz5K?nkSRGFn9G>{g)Ri{qW4mOF%h-)5lv52wVLgb`FOLxS zwjrLjqk*adiJ0p}GR>9Ginmx;1G!3?V-Bq|#5~2KP|{#z<!ynfnVO`drXm`LyS8f-Uy?c+HxZC~l3^_gpJU_XY^z#Tbo(@pQxdnf1)NAq_kYN-N}sS03Ap;_6-)qa~u?dB{d@1 zgVTP;FK@IHaye{pdztz>vbVlget7V9Xok znmpxe;=CzIq$0``cx2>w!Uobjb>E+H><@*xk%HWa@Mut+!agXMcUu-0n!tO0&L#0{ zK&s~YvEkv>3riw{{D+rv*JfjOr|x+6D%ZpI!6jImDG#(63baY@s|F`c2Mkb}gpIok z$30XfCmSwZR{7&uJ+UMqi+q}8w~Ub%QzVJcvpg8gFd0vtNT|m(g*r`a?TtoEeRC98 z&0HnpO-Q)Bc)H&H^7QUJA$Umcnw!aWG*6aIRnVpJUZMDb$$P1->uS+1hNJyy{&%PL zAQ1BO6kxdR_%@=396^7V43s z1=fmJ*)DxQnd{{L2Hw^_ZNt{Cu|w)`;*df&`?aia|1)Vc=jaJL4+@ThURG*g-h7&8 zXZiF&4VP?6cpA45^_pg(0ZK^4EYgOs{|@E5%Mx8#m(kAePgG8w_X`SRYbw+7sg0Jp zU4LYuIbdm-AoTS^7A|qz3thH>z2IY+m5?1DG%T}EFt=nh6;cuRQzeg$cAUy3(+o{y zT*D%+og^o3bBjxD-De+~k@T9GA4ihAiUh21!!a5dkoG1&y=>;QP4l z$E_Ce>pcg%HUr?kkpYioia|-Z8Wl0e=GThkY;@h>n}?z!wLo*GXS*L!!{&6W?0ZAz zJ>=yTuGW3WV3K%ogB85aP`BbSVh7uDir+V4aAer&%J|Xa`|5obK<6@2%Z04&IH7_= zQTDdn1ZO;>rHz#(G~zGCn{g7RXH0pMzkcIdMsx0V(6I+TXH!jexlFg{ubp$=kyx=IA`1uwFru4Ficef-c(9|(v z6N2j1SYM{V^UN872KgE2z-AAR;!J(asM}hFjxM)jH&i&I5(YurwSP-Nc;u^m zfpE27OOg?OaW>YfCgwB~alA7?=VMX{*gWNa`&K&Gpqo_Fr-8P`=XQ>aco>Cj?LxqM zHR*9S-FJp`!wNm21&%JimB`*@KQB}p>hz=Taai97`PWv>>= zhm{ru0!^9vN*?8DTaK)$Uu}9B$17)e9-DpklUIIIJ%~k42dS`oGNY3SB~>5c^eEx| zj$Y)WVm$gMdSpa=I9wy;mt<+t%Zy)*2+bj&hBwxAxnmm%{58t&Ka{2DayiE zU6a_n`bHc~Z&F_6!CUXQ1D#6T~W}na{Bi~^yY*jiPiGr9|Hl`@Z*Le zeO_GG>fi?t5kt9a^>wlO$#(8#f-D*hP# zb$7V|zx0*BzPUf;aCY}6FG+w1Y5^Q=4-i4h7T35sslvjzm}Mc-!=6NvatyVAsVGO&aPntu45{o}1q}Yt(XC%c}VpgxHh# zm4$LW1Mr37a{e-rn4pY4tc={m#hYBq&e;%IrU8tZmpr-fg1pj6!-ujN*J3zw8zD7m zrb4aRz=lGD2s@!Kl_}~j(PZ)my9fHMmA5Z%KL01mAS7_ZONzCD`IS=O3kQr%3NI7y zI(`wEO2n`I4#H;SDy^Z056DNN;Xqz3Cs*+m@GU%}h1)X_r8^Mn=KY=E?BVyB{(a0I zaXYV31WVUDHV^=YsJN5H*jZsTIi1ygNmKiUzD!jnGU63ZTyM9{LK+<%dbJ4lMA*}7 zZ;TI3cyFz+1yqHVRI#2om1<*E}!e`ZWy+L4cy>+$V+|EmZf zmO_HkOfFXqRy+lLLT&$iE+Qbb86DbfbMl5qA2ls+kzPMzJ(c@Ji>v+d0fZ;It&609 zdYmpHL)z@L$_c8epSexqP1F4&#b6FQ<^n`C5}Ua_@_4DG$IqzA3oEf_-|?WM7(yNy z0un2&$bUU{`{c>Q*1VgenCz`MjmcZ>eOWGn6D!f-SD~&Ua*c4-bn^Z&5gga!^T8*; zp>)n!-}dmE%CH@NOJB~)DJY?cTz+UkI#O|r>t2<%>FDQS2U&gn;CR9K@bHF_F$Uk@ z(VAt7elcMh(G6%jrBZ>GNDpQd-5Y=w59gwDJ35Q+&u?8Kg*u^8eek8^SS?+NmeEF& zQj`9a!c_sU!jj3SZ{=KCI)r7lLpO&!9+%K|^)QV~a$g%42OawjI1^gu#Cqd?T7J#z zDwr>nnz)EpTAH|N+WeNGpgW63Zrhq)ginMv#~v$%pM7V$oxHK)11*J2UvI+SB2CLu zOH0O#=H+f1Yn*&_Xw)!>QaT_Ierj;UxaFCkY#8hMBiOOoVOb@Vj1jE|Et|xtr59$_ zH1s^9vMB3ac*R8TOnRq`jIyvGY!47z*3NU5p51O7+RpGRnQ5@Bb|Cq!yAy1d6NEP> zU1gMcM1P^VjHF`ekk4x)88rfBRK&w=^EcrvbH~=X0ZL7d=M09FA?q?q@g9W+!xUk& z>4B`NBK;w4=IdZ

B!$M4IwRC0qY#Eo|Ss~bJmIhip_wC04?AXtAwa^`sTN7L#hqVD9cS5eRKbc@2 zrvp-D_nZJchhKgMvBbGlg3o`btFASOvWXo1S-+JK&}2X7ecRNt*jlA z=j!`Gl&+nwHY1EWYM+Q2bbZdK_joZ<>h<7Dz$SU)AXL-LT1u*WX3DIy#uaLDFhjq% z%zz-NH~unhpuPVk7A{xsSgfw3B)^irJueyyl1$Wz`1L6GGQeND0 zVq>aj_hLDs2uU-5mhgr4nMz>a@tLdcOWOhucJo!XxZ*BlNhVi2|VsN`Ql%u z-)Xo1GJQA3r!at)m09Cj!6aetv*Wi?10(O)o$G0oKCN+soN$SDm8z9Lxb*e_$j*$ig<4x+8TqM%;qQw4SXAZ!puu^l^$bSr`X0ke|5 z=}zwY&W8T@X|p zr8yp0y}E&d+@5DWhJQSy>snB4J?60|h&E9d#t$&hJ~|SCLja~^;Ge4AW7MD@h|6@& zu=y||U_#N>sv5ee0vBrr1tb=}AnZpNJZa<*G+x$=w&c8Gp)0A8h5~%O;~T$OAm!?N z4W^tD3!0A)or;X!CUK~C`&fBceR-FEBXPfAIo$vf@zL0qu!sg`x0Ee+DKFm*QsQxF zGkU;x@W<)Nj9ov^aPCs>kcl>S7}dkNJqdESM^d`fy2V|o(J82SQ)=%;7F78K#$yxt z0%1^8@ZsxFzBu4`m*q(+!g!#p?3Lgi@KJ!BXowg?9E|R`AUSnp!!?GLIO1w7KrLnA zdQ?|*_v{Q8HHO9T8Wt-e@y345NqC263R~FJl-rChcUR4tdV87Y}lM|MRdXBB&fv?QACB94ZNh7WQQ41)L`P3l@Rw|%W93#^w7LT#|1N%ROZ7f zD$-4I!WLW6yPG7`*nMc0b}?D!4LXW>L(4T`4Ec1GJ8gM_vjS z+y>9pBsI&0-yfd))5y8K(mFAkpk@B;;f}&MCh;37d2@-`;_}E2#D#3U{852>Ur|lM(N>>o%$kO0-`-PcO-L zGc0bjPW*W@=JC1idx6P>1)lTwu9MEUUk5C9C1$FCX++4`d?*_!vqQtNc0(QzH+6Mv zjsE^Xc(Nl^RWyozYCbsJY6sS03%{|A9Z3#ygFVd{slaKV)`+Ga5!w~ieuW;HmG6}6 zF&BH`%?~qErhcY%pVqHJ^{ed;W+kMV9U|E4WgJlfKqgX0h)TS{!{gw{XOkUed|j&h zy8WQ1*R4>;aN|CQF0zOzLh%Xp>z32@VB41`6V&(>o9%tkiIGv;P(6&sJ4e#ZSWIJG zeHMh<xm3y)yEtew) za1&Lww!>iHwqQCl9>%!9b}R!Q7G;)y9$GfOmkQqyg5 zx7Ju&ypVh0+y7B@-eF0$@Bg>5Y+G6Gk=s(V%$X}QC#ku&mS&2GBYQ|h zp>>@6)iQ&dz7KXPFIwaq_vU1k>UV{%RV9xEiloU1i`5O*_|RN*Mw9x6(RT7CpT2%p z%?*JDh07^vtkPy}$Llhgfp?MIpD*3@eyYEgxog3d?6jq;Jz98_s~l`c`;K$Qz2jvcQ?}W1 znBVvre-RQS9NWLw*>VtjswUSI1j-M*mKrfzt^^!R0q@OndtKLdW7+guN8lo~(U!XS z&+>&IItYm$@85Z|Fs%R7wv6U1(&*S!KdhboX+XO9{JpWxC3d|BA8a#Hf;`$eWbD|!db|WFEn87XJ_=q`N-D;~8{T?w#=)^^;-KeM|B?5Mgg@?7BoH?}x z6lrCoczsfl9TC#h{t#KS?(g@;kH&WmJpSshQ41~Qz7NUH)-eewmw8lKua;J8Yt#2g zB2;xioa0l6qaa(epm{~{MIm?gr8GFO+y~7HxIu7!qM7W{vUU<*?MC%>bLklN}*xm8g-bEP&!hTEKu2m_6`%$B_S)5*@CQdlEG*Wk z5R+AX<8m=&9t#Z?>ty~yS@TcDmp$!=MoRC1Y$eF848R&Tp^vJ{)54K(W(FQ>K%iA) zGxt+7)Ok~B9`#Ym-pEZx1>W)EFlgCmWG&G-=EPxkBQitkh9&uK;`({~9!&BARK=c7 zT*b-!Z0CAc3e|h@9`zJ_lx&-5h}M~sDk@!1a!~xKSTA^Y?y8zn%46B`?lWJEQmAXo zW+q|QOzP1{o(WsK!R1LiN-9w^qX&T6ufpax#{~2pA5@-H>(#MATlG@6 zae}(m!%ZuLbz4pnMTMzv{=}AEvFgyCvz2V&BIq)79E_D*+t|f#LXGL=o~&Yp{kDUQ?1rMK~)sVGi_VoeCJ<= z`T`4ek%Oe9NXUsY?EdC~vvINwRC`d*;J$sCauo8zey~(Wv%UJK-qpg#0neTF-o}in zS#;vfgbn>NeC-7crU#u4QHM=4>8fnOmWR2UW7-gr!@w<;uGR~QF1Gp-Ik&bXi@(Yw z21d&1P@Pg~#K)NPH`ed$o4O(NOv{jizu)Gj;qHJ`cQ%9lxK_UO*|YhFcg#IFSfRyQ z;aiDnK65WeeYsqP!id{*>>d|{qZQf3Z=Cf|dw9R|Y^gJUbQSaO+h!B;)&2cK8O9J5 zPD4Y7oNV|s`1YS!W)(XXLzmOXThrS`E-*fTZHhX;-UPI!n+KIcr#X!1e`q;cs$coO z#2t1A6SkO6*OKVF$bT8$_t37u4;Kbc#&hWxiaR`)Ukok$vlE!lhQ%;#^cGBl>FFL{ zJ>JO4CxUh#3jFhZ%I&~7`+GEfifHk7H?)PXAF`6DmILd*;#=(3JVP$PQ6~^RHZF2g z;i7VYtMWm%tO9%}ekSUO(kn3O zX)rq1B+x^0KJi)jutK^-KE86nB^APtoTO#48=I~ecrMZAo2zyKKow&TK<&#Ei>^VA zkNHn=LaeOZb&Uce#jawaa+4_M+Zpi!uqhxDV;(3cVKd(KX`uQc`Bo#l)S{e8puPN^ zK_0L39)ac%c+o!PK!thKVH{(AXae1=HHzDwZ|6ito0yEm$2eFe{v@u?bvW8R){y(w zvqX7ld4Juq00Bmzn*)sj_+)!4p=<>e)zzCw2-+L+#UYd|Pq@P@#by=?{&r!MX}G$@ zPg(vk%?Cw!@byw}6^^5=EkCtOkvM zKaohOFei!t%_UAZ*P`xd=V@mfhn0qUm?8G|La4a(?JtLaQXk!v5Rdt`0-h)-7x!I= zO>68AwGsCsRWB(x3tQ>D`utn{Dm(WLbq+?}uW`&wd3TEUb`)%bGw2nfguK&`<9+UB zm9`DQnQjEl66mQMJ>MtA4dweq!lw&KYqdqi>OE_4-d>nem$);QdIFS#$L7#UAs#7B zRTw+-m=IZ&-dRE$X(Mv#@|I*1w89di`<48wKK06dKVYj@Wo5s^q>$m z&i{mnpAV&Q&J8P(PZo8J2WH<&=kfD7C8>$^eeaYJ=L}!!S@2`Nf6oT815D3u`^?iY zqh?c#{~}U&eV;5+NhAATWUvk`qfr-$&h@m5^-W|wvY_aDvo zLZ0uEC?u7L-E&7v0M3D0J^jIl-|O~J4+~Lna4Do9{$I#@aG-1 zwJ|JjG5X!zXFM>LR#08uqxrHpY!1R7%xo5;9N(&DHZZXd3X&2bz<3i*&vI)dWPQ3h zax>0A?It}$pHb#dBhOCGvgkCo=aEa?j~C(q1Ozw)dLCa_^56SKGY}I@JB>24j5Fxq zX1z;g%28mFASW|>e`G8LNThelI4QN&U)~KuWoJt|csrV|U-D!B#V9w*Eg8`3{Drbi za|hei(~zjNxd$wto0I-3E}Wc2(j3Zn0H5pdh-z*r#_KfjL*?A(+>#If(YnL|`kcm_ z4Ybz7^*=6bGJQW6W_a$;-n=U{3-JdWKe#9I!i+1B=+*2Siu!Ef-@C)8@VQihT_h~f zzcn}4p=n8rLz{f2Wtu5#;YR*l?w5C9tAqAmE&?%Y#3}XA_v-op^6Iww{;5~M9%bx* zeA?kz@7%2!y6p~Nq4*!xb||zR_pAG8Kt*S;N@;5>9?((6-hB0A;moHU0$w@ft$`Qw zUOzx1hHBJ)3XQ<<(01Y;{SEvDh?049dH(3Spz^C*MOrJ6G3P;u7=IoUj?W;AuD0Mw z00^LT&}C*o^>HM={WSM?+7kFF4Y2*(7>Rqltg^H5pYb;!FXi&}+;<+ub=A(J3N!c{hf6sA7l|2`T}NBcOS zCe@ykyG*zMfK;=%s=4L3hl8Fuk8;icxeb8kV?c5vf{^?hd!3ARN}_oiq}?A~p1(H! z{EsP0{2y`md1JMk64&s9&#;>e6x&&^&VNeE{Q+gM691f!u&NHa z{%a2)L<|jb(tquLO>M@Za#th`ztXLEyHy(j!L%0|k&Sn~kU1)kat)BbifK@Q5W6)e zrYO4l4}y1L?|64m<+0I!zgXARb{~ME36ndde;L%jM)0kEZ=~e9^A@9y)Z&-^L)!jN zTFO4Z#c;RVK!x^%_e0hn0H<0VG^{ejVaDFc(kx$uMyw7z$^nXi#k0{DJ?X7a*Hv>5 zfq0WsigJidklRKEZl|=JyvaSkq&6%O+@iX9-D-w7J%M2&yf*47{^eOCgsx^hO5;9^ z(f0V4A=lxM?-5PRZFMt54Ygf;zSRlc-0)-3saB)yH6n3XsmkDq+}Od5S}~zZKNQH? z4y&il9d#B*$ecw9;LYvDhO4{%4>kb#wD`fx*MnFn|8xL3LE59;uTMh^aVUqu)00oE zYJjeoJJe=EoBN>~XX39^W0|li_D`PV6{$=7V`o?BW;MT+OHmo3v9@6Do3?{jzkh>& zJKA?3yxc*G`vP4M4h?@LWmaKY!(B@%TGU?4x-E)1(e^1w`k}Wc_mK6o<6g3zb(_$w zK~MkN@@y3!QRs^Yzg^Pps6&@>OiN*~|a$&-RuZ?Mz& zMc>N)gQ&L0T0_4W*2Mu@vHCjQaPwaVrKBB)_#>M}seLQg_zCni$pxA6L1JgzRoB^S zS_RhAi?KSFER-8?+RhwC*AIjr*@Bi@PeT1TXi0v4@$%1w7MKsS|8|R_6mUx3D~PSE zl-mx3b>sr;?g`;2GgbA{*2lTVn$0nE2?=|Hz-gbYTJDNE$OHMlI=^t!BjKsXj+1*} zU^kgM}JG}pV(!P3r(bcK>3dh7g%;*lm4~LqAaQ6ddqX@~Lmmxu!Sg9dflsWxEr0d+SPLRqoV&bb*JKSwiwvV}kSH1cm0X%U?yEuF7`k8-PfhaWvlc24Wyr&^r$HK2^?UDh1rXRa92SqZ1Nq)_h+LXKYER$27M9*5+_ri+I4 zYN}UE{eYj6p4sVcz-DswoAtHC!A&sp-~4dz?8SRZQxB~{Bxv~%ghXYO$V(H#2aASsxiHL`7Iw1(#Zy+J@8@&=0(6h_UJrd=^gaduRu1fbDZ_BKTVf$nI>O$+4{hFWG)8?-n@<++4Jh8GZ%7#@0L>Ow<*N#@9WDyr^ zdZ+6x2e98d5#FxtmU#0)v3nwTXtQ~}wOt9OOjmW#P&?$!++3yauwhm9Yb?3aJ~fDB z8X!_FnH}ln#0nrphYMscXZVduPRCPrG?9louj>3BOc34toexwo2)Fu!-)o(V8J)0<2ciiR znJ3z&oFBJdhcBHee(n;j{pPeu7z5L ze;z&3@bsvu)$oRSpAr5Ve5rT^V~4Dovi}CDiX%<8Y|xN7OICtvn|Jo;Gkc24?+=e> z@TZ+Lq#bkcDE-c%pyA=o*^Q|E+?(#GQ>QZM`{yIU%$G^cW0xe3D~!~IJo|{T=n-?G zjYG>Qwa(na2pC`q^Gh2K%|upyXTCSmTd~_eQlU0M=$u$j(|lQ_o+bs!%>7Z=&Izh` zGqV%x*`%*wiZ2{#)|^#ip0c)SsUh{00KP+L9ha0@s|AeJ9-N6}qrbqKG?>|jVH=xs zo!M;7cJVQdK_}HYgAn)B^kGu8`-4;^1zi=qhj?g}xSiY>P`KKsZg`l!MY0B4InTk_ z+~hg+qwwzLTuRy&7bVw4Fk$k|^7b~pw*yCVR$MUAS{h1$HO(~=p=S6PBMX0I7+~z~ zkSI`)l(c9*BsvWXwE$Gyd)wxjP_{wm+I~>}EECQFVpu>-+5G8W2H>g*h~*9sdpOpQ zz=RtT632TN>}$OGU-?{XIen!C<^Tz&Gc0esj0;N|l_eCT4AqNW4jl0CP6zs>VYjqf z6iVUWjYME1&;KH`9=|zockm^ zlj4}rJlaqbw~a7yC&;soB?>23cx0b6`31G8&F&&V=Z5!da0n~6s@$1f^vRuIhr$ZK zV=eTX=zX@&a@i6?%;fG;NH@sCueO_0Bv&@seB6(D9~zkoT|#HRXuP}Uxr*4G*gM(4 zhmsgmqrq<~ckHAn@Iz<+%sfgOlIUkNS!Si~FFL*moiHBOfR=Rc-&@3lyW39Qg!>Kh zO~BUK>n8l-V_K_JyVFq~2#-s$QERLq;?)!{LrFL!Al_rF#yF8|JR-whuH(&#H z;8QIvt0JjH_auaP`O)e(XRGavd_On>?ME#nPVD0?$`yJ^wX+k~QfhQ(7owWWn}jmN z2XDK<7&8mrJ2Zaiyq*q`DBA+(OHHJn*Wug&k1R*JJ+f=W95ktXYo4Db*z7_bZ5D$N zEd(OIpb3gE%24Uq-Md+Yg2LV0sn+0kR&^sY*?|Ld_seXH(19x+il^$CiCwmQf)wT=z#l19BureY>!)4@WK_5VB}@$zF% z%-bJHJbcd$e;`R^6+lP+`a>#s*bVbYLF208|7&)-WzzyI2^^k!C{XABB~IXV>Xhqj z>Xdl7nNDHPkDIp5>Ou_|S2eFII&Wfme(dDMDLMYjz>C|Qa-<%idI0Copz`afmczQQ zTG5z5mWAnJTXhCWf9!XJStGvay+qTe8|MTnUP<0QYq@*sd*p+R0)aA4a5Huxzn*;% z@0QFBW~{DGP#)v-?Fh9@XkJWMJdyrxIZ^_yebgM8(AD2ix`H#Kg)%nm1CcXuODOe% zx>n7{_h1qS%^k?LkR>_OR;B35fm|*z*X1|HX^;KMJL(~7?gs7>G3X|IaT*HgfNM(Q z+O4Hd_xtUhG)X*vy7?eiBj4mLO`9<7C=JNi89Guq`#UXpDaKpE-6aO-p6E=2FueY1yHba|=Y@imYl|@kh zN4>ll?>z0hq%uR{zhSyEneTaXS#wpg3k&}y8DMR?N1VsZeFBK1u*G|#u+h4uwNyad z3ylH?#_3&G?zh_WT;IS3S&#V}9NiQp9*QZD}3zv3Q+^nZm?5;*t?mc}Ojhxmk zsBJ3|+V2$}c|nFyLH*@=NtR>{P=9j;Ngwfh3J%A?ZBEC+gKHelEv-5uXe6=^)GUN& zVtD$H7lv^7zPXot$TFVlw7IbA34xW_yQRG$j$8HnMD0TxC*~4B3(-@ZQ`xZUSJ|A}RCD=yfz>lzN0c3{coWwAqcj|0$*GM}X6ptvL zMNEg`jfqpxnCi{LP~y+kc2$WjyDGG|)V_kMNNeNfE-T%xmn;Ytu(AV7h+NT}!g@gn zH#C)G*Nasq5enGoa%{3Ap>w@pqp;~91YRFm1-WnV$#^kqq?Ipld+m6gzN+HuzjF=( zaWy1W83!_*Vj*caY*})&GfPE@5>CbyRYl`&*HT=IqNfbMKoHc!>Fpu9woj#7nMNoxT?FGeqv1sGh!BCkA}mgqBELSL%@zOcxkgXdUwiK9a0UuN-@Z!S^pz zYv02_p-{-TL>u>SWe9EmfZZnZ?V63yrj7E|x@;-ON-llU>kXeh59=nI!V_1F{hj@< zj}}R!yt~)dY7G4TVSCADC=Fvj($QaOIDgnfTBZfZnK!4BQAc!bqnUW-Rn^B^E)mLH z1@;=wA#?hU-MZ+Uz-xuEb!lD_`rh9AuNf;KClksg1&vvniyeu5zrtOFFY0;hN4H>t z{932eil5#l>;Al=tteKsi{5R*oGKnCom@ZVA5p!4Y|~V|aA;^e=0gkJupDl^yYk(B zTvLe4r!5i$lL~0kyiKq8s;XxxG2WP^v_Jy zR9aV+HA!!?FR|BGVwj9O6~d;5B}Kgf@nrN1{)#$xLs$6D?L__U32`B`*AQ&I6#4wi zJwtAWZfkr#O%|95|#}L&-NDwP{RTRj_-~4gD-ku22 zKgq|bC|2t}=tx}h&D7)&;%@*vHrPojQdzUyji@ZGAsV?M`!K(-_lJjsj~)2Mh)Bl7 z^Q1aXyH82>Znr?q37Wzk7z-k8Z749qnz(UsyC8Q$Z@;A~rPZUyVew7~yvICvCn=Vo zlqO}PrQhTi?H?rDdyK(}UW z#eWdml5gi@nhXdgPr4oNr}@K6vek7*t%>a&NND)9B|4f<8Mxv#p)a9g~hw{5kr2hseVvOZYmz?FTwho?pZ;xXf$5KBInI+iB|GMv|vOWk8$z&%lZg~E}48@7sHI-^0h6* z=$6dtBPC7;%JjtX*YK4Iq2x(QS|Tywd`GJM89Qo0`c*c8sksM9?mKscO>W2JCLaeW zRVvBk5H{dHj@Hd9#bt6zN!lL$f7gI3X>J}L3v#9s819WvtqfZ(KL?|7>!zcdEoPW` zTnYBPz|JZe4BA{8n6?^%KVdUxv4e!(_&&lP?fZgR|ZQk>TJ-zN8QK^1#Yd2Fl&xhndc{)Y2V?WqND zR6|&Wv!2yQtF8h&`SalGlgap)Xf)SKrZsf@C}Q6m05#mC#(T}TvT|!TI%xj07i#A( z*0qRsIpQ@o$u#nDfZx1P+Vh%L%$E84icBs1x~#r>y-hb%?j(X`<8pM1!Y2_v)_f|Z ztL)>X)V+enO24evCice1?Yb)= zs50wubxqC{t_hC{ff2!)(W?(9Ev=`B%i2eN@%E!g#2O421Bmn+#h znCFc59mw~IHLE`2GH>N+7%jO`AC!2W6k%r z@@K=N;5-o#&4OF0?G^;dQ^De&m)naD4Lh-{n6HN!-QY0(^XTxHis{4m>O&RO&Z3Wn zkk9Mti;mmwypjg_#`#98_lDi>!<*-Y#pEa?Mo}0W`2(x`OSg)mUeXK zF6*~@yx?AOm8TZ(J~o^UyqmLg@LBtQ!SA&XfjhI<`=E9fi_CAyuik7x?fiG~8dJq{ zat{aYSJ{Ox;BaE5<$b9bh%QNgZHgR}&DSw__?W9(j?K>xcNyt29dW#H_Ck{JXtPCG zK>hFO!8h@}_4qZAB&=%kS&nN%BR2JpbdAJKT}}??j9~c-xoDI^YxI4oB@%uiy5lh3 z9wZ@o_QPlk#Vo}XMSN%=rSCy*PDvT;W+p-Dm;Yrrc@s*uezNJ(k$cD0p7GE+?fbOu zCT12CUOWrGvT|VVZ+?*B+#T)V%LBFF;){0BZ>mM(YU{>i8|$F@<`?(C*F?JZ6@((j z+7>OJvn&^L7*tl2nYo!*3~dYLvrkb~Eq7$|VSK__TjucW_VKy0^B8>^^zy8 z0S3R=xX^;_j!?1u#h!awmsW7nqOHx1Mz;^rOtiin2{)#`9xuQs?+|A1-BJ5hJH zqKQv>{Q!2{M0Zr_*s&>)wtc?!r2BU)nJ9Dh;m@oRL3Z2gx90`V#uX^lrR*ANj;H>q zxF^%MUGed%pO%PoKT-EenxAonF?)=3^4n<$!l`DN_){$;R^?BfXTlQg_8H~;wo*Tx0M zL!pH%3j4iDL@P$carWQyDh^FXGbKY!|aldLu+6yTX+~cOI$}{?haFZST*jFE83&-F3g`pysezEeYDEV=YhcGx4XlNr0(k7M;tL@1p8u`kz*T zO{R8-E4t-_c>#{??e=GJ=bCVtVaZm0Rh&eqAE~?p2t>3iN1}#;4dj|ipv9_@)ND6#Q>O3o9Mqt;v5i3@Z$9~^4Za+Hy ze(V%hC>3)ucpV)yT7BoC*_*}4O6!2=6i(gWbt{i+N{02sGhn}ags|eSArDWqkZn(Z z;*=o~|MRi@KfrmA8^?LjF?jJWuTVrMQ8lLYZ|L>mnc6L$`t&l_KW=Q3SQ_sb$hg{*7s{C5?;{%C?KuZ1!~Va{-L2dfrSE!=$MDpW;+v4nh3d+ywOl5bxHUeMi#`2xM3$AkK&w=o=rpj_>{MC} z%~cBM?wsO3d^b0JJ7A-Wv*LI;<`g=o;@#PLZ>&lH6Ag3e2o)Mx_sxczW{4|*DqrOq zjY@e`Erb(^Tme(&mfxafO${QS%FME>i*?<6@yWl=F%fL%qwBk;+^nhB5Dh$wr4@6O zd0`NmQ+K4?+^f_WCY0!voLQqQvRk7#l*QmBeTL_)CuL2`b48ms#YH8GP2#~rdW|dx zU?Xz9;4QPsueP-SpreA(KrKUcUkKS=^@A&t57RY-2VN^DB@Kq=C%t=@^y&ZSye<+> zz5How+JNP>NAXWTw#rw5=ZONp`4ti`$p>1nZVPIALmwDl3R{`dtt@__^|#P>P?pv@ zx{fPcLMnAOpv7TWgv_p|-``REHX;@9xNw(Tw47M3PZw;&+wCveaHZ_Pin6|LpB@f< z@W0We6SsYD#)UR?Jqf#Ze7pyk2%RWJzcuo+E_Pv>k{*>G-XB6O>8qf7h4zFN5(c-A zuU=P)Kv~d&=py<^hoW4*&o9!D=G@njx6aVNunW21RGNl>TPFQ=ome-}|3K~jiJmTMtJJ)P<;V$5o>zx!y%IF#Q@63%y%&=iCblO-PLK|f!u~Gn#rYvD6r>Q< zzXjFERn8PZ)&p}%>s4;oFA7`UjBhTu(H@u6DC2-C!g4gAeGVq*`Zt#qS91_sB!Fy* zgG>XM4Jv_^*HB~a%*-A)GwK}2{=nnQYN*v6Vbn+}yQHWzyFiA+eGbuNO&0K?I{P(= zZFiFzv2JOl&(Rkpe#RWbDTtVarV07qRcol%m{48c*G@Q;+A`w~KHg-|?JALuD-u)q z@rtf^swVL=F>t<;u})!&LYfw=3JK(4=6m-w{NuGQWO-BLdT#O2HprI9$H-CH3dKti*Bl z7ivVxNaFZ_A-|;j@HAm>q35|f?%sLZES^KVe>{X9!W-7KIfx`JMJvTiZ|gIIC~zRf zH)RtTe&Bmne}HB-j;&)I%=lBKb*z2~^Ts%AffnW}y1klsKfM zA@D3Q`4!jq%coSwM&9vXd%NAG-~Ow}IojHxV7$3w3--&DqkpukLQ43%F;h}Z(^)gz z%ed|CWkQ1bwae0;KX#W#=q>cz$RhFUqFMWUr=C9sU&S@F&A%T)I-n>t--w$(aF>L)O+)D`$D7KDZo@bbo88LQkiv z16H7bYM9vFO$4)NR;X&@F-u$)K)}87rfWM8)YAAqO517!lEJ)FP_Om<4l;eVLb9+2Tt{RtERQL78!r#l3druaO?ZoGm@!0B0F zbOA#?^;J6ZsaKFEA=j4k5)>Gu7(54WYx5pY!#*Wv_r{;bV{cL^_4KHFSzS^M7;rbq zpm*Jsu@N3$RtWAyo(T7VSv~ zh`hAS_V`L-Ux!m@x$EcqqN#!(U%r3#K@-j?uF2C<+s1t}5PC6I@X}L#i0^^g=zEOI z0cv|3UpG=&RY#!;4oQ4E_Cb|f-EAC0jvk3&8_)6>aStw7TTXerh`Lsli+Ctrch;&H z(c%*%m1ao!-ZIv!Z;o1qg@&ea2J6CnbL(A?-Q}-VqxQ4WrA^Ie`Ncrq@N!!+ak@5& zB{+T`fpLB16!auf(ZE5Tf(X4ocG?_v@VCVs*wYZl8=)-=jo1+w%n4ho&v`uPl5wz) zW&N}?TJ*V%)3%%v<5{GKVoPJrO5iBgb*^s2zH|J-slr3!3Zg&$m%)My27~(R1_k4; z(8dOVroQ5iulG@rzQ2a#Z^z2oEW|zNw2b_w+u~e$A$1~eiz3WexkbU$6 zI&xD|7m%AVZY?jLw3|{djQqvM#-fL}Q-FWBx+LWCu%Q1^pqZ7hoE$;xg4HdFOxHTx z;wVsvbO-qd5lKx4HT0aGnwJ9^E)T6nvc{S>Fj$yXH%u}l?4=shHpD0|} z<`!dQ7)`7(zp%c6IHrHV%3z~c%#A2%k3Y8bVcrJn7xgQ%f$zS31al!rmh1Wz#3IYcDBRM++Ay8fBu_^ zrJav4diPJEI3)kTctUB~L3Mwlx4vXHSo1cg%B)UZ3@f?;UJp5t2A3B0l78#e$qV$F zh7BnF5{|P`TCBrF4=uf0mzkvOSnJDnn>FF=aAp`Y{}A^*tcbbcv!rxGQe<+*^j>8_JK$1HJ|NB5c0wF<-$&Njx7L=6WUG zIa{gsjI#shm}7G?;na-AU=oQI0eKBklKt3ap?P6pp2ypCs7H^DiB3b0S0fbBooTZl zGp%pmyYv=Mgj#D=!S?zuka)Q>mbSI=ZyLZ*4v9*x7idfU*h#G2yOFW6DV-`wpM!?h zsBg^)9(K(=Qd)IL){MQeL0`XAtmuMfMryUe04=emHFXF^+z2svQ2#ylVnl~ zE(h6pkglXk3%b6UvYY*~B%Z7M&@bhUv81@!1Z`y+IQS|r4ISWm%ISP1QN>T`?l0W1 z?tPv0nvZNDJ9$sf$|SBlupaLSbxhLOUuK_jVrhPxxUqOlx2B(g%TmgYsE)MtgwmCp zF()Ca(9FpCwz6zxk^C!$9NUSfVCUtoO0Tn^P3hmOp`mz*NNje&{Uop!m3SPC#^k0M zymM)3fuRNsT22qpe}LKD-12=`rYW7VAM(lx)QN{fJcM1}r1pc;Ii6Zm((1=*7^6iJ zmlO-X^b2w<+^U5)A#-r?v)i?>x}-h$24-f!3isjo-Si1gYW8=Q-};5eMts1544M4v zb2cek!!YAn^w{xQtiHd3TR=b%P|cfv!nq5dgVEDVxzu#%JGPdS!y zz^0k*8lv{_mDt@i+u`-%;b6_8YtlBEmtl|e|8@}Oz}@w*ewbwTG1xcXrr@y$I(Tz6!$;Mr zIQ-P;z6yCXQrhG7uqg1OK3Fdn08al;?W=h8PuTx*G&{84*f4 z7>hau*P(GetGzoGe(tkp+J31p!;6@gNm=u&*8jywhb%zo321cQlDwU|u*Q9pc6!>H zuh{Fv_|hq_pHGI#ZtkU|44@0WlJ7^>e(q}HC!d)u=lA|aqVWa0D%8~6fgg2A{7cL` zfmTY~wq5QFumy_yYaldR%cf!PuF}{cna3%^0?W*|+8-6@TuzDyIcoAf zY*T-qka4G?c^LPM8JS6)Ja%|8HW+^Ts3btD`{DRxRdopjD%Utmb1-Nets`-@To|;j z#toxm#P{(+BQvQsawC0-ostDIb@*WQ(n;$8gh4gtCpbgz1s1&v*@emAEx_6yq)xk9 z*Cx%bAo2z)3M!gUGH9`@6kRW97Vnt4INGetXY`R^`6rz`Gq$FyY8o2+wo4ZJ)Otg+ zWyd+}9t=J#fH977UCc0hDfbDFhakmiy!}Bw(;D~GQL?zx$K>GSFaCc1kK>v=FJ!yO zb`U>~q?w!7|6xl7BYwauPa6bGzF*O0H8->S-o;)&su68&L;#B`?bgSm_I5=2fA_#^ z!1<$)zkaM4Z&GG;UXS{gHz891^t8()TIztM(<{%C6+f5fjfj|41eq{Q zp3+-A>(F9OluCmkjzmN5)ZxElMo*^^km5}9(P^8S(WS4SSL%;bO2RmV!|+C|+ks*- zCw_6_)h@+_{j@b>i8Pbmpt;k^y`z}E)Q3FOwvk)bvMVhi?rBF-W?v6*b~HH>(r*1< z24zI~Luc=DoA%_e4FhoIgTAeeIz*<5x}eCMY@$mTdqLQf2Y?V%y7!{$QoX&w;5u~i zUk0XEDpE_hD*!(@_A#5KZAx_OLe!i-LT5;7kB8-F>V8`2-4WQg9Z+4#dO-?^m)di+ z{6X~JJk7foiMo2v!k;LLH53hd4U3oWo~qq7N-|E=FF7^DpyrQiuZ!0%&~jc0ch(%` zJlAqDf=lEtWlRSDitFbNbsb-omK-}X#^IRfP=xwD?}Bkf26ClS!E13;ffRv+pF*)W zr3F%Q9?XDm^4)7M4X{_VJ!Q|JW0^56*a*kYd&GhoZ86=vxToBgjPIq)S+Vu`>4rrK z_)C0>-MKaW-xcvH(0eqN6QR+H@2C~{653sfZIp7?Xsa+#20Zo9?b@{#X+B1eG8gTh zcMS;SS~ZZ$Ku%+;+l1xfMM@1u9;_zW;Zlcw^ z0P#dhFZ zsIw5v^WdU@Md_zSvdpptKeo{1}))Q{dw;2$p->dOF-x54!ljSp$s z2R=u;J8Oukhzh``j4!^6GdYxRRAeYvNiCuxZ>(t8`t|6ZO*vKSd4rvqFG$H2zYeRr z*sLDt?v7TtJmrdgYspAL@pl$1{%%ZJ?Ei)k$~3PvSnoBfeG`+eoxRo7(|tgBU1eLAVXdgo zFn<-h{@EQ=7-Ks6D*i-3y;PHo_)XoO=(bU*%4k|Gi)rokvJgr#KJdZF&VwW|wXJca zE@ShdCZWKMxHTE%l~wH6r?mJAyKG~+&1$(=VQqD*R+Dr)d_StbPhxGI{}m{uGCgkH z*9J#@yT6}G4E^k(t7N0kLWZ=Y*}(iN(b#4;P0c#Azkg8q>bG6H%5p;H>qe0Oi!XJL zO&za*ZLa8m3hHV;Jqw?ybs%f{-whPTrS`sP!q$f)8rKVT@?u$^hxO~)*pd93PU@(I zC@6=;qY6EfGVv3 z^@hCrk}HIk-Hp%#hmgUc!9$V3$UXRNV4i8HUUEAgs4j=5B}#Q!2+0`0zJ^KAkxkwtIL^9dz zGDDGD_?Kaxe@wp~_;Y8FwQ>(}I@rJ55or4I_biv!4DZK!4~1V(Rh_$r|8juucTs6= z@aT zVj5e>LSZrq{e^|G1^2k>qTtF0b3EZz8CK>?@YdWz<|FcSkCeEgl&5xqFTOk#7v>PM zufjG%tIDM{&I*q{|JH4^^|7k7>>{JlAnoH!0}^e{gU{2dCCJ7!tbM>-6oPUMi} ze=V(%ZB7;U$ah9A<)rO_?T={(TH+bpgxZpq!(nKckQ z@n=WnW+Nbp)mdT93$U5PZdgjM!I++Wu)_I=iXLhseY z5>N6({vTcM9nE(5{tu_E>Y!R3Mp0E%hf!*;R9mZRx0D#It!bpFJ)vuE0$1fo|x`aH|`Yc~w6+A6LCUAbGeZatRKl zXQd@dIbefs-mAQ>4b+s!wQ3Al)DbW(%mxJy06#SwQ<6_KFmUH}KA_r%B#t3n^=S|K=-(hYuhc;+S6z0Nnb;@t z1*;O$FmhvZsI~5NWskee`j>1BC)9;tqPHCr^dz_2uY<9Wjiw$azCd~SLEOc$kI7Hd zJ~UMsI3!`232qy$lBuQn6$7h%R@#P)cGiD&|A!#g+)AMXx%+YYym&HNLmJ@jq+NQRB5{ z8mwXxw#kgYAd#Os7c#@Bc=2$=8!s;9xu}!3bS0}L0IOy1smQ7aUJL8XaJ{eFs_&gl z`X-w$%2v+q!BNZOelD&qxclhw7_C$8ls!ZSW%DL`dk!sjdr@}=_30HrN$~HzH#4|B zp3hJ4`^@*gr?*Gq8)_D>ClR*dH>VQfvG8z~>RMlHh4OOY;43J>pSI1%Nl(^Bz!cN{ zI2YptUw1kBy-e)kEbH>vknC6O$Sp5AYIgQrEkOC(KOTBLFzs&s*T-RcqrYYD58>yH zr2Ix3u#n=jyPItn(^^(}mRPq5=Zwk-Ont93OIc#^s5_TvG|8~)?clh9O4Yu)Z*>y1 zYdBob+^4nKRunsW{D!BArDsCVHk@G)l2Vz0PYFyamj5`vLd&-vxPEhD*uZxiQn$3H zKMc9ahc3_;L2kv=Sls``;TF^C5_@9PQBI`>sW<*uEULuS;-w`F4P=@$1Xy(kZD%bk zh7?yfC=27X(e$T4yKBe7cDw02{BU|^l>F^Z_~q2A*RL#``pG8>y?K+}Qdj4?n8!%~ zXGtza>{PvLGRoNVKdNIUb9tfcSen}EOnrgmqMZO?AmH+eh zX}mv`L@>I+ClIGMxxv@^41P_yy*rPVR`%9=&gM?7?^Nvs@a*n!0LJ_b#;$}xb$jjK zn;%$jK+`H>H`{vO)5O;5osdiV5<;Y7Y=<_EK6ml`_W-@^HJONv=1>HAoab5epAAYx zX~m*|2AM69b_URn%ScWNS}67N*rKa%x6kQrFB;q*rii!1u-&=c-6i-eThw-$TIJpG zJCaK=)!|!B*DagLnj0ECs{pqAUIOx7gM+TV1J*VA#A90?r*j?CCP~i*J8{a+IwY(O zyP2E44*;fSW-Ak9*JoS0y_c9O+wtIRzU;L}lk}gzQTMXm^=&#q%C1y*kYA${ue|2H zJd@aT1bXVHze&>t+xlyUXq@d91;^wTh`3&HmhVtSV%A$NGvmvX+#meg+(g>Vp3JB6 zPa%i(pCKpo@~bkAy-K~F<1E|5kz*NeLY>bOW!KkqzPzcMJbXYqc+py3J3vyXg}T&1 z(f!XBlBTU@Yy4_!t5dBOYO|46JuM{z#`4K$X)iZw{1WFRABGih3D(K>LtrJ9cmoK7 zHj-LO3anfq4UsL#7Aq4~2YUPhFD0Amg1aihCyukpWqlxh`Vi_sdKZ3o63wPu2efn9 zYUo~e^?72lD)ypjY>!h={+J@Tko8ixY(|uT90c0`MHSJzKwSyK zu97$CQlZL%7`sNF`L>X<=5DJnVS6ky_`rv`y2;ypZ1qOfVEcbo2!c~@1 z<2NE@f#pgPWtqOZjoJfe39jSm0gU)x6bjY81-$vgcpu1MvQA5^(h%*}Agmw4K<2z` z%`Uid?<4;)Wl@p9TVj{;eMXvK$`f2CQ7dc+H2^rm9-veakWDUf+h{hTj-SU4vTceH zZCl8c@7Gm)6)ls{Te1>|1$yk393#CAT<4_6X?c5SP5o1)ZVL1q0R4nq{~z=d-;bn` zU&jg`E)d295q9GU)mv`JTaP)XqAw&`T*>wLSQYvNCpBcyqp+#{bo0|1>W=mG%KsIk{U z7jwmk0Zmi?X8xq_qaO~@vO^_T*#-3j4KT{7QjhrGeYc3`UeM#CnG0HZUz!p8eaV51 zdo}vLT)kV<%9RA_0=XxcHFb>|8e<8xfoM#`7!of?uQ+Dt&t&M$r*%uOm&I0poY#iE zKb+(gk+33{bdq-7{U88geeN5;g=Skp4%*Xfw0^QuFX}iM;?mbDGXv%ZhkI=GagE#i z+se}}Eo~TcQ`b7VvHc#J-RNhIoOG)E-IXUVnvni0uJt!P=sTuL@-v;6oUeww!q3!3Y6=N0d>tBY%#E3TSsw-*^ zA2}dNhdX}Bs#QpdMm9b{mwE_g=;fNYc=8oD;^uLu5M0Z1FLBNIWn>bypMt-izd|&y zbhg$j2%F%~^LM@%5&hUH(KxT|r`2f{k&liW-;6QifMYGj-Xd23HV(AX21ZJoQG4OME{?H=IZl@a_-`r+6Jf_tcorKXtA&X8X{& zpyrV}YxneMtg|#(Vev1h%RVJSJU1<<2oVJyl3&>g9*@qOXN%YC6wMJO;575rg}C^W zJjo^nq5P~#8rFM5H^|0N`^z-D~_Tw8K<@acm_b=ji7AQ#lR-O&AJ27w`!O(1UB z8vNdO{&DbQ0#UAiIqL2>anJJQ+ll-AsSXaWrp(i_?Nc9^4i6^*b(yQ>3OSLOFnVKi zFmmGK;-ei$>F3^6@*#6KHI(A=Yi}oQF_LM^YK~d^er-UnC1#UVCy3_iE8O)JLr5Q6 z=wYjlU*Ma4)2ntG(ZZ#BkD779?U>CW3WY$b`rLMi@$`>jJhAZ$wOq@N3&*<>;ueM3FtKPjunvmbwY>Yt6)sMapAAe6Xjoe*}L_d5-^5 z8ct6J$cX`KO8IlkQuz8p&4T*dTRPrI*|%P&2j1G)1G8rj8_o`LJ}(mh_4G)7+h0+3 z%TgJ1C=2!!qy|~|sUBQmtAU(A_#0(SCV#XxqQf9nh|L-;t!3qz&sz(44UIAy07lZ? znKL5#?t?$I4a}v&RHgw)C+p%ZrU@px!H11i)Ln&CxA|yUg71NB{D(ZgmB1r^g!_;U z$8ghb;yL%Yl#k)X_B{tZvl5#a3vBPPa|eM>OeTJ1Z5`Qa>Z`JUxW%4+>YPA&tichz zHgOe>jWu1bJCcEkZ(nN2v2%#15yw@f*qs&*MQO+;X9?d`jok(t-Qqe;%{j$UJ$XqE zJbI~~4$xz%Ft7a!449ojHX3IeW)^aO(sSd@Qc#FWlZLWN4_gI@@up9uiwn0Vip+OZ z(fq{!ImUNC;`*i6NBYb(v-OW?PHwewrq)Ny1#ZS}jne=)2SR*}I@cjU3v;A^BmD3V zelKxPQ5QeA&;X_~HdqbMFe0I*@%odS6@HiAM8Lb&&Yzu@>1yw0KXy4`@ad(1KE$8@ zB*$yHK)%n~?HX&qzevasjWVrMp*nT$za^PKK~i~u%e{`#xX;V&6TMuAdQU8ZYcWMe z8Cb?hM`vf#ifmtDAz^QbZ(~~sh3Hy528RQg%0SgK{{c|>+=#Maa593tPFDuZniv2W zB|rNL9kghaKP-8G>&i_Ak9vUszd%_3gCqj%vu9KMMAm{(d6qAITXQhd?RKvgIHDAM z8#%TR?Nl8LGYg3jX)~0mPi@fd6WpN^NR-5O$HbL@(?Fh|8{TAt`b^z@ z8u+UBcHh8T>+=ZIFJyfX_fNKHpb+3MNY+ahue`IU%)-U1O~19#X5-3oOh)?8EP+wN zDZ+$_dy$hm2!Pup(D5?Yf=Z9@zo$GNKV{c58fs?EskCpu(~&pJ+LC@e zim(@*B?%Ov;ZhziGMB3q{Wt=S{z=~H*M~|F0V5V3)BU>bVKF^Cp;TK{l{zPW(x~6(%5_NU z*qQtXBv^VuwCIIXb-1P?{mx?g7KO|b+}t>>d^w!|n6DO_kHw<*$X2_Mto2#tnUl9i z=)x1~sCjR~NIxJZgh`pSZAVM(%S$F&gA>{Tg(AlU#0N`CB}Kec*mR|StDR2sDzfd& zUPAV*?qgZ?Z8!~uP5he6Q~K=!M=8}|W5v3nnk``C^i!(_nyODfx(ALg4q&=mIip4GtRRj{} z2fy72rnDNQi%*a!9>ukIkHRR0f`XpOG9ZHWSg6)R!?(J;#T$M-_Lji*f}I&(PB!X4o;L@Z?p(`hI^37F$cCV!BpHD>QpZRmQ;0AZ4-e)rV!i+JhzO zu4N5_5{F6`c#kU`^9ggTtg1a@cS@7PeZIUh)%|SPZezl$S_H)YtA>UQ{xO2O;F0lZ zW~Vam$WH3UQ%+fzx6cw|U&Zr(OsHkw$AaeGW^fO<`6d;l^vpsu$syjn5fzb;1GoA? zO-R=Vxd&1WNa~%|d+6Rgs3hB-*~e7ESPd!{P}|8<(hcMrd)s>;JWu4TEgx;{Ins{$zL<83JAtNH*Aq9}=Y64z+pZJql7V2R%^&#P z^PR`L04_)x`C#Gn1|zv$E5YNCGD~-zU*Z1A(}IU$Ctc^o_TT-aCBKOuUpzEbb(39e z9raY-?lmV@HfTXe*Rg7QjD0;J6c>cAnpO?*Y`@zgB#Q(rcVxS8;R`RdXpqUTBLEAu zhH*7@3*a6sdgCxL9b`3CgH447eZ8trTX-`Y?&cB)bPUVgzn@sETHJm`?nmWu70>{) z&hK>hXjv_iYFb}iiv*g+icf_G)fLUUe?bPwhv?5H>1Supx(lxONj^;2JUhak8s+<- zQwC_1#%Q6*w&J1tVCrCmS%$yDwQ;dq<5m#Lt(C}66BATp{4#Cy9w!Vr5#$x$lyp`1 zsgaj9G(e3d^^QD1E}T2?(>Uw$u9b1OCgXfvwO_SgdhYutP}6U%-W*SL&s%$ZMn3MT z`$oFw?tJ-s%4|e4@jmZ5fR8P|gcGtT?kO(zRr&Og9WX|_5ClTe{xAu2CFY62T_-SSeewdNtdk4OC$TGxyH6(N%cX~qt_iY>U z#gV7;2=X*&eeiT)&k7>-#`}_TUrv|93$2J`+GEbB$+g_SQv_=EvO|E2;C zzJBvnZ9|{ppd_j%WdUnwJ)z?K)++dYzfXs=Bzn$H7nI6Am_Dwbw4`A(maO(up_@B^ zk{eQihvB#2h2!|raNmtuTz+E^m5LZ_3ku@sQ;vIJ5LEF{ytL@_hy9r;Sm-F9zl)RY zdS+e!7st*x3r_txl17mG9LqkpF>S9{8mOTuoFNR2)D>FWjXvi&OC}i#mE>y&cHz(ft9s`o#IPpf@(NSt;Qjk*b&rRCv! z;CR9s`}j_+#}Z?EzrJG0Jbqn9z09-F{Yl*UzCe+hA5W&vm7f!{hP5{21S@@Pv`s|X ze3MC+9x%?_>aSyNGef7`7*eX#1tNLPz};_(juddq8Is?Z>Q3qtqu0ikpLk!nVc>Zf zLb;<{l^&}G7mNSnY^FlAD)1WEfX`P#2^)j*oA%xZyvAzqv0;e8)w25G+#%6;sDOEn z&6gZ#0Q4on@6M=oUAqHZq;(=ZBNifBn_&+&sLq&{`>|JwZ9vz}8$!M`1k*?%LhUet zMj|w{?gf1gH(r_R?*+|fUzw7*TrpfBW!+P85cHsY=vAkO&namg{n*OmKgMhzOBqgU ztwru>Z~J>vwzFJT_)9`b?kYFISF`c%i%f>q^7fFdl)z|Vo<9095I<}i<9uGZ?$$L| zHJ%+hn%$HE73dHhe5GMzpidJW+KTyLJxo_Fee4u&8eTOhNxtn){Ky;V(?-g)0(qv% zZCWb;kN|0qu|vq8*Qy&r%%2l%|AKVt7U?SOdw0LKgI1_Jk^Fppj|D78-+5+~=I+ z+?qg^(wNbN=bVtvQD5d8K1Nb4JI}P3t^AgdZk9N*dk1TJ`R6rPUtbdaT`Nstqe?SZt^fpEGTEcf%UClmz** z{hT;{jq+uGZzcCbhJmhM`C-xSz0$XIK$`1 zimWg`*J$09{RL2JmGK;D%1<|Ti7-sxi7-^hKFhgmfib8Kk@Pv z(3opGE+=O9U|*2UXHaf+)rs6vXpyK#aymJhkA(w@WR!4BUI6-3OEZ34Lk-Au&%#Om zD3j`bbn~x*-wd(9xDtwDL~a*1Ug4&@c5%L|u}j!=T`GNeehDl>pK!k=+4S>VOV;BF z#wgm3LM32P6YbqJyuns{AL|rr+vB}8JV9Nn(4B}($XnWQv-XSRHI8Vx=!4CU?B7Ox z?~?qkSpAKZkS@}(4LQ<nwY?N%eoswvOh)oaOx}kh{(~j=bFDN^+rt{lB9aX_77H>Eu@Y8 zG=#C%2kOq6em#fSsbnz|3Na-2H~*7hvQuT1v$Lfm+gA&S18LIj(`;oLYT_sO=W-HY znX^yi4`HA2Wso65*4%SqQPO!=jDA#z%${QN^U@cu{XL*9^yjg~N#t`#r`$d5H0K>e z(_hf7x1Mt-5SnhjUsmD1!+7Tx52ABn%o1fh3n2(VL${y>0f`oISzf3aiZd)&9 zv<~`pJ}bf&3~etDSWoG}b?qt1aS025FxB=TU)>&cZIeR44Ru(2wqBpFm4qJ~I;gtPYTUT1?26)h=M9lvyK!oc9VG{z-tfP$_7^MnSQmr0Ms~oX_A||_Zj=!7#Co;A zZLmi$A5vm`3PH=8>Z6_B)nf`z3!j+Tf3XN$LPwAt&^%LEt@fX6SYvA~dv(AhQ|bvfsG*`czaSIkuB+4J&+5vr?%M@B zU5A~2%3qof9x47<6_%fBVg=G0S#7@oKHQjIiDMeaF>%wD^*8o$v+zNCYWq9G(cN=E zU62Gg8n>7HWwvWym({#e_B=@+nBdZ}9Zzx}|3PWvEeChe+P9-@&t6>?xmB%qr7Jici~98q1z| zbM&56i*Kc34e$pX4ChMROudpjz-oKT-*Us3MHm+sph2la4PXMCec&%B`5e?v@h>Pc zyA@))d6iXE?%_*L*Cs(kb@23vgZO%xsSpGE0o>D_icHARHk|W$s$A$G;yfESB;VQt zU8Mi@c{zpm7R7HLEJ9@W*6AElRJJ7 zI$f5iIzwC7IVY?uV{>v=?Ta>Mg!!9vBJwr`JG}H zEt%(r^^?58PG4>|AJ@O_s2nX3*H<-v%q-}uu6Ofk?xM@SBBXD>#sg%-Xnukyc z4thG4?U(yu4lDIKNXS`bPG19$Kf!3u7tcmTwMCv5GVfr%IM{C>H3AQKnK#IxHSM-7 zy9+;42~0Q0xI|&Jpk?mX69sI2JoWMJ(EhP6$YJCC6GWRmYYWu3(hp>;Uu%rP*Q@dV z6&I@N8d!a-HUQ%5yZA3{^w=2xLz=gPw8iv2jwaj}*ec*6$k0j*0N90_g0SeQHB5+4 zWsFh7$uxmo87QLVxbe6du&0rEt?uJNmGGskZ(WE0oK&wIo}O|LQ!jI?1`Dtcc#XMR zo?YkwGR)yWb{oYK9X+c@CpxDV9M1`FqoFb>au=*P^1cGfaz=uZE(M+r_NYVr6UTGi%!c6T;Hz}hB#v6)~p=zPOZd0l*$>V{$JaQV+!!s|?aCd|?gy88O zCZK&zR8;dU=q63<82d`^5RBn-km_iTI!oTNRO2Sh7ucXM{+GTRiuqtC3r)pV zC3GJYH%bv}ySyxx+?{T@TN;XDTLH-a6SHqsl6=BGIo*hOWB;%Xu((lc<^71?GX55T zZ2`)+J41O-*85D>zd*gNGOU44r(HnXHQY)lUWHDyqhx5O_D}E}LQH1WMI8+XL&>p* zVWvqfr_Rt$%C&qK(9v(|0h9^YD?m~8Xa0ha4O5m~ELV16>cU&{)>GVO(K^s4Bb%Ck zkdJ$2Tc(4U%+6`K_ZkdMh-JIRcgXKA=-Ip-s6#Ag<|tu4$Dezv=PxK9XvFEWTPp_e zh=pe*+8a4wz&~&SY*8ql&`)yZtbWw@7$M+$Yzu5v=0Jh1&w8Zm*S?EO78lP4MyYERt#qPfVP9hCd9(yX)?=^?H~v7 zOo`8aR|4FXauhdJ8Y*{&!*kHh>d3n+AJC+r!~eYyW5)hu+JPvL2K2F$vfuxrDnqu1pMEF&DxL>GMT-D0iMA1kn%@QAer@D;A5Q|HRX%rP{d z_4h5a&nnX{Uf&=?Mdi(4sTX`Uxs?DxiM+7Y3rN?-9-^gm7r5{CAzF+R>bdPV6RQ4# z>M^ZkW^3X0*lSk5@b}MRO3ZVG?z3kQP)w{%2x3}Kqp{xfKY|Vv^y>p==AWPgjcvz+ zLnb2*L>E{-p}?cZyolpLF8GP`@9xa~@vPVED*S?{eo6c@ z$?yY-G*;j$AYZ$@K#cKk46;2#O%S*-ck6lzx6ABGI3We!QdxXV8vemm`Pvx zxQ)`8ecNCM;VYN*QVuU>S|~)BUeRvWy_lCkBG?XY<0$I5O+r18Qd_8rSwGUW zPu&W_8Skm7+t0!G-V#Zn7dZht8+8zN@*8Sb!feKy`!9&!a~*r|;p z^`ANW{yFCp3|GWJ0Ak^P&c;hP^3pNHfI2X=6##(4au5W&Ax2ED1EiHB?D}S4Kw)GR zJ>MeckLw&F_3_iPE`tBx83kVle%6GWzU(jX7o@j|JFrCp(boKxWn6{CGFv5&7of;L zH8A;u`AME%t$Ow!1zWvs8@&)Qda=*MASfngA)P~^*|>nx_2Q@5b(te@Kv)11hw?)d zMpqf{&aIxz3|YZpOR$?E<8OA~OxoXoE^dus=Z#zAW%PY38o!QVhS%e2ZNd<4_9G70 zS^)86qskt9z7SbOgRZ~Z`QVYH;(V8Qb?(mM(}|eMd-TZrpQ2y=SL(aqj8-yWy4DXu zS`aOF))WxE>Tn=a1C60Ct!_&*0+u2p0ISTw4s^`F^`YIk171%P=JWq~q>z4j*01kR z)<01{_dlWz2)XTl3@KoGTC~<~15Y3ee?i>vSnysXf+;VveCrpmRcusu_FE5F!(_gA z#Yv!4s3p1d9|~dtZX1U=QcPdtZiF5Uxt(mllIWxoSmJ;=V+EyM01H2^S(IpZ-`|eAsJq^+w}Pim!@g%p~U1~aEwF| zpetuYDgU(zb^mOFMrWwV?m0m20JE9x7mL_?Z@Pbv)m;CdQIz|@>#1bE6Gw_J3-NiA z`T3hVg;2~ps4sp85~%+%2s;w2E5dJtx8hNI1b-kV`xJGK9(54@>?1%#WGpDR08Jp0 zX4p^jfv@);?>r_LyFlg#L_g$zl`;6=MgyWRvJ2>%9&p&e6mWZysm4SwU8rWH91wi< zDv;3t0%{yn!xqb#nDZ`nZ7ln<(~;PJ_U->#izXXWdrf3@%lj{=x1kNpY}Nw&?TLL3 z05&zk@9EYJ1QZ@Cq@&!?e|)>w6JOJm_rLC@??09s#R>){!F{?3!O)dqQpcQuE!B9< z`h)x4GzrW@tqh4;PyGwx(+JUtq9Oxb)fa$%ng3nNU(hDuziNEN{}iy68DK3zz*^qh z?*eLN4~R0VkOo^v0KTjNkv6CM&#VHw2m~T+|10xgZgqCR;J*YWk887MHXosfAB2M` zLbI-@JvDf&;0zKmZ9qlleP^EjCkcN+|3?(oWOgGP0Z|=LMl9IR$grLX0qZ`s&*{iA zog)1c1ne%3n!q^hBYg1uznlMmW( z-r{-}4=z*PP~Pc~Q2CEP`0w$9nY-uKd7F$GI)6dTWkDcz>b?qYLlI-9jAI**JPAI$ ztG2It`pv|p%H2BHdW1=KsEmK|v@6MHBv{~^zx4bWq{JV|RkU**9_XP}`dNZa!O-=% zDQ!!v`6Xd^vv8hYRK3uQuUfnC1tzd_kzFkc%$qH{=5KR=!^cE0)fnLhmN8xvGQWoC zSxU(1@5-2OGv8}sHL_piH~6X%JiF zSrCY#rn5=z7`dkbmGKD>E*wBL?zuFOrgSuB+*UFwB}1v&HGTm0weQ)5jE9H%Gr0-4S zUvMVi*ARq-K^2(rx*Dt>($`Sy4mYb@IZ%7)-;Nh_nqj_s*h?mCmyP0zL(cgHqJ4ez>^@c`ZV#g4ml;>f9&D201il0ZqoDX8^p{9me!r_9ykJY z@3swiXz20wr`|_3&IL-YJum^F^=i0s+*b2}OGIyGhZWCQr$o|^AL$lSJ##0l?nb

sziQ0|!1iOEP9i^nwzDKEvu?E%F%mf!023F{9t?WwxZ_xF zj~q#CYC&h-?Y`SC)YaRvr=>?XE@!F&_mqxLt!jls?sL)!{j|BDts9(^jRGDoOXSYq zS}0Xf^KSY%D>!9jm6`Cb!#LvQugjn&!8Zw?0x=G{7JP!&lG+Y zTqrc{++L`rX>`!4UnlbDkls)5MBt@dhGz_Egx421oxcEmNY*IfG4 zMRqQI4G_qwY?4dANeo8;=xLhgHUQX%G_Nm*Hx^1F;;I+R7T7MmZ#?34c-f@2UkU=p zF@W^5bjbk%AlTVlF-F*2IwFz-KpF}r;PJ}L2n-uQ{e*{8nOkCU9Il|GW52&~sJKjm z*o^?pFlCbl(%W-gh+Vb`n^;6(j{eEpqWQWY&@I8z$zwK7>#=lzBnpSQ8(?qWBO_fY zIY!hzoyxOvg5wMQxK;GdPucvKcby$@2c2t%+vh*0G|aBlANZE5+CJ!OO7vIz<(FZH zMNjxo%sck}|UtW4Pf@ovbUUl`#o=Rw~Al*#E<8UP`*PptYgf6YeGv z9g?JW!8cs{!_5~XDwm5m`JNsS3%@~ux9Pbg_ZRrpAT<)hKAq^F&{~<%m{plNJkTy$ zA*Z(~`MfOP#goY2x68{MECWXOfB1{hp2S}Cg9#8Y7eCC!S~p}iR8&DV;0uLh=bui< zh8lheYWvKh+5$4AsCioXTznpKq?bKpvyV@>FF6IkthoXx>Vb_-yg!v(XigGa-%arT za6JiNY5kyU6!C7?6}We_my;89x1!u`-C>3VX1QWK@yJ00r&!HFZ6-bJ7IzS6S4 z)gD?sqwd>>d+Dvk0}28zI16i??OSv(W(mlB!~RvIbRXK8q)RYosGV)b{IlYKeZpa? zUtabk9cxtc0Sf&(XUclmAo!I*6E6+VruGFA&Le1M0yS+|AJ&V|L>(YZ_j~}pr7$+{ ztWfpXO=cgajDfrlcvE}Ac6FY_pU_KV>tta}4ameGN{J|T!$A(55`U)bNlsXA!{CaH+Hb-@@$8P>BJK9Nx1L!U| zktSBKD{{Q{^q0VQ34!3^Gt)AJccet%hYQGRR>fb?7X!Py>m*bm5X(@Rs+%1Kz|s!_ z=q8~JfxZA#%7R9S#%(Pr4pg@zMgs^(7787gu89COd8~@_!tez=N%#+^YonWZi%kL@ zar-Z*)f9u8FihXL>U;Oe*Q>sJeC3DB+Q@3h*W|=PzWv}KeR8?O;hfyc!reaLXJHOP z->rmSCF%?$LfV=XS2L8a#Pu2%Usq;X{!j}bDh~_&(|q-nt_pX30`^H* zbMtcOBe5yR#NStxx^9;E`x^t(X*fz?*oQ=p$te;nEX*GFe=M@F5J~yCbwi8o%yH4g z;RK2gt8pD*(GDx-2&-uPQJ2UW1@(i!TwhP;;WyKX_2}rjk+SzgMTKv&iqIp^q0`_Y zx5QpiTT|)6H4J3#>$&)TiQeyhCk7K&p4}Eq&XD;G1~vo(+=nB*@!*670;y1FPqQKv z{GaYk8DL74ibGC=TOF^(y7Df(6P$WgN3C(v7g))6hkhGZ)fcU#E@+mZ?_f<%)mPDmL1^Q;F@3%0hQ$BqTC0)D2$X+_`)+jB+?t z)qgB;S1jHeA^tiGgq5Tg#|;m4EvRHU8+2SwNejeX55&=w^e_kW+;sLCFmL(Hnwc8mvgK;Cx^U z#4`5I9sqevsx`LnR71Uh)GL?SbU%ZxjVja^f?dgT0;^>8%eXpiN9c5sXIHS z&2>-R9}d6Mc(DSiuJF*&QXFWW^jRPsmBN+23#x-L_-D5JRH%5&>>WDesX6zJ#E2Oc zlS3MZI3rXR1J3}JyNRu!t410TcxuNgvo_G=&=~T4kW*l&eYh-j{Pjw`W7hhha8pp$ zo7cyeRYAu;JOlkY)$`3Q+C=n^>~4T+N)q&(m_qh`?2#&wUIX4K&i^>Uga^}i8l5i&gqO%7#>jb$@f*E zm`!PaglTnoh8sG$JJnRMzfEYy9of_R3leqZiit#=VDtBB&!T$(8N?ME>y{~ns%@vg zpkmz39kv}-B>_Q&_^9op<)i|ecHceNl;)&k3YO?yg5NwYxtU2_oMV2xux-6P=c*D+u_5qZ{znLxAJiCHg_y)bzSmM|Hy4Cu2*zmX*V=Qi*ot=uqeyJe2-m$^)743PAF;|3VI|^ObVj;kABc-KFc} z2bJ{H&duZ~;<@fvQ;Reg&mO}5E-0WSmSKlVN?|Kub-$#hHfUoNWgYU_mDp8;G~>kz z-hx7ShL%CsLU)#T`qj|jdpX#(-aO6Nv`bgkW^3)D5GrX8*TtM)%?L3QBd6a&&kl@a zhUn>@`m9$XKQgf)pg%h(g?4DjNKP{9Pl9<=;c+2KNQlH<+MT*< zn=t!hP!juaK51tQuP*_!Ofzz>4Y8~nvYx`!j4$pR%=Ob`k|9=vhP8#Lt$?}8^;fkr z5i2t~sc!YU?Ad)O$=VltxTU%$sL;MChWlB4HdXs zo=G?W{&uf~#1sgLulmVoe_cWCx>j0|8TWjA)dN-#bZr4|Gd`wOXiwpA=gKQuLO!#F z+^-DN92crTS6-c=P#HfZ?eYNb3WsPY7(YtW#ltO>tBY?cmJ*nc$Jws$`cfG&(+h_*^A~0^$6|H zAAdse5dcTiDpnEUgyF9HOvdsA1$z?{0UcFnIPkM1bTTWZe7f4|;b)ET4a97OQ8@o> zVtx_?3Wa$M_fMFMp+#fdp0VqsnqU3XCsq)1(cYCQ#oXG1lQu-Qw=F`gfk&rfwurOg zQJ3=0H*X9N>n{&x1`$5&T?`0!k~KIwH`{k1yV`&DM(&bRT-SS_B$bmIis<4^gVO9& z0J-65sl9qggeDEtdgxohbM@6Q z8jn{?ONn0svc78voj*~iC7t)Bk2B3=WXwR|`Nanj{#P%CY|5$AD<3{yg-OJU*FV^i z)1{m9)JdmRGUREM30MNk=r3sRdN$^VFA$VX`nWS_#bY%CG~>4yZ*q)Cm*lN$@m`D- z&xOP+;5ng!e|r17+~GWUy0A)cUG@&|P4BdQsgg}im_>b^FClMfdzj?2vecEVORrj? z4S|0#sxm{q8CZ$(czu!bc)xCQ<@AJ2i+R^4en%_*Lx#isz3)18yd2`@YseVPV|W_C zc4(XrM$0+&6U_s* zK10?(vaZq6!uJ@ym%d!zXh=dN4lp$;%aj;ly>))xg^Onw?L^9JGT2g(ET@61b%vUw zjymoIVFMF;e*#{%&o)*0@vPhEIHfmSNSX6*93Jl3^Ia`XyK%yHQ!&q7#u7@}2&t?q ziz`~JwL^AZ9#n8&_TZwb&Gj$G-fsK-qveF{t54E#6_uNYuHY0Ok8&NSNS$>(nto$6 zHN={L86_Dqk_K#P{i6uf-fa&c?&p*aD}=bGDGgg!KvGv2kPGE9f>gQM0J%UQKt64g{N)7r1h2=kpmG*%tIJt93(uWx( z;zur<3f!sHtMqpe?P*b@57fae((lL24v}4VgBj%Ys-?!~EKB=>#wj}Ep=S>#!!KIi z$^-YR_`E5#Y%BmjecMB%y8jCAmAic$y2ps3NmohAho7C}UFH1?O4_2XAFZrNV;K^@ zkUyN_nwV>`AR<3WztcX1pNeQvI%o4xUq|tGhGc1}9=o2H_vOTN^slRnuy~g$BLJ1Y z5s1Vw>Ck0@M=h>yo2fXyR`|x}^qHl~;f#`x%q6}v^ zXNcO|zwPbEvy*hq;k5jpmL+q2`!x#~Lu{p;PjNY8Z(KY?0Vakkwq4Yn);LVn8uSR3 z!Em^33rVX5z zonZ!hnEwU!%wmn_be~jKkCQh1IMCATJ8vv)RbcL3aGoGvVMKSgw~~>sMD#s<|6(k| zH@tF@wChN+#O#`H%gJEXirp({p(?A=hVymBOB>_rz0xu>L!tvc%e-chGw1Z>|14RD z&>c6VW6e>Qe@U!bTh_m_h_;|XmvHPj&3?kQ-7t{+we zfS99YoyEQ(uk|OXSn~}$IjqFB2+RN27L2ES50S@I5pBVf zHoeirW{r#V4T07q#)jUDE74OuneW|C4Q)4SVi}Cihh~jOPxd58j(=M@xO(z^Y#SA31Q@YKs$(G*}y*3sRKEu~kOu=ne zB3*)UG7<-&1?z`9UBxO#HcQ2wg02m?COTAF)>gaepY^DSGb~OP!?~FYq@LC0OdhD+ zucZu)2LA;ew#I9301RDH^}kCHf6(DCH3|NwL)A06Mz%!P`_Nzj<`vDmi<%RrZi{LM zoKDI_>WKc1mv`~~P;D%A$7bc`rcm7*5zDX5<(hUV!Zzb#;QJy02k zy0eYO5V3==q)3X?4RZ$FwiYk*&pX6ZVDCp@FsnAtry0r*8~|uzuswco#KWx}^{p8} zMySROoIRCwLNIq>T_`XlKsaI{q4e-YMcC=IX8}ODft0CX?9nI3EN}wiA96113p{~5 z=jqk+ic^2_SyeJI;Z-BTmz;sXbGVUH8iBz%(DnP}WxJ+%w$O>&-z%!LeX7cbwmH(0 zWYy1*tSCxJ>7_ZcMnCRIAN?UG@9*Mc*nd_${zg~osm7&oB`E7SMe8@Tzai*a142r5 z8SOow4y4}}O|PQdc4Rxf5m$(nhcrl|Z>dA{${4=t@E7`S14vn%4a&AJRd0LZsAgEVI}ah~F`Oxy_oM}DKP`GcDu zUj9?URGKQjnXNM%;7pc@3f3!ZQOzp15~&?LblFQWrbS&&b3FBk*J=sCN zQR1x|NA3>$p3BVp{?=kj!R=wX$#5t3ea3SD>jIH5=SuZv&#hIW=I$rsfJC&Y108r; zF~hFWGX>F=)1()w!D_Gm{GwN_jG*e6*c~*2&LSmFrcdfLJ z874-I4MJC1dO@8BhY8Y`8`itc?7@ zs!4w;qXxXIW-Qw+pAf3kfR&bZh7;GNoZ9M;Q4(XK9dPBlEN$4i2s>_C*MS4BPgXg=ekH(qfsy-g)#0+@9 zF~0W)4bMj30}!(l#;&}>cfXjKtxzpJr~gc+9osMGXK^SY`pS?tqAYzfKll>wGrcMD zd{`lxrwAaXoe0Vj`|*5aQo3vIX=R77lwbMN$OSVjZ5^m7IL~o)S;cnmx_mA(MnYsF zVYpxD2^@XH?V2L|mdi)mUjDj%>3X%E`iHe8bMl|LdPJEW-MU($i1BPp1pppUOV|@1 z54E3GM{A9(g+b;_IfLSUs^*u?!p_(P@jO7=h#~*}>G-Tv!;*KmCZoMA^PGPmySX9m z-o-)Ro7*C6GOrTllKCHt-28dVD37vv7fcC-;;&ek^Bx!8A*+Uvjz@VM*~E zS}?jS;ggYKbaKGwN;GrTm65>oi2>th~X zM_w=S1R+Y-&n3kyozZYi6(?phG)*^-)l*QVE75k%iCAO#>M!@;rVWm8BJosUwy(S{ zPnH+EcXY6zWI*K5i!Kbi&(u#D+se(qt0c-!;8A2+7XDs)?PisQ4XN_mT8)1*caf`j zf+F6}NALBIUgY4c;cOzby3i1c&yF{{ll`WZT@=i%Y*{in=zoKC54YhT$;eR20|JzQM!jSr2c zp+qE&l52nhcamj$!#A{p1)^l5#wq8f@QZrEvm1~0S#Acs)V`^#7w^X&EX7K6rHAk~ z0gzfjGHE)om4J3xX2peXgnE{fVSU{jJ*PCs$5 zIq>cK%Ehz*CR?TxqWnIZ8*ezy!7RiOWB{jIl^vSN61uAP4)!VKSBAX-W)P)px)*J& z1OUktdH~bqi2K5yb@Bf_v?J8!QZtiq@K53ZevYW(H-CbYoAyGLPFHQa6|4SD*6lKvxlN=i&jYoe(`ZvPP6v6mjs0^8mb%b%}r;r@zpG?!{S{OOG-_UoL-vGT5- zS?^&Jc^kBOKN}cG++Tr6!uhubgrr#@%wk5+H{Q4RlnbL{8-inSQV-eWO_=&MSZjSa zO+EY=>41ONU!0?|iPg8DtsD7=SH%5_dV$p$5v|*AFSovLq}u=yQ(ENMXUM(#FK&q? zJt^eBsc|2pp3i2xweymJ9;A`S@@>ip2yGJ=w?&$|Fqr!55jl;?+Ce4t5MK72Vd z-yyehQw+EZpjDX6$#kGFTNcB(cu;1y#oB#Sk@F*ir@bS(lfl>2F?0y>+D~TtAZ9=cd^}YxgNPU#1Ofvy!)AmG06j##a{+`6w8()Ni@J6K;&UC9}cbM zarJ=Bz0P-pGMwTD(8&eNC=6VK#5jpQydkmu!$~Q?Ud8XC+;!g%T!wNh+OY3>-Ve?P z{0XiJU-Y351(*#ko^gG8QdIs_6#kV$PoeEM(<`G=TN-^?H4E3%Je_T4^|)(bHqdGG zg>>goJ95!)4U4@nd=(KB`l2>stX%eP7wQf2w|pdHkgr(!U4(pPaE~%eK|d7G$FUz; z2JTCS!^)1&C;>uIOlYz$?OhY{4i#6n%Uewrx2f2M7x^HiCeg zcu`ki#>m2H_!f*L_!DS=C+nTGek;%{1}IrX)gWbBWF8HGX%I~D-S7@3C{qrf;s$}W zL{aqYuNgxx@Y81Ey;PTLD1&L!76;(&|3HBJpNG-`x*pfCEFI*SIiB!V)%g+Q^R zk~TFA`^&tk>ob|YYpE7ZsQh3iXuaOZD6>8MXqPm46aZe57#K&vhz1gelZVqvN2MD9 zBrZTr5;YEIb>AcUx>dm|OEO3>LpMBwE+bufm zJCF3Pbq6urK0HEI6-e>65bDz7944*!$n}aaD_)ozk0*>aoSU{M(w3%Y9<4d=i0w@E z3~#qGeKP+X`qfaaY1L#^>JHX0-ufF0PIo1{#Xh~>R z{;tOC$i^%41FFE?Y6S(RuN`84!Zc05cIW%|r`WVSO#CIR8%8}cRtvE$Ttb&Ufc3rc zW2IZY4B2pcq*>KaE;4q(cU2Y3Kv$)`B48HOd}W27$vz2?(R7Swc{3D*8R$-l@J`YH zm)o^qWM2?CONVwTe!F*i;w{VN`U`jDx>7^f{riu7lQW^{6Ux238i$y26^wIk62kuG zjjjdfU)wO|T&|!_R)Is&&|gN{KTc|T!XCZ}{rjMky3ETf0E9l=XOO3H%*7Xgog+Q zeedO`B`RQcz8igPUWL)-9+z+R%c)wj%){YRM!2P;+uOS;4 zMWx^A?5FN61njP8)M3Y{K#&0thwo2I^u}K2C>lF@NBLeDE%a|Gm7DxNLsdUY{7zd~ z=AAhTIOBc!0&Md5Ev9^5pq_#g5CWd6{rd*NsmLS-Y6*a5gtPx$tbu)NcYcd1cu4zA z_rLMuP(-3oFb~R?^xz%oZy~$|7-KXdxp4WIib2CnG2;=o+8XaRQ(<)b_ujpWBUao3 zgcRy}qN(peAo*ARn+9N8v4tThV+xz=lmgSTIxMrgq~$&nG_ta6nN+!x?W+wFyw3DG@o3KwF^0JgzF%Upv~v*FBV{l%oMPKo0! zoaio_+Z&0$n1lHhA82zQC0=V=oCL7F&7B*t%(5m8Esh45LyXd8n5?}@uL)Ew$p`xJ zf1Iehj7fMTmKGY~i$On$zW75x&$Nya9l;UAfRfW*(x9P7^BP)$!Phx_fHx$FS?e>f ze5^98O8)WGhspB`YK0iw*IrZGc_C~WOP2ImPGv^;Ax0!oPZfGoBJ^4;f@?0Hj`@@xD2x#LI#70?XUa{7c9Flu2Y#q^sz zz+hUt*#sMR^@swm7QfS-1Ktd?kAO>_=l)5NT!GIb&L51+78$VdPBfJP!%bQ8wfKo# zUuM2Kvy7&ybF@9>p(3;`t;HJEV){-XEJ)_BPG#tg)qEbiCf0YV+SupGr5%C7RMVk; z$UdU=K|9_52r#(-b>X=hHp=Uhi7I{bWhRd(6LUZ)KI}&v?bv^6UHww9E2!KM_ex1! zUT@{iJ?jQ}dW9qLA>aFM-}^38Ro<5sR8!8KjUf(@a9)%;Z}%hF0=rFyR68Ovu+!?=4$!=cfW|s~7$zlLOUOvCQabpdE1yU0Z-ouf{FrgNFE`8$* z)~;8qV-eZ#(fY;D+t&#$Ip3}3%^g9t?^7{Q)V|NOt*z?Y+RNtlMy*r^a#xJB0M9S@ z8?x`5)1NTTLZascP!zeYSb0i6E0E4tn)I{}dh^S!`;^jtsaTjeLG6?2FqDLwLu|WJ zNHDbNftIgbL1Y>1bkL6<9U`p}dkqOXh4lz`bb{em7hI7FDv9y|7yofxFS=oD?ry4V5XL9 zm}Fo=Wrsr1s1l|}P0YSbdM1CUqW+s*e@#MC8id;4o;p=0I|4^w#D*_G}kqunm^P~)x=WoJ^Iis-zn`Y z-a^}BAj0FD2H}=uI&|;YOe^VF=sza5jk>)Ae$&ud2!x|-wp~YGq&geg({DZ+xLtH| zZ$zcgN?ZRN1|khF{MzePZu9D)?Vv-98;;8G9HA7Q>A{$OSS`pr=Ik|zU#gy!1JN2r z+l=_@CdrkL%h%FOL(gw}CW;3mKl%+O9K_Geyji$aO0^-uu+Ww-eg>ref8S%wiz~0$ zW?4B^MAWYeyPonLGu&GzzdfO>o~(xlHWY`yT8QLCWUno@@w_}I$H6->aOl(PzZ#KF z``6f02V6pfouas#TK)oE;|3bU9KJzcM_-XuRqfz!?%db98?Y^hy@zN%hx*AHA-&4g zexp(hDg(Z?y+XBnT3=%zlXW^OvR0eFY;C>#T&qFq_8d{I#K!IpeyU%6Zy)cl2T4d+ zd>{TMVXd}nV%n;tJN40cEyV=BN!Xw zBKwnI8b=8uCbw06s=y@NuOCgLdY@-!5&H5_BT@#_IN)A~w4-Ml7Rg4H=9^OWs3 z!2b4{R@(&WdaTWk`-|Ocu}kL`*J7J+F#KyjvhB_T$Nw6)?$t9mO&vk(!4C8n?)0P- z`w)ubM7;-mI^y&Z?clqOe;UbrJN|@b(@dlG%n4I{bbF}u=HI=E*d-W;5x`N-uHQ3m z&llR|i=3lBbS&3h=;rELBlOU;qI|u5-wwHCniTUa^)Km`+W;j3WA&z!!@X<$J9fKXfuRs6 zb(FleFrEK3-lOW#=P93WrVj4(ZS^+hKN>f-v8-R)b&#%pjc{FUob=a#udnYGT=`jJwJH+@ z<4EELA-SLYgmTmr%H)ZWJ~kLzL!QK`oT8OxmD@{9&WuY3B1^*0+16yKc=6rcYqo)k z!ThVlzJb85-xNa($-7GyM)7 zQf&C+1P9+6a|yMxd<+LYj_oh0Eh*_yuj&_1;3)D9sSs1~1KllQ2&~l>j9~sMG-4O6 z$$nI@@gJZ%Hv1T;U$Hb=SB0AFucNlLy+ti?!_tfSNu|L2!U5XCR8uZH?II~2E}K44 zBj`i=HJtwR9&G&<%P!VbItN;S0BXd$ZjXBo@2_OS)cm0K)01Zwc~?!bL%#cL%4y+~t@J@Gp=dBqhH`4JDJ2;B-j zr&4X2>mzt|a{xX^skwUJPVMe=O}lKFB{&V4O{!W44l@1?^;Em_FCADO_ncS7bf*Pn z&k^T3=f53Y`O6sD7Ee_c=PY}@tvoIARY!>@Rjoa?S7Jiivp(aH*0f!_?-0=94~ts+ z6Q(+8Ffa^)pw=tNJNk(jdJc4%V0{W$|7%lz_}_}{T7iDfcx-7Y4fsMS8K$EBEJe5K zp_yp{5BuW4thndPhx9@JrN-^hEKnfUzEx}c5WOwiS=yE_*b1>G?hzOl*R7|muJJ@| z8$lktPTcOgsL|1vjb}(Ih&*2O7%37Zxn#Q<1^=Nhf>~bZn z5{;=a|M8@$t-0k>l8l-(-;-}&zoAY**1!BoU!j~mV>Rh)bvK~7Id2GM$+Za&2C7k- zEOrn3)zH!~qZbZeLV%LHpA5BnEz_3ls{ogF+|OpRY)OZMfreWSEAZZh8Z9%x<)Q9RIi48}UGDvGDGqvFQr3M>>Q>PZ>F5JA;DSz3Tgdws#(}T`wM$^g3iBKFstd(YCJ?P)YTG^~m)6dlr|NTEXqv zPfi%acNh;@FU@fh~px6tk(#z?Mx ziaR7>pq6WLgQd#fvt&N+F|A4KCGyp4{n+!G_&K*NZ?AxHOL-F)3$H4p4F@qa@#wBk zZD!69iG-SJUBeUsVUe&?Mq9meucA_d5w-_jroVMNiq00B24!BF96(PZw;p?~>F#yZ zi0;QIZnb0f0&<}K*V~`9Ok(WqdvZX&_ln3As6Y|65l_%|zpz(t(En5NZs}eK*e@5Y zLo8F-l93FesyVO^m#?%eWtO?;3;(4vN?1NSp0p1_JZy*XgD+e)$nP~BYY0Bp{6+XK z%Z+z)X}=ZTU)c+NMgR?rTAHN-H6Av>4Vwgjm>UQ!pEj^JXf19|L*}JfU>)*Nn=;%$ zF)!CIhLCYN=!w#Yds%aN<`DCrd?tXU+g8CX`)%BlX5IR~)K+7c>#y74B=gMf5O|Eg zf5~)B+g5eyswjPNqd33LE`Vr?HLeRLCQOZ=0R z1VOyju>y47qi&ioutT8S{&FryPF-HN`T@UFZ(m0099i+;i<-ErT4_7Z|L^2+_9g)_ zG%&m)3HJNbxN>BthUl5@+l5LzOTj+97VxE0UF&pr)t*f>i|P4Qnp2K)65Q?;{D)~h zB+(SU@3zX#6MGj@Q`;dySeHN$C(`ZrR`N*$;{`qr3OQrD!-nTHG>82tRGZKTFhApx ziKKPwswk`HB{7CEeg_Q`Z<>=vP{}e&uCIL(udz&RH1@%)Kj6le$m*N<+(T1bH@ z5ouF8>V@5f&Ywz7zKG;sIFy&{ZB^-)YzkP;24bCOj^pv*V-)ZaG?OV~{~NEIe?|(= z<{YQAFckIh@wX~%#STYDsc#kD0RfQb7ya>)hZeueTjRVL3sEslj25UNTqrnMDyu#epc# zC^*p)OWTovAIW4h5Why-EMrLq-=2j1X14G9#6GB5Jo{PKWn?#$%|k+m*DpIbzXX8*qYwI`T+BiL`%14h)&o*Chp*vQA+`@i|bdVoM4X8(uw=D%zOYli!Ws-F8sS z1T2ij&zv_O(g>EgSqQq*-D%RcW~nh$9+56PyLBRp=|MLR|GE(V*ONX0!5Z_cHSxpo za>y!|wpbfz>1{smh* zmlyDkBTMjey@Ar}hi4#WMIHH}A0A5=TacVzr!Iv~?Cw&L<1L5y4MsMI6pk}gue8>5 z$=my_6+o=r-)?Ma_0fTgHmmUS)9+knl2`R(f-t?qunc7b4hEHl{k6*g@ZyRveSEri z%N&4dD1A|xRN5J|);-fweU$COGJQk!jdH2cNAJyiRgS}5>N+`=%`L#h6fvJmn@0$J z(n{bK`|^@=D}z-%a_7=pc{Wy`G?MRir~9H1r<2zI@a<9J)C!_-(x#-CTq6~;Jlq_i zZqW1vNfrv2SV&Y(NwE@PieeTAS)wzLfQY?cKSeThIuNMofUa*J9TrQsKfe-Jceb)M zPR@zx{)s8y+!OuR|N1_AHArCaPi^tBQ9}oH<-U>kdAMzU!=J++)s}&?;GSW98?s`} z*_R5aoLmJ>xAb2vWiHh0G!h51B?dh$w*`SFpF{ywQ!YZFW9N=DNYA z^USoK&FRH{pOLl**XIaUB%Fc90N?PlLqyzmJqk`LX=l+XeVWBzEw>KhyFFBiiPz^- ze{E&pVuZ6#! zg*3Dl$!3L_3Ko?|jcrVe!WSRohD^w*249GtCEE)rhCi43 zP>|D8rFL=h>aIgE9t{pM#DYa{t9zT8l^YEA{g6Y-YZBPKYE^H|{_*~=Vjn{;$7`qW zNO9e0EU!-y)KvnVNRT?N$QPPJ*3_cIC`CZT2|6{6_%J|6$xf>d&V|xmpyU z&(wi}HRJp=)En*8oqDHxLq+;Sf9JA#AX7k}w!`?+r<}DAKR5y`lvg3DP|~^dqQ)Gg zET5&1GkoouJik|SDQM}!12y?tDGm!gXkfQqM~KE zmZaw?7p|cY|Mk{W&6tOJYfcdmdRSCiD?hvQTUGXpog1O9DiRfn8~u;lg zX+%4kp!zWNO|hPS!KJ#)%lD|Ce_b-IS0ln&=!3Fc-P1lvVSBk=t~Z>I^9BW#&6?t| z&C-Ce1^|U-e+dB4SLb2+1}}5n!UgET_1)!iZ94#kzwvw~^FBeLfg7VIM*xs3gN)+nZwhI2dI=nHkEQ@rX_nQewkD z=XY5biPCrx)^_XVAdQinO$Gyj7M%>V+{M6e)h>%4ndH8EBv&%OVYPp;&fKi>&y7~9 zFHOn=+95PzmaS^+A7$0G>#dgwk1fZ~*Y$}cMx#WhOk`98cmKWnv6F&_^Qh+IJ~BC} zMnMf`A&@o#Lwr6C+MEj9WAnc3nhUH5l+fMH3Fq+$4^JEL_0B7a2oHZdRVHpW{0xCa z-a5<&i)WT!-OwE7gD2-0<$%|f?{@DCy*zT39*_k47g0*ERLf(}g1m-XM!LMUK{btw z>CZPe3`Yp<*V6sH;Is;f-*LTSdogOOa5+h%J8U=p`0XZW_t6q_zZr`@(cMohf{2ah zG^RnP?ui>cGVx5(KhOef!xD&0^H+xCft=;oKa*n0Q4!DPK(WB{Q@bwHgYKq9Qdg4;WBj@n%K=dD4mJv4ra!bZ?9|b^Tw%b0&2x z`)0|flxu19rPt3A?@YZm5S8RNB7`MYDxccX4gk6jn$>I80RU}@WO~nWgzMJHD$&_T zq#qwYMQPnuGPiu##Qt5cJ5{9bc}8M38Q6;}WNxW>?GtwCs)Q!>QIqd|lT4?dpDmA7 zJ~Y4C^@T(J;qBwzfOA|1buyc~5%NKns~~RNNL+o;Y>BAz@%>+cl8s%L4!F zBud#(j$&Rd0{!K;LkHtS*xm~4P6#8+#Z_=RfhDYvvqE!XcauP-Ju$M^?wtR;s~$>M z-6Ei`YDCz=PIUggV>*cW6LJy=)Mnp_Vq%WJ^&}_!?e|DZ&ja30=2CfR$a3yhe4+!D z?xr0F{H`6I9da+WndY}YqS+AE4=!)>!wBJ$DDgmd_UFq019T7-yu8&(?cK(B!Y%;S zA^?LG`E@4v6o+@dsvqXpU(UruxBt@!$V~zcdo0a=J*}WCiPC@35%A!OhHf1=A9LbV zN+kpUx@qH*1}40{g+Fv*cV44hxcg0SN6`8vEq@B=>i8dHri($KE0%={1&)6GTmJyA z-7MFegdhV1Uy^9JcmyB|0aEUG)ORR-^C%74R#Kq^F-z&_=Z2aqGNhn8T%EzH$n|S& zXG0E4IRxe^^~3{d4)&l^Clz|NlZrSV@CQ;zYTsbiDNe!m5^}-b!T0r;-x5$AOM@Zt zZ~+e1`!_GAhDyTzRS3teJYa6Zpsp&b3$_JfOx^*;K|r8c8?sCgNm`Xx_3kb8od$~L z9Yc;M`*>O7oy*3UCw%+(=bQdfln7yMm|0@mB@)_U5U@x3BrX?()0=lUlvkkT4D>9z zcDj3>9(dWG+AE>qo$_5{=U}hL`+*W8xiHlPCS+R5YRmaqFrByQtqNxTS0HPyAI+6~ zAot>pNU|@6HR=1MzE0j=O}ZPfW--vk#&0i;zyxz)iCVo9mti&=+DXSJe3LoNMpX7U z*L&muXJJ153@;gYnkqC`4S+eD++Suz2^?tn_5@Ss$DZi^+bHOkn#D)X)cNC`-NKxI zw|c;V5ja{#Yh%;{1?omvIPU}g%66tps|tM@bp*-;J6+9B>)!^`@8+$(g;|d0h!iB{ z!=4#OyB@Rn7E~yce*xzYYnMhkEZKWi3xgIa4E%Kl>=!}9v6)J`NKpF(BDqoh- z<;%SLH0B;}+}1|Fw?J-45~HctF&_#u8b|vL=mK`$u{t>}j66p?i zXa#-$F>O5q5{$kd?29rYartWD?W&BcTc*3}jiD)_fw={{RSA=L8#*{C$7?X(#QR-A z>$_MePw9_WfOc2w7jP*J%qhX|(U-dZV``oFkEsFBMrbJXK7Jwu%veu*yG*%LY9cKO z1{NcyM^6;UYWaI6yAJY03!MaI;EK6_LSWW_GRp%RwtfK1w*Qc)zZ7lQ>lY9JA9yBsGRmtRnM$D?mTYfumK=p69o}W;ruC167w7uz1I_K$PK;W^ z1f=wrN7R?Sv;TS)R34p$^NF!0Ny%iBB!F!JF( z>R5T@*%X=Qw=8DwmhhhomxPsmwbtgru9e%hZip2a1ibG01i2h@>f>*P)wW%_C1pQ~ zdcXd!I9N8cVX zwpLUIg)+QX&tRBjpIqIOU<#XlSIByD^vX>DhQ6PyA7UP3f?FC?kZ-fcA><{bx3G)up z(~!dCLaTJ%lNJ6FiY2J&gNE2dz}yI&ZO*yMpKrM(IxH;u-drSZaYaPfc;ry*k>)as?aHALsq5Ac@<;*)j27>R(JhtYl5*rmBpmFoG6G17uYEB04s zqa1EIy+F)s^MggA5|w56U&ZQz6yKkgaU(33QRy}t9Po9-A#MLqFr^R-zeY?0&vITN zmLM}~zWgXXh}r{3nVvl;Fx;8_+MFCI9H-Y-*NUxfocY>Uhad50n?HJ9+5hBEf#P#~ z$WLf_JFYeX(OLm2ZFboW1;S5}ht{|w8owALqudQnVOn&iGvhC67pR;BVmht?H!r8iKmU{DD z?)UdglZ*}tSO%*x?YwS#X67zqzTu8ry{#!|4ieCFUYI?FoB}d8m=gf&HR||(4dtn4 z)oG3Ncq6u#8H$)t>@twBtZ$#bYf?39LichhsYR{k@43q^SrmZCqxeSr_&)S$>d^qs zS^ICofYh~svf6&dGycvM?v@sN;r!#(Vy~ZP9`TsQuFh=_`uRNk!Qgta7`1T=f`C9| zr8cB~jT;>G`+>p?XzjB9F?k-ARXP@j+?!m>-o@>Z^ee^dw@QwsQiJ?Jg1o8xby%qy zuBoY*8{GSE2tlbc!*jCYtADIKrThh8@=}>{R?`O3cs$QQ$Df4)3j&JX`ges^LYXo& zUBhd5q~bN#np80<;o*_;Sn>4b_+*yi2Y8sWfduq*>ia)omH=8o-$w zF?oqOp+kdani6i6x$Lz#glF5}N($gB#$ZHvyV~*Zq`O0zI38?EVQ6z{yUXL#R*zE+ zJ9$UetN1gSB(*RfgcKuGtE_-+%2Bh!^PgB5v4|)J;X;d#JixC??REaz+L8tZ(rvT? z)h)RJvLdLY4Xgsk&(73Yxn`Ut00@oIeKI;{+6KtaTMsO=*#l{%5jVz<){z@T_*kBd zrS=Y_;CX9vhNt+EeH!R2%%v@IpGz9M>fO(tY0!ugSqZe5k&?bL>G6?!?{}~!I@+`# zIZVSLn@mQKkmES*F-`u1+7SiKc#rCan{77GvXz+1i8iudcKQY28|oEhcrPk@fDf=J zgYUIiR6*!TUb8C}PNTezDN;jb%IzB@X@V)(-%g;ow$Y=>0P=T7v9^`sI;n_vA3xd^ z-BOAQb1V&td+{yLvL}S&vmuohG+Tn*y4(1vK~NV3aIe=-5) z5#ns{x@dGc;QXxLpD^*3n#l)eLAaKm(I0nXgnXtnOPm7*KhI0w6>EqJlDY9h@hcW! zJc}1cb8L33Ep|<0v2Ge33^z#JqRsf$H?fuD;DQYx(w6@1j%;?F~aSRvDpgW z*a50Isu?hQ_eipUeVPC*af!CidHien8&IcL@*$h7^c7lX&zhWb6yum|Rp&OG(Gs`v z1LONjBdEs%q=N3&BMUS_A+IX`l(q|XI!My4j&BON3|uI?o` zL)m=~B8TGE{$9q`N_W2*u2%Pbi?saqwX3@oueDxkC0d`TRX>pV4l>_RWBCK;M@40C zk`FzlrE&&-rhSM~T?tz0PrBih!THr)GB|=H#Bysb(YX!d` z&lu$Tn2d-{(>I8|$td^Ih7p)Az@T=+Q$WI~wfu|Gho;}-e~Ne%CI@d!*VO!3)ycf> zV;$Id)M|~l3O=;?nr_!RUGh7au<4Lj>-*J)46pBUMf1!U@h5ndbxNd2c@M@2H?^V@ zCktOcld@Jjw-O=WtTJ#GhsF8tJM23B)&#V;j8HH9&z!2GAkU!?nM`)Mk#2%MEmL)+?a@& zBUEfmq=&k#m+`1l(|shptRzy11LvM+7!H@ZbBY&vDH48H7$)@=p6Mei9 zn|H=a`#&bo14Y>rHP&lw`-iYj2Vpl9Zu_tUxqUPew~jiSOz=9Xp=B`U&({ZJ4d}&= z>|1_=YL2M+#W;20Ylv`(sVFn3(ihx4E*&E;LslWH~?^>JUar`urt;Ew>HcrRbC(Ij&{d+ zogQsN;u~H+z5biZDOHT+WlGp>MJt-RDnAl|U)qz*Q^F&W*cz0zHN#@H<+yrQ3td7x z)MVJTLm)YF5NNTxj=2@%lcl2Ez5N z+4!Y(wbBM6rGJIgPu{nIdW=_Wz5>i_qv+By%fgkORq3Gm@8i)rV|P_**EPZCz&2^F zjy0=hm=DvgfP!!$6DZ8}rl(phVXs|9cx*}!HA6bcV6;U>E1qI(f23$`i7pDX5o;(Y z!eYUmi9%hfq^PwpuVQe%+;5r2O?KVNyW=&VtyV9+n3|rvlJ=^Yr_R9ZcCgfMfjF_I z)SK~w9%mU&Q|YmP)vER;hI(Zrmd+JwuPh-29yKhJ(LgV2w09x#nspMg9Y?n@rJdU(3%Y!m6JQhb56~J zxT%XAEzLUJVAMzC4U{}r>uid_C>j{96wftJ#deuFlKI)+J!v2Wy{J@ud|mNp zZJrpauDp40&Rx|`tO`|yt?Ec}=vC>-^)vIWuZJ|$=A#TTqr)K5E3faWJ!QeZf;qBj z=cD5{WRI`5n530i15GA2w&c#uVmQv^#p}>kwblZTyCw7m%gh8G{BZ@*C^+(xfh0Ad zBw%_s#GR%UvWInY3@pM2egHITck$D<{-9Qex^8g39lXrnx$FjURblAJQ|du;J+ki8 znY9{4tz-jvdiHZ>v*-86JB-^SN?O{77p2oe#D1?3D8uM!3QVfF8gE1LZ)~|qCLsDj zp&LP7KWK?Lr*MJD`U%_Bi<0;Wh)1K=$D6 zHlBfp>1jKb9f>rA*ytV_`o3^91W3r0DEdQ2DWHu42&mDuqJ{(5oW|2`Rb-B9#qq;2 z(`Y|~QIM>I>EH1<7+~DHG(`~59N$x_ZykUAcdy_|TcE|FaI|gYB3GM&cKES*oV(yo zNB(YFd?5H)EiwD3J?&cTvxP;`JOiIvW8*nnljjBl(#Z2T!`^xRY)ATkld{9ctwz241c4 zB)x_wVQmN_#0m{g_XBMpUFtoN1+~>)&@CHv>7dK&f?Kk+n`wn+UYMWFn9=b%54Qyu z85DvF@a?ZASNT?2ofB1hQU}+quI#Fw(#X>lwA{2_rI-v8#~bq#Y4z4mON@=5m0*VX z^!5Tm4khi$)9%&5OL2TwQn>AnDCnimYrC<0gPf-q8L09DcY)PI|7^azSJu+8ucKz2 za`r)d#)1jN!M6E*E2C`(?}&uj|Cr#p9s3ej4m$D-!Uf&r`sW0gpW(i2tEC*(u7W3&5zyNZr|925a%k~8b<5Ex{&9DKkWkRp3i@a?v73= z+{-Mk_CU9z(MNi=j>mCq#Sy$uZ=TclzPrBW1yB?v^%D=cC(4lMJs4#dz z0Af&ELF6r~N!|`l0`O?#3Ky_|Ifa29ii+XMoi(@)^~PwGn$86C7SYzUlc@XW=PNoX z@q%TVMTzY(eUx7_->ii))-gwuy(Tk)?X+a?M0pRqCVD!Z#P&_4R_Z#(nN^TD7ndfl<3R;OHsK2+Sp(oobw<)&JQ zdd>9uzBJS_OaE#5aD_WpGP5z%Uxww;Q_+oX_C4P35&|pMVk;k0+j5{b0f&jGxQhz5 z!Z+tfqS*WDAJ=Vw#6G@TEPhnEvh#>fB;*Hws=mm>|5-bzBAG^w+c=DaObZ=17G;os zKmOp%)mx|Thi@oOy{N1;!1Kl_$OXb58r9bY2%pzP%gR!ArlM25Q{Wq+`B@lXcZ{K~ z_Pf&l510|8_aJ z>;qMjRjIQj<5exc5fXU7PPJ!3yK;Gr{r=OXOJ}`i4KvtB&RxL|eu{;E=S%dBkJ6W6 zgve4hguwi!s?fqd`0o@ktd3U5SJo#K?!{M^9$7iP?>qI->e8_PN3{y<@gDGQ(a$Ve zJG^Q~?Hn?Ah+P^(iG)N}w#p_kb4A@pzqR4tb#$I|^Be{$DDY$d`4iU}_C@y+jc(Uz z7!06l^+tIlGz{;Vynka#X_f{9up~g?gyd&%C*!5`2T*R=r@`=ao%_k9t~Ft!`j3~VTvLAeAHO~R7kJl{Q@>6a`^(DYO-TE$LcwSQS*Sp7>UdWK zOeSbOK8bSN;$Lc{efZM$t=i!vv9%u6IbngQ_9)$S%*Od8F%VT+ImO~O|2 zKhXwG4|M2{s9=c+*Ia1u)#JY9#D+^=!UK;Oo1fWF%7KrdLDbaiE`TQfk zFPJmeg;n_!jC+!a@GdIwWQ6sho0fa}nWoLP4~8u&-*4)xSYEw7*yn$)!D~=R7DpQc z*k%mPh(;9UeHqJQ8t{^bm%rYHsqkg0_f)=e*{Z%YAW_uwH}Aj5r^`B*IR)RTA=@sk# zY*e2&@)N+RFN&rSHhr;)XXXd^-C>w$Wtzeeh5$%E z6fJ~1j&?26N}-4D(zvvefjq)xO5&k9m4Bal^>}AI!de2=lt1oPEA5(1oa5zw|39Wi`*1YIpvb-EQnCBf23cH%nfVoymok9;yhZdCF&XxlCj&}E&h6kRphvp;S$9GnaNDG8go z6d?bc<;jC4X+)SCZ0RVf^q__$;>-8sKsp@jW9M~ z<}P_Oyyre>e9f!1C1h>yrfWRSpUi;uHY%u{!#qw5&o3x29s8wiAF-U|xT-~COhaie z&43ivez%m1#q4Hwd%`IZ6_AfjQ)~AR&4LH{IrPhf)e&F3s>EVyej6!+iX|35hNZ|# z?id2@<(R!>m=RC8L=RH17gtodbq_F11&Aca=r;iP6W6$U15-LU1Z@S7=PQcZ<;=)%OT= z!7ui19KTSOz^V7n2iE2rT14LEw*V?ONZT;*>WC%9qUT|42<-9l80=|oeh~Tb@aOLf z)Q!-;to#h2EcKVUfD;&TaEd^K6&C+hbtaGmd`Va53k%`snh&gK1k)bvh^_%jp3|_2 z;GFKmFpD7dP2Q+1U!6}>`eLiQ60()wQ6`jVDxpFqDfR*B%}uOe?hb*K`fr&Tf8RJ}wm#-6RBJk; z7M@iYl}S_<%=J;$oXS_o-NP(T{rZ0_op(H2{r~=TS6kJInr*GtZ0+qV!FZviGEFt;e{2#8 z%esj`{ToH~p2{ceAL)hl7G$5#uU2Q~!xj>MFGg5%*L2`D0c0i*X4lqu?aJ@gL_Az8 za#}#MX842dgUCE@V)7vq5VlY2t5QtYMGJchRF_o`@pHuKyhymgQ7~}#$lzJ&zx3k6mU@>W6UNLQ0Sfl4N@BMOK?`^P5z5# z#Npnij9aK%22AELA{=W*)_5EI=ki}7(n8I+@bAd_ALu{@>XM{zpQ8 zf|kh4yhhsN^e8;cci%hF>xj91a|bw)9R&l9vlK#E5X-(F^_SWFzRUO{v_+)oaQLyl z6y$GeAKAv(b#4D&FTiVG{O`Ff+O*1&)>J*9(QYJq<>z~a#Zm|xfIBSz+cS;ZtEyBo zs{QXjOMSz;c4tZWFgykUJTjGnYyj|Ll)e+f=Y-oNZ*MPQL)cw|v?jKxl>BFV%y6+x zE}&;io<*eS0o^h8K>Zt9+DpJ<2=s;|Pj8?u{m1qI29zNz|6{v7x^{~8Z}04)_vWTb zTKDsul(vo|onpUsd%^@H@W@|sNn?Y8`#yKL&HDUT1)Z1uo_c2C&m6xC&vysB&i9qz z4h&_$2mZT!q`fyb5Z+5N{>zy!9;1gwD2_AiZ%JX8C^r7gT?m{vUw=<{M8CV=He zWyPY|%eZz>!V~uR%{q{k)dQ!dOfxh+6_=s|IoIe>nS8zWZu;Y&VyvU|T)XMT18IFQ zOqmHNl2O^9A>T@R3cGOv4kQ_;Vy&F6dF#!~lioPxjPrPeRo8_vqGjAdkH5<)##kuE zT`gRh0^5XOdex>#+FE(2+A%ujZR7J{vGn1)7Qu73;Dv%4JQn+fVL)HP>!zsU&vy4L z)5Yy?T~U;q$fjb_Gq$kBl>OC&HekY~<7?srPxPw(i9Z%`wpW<{Rb=veIKXFZ1 zWmerDV2dGc!{n^!_2mBkevgRTgoUPDKk~wdR+8V_V-Q4DHe32)*Xjo7k^dEXmdG=I zj|&;MX4<5-!$Nk#SYhonG@t4ACaWI1|G7x^wc=oQSUt(+aG1|19svPDdo`ZLX=@k)&RwXkJj$1nyVq{z*ZKRs zVttocOkaJIzWSeLw3S%H$g5<~m9qs|Q?8Di2%R=f#e?QR3Pe_`sEr05Z3kM(Xxc3! zIFC22EuHVaU6}H8)a&tf34L7DRG8V~ zpNNz9AAG#{;LC@vFaKPP{q@se|84Pa7ZES*W9n7#znS1C$Ul~F{j4TpCBAWaPLeh$9gnbO=qL$c_5Y6}MRDI{G1S`j`;d*0kDW zbxFIcE~gEOp+bf`37AQsL44s0O2GsAA=i&)9Fa6|V+@L}T4>a<+89G8~C>1I&+z_x8eSO7HiXBj>FQCahjtwIBR z^S&di=kXA$r+jAP18-aTi;43m{$smol=^-CU0Cn+ko~af^+yPoT@>r#)UYDZ#egjM zt=PihwbVtJDo;kd^*feuidhkD#gcgsZ+ zWegbT+0Qo}C_}q#PPY#*tV3*JU1<$8S>xZ;5v93P#fS+`d85(j5+q_J;KT9SAHu^( zC%BV&rN1j-A8pAullih-v}|g}v;hhEInDTIv{@-{aMw84Z8tYCLgU5ExEJ4}4bzxE z?S!R5Gy;3$__ zzVrRrwkBhc`W_9-2-3>f>@C+<7>T>(Te6=_7X%Z(dc!VGwZtgP{`(2D*Gz?OiC41{ zjitPI)!K5Z7Ftz{N>E}HM-cYXFRPK9_We-Zd%luf$z)%t>`1ZE4tE3cENoxmKQ^)f z1Q&{8)|r@IGTu>#QZRyy`(k4H3SLL>Ns~}aPt}u4h<}u3& zFWOM&vsOhSR1bIpQ)niFY1en4UUHTij=CXH&6Mm@K?zM8sUao75SbB;M$_?G4D)MZp z`Pf1P?7Kurbyz*5e|0z9q|c37H{>P)BtIjd!F3faqh1Y(Q6YIvF6C6&Qp0;2GRT?N z)plI#YpAj*kQIp%0KwAIr`ShmjQ+Maq!qV;K2wbl_NG*;6b{HUizh`EmV3{U%^^)% zIeoZ*0}I1P#u($iHM}KX8*hjxF?s3$L9lewzPsLDSG5Q4u~loYtk8_khm}yx^*Of3 zlDQ%XFWxJtn@YHb4;9?W=>* zICYF8eV?)r*6fGz{pGJ||8z{zFxPr5*m?~bsr)XDr^i*WHu~~sX}Sh^`l4y+H$hx;;_kpc)tw2Zu3x^OZo8z10goc)vg-s8+FWq7HhN$ty@s;<9 z?<1LehiFwoTKeh#l&aX>Z3r7f2eeby5Ag;B7FST@%XLH)WAcm!>@xp46|P*?zEzl1eAgYi%UUv2AWBj3nZsiqJv?g>*tc}aS^h$>jKfMQhy)v zBq!(DlNH*y(o}_&8#1lI4NOMxRqx4~dt~~bPmp7JBn(+kxg{w^CpeYbdWI!iH;mNT z2q?M!NwHPyr8I}4*XwkIC9NeVN1RhAV0sHI(2iMa!yD)Z1X3v-+GV*`)i0aXa$6Xs zTO-@E3;#u?S87)6lu07ZZ?L+&7277bKdgjA>Yf^HYv}nGTu_xGv@zE%DRK^K`L0oF#*^d+#} zr*43YpT0^#XIKPe-S{+k4O&0q2O?`7Q>AA(*zB_2!ncGDVvdccepl>(nw^Z zEr>u?YMeX0Z`cOw=a>fgP49|!8z^Mtx6lJkXkY|XT0y08)$Ep4!`+0UJDeP~ve~e= z@RDNDCMVF#^E{xzwiJPliLjzUK3XDA%MKA=v`@CgQr`rOQWlOpv8CR)s!38+vYRK# zzhtAH`|=O+6!WyBbL6wn6LN|yM6kb$i$gJmq5)W6tpse`n1fq3Ke{X0@1Z`O7U<@R8j_rBkG)@x8Gu%T zGIuOn!olO97MMIjnWTg~N=1P@#>O@WDkt{1pX|BJ+x06Y&M1Dn;>t`IL`sNd_(OuL zY}x&NlF2rc)Wk5P)Opb#{m1JpZ7_tq7wUb?5{yZ|NvzdH$~c0UtZOSgH0@G-WK+$| z(}A%!v^8U-vAE1RxY3;}KN3EQ8pkgW4P3+tJ0{Ns53jTK{Ij9pbA;1<=OTD z8l~7`n`nYJM!K6&b}=4PW5hA?w#VQuwUv7|U!wm9uP8F16_Y1f*Fu;!&69L^Rci=Q z!GvA2c~aK7xW+WJM|Zeu>_p?h+f{9ot!j>gYCorE>e?}Ye%n%lYR{rBnWd!~c*tad zz(kK0`}NJur#%%nwkdg;D`x6k z`Rc2PAwN0u0kTv6(%C*(I&f5++Z4#xoov4mJ}`Z~T~zDa6yN%UF?S5Iux$*Y7)KS* z^psxkK;4qw_P}vlj6xu=I>xD*=xLMY=tXtOoliH0Z+UaQkR%|y+(J!oBIK~O9Rpi? zbY67*^7Gt%huRi!sS~B8t)B4g?x7|SfOx9s<65ZhY@1P~Vp*P7J@zbxv+ZzN&REyH zwRKccQpq{Z85*=5$H;r=qQkp5vt@iJao^Ui7Up9h`!hT){e0kE#oFfh@SQc5g$E({ z&xTSV2LN#i(4)g|xK%9vJh!JO@OUp}waTcwd-_MksYO)9kHjYHMaU(YeD+L>wY6E- zSJmDMO%+i~gj9-{dHt);axAQ5|+kBcE)+-5j6tQ$zZ0o7-$k z&%u39QNpC%CWqck8Hgjr;J$}a8zzr5xK-P&$k?S6cQLWd!=sdJ*P7LkUP8)`Ev|3H8j^c?2e(a&rymk!MRvH; z!4Or#LhRbsr=2YH8c{xhR&0?7u_Kx=(-c>C42`cfSx}}x(=NqhJ068SL7#1n%RSot z2aB35VnT)#lNz&b`4-#PXJ`pw9&;I7)_NxJnU;X&O0_y$@Y;1~w0q2=fiyK~kwD$u zZ`qa0vBR{O!6Nry{r$!YHL(yu1XM%GVncpK`40MN_s2aoOsu)OO8v%G`s2dimuDV- zI=i|M9aQuFhVyCzR65*j>_4{fw%!GZ3Ch$`8mKJ43nY)UZ18Rp4%~^IOovKJI6L9? z`p>HV1qnNMC9u@gtr4Cssq`(rqmZzF$dmfQv8!(gBdQ74BJu`JgWDk)0vViXPJDwqhGsKyFJ7S*l9lG=a-rDJP?M zVfseJo7|2P$nLb@nkP6)VltDhEjW=UD+^cKOvuV=)-kkUbB14)GB% zoj)(j4qE04u}dL|mY^}FUu{?5Uc4(0TXX#mgz6fKf7OsF;0p;};wiI|ah1?sr>f;= zJNG{a=VS+x#t5a^(^%Z9TWmSCPwuH%ZSBgmt!)MlWU{tzyX&K zn0m|ntf$w4cZ1H06Dn*H$vIc_RhKGoL?#xt^%wPEwIuZT^vUNTH1`gG#=IVEW6{CY z{%=_E3YG1r$4Q9hufu+z>8@{^jE3D%!`mfuuq@O&^Ex@(w_KZmbD^ao~ z;0iuQC~hxpd;NzsGO|Px$z+_bFxTJ|cFeeXRfO!g^{{wejOZTaGjR8XK3XKeF8>pT z;p3R0kc&y(o@8mu+I1WGT$bqDgGi@+`W7F3P9N9MB`l+5TWa;-__=GR{@xgoF)}#4 zgjv4I#y{s~BYBI1PXPXPW4`-WVdwR&YXTd%CXr)Z$dipgun@;zB?3HTJJH|L7cHJ{ z+*(79N;uXlJeWE6p>cA7U1PYa96)FeaSI2?rO;1%YIUEXDmvPvfjn;74!}i%q|}4|u_6eVu0Ms{+DZYI0UV z5zf(l>O6-HV0Y$RFD9BpOHW0)Zji4J)0{4>5TA~|xMgrE?$N$#PVQ_2b`u4-pxU7- zWelD##0$H%Nn_*#EKFO%c0=@`*IPaQV7Wq-Mi$o*aoZK!w$6{iihM2V(b4AMi3wyX zXp+>rg9+H;*wPrwc=p}-IVPj8r6y0|mdbORp+IX?A5#;u8wON)iq)hE72ND@V)HP=(?j~3xsI?hzOvw&A)?-*@zZVc_ zznaYseug_Q_f7m)()I~C)rltce2I%QiOq%&o({Aj61uNP{^J1Nm(?m`Ed3k{ByS;RHa8X<8 z;+Z|5O#yHeWJN?03-CgTS|u!)of<)`bNd8VKvh6>TT^|T23Q^T1D{@Ua&BZ}8&BB6 z?G)sJ;Aapub2$$AON7Y1--ddNb^I8$kup)afeOvil{*vG1`SXsbiqD%va4kh)%Pph zNAK-jai{7&Y8j4ku0 zV|n9kgUQ*=5;;@J%F31|4`z7F(X{5r^rPW=Xr;95P$k{pC17=J?SZgC_i~oX7thmo z5iew3s%s=artll^J6$&NF>;=~O_S$T=(d|C0+Q2len>+aVEq1d+{zWxUg_O##PS90 z%k8iHO5jXq`7~c`vzAkiwz=mo>;qQqQSiI<6L?K-XdnQ7h*{So&k=r#{A-RoA%)}7 zn5n+>CC><~{>m-s^sNP}%f&_iu>t0s+MA-?li4)v-1P8~*P2wuGY!LwN8f~l;S;64uSlP^5Zc2wO5wD&d9x1OFwv%OWZm=y%UKQnXrso5})Ok|k%q&=P?NydHM|8Vx;XV{ca+uC|dA@PCLHQ(de524O);OmEPr!->h#SHHhKz(0Q88_a+0KQ;@5 zc$%A$>-PW$xc>hX!0+N2>qI6afNU0*BqWduMvR_$ zO}u7;9KY8cjg4)_;U0Y&4ZT=@_4UlVUR4R;bHem(lp!WPpV%>grUl#_f4F_&nH=BW zj<3RjIY)^&&JS#4D8|aW96x$wqIXW7{B#bB-#Jt17(sjKX1<+PZiowy0t^JR_m;kR z2EN}*AuyM!O>Zm_3Ji7Y_Fb4R+AQq6F`)T{es@6euW5~M4+7t#i9ZH}{`C{cOtv#8 z4*#;1n8SO2CZQ+(O=Pv}H=WVcyCYhtr{+JG{M&m_t9V`TsQ*w1puA5uAbzp;JT--w zOc&zq7ajn6viEmZOrk?RewlMF2iRWi7av98PXHP(qI^l{8Bp-h)iz=RYGClHs@4}q z&$U?BVAb;k#2ik1ONiADN-87y`zw3;2I{wNZO-tc6lLXmAA9zCt_0?r}F@vgtE`B!Ekf;(rS!|@^3>-D?V3$x&cE~aSz&k+wT(SrDu8R^mj=U{ z51=6~j1pbY|81;KLjcwfx~?tTg9Qe|E+<}h_{c=dn1BmT$oTDOSHnjeKw;n2%Q8GwN+tL@BjIeo1h-=6j} z;o5@0j{dLB0kFxKz)4_}awmmPVLm$b zm4F*pa)BKkwOD^Kkt;Z0)3hjk#^@kfYp zqhGhUm9E%%V z%KB(vYpwNg=cBf)-W@y|iR+b16Zh2V-lG-w-90<3_@h@$nOecU+#Uu2#OV{vK#}9S zhH$6FCBvi94ykvhh?cKplM+m(@c2aUnECzQOQwiN=b}D6;K)ZU5$O#_UP|>__QMD0 zgZPe!duy%7pH-X-yeIj);#tD<-CKdDPv+uGfR&nY6mtGAFIwGWKSRkdjihN~lfux@ zy)=#9VfB0tigIAUunmvng^dK=XWv{ut4S)zAVok#dFjx4OrNoB7;c(zS3U56R`tvS z6$rfP_=-Bj-e_%H@N0B(f!t4ZxZTiF@XHl<%izn6tBbZxPdQ!y`8Rvv^alZ3fD1tQ z$#1p_@4+R>H!YHQ*3us8jpyWcTD(7zE%(draoWqy?*m>@SwUW=E0YJ1qwouAATSJ> zpdYcg;Y5I3AFM(2H2-J?j2PW(9(iO+3ny{GXFhnz)>oLDW0Dkh#)fSTy~`eQ=bN;f zVl!M26R86A#PIyUeeg8?L3M2?dABv;oPI@#^{0vjYs2q?8?Rm`{RXWFxi=)r3?q^k z`UWJP=z>7#{Pl1TGtDD^pyauKG-C4P5kJYId#=iV8SIh8YsJ^wm-;TPHF@FxoReR0%%K_Al_ ztM`AiF@)gScB=d?l)>PFQye+rDlC^gXn>~LTo#+J->LW#sdL6w_eDH*pt6_S(mGUw&rhxeEkp}Rq!P9cFb8w~n``Do zQ^~M{0FnijSTXRmZu89f#B7ZVA^CO}*}4LkkaGG?*A83r=`PqeXW8xyp1Gm9%jRv$ z{CzRmAN-(84~>z%HnhThKH%FlnY?0FT9%W+8}>OJC_%G(Ar(kfS0wcLvCBi(?tiUt zL$~KkuTGJdljsOkn4h(zy%*LydnZ@U@iyqL=Yse`diMh9WTNxw19iHVRjJEQ=9dW&({r2tcGL$Qj^;1C-#7P7*$@d}oN;>BKO@0xda zSeg$X{<$6Oa8RotQ|WtN!OqXiAy3s!*^em4sshZzXnV?EhoIZK-d17SFH<&d8ze20@hjEbyE-+|^2qI?P8d>bc-VNM5+{IcHio{vJT^vhIcA7u0Eu9y8@B1d z`3zY>73AH}i}5{`AI+$mG`N7SEDg$=G4rbb^9f8E?o&_Jxc{K$EO?cU63z;ufsutu zJCz<~kII%r7%5w=miEdlYsezqJ0(P6YAnP4QJ6;RblF&gF+{IzI8>ECa7_^;IqC3p zw0_b`-0i~-O)#x&>cqJTc{25Gu&=Xoee16p#T?f26w2mMTh>pOQ06fVdLG&N0a+yMZ^hk z$6VrhH|{Jj=1^EE{5G_|#j134wEz|q5IBZX(`lC0?ovyB2f2*DRx3%l)TIG-ftG%Y zUKGz@S3j6QQ#Qt#I9R^lj*!MPj6@)HT`U`o1DZ9RF`5zwvtG%NKeplzn=)+I%hG1m zsnC{5S;KU)S+xAMvY?{&k;@8|3y*I_{sTaRXiN+76)5gY`mF7fQJx2pzF=z;31UdF zYlHOxnNo(c!6+1@E`9>rN^1A$BU+Z)F_x-OPR@VP8C5vMUcXTtOfj7i`oj16TKX`> z8lHr8CeRP{oeK3e8#-5ZFY&p;zly+B50S>R9Ny)llcTfKUN69eNwEW&sq8B$ZX^r( zz}F#U&Sz)?I1D<^C(9co5hNR`?)KW(xmG_IL6t3d1ao2~^Iy45VWKli&~c>`B)s

eI-0=n?3} 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%0D!s#10(g6l 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 z z#xMpnwiTO)Ote1f&e?}!?hWY3`5+3bsqUFfSEC)PhOjgZ`JU;V<*`nax2`Vm-Qey< zTd)zaX>GzqukryH5@KjPPN$K?IrE{Ufl!ThQAzq}1a=;eBGvL@It8gWIB#-3jDDV#~;w4 zS65GrYmteMUeFOmSwF3n8*MMS0w1D1r4#Df} zCw%mCHPI{ZRf#2Ow0jOZ%lEBC8KgKoZIBPX`29i+?q)Pg6*BH?T~8=NB}eEEOoA)P z$1a1jbyvE;_sMl+>LQ9C$tag@9|-MmE@YBmJznynbJRIggKeDj<&|*NL?z#RrY||CCwh)7-vWc z*`btC*3T_!9Gv%nk}tNr)_Yz8bAh7N<8Rg^o9iae!`xqg*7&T(v<${7-pNgiP`ns>vj7hfF^}y7KlXQ#SKW{Jw__n2V7V+0e zqXz*c}tI-iZ#6t^!dM#l3o>PO_+*ScQ^m^MAec-vQBBOQD4$X3%0>OD*thJU2s zrw%lGDACiyVs;v#r7M!*k&I3fJ99G8Gtq`id^X+vepP6^H&5l}P`7Uw36acymPo9F z?hFrC_*XU=%epxAeHyne`Stc1LO0=Qc2MAj;tCH_d2;1eU8utVf5dS(htNxPwz)j2 zra`wei=51Atp1fML0h&ToCK;B*Z&@0bXIrV@6=V>l-_x(iBcVshMsed!McwGHUtIv zey$Hit9?2*V%#A*4qvs7mD>^<>K5`~nz*n!ui>yLP>cACQSmz}oc<@>e}gOIzMv4M1cq~`1G z5P$TbdiFc>Qd{|atZ$s+-ky=`3EmSo*eh&}Ywa389^)h2RnoyRx;NKjO86@APZ;cS zS80SM#Z8oUDL4wma`K*Z4b?Ahgi4%T0zDwY4L7=b0$GGZ`Gb>I5hbEBZ(@^8Dc0gb z@m^9J@eAzwV3OXjrlh^A|H+sfn{K#q3?HURROM%|Jb6nYQIT+j$)-WMep3p|vnD;b z>0h?oSH+5*Is5nls>Gme@95XmsLN_^edrUGaLTyIr(x+b?0&e{^?cr;a1X9tF&x`x zDn|YH^cR0~ugXC1Qg=vv1y8QKo;}BvDm;j5(tqo8|GsbJn;Ku~w-+M2ez8wXh}?QA zOSR%nAFm8n>keL;oC!r#V!q>QB3(BJx5uU_)n0&|kq9hx$kZmf&9sWo+Ze-v;)2#xE31o6F z1{qKsK?BDC4i4Jn=IrCOA2*!Y_g}H1$t2t`F?76qG~&G@KU7cuSo@J&--Yd;J#fD)NhhDMZKdjc zjZ}M|mlWi(T3hguqjP}L59%r?fcy%tv|x@|*4Nn{%I6@#!!Wa%=R zQ{7TMH~PoO1geYNzibGu8y!m-p2noz>O1OS6!8>>~!)Fo^RnAyMeE}aBa{cp`1Bzm~ zqeM@wY!vlG9FGd2l~)IDFd&xHbz|2{8_z-qehNYj3DCw|&~DZhWzm;>-lf^N&il9knXz=@n+guz2@#M=D)VN73C zR@0rCUo+?^i9@5fXDMSoB;~o?YZL1>gF4?z00FGLahYkt=kx`+@*S$ThR5^!H%9%H z6I-jgDlT?xcTGaOd^~}!ohYM`2tW)_SRAak?w z3g2T%8s`wg(dnTAiqmeZ2Y=eEZ^=@v_@-B^Kct0}gV@@-6`^`Ft!^b-6`ASI&8Rvg zXJrIMg)Y9_A+1bIgfVQ{YEEH}lr^&GnrlOPjN{jy*sSi4CD~DUSBvKG5R6pUjOjj$ zkr#pGO*A9B%))VGiw5>_J!)juc0le<)%~M2!7|DpGjUNxm>X+EvK%~{*H|-pq&s|q zo9$qV99nrC(*|dj)(vtEJYh zc3rv`<#hR68B$_)vmLxbTRo3$7X|x)3bINBy{5)r#EKl4P*Gm4DXUGkB(+rKwbo;k zRmorf+cgSJ9Su$z{EGOGB%yR?`oKSs;KYDzdD(!bSxq0!yEN6$Ywlx#Vb&j$6fV6*lsr{;g64pE~Nfh8gLq}8j(elb$(Bm zsI5p|^%owZ_R-cTX-3Yg1Cg6+)sYd59}}GX%mhpnyxbRj^yA~Xq+3v_R_HbO;Z#+Z z$yZlbBMR%H%45_Hnb6(!!&daIJbYpRt#xM@Se!)M*{nWoZ>x`=Z_ZjB*QE2cagSa7 z9@LZ6LMnalZ1MSbRAbOTZgv|lMvg&Fq?t&ztl8uQKrVin^dI_0%~U6-!~k-fOT!GX z)_2i{^I}1(Cl3MmWW&m~C`RdmgcXUu+i{E=UQsf$JAV%y?{#9IlRM^rF3ck!=2(PQ znvA_qrC-t2gqw*7jZH=&#cH1VEipt5hal`|rqarI+K3XL!bU=VcTDk2p0)bdW17R` zQZrs}|7Nter8R_Fw3YZMi3X`ONcZ-}d4QN=|LmKxo%ydX94q31Q=QRkm-~auetWm* z0%jtzMln10MMX(b(A3(0`%gB!ym36Bm$$FJ!v=i_p%h(spq#OKp$BGBnX?6)GlyR~ zbH}Dt2D) z+0-1CKKAda2X_vBO?n&j=AUne^3Vl8!cWgBAbIPGNUHfmCokm(wN6gvo(E22A68m> zo%?prtr&A~m!UzAe1(I*SgyNNyY+;Zv^Mmd%nye|c3|+~H*SWgABCvalTDgWPq#N7 zWESth*MVH}Bu6ESG7Z!R{X6GJJ60wnV|#q0Rljf}b2?+P-lp=snA6T zh-*6$({G&m)oA%ghqaQh%X_fai$o+uE z4+;`2h9QLtwtL~@(X_JFMZ7?Um1nS8lS0lvHT!c{Ck287wcgRg@I=9nf;M=wXFz88 zF%X;oZ|3v-S#NkJkmg5sGB~^wujY>)-PMV`6&O<;)Om-u`UML}pwQBeo_}*xJZ`nt zDNkPWZqU$L+WuDp?-s=ru2UJD|C81k%00>x_N^@~h6Q18e?q(0PJ^<~Xm5qBW~}zz zNi)}zej`CMoZW*)3u7Yqg}>E#n!4s$fI5s@VT~{mkm+eq#A6Lhz~)=Q`!KODVzg-- z=KnX<$mpJPsjDKB5>^)Iy(%E&+eU>bAz%Nan)=!`f>AijoGNOgIFgpItYHHh>|eJqZBZn};s z?E(6s>PWJz)HI}Hz18O`aZKQ&>i zs@_OBrRF7fUTrPiUGYlkV>av(QOXMhv|89T|EsQfX}hi$z{JChJBe!HxzV>)mHB(u zHI)ut2=4M+>&!ZR+v92Y^zp4*);d*xge?L=hM{5Z-psP7My5JYls89RlY)`q?*X2- z`MT7i#<{Molu+gh|7Rp;&<-TJQr`Y^vk z$1$_IEUo6VJ<^Rr8-r+dJK`ZrRJZm7y^(dTclN?_-B~I3adV0?Yr`HXp-IO4rZ|~1 zHY;)3nT3w?z}vETL$*pAo45%+Yat)cT1Y!hlN>XQ2tADaGr;Pw^|x;+r|b43 z9|;4!#iYOc3n%es*V7{bXK9Qmz_JLie{pLj|8EzT252g!V1Rsk*a@KA2g-^SZ<#gd zNDlncBgwyvRt_lb4z^e~S4{V$Kgv81j=O2laUtE{-W3y?Q}o;eIc2XOTNOmgMo-K; z(~L~fQq0K62(OM+@MUGzG%^<1XQ(7j{DcDm6%Iq^-&61txu)}!DA4kc4dypE8nzpi-NyuXmvCa7z*m7p%5qt;8~%{zm3K4ZT}*> zSbYu5b#@NWARsWFYaBF{*xKw|V{$(v)ctN={W5&1MfVuV|p)o0=(~d0Ylo!?X%~Nysx?kik8qQW4_VGlQ zCV`H4dJPa%6C9LqGu0M6Vy$-mZ`Y?6ggF^@3Rb?sY?8KSIFt1E>@S1AC0HV(|A0~G z!~I!%5pWrb#I!1;7*3rIJ0aQMpg=R5Obo(Yjg;R2B)&FNR>erI05tjArp`A&nXc}H zJgC#;zsNTsCP$Gj1HYH=K<8^U7|5LVmV2P}2A}m7Mfq2Sm4|c#9qYd>dJKlXmOxT} zX`_QW40xTULFPwdfkyU+TI~VimdB-WfPw!#HR^&^00WouRKcU?teyShKG;s(I<=0s zO#`YV{Ym1$RWUWOb5gX?$HEk~P=w%3Q6W&)+?g;twhzZ%^x*-eNs&t~&~Dz?A9F!lJAmm7i;ebHZgW8= zQVq7n*?o4AVIPuwwd#l<2zL%M-vcbW(khtF-w1EhPZwI|B7tE7G3#t}8%zo^M3bVw zlC~&72&S1(fF#mo*BP)S3(Nr8w&>r+lcZ&7X~-PZeJlKySN&P`C4_=p!qnFlB{hF}n*FNYH)T_h z1kJT|n zrus8`O#^a}v@O3q@BECd>_hPea~pGce`NGRc8PT;Q!jHInKEN1_P=GGJ^#S^%R#e1 zZAQ7I{@*u%m=iWXI{&9QMw>y!K>YF}kK%vtK!WoZUcDMW*0&m(sjx8`77>lCJ=Na5 z7xquX&ilWB&oKv%b(dd1u`-(wm?&J0+E#Eg`n@vUhm8P#)^`WIjf^ut9m-x}W2jZT zP?w71uIC(3O1O&{=ssQ>sJQFji@&a^?SiOUjifHsleV_bEW`!JMCucVX2C~%>F_8V z$f4%tc~}AZqMwFtlDSgovf`Z+Zx{8feRTf7`w<+PU&`P-#t~(U7`r+s1=Z*7Tr+7! z@})1aN%E z7AX=x9E2boatcEQpgYGMr!zNSBd4+yPMN3`Ejg>i`-`tk3jII(OD@%P0V?`O!dggP zt&KSUJK;(`8imy5;0Vp|9fLc6+P_T$s-3rLCZ9r6CU*&SHIc2=r* zuP~S+(Yb`XAeWRaG@KS)^f~T3`LJ$%RR^g1`tr?`xSpBi@R#yhH9n5j-blC=JxeV_ znSkr$CGLwILLX@h=-v0c3Cc-*V{*E6LD&0sA==9@m7l5JxO7j1l9R*Czi&!P3_9F+ zDI*!;|NcML0>$y2mWjz{4*q4qRxDz}x2GU|q^BPGIuNaameX2-7PHi9 z&#U6(9~U29w&Bhd+?ytU483#b2^Q2LXU!a3t!uKwAF_o<_*?``X=P5b{VNuZ>bH14 zTd2!;reu+%IeP1uxTGa`=}x>&P_j*kqU^iHJMX*>v{>66e=#%WA#~R-1BqbcUL_z1>250yE~?08QkvUJ&FL$z>wnOKn>Ap<@A@)58Uf#y!ZP2_B-*j2qVa10SR7%464{T=!>f{Nbr3{93|?jq*Mt& z0MZRC{xK=H1YD%OW|<bHWy`2rI%gk<^3HmDjuq`sZD3PXq862SQz_DD1XcyhKkkm=H zR(d08P?&5UmNxd{`oB&;%PxAVrBRl)MV9y&5D>&Y1%dSA)y||dw=FvxUp4hDZ=E`_ z$5_@xcuD?py~NbhmOJ<0*SR@{^)f&Vx@{i*cd?4OcI*xN~- zU^`zSL8E!JB4S_oOCQ;dEW4NKU3)X}iMnd}SA&y#&)}A4>hsRdZQTbTwg*v33plEq zhd()PSoFVLA^E^7*7SszXAeBa&sPuK^Q%4bkax5I+kK3ba0+|L$CwWNsGxZbEA`o{ zIz_IS@RJBR+z&l9R2ULMat7Ik#FBuWIRHiU0r>L%787)DJblFK4gl3X45N>K=uaKx z#a#GHJkH@Y7oO?BA|jN)!1+DHM9I36g}sqwn*v_)@zXuR&&qO4J0%6}eBY(J`gkIp zkco$z^=_^W!(;YctlbzWE^97jgdm1-m7)y;u$G*l6O#O}itG6Dzh~yKs^o_P`W5Nq zrW#)=q4t-X!C0q~@`3B;z?KIYFWk7PW3TR{(`_|rNE&YrA@MS2Y)5K=A9djEJYI(Z zS6Nq9VdlW)-rZdPwTKKeE;@jm;CD`xG4pn!5ga#quJGo5OrgNYpbK- zUKWDqvuRIE3`>5=8>M$#TA46Z*T`8~Cay7BpRCbcJ0F|?@9~wg8yx?*H8^g5rnqP5 zYoSxd3ymLRdH_L@vkKJ}xdhz7w7g@_;SoeC1(x;5R(Nh^37(B0^c@WMvUzK*6gcWE zFlP?E`21H?JW=66&Va*Di?dBR;Hm!QFS^gOVvlhMC8Wi-Hr+~6(skh|Z&^c| ziYL3*c2psAtDD~)CQ1JmDiGYs2!W-3Y}T?PH5$%&-dg9?&3Pr2{dGLmnw*8^rOfT zc^f;m`q5x+(zRhN94{&6Ak%_Cs!P^T>^~VSx;hBfV+3J)aJgF{`b5-JWkJA$lRq3b zFHf`vJ(1_nEc%@AsjZmQrR3h-F?NCviZn`Iom73*IEvG`P34l=!%LMr@A+mL9CWp# z-3`BB_T>?4zY70aSL6HVW+(F<81^W=TnKtZIV>tE+fV(bkGejWT)X}{y4txeY+SF| zVQGs$(iWsrQW|2bvTnObjujmp)e0V0aV6Cx&e(SsGDJjE{dRpRS#~0Sx6h_p39HbG zK&U3aV9O9ep49_al)mJz?b*xsJiSK`tqb)JU22%wRytCx7KPY>W*0 zR6@ORl%k9}R4%uBrZL>a{DZ)&-3EP;sx&eL!9yE;a#%g0{13w&P%8ok*h={0c&`44$`t>$*po^3 zuHnP|?|{o0){inAsl^8#eex-pUT91(=$$?J!&weG;S)ysfTnjye7^7erN`{nkUOnW z8EZB0E9?7CaryA;+s##xE3|u!TMW+?6h?7aXk39gA=tfnor}xRE62JzwaR0|Ooxe; zI<0$GGCz@VKL8!%}>Wpvhw(`F|j_O?_K{1AKH>n1yZF~ERo-&`eH%c|Ww`kylr?pTctV&iK zJZli`f&SwpeQe@a*r3dD%Mrr$I3LAv8!?1~oQ?@)%(&WL4j{10DC1&f97UztuTw|w zX``LXyK^c1NwmPvAzNEN525b5Ru;QDxdBNPq?>!rQ=rv8V%U+WV#}Vt4}!;h9*f

ILF_-KMV1&`BPorC)-Vq^kiuZuxngt}R_6S$2jmK3wN$BJcEYcAk z8UNDcvTiDUzCYxV$=mj`BfN0s+#6^WNtR=^)s@CBh3p3*%DB(N!6Li;sGqH`{dTO4 zgS4`F3Sj&pu`N{ZgF?#SxhZO~U%aBo8}<>+L$RK^FGcZSO%3Xq`CeFPkmm&50Y8=3jwpwLknZwg3biAC&D@U~;mihIvRtzbt7*#Q6U#;r z)oke^=f;UEo38ASq*|D!NPdx_h#C|cgAzmP-D$xP>2RAFx)MtJ6T`;6@%8o!!%ExP znBjfLvMSlu^YtPf{_fp}OG@U?hZ|gV^4y8S35qlV(>oWqMv1TiX|B*s&3H(~+M2<6 zZg7qj-yLr%uBv1yF!-__nH#iqC;BhveSF-UGa|Xbo+g!3JhYi}i}X*c@|!guNt?~J@Sy+Bv*lX z<=9>9od*BMXFF$!{$~z54z4$HJG`)se$W{hRYBaupbiS|D!C|!ySgy{n1_)x*Zo0? znzgy-0!^QD3`GQXXO1@CCugjzmJBQ+9CSX4I(wJ#xZy#cAZvf+QC(a{Zk;nnlLjRRYI{RetD$NFNa1Yl_wb^t9-LanIzM; z9FwZfNAOap&qPf78%Nmy)Tz6!;8>|}ohXKnDxlLYX&kyg8A;2x^EVzol zR`1AS!1l{V=u%pY+L-HBg-1iWRemM-0cy@xtIxz!4tF+_vqB&?WzIYKRsSS_-}xvXWQ+1V~%z6uvcMXHb)j=3Efgg z?RU7i@PhrlZg6R^OLvoOygZkl zZXVHLM3uvP9xk+dWVoUy2G`V3=op`e){YQj=D7nR>>-vzyOe-c<)ZF$nou}w!LY?` zhHcP()DtIqiapuQXe2Yd^5w?lF(HUE-h;xFElymi>DNV`8b9JpYpr`bTIH%@i(0a! zD&@8(#Wu?lqjnB8!s{AI4aBOZ`@ID|GOyuq=U(k}#6@CZA*!)ae}$226+?iAX|!m# ze(!bu#HwaYkX{dzHxo&QrgvJ6>Jp0j3u_3&wM&FS&lI_QMH?z_+;T=nOE)1s3Y-g* z9RI4M1nj{U%HxBVl%C|$e^APg1ug}8FQC%60urE z&xb%brAfCq^ZdGLh-CK_ix{kJ^rI}t`ntH0Me)U8?V}AE_?ItMi|cEL&;xFZ|B>`c zl8@8xTjbTI+e0UbtSGvs>kf;w>TGo{yt$Oj_S~qcVZ^xQ;e)P6-{vGHRWNJ-nNaZ6 z{wDuFX~$V;jiHYzeRe)2J94@eu`<-Z@~7F_w?@o*finccGN^d*j%#kR!;GOD6mgv& zn9|hKdVQ*HiJw0=I1Y7H&+_V%@&5RZWKC!MZHo|7moXDP+8zdDru&?B8z*7< zQS{AWl?t1kVE?%sFrhJ&&LG!E9Z_9z4Q%-iw?e^c&(#wxrR{GJpOw@fXf0Y;r2myO zrU>?bl3oyJnfw&$*F|mw>4}WDjv)}Nkmhb7@mJK*Ob_|@b?CDc(jlK|(<>HGl%x)d zG|~82-t}R>^qr`fPm7LvsL+wiCY!PzxaHXMQBde1Z!J5-M3=wHW{0VQd-^ah(r>xe zhED!i8|z<2u4Gh$p(-&1gByDmvp%*=och>Ax?Jl}mvGq&>*VzBD-m|a&_mLXK-ECd zcC^gTgQL7ZCRd_Xo(#bCtH~Qn6Kt~L0%HWqUrTZw4Oy+W_E%$JEvj96Q_lFEQL%2~ zf}wN!S4=>h;mY&(Lryd~US66o%k6$|NRCq@9tbeZRQ?T-P>vr<7g(CZO#r`lKF@As z=N~s`gs>d;%5|cvj&*c%$<%0xxoT>5Jey;pty>u!BfIMI zxjyZ4dPm}|LG~?kohK9O3kGf%JGcg6$b@ zeLa!*0v2?)P~Ae>rr73P5k0Woe+jx3+4c2Die@8m}Jw6Vq0OKPfoT2^1Ku&UCi$A@>YGoqPsSM z^H=WC+|p>TYNrjbHvysD#_>&~3r%aJ2Yubn56#v!G>)9r`+lJgirk$d6{3CG^2iLg zEML|pAiZL1d{|}G*nqyyI$3Q>uYXVN<_HM!Uw3Q>r1&nO6_Le?LTj!br4)eB=(mFQLKj!L34ct(667TY zv5l1B3#29*d$|^Jq_b4rVM5v#?$|KY+*A0y53lpNpkR%WK^Mc8`0#wNTd zxP3Q~kPIbActsh4LvyHbYzTa;RrCQlmA=ZEoC5fq-jkzD{%3*K&VSK*0*~1vT3=wN zy#!GIn36@*>;v#wEF+@}DlwO~fn*dQWov$_r9TVF}4F zs}?7F^7HVMVO5LX)Y_VRl8#Zz-I{kdVsa41D!SDZHdpXg$H2!A2Hh%SjT<4F?=ElQ zt3 z{2H+Dx^CeePUYyTPG>F+U_)8OvF^-|ewS>-fU;^j;^XF5e}UqkAW5MyN4~RTlK8(} z%c~shY#rNhT6<0ZxxNjRe!X^dS1VQA$6 zDI&Q1KJSe0;EpZvUXY{Ry@r1>7jL(AqX_Vh18~oo;)-EvjRV!uoqAHe;O^bK-0;Yd zs$&bqmc90H6wB`R;L$!$%)N43g@>^n3LIotFv-C%flbIa6BQgQN2Lw1r-M(o#LV>UwxH@-xSrpYia6Ax9=QIn zM*V8rR5R`XN%x)mM{-Vhrt-e;c^ScD(11u>RQ`Pz{9#W0WJPZd-s1aF2pxKOhAHoJ zkszCv{|=RU?Q64EY%fTmDF$F_v;btfK!M^k5B~-9QeH|>uwxtjuK>w$nEVRRr~H~! zxY#zd=8({d`{-Z7aC8V)!k(+>Et{3VI}mO9X%XawIBs>Qq%OgOi&(&E#mCRGZOErQ zPqBJNUX)Hx8#VDxlv=9l6b+p%{83byxrJ^TBQ8|+K##aZ`0f7tuCHaug(rnw)*ZD) zOb7jZD>Z{geZPBHEn`2GGhDEEf7%S@XgFv#1ltN?$nm2Dt2^egKPHY2nVl7eigJYe zN%Qzu!b{VleYQ@*n_^i?zP!S5ILWAWZ*gyi82}#5uDogVm})*FN7k|!@@rH@ z@s+mSC~{}JJ1m1BWA zO${*1H#xu!*;nEfu(=800W*_FmgMDta#NzFj+Ue#;d>1DYmR4TK!ALauBj(|q_Y(y zu^~`*>%P&DGlOtGbmZXtq@kx z=R55~?GHE`;u`yRTeBBC^xkDWxg9xPRA8&@z8d_ouNvvDB~XIIQ@mgTRmgJJRBAH7 zY&QE_=pYD~!R$>=IYlEx(6M}iF&o~R zvzhStaWanGGc4-J_33`~V;-j2W|yp5yJ+dwQBAUoA9K`>)GH2yTrZZ~ap%V<54 z^Ps?uEL%G-QE_V%nsWX-BvY+6Prb}{%;QAGL;_S(mCQJ{C@2JEGa@!0k)X0fY877nj1r z=!D+vSpN1xp*-P3I1-$%;kEB&Vb+vS-{SBi$K$HLe=ji6s(yJeLL9l^FQ&(d%E}D; z3`gz57ZkOB_Adb9rM{vPI*f&N!2SDx6*zy9vR|&ua#D48A5(Xj~)CwReLT!li}t-ENwK7 zAgno=KUnN<8)$z}b+X_ZgKF>ATQuLj+QKfPv`76K@|P1y%;E)SlP6mNu2AzIB6LV9 z1H+GO5;StPX7m8Jk;6iR0d`4~Akk+EIP52&FL1~E+EP!1OZiLE1<$V!uzASCu7ZaX zBZm+UbTNJXCct$iB4P*W*Y965WELAO9dNbB+J3*|*U!ACxOabFW;?N{Xcg{@8=Al# z-7(tWtSTgilnviX*1_L4AI!9}f3jfz=1$UU=aQVPE94hc&{SN`0$HVFeBU&dJ-MSQ z=$qAFX3nSy#22CscR~q8&~U|8BfGlNe@!5>pp!PV*48XNXFC)f`?9w1!(t>dVRdFG zTKAJ6apw-?NTA8Q)u_>Xlbb${ulXVB7?T{gDUvKWW%Ly_lBYdr9!p#@4vPfd>|`@LR+k>tIrjepVkjP z>53?p3flM7?iN5L9FN%Nt2htK`rS&-jZ~r%OO@5iM_G@uPNv&r9yG|)yO44v)A@Tm z3%mDV#-Qq&AD2R6)HtS~!rZ74X=_54iQz{<2i1Yf7OINXvdk0OCc`hxEKd+B3wM@FXR88xd>@QoBB@@AQWzJr z-Ey`&bsLJMF#1~Bq4~H1oD24k(+Q|c4nEs&npPvFHkLYlby z+CCKzN5jhCviT*2A^u*+I2%&iciiC4Zm9*~k1P}5jfwYf`bkT~w>tt^v-$g_R;XeN zhoDlWoMhAU>BMH%ep59b= zszr5KfaSjdnrP=L)DdBX0XtxEFOs1D70FPXP6YPwzrRi+Q;tWgLX-7j0{ExC7^xi6 z3%W%ww!#W8_|MJN=@Lz6=jTL}TFJ=rvSt(LL76Y#G(5WJF7B{tw62SWP1QmnJLI0^ z2+hW%x;j#qLZW9_Z`C)w8fd-SJ{=Gq9U^;tt}W`stg60`TdzGcp1zqeZ06o@JbkM*hC`~YV!$sIDSxF4f(L&#q#{| zBh77Umc^$W5{%r%1uWB%6LOaFEEC|NO_L98ioIJyBei2EevBrMH|Z9$AXL z7g`uq^NZPna13|Mo|aO*#ee5*&|_D28!;Z_c4#~k*Qau-f&Ohd`V6P9LkwUWp2s2| z_dRb`=`W$0DTZGYA5?*J7%322^R_S6s@>wMNI}1 zTmXu`a}asIr-9+Z!PL5NgLUgb*2+#u`1&|~j7ZKOQnF!U8>^z$9%OO*W#CV;JIn#;H+#`KMR}gQT8ozWQuZ(V>yZ1uFkh6ViBV4UxGsBLJMm@6ruRiL)i!ZYm+aF%) z)%>TRN4@u+@?K@z?^oU_0sLrRJCo0E(qCIGv|%{^uF7_nI}4BdGt~Irsr;WLj=oT( zKenrSVrh?)kuM8T(NlyuW3fO7^t>*-&luCF6Dq<+(>qV(DdktiPciu5sx9sW;2Utdd0UyH!Vw!*4tWa;ax zG)F*|nZVBF#f5aFj!r1ht!7|sZ4Q$Efa4a=eck~(5PQ*rOVZ~I2!g_PZFZN?vmZ*clp;pl-BJF6)lyU zQLY1XO3fQTB{8}>)0c|$*BafNMz*HXFKo6Mfu8H)PqLgT{F3rYCpgC&E%lj$&VZMb z@k#%2)geJ;u0R(K)TSO8MS6-V*Lb`rqr}{9H2LCxJXy z6dB*1U-`;IzC4Hqy>h$av*5Am&3lg44(Trn_sRxZmyC_zu+s35*LEx2y)B$sv{d*Q zAXx!Tyr2Exoa*O%AG_Mqg$8R>-vRptlWil!|-|8@<*6s>kU8>(?R^}`PQ*B-01LIn1I^Dh=?@J$)-7R)nvn=xMPtU*9 z;%EbgmgJ-dq(iLyLrOs??dNDFfO`Aa=zqJ^k7jfOm_-Wy?edNY&@kd1|E5?a#`4z0 z&DVcwGg7etK$1y;%@6)xne|1jv7u0~x|Cw}LTvCGd@ZsLkT&7NNhn$Xgo~_TTFRp8sh- zdrbonGWP>K4t^@r?uwB3;j+@g{$85A>&w9p#**_t<6g-yMIp+SlQiL>*gB0)5}np7 znz0RAusF1PAhTBH^@7FTYgfjq;1+30Yd@Y$GQOq2Hoda?m{hS`f36d(oaB}d>+@hK zZC+whVlkp4Zi0RZ_LE} z7;QWzwKlvBh=MVViO)~Ykh0u?9{n}saZ5O`NIbDZD&f**V`$PXoDcJ#FUDh zgws(r8`agl+s+j-vA6n$I(Ba}U&1%`x-Opgo89v1ANms`g>1Xa4agVIsGk(i=)23C z7lB`9o0=juWAi^-0j7bXOK)ks?Ua2DU+30;kDULS#d+u5fEhEFQMZS-9kK-ZJ%`sX zv_9+GSEq1i2~BYUED1mW_UiXH^0pE|OrhB6>z(-<Xlm8l9zu)ywpc7G zW%{QA@Sm7Ao!{tY?3PNwnbcqV!R8ojJrGEzH>du$Yx^Y_K>o7EHaiurB2NRzUH~XP z`S!yOvoZ#0CW?6`jQ_L#sYw_c)6WFaxB$L8*0e!*G%|p(y*&j28eg7-#$f!hrpDZ7 zZ`Lhe1d1QNVNzTo6^6EB&yc;93nJGiF@EGOGfd+87u(+$;V~CppW9O&NQ8`SThB1p zRBZg;u2d@bSCA+iNJ?HYwCFp1`sf5@dRt_$^&2t1BhNp!{ZX~%)~KXr`5C?C4|)>q#=iHS_Pc%dZ@DT*OeI$11RV1ms- zE`Hbv09F-E5TyI_wW~~QP$!i_Yv{zDMbG@6F_a$wCLD=$YXbVFh9!7zF4cc4D)sT{ z6w!LB-%+Dm7l1%a!n9JRpHcr@e-i~PPl*csVOt<-N`BBXQu`+GG(J}NtZ$EaPn;>> zwG0?3XFOlU;D;0z_OIsMW(64V#m!SH`%D79uo>8`%@au1Zvkdp5s9+UyH9i%NodP!HZTE_8;CxV%C?Qr@9eD zEy&BY7ZrsP*CvG#GQuNTOKbl>aE^^rwkO_yGl?a0Us%Qcd@>SAYHu{PNRgb#5@XVvPSziijqjp>1>q zb=sNbMS791Jl0&`fi{6tPrQZ+a94Ix&=es59pU{ys?I&0>Hh!!b#*Q}C@I2Kk;*BB za=xkyA?NePc1aF1BRL;;C6aRya@s0J4kK)qIjkH*h+)~xGKUPq9A@nB`M$5;f4~3y zF}uCC_v`T7^YwV#A3H0LhBXW6j%<|`rOy_6Fg5+R-z6?J?D#!^$22Kn%}#sdM)~ zE&7HOd2=w5%_0*N#A1C(L%X8ps5D40>X2+*FAz%~yji{jylm%i^l1v}FN3I}n4S#X z-}}(^UGkJoBGPGckEC0Gyzvn8*xqly%QR3w7omU%9`X+e*PJynul$DEeR;!Vb|?7n zK09B9qjzr%9n-)0@lVZw{_bG2Mf6sn(b6~FO%XxVESpiHNcO8efaz8%xGa|+C9}_U zL|$Zos}cg-^X*`o0(2r%EIwlPb7P*#+d)%~hCXydQPY({-j`3`mrd&R z8|kkY-tE#I{q#Al`&MVukXYqaas?yna(|}8^e_&A+LG&`DT6)xpAZ~I+4uQ8lm?tsE#hB( zyF%kpC%lTxE?62~>~B$B5KQ+dRv{YxCRXz2chb-vQ`s)9%5FG8ARG8;lJ=;(kmmEEvax0X-v zl)NVMw2=fk)Uf6VaL>DcO;|?l9SwMWxj0558+83&kVCE)A?xs0ni$Df;~l)o0;wz1 z0$6?$P@y;DUjo4Uu7#>E)oo852mTy^Zu#5+xOb80wco!HEw+ocsgK39{+R^}mKto* z_NGFM;t5N*RLkacj)(t8weh{dLIRkIW~wiVF653=nd=d3><5@nPL70voqKV{AJ@~eI*a!97{({PQ>>i>JSkNw z{iVICtqH^ZA;UN+=QSeHMB!*XjYWQc@tMqY)99bCFr(Ir_(J@1v)~HVEoAs~xG=D- z(X3TFY8y)F#j_fDizZJ^{`xJOp}P?6<&)hcsvtKft@p7IK2qGL|1MG!g{TT$mTu_6)T0+$PL`OeSpD3= zZAvfLxx(V_)e^tnP=fRN@b+@1QDalV2y<$Y-qM`v`r&iDWhMVg;<(G(lB&yyko{E$ zoff`UwxE6f)4R*Sg@Hn3hb*cPYlbxw=10~aV-=j>nd0xrER$IUxNr$K>fZt3hxoF> z<&BG3@P7*&yBM^0zW<~|C|D|1j?)+p<3mJTCL?Ol&ur@wb15Hq+;avlCNGRYP#*3@p8_!o9+tPV7 zw#mop&hQWFAQYa>rU&5qo5B4A0#Uj zb>iQL7o}r6y$22mGYVBs#J=k(rTVS+mbpW~G?jgJDYAF)XYp2aGNoZF+MG-Ifzd7m z8-&)wXhb|Q02`|beycl}4`)h73w2ag@Q)MRc`x)9JUIu^QEK`V$Ey$@jmz93$_59S zcT#1Vevh~P*tVUTSQ5wFRjV1$#zkRE5Yp@T(U2Vk9C}x4ppp?DYY%ChCop1H5!RZc z%V?8`592Lbl9ldX2xo6c#R|!HBacsuvOOw#!>d`K^qTv36>?L9&b`t1_AN`EkyZ`M zrO{Ol9J8U%#KEC$<85uQ#eAeOVI&j`TlUVg8}TniUAx#^G~riQR(9H}CF~or4s%<| z4@eWuojR|Okj%!5-(|ByFenW=ykvb0Mj>tp&d!(_vSLteU_UOQn4Wd(cdV|3hgZ3u z?N68FTR~?_;Gwd@$@V)P{bAfwej2^!vJAMn9O8ZW3xINd3Dc*P9j|z}=#X{Xp5Gt~ZIPoEpiL?k@JxNU|yb7pA_IvdKMGD1J}5kgjWC zkwg$~PplwTKA^2p4{Gw(SBg9*T6bZwn&FVbo9qDi#FYC8Ep~ae5-8}VR#ReBt6^<7 zN0j0RmmEeOtO>@cC^SNKtoS=Cu-pQBgRhR3#jkQZw+T|?SDbGQgTf&@I zlB$nd5V{k_2mJXk`u^;Bcc)x9cv}#_*l{h|csOHO*IJC4nz3v~w-@XrLv+|5R0z}q zE0 z5q-T{U{|eZOT(?;KPDgMfsil#@ecw@L*db@Z1I~*c8$^T>6P@!{{5C8F`o}V3Tmq( zn@|uJ5GYK37R+#@ZUo5(y85Yk+HZ))6IH$9crFzH5TBCc4t|HW8hd&M#b)b9PZ9`g@jo7!Z4vkA{=WMheu7&zV4-FTS{^PA6# zat|eAwkDR~dd)g&=~spn+tx-w`Ka~o=zad$YznSFvSe*?eQ-mS2oK}yGxje^rHi$> zNqxFos-N$Bu&|V-#rMS^Ru@F-+Gr{?dMse`R#02zRMj+4ieKKU-vkw52Ffa?*%n@G zTy8kG``ELoai#&?Yv#Pg*WAvl0Zn2JA*dX-ZTJ24SA{Uj z4`j_&qWWW~xSQYEsK+-MFc6!TirC%-fB69) zX9Xe@axcwayPQG?kV(nzb6t9nBQ)zM$}pxT69O4z#9uS3@h%-%>JMq$fY+d_!gc9B zopGup!ni`AD@T%Dobeu}^_p`cMay|uAs@x%Yz3A5*$|Q4(c@a*2rkrlNe*P(FNo0A z91z1uA|wJ>)a#|cYS<_g0?d!{vT3OIXV<-J~ABOGzJv`~s3N~vjschY1 zmEiL%Aavk4`DTY%mf>KLi$pXm7+>N_6{(kx)_h6=>U zgtWvR(Chw}($e^4Q?YSll$0Hm{wDvI>Z zw8=O>f14Ia8Q}*MY{5&eVb#|GINZ((u6|@SS_XS&d-wb9nfY@cILEQfW6g#6-(OEq zT}?x{jk~SG&&z?2YimM8f zoA%c<6IjFq;@KbzJ%qJ`t{r`n9OgXN96oNf?L6Mw>KxvObFTla+`62z@~$zqIENf7 zNvF}Nzh#+5rzV!_mvmddhevJpR=b)aLa`9~a@G`+V(&W3*FSBFl$mTz$9Ky(Tvxo+ zvZmLkUyz3IYAjS}X#+*MCF{`_x4>*uIwi_ISg0Hgyaeu+>%x6r6uowO#ag)d$a-oBEvsp>a)7|FDc4a@3g zP`l~*D^AyHfSB6!n$$9up>mV!qxA&p8<6q$F!056OcO(_uApq&0?#Fast9tsP{^|t z{P1?HVVF5o&zHZ+(sZd^dEYdQX?zx1_R``AS?lGNjCk09KQ^%hLWSI|b?>?}@{@*W zNtqHiHAY3qjl!LxVs5W*TkS?-J*Ni1HAH_wVS{tH69rp5iW}CdwbTYdYxttmWPxJP z`-r4YVp(1_EAG!97tv-Tn?CCoM-*B(`=t~Am3q${#arICA{Vr;>wtcJ$#c3VRC(O+ z+)M+up`_e>t^B+uZJcXq$hz&_*w)xOS-hy{7ZG7Tnm)D ztBNm2s#V7ijBh0tOffGj;>;osroNk~&Olus!|UK!PUrFB+JJt`Z)nJvz6sjZUR}e) zWpLyw*a)Z>hDI6eMO>i<+P~n)k>p4pdxHYKL)dDAVeoR6tCehvrCUx_{y$oz5aROW9;zoCR)r* z9RC4F1s;y@SC6^H1ZzkCRLlp__IqnlXtKujh`fDI-kIGCNRZGbGQLNNCElO)qc!O!|DU;X2jh!wWFqPOmi*l-?#& zN_B>{MulzBf13ABXwGg&wb5XR=%w<>xLW+?AWycO9!f!rg|4O< zUJ$;Iac9a)#oPqc1k+0-`G|1y(Jdeg8Sw&-<^9R1O$~9E8K7(?w=pVN+T05GM_2QJ zQo!HE47_~8yfiq?%gp{`g?WOfbcTdYw#D)4@&KnzzuuMnMM{O0tI6>qKl{+jAS)aD zOnv*%tsv4(P1-d%^U zI2Fq(Z)_aqyUUXy3OMNbc6A~29 z-yMs0yd*?xHQ|bxW2p69SEO}C>;^Kv55linvzN|t%T_!Q)$kh$$yUSe!_WxPnlbb=bMC-T+@A9 znK?0nR_~At9k5g76Q5c*Od_J6GW`Z~<#2HgdFGNA9#u?NV02&2^Dw=o7o3P2rXiSU z=(4($XcYQsY*ip-G@aC4E_^524}lfjZYK;gdF_VRcsDnuGqMBKzYe7qSimkb72BHC z<28%j@dkF5H@QPLW9-l)HKDQcR>@u{(Kvm_GYRN5J$Aq>D_>a*jyCeqvK4W&NlNN^ zPG)7G}s8Uloy4bW#;piRis zGmFy~Ty1FN(bk5TqtJu19HUO7W4^VVa2L*rBtUhl_r5gd7NM<`Jj>x5Rxz>4mLo~e zA5*-?evO6brT+OF^vN|k=uFkXY;KADw&S&Eh>ICt@w~^_qN}0hCE7f`n#^`R0KsA5 zTfwbq;_M<3ZqTj(p_O^%D=N^uDQ2W-fAcB zzFFH^(|p27i~CeoQT?!TLe=fVY%!x%xg!VS9E5MNpGJ0__!lZ=sDS($Y2*_k#E^Xc zw`cDn1D}_yIbi(@+KIjpWBEg+?F5f(-7*~GFKX-^mWVd1yt4Qth&`rN@Uczb9pM7tQIC=jLY3dXRq0vEei&lj@BExv4a{ zD`vwLy2*A0IJ~1I8BY#FR4p$L|3;rc`jaLYTu0$c(yz=87v9&kX6A{PNN*%fiV5r< zQiAhqv>v(hoV@fHonHvBn-C+o7&+7N3#(^?JY)L4Et9!);!H%?BLBfB(PVw=Fz9Q` zfKz90=nXvQT+7I4<=sa&Mul%G@7bi4mfUkIVn3bY1mzSqSnARMt#p3w;Bi zxQR`h7cE+&3g^ntTUlN!W2o2%&_g!vtn0p6n3>kaU$nYj?C{&p@04YC-+H#KrJ!wt z6-b571b#)IM1GagcU)_}&ud=m0P*qx4d(%6-us!)ak8v9qqVa4Gx;$mKEg>7m^#jz zI0@VshBCW`Sq|sk1VtpP$UJDWpqai{zZ-O1aAUKwM=Rab{6qQH(I75x=KRJPP_AGH zN=CNHo+YQ9((3a^(m?^`+(ffVzo6hJ0hsc>!aQYbW`ou51#t%3n6D{M3l<$VW#WY& z3=iB+Y&$9HYg1lZ?W#Sk-c`Hjc9KYHXT0C^>#qNrkQMK({ zNn(*-KeZ#b2qo92C9n04HZsx>_;*Yd|CR`Fj5UN|`DOs+E_hqYsii5O6Mrw~w?dP98+qBkdPS07a*_41q$IT|lFy*GX!eLvG~)-ZJ?|MMg1|_a~G+ z&bTiIKaGK`0J~9hTYTJiBu@T|`ynpiX^7vB$aLq?*OH8Z)u#>|H24E~?W)mEz(@x4 zjCtje%oAq>CZB&G3@`ZQ6@1q=ywf!PtF0dW;CaVw=~CjG+qw0w3d584+?iL$Bm4_A zFphn1)>f(=6zGO7}pLku-0cP%*Nu=ov%5}IiPR; z4p_>|U2(RA-XA1+lhWkt^8`B0)0tn98R#>DgQ_&qQPnj{m%OCmX>i1hvHTgvuP2$)VtsQVk))`Up%C;Cip-CxhbT+P^_S8B{ zpZyeCK)t=_^#Yq9>cZSVJ_=gfV|^H?jf;VG~2nO23^Z!w2HE`dm0>KBaP!n^)4xl=Xzv2w5wvTI(X zMh*)ayT>uB@j0)|4^j5G`e@Po&iAt1qh<2h;^wLE%`1`3PeZ*w6giHzPB{1>%D-U_ z1pQm)Rda<0=8O8Lg4m-`py9{ejhWNzq*B z4*4~APDj_a)eLdC<8>3mQ8v=`my+q}j()MaJ5ix)_(kWO>v#txI}OLjCFXjA_S}>k z^>c586osKN_0!0&_kh}Obzd9<+OW7pl54x*M>-a#3hXDhut@LB(=iS_vLmw*U=4P_TIeafPNF z=?;^%up~H>u6sf*VsMetpV@vpPue;&wAF4AP@66r(%$VP%$OIKY1u(BufYS5Q_di&<>xMt$UH;-YJafw&F<;CP!17(v{e<7gLs|i|`dOZyJRW0$`U2>Y_t^Q1LUYw|%>^i(s>%WDt8esyVKx8GzWI; z>E?A4f$0MFUXyb4`*8z7l$rbq!Gc8wC>c%7Y5 z*tT?!BaJ7q!`Gyy4+4AIfdn3u|5V^4tOquj1i1q|fTz|0B4xy#Ju|HVu_11|8Hzp)0gYf(>5OO%LdGP_es@1%qet&N-uBN7|X!2V2dq zIwa_PT)G+@Y!-7fz0t34(XuqQMo;{n&fJCWMx!J5P||6NcIoCtZ&SM*=H{M51WE${ zKIe_Y(ShN*7BU4!hoIdM`H?tnIBD+|8nB%G zfj2Pi1etcsk4bfHSQtGI8SrDy*pN4yQ!Rjgw1Z=llJ#d_{&ZsJNY6hz*LsOMf%V*$ z`VdE7a`hWGc7H%vmgQmr+5THa#@9zTtNT${&ARhL1g_kOMyG}N^`9`E>u!^5{+-^& zY_ke@31Ly`Yap-}`+PN`oo+Y0!Sms}Ait``os9ds4Lu^?fjlhO`wNUt)RpRHI|KI1 zOwdrxBJy-hY-L0k8L}3N(@jSaHy}%lQ~rlu0t+W0x`T>JL^6e@wndR!ut#tYFX^}b z-8HwV8;(W7k`E={mn+Ct z@{(=W7YrrqI6cobU90u)!aoWO+cwk>rC#FPd2TZ-xE)&BWmp`FrG7p5KDx|hu^_A@ zXwkv(+Gf5NC(BYO? zj_Gt#g1~25{d7cghv`>pZF}Y^WV_Lfy4ZvtMM@;yJdT`}BayM#7&AoqvE-7^$)wSt z`cFK+hAtnCH`njodHLDC;;Okuo~EB^!A-vri~QT(o42}WKCOLuGCJ)9C_!|(v3@ry zj*KQXgedjf9d&-5r)*}OyCTeN@dl_Qp72cGbuptgmpow2CWyXY=0*e_zdw`9gUe@@ zXL3`YcR8W=VB=1eCn)l4kLMe`oO7#=n%uRxdniSa%v|HGjn+LZXlV%teh&K}y@aNx z*gH)ICGp$~84Xq6D+ztg&}qIK{e*Fkx`^ub*M^(?m`-eYog;L7XI#=_%;=vF^Z(nE z-@_|de+vH|bAaz0H-;t`wi}KgWr~vEJXu85%=h~3(p5kYD;4;j7TNWbzNhx8`84O zi!fH2%#q@zNVIZT>yYw|9uJP|0k|VZdaR*$;6MQkR2` z@Oj;t&)XD)3CLe5kdr_ap828xFf_zT`V}mr&*-a{M69+07PmH;9&OUEYafvEzPY;9 zyLrz?T>MuR(_8Mt%T->3CW#WS%$+{rDtpcsnmbgQXkBV8DpDx1r=!16aoc>=d{54u z$hjCDE6D{b%n=LPJuO(%a7zV^+GSCIN~RT?`n2Y6Z>N!9wG+f8(Q!?lHK&cnjptnq zS_511R4ZVhq%NMJGVf?$;<$7vdap=ffmJpY^H(M`@FaV2gHf;o={sKtEp& z41CuxI&*`Uxh#!~O$_u~EUSpt;hVJLZ-*X-csJQcsp6@>tL$Z-$3X8()I~VIaPc|+ zNHPlY)nak1#K#%^+9LnsM6Vu>;8PsehnA`-{DPDXsr{Ek@LBe(>}MKL`BnF{1H;83o^*RlKHJbo+9s6@_v#K-}zZG4csCCR; zZpn>&+AMfD$6rqM>2$^Qi0Wh6HDwiDx}pE%sknI!NDg4J*g}g7$1iQx*|yI|!h?I5 zN>KHI*n)Q5fR;(PO(iYI_zplB$fh@E<44^{^2lGcmi+U`4sTvUTnGGD7takPzSa_V zLtd=ZHSP>LrC0kC>Y9<*)cDoSWc^E;LDLwCh$pv`$|)uU!>n$qqwV4x61-a)*EGb| znd@aEQSpYz^QA%$g0GBTfXCK}BcwR|i zUwr2Qn}hRV4mK8h?ztKJ9FY9u`b?ErUiggSTht*h2M3$aD(CB$B`A42j9tNzcP|aM zgB#D;$D}veChMD?@oFHt79FrjzTEu+{35Mm|6uvN2x+v`8+JKYgdS_b$2BraWE8N< zQhImW|9$7-c*^O{kH^0cr&Q&7d!{w$NtlVC2H}tK;ldEIXs=vw#-86ske~Y)lsnu% z@-L7mTa9Q6Lb=M!c15X}nRM&>smIx;`@%I2>OCP(9;S(1{+unmK^ci0}&=RpX{!6DI|?uwgCj`*s7#^SeFA6%H#FSRmO7`>_4d`CeW-(bX8wqmZe9W+^+Zv7 z^f!kniyE2Gp>q7q3vnC(w2mICrKEW(l^Fxz!9CX2{?R}FBP)(iP|1x!mfH>4(dIur*1Q-E8Z!nO8YeTIU5?pb)muk&4!Wz$Z! z%DdkOBE2C3b%t$^%#ezM)PHz5Kt@XeGGp(Ho!q0J7InPoT+jU_N=AYWFjfX{Q7zWU zuxSY;Y9+~u?_W>NUNk_WAtaQ^E!0HWf2!(HH}q1s!3l~H`md<}c+TUUTA!Ol_jgaN zisEp{FC;*|){*t&m-T&AIb-)X1C8`M5+pVovb6wo^fDhR$Obw@p!#2%TrUJD&$I>_7lY8hGy~O}in6j3F8z4OOvM>=_L*g7gSBXJqdf zG}~^+CER%t71Fa~U_gALvGeplRqSrokL4|P5Ae_!f*EQ&NGfw<@VFTph>m*wF88^9 zY*gqHYs=_v#)tf~7f$@%IfX)#H;h1k0}6G(6wtG8^@k72=*#gaQT~5913{|)z2(RJ z%^s-ele{qIS_AlHu?gPUi|-P)GKPp-T&>G^%RKC{5SGA1yVLygGY-*B@0q;!gEchG0hYQ4H7TyLrODBY=wqkvcE#ZlWl(p^uAKo2UTK~U2 z*?R#G@6fcfXgl-y1`5SULT;?`DBDK_eSl~gN_q9mIvDl&+z|A=LYx8VDDW|qD&$`Q zB>AGv9@brLS(H)U($LNfW%A&uPr3~T^8*Ia!OW?sg3B{Pp@_sL%%pn z<3Pr3`C(eAG3ILTv-|mu2~vo1t$Lb4%iE1Bxwl=9@c+s&Th9+iAAMqPzU?F^bQYWv z(vEzd8V?ujhHdbNG>OCl?)?1v^!8AAkm~5l8MU4A*O(mczkkfpU)toB;rCs#6VUEV*~-g69Pp>xidsw2ZV@;OaxcJ0Xf z|Lp-G-M>&BN37mp+)213`uW(d=jnY?IqTe*-kjcLF_JPcyKA?CSb?`r??=5){vC8j zK`4`JSoC-!<0(+JL;rog^6K!#q({1PZ@>1;kquijmo@~6!1GORn_I=ojU`7H9`jwr z?vo138e@O>Jo=B_eKdWe(gfZ7Ld)IBDZC)`cq8&TpHAxEte4vjqs%n}xr9*-%jgLx zcZvNIR{6H6pM8yKDacK) zbg51L5I<-TplV@5_Ltb+Nn)MYG+qm4DJOk(n)zOPqo0?j+%a@0CkQRZT$pPye*U$u zvuk!Ueua7*_PFvtf{cG-90t~6`Z}zt>AV28nFK= z?VblTq!Nh%bv_0t!p8_D^ReHY;}zv@&&22RraZQb37P;hQtU8s!zN&TV z%!|uBp9Dt3t%aRwq@>rRM|vkG{G|@cGVOh4-wl0edLQKO^X_RM>7Q<1{#94|Zc^S- zIw&bsM_qH3CG&Jl(6}#FHouXuF8K#-`pk#*ZH^`=$5+#wkn;Od;OiyHyKFx#XH|2X zPA11CF{%8{?ei8Vtcs&`o>I&v;#@R|p`0r&q=tZVz9evj4zoT66iH> z^R=moZ`vMPJVCD|SV-sYy@Ds&wD}T821Mqs0FY{ z%4~5i<`hzcJAvO@BH&yg?4#cK3i05+s^D+jN=Y=(PAMk#2I zubaPGhUdrU#80@r$_#xn_fKQmD@JSaOxhmW+XD(xjlgODVSg=|Qm?AmR*3k_p!Wt} zdYx){%k$tr_A$YJ_6G^i_r5LVh7oagIDhmd-S3i&a?7|VpzkWs(gc&51ppgjm6yxj zy2gv|G{tnLf7Sxz4CN0>5ut^)My&cHj`p!cOUaBa*rkSq2HU_w0(70W6&GtEXf+y| z&8dB)>aT?#VMTXbNlUW66Ld*fp^)WnoHJISb7t|TTeaQ0qg>X(V+W3dmVRSfZ~y{4 zAk}(f$6eS7T;AYYihMQMg)HXMg z{;dW^xhY_5?M!G>jX&hY-g7s1R8AmYj@Cm?DW4mng*UF#{|^S9sjpS5+0?;MTEA-(tQ87$6_-U8mJk?tc zzmbkK%QBz64-m2s8+!*gvmuapWPn$`IEL3rrTW{C`2pX!H%c< zQ@j`@kY=a}>VqX#uBw3*H&n7o4uDfTNfVXzSMbx(Nu!8rX+2hT&4*Mz)bylee#U$6 z#1AC$yVtHV&UND6YcIV<**I|OH{6zUw1ovLw1MP9jI#!_Lu%CTECsfLiHmum<)QbgSR4 zrUvc!z14}O&T$n?SVD#xY~wQ6z*!!^T3-p0wrUP4HIsf&?*=kiVM)97`-FR`qSw71W2Ll&N7Ep&x_^!2`Jwc#n8D*Hcx?weLkYs(s z-DUCik^-TT@{NjFDIj`PP2!9m6Y~QF&eMSnmgT1VHU36>06;~uwd+~qmNA-jwoNqc z!c;C8{PzmGZ8&Fj={&T)wR#hLo8eU58hDk;;BF%5)NP#sXgg=g|F^Yoh)m&wzAKr? zs8113Z*II~;)n5t8wkaCh@1ZWi2P{<@fgqO1PZ=9GEn>)IM#l#O}$_VVJJ(=k(dcD zLsuiclv8fr3*c|V>jOgNixCgmd>;==J zyB0__TqkJI2Du4)Vx}Jz#y2P&-PKdK?nR=%yE{7&7?4`)ue-984m$WNbS;->EK;-# zNB)wv3Qz5>i_NlwxTtF>zpQZtP^qKunm*;(d{PZAT^>D{85D##43Dl#J%7c|t$wz? zfER;vA15?0ENJ+?=b4(3E5Agl`V2(K3ce9#>IqPs)~ZPof>4h&5@^h0?QETYl?Ng; z7TcqU>B1&9Vht-i4t^Ml8;ANmw-F5_xM%8D*@H3{U)O4A18~>|h!O%A)}R9wyBqm&!flaC#WbR)ivvwlI|)EvPueYe2Pm}a zxznLXu#Scdh0FY#`c`B!ed(C16sg_fH>Vw{t4mr+)EvXdun1c16!-6Lwl+7_In4cZ zBZ*?%Yzmt}%iNv8TB)C5O`UrCQ0akXF}<jKp}+Y7F5Ll_QV9LD3MaUqLa0h@)7JAM2IC`fYsu` zyb$mJe2p&Jt(v?#H7cH}NIT0FF7riGYiPo9*rG+g{*d~#GVGQ>p< zQT=9-8|)YEMr# zTRXDb&n`!+%lxbqCFmX?%oFn&BFf9CU&dQl^lj6-?!>;3WT zn`=h6c;|~9Tw_0`KtTF+vN)Snxy1)^kcL)|-UU2HwipO#=s-u$-m|NcqxONRw!`KK zk9yzj{=n0hSsRrWGO8s?6VBO`vQ{kIXk%$RX*;)IQvi@ZPFS49N6ZlGL{r0~#<0+v zAb4Y4&lx)xzpV3KfAt57Y23%akBQ|`V_S))lDIl|R`nHWcRc$CE-VUP8B1XhsoUYh zTQG50=*AYSeqwQC%l))wi*mVT7K#!}Yw{qm~y_@{Lr6yL&G(EMUu(S@^fIrX6gfLxCHXH!fXs zVUndt-G#^Hu^Lmu5h2!&4M`0oZN3)1aoGJfww8ck*Ge(bXMGQt^FrrF@dkzqWgiOy z(5i{=+p>erKKe=J4ICsy&w}sDJr9o5;x9}=G7pvqmEY6KUoM!D;^N%ZR)ngRpe6hk zezWOj7OM&f`ixuI-Ne)C@zm`MPiqeNE*DI&05?JA?@aUIv1L@M^3Ij`=+sy>>Qw*z zPmN$We5pCIob1_D$XAPI+e%YxhC9#95Su|E^#SxLtZ)}AFc zsr4RHFDz;t6h5`PN+SmDV8T$1#3}yL1Za`E6kE+}eawJ$*aG}x3xmlleL_mckKX7C z%pG=ZY)F9Q(ib5Um4xB$A4j(eG9k%=Pd~ukJoB&JjXqg0!%$QWh|; z-PkVp_HEt7v005AT-LmG{i?FG@U=`o;Th=O-cvLcTS>h_U%7u2vOp8+e@2niQ0O(r zc$ZJ2#7(ipKH{hKl30wFO(bl8%=DQGhWlZB#>%$p7t`Me$IhFq4_B?^MX%%#ecOgvyOi|JWWgb+m+Z5@2S)J^ zYGU9Y!9UZ3&B6UTJ|iu+5oHn4u1ycH>@m>pjE!nELjU%SNGIa=iYk}M#r$q{bj~J( z*@|j>iU53b@P1SHQ@0{&GbwfjH=>*iRukf!DbOnvm5_e$>It6FU!xi|#$`WY-??ZS z(Xa{@UYj>w%T`wvFC)RumdN-8!HApB!K%_QPb>c4XJ63|j``11nybbKK)OmTAtRja zD2Ba`s)K#QFf4@Zx7tQrscE^iD3+Tc=6v!;4nUi6Wj+M)*@b3XE_oN_1We^J6mCh}G6rWO%)yLUD> zDu05{z0WB#Te;%lEKBxdE1QSg}%y1mvU5HZo-=3p* z`9$iW7XrjgmE?0vj!}|YjOn!Uk?->@p1{oTXw!+}V9Hz?T5098uFovqNO z4c&yBh44RfQ%cJZ`^_kx*97>(bobQ{Ebl3LKNpBu)WIss`Bu@JmzNvq?s_|b+Hp#g za|Kf|7z!^xyYcgHl+4H`{|<;svuGsSs;+9uYIc9km0=A}^R0{4-7F0#1$^c+sRv!E z62ooYyUok!{*{qVE6e8P@np5)WdV0%d>7>}O=Vlnt_Qr)P*M1dWFHE*sq2x?4xOWG zgn2Yg<0HuX`rcj|DytfrBW!Kg_8VC+=7fRUuRfi8@Z)=SC+ng`YUHbVolD-PX7)F9 zi8s8i-_w6wKbzxUtPB5yt%X|O3U(!jRO!j8&G*|%0l7@c0slwRwZ}8{|9_Q|gi^U* z%C&OK{Z5iwLaE&5Qn{y*`(?4x2f2q#xs2RPD3{HBm5}Q&ESs4-GuzzeGOXY6{q<)L z<(&6t7KHHJ!U>6@X$>*xi#~-B-XiZ>WY};;=h&}Tr`QU_qq=Nz z1Lv+d9CL2!sL(pA%(c&hq0*SHYs7ig{<-UxHNtMI-*|51n)ZMDrX|u5B-3y8@H>E^ zSC^n#7+b1a1Dk&pb}LVy<(aAdqE7QKq~B8NI`CzgFT49*u7$I@g%DWdzJsTM zFDS}EsySA?(bHAKyfM6ht4GxSSzV=omQ=C1Y87N<41qD-ROB&lx%e|8xQy z08y=EnpDj$lms=?R${BrFBT3PjNm`P|A#g-jPWOb=TxR7f07oOKVMSvgSu#(qC5P- zPuQe-6_L$xX~Nj3^%tLak7@znEWqhEb?Xknm5w#WKr_A*c4<~?o>@<3bVRr<*I}8n zjrHW>IlSvdJRa|uVq!j*X%%&bg=bw}a1xE8eEU7X_qR79)lV|wO>SV|i-6|&03iH} z1hrQFQXzGce>8a{df2MZ4ypLCDjH|Mna&8FLzrm0zb^P849~wl{KgUb6TpkbBf87y z$Yc_hzvy?v%GJwf=a*1Hd0S}x$!K}(6#%^*FKL5TvAGM=r@8$!x6m$ykf8#=lmulX z2)Lsmfdoy=a0n=c+is+x@^+j>m6*-!w8N#eDG$fgIk9OBYyk)V=#y zGc-E>8^btD<~g_ilJB~62b*MLH?dJq*`znoy(lgF&tBRbw(DzXbfc2B*#Ib%bGPk4 zqA*;oo*36`_qHC&nWESc_>9NFNxmQvn0gbr>)MNZKT9?G$}h=rI&Pe&W-(~y#{0F0 zQL)#o?k~Ql-S6z(XrL!Qtt!ijAmm4+J^?A$&~w(y**8q`Kbr)^euDUDjbR= zq3`O@PHxHc19p1%r|$AQBwc(6ma)ghzb!L*qDMl%i5eAoTzl9bU{tDQHV<}~C?yk> zyy;L9{6K7pOiMHXsGmc2D3<MYvWr_QB%sw}>r>67a7kLVf>W7jDbxrcH5EwSPPndM`1IBnaF1>t z;^rf#l>Q$)r*5rT+z@_4XQGZf?m?XmN>^li8n4HmsmwdpBlULgBP!wVN!GR27ks6s zk4QNt|4o4p*JJw49zAmU{`3XQ38^Ge7M6_gV#a7LG(GUCM9T9yS&4`kP@K^f9;ZvV z^s_Sp;Pdbsy?F!j!>K+L99!{G1^4x2V6AhbrpEWc=BiyxQUo z^HAiiBBFoa2BFVaGVzxgkH=X6xLip5*n1Ev-!we64*Ive8zy~nzQ5i2t|G{TA;UKJ-|mv!{pf@m4s zbQ%V$-w%5gyo9YG6W1s!N{Q^g3}yknaN1fF4*w{k^BQi7($itJ4>Nc*XuSkz(X9gp z#0u!-LwmUEQPrFybV1JoB<+3xX4HK#2F!G?cyvO261Dbb=b_l_lR;3k;?0QXuN%_D zBLKB4`F=}+mW<@#YF>uhAuIp zfzWC3rnCG}(}rvU0$mWMe&Hb}E1m{ys;!W#VmE%+u@nwku|GlPWq$i)W7hKvc`TNL zaqu<(_yO`~e!#{aFkM5t82l;B<=z3-W*Q1JxX$ivW9_07x-%VwMG7;86W!H(6S?_C zf-p#f*UJ%%up`#?$35tM{P$JvSv^BaqQUewKy?!Hg3&WH29#03Y&%*e)P2LQW6J@% zZW4I_1v$R+KexArE1jVSCs{?IXiVBB!~K8uSM6?f>3fhRHXL#BoF)yAGAQ?FwnOww8it$-{GlYYUL;f{128fR zLi=fwNM!O}(C$4WqsDo-RirTBgZBeoP+=L%R>)Q`|AJi?5-=KQAb9#4%Gys)B~O%? z7VVSSE7lLCqu#ATf2EPvn5Yuz*tyB0aT0QYzx9e!Ts$D>S^7>(LzfTTGrGx+F5j91 zI1%FI|1AfZ0n|)!UNU_dT7$%Xo0j^0GaM)yEIj_GYF^(xs)kLG%;)SF2O!;?8j;{QG%WN>J zWp0!qns?9Q)*JkafkMRG-r=e6a>lt?MLksa(QW!aPt-H_4h6iUb{J{ZQIP#1qgydr zJ7P==Du>Sl1<5!JFSI?Xl4uB!$V|b0+UjJr2WaJ0gALE6w7na&i6y$e zB4Ck~3WY=Cng6+NW<$60^!5L-(8{294yEi4K8Wp`q@BSsYtr8QTm{A)ro)*Z$oT#L zm>%C&nJDzo_965P@GR*JCjSqaEnpb|ZdsU}AN?{~#1MVrH6E_xbt=a3;(6@Bp$`4$ z&en?Z|Hyxd*MI)8h{E%g=z|f=U?IHiF%+dGaR6{p1wlZtG}L+f zsDA#jT<#vv?g94EDm==%FTCzg2UZeW(^KD|jAq*k%9o)* zRaoFl_s{9;ouFf{FQ?t&I(=}6(tgTfrL?tu@Q>xsQVz?#pl%WogNH*EpWiz%D$1oL zcYO0rCb8*<9=mW}-uyX3E(wS_@uTSr{umYlPhEBjd917wtCPy! zebbDsv5(8T)PM}M!WQQgR7>GKB?K3&?6 z-4Hh=g}urm{x`hzLxt8A-S&!=-gm6q=ruVg=e=eyQ(`5i3q9#$P_zH@VmfX2)8XEQ>qLLT_5?S;^h3(oN2>RQ@g zMIiZC)Q0s^KjP^&Gd=k>Y zTNPhPo&CoWO41)y{cWzMST9mrHPAg_ob~hOhLdUNNbY|H;3)O|?LB9F>3C z$2fJ0_gw6Jl5;}SvN}dU%0A(pxpIHHP{aev<^0y2Rm};V1}tMEI@XoqGy4#96&y_X z^a`SB@9ZxX_D7K_x^(Z>tuK24&Zfs%@Zv_2U51JUHP%^x2sDva1}|7b^^!NQTBz3b zNMd=+RWV8#=4I)nFjF^xQ|^fnNRX`KvDVU(#BA*Y+g}B0dhehW_^>NJMx$VmW!z%u z^{p~7;CK~XR$3A>i-YhcN!`vK-;li;K853hkpxP?2^YuH+h+v#QuG==9Q!qs?R5y~ zh}qT}u?J#J&@5ta=em4cC5yRR2B+=mwam83^M;>|F5W!t<=OBs?cUqu4wY{f%de0h zW0xJM<5Tcl=#PW=VmhWeZH>5j;A{aRsqTNEf(!ShfW(qnxEB4i!s8q*f!3dLd@p*0 zE0lPbUw*#utd{kiN;a?^?yzfY0`x>Vx{u-Y#k;u^nNWtQCm8MP7(@9$z}K7%^mA2g zLwjbxX9sJa!!$^RBdAm3udAg)@GVAGY^|}f(0lkVtrFB2^-A@lveud$Y*<|zWr{(H zZdpyT&gnBApd!JFrMVWK^)0oaJ!IW1F-~7|EwrvOV%+g1GQ-KDA_5lKo~f5o!e`Sk z(1IiJhH+F7T`Pj^30oM>Zv?5fs@`1C?!{-f%%4$eo5L`cE`4;|{-<7^q_8{t%NWO% zukF+V`HxEhKKhcWOc7fV*L(4gkj?ucZ5yE7CdKJC9`=)jww2{R-7s14k{FLH>8US9 z*=L?nt9+#qz62y11a%dc+i7XW&sys2Akr3t(G@;mR@dxelo&rRa}e zlX7S`m#db*xco5J9mLiY<4k=51*dz8ExtJEBkF1<>YUwVpxv%nQ~4tGB3Rt;R)+0? zNDCP(=G&4Fgb8uzi37>B^gn*B7BiftHgy>ycd!&h6%u9?89wGK`*>Xx`%`h_SoGVd8#fr z>Lb-M>3b)`vI6h;+aMHIl2KXg9VCR6!fM=LeQkQYs^&M{#aU=$6El<|Upu@tbm^~CGBybZ4p%CBis^ekGAA?g2 z>nTBZVS`RdI^N*f#*uM;TcUlGI@k)B118$l57)Pjg2H@cJV!R0o1uF9ERGjbggBQ5XD8wD<{@94y;nDcQtmH(zcFPgoM~JM>S^v$3Fe+Cg@GF9FzxvL zwqa*yvFij$TQD3;sm^a^3gUZRa4s+rUr${LR5JaDnNlqieX z2Zp?ooDDidVY%L6`f_V0Q3+LpC_jnapwG^K82?dES_owg?cll?E}M z>KoW&-t;;SEcxMsR-# z4#d`8#$rN%IKDoojso$^gh+1V?b<&-?;o4Z$3k4IV3bOY77X@_ZoGM#`B;c_%oNcc zLzO{{X7H~TS^5A5Tl(v~mtL8dIe~unFUR5*cO{=MdMH)Gh6(bRI#A1VCUl&TJXTXW z4iHm1K5q8AwiaOVzkOepCG%}|buYNKT5TGEi@&O)+%otZjs=%7=FkX;_wmyc3No<= z@3UO(iYJ0M!^jJzHJhU^o8{eF$Rx~CjbGJ8xBBpMWSpLX^Js`pa0WyOlyptCPTc>v zF9>o~aGSc(tL0GcEiZ*Z1;}qcJ)2#=X&&N3T%XWbEHHeTe<;5j;&O*zwb`*YP1E@ zs~&_#!$?qrUCurIhKR4vrml>u9a?Q{K15|OZEIUlO+Hk~wzf@$ss&THWuJe^U*##Y z=|k8rv(<6Ki+tBw9%dw(JNAw{%F2rzx(<+AnsWUt5i}?YRh>k|G+7wJx_W2bn|<&% z&F0?xMutLcqD-bDF3n<8$Me%KO)Xw*uH~vVbN`;{03QigMb+LU5Njr^-LZBa8<^&_ z`?B&(ky1Y-L_Rxb3w1kn5Ug!^ow4Y8{;Lfj-0{I8H7q^E3Z6lc^5U51ez(sSv0}!@ zos}_0BfS&dKrD_FMo!z2H%BpqO814zM@2q6pfp96(}G*@ds&%CW6$??AobN`isOd! z9a^X3*KI1PcsFs8W>%}PdE2A42{uTzlQ>0roUiJeyLbPr&0Pe{|Drl}?W?71U^Pi* z!)`AGF^+|tvHl2ryU5i$Yu9v`00)`8{!OE&@0N4oVdE853Ps`9rp>_q@v{mc$I$ko>p5u#P85`0nE$5_siGQ>ZEHf z-c`KPH1Y|elXdb*drAXAK*HYbSZS*N4ON>T7-QW)Dl)sr9lSvEgGJIN0FK?BXP6G) zxUSfP8;dQ38ggVzgt_c?WSEP*VmSs&C#3P8OcFl(eKz3;gLqK? zZNvsRTm`1QkT9Fi4@L9lUPt2Y-owWwgy^~7E|NI+-iPtPETO{5G)S4_s{iIzGkzY( z8CS3Y?d$teEqedJ$2A{3Dph4CdHyHsFyJu8OMaW=ZUBh_0 z$>%%DG52BVt@Z6GL3+BGbSrWcS0a<>x)$3&OHgxGG#xtdnfuTnjj74obu()j+TvJB zwLtUql>%8(h*rcpcLIA(*RP)qr-9kx`rIm$wcAK#63>?%_Yup+E-YYD*FG?t^Gs(7 z*CLr z2I{>h{Pjzu>R~u)hb0QdixhPVQx>n!EuVKyK0u65|>ppCfp%r)y3xdPd`espD|@u>go|R z``RDa;h@=xugV68M5i(SF2d6nVKwf=1rkHdD%`ibU2bjXzwA!Y>+8J5)$(1RW~01} z*Qy&TL`=iKt?eV;NY;`=k>g$R0{xktl7W*aeS*mb;lFQ~;Vd*v*wo@+K z=?!=a?l5I^fq%-z-*yz#K8&%0;LE>kpn7Su{ye*=dkx=40qn-UHt?Hq5eR)9g!^Tm zE}z(sG4fFR{H{K1lWL!STO&;&e+i^vD(BXaNn4uOLHT1Jz&A3-kkN3v1NmrXv&cgj z!hl<_mtKY(54n^un6G)x;_32$xRWtw$?znIkn0=QSU>9LcN>O4uB#UaI$M{o@Yc$E zg#dw(H3I~HJVb{snvS&HUO`>NG~oPQ2>pkGzWMG`zL|tHbpi$FU1lyww5-E0C%%{< zmN5g8j7ROIqKP|x1|x3!&VQN+avkf}a zGd%ZEx1~s2siaKyzqhLBE7ylR^+`pFywg9>2#dFmzUls*OC(rE`T}6~_$L5u;%dMB z;MVqrD$j?pxXHc1l4T?D+V?P?wLi%vm%=CB&7ZSUv2+0N8|>a2TMUEw5loQyj<~sz zsbaPvJ#_v*f7MV*D^>rgfWrG%$))bDAHK;7k`E(J9P}EFJ}%mE;-NHIMc^J*b445k zaw_q;XL)i2RurZbE#CNkJt0@eQI};w`i$Vs;`yk#D}qWEeN<*Esw)04c=H;}tH)DD zlCBpiRwy8I;`Pt6D+Ur6q-zI~yh|_Rl@xxA6uD6@q3bR@eb7p0^^)*s&0_Z+O0#VK zo9WEIweMx@UEaR=)WPk=8NGU?ZuzlZ^@V;I0@KZ(F6wnVYOA`52}HtZ4m zvn!8Kn-WvGjY%_%wOr=izseRWt+fV1h7lr32o{db3$e!{kG;VFjux+sQUHWA=JMrh zbWIUc0$aeJZYRo>gjGY<3$Nl@*x>~2$6LVvW%zph;}KCy;yK0tmvBt-8%ymrc{1#} zm8NFLg?G6kyszbO^4kTo&V2$S4MM&YdH1vd!MM`$N#hWIo?p{)i0{_ImQfO)Q#I4F z;^Fq6GCaNnP;(&iqPa|q7k37%>ntN0zU+nVrvjm8id~94Fa6i`kcqmMZbd#=n4m~m zny>GtpCKnJ>XD5t?dg+KF0PXnI+M>dxSY$`h0k{jnw-(mwJ8-;T1Wz`;{(Tt#=}y> z(O*MW?zFxyE6Pc9p#bJ~AadxoE>xl{a!!JHuuUe9G-%=Ywq#QG<}jikI$806hR2vO z?^PBUWuQb_)>+DN*Mz66)y!nS1v1duF+Zbuv+p8Dsa1-KmR)rr@@2We7#%yzM8X2)m~o|NXK&2WQ(TbvkudL*UZ= zjQ0;=BX{l`<}}lWdSASFUqlJ->6{=qtLL{Sr$%w93_`h?D7Gp)fFD9ldwUM8&S9G* z;89VUl!BX4SFdyfNU2f;nGBCC*u)@3fV_~T%;YFYv;j;h4KwuL#2IeA_I!hmjUSAs z|D)#Dq&^vHp4cMot(oqMM!)9dVvEsPKUk-rH_OMKF@*O; zKgplbqG1jC;A|N9p;Bu7xuN35gXWz%;iWxz`^Peiw}pqAC(7LlIx_#zMgGhkljm5q zb_FgbU}z4LsGTuXxDRxJC-64yU{b2yaVO(JQ!DK-+Aa`g7&H|l46Pv#Wj(r+v2mTH zs^R7&b(jBM;S&=F3zaM(jrW@(FN**<6Mg3bKpxVW2wrnRle4!ffEb{}OUH|1S-D=A zo&1;}FOi+zr=xPi!j9PjE!ayD;nrH#2NY~FaOUCvLQLk3Z1rEQ5j$w{e6A-CjMh19 zcGKO;cK@+hj&a7NPbWxWVh2V~`CffA(&ZUt8{vPsu{8&4S0DRT6)ML9Y>=!H3bU-?^--96 z)$I!www=*1*Q>^VbT;eRx7-5Dn*5S>)yAnKUxCdf8yvXi5c$r4wYlDfBNnR*gGc~X zI-+vNswv*B4Js;WeuQ0mw-XOkcl~FXN3Rz9R2!Fo3H!Ypr}?FR-ly7M60tv@V*t=T zz?(cn*?nd3VS0Z_f=oo+3?RMAK0ncIU~M(IBsx{TvE{BRaG(vP?=qNgL`T^HjD7E* z6YV!Gwn;={H-W&E=yEOE9<<=ckj2|#lvSW!*E}|W!v>W}fCqQf`LNX>oWSvfpihry6r8_(KH4P*l@3T zJFWkiOODnHr=#`aRnHAI0lc1mL7JG$7H}Q?VS0lqOemLjj19AVAh{IQYEgPM3?I_-M7(Ow7)|ZX~4hwA=0g< z^=Er)4s#Gdy(&$_0^1gg3mfzsC0wp6ISB690KR04-Y3S0lWbt{~Cgc4)na zMwV9x8Zvl>P5@F&fHl{3)6ZwC5#|FTxc-Jl92lGj?gM!@7;R(-sDbGfT$7@$TU#Pf z{rKgb;Xn~&|>Ua%s z?aEF-p91&^HY_o12?!eMKt_wv%jw_cxmdRt5YdPw`qs~-(0U9AC_tmTB=86TGS7nxoU0hXoGGP$(jMQ>lU7))qPuh z0z<;&Z2>G~Hg*V*t{#!KHDeQK)-_;$Kmu8Av^9GqR?UxPV=xNJ=K!(lRjHaEPBEIK zp}-)tt4k32`4TQh5C~f1fE#cx4I03rpeN!ioI4Dx|JYyv>;1^X)jd|Ic+i_YfXgyx zhRlgg8Z3fPI<#v1l{W;-%M!;N+|vnXSYDivJ$@td{BG$tBEX&hxV}VuLs~fnnJ<7c zo65u&G97_TX@sm$Kufq&@yn;fWe5{hje55ydS2}}tk_+tjz0{x z8JhhlS>Y7sGCJo3OK36dX@?{iYP{5@KPdADWr({d`PfjfNYt_#2Z2b|&h9P28wL}XZbh~hhg>#=huAH}F zq`*G&^QWHnIR~>71@AXsU1cJUHHmP)+>vC29jg4)ua9`Gur~Qk>U+$?SOR9zk9(kt zeL6##cth%yT$2&luhVJ)HhVsSFSPSqZ|ify&eFTME^fo2;lr>~-lPGMRb|rIjQULT z?R>d}_@0WB98zE6-o~hzJ(AzP>>$o3uGSQvk89v~+)fO`Lx zf>BD$D8>7xF;ANy=?mEjPuzt1_RB)f%(&^?DVVh`>muIH{>S3bFs;ZugpMz*x^Ur` z*Mfm`Zk;Y1YQM~Xbl0mhEa&1C)qSClH8ZB0esh?2IO)RW(}=dw8b3G48>z;K45F2@ z&gwQ|lQX+25X+|l#b4iVQOMcaa9x6C`*)XuVQmyF5d0B?bVVg-cm8(cRr*<~Fj5`7 zt{TQACVq2gb3hL$bMbc>pu@`5{!7;H#DW??i(AYp3|0KF9yn#cscKDbkbGQi$bb3G zAHBETM$3Uw5v02&%|AsbO*ib-P$5=4O*8T7uMG7HWp^Q z?B(7Kg15i93>5Jvpvl~XgrFY`nz}9ldc(!E{*!FICC*D3P2z43T!S!4G;h7b90I3zOK`-na><9sBboxTw=1{A@Je@U;)9}9w zpkMEBD@t7gXH4_Itps#j7znIT@Ai)p-EX{XjD+d@wV9AZTkRnCT$zIZSZ<)87L}Ak zFz`#QrLqXs1r-xh_<9~t1N^hUWYaatld#?=9&(WBCJPjWgX5E`jVce`k)6lnl-|n9 z3Xa;Q7ft5EsU8$$_l=XOdhs^c20c&*oCoW0s@AW5XPCA%VCB_}C;$zeAgvvygL!de z(=osLtE!a)$Cd1mZ!`$ zwQg8v3y$M!az^&4*{)-M^Xb+L^59MAn)>KZCKlG~a3$9=_fFm%h3#(3XnoS6Ctijo z(U`MAa0~w<&cFK9*!611LLrWdB|{(P07roQ9#mEf?&vfS2Q=CdUAEbLQ#0+Z&%QOg zF&rwTE4E&DM`dztMyS=)tt#6WY9|x7e@uef;Q22ln-KMhj4tzHSeIve;swdxYZIE? z!PKmrF>vt;HglqqkIlCpFgp){0OdXan03F*=k8>R4bkcq-`X;{*YDWt7Y7utXlPGW z7I!~!3kfRx+lDCpViZtQlO-1x`rY0Ew43<|tiLkFk?U4Q8YT`1{<2zIOvReZgn4e+ zrg??+)QWQxlMasN-sP9_6;Seyu5E$mUFmtnDP}T5ebIISe02t?SwQU_DA?0OGhQNd58)U-8(jybfAgihoQ)_fu})Uzsf4SuLNhQGP5ex9&9*lj+% z#kbDVQlB!lZ|=|K&=FGM@e{L&4K#MZm|BypA%2b2Puo@^J< z`Z!hiAn_qDlD*E_)B<7=p=#@TWfo=|Lp`1BX&a$v1>SCP+1$WH0ia6c`6|Tlgih&_ z7oyJs{4EJ$?u`leBvQ7qyxH%*rjs^&Gkqds>)%<<!Zl-LL_#o5nugh$^fl zL?a|Z2jtQ`@g}S;E1%&TLaKrxhrtschY7dA3-!FwB5RY%Y^IoM>9N^y#ZPQ*c3x#N5_0x^&VJ{PDXoQ$h01vR{ax?~Q{R)r z;d;iWQdij>{k6NYCzL45B4m+kmurnkeHi@yr*7Eh?cI%<2^Cl-r01Y&4+r$@PdYw* zJ5&EyLMVrRq0RoOigaH~9kWr@eaolg_+GdLCxDi_*hhDG=~C3jVmDSYCP{pe^6wz8 zp~ua)!Me`o0T(7nWUy}I1R~d2A)}4Z>>v|{sib>+R?m1wuJiXJ5lymPrpy=*ez_8=ud7 zgaJt3mv60dKrz&xwTpOO(9ViFm+A!?q92$iZHubIAlvyM7^^kw)y)aZagjE z)5$%~#y0*2zey56kh50g!zTji` z?^tySP;{zfq|}NnO{}&-kXE#X!_+v$KCa2NgHNbDb5_ouqW$R;JZ4AadW zo{h9sGvpQVQ>5Cqgy@0bmX=`+zkHYWcG@TP%sC5tiSyyURwFM}3QH$t9wgmeH$j$> zc0`}w<*cp@sO&6%#@KfPeO*_`W5gAoOQ}Bo^NFuyU3&LkuHPUw8AP{jcBIz=Sz1!^ zs^%t#k|WW`y6Ei4sJZI05moP5Z(SLKgS!K*%{Lm>wrF7$jyi^Ne0EqtnWU;Tj`{ojobsL211GL2BA`;GCM@JwUHVYW)D4 z`EL9S*c0=snYZRMVK<1PtO~f4eg;jwQA2#6^#&_=tjFaQog3eFtg6%-t(7lLIq(tW zG!%6J|GGnwQpmnTkk}S0t{r1sEGp+M<}3Gz9>8t5Slg~v2j(DB%2qCbeBc7L!y!7} z^#sxJx%+L1b(fEqR#6k`Y4VeHoU^CJeK|gZ|9(`G!cI_Djd$67&wxh2zS5W$9|gNH z(i*j$LTSvgEWHR%P~QX8Oc0+v*Is&j%+|hI7G0M6lyRB&n)9yP`+5poTH(3Vm) z^|?i|p_yFWW*YlaEo9wgBuWFQ;{T-R;c7ZM&PMl8W4a-bOVrG-efpn*s>ophuI6P% zl|~^YB_>gz`v~*rsrjY&9>1L6AZz7}GU{HH=g1w7M@1G@`Lv>`)r!v1;XnMj560wc;0zrIxrNN{PZz7j z-BI{R1v_@%Ye>ZbFa9lctcny`;nCMKn zIWFeJ5VTtvz6a=G^O6Fuwu0==4drHhmVZm4e|6;yroIZyRo*dWFkDklyx`repI-tp ze8T&t+AxT%BaQvA=AN%B-)$(3aPGQu{UEB(XY&19Ex!^5Oc&^c+sdjX{%?kz+oe z$?1-GzpU!xAfNIFQ3{gEb+x}?E;fDFq6#s=b7RqGXiL6K$$j%+aOf0K3KA_S2p7P< zgv<`u_6|B*+qTzbFgm3JSkhmTs;emSPcD=Q6*~BN#Azi5n%Mre)?&TYm2lNqk7xK0 z-=+-=zaJ0G9YfR~P;mQ9wy3hG)`3~H@GgSWJh;V<6iU_zm zT8=5U1OkRnrTGN$bn!X!VZxvOz2!$2IusRY``cOB2^sLK{tC+;cSOks`4)w?k1jxT zHp(a=kTy!uFu00Bs3vyg*a3FHya(5J)8-TtL}go%yTfHu&c0$?^==iw&Js11f!Mb2 zeED{|DeYl>Lu<^g^$By<8;%Z>Qydy*o~hgJD<&lpr)xY{%T~wW$gMW)R0GBQ*2AT1 zJ^K&$3ahJp74jpAzW!kDd|)c8su3gA0QpX=Zreph%AhQw!;}c}5InR6jECw-jJArnmHBAPXNG$@W7J&F zk$DRqrxHP#kC1gq4@W(HBZRC+Xu%)k9+=nGF^4{oGY5jcxIR+{JYctTg0-VdAz?gV zWPeU#*baDPzn%t_&xj<{!`_)o_0q2SR8hjfnIK07mEkx5RK_`Fel0e5=-&Z8esCsPS-&9_4$t?FP=_M{o;A_|s-MZg8C6^8=#6 zyy=czZJoJvQG+v&r5_!C&qq(>{X=j+p&AD!jaxR<4m)U+wZC9QHI(N1Fy#2uw`)yY zm_kWD{?&@cb^Rlg;cp(SZIaDdUvw;rhlfu3Z0P#cO{sLMp1424AWUqJ1Fz2YPyk10 z*w{$nO`_KQW9i93S=W`)cGmCz{PGMOa&j-}0cgLWkG6#A3FUT`R%WdO0FlQJg=FlC>oy4oE%Is@zicz=5(>%^ ze#(H8@K>!oLDxbTSM_^%5b$=ni;)1R)||SI7kGJkMDViOY0B>ay?()veB2--x>U%V zcd0-*dNsHXXB|yY^q1W+HVD+M@|Ax%f+G9kong&z(33LDYG;QDpD!cNvavCQ$4|ii z&lf#UY2AKZl-enA_BKhos@42FOsCA`TxaFW=C*8rT$P&F;lUdKLxWaU;fi^aL2C4Etg3I=K_Xpq! zKQ>gkSa0?S#+%_Z9@O_;`10Os^IqTCb*DQrSXXN@gES8$oG&dwSH?YE#rk)cufqP2 zhSmoR$U_|WdchM$uh#FNP{=>0%syN?ZBdd~Q@{7E=lem^*#}n@5|2GTq9!Vp()bqBFuRU#6N%YliE z9X}{rNDglF)8sOgBBav$TE4Fgu3D(@n9G^Vpju=C?DIa)oxC7&Dzw7rFO=t`TV(r=a56fx;48)}2dZlI8xUU8Qjr0MN$9YoA!!r%Af)VB6zgE&?kGn?&ib!mP| ziE&y9dlJSWd+W!4DHn^0Q(4|$9|!MwG&j~ZG+AzenC##%h5`y=k>$sE${_%DHZNJE0ShB^hF) z7cn0-E^zsVY$j3-Ac}^1e&1z;3>q9`2GEFkz-kTAtoyl8OOub8aWR65KFwvN#Z$%= zB<+;#tcsgrf7&tCOW#}L`%{WCdz%p%*NQjA!&0`*G$d+;V+;i?9ZImC)$q0t4VJ37 zD2&e`iRk+K%OJI%+DVwmpAWQX`99g-KOxuOz3A4{BU9~trMk!qv$j-TgAs{u{JG^0 zK+Ue$`-UVsTPl>>wOkdjn*19Yj@ImUnJZsHKR+}U1JsiHZ;|x9L~Z~BV%yMUwxx0c ze|ZS~nJw1%0KLSNX*vL){uh?4_R7GPzR95PkPX#^xgdcC3V)Zm0Y5|fO3xA0tMp?| zcRzq>T7xk7U;(VeVe}L90v7pL3m`A%;9CF!|Lm%Mo5~iYprdhX4wpt|{DsAP5$V7~ z&~J51&0hwHK|rJNDlp<88if`=vZTBps1v+17(SQIG$>UTl)Crn<@nVA@z)&w{dpO` z-%lXay2f>ed(v-TS(mtd#L}$*W|(LucVE9rXb|jjW;&APBstcY<$49W_semv#Ku2I z8lw-d*0BW`tX>;5Q~Ai4NEV{aTOsF851dX_KG1cuJ}NQLk*>-KW6`7v!_O zi{3L^iXtN0vf87~$^I_?1@>>6FW%|=D{01l;=ef6#H(FHEDsYTZnDfgJiGXxk>fuW z=S%O>_hLtHiw#VkIlYN`@zbUy8r)GKi!K+BiGV;|3b1bGE?XH$3)a^+&o;+r3h&=R zsQ1VkzdXk)$IA0K&jUow1dQ6Cwp)!=vSj~#$iY@LOuzpy<)so3lEIW-w|QywrUTpD zSsIrMgkg21)l8ETx{GL)^C4cus zlT=v$Tr&;}m}KmVraD+~XlLo6Br@)A2juQ}pj7VI+GNyDZMXRNl*ciLa9*!ep-FH# z3{%k3M=|yj9MhX-m0w-oXKDQPlXe3s+UG(%&_e^-WA`=VRIXF=X=pPG34E?cKwMc->KKbJ$gpI!qP-9tz;|MrsBvUXtP{ZG6X z&lmWGQ_`TQm$3pgXV!uT^>GnC`@tx_4*WQ(`1`47P@#!AnmD zXBJD%I`bGgiMaOLLYMth+kJXKP&T6ox{%d}&EP?`m?-b9A-O6fM(Y$_bZ-FIw z!R?d@o6Kh&aS36ngOhu*XByci;w9jp*RfF1GUwVNI<3t9{v8+hz3=a@oAGOfv0QjF zT(Osd&8F`{e_XVbS<8Pja^w5jsT+4r4(j-!<*WkDWq^0h`Sg+9V#SZhXtq?yKNbdK zA0z#1dr&_IXJu-U8ZPTFocRfqNpG^k$MpWeR z5WomdZXKXLGLrZ2Ss1_>7(MKRnp1{>T{F)0IkU;uOhiFhnri$aD^<)!|PRy{Yj za@AmlHpz5jgp^shju*ccK>M`~>NQ70(Ez)21TwSS1!C+Cu4L}bi+(6Q>R;0qZ>J+f z^z)m<;x_=@;y4l8H{`_BgO<;w!n^fHfpMTeKqn#7h$IZ)tHfHb=n{nzZ9~^+_7rA| z0UEli+rrQ^>rXpN$svVFP`iCVoIz9y0@(M0!WA~Q@*!X_0RYs2J7;W*S>J!N=avkg z=u{+c>?a@(&heuQxAfRt;Q7({)}_jhbUwW{ow>hZ|5z?C{-+j82M!d#d;k|)s`gS% z4V1K7@au@>I=-etL(h=uRMUXeQ669fA&-vU6NN8TYZb#&(QldqCd_7NWJ3k<)Q^-@?($v6oPnz&yLVv05IlZE zb8AWe@2Mlk>@sg1AO!ejB23g_Bos^j{y%%#NU_Lh0&3Iq??0Ae z&O>-O&RgR6iL@rbV^ z3NzNAcfB+jiLA3%^_L3#NrOOzr`-ty6tRHA!lW1z<=TxW(<#7xKQ{tM+2_JQSselo z!>yDhtXa~9&Hq$54E!X-X!g$%(wV)={xIcf$X$VZ zH!RDZTz3)5lIev!@z^Koer@;j#!a?CP}bzp(!O3=v>yzhZsOUypy@k|bqxM5{QBFA zVpgqD2BMSO5^wVILZcsxl|P>&oV2}% z$Wh6S`DIqQ03t>@*XuF&4mvlklpeRln!fXYBwcwt)Boewr#s1~3zZ`w6(i-!nM#rz zU9K4wa;%ZuTegl*DrX4gEY}h<#|}2EQn_LnTQ)YiX6CjzX4dcR`+M|9j~;q#^V;k6 zdcR)J(}D6*xGec_q3BtW;@*~{L(g`e+Y*|RkW_0Hn&il*-Z2pFU1~{lO}usFwOOL= z{`T81Z!#f83&UUHWULQXOiQj580|#Cf>qLdYl};#=X3y;bEs(UQ#dOrJiP{ zbVsCi^3fF3Yl|!q>U+@=5EIIpljE%7dFwIFQ%G6B6SdclBDU%@`YXl0&mBh;Rko_% zP;1iH>26hgI+A*FZ=6|B!e+I?f65b#wr%-$$H-bJ6~&*QKpL&=I^^}TEhk)RXryKn zpQhEh%~h`bI!m-=X%oV19pC!@#=Za*wx0l&WM*2mruw7vcZO}wmwPL z8RwMG?Xyl%xA93)cOIxXBixs~HhPlg}S#%(~ zY3qEbt=VgRI560_p*IDij!)NRf?4s+B-_FikNSTN8VYd+Iwq!`lT=47x4^tCBsrsK z7E>-@HO?|3BUjWK=bYx)4F!DVU2C^FFDnelEil1%M$sB1DR)Fw-3X~tAAhR~PiUwP zpxMzMo2u^%kk@OHeRVt!L8yDy_gOQnmq>(aw&HL>gEx6Z>qmw6bC5?SuswEvA~_K6 z8V<=u=~I--cN(}A!wUHM2c~0|=;zdPoJi>@AB`I}4Jm_o@)ie8D+D5nib8b8N`>j_A!}Mr60LMd}8`jg8$4o zKBHT|MY{s?QI+XdJ~fTeTzK2APu#b!$L>rP22{}zj3kqh(C+;)5qx}oIb~}pZ_d+g z1-`W0RN207<@v21VM^%m%57htD+2JRa-2qOrAmFaWABFuy0GI66S{8Wjx+odzT;A) zjk#CD(oN49mi_>KhT!NUk`Gr2527tMx@$>bL2K{w4$OP~I3Zj=>sZ+jP>a zlVs(<($OI*Ol=HMylih4Q^33*rxouM8xb{P8((jC`vh$aR+Je&BRNGC33t>Dst7S&hj5rovl z)aedNdQ$Xb-=SsS*gyGAc4vsOk8Mlz^FZ{wuSb)NVL`fPm&03wDt@Wl&-jB|LrD+t zmQlY8&guA>;1)rT+L#DVfMs}i-w9@W%xW5=#iP5Qhl;Rc$AHSlS6S)kAmX|Fm3RGa zlNoYZ$5VDQeH@WNW}uLQOGclPWUkVtNrd=Mfjbz6lUX@ST^`c+@ih7Nr)PfQ3j+v3 z8k-WMZ?6k-fwa;)+#o0|FLN4vM&#zY$f)a9^?$M4w0^4t&}k@3f-oWXme1WfcLfv% zwhK6NX1iB4%UX{9`kK#UD*UgM$r^T*xSCRu`Fw2})wFPY-%3cK9w*8{(#AI89Hu0A zSCgM!UVdN|Qve8KgVp5s5F(`2*RJ1YhS_K~^mwg;7(LQ z>)b7bTwZkRE+Rs%_6emSK}vFVUej-h^v32tw(8LZvB#`CpO;-#&u%)5XXk^eUj4`F znKmdSySuLi%!W%A81HvIw1XUm;kgKR5z`#+jQD|z`p*1Rl_Z_LE`Rmej6%9TMq_HG z=$S&L6uF_YS664cKJ#}4;7Yb@@U)gUs%{`#vha8TndlOZy42%k9@Zc2hvaz`5XbZK z5Re8pBx3>|X}oC%^YOwDn19N2YJf04yLK#j zO^JRp9ioANH-Ly7Zhxdzq@N~~Q_Ux{fF%(8k)OAJ{Uh?&W9^zcLKi-~wr>5qb3C@$ zuz(c#YM%_Vv-H7Xerp`W5R9F&lbZ9eIt#Y`WNnTUMcdY-E8Gfb1vlVGjd5%Q1q_Wb zNDQELn=UmB7Q;N(4ZX6Up7OU580U2Zr3-4&!?XYLvW(-TYfI7`x&%jH$EXfz*L&4- zu|YvW;X4biqnYP@YV!_Qg|4HI6S5#3n1ktW?{UgtL?2u=B)A}Gl3tfhhKucWveeTn zM1(cnpG*2-9O)Lq8;C`5co8q<3Mmg$+HPuPFeae)*h`V?;=HvNSij#_ushp^ZiCC;qGc7NFk8T0<;O zWdMQhF4Gu~I$maoSHdKid_UY!1lP#R#q!fG2dnl5Rrtl+bm|6am^1)JrH=qjGsu@; zZgTwk)5B8RRp4-r1@jkE3R7vIf%bQ7h2VYFYfGVbnqQ`sp#0UH#$K2K@ zzXE3P@pbw%jGfKCI(V}o-)_+$Y#}|948_*~R9c#2V^;JD_OB7YTAG=Qf0}|pw6j(j z6ucgJJ&8_r>b(?Vqqq;kZw<>hlN~Lty>A4+jE>xz+nKrB)_`dnZ4Q;E!S<2ufbAvC zB~oyF(yq*;pj$lw;r9}p=hNFOEr>x(yhCDg7ms7@yFxQzM5Jx``3|2B_rP0DG=q0AkZxD)(3 z2q~P^8)8gI`*1s3>V@|%had6R=XYN}I^Y#}Q4aU|@JY>02R8K<>S}Ai-txcLFPTCs2j~x4S<`0Z2}JVL?{JukZJIp|$B!|jfBQM>im!J4C()C0p7!UtYX>3M*I=w%^!8eh z$E%~=YUC_)Pt{Y#HVC7LnZdM3<_tg54?`mRpEOUq+NuGId60^LVj%>-_pGQySjC6l zq{Nc<8Dl#wf-2flz!xfQf)AVx>|tp`p=ZHOij`O1TuAw`OFeLs0Xs}y%cS~{3N4^e zUz$Bi24xTOt?FtAB_+!AwfQqI%{50CPm02JTGYK)Tfj@Z?AkK^c5$PcXn!~oQS?zI^VMaaI|yb1c_pAg~ki*RC8;M)WO3LlUt;J%NGoEvM1$ZhD8a9t>GMqm}2?nQDa6VF^kb2UXc|)47 z!KV*20r%u-7h699(e8EAF%_Jn*^5p0orcRZW5CdQJSur&UjRY$fY=|f-0#t~&oVab z^}gd-O2ObKKWUdGU{{{~xOL=%WX0#9Y>PE5!5jHFD71a2HzA|*Zn)(El3R2Tz>owr zI#wk6(r5lkMPl=)Gp9E%%W&YV1=&%KgFHB8d{5&IjsQ5(3I z(s-hGy^!6T z!NQIKL74xnUB!)Uy^0fW$DA-oXLFp+H50P%6@ z;AN2}o8=`@!1~G5?9>VN(F)kJJ#GJ{(CCwgz~KA7zR8yG@#*dn+<&XF=PEStxVj?~ z#6>V5o6n3Pkk!(ImZmxFz4@EeuQ?9 zy*^dr$M-akcJ1n2?V`R$tcaKn;FC=eK-y9`h%;zq(3l%6lVI4x1Xp`d<@XIIYE^Xlf8xj6Qp8zD1%2mQV)a|05~-;*Z}D7|2)+&k z{Yl7gx(d?(PRNpq{wwwA&SL5)ekE=P)nUcrow*5eGiyO3b@4}^niMElhI|u&)^a?>0ANf;6W75mO%sX6aA$-8LQDHI`o7e(yNs+nJY}N(RVaP;S-T zr(Xgtf7^FaR0jh0CXh|fR<$eo`&@=mAT;tvAoeOzpV#<^)NCM@0(99o44M03^MwT`ZE@mVa0eoM_|ty4SScRy`Aj z-~VgVaa{wB&#`n5ywqG3L6&!Vp`?e67A}=6!jFhHMf>dNqqja!kJ)CqD?!>8X ztKdT(3%AkQdSd89n)Mrt2jzjGIa1qB_KV&yd@|eqO6C5<|C)Z|6TX|gOY1@W-J?@` zKf2P*n;trSj0{bP+YyuRl{xgP8ufkMmdb6J(c>jJT?8iq4Smft{!Xu>MkxMg{irj`R`le<;de-pv zRk1PPB1_xw52j3~CFNeWRPNpIvY+a8`1ji^mn=08Xpw9$^Glqt!icfOQMK`8YV z^-RtlHB8$Ua#&}7P{ftmUF`ew&wd@cN;t3AK2Bmd6zfL`6m>}3R(-d34wu-d$M^?eK{+BH zJb-p9ApjPQ!uY+hAix`_$%xHc<@wV(zHGjRWj?qBVe|1v2dfW^00} z^Hhf%xNryv@f%&{uOvSn-Lqpx*5UWh6B-+C&X-F0Sciv~Lx3i}x$*ZPU|hwXk@Q~4lNn4Pwg*|o<6;Y|}-dgh@U0H0IEH?G*y z)AUiauww%UMXKY0ujx4nmA5*wC@ic4Aqz$$o4sl13QHYR!RS3;2qmPHHe=$*lWWXaeB&}C4DT@Yn7L~5pjlFO}=i#1Ee$u%~bMwV!u8mOQ^9Ya^ zU)ab>?3SPa4&~Bs&)OEi3>{;>$Xo5QyD+oVyt3yd_0y+g%%wFoD7 z98%x{KVGYd;jKmFpqdT~fzH3(>v?BP0r>_8Fuh5luz-^Nql$QpvyR@LOadG@S=S^f z|09m_mlE^jfK11*6=UVR_kj5jZOK(BMm-#m1p04kW~ewc^WLBw97{F+N}X|6p>EFS zHCJ4gB{(t^eN;b&(v zVsv8*2gYZU03Zv@Lt4yhEio#v5BWv0%c^vGzRL6D z2Y%R)r?bx`)=}uCW?=SMlb^rS4#|mm-^+cX;5k@z`^)6Pz9ieV^;o97aCtinj-)Uq zZ*T8XSrk_RRPhH37s>{&IpUnsWBik+?tAI{Ilp@c&r=U+pI54x?t7IHeQ@mF%SSrD zM_>hKy1y3~zh`{7pLj64uRrNg^!c?Ezxl7c{CQwT<~hRePMokz4rQpU-%Wbgd~NS} zlvlD)a&IvY;az7*RTqVDHe=7rymqyDu+;YBKc`w1i-}ffnL);t&VMZY;(T^Lk<~c1 zb@YTgz%R>+Deb~DPnY@0q14H3=Db&4?K#V06M+~WPCc+A>tB^H1?*)XF?L-!`bXJ7iJn z!(#0A0SqlIEkUrc?yH%N9yR!+ z7yIj}_T8TiNoR7LfEo0hBiY{mOD^_FElpPnToyr_kycuckg^S0Ba9W(e8OFSx7OG6 zd$6o_DZSy19(8tKrcuSyi;P(r%Rdxs%Q`Tro<+Jz-(Roe2Hb4~LIGcfBWeE2ayN3z z&kkky_aBebDl>Yc{%sQ?VDq(O8Lo2v-e**Xy-EPh-do!VfH;g0Z=+$weaJGAz|wmz z8Z0@M8NBj5Cz!ZSv*1o5qpvJ2{v^oXS2a;+{8~Pi?%CaKRtB@a(Bcz&qAfmpDVr>V z@zu+spHQomFd-6w2p$Xs^@YxJbn5^%Sy)1~-(6M)jz97mRx#|a`6{uSa74A+C+X5d z_jAWGj@#bJJ08W2y_6vzHK^Edm?EHfH95WkT=5ZVdv0G4w(kBSxEH1PkMZrz>mPnp z+PDMz!y*u-@XrgGZ+XBI*a1GYO`^u{5^MsiX$nJty-T>992*TQNg8Imsb(FLyHcDO zXRG+?qE?~qDJ!XGJC5eNn_6ySI(LZq=uwo4QQg;x4IBK* zW*|R8)nav-n|E$@R!H^4NsGjk8`HRMD>Kh~t8f1Gu61&=vpIe8YOu<@WA7jabvt{rB?F>dn7WQ1HM7QsVa`Qc-kvG@kJKz$b9H z+r`syXKwIDrxzybMIIGvd~EJ41}9v%FI&HPy9+NP-|Q|U{Fxb9!J>wnWra=qYUGjk zU(Om!==v_dE+;uRB`m_-HhdJ|F3hdH=bfdHYFlbm*3W{3O-LO04K$=T+1}n1_?HO# zL!YbdG8@&e!JNj}v z%Cqx+w-7U&@+Z=Olq!Q@!jd&ggkH_?YMM@dzL({?5YslO`Ck49uRvHmU+TB25 zFt1MXTyfb+fPvZXNbk%X$=&buF8ZOD9jXNL@+GXO4o~X!`tBHVx5O?B-U{rRlZ_x} zOxcfO5`9`gsCavr^rBd^zht;R4VT9FeAV=^yLRH{Kb1g`pO%Uo0gVovXHyMRhJF&M zuY}TTQ4k$mgT+WI^hj)N%F)+8wQ)bS%3fuFjzM437fga8T@teh)f5tTDT}j+7w&tJ zTinP4($dkK<%ZmsQQ1G%GEaBXG_R;(%8v8cR2bk(lyxk34rq+qJg_mr)ub z1j{fe=a=~UM`#-BH~&Tpr(ZVc7HG7KX_&0OACvq2k^dSUy!9Oh(`9ebQSO^D{h-_( z8Xpb%SlbF!ZiIx*_FFi4;dOfp!`uz5#)OA>5`93%1RTK`B zK7uf{4GOA%pLx9p9d~Z(N+lr5nm|?k$q3jQo7XWI*bvU+qA%AAC}+XXh&;4s+w5l| z3^(;6%`>ZWoZXHS4VRnH^Jo+-Qpd zH4PkI0LNH%&Qeh==kN`9cXL!*JBfvUzm*dg-eG|lG~;LtX4i#9IYTtpF7JGE1j>4? zAFWR&=i~cZkGz^K&Rl-V;!ql&8)KG~Ct8b0U($k->nw2zk$agFSz@9b6O>~(^`^=D4|F1|eK~81c>o%p z5t*k1I(onUttb0@Yj6xk-0s5Hh#@@|bnB7v&{<4c1BPi5yrM(G1zW~ux_65&7P@;` z%YBsLK2^t8QfO!z8l3I8i?8Q-t@NM3s;@E~Z~sAz#V#EQIsMG;RS)xLUumct8fMPN z&DLk+n)1+g;of5;0NQBxVJv$A_Smk7Oe}DQy4(JNzn8T#x+Kc%V*=G?yl))R+h>|xI}tiUH0VKkR0)%NH5FN_N?@^rM_??0_+7m z6yhOP;?s}yN*l(8US97~%V@elFRC+SfTBMI8Zs6F6QhHb1{)d%zuE4|h9Lqq>hDK7v@+)uj_6V8I1ouw4blpuM|P14_}=Vz^G^=h8{Ae$&C39IzhVYxD1@ znHj^HXIJh=hD1g`Aov7)Q-wk!=FFBWSscU6V?Paaw^76Wu>Nn}71NIOs`h^W)jJ@c z8MMZtdZyJlVqS-Eg{uLhB-8LjTC&~1LfXd;`S`S{4rSt>!J`A~SqptzNOyY#y?%Mj z@C5s%8w;J5c-5#>VR0|`Mrwbe_>5!mI=csfE+q3Mkb^)!Q#@i2s2c&!o))Am%ir?> zfU_(4m8$E#=Z2y)fhQJ##IWW_X@%~)hm(r6T~wIv12sw}K$q0}>7u&o`Gf1_CRQCW z2RR6o3nXLKp~_)~9=XwLOK)Jed!`1mUl&cB^=Q7Yd#6w57t{PF(I}P>9|QG}DV;pS z4D>XiF9u2u&c*QAta#&(3pz6}-QDbK4=)>h-2=fC;+L;?2khW?X!K1}R<7DLurq50 zC#S{*V@X89%<`hij<9w_wr#!da2Z*~ooZM6qWnRRYZ!K0{SxC!4{P#z85*pg z$$h1o=2;zob3PXHFv~esjZArI-*b%6Q$E%+Vw)68Jp7+TrHa^VkbD5jFBv?ZeQzlX z$386S&e+kBE9m|-!HnzUl`%XC%eilF;Fla2zm-2Pz-=IMaV*e-G#JYo3*y}Tw) zKAskSFfThmZ33WjHs9!-!OkA9eLb2Qa~>pQ{Khpm(1LWv82W=}Sl^h%Kk#o!QyDca zsRI{vGHM#wBsVvBKp7-^+$G{{Lmvh|ILN6Wdy2}ed8o4&WEDIvddtUU`O#oLiMaK9 z2s>$CI)0*H5hPyU!@k|`?fW=r55QIgymb!{#q!I{4cX!V_`e>djbJYTJZ@cvhAS}# znNyFMp^x(zs6UPEXhTMyR=*6mHE>`b^hRg-iH&iBI@U6-kN1a)ZB%kVCFR*W@%UG{|+>He{NE{G90Dil%yXA zZV6*J4kp|aGty}&4McPVCHyA)Z9c*>&BYV`K-{-(_U`HO6VpfMjlYgmZ9b|PK}FUw zp@7C0IQf0t9t{YmW&3ewqMCl_4OkC#$ju+Cb@kkVHM1@Iti8lm=#nrFen0C$eRrQ8 ztjr!~T(0Ok zz(|J(EZB^2m9k{1D-Bdt^0mEB!!@ZzlM)(3{u>y0)u+t3^0K8h9A)H` zVTi|Nm<@XH;+9EXMl3OBj0J5-4Px72%cdyiF)qP>E)nLH8mmHwvzvm81D1}>EG@X* z=$pNq8(!jpx)V@soDN(;Zqv$#dcuBdmv=O#D8Da(;n&pK60!qZL7wdlJIdu5A${u8 zTI=G23~WPIglDN67z)x3Q&y(C-JOqo-9ta3sayFcep`Dq6Q~tn0e$U z;z#$?veECmb3e)*NQoWa0{36bY*Mi#F^SNyo>{DseQf>@EwBwGFC&;*Aep_{q>*Ji zni}9*Ut`*?RW)v_{-~3y^8J^sW{IQK4_NTR8Q=o3nx^*;bIT4RQ#;cux3F!$Dho2S zFK#*A=KbwStecd!>*}2_K)m)$PVf2Qhi%vU>!|OxZBq2T2JVlEoOwL=dFzIdY+Uy} zqd#ED1cEQA0?jf8)=GZ7QEMRyWyzibCYQy6&sb=88->4`ks&Esy+`jZaLguG{rMv29SYB7F04AMBuBnT) zl}*=7gPPsFn{`sl;D(O<@qDd5pffi+I*?N0&ucri6cGah^1qRhW=khvLv=4a3`-V1 zDBBmd?%J8ZNi`sEp!MO0Ah(`@%L&Dg<7Xmej246v3~!~-6vhzIB(fF5+3_q#!A*r~ zM|}raQGB4@g{#u9&@RxTEvGM$_b0w6wBFl#ti_+cyhvGvEyw`KJ{CNA{@cmt`YPmy z+1%G`gMBTuy^>d-Q^bY8uDK^JoNx{cIG}Qp&0%mQP^(}Re-yZg9kis<&WSrM(L-PA z&Ss~tS)I#0FMmlF)M8D#_rbSV+TF9yfUu8SM4xfGhx$VRqWCGZ(A|HIe7`0!mQDQNN>e+tpH~a{hVf z(4A_uTk#Qm_tX4qIm)AVx{gg}va?L_h8c_wE9`$##7weu#Nqveto$^8b^9S|Z4`c7D?neTDQgZuKyQ-4x zBCN>REdpzGpPV|UFL%hVDdo80}WjbthO<9knIRC}6J#GhdVZT}AviN66>yl`}{HzDpMO{U`VSi`xoILDK>~ zkE4A$BdKdsm&}|&reG_z^C>T`-?-Y7X$t75{Mqq@Y_EuupNLV->23kP#y-1~8)v~` z6QTVA>f;EWn6z()a^K}3wVDKkcf~nCCvG+`uHHwd01l_?%}ORBKLr&@6@ym11uwZU zI-;;_CLB$&Y~ivF0FhV|vOEALYbJ6x5Yp{HB$UDkpUTbmgoj&Vc|apiP3fnp@UnItI~-4A@K z|68M1v)7?a8Yt^Jx5PtbI}ed@B))x8l3c(Mx(+&^f_gFfh(>}mRzc<5Vsv9sOs zn~3EwvYlfD_0r&KMwxxRKExe;@?P56M?Da#eov74$Q^=V08v51*EasNI)VP%a8;th z{S4q!kMzl26-3n7%7EAOksqdo?_uCAK{c_`^1jAxh&x@|w4Bh&jwBT{Y7`K7epzxT*3H(Apx12mgAq>80(fbxpe|Maxd4&CVtd9oli zS#II<{Z!3XnY`l47cEY)BoI+T*$c#-J-i|sp_NW2hxEMHvHVmoG_Rr37|G3fgT@C? zUMVutyu9B)fe@f5PyQ8QiLK3eLB%Ses1{Z3U+c7 zr^{m{y%SKeY8Jiw+t4EddbuMsL;1p6zBMlrD+adPwtj#ha4)R-&-h z4_Jh&Njdq!jJ*GWOw}4;?Mu0q%qrC;R7`Dy7`gPUA@w`cK@BF-g5Z zQvYMS`Sy`!;4G%h$=y;LCyPc(HLG}4M60~!^&W2`hKXaO_&-B|b--W!uQr}cKt2IJ z2*&})soL^C)Y`G$36*b=&*cezoPlj{hQo_F+!E8&km>vfNbiKCf83R(EIne*O__%O zJh_4Ob;SaM{NckgKPM&zFlerZGXDSZ_j_aTMU|V9M)KZk@&wHvN0J@lVAc#NmpTvZ+z9g9^B+!gmR-~u*zzKiV`lrCE2U!)=GR?BcB2`*)%`ks4 zu~GgpWfcBciHtrceqs*iCV2Ddlv>$w!V@Bo1$>b!A+7(Ts30wsLopj&V&*RuMrd0i z3MGn}|8mV^%pEM=Q^y1&YA-j+Fvo#aG;XXsSo4&YM$31o_xms!`5~54ysl?8E8tRA z1j}5C$9{lALpALW<_qK%1g*SQQH;sM9nFg$GWTAVYW^_eNPLX6c=sXW`J5$pu0TS0 zbd2pNT2)a+C_Anya+N6~^m^|#7r-q+`4bQ8c&n(aQ}NVt_F@1|*%*W;jOI)mOLw|> zrLNoXIAS30H{Bs7O4y7>=6i$-hu@*>L_qB<==_D%YQ_8NrWfV5v}(@Ky!Tv6nKjzk zqEc)5M0dq<&XPK>ssL~%5=-if}YnIBZhp(X5AnfoB^ z{9Vgz>dJx>=?-@PzI}>8#`luG-9LXQ%XoD4LXfH~pxiP9St?*CIBRlU8>iLX`tq*OKa~@i$Epj=V(L%%yk0IcOXK{MF z1F~KqG`qeYvB}nao24=^5tT@5*MZNIzxq^U1w_P+rC!Nj;$>(?jRAF49cvD@idA(s zw*RgurHuGCscA{IO+MPu@>OahJdYwCw*M=|GZb%Iql{<)6bM2Rl)3)?f0mlNa|R8< z#*)O~(*E_5;R9JwI^}Ks95bs%TI41z#f%$MUO4v0ye2Vs0+>4!Ey8-~ zuzrgpWBS(hQDa=| zJwB<&R%eK8$hgfZN5(XSO^>T22l2-k-B1xj_VbG4&AQibwaMy)_l~)v15M-V?*>ZP z4-5S7Mc?(_-QB+5jdP)#Xow5YpowuTasI%!8QsOj^+;YFl}mYyNbpOhB|T>X4`g63 zid2sZ$|iGD5}WcIY**(QvPl+B{G9G}r@$bKaj27My+gxeiIaKN(BGK;ae)`V^s zEfB?eR+nR5K7wybnToRD7~M^C6p6oX>{|m7L&lpG0anDZdGjZQLz4)p$4wswgi9mh z#TCgp;NjaiB-sf1d?!>(<4wYe#^RUig3SrftV%ZJGx%M8nwF&_QfpmmmwAaD7(C}! z&$p`I5T%^W`}W?MYJaiK&bR{?@&rS4h*rv}0}@AGdSOR^gKA8EdwaXM(dEQu2|Q|QHh z#0EGbioW`7K>}KFz@a>Rb_+p4qwvNAF0+uo03Q^L&pb0>o5SH1`37N`F2QO>O)fCs z$dE@<9RV=tQuZrvJ?WPznz2e2P*pSez40vjtK;->dA%HKrEe|DY}*fSGYGSsMM^qu z^|h&~fKO}{=Von$--R)Pw_gpT{o#Y$#XO*=YjASW@$Npz-~fy5Sc?9QUq54Km%CRm zF@;qcr9fpaI^5Zl7VS^f7Q3^VWyO94j@D6Rw#3D;6go&tH-a6B=SVkPOJX9;XyXTvF%hhZHBxU2__=)UIfhV|8AjZN8QEp>L`U8KFz+C56ND; z6R>#X6O3Vf>mT|6^|O12Ms>Ts{7qN=uKtS#ZzD-@{nQ$Vo@zS`j>Pc9+E10|iG;;Q zM}95?j&8qjG?e*QsyKamjIA~wTUK$E)bPt$*?RfCa%sue2QZ9x-(M*>^Tp40zh~pW z__AhMPuC962@BCRJiW{G!;$?rMh@VnKO-RrMJ!k_C*o2OE2tfEc#%`W;1C`DvvG#p zU>>B+9+Hm-U4E= zp1ag_ghWHztni7jo}O_tdVqErNv$BTW3=^P`NwGif3W8r9U+ZwsfxIhx;5`IO$9bO zHz{`|gM{dlK<7Q3!4ic3vZkY>PF{or!|j^LH+dWU*~{9*%St*x`3x@He`fU6=WHe9 z4xgRsnWuNCgM^jOVCOR)s!aaB-x_wQzn zbg|*0hddcbrF2>BhkHS6d@@MW=zLiHjAUBrKYLB5>}$%$=ssjzH{RR<>K}e+dMwL6 z_(tXH`@MI2*j^yr8QgE7v`z2px>$De+STt6svuqsdV!3%W(en;SsCB-i#k;Al8ueLG zKu-rE$_HiA$sT0hysl8j$JVK6&W3s|cm|i=NVBsy=OGmd98n|v?1#o4kWP8MHR7X{ zKI!RWUWOG2z@nZh7<>&0I9*TMC--dJE?4X7%WK4atjUO*?OIlWU4bC>K{(NxVQV>8Q$rO@JjVE3)ud?2c$>EVf7fl`@D#3pY0$`j0h3%( zw4N(58sHH#O)RIDM=V$D@Es2H=3DbYlp)Rm*Dv}CYB9bQk1zV_M;ulz!+_bpi<@7C z`(wRs6QYLtFs$44gsMCb^9C)xyJBg8LYpq6921eA7e^;#9q%SqeWnE_tY+7wC8Xl9 zk<~DRS@R|MM082<(9ST#Nj9~~D653{C%%}5FWagAX#_VnjTsw2?p)22YWMH!cRJ!4MWpmhpA1%kqd z?Jqjnv52P_Zl)Ya2KE+^FNt-mxu^T!^>zni$F$uxZ4E_ST<^*8VYlzM%!gN~?ESO&&AN6nCK?jY0&*++jOPd}=2{0G8E&sgru;E^r1S9A!{xRK|rF?yt`e|^j*74;acXBXHe*uB@YOo(H?zYw#&7&X*!I8li|KT{C zZVuK?!S}7R_TDZ0p_t}j`|pKs3p4s#Q@3}nLGK)f;#_hww9f8kz$kSF3yi0)Vjv1CAHgSnEHQQ$eixV zj--7h(X3b22Q6aY;oG@olf<=YQ9w1>)awOX3up+8nwRO!`~aOs^F}MOhhe8=9Gmj4 zMbgh!X4~y|{d&N#N}UnW8emRL3pw2Wk7@ET*U}@+8PkxN+~S)4ejsTvjvs+SSIus3 zZVD$j*0}OQXWmlPd;axYS{}W6vSA=MCtK(oIQZLkjSSAMb9+#LORUFsEZ8+RUQp9W zH>|nx{e<<_cU7hryw^tG7(Q`$SiAemVSqt+4VP$3yeFYh$cqv!&$R zALvFLP0}Eda0@OsvY3YC{#D3Sy$~)$X>{)tVKc=B<*D6a;Glb`?*$-qL~(T9VM`r` z{i%mLw2ZRLqVx5BHf^!l93h@}^wL-nEv*SP9lh#c%aVWM$y>B515Tc*>$WgN4L{3p@j_NildTFQYjZqCtPwG%k<&#EBY(+*2D4%@03R0*@mlm5Uv+GoOxT2^)?TS zTC{^eIy9V%3Kd#Q3ZY1d0bDJA4#IvNP>QP=#5eNYx}@hk>FmqldrjCySN9e>f!uAU zL256?or3;5L;i7d915KzOg3059bw(`_L==FCBt8LXGT|}UJ>d4N7J{*GyOgO>nf>4 zN$%ZH30=tDy1ZQ%3%OsGC}vph_wD_rDAy3mZMokq*SRm(g)|JyT;?v9vAND{>-XyO zef<8Z9zALgJFj!j>zwD+;vB5zrq-+!s2`=nIp zfvKU)z7`vW>69j|ZvGBz_7c3=Yh|bR+^jD7a+NUT+Svz}!fxwcoHhqA7vRI03G7fx zaj{1o^G*D2(|?HDQGr>D774NQ<0IcbXS9xeQv96$HlY*gVt&u|k5+ z(4iY_q?GZ}uZg=o=kV8F=BDu&&%Jt-|1!#Q;`oE#ufP4rch>>K=R#wZ7l0OiSdIH%oqp!}JlKvfj1f?a^$+7Mc|0u)ucH<2j+Ha(V7j zczA}M{!uZSC-KOK;3E%C@3Dg73v{7w62Ws~PJFATzbRvLbAGurSu?uOyV(Ins#k~Q zkcD2Fdc%BmbMQFKd~;M>e&xEe)Z_Y4llzh1ZC+v1^b=>?o;S6(NLlG9!wN&?$mBvs zV7hV1Z>+3z8rB_%Y}qDH>4w8a%9x{ts8U-z;uJZVI~y^#7HrJk^; z%zer6M4?QKyv=_xDyN&ct{({;U*1A$?97cL?A6c)FI=7gjX^6Y<``jkjsg%D0E+n* z=t$I<-vi7hA%6iCnx0GghA!T+UKIeT-6rGr%ypJZl|LPST>}UxTP(}Jd_y)nvQ#!W z$guct5#gG_hwxCEX5&2DMY?@y0R1G1!ehG&;68?XnH9NE| zD+n3lO%Vq{@I&zgI*@n9@}yuiyj0l_=h5FexWjJp!Tf~PEbhl~ODvkp)l>jatC-!P zGInjaj{+BFw$3L4sMQ~?xAZnVj(fb4yUv?Zh$^tk4A;s4%ryWAuC`5BhWte( zhtd8i>E|P0=L6rI_qhW~x_L}R>YA>J)TMd;1^U4^Jo+!t{Jt&=r68ZlaRvlal@QiB z(cKnyi^saW)^U~=7a4s-l1yei@;OL7=OI0n+bm`I;NxI%eE>rwN ztcRtr-HlVEUBAHzAg4m58P6NWQDpB{6hHKS24^YT7H@ydF#Wx!3E)lmMfYYUSreln zj9I;L^vcJwiFvH&8z;cXD~&m5o53)Y)VutHobEF4yW_O=@Up5K^7N%c}h0idhs@3lm#~wbO+MOz(4f5u`A-`Fc!&xvuF^#vsPP@i|ntx>T z_&#m#%|p>{ytn}*+x(lGBS~{rU_*=Wg{-?%C^Yo~NHr`Th9S%} z)IvN^;SvR!9!4;6_L`uXlmo{?Rt9uwRhQZKhwCYH9{~L)j&ZVqe@+CdKv4%Y4)8bA zU(i)@xHW}?XN*5wyH4S=wx|nEv@_`G(muk)!nfRE*0W39TD$`xE_LSuTmsPDlFw7R ziO|}2cSs(m=jBc>CA(F>ySn#Pr7)($v@;m=^5^_V)rPffW!^2X?!ARjp&yJjioBJ* zRt1l_W&BGK!{J?I?|QzwFAfV8Sis-xWiB_w$VN#$$k`0PqaUx?a|&{%|Q&1T9HIe)x7B1vrSMoo~CKdBFJ+ zPE7g+Ow^_E?KPl==CU_Qvwmaam&BxZchCStVQ0^eQ!Au}eoR1dzRqd3HWM#nnt

BkI@54kJfCT=w^wdwI#E=>p-lQFF%qYM~tcLfn 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

U%VTDg!vL!-tIi;ee*!gmCcMQCs*kgc$wFCo0l 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�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

ktN!~ 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 literal 0 HcmV?d00001 diff --git a/docs/assets/images/footer-elements-d4cce6387532509cd95ab7a26b83fd8f.jpg b/docs/assets/images/footer-elements-d4cce6387532509cd95ab7a26b83fd8f.jpg deleted file mode 100644 index f1eb33caacc10d7026cb702d96ecb936d308c917..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 188742 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

|kR#+n9keHrzZ1fj-?QD38})syV(s84## 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≧0-Y2Og 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�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 NiKffoTj>7R{{fm}6s`aO diff --git a/docs/assets/js/1a10606c.92eeae11.js b/docs/assets/js/1a10606c.216f709e.js similarity index 99% rename from docs/assets/js/1a10606c.92eeae11.js rename to docs/assets/js/1a10606c.216f709e.js index cda64a8589..3be5a06541 100644 --- a/docs/assets/js/1a10606c.92eeae11.js +++ b/docs/assets/js/1a10606c.216f709e.js @@ -1 +1 @@ -"use strict";(self.webpackChunkwebsite=self.webpackChunkwebsite||[]).push([[4521],{3905:(e,t,n)=>{n.d(t,{Zo:()=>p,kt:()=>g});var a=n(7294);function r(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function o(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);t&&(a=a.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,a)}return n}function l(e){for(var t=1;t=0||(r[n]=e[n]);return r}(e,t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(a=0;a=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(r[n]=e[n])}return r}var s=a.createContext({}),u=function(e){var t=a.useContext(s),n=t;return e&&(n="function"==typeof e?e(t):l(l({},t),e)),n},p=function(e){var t=u(e.components);return a.createElement(s.Provider,{value:t},e.children)},c="mdxType",m={inlineCode:"code",wrapper:function(e){var t=e.children;return a.createElement(a.Fragment,{},t)}},d=a.forwardRef((function(e,t){var n=e.components,r=e.mdxType,o=e.originalType,s=e.parentName,p=i(e,["components","mdxType","originalType","parentName"]),c=u(n),d=r,g=c["".concat(s,".").concat(d)]||c[d]||m[d]||o;return n?a.createElement(g,l(l({ref:t},p),{},{components:n})):a.createElement(g,l({ref:t},p))}));function g(e,t){var n=arguments,r=t&&t.mdxType;if("string"==typeof e||r){var o=n.length,l=new Array(o);l[0]=d;var i={};for(var s in t)hasOwnProperty.call(t,s)&&(i[s]=t[s]);i.originalType=e,i[c]="string"==typeof e?e:r,l[1]=i;for(var u=2;u{n.r(t),n.d(t,{contentTitle:()=>b,default:()=>h,frontMatter:()=>g,metadata:()=>f,toc:()=>y});var a=n(7462),r=(n(7294),n(3905)),o=n(4037);const l={toc:[{value:"Anatomy",id:"anatomy",children:[],level:3},{value:"Do's",id:"dos",children:[],level:3},{value:"Don'ts",id:"donts",children:[],level:3}]},i="wrapper";function s(e){let{components:t,...o}=e;return(0,r.kt)(i,(0,a.Z)({},l,o,{components:t,mdxType:"MDXLayout"}),(0,r.kt)("p",null,"The core footer provides supplementary information such as copyright, legal, privacy, social media, contact information and links to other important sites within the EEA. It is always placed at the bottom of every page. ",(0,r.kt)("b",null," Always use a footer when building your page ")),(0,r.kt)("p",null,(0,r.kt)("img",{src:n(9686).Z})),(0,r.kt)("h3",{id:"anatomy"},"Anatomy"),(0,r.kt)("table",null,(0,r.kt)("thead",{parentName:"table"},(0,r.kt)("tr",{parentName:"thead"},(0,r.kt)("th",{parentName:"tr",align:null},"\u039d\u03bf."),(0,r.kt)("th",{parentName:"tr",align:null},"Components"),(0,r.kt)("th",{parentName:"tr",align:null},"Mandatory"),(0,r.kt)("th",{parentName:"tr",align:null},"Description"))),(0,r.kt)("tbody",{parentName:"table"},(0,r.kt)("tr",{parentName:"tbody"},(0,r.kt)("td",{parentName:"tr",align:null},"1"),(0,r.kt)("td",{parentName:"tr",align:null},(0,r.kt)("strong",{parentName:"td"},"EEA logo")),(0,r.kt)("td",{parentName:"tr",align:null},"yes"),(0,r.kt)("td",{parentName:"tr",align:null},"Logo of European Environment Agency (EEA)")),(0,r.kt)("tr",{parentName:"tbody"},(0,r.kt)("td",{parentName:"tr",align:null},"2"),(0,r.kt)("td",{parentName:"tr",align:null},(0,r.kt)("strong",{parentName:"td"},"EIONET logo")),(0,r.kt)("td",{parentName:"tr",align:null},"yes"),(0,r.kt)("td",{parentName:"tr",align:null},"Logo of European Environment Information and Observation Network")),(0,r.kt)("tr",{parentName:"tbody"},(0,r.kt)("td",{parentName:"tr",align:null},"3"),(0,r.kt)("td",{parentName:"tr",align:null},(0,r.kt)("strong",{parentName:"td"},"Contact information"),(0,r.kt)("br",null)),(0,r.kt)("td",{parentName:"tr",align:null},"yes"),(0,r.kt)("td",{parentName:"tr",align:null},"Links to the associated services available through the EEA site")),(0,r.kt)("tr",{parentName:"tbody"},(0,r.kt)("td",{parentName:"tr",align:null},"4"),(0,r.kt)("td",{parentName:"tr",align:null},(0,r.kt)("strong",{parentName:"td"},"Social media")),(0,r.kt)("td",{parentName:"tr",align:null},"yes"),(0,r.kt)("td",{parentName:"tr",align:null},"Links to social EEA's social media")),(0,r.kt)("tr",{parentName:"tbody"},(0,r.kt)("td",{parentName:"tr",align:null},"5"),(0,r.kt)("td",{parentName:"tr",align:null},(0,r.kt)("strong",{parentName:"td"},"Environmental information systems")),(0,r.kt)("td",{parentName:"tr",align:null},"yes"),(0,r.kt)("td",{parentName:"tr",align:null},"European Information Systems")),(0,r.kt)("tr",{parentName:"tbody"},(0,r.kt)("td",{parentName:"tr",align:null},"6"),(0,r.kt)("td",{parentName:"tr",align:null},(0,r.kt)("strong",{parentName:"td"},"Legal navigation")),(0,r.kt)("td",{parentName:"tr",align:null},"yes"),(0,r.kt)("td",{parentName:"tr",align:null},"Contains legal information links - consistent throughout the family sites")),(0,r.kt)("tr",{parentName:"tbody"},(0,r.kt)("td",{parentName:"tr",align:null},"7"),(0,r.kt)("td",{parentName:"tr",align:null},(0,r.kt)("strong",{parentName:"td"},"Content owner details")),(0,r.kt)("td",{parentName:"tr",align:null},"yes"),(0,r.kt)("td",{parentName:"tr",align:null},"Indicates ownership over the site's content")))),(0,r.kt)("h3",{id:"dos"},"Do's"),(0,r.kt)("ul",null,(0,r.kt)("li",{parentName:"ul"},"make sure the footer contain all the elements in the anatomy table above")),(0,r.kt)("h3",{id:"donts"},"Don'ts"),(0,r.kt)("ul",null,(0,r.kt)("li",{parentName:"ul"},"don't use more than one footer per page")))}s.isMDXComponent=!0;var u=n(7521);const p={toc:[]},c="wrapper";function m(e){let{components:t,...n}=e;return(0,r.kt)(c,(0,a.Z)({},p,n,{components:t,mdxType:"MDXLayout"}),(0,r.kt)(u.ZP,{id:"layout-footer--default",height:"1000",mdxType:"Iframe"}," "))}m.isMDXComponent=!0;d="AccordionJSDoc";var d;const g={title:"Site Footer",description:"",hide_table_of_contents:!0},b=void 0,f={unversionedId:"webdev/Templates/SiteFooter",id:"webdev/Templates/SiteFooter",title:"Site Footer",description:"",source:"@site/docs/webdev/4-Templates/3-SiteFooter.mdx",sourceDirName:"webdev/4-Templates",slug:"/webdev/Templates/SiteFooter",permalink:"/volto-eea-design-system/docs/webdev/Templates/SiteFooter",editUrl:"https://github.com/eea/volto-eea-design-system/edit/contribute-documentation/website/docs/webdev/4-Templates/3-SiteFooter.mdx",tags:[],version:"current",sidebarPosition:3,frontMatter:{title:"Site Footer",description:"",hide_table_of_contents:!0},sidebar:"sidebar",previous:{title:"Site Header",permalink:"/volto-eea-design-system/docs/webdev/Templates/SiteHeader"},next:{title:"Page Header",permalink:"/volto-eea-design-system/docs/webdev/Templates/PageHeader"}},y=[],k={toc:y},v="wrapper";function h(e){let{components:t,...n}=e;return(0,r.kt)(v,(0,a.Z)({},k,n,{components:t,mdxType:"MDXLayout"}),(0,r.kt)(o.ZP,{usage:(0,r.kt)(s,{mdxType:"Usage"}),showcase:(0,r.kt)(m,{mdxType:"Showcase"}),mdxType:"EEATabs"}))}h.isMDXComponent=!0},7521:(e,t,n)=>{n.d(t,{ZP:()=>u});var a=n(7462),r=(n(7294),n(3905)),o=n(2263);function l(){const{siteConfig:e}=(0,o.Z)(),{customFields:t}=e;return t.storyBookUrl}const i={toc:[],getUrl:l},s="wrapper";function u(e){let{components:t,...n}=e;return(0,r.kt)(s,(0,a.Z)({},i,n,{components:t,mdxType:"MDXLayout"}),(0,r.kt)("div",{className:"frameWrapper"},(0,r.kt)("iframe",{style:{height:(n.height?n.height:300)+"px"},src:l()+"/iframe.html?id="+n.id,title:"description"})))}u.isMDXComponent=!0},4037:(e,t,n)=>{n.d(t,{ZP:()=>k});var a=n(7462),r=n(7294),o=n(3905),l=n(2389),i=n(9443);const s=function(){const e=(0,r.useContext)(i.Z);if(null==e)throw new Error('"useUserPreferencesContext" is used outside of "Layout" component.');return e};var u=n(3810),p=n(6010);const c={tabItem:"tabItem_vU9c"};function m(e){const{lazy:t,block:n,defaultValue:a,values:o,groupId:l,className:i}=e,m=r.Children.map(e.children,(e=>{if((0,r.isValidElement)(e)&&void 0!==e.props.value)return e;throw new Error(`Docusaurus error: Bad child <${"string"==typeof e.type?e.type:e.type.name}>: all children of the component should be , and every should have a unique "value" prop.`)})),d=o??m.map((e=>{let{props:{value:t,label:n}}=e;return{value:t,label:n}})),g=(0,u.lx)(d,((e,t)=>e.value===t.value));if(g.length>0)throw new Error(`Docusaurus error: Duplicate values "${g.map((e=>e.value)).join(", ")}" found in . Every value needs to be unique.`);const b=null===a?a:a??m.find((e=>e.props.default))?.props.value??m[0]?.props.value;if(null!==b&&!d.some((e=>e.value===b)))throw new Error(`Docusaurus error: The has a defaultValue "${b}" but none of its children has the corresponding value. Available values are: ${d.map((e=>e.value)).join(", ")}. If you intend to show no default tab, use defaultValue={null} instead.`);const{tabGroupChoices:f,setTabGroupChoices:y}=s(),[k,v]=(0,r.useState)(b),h=[],{blockElementScrollPositionUntilNextRender:N}=(0,u.o5)();if(null!=l){const e=f[l];null!=e&&e!==k&&d.some((t=>t.value===e))&&v(e)}const w=e=>{const t=e.currentTarget,n=h.indexOf(t),a=d[n].value;a!==k&&(N(t),v(a),null!=l&&y(l,a))},T=e=>{let t=null;switch(e.key){case"ArrowRight":{const n=h.indexOf(e.currentTarget)+1;t=h[n]||h[0];break}case"ArrowLeft":{const n=h.indexOf(e.currentTarget)-1;t=h[n]||h[h.length-1];break}}t?.focus()};return r.createElement("div",{className:"tabs-container"},r.createElement("ul",{role:"tablist","aria-orientation":"horizontal",className:(0,p.Z)("tabs",{"tabs--block":n},i)},d.map((e=>{let{value:t,label:n}=e;return r.createElement("li",{role:"tab",tabIndex:k===t?0:-1,"aria-selected":k===t,className:(0,p.Z)("tabs__item",c.tabItem,{"tabs__item--active":k===t}),key:t,ref:e=>h.push(e),onKeyDown:T,onFocus:w,onClick:w},n??t)}))),t?(0,r.cloneElement)(m.filter((e=>e.props.value===k))[0],{className:"margin-vert--md"}):r.createElement("div",{className:"margin-vert--md"},m.map(((e,t)=>(0,r.cloneElement)(e,{key:t,hidden:e.props.value!==k})))))}function d(e){const t=(0,l.Z)();return r.createElement(m,(0,a.Z)({key:String(t)},e))}const g=function(e){let{children:t,hidden:n,className:a}=e;return r.createElement("div",{role:"tabpanel",hidden:n,className:a},t)};function b(e){let t=[{label:"Usage",value:"usage"},{label:"Showcase",value:"showcase"}];return e.api&&t.push({label:"API",value:"api"}),e.playground&&t.push({label:"Playground",value:"playground"}),t}const f={toc:[],getValues:b},y="wrapper";function k(e){let{components:t,...n}=e;return(0,o.kt)(y,(0,a.Z)({},f,n,{components:t,mdxType:"MDXLayout"}),(0,o.kt)(d,{defaultValue:"usage",values:b(n),mdxType:"Tabs"},(0,o.kt)(g,{value:"usage",mdxType:"TabItem"},n.usage),(0,o.kt)(g,{value:"showcase",mdxType:"TabItem"},n.showcase),(0,o.kt)(g,{value:"api",mdxType:"TabItem"},n.api)))}k.isMDXComponent=!0},9686:(e,t,n)=>{n.d(t,{Z:()=>a});const a=n.p+"assets/images/footer-elements-d4cce6387532509cd95ab7a26b83fd8f.jpg"}}]); \ No newline at end of file +"use strict";(self.webpackChunkwebsite=self.webpackChunkwebsite||[]).push([[4521],{3905:(e,t,n)=>{n.d(t,{Zo:()=>p,kt:()=>g});var a=n(7294);function r(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function o(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);t&&(a=a.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,a)}return n}function l(e){for(var t=1;t=0||(r[n]=e[n]);return r}(e,t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(a=0;a=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(r[n]=e[n])}return r}var s=a.createContext({}),u=function(e){var t=a.useContext(s),n=t;return e&&(n="function"==typeof e?e(t):l(l({},t),e)),n},p=function(e){var t=u(e.components);return a.createElement(s.Provider,{value:t},e.children)},c="mdxType",m={inlineCode:"code",wrapper:function(e){var t=e.children;return a.createElement(a.Fragment,{},t)}},d=a.forwardRef((function(e,t){var n=e.components,r=e.mdxType,o=e.originalType,s=e.parentName,p=i(e,["components","mdxType","originalType","parentName"]),c=u(n),d=r,g=c["".concat(s,".").concat(d)]||c[d]||m[d]||o;return n?a.createElement(g,l(l({ref:t},p),{},{components:n})):a.createElement(g,l({ref:t},p))}));function g(e,t){var n=arguments,r=t&&t.mdxType;if("string"==typeof e||r){var o=n.length,l=new Array(o);l[0]=d;var i={};for(var s in t)hasOwnProperty.call(t,s)&&(i[s]=t[s]);i.originalType=e,i[c]="string"==typeof e?e:r,l[1]=i;for(var u=2;u{n.r(t),n.d(t,{contentTitle:()=>b,default:()=>h,frontMatter:()=>g,metadata:()=>f,toc:()=>y});var a=n(7462),r=(n(7294),n(3905)),o=n(4037);const l={toc:[{value:"Anatomy",id:"anatomy",children:[],level:3},{value:"Do's",id:"dos",children:[],level:3},{value:"Don'ts",id:"donts",children:[],level:3}]},i="wrapper";function s(e){let{components:t,...o}=e;return(0,r.kt)(i,(0,a.Z)({},l,o,{components:t,mdxType:"MDXLayout"}),(0,r.kt)("p",null,"The core footer provides supplementary information such as copyright, legal, privacy, social media, contact information and links to other important sites within the EEA. It is always placed at the bottom of every page. ",(0,r.kt)("b",null," Always use a footer when building your page ")),(0,r.kt)("p",null,(0,r.kt)("img",{src:n(9686).Z})),(0,r.kt)("h3",{id:"anatomy"},"Anatomy"),(0,r.kt)("table",null,(0,r.kt)("thead",{parentName:"table"},(0,r.kt)("tr",{parentName:"thead"},(0,r.kt)("th",{parentName:"tr",align:null},"\u039d\u03bf."),(0,r.kt)("th",{parentName:"tr",align:null},"Components"),(0,r.kt)("th",{parentName:"tr",align:null},"Mandatory"),(0,r.kt)("th",{parentName:"tr",align:null},"Description"))),(0,r.kt)("tbody",{parentName:"table"},(0,r.kt)("tr",{parentName:"tbody"},(0,r.kt)("td",{parentName:"tr",align:null},"1"),(0,r.kt)("td",{parentName:"tr",align:null},(0,r.kt)("strong",{parentName:"td"},"EEA logo")),(0,r.kt)("td",{parentName:"tr",align:null},"yes"),(0,r.kt)("td",{parentName:"tr",align:null},"Logo of European Environment Agency (EEA)")),(0,r.kt)("tr",{parentName:"tbody"},(0,r.kt)("td",{parentName:"tr",align:null},"2"),(0,r.kt)("td",{parentName:"tr",align:null},(0,r.kt)("strong",{parentName:"td"},"EIONET logo")),(0,r.kt)("td",{parentName:"tr",align:null},"yes"),(0,r.kt)("td",{parentName:"tr",align:null},"Logo of European Environment Information and Observation Network")),(0,r.kt)("tr",{parentName:"tbody"},(0,r.kt)("td",{parentName:"tr",align:null},"3"),(0,r.kt)("td",{parentName:"tr",align:null},(0,r.kt)("strong",{parentName:"td"},"Contact information"),(0,r.kt)("br",null)),(0,r.kt)("td",{parentName:"tr",align:null},"yes"),(0,r.kt)("td",{parentName:"tr",align:null},"Links to the associated services available through the EEA site")),(0,r.kt)("tr",{parentName:"tbody"},(0,r.kt)("td",{parentName:"tr",align:null},"4"),(0,r.kt)("td",{parentName:"tr",align:null},(0,r.kt)("strong",{parentName:"td"},"Social media")),(0,r.kt)("td",{parentName:"tr",align:null},"yes"),(0,r.kt)("td",{parentName:"tr",align:null},"Links to social EEA's social media")),(0,r.kt)("tr",{parentName:"tbody"},(0,r.kt)("td",{parentName:"tr",align:null},"5"),(0,r.kt)("td",{parentName:"tr",align:null},(0,r.kt)("strong",{parentName:"td"},"Environmental information systems")),(0,r.kt)("td",{parentName:"tr",align:null},"yes"),(0,r.kt)("td",{parentName:"tr",align:null},"European Information Systems")),(0,r.kt)("tr",{parentName:"tbody"},(0,r.kt)("td",{parentName:"tr",align:null},"6"),(0,r.kt)("td",{parentName:"tr",align:null},(0,r.kt)("strong",{parentName:"td"},"Legal navigation")),(0,r.kt)("td",{parentName:"tr",align:null},"yes"),(0,r.kt)("td",{parentName:"tr",align:null},"Contains legal information links - consistent throughout the family sites")),(0,r.kt)("tr",{parentName:"tbody"},(0,r.kt)("td",{parentName:"tr",align:null},"7"),(0,r.kt)("td",{parentName:"tr",align:null},(0,r.kt)("strong",{parentName:"td"},"Content owner details")),(0,r.kt)("td",{parentName:"tr",align:null},"yes"),(0,r.kt)("td",{parentName:"tr",align:null},"Indicates ownership over the site's content")))),(0,r.kt)("h3",{id:"dos"},"Do's"),(0,r.kt)("ul",null,(0,r.kt)("li",{parentName:"ul"},"make sure the footer contain all the elements in the anatomy table above")),(0,r.kt)("h3",{id:"donts"},"Don'ts"),(0,r.kt)("ul",null,(0,r.kt)("li",{parentName:"ul"},"don't use more than one footer per page")))}s.isMDXComponent=!0;var u=n(7521);const p={toc:[]},c="wrapper";function m(e){let{components:t,...n}=e;return(0,r.kt)(c,(0,a.Z)({},p,n,{components:t,mdxType:"MDXLayout"}),(0,r.kt)(u.ZP,{id:"layout-footer--default",height:"1000",mdxType:"Iframe"}," "))}m.isMDXComponent=!0;d="AccordionJSDoc";var d;const g={title:"Site Footer",description:"",hide_table_of_contents:!0},b=void 0,f={unversionedId:"webdev/Templates/SiteFooter",id:"webdev/Templates/SiteFooter",title:"Site Footer",description:"",source:"@site/docs/webdev/4-Templates/3-SiteFooter.mdx",sourceDirName:"webdev/4-Templates",slug:"/webdev/Templates/SiteFooter",permalink:"/volto-eea-design-system/docs/webdev/Templates/SiteFooter",editUrl:"https://github.com/eea/volto-eea-design-system/edit/contribute-documentation/website/docs/webdev/4-Templates/3-SiteFooter.mdx",tags:[],version:"current",sidebarPosition:3,frontMatter:{title:"Site Footer",description:"",hide_table_of_contents:!0},sidebar:"sidebar",previous:{title:"Site Header",permalink:"/volto-eea-design-system/docs/webdev/Templates/SiteHeader"},next:{title:"Page Header",permalink:"/volto-eea-design-system/docs/webdev/Templates/PageHeader"}},y=[],k={toc:y},v="wrapper";function h(e){let{components:t,...n}=e;return(0,r.kt)(v,(0,a.Z)({},k,n,{components:t,mdxType:"MDXLayout"}),(0,r.kt)(o.ZP,{usage:(0,r.kt)(s,{mdxType:"Usage"}),showcase:(0,r.kt)(m,{mdxType:"Showcase"}),mdxType:"EEATabs"}))}h.isMDXComponent=!0},7521:(e,t,n)=>{n.d(t,{ZP:()=>u});var a=n(7462),r=(n(7294),n(3905)),o=n(2263);function l(){const{siteConfig:e}=(0,o.Z)(),{customFields:t}=e;return t.storyBookUrl}const i={toc:[],getUrl:l},s="wrapper";function u(e){let{components:t,...n}=e;return(0,r.kt)(s,(0,a.Z)({},i,n,{components:t,mdxType:"MDXLayout"}),(0,r.kt)("div",{className:"frameWrapper"},(0,r.kt)("iframe",{style:{height:(n.height?n.height:300)+"px"},src:l()+"/iframe.html?id="+n.id,title:"description"})))}u.isMDXComponent=!0},4037:(e,t,n)=>{n.d(t,{ZP:()=>k});var a=n(7462),r=n(7294),o=n(3905),l=n(2389),i=n(9443);const s=function(){const e=(0,r.useContext)(i.Z);if(null==e)throw new Error('"useUserPreferencesContext" is used outside of "Layout" component.');return e};var u=n(3810),p=n(6010);const c={tabItem:"tabItem_vU9c"};function m(e){const{lazy:t,block:n,defaultValue:a,values:o,groupId:l,className:i}=e,m=r.Children.map(e.children,(e=>{if((0,r.isValidElement)(e)&&void 0!==e.props.value)return e;throw new Error(`Docusaurus error: Bad child <${"string"==typeof e.type?e.type:e.type.name}>: all children of the component should be , and every should have a unique "value" prop.`)})),d=o??m.map((e=>{let{props:{value:t,label:n}}=e;return{value:t,label:n}})),g=(0,u.lx)(d,((e,t)=>e.value===t.value));if(g.length>0)throw new Error(`Docusaurus error: Duplicate values "${g.map((e=>e.value)).join(", ")}" found in . Every value needs to be unique.`);const b=null===a?a:a??m.find((e=>e.props.default))?.props.value??m[0]?.props.value;if(null!==b&&!d.some((e=>e.value===b)))throw new Error(`Docusaurus error: The has a defaultValue "${b}" but none of its children has the corresponding value. Available values are: ${d.map((e=>e.value)).join(", ")}. If you intend to show no default tab, use defaultValue={null} instead.`);const{tabGroupChoices:f,setTabGroupChoices:y}=s(),[k,v]=(0,r.useState)(b),h=[],{blockElementScrollPositionUntilNextRender:N}=(0,u.o5)();if(null!=l){const e=f[l];null!=e&&e!==k&&d.some((t=>t.value===e))&&v(e)}const w=e=>{const t=e.currentTarget,n=h.indexOf(t),a=d[n].value;a!==k&&(N(t),v(a),null!=l&&y(l,a))},T=e=>{let t=null;switch(e.key){case"ArrowRight":{const n=h.indexOf(e.currentTarget)+1;t=h[n]||h[0];break}case"ArrowLeft":{const n=h.indexOf(e.currentTarget)-1;t=h[n]||h[h.length-1];break}}t?.focus()};return r.createElement("div",{className:"tabs-container"},r.createElement("ul",{role:"tablist","aria-orientation":"horizontal",className:(0,p.Z)("tabs",{"tabs--block":n},i)},d.map((e=>{let{value:t,label:n}=e;return r.createElement("li",{role:"tab",tabIndex:k===t?0:-1,"aria-selected":k===t,className:(0,p.Z)("tabs__item",c.tabItem,{"tabs__item--active":k===t}),key:t,ref:e=>h.push(e),onKeyDown:T,onFocus:w,onClick:w},n??t)}))),t?(0,r.cloneElement)(m.filter((e=>e.props.value===k))[0],{className:"margin-vert--md"}):r.createElement("div",{className:"margin-vert--md"},m.map(((e,t)=>(0,r.cloneElement)(e,{key:t,hidden:e.props.value!==k})))))}function d(e){const t=(0,l.Z)();return r.createElement(m,(0,a.Z)({key:String(t)},e))}const g=function(e){let{children:t,hidden:n,className:a}=e;return r.createElement("div",{role:"tabpanel",hidden:n,className:a},t)};function b(e){let t=[{label:"Usage",value:"usage"},{label:"Showcase",value:"showcase"}];return e.api&&t.push({label:"API",value:"api"}),e.playground&&t.push({label:"Playground",value:"playground"}),t}const f={toc:[],getValues:b},y="wrapper";function k(e){let{components:t,...n}=e;return(0,o.kt)(y,(0,a.Z)({},f,n,{components:t,mdxType:"MDXLayout"}),(0,o.kt)(d,{defaultValue:"usage",values:b(n),mdxType:"Tabs"},(0,o.kt)(g,{value:"usage",mdxType:"TabItem"},n.usage),(0,o.kt)(g,{value:"showcase",mdxType:"TabItem"},n.showcase),(0,o.kt)(g,{value:"api",mdxType:"TabItem"},n.api)))}k.isMDXComponent=!0},9686:(e,t,n)=>{n.d(t,{Z:()=>a});const a=n.p+"assets/images/footer-elements-5372482011916ad559b7b4a9f7c180d1.jpg"}}]); \ No newline at end of file diff --git a/docs/assets/js/41d5c757.0d9cade4.js b/docs/assets/js/41d5c757.0d9cade4.js new file mode 100644 index 0000000000..e3f505b14d --- /dev/null +++ b/docs/assets/js/41d5c757.0d9cade4.js @@ -0,0 +1 @@ +"use strict";(self.webpackChunkwebsite=self.webpackChunkwebsite||[]).push([[6245],{3905:(e,a,t)=>{t.d(a,{Zo:()=>c,kt:()=>h});var i=t(7294);function n(e,a,t){return a in e?Object.defineProperty(e,a,{value:t,enumerable:!0,configurable:!0,writable:!0}):e[a]=t,e}function o(e,a){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);a&&(i=i.filter((function(a){return Object.getOwnPropertyDescriptor(e,a).enumerable}))),t.push.apply(t,i)}return t}function m(e){for(var a=1;a=0||(n[t]=e[t]);return n}(e,a);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(i=0;i=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(n[t]=e[t])}return n}var d=i.createContext({}),r=function(e){var a=i.useContext(d),t=a;return e&&(t="function"==typeof e?e(a):m(m({},a),e)),t},c=function(e){var a=r(e.components);return i.createElement(d.Provider,{value:a},e.children)},s="mdxType",f={inlineCode:"code",wrapper:function(e){var a=e.children;return i.createElement(i.Fragment,{},a)}},p=i.forwardRef((function(e,a){var t=e.components,n=e.mdxType,o=e.originalType,d=e.parentName,c=l(e,["components","mdxType","originalType","parentName"]),s=r(t),p=n,h=s["".concat(d,".").concat(p)]||s[p]||f[p]||o;return t?i.createElement(h,m(m({ref:a},c),{},{components:t})):i.createElement(h,m({ref:a},c))}));function h(e,a){var t=arguments,n=a&&a.mdxType;if("string"==typeof e||n){var o=t.length,m=new Array(o);m[0]=p;var l={};for(var d in a)hasOwnProperty.call(a,d)&&(l[d]=a[d]);l.originalType=e,l[s]="string"==typeof e?e:n,m[1]=l;for(var r=2;r{t.r(a),t.d(a,{contentTitle:()=>m,default:()=>s,frontMatter:()=>o,metadata:()=>l,toc:()=>d});var i=t(7462),n=(t(7294),t(3905));const o={title:"What's new"},m=void 0,l={unversionedId:"whatsnew",id:"whatsnew",title:"What's new",description:"EEA Design System (1.0)",source:"@site/docs/2-whatsnew.md",sourceDirName:".",slug:"/whatsnew",permalink:"/volto-eea-design-system/docs/whatsnew",editUrl:"https://github.com/eea/volto-eea-design-system/edit/contribute-documentation/website/docs/2-whatsnew.md",tags:[],version:"current",sidebarPosition:2,frontMatter:{title:"What's new"},sidebar:"sidebar",previous:{title:"Introduction",permalink:"/volto-eea-design-system/docs/intro"},next:{title:"Web development",permalink:"/volto-eea-design-system/docs/category/web-development"}},d=[{value:"EEA Design System (1.0)",id:"eea-design-system-10",children:[{value:"Components ready to be used",id:"components-ready-to-be-used",children:[],level:4},{value:"Future releases",id:"future-releases",children:[],level:4}],level:3},{value:"Unreleased - 2023-04-03T14:53:04.159Z",id:"unreleased---2023-04-03t145304159z",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes",children:[],level:4}],level:3},{value:"1.0.6 - 2023-03-29",id:"106---2023-03-29",children:[{value:"\ud83d\ude80 New Features",id:"-new-features",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-1",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-1",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others",children:[],level:4}],level:3},{value:"1.0.5 - 2023-03-28",id:"105---2023-03-28",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-1",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes",children:[],level:4}],level:3},{value:"1.0.4 - 2023-03-27",id:"104---2023-03-27",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-2",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-2",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-1",children:[],level:4}],level:3},{value:"1.0.3 - 2023-03-24",id:"103---2023-03-24",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-1",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-2",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-2",children:[],level:4}],level:3},{value:"1.0.2 - 2023-03-14",id:"102---2023-03-14",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-2",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-3",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-1",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-3",children:[],level:4}],level:3},{value:"1.0.1 - 2023-03-13",id:"101---2023-03-13",children:[],level:3},{value:"1.0.0 - 2023-03-13",id:"100---2023-03-13",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-3",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-4",children:[],level:4}],level:3},{value:"1.0.0-beta.6 - 2023-03-10",id:"100-beta6---2023-03-10",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-3",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-4",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-5",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-3",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-2",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-4",children:[],level:4}],level:3},{value:"1.0.0-beta.5 - 2023-03-07",id:"100-beta5---2023-03-07",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-6",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-4",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-5",children:[],level:4}],level:3},{value:"1.0.0-beta.4 - 2023-03-01",id:"100-beta4---2023-03-01",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-4",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-5",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-7",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-6",children:[],level:4}],level:3},{value:"1.0.0-beta.3 - 2023-02-21",id:"100-beta3---2023-02-21",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-5",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-6",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-8",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-5",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-3",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-7",children:[],level:4}],level:3},{value:"1.0.0-beta.2 - 2023-02-13",id:"100-beta2---2023-02-13",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-7",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-9",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-6",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-8",children:[],level:4}],level:3},{value:"1.0.0-beta.1 - 2023-02-09",id:"100-beta1---2023-02-09",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-6",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-10",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-9",children:[],level:4}],level:3},{value:"1.0.0-alpha.15 - 2023-02-08",id:"100-alpha15---2023-02-08",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-7",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-8",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-11",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-10",children:[],level:4}],level:3},{value:"1.0.0-alpha.14 - 2023-01-30",id:"100-alpha14---2023-01-30",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-12",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-11",children:[],level:4}],level:3},{value:"1.0.0-alpha.13.1 - 2023-01-30",id:"100-alpha131---2023-01-30",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-13",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-12",children:[],level:4}],level:3},{value:"1.0.0-alpha.13 - 2023-01-27",id:"100-alpha13---2023-01-27",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-8",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-9",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-14",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-13",children:[],level:4}],level:3},{value:"1.0.0-alpha.12 - 2023-01-24",id:"100-alpha12---2023-01-24",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-9",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-10",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-15",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-4",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-14",children:[],level:4}],level:3},{value:"1.0.0-alpha.11 - 2023-01-17",id:"100-alpha11---2023-01-17",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-10",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-11",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-16",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-5",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-15",children:[],level:4}],level:3},{value:"1.0.0-alpha.10 - 2023-01-13",id:"100-alpha10---2023-01-13",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-12",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-16",children:[],level:4}],level:3},{value:"1.0.0-alpha.9 - 2022-12-28",id:"100-alpha9---2022-12-28",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-17",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-17",children:[],level:4}],level:3},{value:"1.0.0-alpha.8 - 2022-12-23",id:"100-alpha8---2022-12-23",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-11",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-18",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-7",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-6",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-18",children:[],level:4}],level:3},{value:"1.0.0-alpha.7 - 2022-12-16",id:"100-alpha7---2022-12-16",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-12",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-13",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-19",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-19",children:[],level:4}],level:3},{value:"1.0.0-alpha.6 - 2022-12-07",id:"100-alpha6---2022-12-07",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-13",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-14",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-20",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-7",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-20",children:[],level:4}],level:3},{value:"1.0.0-alpha.5 - 2022-11-29",id:"100-alpha5---2022-11-29",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-14",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-15",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-21",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-8",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-8",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-21",children:[],level:4}],level:3},{value:"1.0.0-alpha.4 - 2022-11-22",id:"100-alpha4---2022-11-22",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-16",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-22",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-22",children:[],level:4}],level:3},{value:"1.0.0-alpha.3 - 2022-11-16",id:"100-alpha3---2022-11-16",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-15",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-17",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-23",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-9",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-23",children:[],level:4}],level:3},{value:"1.0.0-alpha.2 - 2022-10-28",id:"100-alpha2---2022-10-28",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-24",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-10",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-24",children:[],level:4}],level:3},{value:"1.0.0-alpha.1 - 2022-10-20",id:"100-alpha1---2022-10-20",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-25",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-11",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-9",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-25",children:[],level:4}],level:3},{value:"0.9.6 - 2022-12-16",id:"096---2022-12-16",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-26",children:[],level:4}],level:3},{value:"0.9.5 - 2022-10-20",id:"095---2022-10-20",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-18",children:[],level:4}],level:3},{value:"0.9.4 - 2022-10-19",id:"094---2022-10-19",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-19",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-26",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-27",children:[],level:4}],level:3},{value:"0.9.3 - 2022-10-04",id:"093---2022-10-04",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-20",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-27",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-10",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-28",children:[],level:4}],level:3},{value:"0.9.2 - 2022-09-27",id:"092---2022-09-27",children:[],level:3},{value:"0.9.1 - 2022-09-27",id:"091---2022-09-27",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-28",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-29",children:[],level:4}],level:3},{value:"0.9.0 - 2022-09-19",id:"090---2022-09-19",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-16",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-21",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-29",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-12",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-11",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-30",children:[],level:4}],level:3},{value:"0.8.1 - 2022-08-26",id:"081---2022-08-26",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-22",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-30",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-12",children:[],level:4}],level:3},{value:"0.8.0 - 2022-08-20",id:"080---2022-08-20",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-17",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-23",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-31",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-31",children:[],level:4}],level:3},{value:"0.7.6 - 2022-08-15",id:"076---2022-08-15",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-32",children:[],level:4}],level:3},{value:"0.7.5 - 2022-08-11",id:"075---2022-08-11",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-33",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-32",children:[],level:4}],level:3},{value:"0.7.3 - 2022-08-04",id:"073---2022-08-04",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-34",children:[],level:4}],level:3},{value:"0.7.2 - 2022-08-03",id:"072---2022-08-03",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-24",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-33",children:[],level:4}],level:3},{value:"0.7.1 - 2022-08-01",id:"071---2022-08-01",children:[],level:3},{value:"0.7.0 - 2022-08-01",id:"070---2022-08-01",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-18",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-25",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-35",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-34",children:[],level:4}],level:3},{value:"0.6.5 - 2022-07-06",id:"065---2022-07-06",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-26",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-36",children:[],level:4}],level:3},{value:"0.6.1 - 2022-07-01",id:"061---2022-07-01",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-19",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-37",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-13",children:[],level:4}],level:3},{value:"0.6.0 - 2022-07-01",id:"060---2022-07-01",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-27",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-38",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-14",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-13",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-35",children:[],level:4}],level:3},{value:"0.5.5 - 2022-06-23",id:"055---2022-06-23",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-28",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-39",children:[],level:4}],level:3},{value:"0.5.4 - 2022-06-16",id:"054---2022-06-16",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-29",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-40",children:[],level:4}],level:3},{value:"0.5.3 - 2022-06-16",id:"053---2022-06-16",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-30",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-41",children:[],level:4}],level:3},{value:"0.5.2 - 2022-06-14",id:"052---2022-06-14",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-20",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-42",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-15",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-36",children:[],level:4}],level:3},{value:"0.5.1 - 2022-06-13",id:"051---2022-06-13",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-43",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-37",children:[],level:4}],level:3},{value:"0.5.0 - 2022-06-11",id:"050---2022-06-11",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-21",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-31",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-44",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-38",children:[],level:4}],level:3},{value:"0.4.5 - 2022-06-08",id:"045---2022-06-08",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-45",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-39",children:[],level:4}],level:3},{value:"0.4.4 - 2022-06-08",id:"044---2022-06-08",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-22",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-32",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-46",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-14",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-40",children:[],level:4}],level:3},{value:"0.4.3 - 2022-06-03",id:"043---2022-06-03",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-33",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-47",children:[],level:4}],level:3},{value:"0.4.2 - 2022-06-02",id:"042---2022-06-02",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-48",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-15",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-41",children:[],level:4}],level:3},{value:"0.4.1 - 2022-06-02",id:"041---2022-06-02",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-23",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-34",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-49",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-16",children:[],level:4}],level:3},{value:"0.4.0 - 2022-06-01",id:"040---2022-06-01",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-24",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-35",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-50",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-16",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-42",children:[],level:4}],level:3},{value:"0.3.1 - 2022-05-19",id:"031---2022-05-19",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-36",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-51",children:[],level:4}],level:3},{value:"0.3.0 - 2022-05-17",id:"030---2022-05-17",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-25",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-37",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-52",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-43",children:[],level:4}],level:3},{value:"0.2.4 - 2022-05-13",id:"024---2022-05-13",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-53",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-44",children:[],level:4}],level:3},{value:"0.2.3 - 2022-04-29",id:"023---2022-04-29",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-26",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-54",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-17",children:[],level:4}],level:3},{value:"0.2.2 - 2022-04-22",id:"022---2022-04-22",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-38",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-55",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-17",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-45",children:[],level:4}],level:3},{value:"0.2.1 - 2022-04-08",id:"021---2022-04-08",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-39",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-46",children:[],level:4}],level:3},{value:"0.2.0 - 2022-04-04",id:"020---2022-04-04",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-27",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-40",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-56",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-18",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-47",children:[],level:4}],level:3},{value:"0.1.9 - 2022-03-25",id:"019---2022-03-25",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-28",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-41",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-57",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-19",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-48",children:[],level:4}],level:3},{value:"0.1.8 - 2022-03-18",id:"018---2022-03-18",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-42",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-58",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-20",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-18",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-49",children:[],level:4}],level:3},{value:"0.1.7 - 2022-03-15",id:"017---2022-03-15",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-29",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-43",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-59",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-21",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-19",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-50",children:[],level:4}],level:3},{value:"0.1.6 - 2022-03-11",id:"016---2022-03-11",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-30",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-44",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-60",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-22",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-51",children:[],level:4}],level:3},{value:"0.1.5 - 2022-03-08",id:"015---2022-03-08",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-31",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-45",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-61",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-23",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-20",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-52",children:[],level:4}],level:3},{value:"0.1.4 - 2022-03-01",id:"014---2022-03-01",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-62",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-21",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-53",children:[],level:4}],level:3},{value:"0.1.4-beta.0 - 2022-02-25",id:"014-beta0---2022-02-25",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-32",children:[],level:4}],level:3},{value:"0.1.3 - 2022-02-25",id:"013---2022-02-25",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-46",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-63",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-24",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-54",children:[],level:4}],level:3},{value:"0.1.2 - 2022-02-17",id:"012---2022-02-17",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-33",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-47",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-64",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-25",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-22",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-55",children:[],level:4}],level:3},{value:"0.1.2-beta.2 - 2022-01-03",id:"012-beta2---2022-01-03",children:[],level:3},{value:"0.1.2-beta.1 - 2021-12-22",id:"012-beta1---2021-12-22",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-56",children:[],level:4}],level:3},{value:"0.1.2-beta.0 - 2021-12-18",id:"012-beta0---2021-12-18",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-57",children:[],level:4}],level:3},{value:"0.1.1 - 2021-12-16",id:"011---2021-12-16",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-58",children:[],level:4}],level:3},{value:"0.1.1-beta.0 - 2021-12-09",id:"011-beta0---2021-12-09",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-59",children:[],level:4}],level:3},{value:"0.1.0 - 2021-11-17",id:"010---2021-11-17",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-60",children:[],level:4}],level:3},{value:"0.0.1 - 2021-11-17",id:"001---2021-11-17",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-61",children:[],level:4}],level:3}],r={toc:d},c="wrapper";function s(e){let{components:a,...t}=e;return(0,n.kt)(c,(0,i.Z)({},r,t,{components:a,mdxType:"MDXLayout"}),(0,n.kt)("h3",{id:"eea-design-system-10"},"EEA Design System (1.0)"),(0,n.kt)("h4",{id:"components-ready-to-be-used"},"Components ready to be used"),(0,n.kt)("p",null,"The following components are ready to be used as Volto ",(0,n.kt)("inlineCode",{parentName:"p"},"blocks"),", ",(0,n.kt)("inlineCode",{parentName:"p"},"slate")," integration, or via the advanced ",(0,n.kt)("inlineCode",{parentName:"p"},"block styler"),":"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Accordion ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Call to Action ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Callout - part of the Description ",(0,n.kt)("inlineCode",{parentName:"li"},"block"),", ",(0,n.kt)("inlineCode",{parentName:"li"},"slate")),(0,n.kt)("li",{parentName:"ul"},"Card - part of the Teaser ",(0,n.kt)("inlineCode",{parentName:"li"},"block")," and Listing ",(0,n.kt)("inlineCode",{parentName:"li"},"block"),", it includes several variations like round card e.g., used for Avatar"),(0,n.kt)("li",{parentName:"ul"},"Divider ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Headings ",(0,n.kt)("inlineCode",{parentName:"li"},"slate")),(0,n.kt)("li",{parentName:"ul"},"Hero ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Item ",(0,n.kt)("inlineCode",{parentName:"li"},"block")," - used for text with an icon (remixicon or custom SVG/image) on the left/right"),(0,n.kt)("li",{parentName:"ul"},"List ",(0,n.kt)("inlineCode",{parentName:"li"},"slate")," - ordered and unordered"),(0,n.kt)("li",{parentName:"ul"},"Quote ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Statistic ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Tag ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Table ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Tabs ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Timeline ",(0,n.kt)("inlineCode",{parentName:"li"},"block"))),(0,n.kt)("h4",{id:"future-releases"},"Future releases"),(0,n.kt)("p",null,"Below is a non-exhaustive list of the work-in-progress which is planned for future releases:"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Navigation Portlet (used on the left/right hand of content)"),(0,n.kt)("li",{parentName:"ul"},"Spacing/padding system. We want to add the ability for editors to consistently apply various spacing/padding on certain components in order to allow a better alignment when components are used together."),(0,n.kt)("li",{parentName:"ul"},"Improve docusaurus and storybook with more components, controls, and variations in order to better reflect what is possible in Volto.")),(0,n.kt)("p",null,"Generated by ",(0,n.kt)("a",{parentName:"p",href:"https://github.com/CookPete/auto-changelog"},(0,n.kt)("inlineCode",{parentName:"a"},"auto-changelog")),"."),(0,n.kt)("h3",{id:"unreleased---2023-04-03t145304159z"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.6...HEAD"},"Unreleased")," - 2023-04-03T14:53:04.159Z"),(0,n.kt)("h4",{id:"-enhancements"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(logos): updated eionet logo used in the site footer #318 from eea/footer-logo-update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70671d03bbc228e3013e382cb51e6764a83b01a8"},(0,n.kt)("inlineCode",{parentName:"a"},"70671d0"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumbs,mega-menu): better screen readers support, see links instead of groups #309 from eea/firefox-accessibility-tab-issues ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d6b0b4adba8f04799491025fb41ac97e875bcce0"},(0,n.kt)("inlineCode",{parentName:"a"},"d6b0b4a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): align menu items with demo site for better testing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/82a5c84cfde81dd8243f3f9a2d1fcaa8ac4b1463"},(0,n.kt)("inlineCode",{parentName:"a"},"82a5c84"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumbs): updates on structure and story for accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/770c8c0bce88c5d9301ab0293a8e4865849bfeb2"},(0,n.kt)("inlineCode",{parentName:"a"},"770c8c0"))),(0,n.kt)("li",{parentName:"ul"},"change(logo): update eionet svg ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c87fc750a3dc376205a643eefced410a41b22c6"},(0,n.kt)("inlineCode",{parentName:"a"},"3c87fc7"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): Restructure Topics and Countries lists ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d816e7ab9cdf2f202ab994201c16241cfb26c33a"},(0,n.kt)("inlineCode",{parentName:"a"},"d816e7a"))),(0,n.kt)("li",{parentName:"ul"},"change(mega-menu): use lists for navigation, enhance voice over support for better accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d13137f024d6357514b85f184d219eb81dd585f2"},(0,n.kt)("inlineCode",{parentName:"a"},"d13137f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): firefox accessibility errors fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c7d35b92b90940b466ea016dbbb3f1c6dfa0c3ab"},(0,n.kt)("inlineCode",{parentName:"a"},"c7d35b9"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumbs): label modification for better screen reader output ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c967bef63ac6f622f5936235dd5590831a674d15"},(0,n.kt)("inlineCode",{parentName:"a"},"c967bef"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): clean up function after test ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/883eb73cbc3db6a1fadd0200118eafdce91b7aab"},(0,n.kt)("inlineCode",{parentName:"a"},"883eb73"))),(0,n.kt)("li",{parentName:"ul"},"change(mega-menu): added code to align countries left column subtitle with the right column ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1aa33dd7ac7154a91515eef688f276d664d5d7f3"},(0,n.kt)("inlineCode",{parentName:"a"},"1aa33dd"))),(0,n.kt)("li",{parentName:"ul"},"change(mega-menu): sub-title padding tweaks for better spacing normalization ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e08668dd9fd948e57628e5582e7a4a7f08d96451"},(0,n.kt)("inlineCode",{parentName:"a"},"e08668d"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumbs): fixed sizing of breadcrumbs list items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1761e984a6ffebbcca0c7b88128a01235fc6b903"},(0,n.kt)("inlineCode",{parentName:"a"},"1761e98")))),(0,n.kt)("h4",{id:"-internal-changes"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(megaMenu): remove comments and unused properties ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fa5f8f878421d879026aacd86e5390112b8852a1"},(0,n.kt)("inlineCode",{parentName:"a"},"fa5f8f8")))),(0,n.kt)("h4",{id:"-documentation-changes"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(footer): logo update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ad982d63423442bc292cd7553ad3163b33b337bb"},(0,n.kt)("inlineCode",{parentName:"a"},"ad982d6")))),(0,n.kt)("h3",{id:"106---2023-03-29"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.5...1.0.6"},"1.0.6")," - 2023-03-29"),(0,n.kt)("h4",{id:"-new-features"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat: add viewport-(width/height) less functions and fixed banner image url #329 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e8e70bdc81f4f301a9dce370867a873e55563048"},(0,n.kt)("inlineCode",{parentName:"a"},"e8e70bd"))),(0,n.kt)("li",{parentName:"ul"},"feat: add viewport-(width/height) less functions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/68300a3c34e66954c7ef3a6e52baa37431fbfa9e"},(0,n.kt)("inlineCode",{parentName:"a"},"68300a3")))),(0,n.kt)("h4",{id:"-enhancements-1"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): set full class name for remix icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f435e10034b04cab4aeb301d8521559f98be299e"},(0,n.kt)("inlineCode",{parentName:"a"},"f435e10"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner.jsx): use flattenToAppURL helper function to get image source URL ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24b13d7c09a498ca889d413135c9abc4e6cab9ad"},(0,n.kt)("inlineCode",{parentName:"a"},"24b13d7")))),(0,n.kt)("h4",{id:"-internal-changes-1"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(theme): update container width and margins in eea theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e4446a3af641ddca03f1f2833dd6e79535feb98"},(0,n.kt)("inlineCode",{parentName:"a"},"3e4446a")))),(0,n.kt)("h4",{id:"\ufe0f-others"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"horizontal overflow hidden in view mode ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f395f276df003480a219bae639f87bebcf35799f"},(0,n.kt)("inlineCode",{parentName:"a"},"f395f27")))),(0,n.kt)("h3",{id:"105---2023-03-28"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.4...1.0.5"},"1.0.5")," - 2023-03-28"),(0,n.kt)("h4",{id:"-new-features-1"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat: improve full-width class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70bba7e295dd237e7c579ef0446ff05e0c8529d8"},(0,n.kt)("inlineCode",{parentName:"a"},"70bba7e")))),(0,n.kt)("h4",{id:"-bug-fixes"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(banner): Add missing divider for time tag #327 from eea/banner-metadata ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c46a58336ec9eb2ce75d2637f3197f417e8ca326"},(0,n.kt)("inlineCode",{parentName:"a"},"c46a583"))),(0,n.kt)("li",{parentName:"ul"},"fix(banner): Add missing divider for time tag ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d68c395d368a267baef4422df6e72f63d099b75"},(0,n.kt)("inlineCode",{parentName:"a"},"7d68c39")))),(0,n.kt)("h3",{id:"104---2023-03-27"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.3...1.0.4"},"1.0.4")," - 2023-03-27"),(0,n.kt)("h4",{id:"-new-features-2"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(copyright): Add copyright prefix - Image - refs #250724 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6a727723c15aee499ed7cedc9f364c5e2c8014bb"},(0,n.kt)("inlineCode",{parentName:"a"},"6a72772")))),(0,n.kt)("h4",{id:"-internal-changes-2"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(copyright): Cleanup useless min-height - refs #250724 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2457df6376ac1a4d00f87eee90e61f66f7ffebb"},(0,n.kt)("inlineCode",{parentName:"a"},"f2457df")))),(0,n.kt)("h4",{id:"\ufe0f-others-1"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cfd6eba8b01eceff4e28ab7ab51b2457672ac172"},(0,n.kt)("inlineCode",{parentName:"a"},"cfd6eba")))),(0,n.kt)("h3",{id:"103---2023-03-24"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.2...1.0.3"},"1.0.3")," - 2023-03-24"),(0,n.kt)("h4",{id:"-bug-fixes-1"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix: improve full-width class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93222590a630b27f3dfccb7df0a50070c9c9901c"},(0,n.kt)("inlineCode",{parentName:"a"},"9322259"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): Remove z-index from subsite logo #320 from eea/subsite-logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/50911009918faf7d3064d97ea7b685ad71970521"},(0,n.kt)("inlineCode",{parentName:"a"},"5091100"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): Remove z-index from subsite logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d433a9788d76db0f1c08ef6bb2313f479c2bb19b"},(0,n.kt)("inlineCode",{parentName:"a"},"d433a97")))),(0,n.kt)("h4",{id:"-enhancements-2"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(header): Add search popup customizations from eea-website-theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/43e5a78be8efa1098ea0fc87f43f40f2b5d482c1"},(0,n.kt)("inlineCode",{parentName:"a"},"43e5a78"))),(0,n.kt)("li",{parentName:"ul"},"change(popup): create custom popup for better accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/036aac95509b6d78b2d3b251578a7de878e28371"},(0,n.kt)("inlineCode",{parentName:"a"},"036aac9"))),(0,n.kt)("li",{parentName:"ul"},"change(popup): added most important popup properties from Semantic ui implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/61f65bc0e5806aaac33b54db36d5360fd05a48cc"},(0,n.kt)("inlineCode",{parentName:"a"},"61f65bc"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): use custom-made Popup for better accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/10d0fcfb28ca97efe9fa5c0f6c9c350b76a73140"},(0,n.kt)("inlineCode",{parentName:"a"},"10d0fcf"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): use custom-made Popup for better accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9108bee5f671505be5199e72a4749bb0af0c0cb9"},(0,n.kt)("inlineCode",{parentName:"a"},"9108bee"))),(0,n.kt)("li",{parentName:"ul"},"change(popup): added also the basic property ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4497acddde258ed31cda09f4d905e003a1e4611"},(0,n.kt)("inlineCode",{parentName:"a"},"a4497ac"))),(0,n.kt)("li",{parentName:"ul"},"change(colors): update gray-4 color value #321 from eea/update-gray-4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f458ff0965debd3629cdd78362244836d0d42687"},(0,n.kt)("inlineCode",{parentName:"a"},"f458ff0"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): MetadataField now uses proper time tag when value is datetime ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4c4d34d5905a6771a281fc3db1174b4998c8fa8"},(0,n.kt)("inlineCode",{parentName:"a"},"b4c4d34"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): updated gray-4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b890df7693880fb965e41752eda64df992a1cdc4"},(0,n.kt)("inlineCode",{parentName:"a"},"b890df7"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): Fix error and empty div if no social links are present #319 from eea/footer-social ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/89222466b76a4720af73c0d516074efec0757c34"},(0,n.kt)("inlineCode",{parentName:"a"},"8922246"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): Fix error and empty div if no social links are present ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5d934a6545ae783ff41dc9e3eda389c571d1369b"},(0,n.kt)("inlineCode",{parentName:"a"},"5d934a6")))),(0,n.kt)("h4",{id:"\ufe0f-others-2"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"lint ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca41def7a3743a8328f26cec868bd20395b62446"},(0,n.kt)("inlineCode",{parentName:"a"},"ca41def"))),(0,n.kt)("li",{parentName:"ul"},"refactor ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9789201c7966cd711bfa85fe448f6f6df2583eaf"},(0,n.kt)("inlineCode",{parentName:"a"},"9789201"))),(0,n.kt)("li",{parentName:"ul"},"lint ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/646dfaa729b51367ce7545ea928837a481a5485a"},(0,n.kt)("inlineCode",{parentName:"a"},"646dfaa"))),(0,n.kt)("li",{parentName:"ul"},"(feat):Page Header Banner accessibility #316 from eea/accesibility-banner ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e587f4657de137273053480a3536a066ab032a29"},(0,n.kt)("inlineCode",{parentName:"a"},"e587f46"))),(0,n.kt)("li",{parentName:"ul"},"storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c8c77de372060328d535b190f30747797db0d23a"},(0,n.kt)("inlineCode",{parentName:"a"},"c8c77de"))),(0,n.kt)("li",{parentName:"ul"},"banner accesibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5e2f23bae30b5bb14d3f607e0cfeb85d0cfe4a9f"},(0,n.kt)("inlineCode",{parentName:"a"},"5e2f23b"))),(0,n.kt)("li",{parentName:"ul"},"prettier ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6ed78e50ee68accca10b06b0790c231ddeb1a1fa"},(0,n.kt)("inlineCode",{parentName:"a"},"6ed78e5"))),(0,n.kt)("li",{parentName:"ul"},"cleaning ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4391aa6c6611d1a15f5977eb150416909ad83bc1"},(0,n.kt)("inlineCode",{parentName:"a"},"4391aa6"))),(0,n.kt)("li",{parentName:"ul"},"lint 3 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2e0bed19a24d8abfa230212cd8c09f8313dc00f2"},(0,n.kt)("inlineCode",{parentName:"a"},"2e0bed1"))),(0,n.kt)("li",{parentName:"ul"},"lint 1 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4c958034870a9861c542359144e3c56f9157994"},(0,n.kt)("inlineCode",{parentName:"a"},"b4c9580")))),(0,n.kt)("h3",{id:"102---2023-03-14"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.1...1.0.2"},"1.0.2")," - 2023-03-14"),(0,n.kt)("h4",{id:"-bug-fixes-2"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(megamenu): topic menu title is now placed before content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6004bcb2683dedf6d6e18e61f33fde84a54c38d5"},(0,n.kt)("inlineCode",{parentName:"a"},"6004bcb"))),(0,n.kt)("li",{parentName:"ul"},"fix(megamenu): removed in depth nav_title renaming that set title wrongly to a-z topics ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/899ca0e2ba5f8f9eb61e4280d786f74a17c186b7"},(0,n.kt)("inlineCode",{parentName:"a"},"899ca0e")))),(0,n.kt)("h4",{id:"-enhancements-3"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(megamenu): removed special styling from at a glance mega menu section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fd0c4c8a06bb4c4aa26f57c453132d13d30bc691"},(0,n.kt)("inlineCode",{parentName:"a"},"fd0c4c8"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): renamed thematic information platforms to environmental information systems ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e7004a7ea39451dbf97e1faed222b0cc5a12d6ce"},(0,n.kt)("inlineCode",{parentName:"a"},"e7004a7"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): updated static image of footer sections ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ff3185edf9257c790d2a124d3f937f61d84e147"},(0,n.kt)("inlineCode",{parentName:"a"},"4ff3185")))),(0,n.kt)("h4",{id:"-documentation-changes-1"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(What's new): Update 'What's new' ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d7ed9d619aa60d087c3821a972ebe5bf5766521a"},(0,n.kt)("inlineCode",{parentName:"a"},"d7ed9d6")))),(0,n.kt)("h4",{id:"\ufe0f-others-3"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fixed accordion selector typo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f4cabc8f2222cf587af9e04b0ea196799b84202f"},(0,n.kt)("inlineCode",{parentName:"a"},"f4cabc8")))),(0,n.kt)("h3",{id:"101---2023-03-13"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0...1.0.1"},"1.0.1")," - 2023-03-13"),(0,n.kt)("h3",{id:"100---2023-03-13"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-beta.6...1.0.0"},"1.0.0")," - 2023-03-13"),(0,n.kt)("h4",{id:"-bug-fixes-3"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(Footer): Open internal links within the same page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5b3e409c71281800bb0fd137a1bac256efaca2b5"},(0,n.kt)("inlineCode",{parentName:"a"},"5b3e409")))),(0,n.kt)("h4",{id:"-enhancements-4"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(banner): use huge scale instead of full image for better performance ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/381c58e3521436f562d9e1727428a18435e2c0f3"},(0,n.kt)("inlineCode",{parentName:"a"},"381c58e")))),(0,n.kt)("h3",{id:"100-beta6---2023-03-10"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-beta.5...1.0.0-beta.6"},"1.0.0-beta.6")," - 2023-03-10"),(0,n.kt)("h4",{id:"-new-features-3"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(site): serve Roboto fonts from eea design system package instead of google fonts #311 from eea/roboto-library ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6a1b3e3864a0bc8602e9c434ff70746bba59f44"},(0,n.kt)("inlineCode",{parentName:"a"},"f6a1b3e")))),(0,n.kt)("h4",{id:"-bug-fixes-4"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix: full-width is now properly sized ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e2e3482d658febbd692112608df14279bed05e7"},(0,n.kt)("inlineCode",{parentName:"a"},"6e2e348"))),(0,n.kt)("li",{parentName:"ul"},"fix(storybook): add fontDisplay ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/078966a6a5c7277d36fcd31bb4c0704bcc43e523"},(0,n.kt)("inlineCode",{parentName:"a"},"078966a")))),(0,n.kt)("h4",{id:"-enhancements-5"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(image): copyright position fixes, moved image floating to image-block-container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53422e0ea345a7cb6e8cb07bf9006b48d86ded58"},(0,n.kt)("inlineCode",{parentName:"a"},"53422e0"))),(0,n.kt)("li",{parentName:"ul"},"change(colors:) update the design system colour palette #312 from eea/update-color-palette ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a5fb69465717dbdc0fe8091640a0e46f66199b65"},(0,n.kt)("inlineCode",{parentName:"a"},"a5fb694"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): added roboto library ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19de7b19fe795870102000bfebbf452d88b3a7b1"},(0,n.kt)("inlineCode",{parentName:"a"},"19de7b1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): added roboto library ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e9916215728dda0ff423f8196e7442588058042e"},(0,n.kt)("inlineCode",{parentName:"a"},"e991621"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): update colours ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3a2c1e1da8f0224e08f9f8afac3f0a74f7ce91d3"},(0,n.kt)("inlineCode",{parentName:"a"},"3a2c1e1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): restored site variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a48478bae9bdf1d9275be999e1ec8382f10a2fec"},(0,n.kt)("inlineCode",{parentName:"a"},"a48478b"))),(0,n.kt)("li",{parentName:"ul"},"change(copyright): implemented copyright hover design ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6b1244163de7ff58d1529fdd791502c862ee48ec"},(0,n.kt)("inlineCode",{parentName:"a"},"6b12441")))),(0,n.kt)("h4",{id:"-internal-changes-3"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(storybook): switched google fonts to true ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a8cae46582356cc24ec3cd7ec47e692bc67a6a5"},(0,n.kt)("inlineCode",{parentName:"a"},"4a8cae4"))),(0,n.kt)("li",{parentName:"ul"},"chore(colours): changed back yellow 6 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87c9bbc0ec9a2a0f4bf8eeb03525d43ce6f502be"},(0,n.kt)("inlineCode",{parentName:"a"},"87c9bbc"))),(0,n.kt)("li",{parentName:"ul"},"chore(lint): lint ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9b0f1256a8b0a583ac7724a8d88259c615d7e0c7"},(0,n.kt)("inlineCode",{parentName:"a"},"9b0f125"))),(0,n.kt)("li",{parentName:"ul"},"chore(storybook): lint ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/29bc809ab2e9fa4207b8b067785e6b17e91db3b4"},(0,n.kt)("inlineCode",{parentName:"a"},"29bc809")))),(0,n.kt)("h4",{id:"-documentation-changes-2"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(colours): colours update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/161007e2480aa79517c4ca772364a12a0756f1af"},(0,n.kt)("inlineCode",{parentName:"a"},"161007e"))),(0,n.kt)("li",{parentName:"ul"},"docs(colours): accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee342aa6af3863d243222eaa89709be2ba61f988"},(0,n.kt)("inlineCode",{parentName:"a"},"ee342aa")))),(0,n.kt)("h4",{id:"\ufe0f-others-4"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"test(cypress): Use latest stable Volto for testing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/20516617ae045f48c37a7ac7ad05c3d1090339b3"},(0,n.kt)("inlineCode",{parentName:"a"},"2051661"))),(0,n.kt)("li",{parentName:"ul"},"Update What's new section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/caa4b5d93affa7b63a332eaed9e73ea161a508cf"},(0,n.kt)("inlineCode",{parentName:"a"},"caa4b5d"))),(0,n.kt)("li",{parentName:"ul"},"Prepare final release 1.0.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef4383d05b295cbbb377f877522b9f83cd0873ef"},(0,n.kt)("inlineCode",{parentName:"a"},"ef4383d"))),(0,n.kt)("li",{parentName:"ul"},"lint fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/599f5098904f607bd694dd5d2e642c8820f11b3c"},(0,n.kt)("inlineCode",{parentName:"a"},"599f509"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/80cd3df3534e46e52ba246256c3d990a52753bbd"},(0,n.kt)("inlineCode",{parentName:"a"},"80cd3df")))),(0,n.kt)("h3",{id:"100-beta5---2023-03-07"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-beta.4...1.0.0-beta.5"},"1.0.0-beta.5")," - 2023-03-07"),(0,n.kt)("h4",{id:"-enhancements-6"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(carousel): tweak size of carousel dots for better touch interaction ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e1fb8230806de2e157a9a5ea87e63765769565b4"},(0,n.kt)("inlineCode",{parentName:"a"},"e1fb823"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): removed min width and height from links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac33219fb77f23bb5148355551a7aad9f453d2e7"},(0,n.kt)("inlineCode",{parentName:"a"},"ac33219")))),(0,n.kt)("h4",{id:"-internal-changes-4"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(hiddenStructure): Add hiddenStructure utility to be used with h1 heading on frontpage - refs #158717 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/672cca2401003f56e5ea104f18103ea090e38fd7"},(0,n.kt)("inlineCode",{parentName:"a"},"672cca2")))),(0,n.kt)("h4",{id:"\ufe0f-others-5"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fixed less build failure due to changes in footer.less ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/190bc8cfa88191b45808f1e27c6e2737ee3d15b1"},(0,n.kt)("inlineCode",{parentName:"a"},"190bc8c"))),(0,n.kt)("li",{parentName:"ul"},"lazyload bg img on footer also ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ae07162ba1b27bff58fed70eaabc28c78c5f45a3"},(0,n.kt)("inlineCode",{parentName:"a"},"ae07162"))),(0,n.kt)("li",{parentName:"ul"},"lazyload footer images ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a0633c9ec4ccfb63a48eb4e4c4a63c90daac1a37"},(0,n.kt)("inlineCode",{parentName:"a"},"a0633c9"))),(0,n.kt)("li",{parentName:"ul"},"Increase performance - mobile friendly ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/07d86c8e77568f91d50b3a45248de9427140a295"},(0,n.kt)("inlineCode",{parentName:"a"},"07d86c8"))),(0,n.kt)("li",{parentName:"ul"},"better useOnScreen hook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c214b6b76443f81c795ce2f3aa457562ec088b30"},(0,n.kt)("inlineCode",{parentName:"a"},"c214b6b"))),(0,n.kt)("li",{parentName:"ul"},"role change for accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5e758e0a7fa8c56ba688d0a43de5890686f14ea3"},(0,n.kt)("inlineCode",{parentName:"a"},"5e758e0"))),(0,n.kt)("li",{parentName:"ul"},"minimum tap dimension for mobile ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a25e9a8ba8a8a0f24d287ed7513e549ae2caab0f"},(0,n.kt)("inlineCode",{parentName:"a"},"a25e9a8"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-beta.5 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e4417e121477511c350ae3fbe4e70aadb445ed86"},(0,n.kt)("inlineCode",{parentName:"a"},"e4417e1"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using eea-website-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b227cf8a8c44b9d91e9fda8a7999fb0a42bacdca"},(0,n.kt)("inlineCode",{parentName:"a"},"b227cf8"))),(0,n.kt)("li",{parentName:"ul"},"feature(mobile): increased performance by lazy loading footer images #303 from eea/increase_performance ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/80d1df1c459680331d486f9e8e6a95c9db0adbf6"},(0,n.kt)("inlineCode",{parentName:"a"},"80d1df1"))),(0,n.kt)("li",{parentName:"ul"},"useOnScreen default export ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e6cfdd4dcb814aad328f97be7af41af071ccba6"},(0,n.kt)("inlineCode",{parentName:"a"},"3e6cfdd"))),(0,n.kt)("li",{parentName:"ul"},"use aria-labels on dropdown ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/27e144315416ceace0f01def03b5b24640f5c7da"},(0,n.kt)("inlineCode",{parentName:"a"},"27e1443"))),(0,n.kt)("li",{parentName:"ul"},"prettier ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7f838470c1bcc4e2be115d514d92a1b686a5e9b"},(0,n.kt)("inlineCode",{parentName:"a"},"a7f8384")))),(0,n.kt)("h3",{id:"100-beta4---2023-03-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-beta.3...1.0.0-beta.4"},"1.0.0-beta.4")," - 2023-03-01"),(0,n.kt)("h4",{id:"-new-features-4"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(footer): Add footer description ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ad0f714556c5b8c2fd95a2caea5c3a1e82c75d1"},(0,n.kt)("inlineCode",{parentName:"a"},"2ad0f71"))),(0,n.kt)("li",{parentName:"ul"},"feat(footer): Add footer description #306 from eea/footer-description ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bf655d133dd75b217c34b3d4303ad450a59f2c51"},(0,n.kt)("inlineCode",{parentName:"a"},"bf655d1")))),(0,n.kt)("h4",{id:"-bug-fixes-5"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(footer): Don't show empty row if description is not present ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ca7f7d3247668ae8583b8cd629856aac82eb07d"},(0,n.kt)("inlineCode",{parentName:"a"},"2ca7f7d"))),(0,n.kt)("li",{parentName:"ul"},"fix(footer): Add class for children ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c50d15cd6ed46d78ef10d48fd851ed7c4b5ddea"},(0,n.kt)("inlineCode",{parentName:"a"},"3c50d15"))),(0,n.kt)("li",{parentName:"ul"},"fix(search): Fix search links color #307 from eea/search-accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a76f48bab3a7d3f6b748eaa85b33266401372e40"},(0,n.kt)("inlineCode",{parentName:"a"},"a76f48b"))),(0,n.kt)("li",{parentName:"ul"},"fix(search): Fix search links color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/69c42effc5bdc3d31f18de74d77a3b7cc0018dc5"},(0,n.kt)("inlineCode",{parentName:"a"},"69c42ef")))),(0,n.kt)("h4",{id:"-enhancements-7"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(carousel): tweak card width and padding for better arrow alignment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e184f70062d622e1ec53e8e1e2b012c080e62d77"},(0,n.kt)("inlineCode",{parentName:"a"},"e184f70"))),(0,n.kt)("li",{parentName:"ul"},"change(storybook): include footer description in storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e904aa0850e101d736e8d045e822d9a58b75ff6a"},(0,n.kt)("inlineCode",{parentName:"a"},"e904aa0")))),(0,n.kt)("h4",{id:"\ufe0f-others-6"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-beta.4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8c335c56c5a2a76ea87f9da318055770f904e649"},(0,n.kt)("inlineCode",{parentName:"a"},"8c335c5"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/38b03333066416915b056f8ac45da4de87ed7184"},(0,n.kt)("inlineCode",{parentName:"a"},"38b0333")))),(0,n.kt)("h3",{id:"100-beta3---2023-02-21"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-beta.2...1.0.0-beta.3"},"1.0.0-beta.3")," - 2023-02-21"),(0,n.kt)("h4",{id:"-new-features-5"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(accordion): storybook accessibility by using buttons for titles #297 from eea/accessibility-accordion ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/809d52b203ef40fab735006b3b8358d68682f7cf"},(0,n.kt)("inlineCode",{parentName:"a"},"809d52b")))),(0,n.kt)("h4",{id:"-bug-fixes-6"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(dropdown): remove close on blur so that we can navigate links using keyboard ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5442715e022b3eb2eeb709ff597f815947ac45bd"},(0,n.kt)("inlineCode",{parentName:"a"},"5442715")))),(0,n.kt)("h4",{id:"-enhancements-8"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(language): dropdown to use links for proper keyboard navigation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6a7de30d9d229443d6d2070d9649129e6d35badf"},(0,n.kt)("inlineCode",{parentName:"a"},"6a7de30"))),(0,n.kt)("li",{parentName:"ul"},"refactor(images): cleared unused/renamed images assets ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/821f5c1da5c1e2350818cd9b8b82bc0b1893370d"},(0,n.kt)("inlineCode",{parentName:"a"},"821f5c1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Accessibility): add box-shadow on focus-visible components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b1adcc315a89c7d3431e542e8d1b6ec479a346e2"},(0,n.kt)("inlineCode",{parentName:"a"},"b1adcc3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(images): remove unused docusaurus svgs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5ef14cdb1923d803feb673559d41b3064211653"},(0,n.kt)("inlineCode",{parentName:"a"},"c5ef14c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add escape key functionality, actions from div to button to have proper focus state ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8081aa4e3b77f8a3dc89aa358408d75e3dca5579"},(0,n.kt)("inlineCode",{parentName:"a"},"8081aa4"))),(0,n.kt)("li",{parentName:"ul"},"change(language): restore dropdown duplication in order to properly show and hide language dropdown ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb28888ff19bd9894b58403e674f69de42ad8d09"},(0,n.kt)("inlineCode",{parentName:"a"},"cb28888"))),(0,n.kt)("li",{parentName:"ul"},"change(search): to reflect changes from eea-website-theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2cc35e0da6e6eac1473724293fcf6cd6b0a914b5"},(0,n.kt)("inlineCode",{parentName:"a"},"2cc35e0"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update p with h3 heading tag for header ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca1477b554f56423d40a33d8ee788c3f3bd3e341"},(0,n.kt)("inlineCode",{parentName:"a"},"ca1477b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer images): removed unused/renamed ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/186de6b23906e05ec700c3db5180a4d7f7e5ed68"},(0,n.kt)("inlineCode",{parentName:"a"},"186de6b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Accordion): div titles to buttons, test in mobile mega menu accordions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/eaad4b479e37ebf5ac004cfc5759e0be603000a7"},(0,n.kt)("inlineCode",{parentName:"a"},"eaad4b4"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): cleanup decorative images ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fedc4d4dc156f9c1394fcedcebece4fb87dc70b6"},(0,n.kt)("inlineCode",{parentName:"a"},"fedc4d4"))),(0,n.kt)("li",{parentName:"ul"},"change(accessibility): style outline instead of box-shadow ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53209f3b28c9a1dd54a8a86ab418b8bc2a8e01b3"},(0,n.kt)("inlineCode",{parentName:"a"},"53209f3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Footer): update mobile header size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/01ab7f0d9abe688b3d96aaec018838e1abefec73"},(0,n.kt)("inlineCode",{parentName:"a"},"01ab7f0"))),(0,n.kt)("li",{parentName:"ul"},"change(header): set the logo class directly on the link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f8fba508f925d9e6b86720fcb2c7dcfffee4ab5e"},(0,n.kt)("inlineCode",{parentName:"a"},"f8fba50"))),(0,n.kt)("li",{parentName:"ul"},"refactor(images): clear docusaurus unused pngs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/db5c61124182e3030f753f6baa294fbdecaa3798"},(0,n.kt)("inlineCode",{parentName:"a"},"db5c611"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header-images): removed unused ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8250d94421d9d1ee13144e71bc0938af2b7309f5"},(0,n.kt)("inlineCode",{parentName:"a"},"8250d94"))),(0,n.kt)("li",{parentName:"ul"},"change(language): hide language dropdown by default ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cc6064f72dcb4dbf96e9b05205cc796775d75205"},(0,n.kt)("inlineCode",{parentName:"a"},"cc6064f"))),(0,n.kt)("li",{parentName:"ul"},"change(header): top dropdown menu keyboard navigation #293 from eea/accessibility-megamenu-searchbox ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1e6fa658e52b9d5e6cc38f065b5707b592005241"},(0,n.kt)("inlineCode",{parentName:"a"},"1e6fa65"))),(0,n.kt)("li",{parentName:"ul"},"change(button): set focus styling for buttons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/33ebfcacb014fca365ae58079bfa5429d9007e54"},(0,n.kt)("inlineCode",{parentName:"a"},"33ebfca"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): Avoid devtools warning in FooterActions #304 from eea/avoid_warning ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d774824c5d3d0998b3440ac83152428cfa821087"},(0,n.kt)("inlineCode",{parentName:"a"},"d774824"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): Accessibility update p with h3 heading tag for theme sites title #302 from eea/footer-accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5bf70de97aee216a0b88f5843a290c6bcb5da6f2"},(0,n.kt)("inlineCode",{parentName:"a"},"5bf70de"))),(0,n.kt)("li",{parentName:"ul"},"change(documentation): Rename all image files to follow the agreed convention #301 from eea/refactor-image-filenames ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cfe44ef79943af9b9179df1b8ec5f8c743e8bb39"},(0,n.kt)("inlineCode",{parentName:"a"},"cfe44ef")))),(0,n.kt)("h4",{id:"-internal-changes-5"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(header): react syntax fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3add1271c785a92bea0ef925d7bc562cef1e0d92"},(0,n.kt)("inlineCode",{parentName:"a"},"3add127"))),(0,n.kt)("li",{parentName:"ul"},"chore(docusaurus): ignore website/.yarn ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0b33ffd1dda61b126e3cc5ff48888124d6aee41b"},(0,n.kt)("inlineCode",{parentName:"a"},"0b33ffd")))),(0,n.kt)("h4",{id:"-documentation-changes-3"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(guidelines): add image name convention ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/290747c8df6919199577bc7fce6a0e337cb57853"},(0,n.kt)("inlineCode",{parentName:"a"},"290747c")))),(0,n.kt)("h4",{id:"\ufe0f-others-7"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Avoid warning in FooterActions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0fe73d70e44e32be73049f3b5cf826de42115942"},(0,n.kt)("inlineCode",{parentName:"a"},"0fe73d7"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-beta.3 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/386c9032d39317b0bb95191bd59e3b7a99bded69"},(0,n.kt)("inlineCode",{parentName:"a"},"386c903")))),(0,n.kt)("h3",{id:"100-beta2---2023-02-13"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-beta.1...1.0.0-beta.2"},"1.0.0-beta.2")," - 2023-02-13"),(0,n.kt)("h4",{id:"-bug-fixes-7"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(footer): action and copyright #300 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/579f3e436e9608b38a2407a16c070345462bfccc"},(0,n.kt)("inlineCode",{parentName:"a"},"579f3e4"))),(0,n.kt)("li",{parentName:"ul"},"fix(footer): action or copyright links are simple a tags for external link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9af5070187ec975e58387f133afedcf1bbc47a50"},(0,n.kt)("inlineCode",{parentName:"a"},"9af5070"))),(0,n.kt)("li",{parentName:"ul"},"fix(accessibility): added navigation and footer id's for skip link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48354b908e7d1a87b4e1a965d225e8f1b3e0ac59"},(0,n.kt)("inlineCode",{parentName:"a"},"48354b9")))),(0,n.kt)("h4",{id:"-enhancements-9"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(footer): typos and modified footer links to be center aligned ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac23f046bcac06525985dff7520bb2766dec44ec"},(0,n.kt)("inlineCode",{parentName:"a"},"ac23f04"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): added gap for actions and copyright ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d32ddd3c28a48c6c2fb73dea373bb5873b6f76b"},(0,n.kt)("inlineCode",{parentName:"a"},"7d32ddd"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): modified footer gap ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8a820ac90c7d6664e4d4655c2c06edfa976c64e"},(0,n.kt)("inlineCode",{parentName:"a"},"b8a820a"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): removed extra text and date from copyright section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af47bbec298678fece6f879fbc18fe2e01ab0894"},(0,n.kt)("inlineCode",{parentName:"a"},"af47bbe"))),(0,n.kt)("li",{parentName:"ul"},"change(navigation): raise z-index of go to top link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/485ca7291da7a156b6b580c42e46d4f3602211bb"},(0,n.kt)("inlineCode",{parentName:"a"},"485ca72")))),(0,n.kt)("h4",{id:"-internal-changes-6"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(docs): Update eea.hbs template to beta - refs #158717 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/196538ed7bb9dab36a0efb4cef84e96dd3038ff8"},(0,n.kt)("inlineCode",{parentName:"a"},"196538e")))),(0,n.kt)("h4",{id:"\ufe0f-others-8"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change version to beta 2 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cbb07981454b28de840561eca281888e8bc29f9e"},(0,n.kt)("inlineCode",{parentName:"a"},"cbb0798"))),(0,n.kt)("li",{parentName:"ul"},"Beta release ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ad51b3c2bbb75f19af14fa56afdbddf57b6c95e"},(0,n.kt)("inlineCode",{parentName:"a"},"4ad51b3")))),(0,n.kt)("h3",{id:"100-beta1---2023-02-09"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.15...1.0.0-beta.1"},"1.0.0-beta.1")," - 2023-02-09"),(0,n.kt)("h4",{id:"-new-features-6"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(search): Add search suggestions style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6b2b77bbaba11541606ae2bc1f4e8ffc823f470d"},(0,n.kt)("inlineCode",{parentName:"a"},"6b2b77b"))),(0,n.kt)("li",{parentName:"ul"},"feat(search): Add search suggestions style #296 from eea/search-suggestions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3b0c956f569ebdc8400b88249c45067a1f881264"},(0,n.kt)("inlineCode",{parentName:"a"},"3b0c956")))),(0,n.kt)("h4",{id:"-enhancements-10"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(search): Add proper margin for search popup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/190c9f5be570215586086f42aebc7e36d6a26ea2"},(0,n.kt)("inlineCode",{parentName:"a"},"190c9f5")))),(0,n.kt)("h4",{id:"\ufe0f-others-9"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Extra bottom padding for header menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4f38c7a96d93fbcd47de4ec60176de2a667c5643"},(0,n.kt)("inlineCode",{parentName:"a"},"4f38c7a"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-beta.1 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4384ae28597c725f66ab0f1361ffd5167ee5e3a1"},(0,n.kt)("inlineCode",{parentName:"a"},"4384ae2"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c2ee90c1754f17a304897839adf482bc2a111212"},(0,n.kt)("inlineCode",{parentName:"a"},"c2ee90c")))),(0,n.kt)("h3",{id:"100-alpha15---2023-02-08"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.14...1.0.0-alpha.15"},"1.0.0-alpha.15")," - 2023-02-08"),(0,n.kt)("h4",{id:"-new-features-7"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(Card): add teaser card grid story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53cac0b0d1c40ad6ad8c9dc91c5d24bfb160f98e"},(0,n.kt)("inlineCode",{parentName:"a"},"53cac0b"))),(0,n.kt)("li",{parentName:"ul"},"feat(utilities): Complete list of text-align utilities - refs #160747 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/224fab602184b8974f588c91a7412e3d03e4e2f7"},(0,n.kt)("inlineCode",{parentName:"a"},"224fab6"))),(0,n.kt)("li",{parentName:"ul"},"feat(small): CSS for small HTML tag - refs #160747 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ad3c0adec4efa7cead69153d399c6452131c94cc"},(0,n.kt)("inlineCode",{parentName:"a"},"ad3c0ad"))),(0,n.kt)("li",{parentName:"ul"},"feat(fw-light): Add font weight light utility - refs #160747 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c44cf57db5845fbb9c07233aeedab79e1438f80f"},(0,n.kt)("inlineCode",{parentName:"a"},"c44cf57")))),(0,n.kt)("h4",{id:"-bug-fixes-8"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(card): teaser card dimensions on tablet size #290 from eea/teaser-card-grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/013fdf5cad347aee14bdc51553dbd95d972a7c66"},(0,n.kt)("inlineCode",{parentName:"a"},"013fdf5")))),(0,n.kt)("h4",{id:"-enhancements-11"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(card): added extra content for teaser card story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/30690ae6c499682853cb19db10b0cdc13c6f9508"},(0,n.kt)("inlineCode",{parentName:"a"},"30690ae"))),(0,n.kt)("li",{parentName:"ul"},"refactor(style-menu): add text-color to paragraphs styles #291 from eea/stylemenu-theme-colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2d783075b8089184e50b1763226af0d60ed11786"},(0,n.kt)("inlineCode",{parentName:"a"},"2d78307"))),(0,n.kt)("li",{parentName:"ul"},"change(header): Small fix in search popup #292 from eea/search-popup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/86c130539455b9a00b4b088b1871a98b9756df79"},(0,n.kt)("inlineCode",{parentName:"a"},"86c1305"))),(0,n.kt)("li",{parentName:"ul"},"refactor(style-menu): add text-color to paragraphs styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3446bc2704603bbfead7ff6c72d4e3a1ce81c7d4"},(0,n.kt)("inlineCode",{parentName:"a"},"3446bc2"))),(0,n.kt)("li",{parentName:"ul"},"change(color): darkCyan is now replaced everywhere by the new green ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef3791de6e2ea23487791c717eefc575e21fd283"},(0,n.kt)("inlineCode",{parentName:"a"},"ef3791d"))),(0,n.kt)("li",{parentName:"ul"},"change(header): Small fix in search popup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3d622ea99df5a1f1088f70998e38fd5bf43997cf"},(0,n.kt)("inlineCode",{parentName:"a"},"3d622ea")))),(0,n.kt)("h4",{id:"\ufe0f-others-10"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Release alpha 15 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3b72b29aaf9b3e1bfb7015808aafbd73a7167895"},(0,n.kt)("inlineCode",{parentName:"a"},"3b72b29")))),(0,n.kt)("h3",{id:"100-alpha14---2023-01-30"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.13.1...1.0.0-alpha.14"},"1.0.0-alpha.14")," - 2023-01-30"),(0,n.kt)("h4",{id:"-enhancements-12"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(mobile menu): integrate a-z topic with menu rendering logic #287 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/05d4c04603e6572cd6f9b255faa03c4636d8efdb"},(0,n.kt)("inlineCode",{parentName:"a"},"05d4c04"))),(0,n.kt)("li",{parentName:"ul"},"change(mobile menu): integrate a-z topic with menu rendering logic ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/246d3d839b773e2f6e1fff7fed5f9aa7a4968daa"},(0,n.kt)("inlineCode",{parentName:"a"},"246d3d8")))),(0,n.kt)("h4",{id:"\ufe0f-others-11"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"bump release to alpha 14 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/92f01975a809553ed122824c8407c74da9132c23"},(0,n.kt)("inlineCode",{parentName:"a"},"92f0197"))),(0,n.kt)("li",{parentName:"ul"},"link fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e1c12a132a1a99d773af359ebce071fb37c7e661"},(0,n.kt)("inlineCode",{parentName:"a"},"e1c12a1")))),(0,n.kt)("h3",{id:"100-alpha131---2023-01-30"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.13...1.0.0-alpha.13.1"},"1.0.0-alpha.13.1")," - 2023-01-30"),(0,n.kt)("h4",{id:"-enhancements-13"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(mobile menu): hardcode a-z topics to '/en/topics-in-depth' #286 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6436224e1922fb5d4b4053c874cebe5c57b2a6b9"},(0,n.kt)("inlineCode",{parentName:"a"},"6436224"))),(0,n.kt)("li",{parentName:"ul"},"change(mobile menu): hardcode a-z topics to '/en/topics-in-depth' ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5235b52047a80a8b626aa5ef3ef304c4d9a82003"},(0,n.kt)("inlineCode",{parentName:"a"},"5235b52")))),(0,n.kt)("h4",{id:"\ufe0f-others-12"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change release to 13.1 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70aa5648e7d9e14796445323b6ebaf7733cc7fd8"},(0,n.kt)("inlineCode",{parentName:"a"},"70aa564")))),(0,n.kt)("h3",{id:"100-alpha13---2023-01-27"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.12...1.0.0-alpha.13"},"1.0.0-alpha.13")," - 2023-01-27"),(0,n.kt)("h4",{id:"-new-features-8"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(utilities): added has--bg--top center and bottom utility classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/051e6d7c33aca7947802ddaa9fe68ac41ed7fe11"},(0,n.kt)("inlineCode",{parentName:"a"},"051e6d7")))),(0,n.kt)("h4",{id:"-bug-fixes-9"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(header): update green color used in page header #284 from eea/fix-banner-background ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/29d54db06487d18a367202725e525ac26e5b7c58"},(0,n.kt)("inlineCode",{parentName:"a"},"29d54db")))),(0,n.kt)("h4",{id:"-enhancements-14"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(site): added fixes from customVolto.css to design package ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51ba9b5df0186bdf075d803dea6032bac52e540f"},(0,n.kt)("inlineCode",{parentName:"a"},"51ba9b5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner): update banner background green color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fd4a552d9ff7a2973ebd6d18b6fbfd9bba5d98c6"},(0,n.kt)("inlineCode",{parentName:"a"},"fd4a552"))),(0,n.kt)("li",{parentName:"ul"},"change(mobile menu): changed link for a-z topics to point to in depth ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/721bf237d23d2a8e47fc2132912646c4ce182c9d"},(0,n.kt)("inlineCode",{parentName:"a"},"721bf23")))),(0,n.kt)("h4",{id:"\ufe0f-others-13"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"1.0.0-alpha.13 release #285 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c96694005e2d4160876f6a900db13940d42266d5"},(0,n.kt)("inlineCode",{parentName:"a"},"c966940"))),(0,n.kt)("li",{parentName:"ul"},"bump next version to alpha 13 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/897e9069062282f1b5cd8d86a02b8e54c40a4690"},(0,n.kt)("inlineCode",{parentName:"a"},"897e906"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5780dc7abeb24da5e77b043a34593ff7a44f350d"},(0,n.kt)("inlineCode",{parentName:"a"},"5780dc7")))),(0,n.kt)("h3",{id:"100-alpha12---2023-01-24"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.11...1.0.0-alpha.12"},"1.0.0-alpha.12")," - 2023-01-24"),(0,n.kt)("h4",{id:"-new-features-9"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(card, colors): visited color change and title on image option for cards #283 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e638ee6b77885fd5989179aa9e6532e46e475247"},(0,n.kt)("inlineCode",{parentName:"a"},"e638ee6")))),(0,n.kt)("h4",{id:"-bug-fixes-10"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(mobile menu): sub links when an accordion section is active ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bb3be81416340ad0e3e992cd4e75642fc50f8ad3"},(0,n.kt)("inlineCode",{parentName:"a"},"bb3be81")))),(0,n.kt)("h4",{id:"-enhancements-15"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(Card): create card template for stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2fa77f3f93935dd01cd5e3d77437fe8dc03721da"},(0,n.kt)("inlineCode",{parentName:"a"},"2fa77f3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Card): add image with title css ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e6e63e2362a27b0bbf4b8dd968f11a0dc87da2a"},(0,n.kt)("inlineCode",{parentName:"a"},"6e6e63e"))),(0,n.kt)("li",{parentName:"ul"},"change(card): implement title on image within image section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff6cc600978355e04dde704d014d2cbe27df1298"},(0,n.kt)("inlineCode",{parentName:"a"},"ff6cc60"))),(0,n.kt)("li",{parentName:"ul"},"change(card): added image card section, tweaked mobile heading size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0f879e15d22ae066f020d8188ef3e355c27d016c"},(0,n.kt)("inlineCode",{parentName:"a"},"0f879e1"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): moved image gradient overlay to a mixin.less file ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8b4928a87bfe5fae6f64c93d7c8f1f7a3045816c"},(0,n.kt)("inlineCode",{parentName:"a"},"8b4928a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): Update titles value and size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c35ad5c76caa00556f8a501d2e7d516464790dc4"},(0,n.kt)("inlineCode",{parentName:"a"},"c35ad5c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): applied image naming convention ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee7bc290084e198f9f94e40fbf44c6d9cb19d1ba"},(0,n.kt)("inlineCode",{parentName:"a"},"ee7bc29"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): added image for all storybook card examples ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3f194130bb6fb7b9ab04a7e1305f26fa135c23d2"},(0,n.kt)("inlineCode",{parentName:"a"},"3f19413"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): restored label value of metadata field when type isn't date ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/571a4f27fe73d0465b6482f70dd70b2dc47dffe8"},(0,n.kt)("inlineCode",{parentName:"a"},"571a4f2"))),(0,n.kt)("li",{parentName:"ul"},"change(card): title padding value for a more balance look ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/74b65563d973eb9c6afc534935e253f2705fe9ee"},(0,n.kt)("inlineCode",{parentName:"a"},"74b6556"))),(0,n.kt)("li",{parentName:"ul"},"change(card): removed uppercase transform from title on image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2948ae16f748911929910ac53d1e0acf96952317"},(0,n.kt)("inlineCode",{parentName:"a"},"2948ae1"))),(0,n.kt)("li",{parentName:"ul"},"change(colors, Docusaurus): Visited link colour change and thematic logo replacement #278 from eea/refactor-visited-link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f82d9781cc3b34443f181565c2ec1892d534f8e2"},(0,n.kt)("inlineCode",{parentName:"a"},"f82d978"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): visited link variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b209b2f7703641926c6d4b1f7162eef39b2a1ad8"},(0,n.kt)("inlineCode",{parentName:"a"},"b209b2f")))),(0,n.kt)("h4",{id:"-documentation-changes-4"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(colors): visited link update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ece77fec130de1d9d8014d40e7da975bf57061ee"},(0,n.kt)("inlineCode",{parentName:"a"},"ece77fe")))),(0,n.kt)("h4",{id:"\ufe0f-others-14"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix typos in footer gradient variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/40066405d97af838e986370101371a8162029e02"},(0,n.kt)("inlineCode",{parentName:"a"},"4006640"))),(0,n.kt)("li",{parentName:"ul"},"change version to alpha 12 instead of 1 final ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32250253f5d7fe9f01126136ad86b8a4f2f5c700"},(0,n.kt)("inlineCode",{parentName:"a"},"3225025"))),(0,n.kt)("li",{parentName:"ul"},"feature(card): new card variation with title on top of image #267 from eea/title-on-image-card ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2c0ca95700bb162bc1273c83f2fc4f591de8dcf0"},(0,n.kt)("inlineCode",{parentName:"a"},"2c0ca95"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/477d997513ef5152ab98e080ad07f927b5869705"},(0,n.kt)("inlineCode",{parentName:"a"},"477d997")))),(0,n.kt)("h3",{id:"100-alpha11---2023-01-17"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.10...1.0.0-alpha.11"},"1.0.0-alpha.11")," - 2023-01-17"),(0,n.kt)("h4",{id:"-new-features-10"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(docusaurus): Header and footer elements section #277 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0df271c4c79bd8a24750cfe44d69f32cb04a1b63"},(0,n.kt)("inlineCode",{parentName:"a"},"0df271c")))),(0,n.kt)("h4",{id:"-bug-fixes-11"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(banner): storybook date input and simplified gradient opacity ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7674d767bb770342828d6bea6953ce45b823943f"},(0,n.kt)("inlineCode",{parentName:"a"},"7674d76"))),(0,n.kt)("li",{parentName:"ul"},"fix(banner): re-added title class on banner title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d157994934c3da9af4e3dd37844f910bddf8377"},(0,n.kt)("inlineCode",{parentName:"a"},"6d15799")))),(0,n.kt)("h4",{id:"-enhancements-16"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(banner): sync storybook and Volto component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c9087cc8edc3fb27e0b96b509354861ec306f22a"},(0,n.kt)("inlineCode",{parentName:"a"},"c9087cc"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): removed margin from title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/17e592c4f3fd16a78069af50574e2ac608166a0f"},(0,n.kt)("inlineCode",{parentName:"a"},"17e592c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): sync storybook and Volto component #275 from eea/sync-page-banner-theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4331fb4a6d5744e7d7d6a001bca91265a22587fd"},(0,n.kt)("inlineCode",{parentName:"a"},"4331fb4")))),(0,n.kt)("h4",{id:"-documentation-changes-5"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(footer): updates on header elements ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b41c550475dc5a2eefcad5d75439601d079613e2"},(0,n.kt)("inlineCode",{parentName:"a"},"b41c550"))),(0,n.kt)("li",{parentName:"ul"},"docs(footer): add elements anatomy ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d9f0872f93a6f7572f798b2c001d3af00eb282e3"},(0,n.kt)("inlineCode",{parentName:"a"},"d9f0872")))),(0,n.kt)("h4",{id:"\ufe0f-others-15"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"add(banner): banner title css ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d0032474d2b57eb63a4b50a882ced2ee743a48e6"},(0,n.kt)("inlineCode",{parentName:"a"},"d003247"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-alpha.11 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/07e8f858b0bdeaa6a348c0bfc2b785f26017e1ea"},(0,n.kt)("inlineCode",{parentName:"a"},"07e8f85"))),(0,n.kt)("li",{parentName:"ul"},"renamed image elements as requested in review ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8541fb6739d3c935ed8d44a220114546b2aef682"},(0,n.kt)("inlineCode",{parentName:"a"},"8541fb6"))),(0,n.kt)("li",{parentName:"ul"},"remove(banner-gradiant): image gradiant in favour of text ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1b58520490be5e17ea4ce6fc98329d467dad3960"},(0,n.kt)("inlineCode",{parentName:"a"},"1b58520"))),(0,n.kt)("li",{parentName:"ul"},"update(gradient): use 8deg angle ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6fd597d8d7a83fdf8a27939e4c69dfc3975b6a81"},(0,n.kt)("inlineCode",{parentName:"a"},"6fd597d"))),(0,n.kt)("li",{parentName:"ul"},"update(gradiant): make it 0deg ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1bb2696375eef233b509e27d9d464b8343421430"},(0,n.kt)("inlineCode",{parentName:"a"},"1bb2696"))),(0,n.kt)("li",{parentName:"ul"},"remove(comment) referencing old verison of title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4226d42e34b119e057cf4e9878b6a99172cb976a"},(0,n.kt)("inlineCode",{parentName:"a"},"4226d42")))),(0,n.kt)("h3",{id:"100-alpha10---2023-01-13"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.9...1.0.0-alpha.10"},"1.0.0-alpha.10")," - 2023-01-13"),(0,n.kt)("h4",{id:"-bug-fixes-12"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(subsite): Fix logo size on subsite section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/65fff54503a9ace573dc7198f6bedb372e65d211"},(0,n.kt)("inlineCode",{parentName:"a"},"65fff54"))),(0,n.kt)("li",{parentName:"ul"},"fix(subsite): Fix logo size on subsite section #279 from eea/subsite-fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f6cf94811dbebc2081c0ca812570a72dd977b06"},(0,n.kt)("inlineCode",{parentName:"a"},"8f6cf94"))),(0,n.kt)("li",{parentName:"ul"},"fix(mega-menu): show sub grid only if there are children ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ddfbd82aab2be723ae230d703f72a8cd489f17d8"},(0,n.kt)("inlineCode",{parentName:"a"},"ddfbd82")))),(0,n.kt)("h4",{id:"\ufe0f-others-16"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Add variable definitions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/293fe65e2f24e6290e1286229169a77f9be4750e"},(0,n.kt)("inlineCode",{parentName:"a"},"293fe65"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-alpha.10 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7014d080ce114bd0bc039abeecbd7229333b0971"},(0,n.kt)("inlineCode",{parentName:"a"},"7014d08"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using advisory-board-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef58a6f5ad8deea26b1395a86778fe1159b7617b"},(0,n.kt)("inlineCode",{parentName:"a"},"ef58a6f"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/31d461662b9184a7bbe190e86f3c47fab39229fe"},(0,n.kt)("inlineCode",{parentName:"a"},"31d4616")))),(0,n.kt)("h3",{id:"100-alpha9---2022-12-28"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.8...1.0.0-alpha.9"},"1.0.0-alpha.9")," - 2022-12-28"),(0,n.kt)("h4",{id:"-enhancements-17"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(contextnav): Default title is text, custom title is link #273 from eea/context-nav-link-title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef7bdb7c40cd12c3d7e059074aa5797b8cb3378c"},(0,n.kt)("inlineCode",{parentName:"a"},"ef7bdb7")))),(0,n.kt)("h4",{id:"\ufe0f-others-17"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Show document and folder content-type in Navigation listing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8471db3b3d555e8602f1076d0f96a2ba38a12247"},(0,n.kt)("inlineCode",{parentName:"a"},"8471db3"))),(0,n.kt)("li",{parentName:"ul"},"Default title is text, custom title is link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1ae95b05b67423121566448c6b0cededca4b2b1d"},(0,n.kt)("inlineCode",{parentName:"a"},"1ae95b0"))),(0,n.kt)("li",{parentName:"ul"},"Context nav title link to # ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a27a6b78bcda0eb6037f73f1d36b06e00e3ffc52"},(0,n.kt)("inlineCode",{parentName:"a"},"a27a6b7")))),(0,n.kt)("h3",{id:"100-alpha8---2022-12-23"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.7...1.0.0-alpha.8"},"1.0.0-alpha.8")," - 2022-12-23"),(0,n.kt)("h4",{id:"-new-features-11"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(copyright): Align copyright options with Volto integration - refs #158210 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6bac7f6a9ad969af4be1c8c08a18a1144d5bad63"},(0,n.kt)("inlineCode",{parentName:"a"},"6bac7f6")))),(0,n.kt)("h4",{id:"-enhancements-18"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(logo): import theme site logos to the story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2f29136ca457f2419ca25a5292a036b2cd0fc402"},(0,n.kt)("inlineCode",{parentName:"a"},"2f29136"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logo): update logo and mega search gradient ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e11f44d59334fc02e3833a133b20e7b2240a2022"},(0,n.kt)("inlineCode",{parentName:"a"},"e11f44d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logos): convert logo names to lowercase ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/07b822864490b4cc63bef94f3306466ba5933e16"},(0,n.kt)("inlineCode",{parentName:"a"},"07b8228"))),(0,n.kt)("li",{parentName:"ul"},"change(item): use default logic of setting align class on content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6b5b47c10ce5a6d3710bedd492aa3d362d62d225"},(0,n.kt)("inlineCode",{parentName:"a"},"6b5b47c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logo): update logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/170efe5bfc7fd4988f4a4d4aac18ace32c360cd6"},(0,n.kt)("inlineCode",{parentName:"a"},"170efe5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logos): convert storybook logo names to lowercase ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4b24ec8796f8fffd87158a55f4ac19624ebe04c"},(0,n.kt)("inlineCode",{parentName:"a"},"c4b24ec"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logo): add eea roboto font logo variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/de1224a97568c0b48b509c65170a6080d8a058d4"},(0,n.kt)("inlineCode",{parentName:"a"},"de1224a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logo): add container and segment to logo story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/61eff16fcd080194fe1187656d67ef73a7dd4d6c"},(0,n.kt)("inlineCode",{parentName:"a"},"61eff16"))),(0,n.kt)("li",{parentName:"ul"},"change(item): removed requirement for aligned classes to be on content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/30c0d5d2de7ac05172cfb726b60a8bd763de7b31"},(0,n.kt)("inlineCode",{parentName:"a"},"30c0d5d"))),(0,n.kt)("li",{parentName:"ul"},"change(logos): cleanup eea logo reference to only eea-logo and eea-logo-white.svg ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2796e054a21a9025036c8b2882afe23a6984cd37"},(0,n.kt)("inlineCode",{parentName:"a"},"2796e05")))),(0,n.kt)("h4",{id:"-internal-changes-7"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(npmignore): Reduce npmjs package size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/164c8a5ad0f7241eb8e30c53eccfdff9cec1fb93"},(0,n.kt)("inlineCode",{parentName:"a"},"164c8a5"))),(0,n.kt)("li",{parentName:"ul"},"chore(npmignore): Reduce npmjs package size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ade9d5ba3411efc47cdd3b461fd60b2b7389f9be"},(0,n.kt)("inlineCode",{parentName:"a"},"ade9d5b"))),(0,n.kt)("li",{parentName:"ul"},"chore(docs): renamed logo mdx to md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/52e9d46bb2decabdc935eeee84dacc3e063e3616"},(0,n.kt)("inlineCode",{parentName:"a"},"52e9d46")))),(0,n.kt)("h4",{id:"-documentation-changes-6"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(logos): svgs without classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/28a58336ac57deb3eec7287b6fbf5cd58ada8a7e"},(0,n.kt)("inlineCode",{parentName:"a"},"28a5833"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): add dark mode logos ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ccc1609643cff5f851942ab95198d44252ddb22e"},(0,n.kt)("inlineCode",{parentName:"a"},"ccc1609"))),(0,n.kt)("li",{parentName:"ul"},"docs(logo): update eea logos and add logo wrapper ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91cdd6636dfb102e4712177ad5fa7e952eb6ea45"},(0,n.kt)("inlineCode",{parentName:"a"},"91cdd66"))),(0,n.kt)("li",{parentName:"ul"},"docs(logo): update logos on docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/760e1012892ab28b25e8d9b0de50cfa0ba07addf"},(0,n.kt)("inlineCode",{parentName:"a"},"760e101"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): updated svgs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dc224e1dbcf46a29b0639afde694d44221affe27"},(0,n.kt)("inlineCode",{parentName:"a"},"dc224e1"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): add thematic logos ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5a21a3076e506e6bd7f82fa97697f81825e87255"},(0,n.kt)("inlineCode",{parentName:"a"},"5a21a30"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): add zipped svgs for download ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5855bf83b471a9849ee71370d7eee4f6a1d12a44"},(0,n.kt)("inlineCode",{parentName:"a"},"5855bf8"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): wisef logo update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f90b59d03c1c4eaa760dd981e082f237c09e96f"},(0,n.kt)("inlineCode",{parentName:"a"},"8f90b59"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): move to static, add download ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8c1fd5f9a64bd8fb976687fe5ed96bc515b95393"},(0,n.kt)("inlineCode",{parentName:"a"},"8c1fd5f"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): improve eea logo visibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/82188abb99aa080d7bea15975497e03c653d311c"},(0,n.kt)("inlineCode",{parentName:"a"},"82188ab"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): change eea logo to svg ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f57b846ca9d635f5af4d1adeee280a5adcaf7b5f"},(0,n.kt)("inlineCode",{parentName:"a"},"f57b846")))),(0,n.kt)("h4",{id:"\ufe0f-others-18"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"logo update or docusaurus thematic logo listing #274 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dde90beb68ac129e476ece22e7ced4640786f094"},(0,n.kt)("inlineCode",{parentName:"a"},"dde90be"))),(0,n.kt)("li",{parentName:"ul"},"(feat): Add ability to disable the language select from website top menu - refs #158616 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/411c8e4afaf0b2b9edfdeeecdca22aa4cc41f329"},(0,n.kt)("inlineCode",{parentName:"a"},"411c8e4"))),(0,n.kt)("li",{parentName:"ul"},"Proof reading page header section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/230239e1b22734fb8606656985bc5e513731e244"},(0,n.kt)("inlineCode",{parentName:"a"},"230239e"))),(0,n.kt)("li",{parentName:"ul"},"bump package version ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4628bed134abc76e38a243d4e98143e19cef989"},(0,n.kt)("inlineCode",{parentName:"a"},"b4628be"))),(0,n.kt)("li",{parentName:"ul"},"feature(docusaurus, storybook): logos selection for sites plus inverted options #253 from eea/doc-logo-page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dbfc90d035dc40e9d4054347f00fde4de486d63d"},(0,n.kt)("inlineCode",{parentName:"a"},"dbfc90d"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using advisory-board-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4769e987d525f5dcafac8e6cf8a89fd8111667d"},(0,n.kt)("inlineCode",{parentName:"a"},"c4769e9"))),(0,n.kt)("li",{parentName:"ul"},"test(Jenkins): Run tests and cypress with latest canary @plone/volto ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/92feea09796c9ef0530f65fa1d34139905133215"},(0,n.kt)("inlineCode",{parentName:"a"},"92feea0")))),(0,n.kt)("h3",{id:"100-alpha7---2022-12-16"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.6...1.0.0-alpha.7"},"1.0.0-alpha.7")," - 2022-12-16"),(0,n.kt)("h4",{id:"-new-features-12"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(item): normalized size for image or icon items #258 from eea/refactor-items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/945170f1503be68aa3fc1bd950a97eeebfd81037"},(0,n.kt)("inlineCode",{parentName:"a"},"945170f")))),(0,n.kt)("h4",{id:"-bug-fixes-13"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(card): rounded after removal of has--rounded--true style class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4727afdecf3d25e3e5bc98d472b976d60154183"},(0,n.kt)("inlineCode",{parentName:"a"},"d4727af"))),(0,n.kt)("li",{parentName:"ul"},"fix(item): removed margin set for description which pushed the text from icon ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d9d40310fcfb1bd214bd901b79dcbac41e9a8518"},(0,n.kt)("inlineCode",{parentName:"a"},"d9d4031"))),(0,n.kt)("li",{parentName:"ul"},"fix(project): Proper paths if volto-eea-design-system package is not installed, but in development #270 from eea/correct_paths ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0f8ee8d770f1b26d4315be8f615d58a61acbafc8"},(0,n.kt)("inlineCode",{parentName:"a"},"0f8ee8d")))),(0,n.kt)("h4",{id:"-enhancements-19"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(item): update icon variations and paddings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6a407b3e7f743eb7b73247bcc5d489685d567bc6"},(0,n.kt)("inlineCode",{parentName:"a"},"6a407b3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): update spacing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2fd91c4aa1a76dd2f7099d3f24f94067e95e06a1"},(0,n.kt)("inlineCode",{parentName:"a"},"2fd91c4"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): initial values for new sizes & add description class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3546296f0cacb96411c8c67b98e9763e2b843b05"},(0,n.kt)("inlineCode",{parentName:"a"},"3546296"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): add icon and more size options ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1120bb62d9ab908c5c97a4871a66e3c08c5c7ece"},(0,n.kt)("inlineCode",{parentName:"a"},"1120bb6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): update image and icon sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8025735121aaa0024a5783afbde0f6be3715618"},(0,n.kt)("inlineCode",{parentName:"a"},"b802573"))),(0,n.kt)("li",{parentName:"ul"},"change(item): set same height as width on item images ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/69cbd23ca53dd68ae9f7c00a69ed2d8820746305"},(0,n.kt)("inlineCode",{parentName:"a"},"69cbd23"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): update item part 2 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9812ae2e41ac86cfd4c56e13af8af570b752966f"},(0,n.kt)("inlineCode",{parentName:"a"},"9812ae2"))),(0,n.kt)("li",{parentName:"ul"},"change(item): rename large to big class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24ff1275b9a0556b85ab86757bc0c84f50357e7d"},(0,n.kt)("inlineCode",{parentName:"a"},"24ff127"))),(0,n.kt)("li",{parentName:"ul"},"change(item): added tiny size that outputs 24px icon sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ea96363a957f9033cb5bfe2d7fd311e92377493"},(0,n.kt)("inlineCode",{parentName:"a"},"2ea9636"))),(0,n.kt)("li",{parentName:"ul"},"change(image): added preview image size default to 400px ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a0aa867e932d1b3c0bf449553726d6feb645853e"},(0,n.kt)("inlineCode",{parentName:"a"},"a0aa867"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): update operator for condition controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/149ccb2f1e498c27e5550214cdee25eb808ab27e"},(0,n.kt)("inlineCode",{parentName:"a"},"149ccb2")))),(0,n.kt)("h4",{id:"\ufe0f-others-19"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Proper paths if the package is not installed, but in development ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7a2655f7cf9d3c687f172eefcf2b4cff4b12f832"},(0,n.kt)("inlineCode",{parentName:"a"},"7a2655f"))),(0,n.kt)("li",{parentName:"ul"},"Update .project.eslintrc.js ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a2fd3f23473325976c2b146e066eeb538d140dce"},(0,n.kt)("inlineCode",{parentName:"a"},"a2fd3f2"))),(0,n.kt)("li",{parentName:"ul"},"added back descriptionDistance variable until package release ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3af811a8d86a132e16de118697ba5a4302a8a4da"},(0,n.kt)("inlineCode",{parentName:"a"},"3af811a"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-alpha.7 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e66bcc296b389bc55073e7f99681534977dce3a"},(0,n.kt)("inlineCode",{parentName:"a"},"7e66bcc"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using cca-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce47e9b163bcb4eda988e3a87718b54ffbd3f99f"},(0,n.kt)("inlineCode",{parentName:"a"},"ce47e9b"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb531c933c907bdbb88c9de0f1df2eb7ce899a4c"},(0,n.kt)("inlineCode",{parentName:"a"},"cb531c9")))),(0,n.kt)("h3",{id:"100-alpha6---2022-12-07"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.5...1.0.0-alpha.6"},"1.0.0-alpha.6")," - 2022-12-07"),(0,n.kt)("h4",{id:"-new-features-13"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(copyright): create copyright component and import it in banner ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8fcde9df2915585e2336024436cef76642820d75"},(0,n.kt)("inlineCode",{parentName:"a"},"8fcde9d"))),(0,n.kt)("li",{parentName:"ul"},"feat(Header): add hideSearch prop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/13ddfe59a6bd7fe2050b70ac4524a6f6c5c169ea"},(0,n.kt)("inlineCode",{parentName:"a"},"13ddfe5"))),(0,n.kt)("li",{parentName:"ul"},"feat(Docusaurus): Image copyright information #257 from eea/image-copyright-info ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/21195153240da052acb7171f7904449ed7854cb3"},(0,n.kt)("inlineCode",{parentName:"a"},"2119515")))),(0,n.kt)("h4",{id:"-bug-fixes-14"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(tags): content gap when using tags-content wrapper ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4eb9b89d4ea09f936b7fcdc22a84105fd8639af"},(0,n.kt)("inlineCode",{parentName:"a"},"c4eb9b8")))),(0,n.kt)("h4",{id:"-enhancements-20"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(hero): add copyright component to hero ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0fa88fad3e7b48789dc6d0462b9f78dd359b8949"},(0,n.kt)("inlineCode",{parentName:"a"},"0fa88fa"))),(0,n.kt)("li",{parentName:"ul"},"change(copyright): implementation to add classes on content sections ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e10bde674f2b1f722ec6c70734e4a72c018f4afe"},(0,n.kt)("inlineCode",{parentName:"a"},"e10bde6"))),(0,n.kt)("li",{parentName:"ul"},"change(copyright): removed color variant ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/747b8a27155569247d4975837587e3320327fce9"},(0,n.kt)("inlineCode",{parentName:"a"},"747b8a2"))),(0,n.kt)("li",{parentName:"ul"},"change(copyright): removed copyrightVariant from Banner and Hero stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac62e079d4eafb818f9cae25880a04d9e069d107"},(0,n.kt)("inlineCode",{parentName:"a"},"ac62e07"))),(0,n.kt)("li",{parentName:"ul"},"change(tagList): modified implementation to align to volto-tags-block ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7a57a3d4bf7ede4b5ab5f3ef045d664aaaf67f2c"},(0,n.kt)("inlineCode",{parentName:"a"},"7a57a3d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(copyright): remove data section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/52cb09dc363bb0a2e363ec86dcefb4c57e07a14d"},(0,n.kt)("inlineCode",{parentName:"a"},"52cb09d"))),(0,n.kt)("li",{parentName:"ul"},"change(copyright): line height to match page header implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a56254e7588cfc6aca999f550084d79dca6e9a6c"},(0,n.kt)("inlineCode",{parentName:"a"},"a56254e"))),(0,n.kt)("li",{parentName:"ul"},"change(copyright): now uses text color css variable with fallback to white ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee7268ba359f079dfce45fd0fe91f75ae5c37e94"},(0,n.kt)("inlineCode",{parentName:"a"},"ee7268b")))),(0,n.kt)("h4",{id:"-documentation-changes-7"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(copyright): copyright documentation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a90ed766e60b5eb5b027beb36d2b1967d2c41fa3"},(0,n.kt)("inlineCode",{parentName:"a"},"a90ed76")))),(0,n.kt)("h4",{id:"\ufe0f-others-20"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Update usage_markdown.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f76d4a242f795451d64ef2d192d0006a0ed5eac1"},(0,n.kt)("inlineCode",{parentName:"a"},"f76d4a2"))),(0,n.kt)("li",{parentName:"ul"},"grammar fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb2a5a5fd9dfc01eccc179721b06988742f5b2e2"},(0,n.kt)("inlineCode",{parentName:"a"},"cb2a5a5"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-alpha.6 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6ca32f03c1860781d3c1c4ff9558713ad8acac95"},(0,n.kt)("inlineCode",{parentName:"a"},"6ca32f0"))),(0,n.kt)("li",{parentName:"ul"},"feature(copyright): image information #250 from eea/feature-copyright ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a8618c7f0230a19b6c973aa2c9646463de9eeffb"},(0,n.kt)("inlineCode",{parentName:"a"},"a8618c7"))),(0,n.kt)("li",{parentName:"ul"},"lint fix by introducing local variable tagsGap ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7b6c0ae2ebfed06221700faf9a0d0c2bdeb60d99"},(0,n.kt)("inlineCode",{parentName:"a"},"7b6c0ae"))),(0,n.kt)("li",{parentName:"ul"},"Update 3-images.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1b0ef033f9c8a36aaa739f268263f24a6d0fb473"},(0,n.kt)("inlineCode",{parentName:"a"},"1b0ef03")))),(0,n.kt)("h3",{id:"100-alpha5---2022-11-29"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.4...1.0.0-alpha.5"},"1.0.0-alpha.5")," - 2022-11-29"),(0,n.kt)("h4",{id:"-new-features-14"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(Iconography): import and showcase remix icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/777112f7e77ce8c74c3fd4384bff6ec9694aba04"},(0,n.kt)("inlineCode",{parentName:"a"},"777112f")))),(0,n.kt)("h4",{id:"-bug-fixes-15"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(docusaurus): right bar overflow fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/197c763624f70556c62379bc0751763725d0fed3"},(0,n.kt)("inlineCode",{parentName:"a"},"197c763"))),(0,n.kt)("li",{parentName:"ul"},"fix(lists): bullet position by using padding instead of margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0ecae2e7fe61b98d8795f876a525fbbc873bf799"},(0,n.kt)("inlineCode",{parentName:"a"},"0ecae2e"))),(0,n.kt)("li",{parentName:"ul"},"fix(label): color for yellow variant as white isn't accessible on yellow color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91d8880a829d2728c49a1953f6d2d8c2c812990c"},(0,n.kt)("inlineCode",{parentName:"a"},"91d8880"))),(0,n.kt)("li",{parentName:"ul"},"fix(contentBox): avoid text decoration for header-link added on cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ccb592db6f465cec59124b94fb6918b513bb761"},(0,n.kt)("inlineCode",{parentName:"a"},"3ccb592"))),(0,n.kt)("li",{parentName:"ul"},"fix(label): margin value for ribbon image left and right margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f8e1129734709d6034539a6522105af9d43fef20"},(0,n.kt)("inlineCode",{parentName:"a"},"f8e1129")))),(0,n.kt)("h4",{id:"-enhancements-21"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): eea color palette in separate file ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6c855df9c2238f8d21860ade4578aa969b68448e"},(0,n.kt)("inlineCode",{parentName:"a"},"6c855df"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): classes for color boxes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/80219d52bc63842d8e6382dbbe7d43cdc8a29b9c"},(0,n.kt)("inlineCode",{parentName:"a"},"80219d5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): move supplementary, state and link colors to partials ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2776be32615d7a6bdd8561a523fb9cfb1a85e38b"},(0,n.kt)("inlineCode",{parentName:"a"},"2776be3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): fix side menu / moved more content in palette partial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f5b70775471369ca8f3193784b9bc66caa8fb76f"},(0,n.kt)("inlineCode",{parentName:"a"},"f5b7077"))),(0,n.kt)("li",{parentName:"ul"},"change(tag): set gap on tags element for margin between tag elements ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/726bc6da821a366a5afa03659e614cc73ed02c0b"},(0,n.kt)("inlineCode",{parentName:"a"},"726bc6d")))),(0,n.kt)("h4",{id:"-internal-changes-8"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(colours): fix wrong class name ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51ad0a8232f7f35cae05f5861d7822db852b3f8d"},(0,n.kt)("inlineCode",{parentName:"a"},"51ad0a8")))),(0,n.kt)("h4",{id:"-documentation-changes-8"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): Iconography updates, thematic platforms ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2a0e596bd002290e0759d8c5e568da4d318f7d59"},(0,n.kt)("inlineCode",{parentName:"a"},"2a0e596"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): thematic pages integration ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea7a4220a93d3fd2f437b51462f7f19d99f52595"},(0,n.kt)("inlineCode",{parentName:"a"},"ea7a422"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): color updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cc13b5499a9ae13bb45925a057f8ff4d6a2e4643"},(0,n.kt)("inlineCode",{parentName:"a"},"cc13b54"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): fix swatches accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/306cb74d3e06390a9c15da9b8b29c9d3c8f0f6c5"},(0,n.kt)("inlineCode",{parentName:"a"},"306cb74"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): typography and colors fixes according to comments on PR ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ae20a7258cc88465fa0937895c2999952736f456"},(0,n.kt)("inlineCode",{parentName:"a"},"ae20a72"))),(0,n.kt)("li",{parentName:"ul"},"docs(colours): adjust logos heights ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/854d4fb761be7307e83e5dd2eb0fe5a0117727c5"},(0,n.kt)("inlineCode",{parentName:"a"},"854d4fb"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): merge designer and dev units ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/65c240eddbf20b3fc870d301b96837f49ad9caca"},(0,n.kt)("inlineCode",{parentName:"a"},"65c240e"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): readded extra font sizes, fixed fluid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4a5d892538a9713d14ac718b1bf2c771be09810"},(0,n.kt)("inlineCode",{parentName:"a"},"a4a5d89"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): changed em to percentages ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4176007ff4b421bc988b618488e0ba6b550f9fe"},(0,n.kt)("inlineCode",{parentName:"a"},"d417600"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): minors updates and instructions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/84ac8828e430b4af2b461534b4e2f81189080145"},(0,n.kt)("inlineCode",{parentName:"a"},"84ac882"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): blue-grey-6 adjustment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e7ab2d15d3a617bc5b3713897f3e3521d9e2720a"},(0,n.kt)("inlineCode",{parentName:"a"},"e7ab2d1"))),(0,n.kt)("li",{parentName:"ul"},"docs(colours): added active colour ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/574f7a95ea8a9510d03a104ad72fafafcae5d738"},(0,n.kt)("inlineCode",{parentName:"a"},"574f7a9"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): switch FISE logo to png ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/335471fd95bbd78cd7bd80b960272baa0a32e1c5"},(0,n.kt)("inlineCode",{parentName:"a"},"335471f"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): updated visited ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0248fd164cbf85168945797244977c305c67608d"},(0,n.kt)("inlineCode",{parentName:"a"},"0248fd1"))),(0,n.kt)("li",{parentName:"ul"},"docs(FISE): replaced logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f7d833127f769d79f099618b98789c6929b4ba08"},(0,n.kt)("inlineCode",{parentName:"a"},"f7d8331")))),(0,n.kt)("h4",{id:"\ufe0f-others-21"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"perf(docusaurus): added remixicon and roboto locally ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b67b1a72bc9cdc7c62a25967e81b430f8b62d558"},(0,n.kt)("inlineCode",{parentName:"a"},"b67b1a7"))),(0,n.kt)("li",{parentName:"ul"},"feature(Docusaurus): Updates on color palette information including thematic websites #231 from eea/refactor-docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ec7843dea07f626dc1c71ae1baa8bb5b0caa52f3"},(0,n.kt)("inlineCode",{parentName:"a"},"ec7843d"))),(0,n.kt)("li",{parentName:"ul"},"Upgrade Jenkinsfile storybook to yarn 3 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d20de8d6e21a14660b7b5125a80218a8a6f19e62"},(0,n.kt)("inlineCode",{parentName:"a"},"d20de8d"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/563fbc5fac0d4b0295690d0a3a4e04271753f18a"},(0,n.kt)("inlineCode",{parentName:"a"},"563fbc5")))),(0,n.kt)("h3",{id:"100-alpha4---2022-11-22"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.3...1.0.0-alpha.4"},"1.0.0-alpha.4")," - 2022-11-22"),(0,n.kt)("h4",{id:"-bug-fixes-16"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(cards-storybook): load slick carousel css for arrow and pagination styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1159b1beea0d7f7e026f1f1181fea91b7ac38ffa"},(0,n.kt)("inlineCode",{parentName:"a"},"1159b1b")))),(0,n.kt)("h4",{id:"-enhancements-22"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(cards): refactor cards theming implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4e454238d540ef306f4c1a4f8e9a94c7aa10189"},(0,n.kt)("inlineCode",{parentName:"a"},"d4e4542"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): allow rounded, inverted and theme parameter to be set by has classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4b4ad893fc5d39629b4e8d874327f31ea2e7d885"},(0,n.kt)("inlineCode",{parentName:"a"},"4b4ad89"))),(0,n.kt)("li",{parentName:"ul"},"change(card): expect has classes on the card directly ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6a9e38bcae0656685a99b47800d556813663d2ee"},(0,n.kt)("inlineCode",{parentName:"a"},"6a9e38b"))),(0,n.kt)("li",{parentName:"ul"},"change(utilities): added has text classes to the text alignment utilities ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e6974c634551fe0d19a9c9da269f5c6fbaefab7a"},(0,n.kt)("inlineCode",{parentName:"a"},"e6974c6"))),(0,n.kt)("li",{parentName:"ul"},"change(utilities): modified class name for text align using has naming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/579a0cbe0f704eb9305119fdd162f4f29c8086d5"},(0,n.kt)("inlineCode",{parentName:"a"},"579a0cb"))),(0,n.kt)("li",{parentName:"ul"},"change(theme): ensure that only direct children of container have a default top and bottom margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7f8b8dcc72827004d366e1c531311cf8734053fc"},(0,n.kt)("inlineCode",{parentName:"a"},"7f8b8dc"))),(0,n.kt)("li",{parentName:"ul"},"change(build): upgrade action to trigger workflow and wait to latest version ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c63ad3fdae7972bb2c722dea3d046861fa0ac086"},(0,n.kt)("inlineCode",{parentName:"a"},"c63ad3f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): theming implementation to allow has theming classes #265 from eea/card-refactoring ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24edc99d85c0c619fc763a8774a96f7208f529a5"},(0,n.kt)("inlineCode",{parentName:"a"},"24edc99"))),(0,n.kt)("li",{parentName:"ul"},"change(theme): add slick-carousel dependency ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2eec7d7233adf86b9c4f61670eb87d9754ff94c"},(0,n.kt)("inlineCode",{parentName:"a"},"f2eec7d")))),(0,n.kt)("h4",{id:"\ufe0f-others-22"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Update eea.github.io on all commits in develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3d0b8d745138bd2e0219560c8c895ce2c56dbf04"},(0,n.kt)("inlineCode",{parentName:"a"},"3d0b8d7"))),(0,n.kt)("li",{parentName:"ul"},"Exclude mockups from npm package ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/634af8e3ddabec36a18597d8d7638888269875fc"},(0,n.kt)("inlineCode",{parentName:"a"},"634af8e"))),(0,n.kt)("li",{parentName:"ul"},"fix rounded selector ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1fa15442f03d3f3d9ef59afa14075b061483cf3a"},(0,n.kt)("inlineCode",{parentName:"a"},"1fa1544"))),(0,n.kt)("li",{parentName:"ul"},"Trigger re-build ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3566dd2b4d2cd12496e05b792c85a78de550dd50"},(0,n.kt)("inlineCode",{parentName:"a"},"3566dd2"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea47f6f10097f23f635d98f0c5483bebf8378fc4"},(0,n.kt)("inlineCode",{parentName:"a"},"ea47f6f")))),(0,n.kt)("h3",{id:"100-alpha3---2022-11-16"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.2...1.0.0-alpha.3"},"1.0.0-alpha.3")," - 2022-11-16"),(0,n.kt)("h4",{id:"-new-features-15"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(Header): Add subsite section styling #263 from eea/subsite ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/00398b8a6c5d83241c30d0ba85d95c115edf2480"},(0,n.kt)("inlineCode",{parentName:"a"},"00398b8")))),(0,n.kt)("h4",{id:"-bug-fixes-17"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(search): position now changed by default to absolute from relative ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51b08fc217e25c1391a2bac0b42a8c3f7ae091c7"},(0,n.kt)("inlineCode",{parentName:"a"},"51b08fc"))),(0,n.kt)("li",{parentName:"ul"},"fix(megaMenu): remove paddings for buttons added by active class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ec33ebfe23a6064c88383ab465bd45edee2dba9b"},(0,n.kt)("inlineCode",{parentName:"a"},"ec33ebf")))),(0,n.kt)("h4",{id:"-enhancements-23"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(components): load overrides files for our defined semantic files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/adde7a9519f38fa779d8d038f3b6817281f0b4a2"},(0,n.kt)("inlineCode",{parentName:"a"},"adde7a9"))),(0,n.kt)("li",{parentName:"ul"},"change(container): fullwidth now take into account devices without hover ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5a35a65ce4928972027325bd01265db3f046f0e8"},(0,n.kt)("inlineCode",{parentName:"a"},"5a35a65"))),(0,n.kt)("li",{parentName:"ul"},"change(container): ensure only the top level elements behave like containers ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/98b85d1fb285919a8851454fa3007131b2a0ffc3"},(0,n.kt)("inlineCode",{parentName:"a"},"98b85d1"))),(0,n.kt)("li",{parentName:"ul"},"change(container): modified column-block grid to remove margin and padding when using full width class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/35c1cee7b3b35e7c361562ab7a430240f0117cc3"},(0,n.kt)("inlineCode",{parentName:"a"},"35c1cee"))),(0,n.kt)("li",{parentName:"ul"},"change(mega-menu): hide home link and accordion content from mobile menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1a691729b6d61c0daf46c5de035c1c55b0fda0d9"},(0,n.kt)("inlineCode",{parentName:"a"},"1a69172"))),(0,n.kt)("li",{parentName:"ul"},"change(container): width from min width 1280px to 1365px max width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/66e551e532da2cc5e9716e5179f943f172663be4"},(0,n.kt)("inlineCode",{parentName:"a"},"66e551e"))),(0,n.kt)("li",{parentName:"ul"},"change(container): removed app extras and view setting of layout sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6dc1ee602634df85140f6db75e41293b72eacf1"},(0,n.kt)("inlineCode",{parentName:"a"},"f6dc1ee"))),(0,n.kt)("li",{parentName:"ul"},"change(views): customized DefaultView to pass class into page-document area ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91123aad429f4bb086110b4997e43e9809a97581"},(0,n.kt)("inlineCode",{parentName:"a"},"91123aa"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): desktop - use buttons for menu section titles and readjust content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb9315f2b999193b7b64cec27c49fc8dda306899"},(0,n.kt)("inlineCode",{parentName:"a"},"cb9315f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): add nav_title and nav_description attributes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0d7a5686daab2ecec87d78728437d8f994606448"},(0,n.kt)("inlineCode",{parentName:"a"},"0d7a568"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): style sub-title and nav-description ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b2a48fd3588ffdc75f61f0b8d52284d13edf2d92"},(0,n.kt)("inlineCode",{parentName:"a"},"b2a48fd"))),(0,n.kt)("li",{parentName:"ul"},"refactor(sidemenu): add third level list and items & update active indication ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2d87da9fddca2b867f3d065a007c0b921587a61"},(0,n.kt)("inlineCode",{parentName:"a"},"e2d87da"))),(0,n.kt)("li",{parentName:"ul"},"change(columns): implement narrow, container and wide width classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9696b5457e50ba3186406a584da16f5248c14439"},(0,n.kt)("inlineCode",{parentName:"a"},"9696b54"))),(0,n.kt)("li",{parentName:"ul"},"change(container): story to add classes that modify the max width of the containers ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/37948f89ee797738bd8bbb0023bc5dca018d7331"},(0,n.kt)("inlineCode",{parentName:"a"},"37948f8"))),(0,n.kt)("li",{parentName:"ul"},"change(container): affect only left and right margin of containers ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/183265b7dd8d20359b6c3956ea05b62df6e70f75"},(0,n.kt)("inlineCode",{parentName:"a"},"183265b"))),(0,n.kt)("li",{parentName:"ul"},"change(containers): modified class names after layout checks ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1dc3689509001031f0afd30422f517de5316e47a"},(0,n.kt)("inlineCode",{parentName:"a"},"1dc3689"))),(0,n.kt)("li",{parentName:"ul"},"refactor(sidemenu): add is_in_path and is_current attributes for an active example ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a3fe7fd8da93db0a065d4408ce154c9d8c26b568"},(0,n.kt)("inlineCode",{parentName:"a"},"a3fe7fd"))),(0,n.kt)("li",{parentName:"ul"},"change(container): story to avoid adding containerwidth property to container div ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c13d83cdbc8741bf4075cdfcd884f39f3f71d73c"},(0,n.kt)("inlineCode",{parentName:"a"},"c13d83c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): mobile - use buttons for menu section titles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7b632fd29a8ac815d2e590509baa51f1279e659"},(0,n.kt)("inlineCode",{parentName:"a"},"a7b632f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): update padding variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5f25838ba9ec367a58c98c929921ebf09cd8ad8"},(0,n.kt)("inlineCode",{parentName:"a"},"c5f2583"))),(0,n.kt)("li",{parentName:"ul"},"change(views): moved narrow style bellow the default container width styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/72fa58dce9ea03a1e4f409a9f9aab21b01efbfc8"},(0,n.kt)("inlineCode",{parentName:"a"},"72fa58d"))),(0,n.kt)("li",{parentName:"ul"},"change(listing): removed container from default view page-document area ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/69f3d8f422e3cb95e89937929aaef48b5569bcdf"},(0,n.kt)("inlineCode",{parentName:"a"},"69f3d8f"))),(0,n.kt)("li",{parentName:"ul"},"change(views): rename classes names to width_view and added app extras layout component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/745b7720839754d1e248795cb1263f8c02f5f3c2"},(0,n.kt)("inlineCode",{parentName:"a"},"745b772"))),(0,n.kt)("li",{parentName:"ul"},"change(container): use important flag for left and right margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a49c83abe9a045d28118a680558de5416a0516a3"},(0,n.kt)("inlineCode",{parentName:"a"},"a49c83a"))),(0,n.kt)("li",{parentName:"ul"},"change(container): add variables for edit and add section of containers ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2e2c335dc82c120d15d4c536c400ae742f68fe7"},(0,n.kt)("inlineCode",{parentName:"a"},"f2e2c33"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): update sub-title paddings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/992f919bb5155c8e6fc169e43adf00dcae41f400"},(0,n.kt)("inlineCode",{parentName:"a"},"992f919"))),(0,n.kt)("li",{parentName:"ul"},"change(site): add a 1rem margin top and bottom on all styled classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dabf6c1162fe23cef61a2053eefd7e687f649a56"},(0,n.kt)("inlineCode",{parentName:"a"},"dabf6c1"))),(0,n.kt)("li",{parentName:"ul"},"change(homepage): removed hiding of staging banner from homepage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ba2cd7fc17cdf1bf58381aa58e05acad0ac77ba"},(0,n.kt)("inlineCode",{parentName:"a"},"4ba2cd7"))),(0,n.kt)("li",{parentName:"ul"},"change(container): unset values of page-document on 1200+ browser width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dd5bea37d414e2a8689eaf6cc99c7b3a3d4b0e08"},(0,n.kt)("inlineCode",{parentName:"a"},"dd5bea3"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): set children to be appended to the right of the menu title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b69c23a20ef2ded1f0382650ff8e85d1bead6941"},(0,n.kt)("inlineCode",{parentName:"a"},"b69c23a"))),(0,n.kt)("li",{parentName:"ul"},"change(theme): modified wide width to point to 1320px as it's perfectly divisible by 4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f825737d6dafd595024bb4537eab624a47a9ad0"},(0,n.kt)("inlineCode",{parentName:"a"},"8f82573"))),(0,n.kt)("li",{parentName:"ul"},"change(theme): modified wide width to point to 1368px as it's perfectly divisible by 4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2349fee36ee72783665a0b101d684389f1fdf834"},(0,n.kt)("inlineCode",{parentName:"a"},"2349fee"))),(0,n.kt)("li",{parentName:"ul"},"change(container): renamed content-text-width to container-text-width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6f788c282348292dd4b5deb47ffe83ca4573e5c8"},(0,n.kt)("inlineCode",{parentName:"a"},"6f788c2"))),(0,n.kt)("li",{parentName:"ul"},"change(listing): provide ui container fallback if no class is passed to default view ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af9e94ded1e301f4c811749badbcc1f59e6d0de5"},(0,n.kt)("inlineCode",{parentName:"a"},"af9e94d"))),(0,n.kt)("li",{parentName:"ul"},"change(narrow-view): re-added container class to page-document ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/56b44a6e09d45f96c106dc471bb2e1cde58ef10f"},(0,n.kt)("inlineCode",{parentName:"a"},"56b44a6"))),(0,n.kt)("li",{parentName:"ul"},"change(view): set container width for view-viewview class as well ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/29dc324319d6dc2450dd0e906c1b4c93fd65ed56"},(0,n.kt)("inlineCode",{parentName:"a"},"29dc324")))),(0,n.kt)("h4",{id:"-internal-changes-9"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style: load header/footer overrides ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e5b5e0fc00c61d81f45c12f119bd2f06a91b1b5c"},(0,n.kt)("inlineCode",{parentName:"a"},"e5b5e0f"))),(0,n.kt)("li",{parentName:"ul"},"style(megaMenu): restore item description color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8a19bbb4866cdeb31d87b782587c499e621055b7"},(0,n.kt)("inlineCode",{parentName:"a"},"8a19bbb"))),(0,n.kt)("li",{parentName:"ul"},"style(megaMenu): restore accordion content bottom padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8e0c5a79f06247d353511b412b0122c6f614f5ec"},(0,n.kt)("inlineCode",{parentName:"a"},"8e0c5a7")))),(0,n.kt)("h4",{id:"\ufe0f-others-23"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Add subsite styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e79c0ed7931d6287dbeb3bab1e9155b8707481a3"},(0,n.kt)("inlineCode",{parentName:"a"},"e79c0ed"))),(0,n.kt)("li",{parentName:"ul"},"WIP settings column grid width when using full size class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/affc7ac99527aa92d5a192d90dc8c9ec46a66404"},(0,n.kt)("inlineCode",{parentName:"a"},"affc7ac"))),(0,n.kt)("li",{parentName:"ul"},"code cleanup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2cdc3e590b6d36865f16890c45ce56d32963e1d0"},(0,n.kt)("inlineCode",{parentName:"a"},"2cdc3e5"))),(0,n.kt)("li",{parentName:"ul"},"fix eslint ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/30c52e4eb443555ca44c1b35df064e73d52c0a8b"},(0,n.kt)("inlineCode",{parentName:"a"},"30c52e4"))),(0,n.kt)("li",{parentName:"ul"},"test(estlint): Fix .project.eslintrc.js ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aaeaa07b27491551daba29bbfdd7cab4a54b6bec"},(0,n.kt)("inlineCode",{parentName:"a"},"aaeaa07"))),(0,n.kt)("li",{parentName:"ul"},"modified left value of full width classes with toolbars ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70d82d47fbc2c00a3a709de0d5c087c8443a1eae"},(0,n.kt)("inlineCode",{parentName:"a"},"70d82d4"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-alpha.3 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8fc86a7d0bf4ad06ab339b3066ff56ea61d48878"},(0,n.kt)("inlineCode",{parentName:"a"},"8fc86a7"))),(0,n.kt)("li",{parentName:"ul"},"feature(content): added NarrowView useful for modifying the containers from content-area ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d937df7c262e8d8cc6e78eebec736e28263fc657"},(0,n.kt)("inlineCode",{parentName:"a"},"d937df7"))),(0,n.kt)("li",{parentName:"ul"},"jslint fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/98461593605344d0b6d8cba81f91d1cafc2653cd"},(0,n.kt)("inlineCode",{parentName:"a"},"9846159"))),(0,n.kt)("li",{parentName:"ul"},"Feature(container): flexible container size #260 from eea/feature-flexible-container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f84c5b67afe9cbe01b2a44a8f92a9a554e1036a"},(0,n.kt)("inlineCode",{parentName:"a"},"8f84c5b"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using circularity-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/76a41c786995fd54afe4d1c345de939f683ffa70"},(0,n.kt)("inlineCode",{parentName:"a"},"76a41c7"))),(0,n.kt)("li",{parentName:"ul"},"fix broken variable call for contentBox.variables introduced in previous commit by mistake ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d249c1160d19bedb174a2fde3fdab48d9ce297d4"},(0,n.kt)("inlineCode",{parentName:"a"},"d249c11"))),(0,n.kt)("li",{parentName:"ul"},"clean up ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/89f3cb33d70a14806a953f0acd1807e94169ee5c"},(0,n.kt)("inlineCode",{parentName:"a"},"89f3cb3"))),(0,n.kt)("li",{parentName:"ul"},"removed console log from code ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fad86ae581dd81d0c29fc03d8528e57cadadd3fb"},(0,n.kt)("inlineCode",{parentName:"a"},"fad86ae")))),(0,n.kt)("h3",{id:"100-alpha2---2022-10-28"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.1...1.0.0-alpha.2"},"1.0.0-alpha.2")," - 2022-10-28"),(0,n.kt)("h4",{id:"-enhancements-24"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(documentation): grammarly proof-read suggestions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f609be3758673b0d479d99baee69e7238a5b7f9"},(0,n.kt)("inlineCode",{parentName:"a"},"9f609be"))),(0,n.kt)("li",{parentName:"ul"},"refactor(volto-slate): Upgrade to @plone/volto-slate - refs #153447 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/853d9d189dd17859e3999fbf53507df7083eefb4"},(0,n.kt)("inlineCode",{parentName:"a"},"853d9d1")))),(0,n.kt)("h4",{id:"-internal-changes-10"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(docs): Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e33113a0541d082d93f61c7494bcce2ac5f79a8c"},(0,n.kt)("inlineCode",{parentName:"a"},"e33113a")))),(0,n.kt)("h4",{id:"\ufe0f-others-24"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"test(cypress): Upgrade to Cypress 10 / Razzle 4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c1c1f4b280945a9f0b77eb0b59de003c1360bac9"},(0,n.kt)("inlineCode",{parentName:"a"},"c1c1f4b"))),(0,n.kt)("li",{parentName:"ul"},"more explanations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a8b22728659125ba6ea6fb41f29571a8f1b9953b"},(0,n.kt)("inlineCode",{parentName:"a"},"a8b2272"))),(0,n.kt)("li",{parentName:"ul"},"add announcement bar, showing that EEA DS is WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e14aeac02cf922493aff4f83c8d80af95cc63eb9"},(0,n.kt)("inlineCode",{parentName:"a"},"e14aeac"))),(0,n.kt)("li",{parentName:"ul"},"Update dependencies ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee30a2bad3769163d3ab4d996c0a7be8fcb4bc6e"},(0,n.kt)("inlineCode",{parentName:"a"},"ee30a2b")))),(0,n.kt)("h3",{id:"100-alpha1---2022-10-20"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.6...1.0.0-alpha.1"},"1.0.0-alpha.1")," - 2022-10-20"),(0,n.kt)("h4",{id:"-enhancements-25"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update svg and tablet contact link sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6aba061a5d37e84da706e94a2ce1140ffca81d43"},(0,n.kt)("inlineCode",{parentName:"a"},"6aba061"))),(0,n.kt)("li",{parentName:"ul"},"change(blockquote): renamed to Callout reflecting the correct naming from Storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/61a518c84f08b03d29b99aafce3d9108ae56b3a7"},(0,n.kt)("inlineCode",{parentName:"a"},"61a518c"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): Shadow removed from logo & tablet updates #252 from eea/fix-footer ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6df783d6571cb1b477202bf1d503763d98db66bf"},(0,n.kt)("inlineCode",{parentName:"a"},"6df783d"))),(0,n.kt)("li",{parentName:"ul"},"change(colors): updated theme classes for text to use css variable colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb089fd9a40b67430e0d4efaa2cb51902a46de4f"},(0,n.kt)("inlineCode",{parentName:"a"},"cb089fd")))),(0,n.kt)("h4",{id:"-internal-changes-11"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(footer): reduce social icons margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6a9cf7a6da4a46d9b85a63fbdfc8d421ae4c0d8"},(0,n.kt)("inlineCode",{parentName:"a"},"f6a9cf7")))),(0,n.kt)("h4",{id:"-documentation-changes-9"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(alpha): Update included components in 1.0 alpha version - refs #154387 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fcc5af9bb9163d158ccd6ce452d7f80ac26f7ac0"},(0,n.kt)("inlineCode",{parentName:"a"},"fcc5af9"))),(0,n.kt)("li",{parentName:"ul"},"docs(callout): Rename Blockqoute to Callout in docusaurus - refs #154387 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8d733ac7b00273581575ceddd1a4480ba67fa498"},(0,n.kt)("inlineCode",{parentName:"a"},"8d733ac")))),(0,n.kt)("h4",{id:"\ufe0f-others-25"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-alpha.1 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70e4d97c6a2b13f3b98efe1e2ba93174be2df476"},(0,n.kt)("inlineCode",{parentName:"a"},"70e4d97")))),(0,n.kt)("h3",{id:"096---2022-12-16"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.5...0.9.6"},"0.9.6")," - 2022-12-16"),(0,n.kt)("h4",{id:"\ufe0f-others-26"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Release 0.9.6 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ae19b837678ef5a6a26ebe7c69577e446b13ed50"},(0,n.kt)("inlineCode",{parentName:"a"},"ae19b83"))),(0,n.kt)("li",{parentName:"ul"},"feature(copyright): image information #250 from eea/feature-copyright ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7b323ed27e15f9b4265618099089526c97aa89a1"},(0,n.kt)("inlineCode",{parentName:"a"},"7b323ed"))),(0,n.kt)("li",{parentName:"ul"},"Release-it ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f5671de5a36a721f86a2f8ae4077fd2e0ffafb5"},(0,n.kt)("inlineCode",{parentName:"a"},"1f5671d")))),(0,n.kt)("h3",{id:"095---2022-10-20"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.4...0.9.5"},"0.9.5")," - 2022-10-20"),(0,n.kt)("h4",{id:"-bug-fixes-18"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(statistic): margin and slate colors when using the inverted options ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f263dea1940594ad00b3548c8640ca378fee5563"},(0,n.kt)("inlineCode",{parentName:"a"},"f263dea")))),(0,n.kt)("h3",{id:"094---2022-10-19"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.3...0.9.4"},"0.9.4")," - 2022-10-19"),(0,n.kt)("h4",{id:"-bug-fixes-19"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(edit-interface): block chooser and power user menu item colors when inside content-box ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7aee4f1619a0d798b5fd8d90844a780c25aca019"},(0,n.kt)("inlineCode",{parentName:"a"},"7aee4f1"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): hero text going over the logo and menu on mobile resolutions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1434508f5995d4316dfb2fd18fdc7926a4ece6ee"},(0,n.kt)("inlineCode",{parentName:"a"},"1434508"))),(0,n.kt)("li",{parentName:"ul"},"fix(content-box): z-index of box-inner and added underline to slate links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c8b7c7e41df39e1bf6377401a7aad4220287d454"},(0,n.kt)("inlineCode",{parentName:"a"},"c8b7c7e"))),(0,n.kt)("li",{parentName:"ul"},"fix(content-box): adding of underline to links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c2f5f0f45963e48342edb0046d84b945ffe4b6a8"},(0,n.kt)("inlineCode",{parentName:"a"},"c2f5f0f")))),(0,n.kt)("h4",{id:"-enhancements-26"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(banner,colors): content box theme aware colors banner changes#254 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bcb9a8cde0cb0f927a68c0872e590e5ab853f824"},(0,n.kt)("inlineCode",{parentName:"a"},"bcb9a8c"))),(0,n.kt)("li",{parentName:"ul"},"change(Banner): Add subtitle subcomponent ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bb67f4c83a2ff0e17958116fc4a52a426ba64a70"},(0,n.kt)("inlineCode",{parentName:"a"},"bb67f4c"))),(0,n.kt)("li",{parentName:"ul"},"change(item): moved svg filter definitions to item.overrides ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/de703661065648968903bb6b46efc13d19c51d2b"},(0,n.kt)("inlineCode",{parentName:"a"},"de70366"))),(0,n.kt)("li",{parentName:"ul"},"change(accordion): accordion titles with themes colors can now be modified by css variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2ac13ea56a74b2f7a22abc274bc94c770fbe3a2"},(0,n.kt)("inlineCode",{parentName:"a"},"e2ac13e"))),(0,n.kt)("li",{parentName:"ul"},"change(colors): in lists and callouts to allow color changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/940d1b8ed815b1a38f78d7602f0b221b48fe21f9"},(0,n.kt)("inlineCode",{parentName:"a"},"940d1b8"))),(0,n.kt)("li",{parentName:"ul"},"change(colors): added backgroundColorSupplementary color variable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f5262af2b90d2ffd9dd5560232f3bf47bcc85e3"},(0,n.kt)("inlineCode",{parentName:"a"},"1f5262a"))),(0,n.kt)("li",{parentName:"ul"},"change(list,bullet): color is no longer primary instead it's text color css variant ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8c046704871c7202406ff71b280a8a34e195e54d"},(0,n.kt)("inlineCode",{parentName:"a"},"8c04670"))),(0,n.kt)("li",{parentName:"ul"},"change(statistics): use theme colors with css variable for easy color customization ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fb72a012e81eba73fbace58317a52b5cdda31ee5"},(0,n.kt)("inlineCode",{parentName:"a"},"fb72a01"))),(0,n.kt)("li",{parentName:"ul"},"change(Banner): Show label in metadata field ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1acda3c53739b610b501a53baf10226769929d2d"},(0,n.kt)("inlineCode",{parentName:"a"},"1acda3c"))),(0,n.kt)("li",{parentName:"ul"},"change(tags, items): use text color with css variable for content color for easy customization ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6660e2e49c6e732a13283ad7c922c5a5091bffc1"},(0,n.kt)("inlineCode",{parentName:"a"},"6660e2e"))),(0,n.kt)("li",{parentName:"ul"},"change(styling): modified naming of theme css variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a332961e1c4d55cdee3a8bcdf652f53cf03e251b"},(0,n.kt)("inlineCode",{parentName:"a"},"a332961"))),(0,n.kt)("li",{parentName:"ul"},"change(colors): added backgroundColor color variable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b7e68311f77a724c49a3cf858a76239ca5f6876c"},(0,n.kt)("inlineCode",{parentName:"a"},"b7e6831"))),(0,n.kt)("li",{parentName:"ul"},"change(quote): use secondary css var for easier color replacement ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7a3231228c2eb9b420cc7b59a4a07fba96643e5e"},(0,n.kt)("inlineCode",{parentName:"a"},"7a32312"))),(0,n.kt)("li",{parentName:"ul"},"change(statistics): tweaked margin of statistics so that they don't overflow over context boxes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4a8e33dfaa716f38ac9ce5448d400c74ef9ba62"},(0,n.kt)("inlineCode",{parentName:"a"},"b4a8e33"))),(0,n.kt)("li",{parentName:"ul"},"change(accordion): allow customization of accordion title background color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6590baf1716867eabe897e765ae1924122ba2333"},(0,n.kt)("inlineCode",{parentName:"a"},"6590baf"))),(0,n.kt)("li",{parentName:"ul"},"change(colors): introduced css variables for primary colors #247 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac8082590f978ab953ece70082e06b124c292ddf"},(0,n.kt)("inlineCode",{parentName:"a"},"ac80825"))),(0,n.kt)("li",{parentName:"ul"},"change(content-box): override primary text color to white as well ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/28b43c72b9fcfeb153ac7e734bbbca67f2e42111"},(0,n.kt)("inlineCode",{parentName:"a"},"28b43c7")))),(0,n.kt)("h4",{id:"\ufe0f-others-27"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Include changes in the storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4d9fa4c631a6a1ec0d7d525721fd32c5ff01d9c"},(0,n.kt)("inlineCode",{parentName:"a"},"a4d9fa4")))),(0,n.kt)("h3",{id:"093---2022-10-04"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.2...0.9.3"},"0.9.3")," - 2022-10-04"),(0,n.kt)("h4",{id:"-bug-fixes-20"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(card, contentBox): meta font size, removed header override of cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7f94b9ca8c65a887ced5c4812563a2226fca869"},(0,n.kt)("inlineCode",{parentName:"a"},"a7f94b9"))),(0,n.kt)("li",{parentName:"ul"},"fix(List): Ordered list item story - refs #155248 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c70a2bceecf4ce9497cbe0e9cdb30944fff2287d"},(0,n.kt)("inlineCode",{parentName:"a"},"c70a2bc"))),(0,n.kt)("li",{parentName:"ul"},"fix(OrderedList): li third level margin left - refs #155248 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fba5cb9d3897d2827951cd218405b1ae7c8e818a"},(0,n.kt)("inlineCode",{parentName:"a"},"fba5cb9"))),(0,n.kt)("li",{parentName:"ul"},"fix(cards): inherit color of card description ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ceda79971663785c81292b85ae07b7f9f922213c"},(0,n.kt)("inlineCode",{parentName:"a"},"ceda799"))),(0,n.kt)("li",{parentName:"ul"},"fix(accordion): Fix content default padding - refs #153783 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/566adf7a53c48fb24044eeba1d159d5ce715ecc6"},(0,n.kt)("inlineCode",{parentName:"a"},"566adf7")))),(0,n.kt)("h4",{id:"-enhancements-27"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(site): committed fixed from custom into eea design package ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9b9a1fd3648796a502ca4eb3abd08b61b33bdff2"},(0,n.kt)("inlineCode",{parentName:"a"},"9b9a1fd"))),(0,n.kt)("li",{parentName:"ul"},"change(jenkins): added yarn policy for storybook building ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3d1b844efeea40b99c00c9aa97089e0a0be58a57"},(0,n.kt)("inlineCode",{parentName:"a"},"3d1b844"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): typography updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/60a93a4aece4e478ae13c2dfe697fd3703aa178a"},(0,n.kt)("inlineCode",{parentName:"a"},"60a93a4"))),(0,n.kt)("li",{parentName:"ul"},"change(item): added item image coloring when applying theming classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0403fe4974f37a46ec7418d9b8492ad74d7c5688"},(0,n.kt)("inlineCode",{parentName:"a"},"0403fe4"))),(0,n.kt)("li",{parentName:"ul"},"change(accordion, site): change text color to tertiary instead of black ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/464105842508a62216aa0a3f28e9565af1b93232"},(0,n.kt)("inlineCode",{parentName:"a"},"4641058"))),(0,n.kt)("li",{parentName:"ul"},"change(accordion): allow customization of accordion title with css variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/15e7d27f02c640df582f51a51ef36e645723f842"},(0,n.kt)("inlineCode",{parentName:"a"},"15e7d27"))),(0,n.kt)("li",{parentName:"ul"},"change(content-box): added css variables that will set text color and background for children ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/86cac531cc94386b6022e1be80dba826b39f2443"},(0,n.kt)("inlineCode",{parentName:"a"},"86cac53"))),(0,n.kt)("li",{parentName:"ul"},"change(tabs): allow customization of tab active and hover color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4370f4270dcaa29b1193fc2347567b748f6d5d82"},(0,n.kt)("inlineCode",{parentName:"a"},"4370f42"))),(0,n.kt)("li",{parentName:"ul"},"change(tabs): color for tabs-block section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6778c923618e725194120d7f35e2ee7d66e1be8e"},(0,n.kt)("inlineCode",{parentName:"a"},"6778c92"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): by default date is set to appear on the right of the meta section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b7b80e86b69a0179f1e48748bef909bbd2a98d58"},(0,n.kt)("inlineCode",{parentName:"a"},"b7b80e8"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): carousel dots are now relative positioned ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/daa40a4ab6532497830d5f7536bf0a7f20d9cd00"},(0,n.kt)("inlineCode",{parentName:"a"},"daa40a4")))),(0,n.kt)("h4",{id:"-documentation-changes-10"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(typography): update, local fonts ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/39a32d9aa4dec21c0e7df32aa5798432fc6bd403"},(0,n.kt)("inlineCode",{parentName:"a"},"39a32d9"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): token fix to match used values for heightheight and letterspacing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91693ecd2dd367cd83fa2752756557d463e214a7"},(0,n.kt)("inlineCode",{parentName:"a"},"91693ec"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): token fix to match used values for lineheight ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff41b56b4365a3e70ac20e548c7c74671e7c584c"},(0,n.kt)("inlineCode",{parentName:"a"},"ff41b56"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): remove semibold ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6eb3e0856f01aacf6d294f68e7d845f74f752685"},(0,n.kt)("inlineCode",{parentName:"a"},"6eb3e08")))),(0,n.kt)("h4",{id:"\ufe0f-others-28"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"test(cypress): Fix md5 dependency ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/17f618e7c5eef01759494e787a8c9cb96449fbca"},(0,n.kt)("inlineCode",{parentName:"a"},"17f618e")))),(0,n.kt)("h3",{id:"092---2022-09-27"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.1...0.9.2"},"0.9.2")," - 2022-09-27"),(0,n.kt)("h3",{id:"091---2022-09-27"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.0...0.9.1"},"0.9.1")," - 2022-09-27"),(0,n.kt)("h4",{id:"-enhancements-28"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(cards): added ability to change the text alignment using css variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ed532ac20c82a6933c4f12613c80ce92eec78405"},(0,n.kt)("inlineCode",{parentName:"a"},"ed532ac"))),(0,n.kt)("li",{parentName:"ul"},"change(styles): use flex-end values only instead of end to avoid babel warning ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24244b22ea69b9f4dc3006597c7836f814b74cf2"},(0,n.kt)("inlineCode",{parentName:"a"},"24244b2"))),(0,n.kt)("li",{parentName:"ul"},"change(rounded): image size, border radius to ensure more image are turned into rounded options ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51e23c1bb38f277b2bfbad5d814925eb61d17668"},(0,n.kt)("inlineCode",{parentName:"a"},"51e23c1")))),(0,n.kt)("h4",{id:"\ufe0f-others-29"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Merge pull request #243 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/576564ce395ee6ac9e74bcb19d5c4f0b4cd3c33b"},(0,n.kt)("inlineCode",{parentName:"a"},"576564c"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using eea-website-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a5be6eec78dae230626e61ea2c77e7f3c62510d"},(0,n.kt)("inlineCode",{parentName:"a"},"4a5be6e"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b251255a7ed14d8290717726d86eaf54b87aa2d4"},(0,n.kt)("inlineCode",{parentName:"a"},"b251255")))),(0,n.kt)("h3",{id:"090---2022-09-19"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.8.1...0.9.0"},"0.9.0")," - 2022-09-19"),(0,n.kt)("h4",{id:"-new-features-16"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(countUp): intall countup package and import it in statistics ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/10ba7cf2975ffc33cc8e6965998b7ab7ec58b1ab"},(0,n.kt)("inlineCode",{parentName:"a"},"10ba7cf"))),(0,n.kt)("li",{parentName:"ul"},"feat(docusaurus): custom editUrl function for the components usage pages - taskman refs #154076 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93c4240f269d72e4e353665dacd57d079a31afac"},(0,n.kt)("inlineCode",{parentName:"a"},"93c4240"))),(0,n.kt)("li",{parentName:"ul"},"feat(site): Styling scroll-to-text fragments #238 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1883fcf4e80055f68bdff4d66fc6db3ccad4614a"},(0,n.kt)("inlineCode",{parentName:"a"},"1883fcf"))),(0,n.kt)("li",{parentName:"ul"},"feat(docusaurus): added Edit this page link in footer of each page - taskman refs #154076 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2cf8746e42631ea2e214223e208bdbfb76ffafa7"},(0,n.kt)("inlineCode",{parentName:"a"},"2cf8746")))),(0,n.kt)("h4",{id:"-bug-fixes-21"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(header): Prevent dropdown closing when clicking inside content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/838f34006260ce7c331fd933a595e95d78e1a927"},(0,n.kt)("inlineCode",{parentName:"a"},"838f340"))),(0,n.kt)("li",{parentName:"ul"},"fix(cards): position of bullets and arrow clicking on events page 148723 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/22ef8282247401b0f8cf5a44f2e65f0b469cc6fa"},(0,n.kt)("inlineCode",{parentName:"a"},"22ef828"))),(0,n.kt)("li",{parentName:"ul"},"fix(cards): rounded images show up now even when card parent is cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48f5e81a5b76168435537d92aec35ab3a184b4d2"},(0,n.kt)("inlineCode",{parentName:"a"},"48f5e81"))),(0,n.kt)("li",{parentName:"ul"},"fix(statistic): add a min-width to content so unwrapped statistics don't break ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7c5d511c35d50f3afabf77f14b27e5760c49051f"},(0,n.kt)("inlineCode",{parentName:"a"},"7c5d511"))),(0,n.kt)("li",{parentName:"ul"},"fix(sideNavigation): add role list to list item ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/58f322b732c995349ba588db3bac6a1ffea40f89"},(0,n.kt)("inlineCode",{parentName:"a"},"58f322b"))),(0,n.kt)("li",{parentName:"ul"},"fix(sideNavigation): remove unused useState import ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f9ea6779d2c584203b77f11b3127f39aba7799f3"},(0,n.kt)("inlineCode",{parentName:"a"},"f9ea677")))),(0,n.kt)("h4",{id:"-enhancements-29"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(sideNavigation): implement the design to the initial navigation & make component dynamic ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b673d63a45e56e1d05354d8675c01b15ec9543f5"},(0,n.kt)("inlineCode",{parentName:"a"},"b673d63"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update top bar ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/626bdd5805bde1e97b91d83dae7adc1d39c62234"},(0,n.kt)("inlineCode",{parentName:"a"},"626bdd5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): create custom export and add links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f9ed560a68d261e9e6a9b6fa3c44944a252e596"},(0,n.kt)("inlineCode",{parentName:"a"},"9f9ed56"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): update inverted style and add background variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7578dc6a408094fbc215218b3ffe21a878841568"},(0,n.kt)("inlineCode",{parentName:"a"},"7578dc6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): remove horizontal display on mobiles & update columns control ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/58f00e12851c4a1af1bb200d0577d76f6222df3c"},(0,n.kt)("inlineCode",{parentName:"a"},"58f00e1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): minor fixes spotted in testing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0f0f3aba7ea282c4ecc4f602f9ff3144c04e2146"},(0,n.kt)("inlineCode",{parentName:"a"},"0f0f3ab"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update main section heights ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d669f012f1b831952dbb73b7d40134b1243ba7e4"},(0,n.kt)("inlineCode",{parentName:"a"},"d669f01"))),(0,n.kt)("li",{parentName:"ul"},"refactor(sideNavigation): remove green border and divider ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/939cd9bf2a9a7338fd770550a8396586c5f610b3"},(0,n.kt)("inlineCode",{parentName:"a"},"939cd9b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(link): update colors for link states ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e9f59950838f9119131797550945963c2965dcf"},(0,n.kt)("inlineCode",{parentName:"a"},"3e9f599"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): styles img tag outside of .image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee892745a4748da12007ba5cedab16c1810c1dd9"},(0,n.kt)("inlineCode",{parentName:"a"},"ee89274"))),(0,n.kt)("li",{parentName:"ul"},"refactor(sideNavigation): update controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a3e8430d88ee52fd92f4f8c2d6f5e01ea82dd9eb"},(0,n.kt)("inlineCode",{parentName:"a"},"a3e8430"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): fix firefox issue for fit content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87aa113667ea53d83d479cd52347e7298e60e9b0"},(0,n.kt)("inlineCode",{parentName:"a"},"87aa113"))),(0,n.kt)("li",{parentName:"ul"},"change(statistics): rearrange controls order ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b19ae70568f18873732ff62ee82251c9256a214d"},(0,n.kt)("inlineCode",{parentName:"a"},"b19ae70"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): add max width to wrap text for all content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/758f8ce09f78a6343ac0226e5d332c0216dea95b"},(0,n.kt)("inlineCode",{parentName:"a"},"758f8ce"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): add max width to label so it wraps the text ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/824a12702f133485a1c254e267d9e75c1b22048c"},(0,n.kt)("inlineCode",{parentName:"a"},"824a127"))),(0,n.kt)("li",{parentName:"ul"},"change(Side menu & in page navigation): styling according to figma design #221 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b2df858a2dc88f61d686ad0991e711dc763f4cc6"},(0,n.kt)("inlineCode",{parentName:"a"},"b2df858"))),(0,n.kt)("li",{parentName:"ul"},"change(header): align header with latest figma changes #232 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/135cd68307c6ebdc5d48b361d1696457c6f99b4c"},(0,n.kt)("inlineCode",{parentName:"a"},"135cd68"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): integration when cards also contain call to action buttons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f0d876616b211c79dde5b18c1fe862ff019073a1"},(0,n.kt)("inlineCode",{parentName:"a"},"f0d8766"))),(0,n.kt)("li",{parentName:"ul"},"refactor(iconography): icon group headings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b9ccd8031049d6b91c5676930ea3e44d9587435d"},(0,n.kt)("inlineCode",{parentName:"a"},"b9ccd80"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add variables for some sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8eae84ef665d7b3331090a8a8ac6b714ecdacbb3"},(0,n.kt)("inlineCode",{parentName:"a"},"8eae84e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Statisctic): Rename slateVariation to extraVariation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a07c5896c8c4b8f3179622f335e3f02e68dadfbd"},(0,n.kt)("inlineCode",{parentName:"a"},"a07c589"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): started example on how to add headings for iconography ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53cf8431446954eee6c5d27be31e15c075ffe16d"},(0,n.kt)("inlineCode",{parentName:"a"},"53cf843"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): remove center alignment of rounded cards body area, only the image is now centered ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fdfac4876903272b437c7dcf0e65f7cfe66bbf66"},(0,n.kt)("inlineCode",{parentName:"a"},"fdfac48"))),(0,n.kt)("li",{parentName:"ul"},"change(color): updated link colors #234 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/feabfe7a3b6d6b89bfd4065a32bae8148ddc5a4c"},(0,n.kt)("inlineCode",{parentName:"a"},"feabfe7"))),(0,n.kt)("li",{parentName:"ul"},"change(mockup): Access to figma style tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0bb25bec495f9046a15924ee92f4f17152148ba8"},(0,n.kt)("inlineCode",{parentName:"a"},"0bb25be"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): update margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5190f56e134d672ccb9d5d1a8efacac4d41530d3"},(0,n.kt)("inlineCode",{parentName:"a"},"5190f56"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button): adjust vertical margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/db6d44102171738907b4b03fcc5f526463f59389"},(0,n.kt)("inlineCode",{parentName:"a"},"db6d441")))),(0,n.kt)("h4",{id:"-internal-changes-12"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(statistic): update decimal point ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7976aa4cac4c56e70e196eb62791a2b3f2aba749"},(0,n.kt)("inlineCode",{parentName:"a"},"7976aa4"))),(0,n.kt)("li",{parentName:"ul"},"style(link): update visited link color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d3b18b305bb2bd2f20bb2509584a6bc86b0e252c"},(0,n.kt)("inlineCode",{parentName:"a"},"d3b18b3")))),(0,n.kt)("h4",{id:"-documentation-changes-11"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(iconography): added icons, guidelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0073f1d42600be1d14bff406083b112014a2061f"},(0,n.kt)("inlineCode",{parentName:"a"},"0073f1d")))),(0,n.kt)("h4",{id:"\ufe0f-others-30"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Delete 2-test-new-page.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/749eff9b81e1c08068650cff1aba6cd574ea403b"},(0,n.kt)("inlineCode",{parentName:"a"},"749eff9"))),(0,n.kt)("li",{parentName:"ul"},"Create 2-test-new-page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab623ffc27f65e3e5fdcfe627009df1799582325"},(0,n.kt)("inlineCode",{parentName:"a"},"ab623ff"))),(0,n.kt)("li",{parentName:"ul"},"Release 0.9.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/eb7e2e57b5f2778e709b67deee3624f6e9f9e716"},(0,n.kt)("inlineCode",{parentName:"a"},"eb7e2e5"))),(0,n.kt)("li",{parentName:"ul"},"stylelint fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/114e3f97c6209f100aae2d6e24c595b7ba0a6500"},(0,n.kt)("inlineCode",{parentName:"a"},"114e3f9"))),(0,n.kt)("li",{parentName:"ul"},"Move text fragments style to site.overrides ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8368cbe2cecfc296a2fc81dd0bb49cb9e9a9314c"},(0,n.kt)("inlineCode",{parentName:"a"},"8368cbe"))),(0,n.kt)("li",{parentName:"ul"},"Styling scroll-to-text fragments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1bb39148717cdac922c403a0cdbfa3681a65dd9f"},(0,n.kt)("inlineCode",{parentName:"a"},"1bb3914"))),(0,n.kt)("li",{parentName:"ul"},"Update Header.stories.js ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9036c74d54640df2ccfcfdea9ddcdb29787d8ae2"},(0,n.kt)("inlineCode",{parentName:"a"},"9036c74"))),(0,n.kt)("li",{parentName:"ul"},"feature(Docusaurus): Reflect usage of remixicon in iconography page #239 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0802b32c13d978e380960befb78647dadb2d7e53"},(0,n.kt)("inlineCode",{parentName:"a"},"0802b32"))),(0,n.kt)("li",{parentName:"ul"},"Update 1-design.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/146115a13ac7a1943b6878df42f0b8e7f1fcd3f1"},(0,n.kt)("inlineCode",{parentName:"a"},"146115a"))),(0,n.kt)("li",{parentName:"ul"},"Test workflow for contribution - taskman refs #154076 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dcb924f79306ba26bb5168ac0a12d82c0c354caa"},(0,n.kt)("inlineCode",{parentName:"a"},"dcb924f"))),(0,n.kt)("li",{parentName:"ul"},"perf(figma): access to style tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/27d8dbe3c282e187f93bc4d93a0c9aa5c8162b00"},(0,n.kt)("inlineCode",{parentName:"a"},"27d8dbe"))),(0,n.kt)("li",{parentName:"ul"},"Rename 2-test-new-page to 2-test-new-page.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4e3be106cc4739e60ee5038901dbb626cf17f2e7"},(0,n.kt)("inlineCode",{parentName:"a"},"4e3be10")))),(0,n.kt)("h3",{id:"081---2022-08-26"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.8.0...0.8.1"},"0.8.1")," - 2022-08-26"),(0,n.kt)("h4",{id:"-bug-fixes-22"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(message): fix size controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee51e1dca4f84aeb9e39be525016f751acc147de"},(0,n.kt)("inlineCode",{parentName:"a"},"ee51e1d"))),(0,n.kt)("li",{parentName:"ul"},"fix(docusaurus): intro page hero title color now that headers are using tertiary color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/618e3cb7ac5533b1c087aea10452947c8676ab4e"},(0,n.kt)("inlineCode",{parentName:"a"},"618e3cb")))),(0,n.kt)("h4",{id:"-enhancements-30"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(message): restore semantic variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1c16621b4862efc64d82d475798ed40938c65f5e"},(0,n.kt)("inlineCode",{parentName:"a"},"1c16621"))),(0,n.kt)("li",{parentName:"ul"},"refactor(messages): mix semantc and token colors for messages ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/12efa75c30956df9958058242be4b8732819a5a1"},(0,n.kt)("inlineCode",{parentName:"a"},"12efa75"))),(0,n.kt)("li",{parentName:"ul"},"refactor(emotiveColors): temp update for tests ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/61a720c1ddbbad2c5bab17c8b2f890618f2a747c"},(0,n.kt)("inlineCode",{parentName:"a"},"61a720c"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): removed line between sections and moved actions back to the bottom of footer ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d9f33e4cf5a517acfbae497d6cb2fdccb048c281"},(0,n.kt)("inlineCode",{parentName:"a"},"d9f33e4"))),(0,n.kt)("li",{parentName:"ul"},"change(storybook): headings storybook now uses tertiary color by default reflecting site options ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1061e7749de2d4fe1233ccdc7f6f835ad491504a"},(0,n.kt)("inlineCode",{parentName:"a"},"1061e77"))),(0,n.kt)("li",{parentName:"ul"},"refactor(message): add container to story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1259ecead7162d2a46f5e802ba07e7e0dcb72e42"},(0,n.kt)("inlineCode",{parentName:"a"},"1259ece"))),(0,n.kt)("li",{parentName:"ul"},"refactor(message): remove override with custom background color on error ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9b40cd7ef2cca901e65a812585943c2e2d867b5f"},(0,n.kt)("inlineCode",{parentName:"a"},"9b40cd7"))),(0,n.kt)("li",{parentName:"ul"},"refactor(message): add header controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/960c2f7b524b1f049bb2f666e3e8278feca506da"},(0,n.kt)("inlineCode",{parentName:"a"},"960c2f7"))),(0,n.kt)("li",{parentName:"ul"},"change(message): use semantic colors for messages #204 from eea/refactor-message ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/22d2c43cd55a82621f2da3103652677b4b45db1a"},(0,n.kt)("inlineCode",{parentName:"a"},"22d2c43")))),(0,n.kt)("h4",{id:"-documentation-changes-12"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(figma): added figma files to repo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6bd4144ffc9c563ce224a07fe942fc4f2615c53f"},(0,n.kt)("inlineCode",{parentName:"a"},"6bd4144")))),(0,n.kt)("h3",{id:"080---2022-08-20"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.7.6...0.8.0"},"0.8.0")," - 2022-08-20"),(0,n.kt)("h4",{id:"-new-features-17"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(IconCard): card with icon instead of image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a85a1791e3a1245474dcafc4fd833350156dccb4"},(0,n.kt)("inlineCode",{parentName:"a"},"a85a179")))),(0,n.kt)("h4",{id:"-bug-fixes-23"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(docusaurus): typography guideline now has real font values for headings, body, caption and small text ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9508db918687b524c4d464539b9a4667399abb43"},(0,n.kt)("inlineCode",{parentName:"a"},"9508db9"))),(0,n.kt)("li",{parentName:"ul"},"fix(card): fix content gaps, adjust new meta section and update text color for default ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f1a78e14fc9a4b809572bd5d4d45bd10711c6eaa"},(0,n.kt)("inlineCode",{parentName:"a"},"f1a78e1"))),(0,n.kt)("li",{parentName:"ul"},"fix(item): remove duplicate argType ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dde0be5f7fe362143e248f7e53aa1d2e5df1fda0"},(0,n.kt)("inlineCode",{parentName:"a"},"dde0be5"))),(0,n.kt)("li",{parentName:"ul"},"fix(iconCard): add aria-label at links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/44f64c7127c0ccabbbf81eb5a838ee0f63284cea"},(0,n.kt)("inlineCode",{parentName:"a"},"44f64c7"))),(0,n.kt)("li",{parentName:"ul"},"fix(card): merge fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/df440ecd89eeb228f6f28df9109b84460cdfd523"},(0,n.kt)("inlineCode",{parentName:"a"},"df440ec"))),(0,n.kt)("li",{parentName:"ul"},"fix(heroblock): color even on edit page by inheriting color instead of using the tertiary color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac53fb74dedafcce231d1ca72843eff8a589c530"},(0,n.kt)("inlineCode",{parentName:"a"},"ac53fb7"))),(0,n.kt)("li",{parentName:"ul"},"fix(tab): add tabindex for accessibility error ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab512be71b86a3b696a228840e34d297928485ab"},(0,n.kt)("inlineCode",{parentName:"a"},"ab512be"))),(0,n.kt)("li",{parentName:"ul"},"fix(carousel): restore missing variable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1728312162d102aa2812eb3c7a55dac83bca8a04"},(0,n.kt)("inlineCode",{parentName:"a"},"1728312"))),(0,n.kt)("li",{parentName:"ul"},"fix(carousel): restore flex grow for cards and opacity for arrows ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce71305ab3fed5ff5c09b577e970050d3b29a2cb"},(0,n.kt)("inlineCode",{parentName:"a"},"ce71305")))),(0,n.kt)("h4",{id:"-enhancements-31"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(carousel) add links in carousel cards & update structure and variables of less files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f99cb219f3a95f5aab49a180434a4f5e0db14462"},(0,n.kt)("inlineCode",{parentName:"a"},"f99cb21"))),(0,n.kt)("li",{parentName:"ul"},"refactor(iconCard): add control for variations and link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5e1b6a1c7ab9fdce138c5643bc01763a02bed287"},(0,n.kt)("inlineCode",{parentName:"a"},"5e1b6a1"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus, fonts): documented font letter spacing modification ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/522712aeddb55f4ff96fdf4e8bea26f4575504ec"},(0,n.kt)("inlineCode",{parentName:"a"},"522712a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): css updates for card variations and styling updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c8b4a43dd25c50e77e8c71fa8fbc45cd70bde94e"},(0,n.kt)("inlineCode",{parentName:"a"},"c8b4a43"))),(0,n.kt)("li",{parentName:"ul"},"refactor(publicationCard): add links and fix accessibily issue ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/80adf6ce0f01e577c34ddba8b345a1fc562f6711"},(0,n.kt)("inlineCode",{parentName:"a"},"80adf6c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add new section in meta and remove links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bfb82ae9635d26ef478db3d63b39f67b25d11fd5"},(0,n.kt)("inlineCode",{parentName:"a"},"bfb82ae"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): add stackable functionality ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8d714fad0465cc71650dcb41236d5667ccc3e789"},(0,n.kt)("inlineCode",{parentName:"a"},"8d714fa"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): update meta section and controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5e28e12bacec6a226659553b8244aeb0165378c9"},(0,n.kt)("inlineCode",{parentName:"a"},"5e28e12"))),(0,n.kt)("li",{parentName:"ul"},"refactor(roundedCard): remove unnecessary code and controls and add all variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6305c54df14faada4058c602af2e33dbc4fad39d"},(0,n.kt)("inlineCode",{parentName:"a"},"6305c54"))),(0,n.kt)("li",{parentName:"ul"},"refactor(roundedCard): add optional link for image and header ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a6d3bf27031d189c403c4a099b09a9066a1620a2"},(0,n.kt)("inlineCode",{parentName:"a"},"a6d3bf2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add tertiary hover and update css selectors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca069484da914520c92f7d67ac92c476ff2ee4a2"},(0,n.kt)("inlineCode",{parentName:"a"},"ca06948"))),(0,n.kt)("li",{parentName:"ul"},"change(fonts): updated font sizes with values given in figma ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4b0ae48ab140d8bbbf6ccbf46eda8d957195ca50"},(0,n.kt)("inlineCode",{parentName:"a"},"4b0ae48"))),(0,n.kt)("li",{parentName:"ul"},"change(style): color, space and adjust line-height as described in docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3366da262ba2dc1c34f57964accf4d6ef6ed37e1"},(0,n.kt)("inlineCode",{parentName:"a"},"3366da2"))),(0,n.kt)("li",{parentName:"ul"},"change(headings): only h2-h6 get tertiary color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d81308c4c0d52d5610a922146f5b426d9eaf323"},(0,n.kt)("inlineCode",{parentName:"a"},"7d81308"))),(0,n.kt)("li",{parentName:"ul"},"change(site): removed Archivo import as we should only use Roboto font ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a6af0564667075d2012c114acb2ad8e1f39b926f"},(0,n.kt)("inlineCode",{parentName:"a"},"a6af056"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): use tertiary color for headings and body color mirroring the design system styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/145fe7348a19b51784a2879225d1b71a642eed45"},(0,n.kt)("inlineCode",{parentName:"a"},"145fe73"))),(0,n.kt)("li",{parentName:"ul"},"change(fonts): modified headings font size as well as line height ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f0771ea1942b6ef436a03c256491a690a52d7413"},(0,n.kt)("inlineCode",{parentName:"a"},"f0771ea"))),(0,n.kt)("li",{parentName:"ul"},"change(fonts): updated font sizes with values given in figma ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f16eef7128ed4f2e7fe97b1ec77f651dc062b771"},(0,n.kt)("inlineCode",{parentName:"a"},"f16eef7"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): use Roboto font from google fonts also for docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/adca8e911faac2d541eb2b9fecf1d9db5b8f9b4c"},(0,n.kt)("inlineCode",{parentName:"a"},"adca8e9"))),(0,n.kt)("li",{parentName:"ul"},"change(headers): added headerColor variable so that thematic sites can easily choose another heading color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f09d2c5e95e82077cc7dfef43a5c56fc73d435c3"},(0,n.kt)("inlineCode",{parentName:"a"},"f09d2c5"))),(0,n.kt)("li",{parentName:"ul"},"change(fonts): typo fixes for typography section of docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cae4b02b20ff578f5cad7c4238c36baa3cae545a"},(0,n.kt)("inlineCode",{parentName:"a"},"cae4b02"))),(0,n.kt)("li",{parentName:"ul"},"change(fonts): modified footer and header values afer global font size changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f160d354b36dc2bee0707b6d63097d5f08408abe"},(0,n.kt)("inlineCode",{parentName:"a"},"f160d35"))),(0,n.kt)("li",{parentName:"ul"},"refactor(iconCards): run prettier ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fe84e46adbc385098385120d14e7583b890db027"},(0,n.kt)("inlineCode",{parentName:"a"},"fe84e46"))),(0,n.kt)("li",{parentName:"ul"},"change(typography): inherit header colors with @headerColor variable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91d93577772534f67bb74df0c9ed260bbaccdd4c"},(0,n.kt)("inlineCode",{parentName:"a"},"91d9357"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumb): use tertiary color also for breadcrumb ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5cbd44bcabae36bcb99a1e987d701e2ea75434b"},(0,n.kt)("inlineCode",{parentName:"a"},"c5cbd44"))),(0,n.kt)("li",{parentName:"ul"},"change(heading): on homepage on the first hero set font size to h1 and inherit color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5711096e45c57b0c3c871f8dcf870c05405d217d"},(0,n.kt)("inlineCode",{parentName:"a"},"5711096"))),(0,n.kt)("li",{parentName:"ul"},"refactor(carousel): update card titles to display styling fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/edd966b5648be51f2d4056c68489648574506656"},(0,n.kt)("inlineCode",{parentName:"a"},"edd966b"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): use the tertiary color for body and heading colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/11c4ed4683df4527ce79155bc65424789e3864af"},(0,n.kt)("inlineCode",{parentName:"a"},"11c4ed4"))),(0,n.kt)("li",{parentName:"ul"},"change(typography): modified lineheight-0 after headers now use 1.2 instead of 1.25 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/04d78a8b0094d9187548e1e3b16d6fbf2248821c"},(0,n.kt)("inlineCode",{parentName:"a"},"04d78a8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add links to cards and replace description with title in carousel ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0258737d26bbb3015ee6222ec878e0477001f615"},(0,n.kt)("inlineCode",{parentName:"a"},"0258737")))),(0,n.kt)("h4",{id:"\ufe0f-others-31"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feature(heading): and cards refactoring #227 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/334fbda2d5b751858d4cc8cae832ca7f5c1ad6c2"},(0,n.kt)("inlineCode",{parentName:"a"},"334fbda"))),(0,n.kt)("li",{parentName:"ul"},"Update package.json ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3870cf3265f0dab4e181c94a6657b9fa408bf186"},(0,n.kt)("inlineCode",{parentName:"a"},"3870cf3"))),(0,n.kt)("li",{parentName:"ul"},"Header refactor 153536 #226 from eea/header-refactor-153536 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87a6fe73211eb028861e099a67e90d365c5111ea"},(0,n.kt)("inlineCode",{parentName:"a"},"87a6fe7"))),(0,n.kt)("li",{parentName:"ul"},"feature(item): icon is now stackable moving the icon on top #220 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b716acfc850345d666d99840445798cdae201a63"},(0,n.kt)("inlineCode",{parentName:"a"},"b716acf")))),(0,n.kt)("h3",{id:"076---2022-08-15"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.7.5...0.7.6"},"0.7.6")," - 2022-08-15"),(0,n.kt)("h4",{id:"-enhancements-32"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(footer): Footer updates 147837 #225 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fa9ae580c7fd45fb4983672167cb5b0b33cc6279"},(0,n.kt)("inlineCode",{parentName:"a"},"fa9ae58"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): initial redesign of main section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8e85617157cdc31a7470acfcd72b85d8fadd1bce"},(0,n.kt)("inlineCode",{parentName:"a"},"8e85617"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): restructure theme sites logo columns ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dcba45a0bfd832c7d5d1e092db8ea4040eceda57"},(0,n.kt)("inlineCode",{parentName:"a"},"dcba45a"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): set actions before thematic section on mobile ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/db25f966a214c94677192215181453e9d59ca957"},(0,n.kt)("inlineCode",{parentName:"a"},"db25f96"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): fix missing key warning from react dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/77f72d5bdc719805a6314058c741387ee7155d28"},(0,n.kt)("inlineCode",{parentName:"a"},"77f72d5"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): Footer updates 147837 #222 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32fed231f1209caeddb18e0bb75d670f20bafb88"},(0,n.kt)("inlineCode",{parentName:"a"},"32fed23")))),(0,n.kt)("h3",{id:"075---2022-08-11"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.7.3...0.7.5"},"0.7.5")," - 2022-08-11"),(0,n.kt)("h4",{id:"-enhancements-33"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(megamenu): mobile improvements with See all links, active elements and non accordion children #224 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6767b99fea3925b35e9dede0a67ea90242e5e730"},(0,n.kt)("inlineCode",{parentName:"a"},"6767b99"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): render accordion only if children have children ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/be63ce2a8e240eac26eedeff0ca104813afbc6b3"},(0,n.kt)("inlineCode",{parentName:"a"},"be63ce2"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): mobile menu design tweaks as seen in latest figma ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/26d74dc063f0b3f8d541c714a10038d79145047e"},(0,n.kt)("inlineCode",{parentName:"a"},"26d74dc"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): removed icon from at a change menu items and they are no longer bold as requested ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/043e77219979711d2f25845c6811b546e791fbf7"},(0,n.kt)("inlineCode",{parentName:"a"},"043e772"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): reset first level panels after each item pass ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/175351bdc9bab5c2d02b2717c24071ba62d4b924"},(0,n.kt)("inlineCode",{parentName:"a"},"175351b"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): mobile menu improvements #223 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b3cabfe3ddc42c2ea39ae20d01bb6fd0db478ecc"},(0,n.kt)("inlineCode",{parentName:"a"},"b3cabfe"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): fixed key error warnings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/075bf0167554869e9fc2f4938c972112e4afa2f7"},(0,n.kt)("inlineCode",{parentName:"a"},"075bf01"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): handle default active sub accordion ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6192a9938b53522682953cb73d7ccfc6ef9c1aec"},(0,n.kt)("inlineCode",{parentName:"a"},"6192a99"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): enable active border only for items not titles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fb0b8696dd73cbf3083c3006a7cff5a1901a6bac"},(0,n.kt)("inlineCode",{parentName:"a"},"fb0b869")))),(0,n.kt)("h4",{id:"\ufe0f-others-32"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Update package.json ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e21e00dc1e0b54daef2c71311a9da709bc1f7e6d"},(0,n.kt)("inlineCode",{parentName:"a"},"e21e00d")))),(0,n.kt)("h3",{id:"073---2022-08-04"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.7.2...0.7.3"},"0.7.3")," - 2022-08-04"),(0,n.kt)("h4",{id:"-enhancements-34"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(megamenu): added icon on mega menu header section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d0ad4d80fc4941e0cdbd8a2d81415387f86efc1c"},(0,n.kt)("inlineCode",{parentName:"a"},"d0ad4d8")))),(0,n.kt)("h3",{id:"072---2022-08-03"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.7.1...0.7.2"},"0.7.2")," - 2022-08-03"),(0,n.kt)("h4",{id:"-bug-fixes-24"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(contentBox): z-index of content hidden by bg when using content-box-inner ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5a7dac923d648d8fe9c9a9cbb8001969d32aea2"},(0,n.kt)("inlineCode",{parentName:"a"},"c5a7dac")))),(0,n.kt)("h4",{id:"\ufe0f-others-33"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Set focus on search input field in the popup on click ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d12c05106d9b95df1885ffa12cb284a0e50e0dfd"},(0,n.kt)("inlineCode",{parentName:"a"},"d12c051"))),(0,n.kt)("li",{parentName:"ul"},"Make cypress tests work with both slate and draft selectors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4d8e5b1d7719637a46eac8232891fc5ed1f51b6f"},(0,n.kt)("inlineCode",{parentName:"a"},"4d8e5b1")))),(0,n.kt)("h3",{id:"071---2022-08-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.7.0...0.7.1"},"0.7.1")," - 2022-08-01"),(0,n.kt)("h3",{id:"070---2022-08-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.6.5...0.7.0"},"0.7.0")," - 2022-08-01"),(0,n.kt)("h4",{id:"-new-features-18"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(accordion,buttons): primary, secondary and tertiary variations #209 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c34617f7a7d7b6b7568c3127f4ae0f52bd57cf8a"},(0,n.kt)("inlineCode",{parentName:"a"},"c34617f")))),(0,n.kt)("h4",{id:"-bug-fixes-25"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(megamenu): key warning errors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ecd27921546204dfa4aa23d25188876e52cda7a"},(0,n.kt)("inlineCode",{parentName:"a"},"4ecd279"))),(0,n.kt)("li",{parentName:"ul"},"fix(container): add padding also for block editors when we are on the add page not just edit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b857aad7855c30c5059b0f0f7c0f720826a71aa7"},(0,n.kt)("inlineCode",{parentName:"a"},"b857aad"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): bump opacity of gradient class to get rid of green hue of header text ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2011b40d384ae5b54a0525e6d9afc88c02f6ca90"},(0,n.kt)("inlineCode",{parentName:"a"},"2011b40"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): remove console log ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3a200233609bbcea39d8e519dc292a132a98aaa3"},(0,n.kt)("inlineCode",{parentName:"a"},"3a20023")))),(0,n.kt)("h4",{id:"-enhancements-35"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(callToAction): add tertiary variant and restructure exports ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac6695ab3066c41739ec4852f0ec3c3bb6cea346"},(0,n.kt)("inlineCode",{parentName:"a"},"ac6695a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(accordion): add color variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3504c15cc861803dc263fb2ad3b6a478043ced33"},(0,n.kt)("inlineCode",{parentName:"a"},"3504c15"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): WIP bringing back rendering of item with callback and path modification ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e43d4340ea82afde950e5fee44a76119060fc28"},(0,n.kt)("inlineCode",{parentName:"a"},"6e43d43"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): add slide down transition and update targetRefs on close ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/96671574f5f7dd992269c42e509598f62bba516d"},(0,n.kt)("inlineCode",{parentName:"a"},"9667157"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): use renderMenuItem in order to render menu items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9ed5cbdf120ee2c92e5f14c09e5289a5abe3f8b0"},(0,n.kt)("inlineCode",{parentName:"a"},"9ed5cbd"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): replaced eionet logo with an svg variant and tweaked size of eionet to match size of eea logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32ce4623ad454edec864ad6c8b45cbf99465bede"},(0,n.kt)("inlineCode",{parentName:"a"},"32ce462"))),(0,n.kt)("li",{parentName:"ul"},"refactor(callToAction): update tertiary state colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/159668ac526a98032392bcbd2c115dc448193152"},(0,n.kt)("inlineCode",{parentName:"a"},"159668a"))),(0,n.kt)("li",{parentName:"ul"},"change(accordion): style default accordion using the grey from semantic ui ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e24907df397457bd9704905aa29ea5d7e1d396cd"},(0,n.kt)("inlineCode",{parentName:"a"},"e24907d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(accordion): add variations and create a default export ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a9c68ffe933c9d700e46db3e0cbbd9e3820c7c7"},(0,n.kt)("inlineCode",{parentName:"a"},"4a9c68f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(colors): add tertiary shades for element states ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1e24a7e13b50f1ee7bd9bd44f3b2eb8e4460c691"},(0,n.kt)("inlineCode",{parentName:"a"},"1e24a7e"))),(0,n.kt)("li",{parentName:"ul"},"change(tests): try to modify tests to use slate instead of draft ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a2e248593433a7a8bf612008c12a3a20a0049d86"},(0,n.kt)("inlineCode",{parentName:"a"},"a2e2485"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): set active class on storybook list items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/112bff195cd07e789b352ae239a148a168b4d877"},(0,n.kt)("inlineCode",{parentName:"a"},"112bff1"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): add border for active element of menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5e7dfa539dc0d126dfb057ac2d293c94b31561bb"},(0,n.kt)("inlineCode",{parentName:"a"},"5e7dfa5"))),(0,n.kt)("li",{parentName:"ul"},"change(package): condition modification of navDepth settings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dd21dadf34f87f08223be3b98c06e7a2f0714326"},(0,n.kt)("inlineCode",{parentName:"a"},"dd21dad"))),(0,n.kt)("li",{parentName:"ul"},"change(mega menu): use non variable to fix build of volto-kitkat-frontend ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ecd652405ba616c9defc86fd793f8c066c0af1e"},(0,n.kt)("inlineCode",{parentName:"a"},"3ecd652"))),(0,n.kt)("li",{parentName:"ul"},"change(header): prefix mega-menu active class for adding border ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32898cb19c20ee7696c51b99cd9df25a333ae6e9"},(0,n.kt)("inlineCode",{parentName:"a"},"32898cb"))),(0,n.kt)("li",{parentName:"ul"},"change(tests): use data-slate-editor instead of contents that was found in draft js instead of slate ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1e0413cf117c098b188e00249c323f2f718b9299"},(0,n.kt)("inlineCode",{parentName:"a"},"1e0413c"))),(0,n.kt)("li",{parentName:"ul"},"change(stories): hide variant control from button link story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/43f8c412f6762edbed9c60e613736d5b60677cd1"},(0,n.kt)("inlineCode",{parentName:"a"},"43f8c41"))),(0,n.kt)("li",{parentName:"ul"},"change(stories): hide variant control from button link story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aea712668331f5681028d961b42a05655f1113d3"},(0,n.kt)("inlineCode",{parentName:"a"},"aea7126")))),(0,n.kt)("h4",{id:"\ufe0f-others-34"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feature(theme): added context navigation component story and default style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5a6955fe935cf6a07f6593164014ed4c9e77d88f"},(0,n.kt)("inlineCode",{parentName:"a"},"5a6955f"))),(0,n.kt)("li",{parentName:"ul"},"feature(megamenu): open default accordions on mobile navigation based on pathname ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cc299c1047f96aa5f85cdc4bb8bb9b3b4fb9ca5e"},(0,n.kt)("inlineCode",{parentName:"a"},"cc299c1"))),(0,n.kt)("li",{parentName:"ul"},"fix eslint warnings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3b30282ea4df59f2d05644cae5c1d703b4dc48b3"},(0,n.kt)("inlineCode",{parentName:"a"},"3b30282"))),(0,n.kt)("li",{parentName:"ul"},"bump release version to 0.7.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fa82cbd7d50765c322bc5c7c58abb5675e0aadad"},(0,n.kt)("inlineCode",{parentName:"a"},"fa82cbd"))),(0,n.kt)("li",{parentName:"ul"},"Theme fixes, mega menu selected element both in desktop and mobile #211 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4827292a9badb02f178b7431cc63e11070784ea"},(0,n.kt)("inlineCode",{parentName:"a"},"b482729"))),(0,n.kt)("li",{parentName:"ul"},"feature(mega-menu): added menu slide down animation #208 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4360d0ef570fbfcc9989170219f7826e5ed780cf"},(0,n.kt)("inlineCode",{parentName:"a"},"4360d0e")))),(0,n.kt)("h3",{id:"065---2022-07-06"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.6.1...0.6.5"},"0.6.5")," - 2022-07-06"),(0,n.kt)("h4",{id:"-bug-fixes-26"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(header): double click to close dropdown is no longer required ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8a2ed0d1e671d12239ecaf250e68b3187c12a53"},(0,n.kt)("inlineCode",{parentName:"a"},"b8a2ed0"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): menu generation when atAGlance isn't found ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d68b03c05f7671e7ea154efe0199c29a3734fbcf"},(0,n.kt)("inlineCode",{parentName:"a"},"d68b03c"))),(0,n.kt)("li",{parentName:"ul"},"fix(menu): removed minHeight that enlarged the global menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/133be1e43d9b7778fd94388629400c5f2b707ff4"},(0,n.kt)("inlineCode",{parentName:"a"},"133be1e"))),(0,n.kt)("li",{parentName:"ul"},"fix(hero): image dimensions when full width and height isn't enabled ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4114f731cce63dc520bfd00cd487943181cec2ee"},(0,n.kt)("inlineCode",{parentName:"a"},"4114f73"))),(0,n.kt)("li",{parentName:"ul"},"fix(contentBox): removed negative z-index that hid fullwidth bg color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bd60faff53205da95d94930517f2ac830ec523d1"},(0,n.kt)("inlineCode",{parentName:"a"},"bd60faf")))),(0,n.kt)("h4",{id:"-enhancements-36"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(hero): tweaked hero block height and padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/994b6f8943c061657792df8adcbdee5da487ce43"},(0,n.kt)("inlineCode",{parentName:"a"},"994b6f8"))),(0,n.kt)("li",{parentName:"ul"},"change(item): tweak size and padding of icon when used inside item ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dbdef191e70bf59dcfddf63c8f9f9a1343266a59"},(0,n.kt)("inlineCode",{parentName:"a"},"dbdef19"))),(0,n.kt)("li",{parentName:"ul"},"change(typography): updated letterspacing values and clarified values used for certain type tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8a13bf8b3691d288209532842fb2c80962d652c0"},(0,n.kt)("inlineCode",{parentName:"a"},"8a13bf8"))),(0,n.kt)("li",{parentName:"ul"},"change(item): enable theming for icon and text color and added tertiary option ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d4444feedd1cd7e6e8f8da630b4b53a19050d1b"},(0,n.kt)("inlineCode",{parentName:"a"},"6d4444f"))),(0,n.kt)("li",{parentName:"ul"},"change(header): top section chevron sizes and margin as requested in enhancements document ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b307c74a671c10a5a6703dcb2126c3c36679c6f5"},(0,n.kt)("inlineCode",{parentName:"a"},"b307c74"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): add underline to links when applied to headers and use tertiary color by default ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/874f956c61e65ddbb6a240865f3946bb84247712"},(0,n.kt)("inlineCode",{parentName:"a"},"874f956"))),(0,n.kt)("li",{parentName:"ul"},"change(utilities): wrap in quotes h2 and h3 of quoted-wrapper ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8aa471604fb127cfa535373bb90a44b4204dd0f4"},(0,n.kt)("inlineCode",{parentName:"a"},"8aa4716"))),(0,n.kt)("li",{parentName:"ul"},"change(package): bump package version to 0.6.5 denoting bug fixes release ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0585aebaeb9e3483ba230110d99a1a875590ad66"},(0,n.kt)("inlineCode",{parentName:"a"},"0585aeb")))),(0,n.kt)("h3",{id:"061---2022-07-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.6.0...0.6.1"},"0.6.1")," - 2022-07-01"),(0,n.kt)("h4",{id:"-new-features-19"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(UnderlinedTitle): create story and necessary utilities ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8beb56b64ca76fb9f0f6df0f3554e64449a64868"},(0,n.kt)("inlineCode",{parentName:"a"},"8beb56b"))),(0,n.kt)("li",{parentName:"ul"},"feat(headers): added underlined titles with theming support ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af675616f9e002458501cf8b90742514153a298f"},(0,n.kt)("inlineCode",{parentName:"a"},"af67561")))),(0,n.kt)("h4",{id:"-enhancements-37"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(heading): move underline story and update controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2c9bfd279eafc44435d223be326f9496856c2154"},(0,n.kt)("inlineCode",{parentName:"a"},"2c9bfd2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(underlineTitle): add content box for different variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/087891535059d6c2d7d2c2accded20f6ba601bb5"},(0,n.kt)("inlineCode",{parentName:"a"},"0878915"))),(0,n.kt)("li",{parentName:"ul"},"refactor(underlinedTitle): add control for changing heading size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/211f5158bff2b437aac60f26ba63f9adb6be540a"},(0,n.kt)("inlineCode",{parentName:"a"},"211f515"))),(0,n.kt)("li",{parentName:"ul"},"refactor(underlinedTitle): Restore text variation dropdown control ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bd8c61129d2c80475af8d0e9310412d5c3a82169"},(0,n.kt)("inlineCode",{parentName:"a"},"bd8c611"))),(0,n.kt)("li",{parentName:"ul"},"refactor(utilities): add color variation for headings and text ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e3a779ec4fa3b712fcd32124f6f83ab784d2223"},(0,n.kt)("inlineCode",{parentName:"a"},"7e3a779"))),(0,n.kt)("li",{parentName:"ul"},"refactor(utilities): update border bottom utility and restore line height for headings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7fe4a7b9fee579d213fe3945a4e548ff089784bd"},(0,n.kt)("inlineCode",{parentName:"a"},"7fe4a7b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(headings): update the line height of headers according to docusaurus instructions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9da19b3e1ea1fd93431e00edf3dc9a443e94f27a"},(0,n.kt)("inlineCode",{parentName:"a"},"9da19b3")))),(0,n.kt)("h4",{id:"-internal-changes-13"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(countup): package for statistics ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/26fcd09bbd8d44119d5ca957542863be8c64836b"},(0,n.kt)("inlineCode",{parentName:"a"},"26fcd09")))),(0,n.kt)("h3",{id:"060---2022-07-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.5.5...0.6.0"},"0.6.0")," - 2022-07-01"),(0,n.kt)("h4",{id:"-bug-fixes-27"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(item): adjust the container in stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a848c46b5bf3153ec993a21a530e120bae872407"},(0,n.kt)("inlineCode",{parentName:"a"},"a848c46"))),(0,n.kt)("li",{parentName:"ul"},"fix(tag): align start for tags on mobile, update path for Tag List and add containers ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b9de8452c42ed6d16028ce147f2d7a062b895d67"},(0,n.kt)("inlineCode",{parentName:"a"},"b9de845"))),(0,n.kt)("li",{parentName:"ul"},"fix(item): update image width & height on mobiles and add 3 line clamp for description ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0cd2c46c945ff85b55183994990fae9cf450f3d1"},(0,n.kt)("inlineCode",{parentName:"a"},"0cd2c46"))),(0,n.kt)("li",{parentName:"ul"},"fix(pageheader): metadata font size on mobile to be readable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0a9b1fa7db6f0b11265f9eb4d28f25b23bedc79a"},(0,n.kt)("inlineCode",{parentName:"a"},"0a9b1fa"))),(0,n.kt)("li",{parentName:"ul"},"fix(breadcrumb): fixed variable name for breadcrumb item ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2b547eb43e0db4aa9bb63b4e4ba7f541f357fbd0"},(0,n.kt)("inlineCode",{parentName:"a"},"2b547eb")))),(0,n.kt)("h4",{id:"-enhancements-38"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(Item):create item story with custom default class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/069ae02a7cc2b15b7e6732e46f52d07eaa4502b1"},(0,n.kt)("inlineCode",{parentName:"a"},"069ae02"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pagination): add pastanage menu overrides and remove any eea theme css from default story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/508081090baaeb455130c760c6c0e7e23972d84a"},(0,n.kt)("inlineCode",{parentName:"a"},"5080810"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): update variables from px to rem ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/30eed78c170e5719ba4fb85c3a171db3f97d63c8"},(0,n.kt)("inlineCode",{parentName:"a"},"30eed78"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Item):add default item mobile padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/35184655e3225b8ad63626c8e521b5dcf59eaa3b"},(0,n.kt)("inlineCode",{parentName:"a"},"3518465"))),(0,n.kt)("li",{parentName:"ul"},"change(site): added fixes from custom ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0fe4d80586c8877d58905ec40aa7df19c2f4e32f"},(0,n.kt)("inlineCode",{parentName:"a"},"0fe4d80"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Pagination): add default pagination stopry and rename previous as Secondary ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a5e3e13b40d4d1d0c96f1efaa3a0c326d60c6d93"},(0,n.kt)("inlineCode",{parentName:"a"},"a5e3e13"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pagination): comment out secondary pagination and its styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bcf4cff1cff490718751475354b8fb32da174383"},(0,n.kt)("inlineCode",{parentName:"a"},"bcf4cff"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tags): remove content class and add flex wrap ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d6333ca7e61a588d8ffe4d0d2e02005c0aa12379"},(0,n.kt)("inlineCode",{parentName:"a"},"d6333ca"))),(0,n.kt)("li",{parentName:"ul"},"change(logo): use a real svg logo for white eea logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3b80dc7698c3dbab5d3834cc62f5102c2ace0166"},(0,n.kt)("inlineCode",{parentName:"a"},"3b80dc7"))),(0,n.kt)("li",{parentName:"ul"},"change(header): show eea information systems on tablet as well ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce82cebb554eb11a35ea2b3ee0c62bc645716476"},(0,n.kt)("inlineCode",{parentName:"a"},"ce82ceb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): update letter spacing tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f8753b7527b1bf7271102666a8662a74b2b1775"},(0,n.kt)("inlineCode",{parentName:"a"},"5f8753b"))),(0,n.kt)("li",{parentName:"ul"},"change(letterspacing): updated letter spacing positive values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b31818f292ce7ce8711084116a7b4df78cca33f0"},(0,n.kt)("inlineCode",{parentName:"a"},"b31818f"))),(0,n.kt)("li",{parentName:"ul"},"change(pageheader): add bottom margin on mobile for sharing dropdown actions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d3cda4732ec94dac91b36ef10014fbbe08a0a470"},(0,n.kt)("inlineCode",{parentName:"a"},"d3cda47"))),(0,n.kt)("li",{parentName:"ul"},"change(pageheader): removed blogger, reddit and stumbleupon sharing links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e4acc4e83c120cda59d94f04867a53e21bf322ab"},(0,n.kt)("inlineCode",{parentName:"a"},"e4acc4e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Item): add default item background color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c978c8d05355065466a8a661844237a9df103b94"},(0,n.kt)("inlineCode",{parentName:"a"},"c978c8d"))),(0,n.kt)("li",{parentName:"ul"},"change(package): bump package version ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f01f72ba6b09b6aae00c54e446bafddb48c4cd1"},(0,n.kt)("inlineCode",{parentName:"a"},"1f01f72")))),(0,n.kt)("h4",{id:"-internal-changes-14"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(item): update item image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e585e9d8c85a3627696b55c0505e29e8a8c33f7f"},(0,n.kt)("inlineCode",{parentName:"a"},"e585e9d")))),(0,n.kt)("h4",{id:"-documentation-changes-13"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(colors): token usage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c433ec6fcf190f85ab1dd81ea3e63eeb381d0c28"},(0,n.kt)("inlineCode",{parentName:"a"},"c433ec6"))),(0,n.kt)("li",{parentName:"ul"},"docs(Docusaurus): typography and spacing updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48d1269dce396aec26db1d1e2f777851a26eaa81"},(0,n.kt)("inlineCode",{parentName:"a"},"48d1269"))),(0,n.kt)("li",{parentName:"ul"},"docs(Docusaurus): various fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a972a31f7932d29d61a46da251c0c98994516365"},(0,n.kt)("inlineCode",{parentName:"a"},"a972a31"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/66d95e4fee695a20de47f5476712034f9f07f4a8"},(0,n.kt)("inlineCode",{parentName:"a"},"66d95e4")))),(0,n.kt)("h4",{id:"\ufe0f-others-35"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Tabs block custom border left/top ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca4cce05ddb603a26d729dfe31f0f11fda7563fb"},(0,n.kt)("inlineCode",{parentName:"a"},"ca4cce0"))),(0,n.kt)("li",{parentName:"ul"},"Fix sidebar tabs in Volto CSS ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c287db5abbfe068d4b255c41fd58d0433d2640c4"},(0,n.kt)("inlineCode",{parentName:"a"},"c287db5")))),(0,n.kt)("h3",{id:"055---2022-06-23"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.5.4...0.5.5"},"0.5.5")," - 2022-06-23"),(0,n.kt)("h4",{id:"-bug-fixes-28"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(contentBox): color of cards when inside content-boxes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/76a452031473f43928dee1d3ee705d06101e6a21"},(0,n.kt)("inlineCode",{parentName:"a"},"76a4520")))),(0,n.kt)("h4",{id:"-enhancements-39"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(homepage): moved fixes of homepage to custom and colored carousel arrow ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0a226ef3f5d328d45513764bec02d58241417db0"},(0,n.kt)("inlineCode",{parentName:"a"},"0a226ef")))),(0,n.kt)("h3",{id:"054---2022-06-16"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.5.3...0.5.4"},"0.5.4")," - 2022-06-16"),(0,n.kt)("h4",{id:"-bug-fixes-29"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(block-style): Content box preview in sidebar ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6362766f5e8dabf778e3864d2bb08966a55fc078"},(0,n.kt)("inlineCode",{parentName:"a"},"6362766"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): ensure transparency goes as high as the search icon ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4470e132e1e70fba3fdfb33fc63a1cc9d62700e8"},(0,n.kt)("inlineCode",{parentName:"a"},"4470e13")))),(0,n.kt)("h4",{id:"-enhancements-40"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(contentBox): add background as before element instead of using full-width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e0a5962c1b9cb0d3ef9a8d7b7208eded34eb3ce"},(0,n.kt)("inlineCode",{parentName:"a"},"7e0a596"))),(0,n.kt)("li",{parentName:"ul"},"change(content-box): content box links are now underlined ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f7976f50f5807a884522d6dba871a2757a1c5a98"},(0,n.kt)("inlineCode",{parentName:"a"},"f7976f5"))),(0,n.kt)("li",{parentName:"ul"},"change(homepage): added fixes from custom ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c3e03331d328f4fd7c6689f93bc1f1156013b8a9"},(0,n.kt)("inlineCode",{parentName:"a"},"c3e0333"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): add margin top with the height of the top section on edit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fefa6bb0f513e221ddb587f081c0e7d0c3067dfd"},(0,n.kt)("inlineCode",{parentName:"a"},"fefa6bb"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): fix default card color when inside content-boxes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6fdf3aabf9515289b36a5822e21edc5d282c4536"},(0,n.kt)("inlineCode",{parentName:"a"},"6fdf3aa"))),(0,n.kt)("li",{parentName:"ul"},"change(container): removed override of content-box-inner container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/66fe7d45adc631c3ebf0e8dd11de19d7ff60b894"},(0,n.kt)("inlineCode",{parentName:"a"},"66fe7d4")))),(0,n.kt)("h3",{id:"053---2022-06-16"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.5.2...0.5.3"},"0.5.3")," - 2022-06-16"),(0,n.kt)("h4",{id:"-bug-fixes-30"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(homepage): hero and homepage fixes for #151156 #198 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/43d4efc508750e0e9cbb93b9bffc3721be452c5a"},(0,n.kt)("inlineCode",{parentName:"a"},"43d4efc"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): fixed top section width on edit page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce5898b5ee41ea6959a2c454b3fb98216d71feb3"},(0,n.kt)("inlineCode",{parentName:"a"},"ce5898b")))),(0,n.kt)("h4",{id:"-enhancements-41"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(hero): added min height to hero-block-image-wrapper ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3cc37c027597573281710c9db98c687057d261dd"},(0,n.kt)("inlineCode",{parentName:"a"},"3cc37c0"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): spaced hero block has a 3rem margin top and bottom ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c463b033dda601bfd475b282bc0003200a053d45"},(0,n.kt)("inlineCode",{parentName:"a"},"c463b03"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): added extra top margin on hero-block-body from tablet and up within homepage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/64142c3c45f6a8ea6502842055a2341dcf16088c"},(0,n.kt)("inlineCode",{parentName:"a"},"64142c3"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): tweak min height of hero block ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e1271b4b5fdcd8205f0bec8b88ab9ae31f62251f"},(0,n.kt)("inlineCode",{parentName:"a"},"e1271b4"))),(0,n.kt)("li",{parentName:"ul"},"change(card,contentBox): use inherit for text color to inherit black from body ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c1ba3b6ddc16ddc7394aba8d78cad73b5a8c34cb"},(0,n.kt)("inlineCode",{parentName:"a"},"c1ba3b6"))),(0,n.kt)("li",{parentName:"ul"},"change(container): on section-edit modify only left and right padding values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fe6e3ec764643ec01e20ae9dbdde921774ef04cd"},(0,n.kt)("inlineCode",{parentName:"a"},"fe6e3ec"))),(0,n.kt)("li",{parentName:"ul"},"change(utilities): bump z-index of overlay class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ede3209556b620d2252bb03d4c994a92b6708fd2"},(0,n.kt)("inlineCode",{parentName:"a"},"ede3209"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): fixed variable reference for margin of body from homepage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/092b90b2a902b71cc96132ca3c96108edda56342"},(0,n.kt)("inlineCode",{parentName:"a"},"092b90b")))),(0,n.kt)("h3",{id:"052---2022-06-14"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.5.1...0.5.2"},"0.5.2")," - 2022-06-14"),(0,n.kt)("h4",{id:"-new-features-20"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(contentBox) : add new Content Box component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ebbb47fe685f9809aa3572263be376d9688371e"},(0,n.kt)("inlineCode",{parentName:"a"},"2ebbb47"))),(0,n.kt)("li",{parentName:"ul"},"feat(ContentBox): Add primary, secondary, tertiary themes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87cb2fe7e4cd5c2872299756f493e371abcbb05f"},(0,n.kt)("inlineCode",{parentName:"a"},"87cb2fe"))),(0,n.kt)("li",{parentName:"ul"},"feat(ContentBox): Update storybook with available themes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93b26b2f5f1d627aa8049df61257499e4798dd79"},(0,n.kt)("inlineCode",{parentName:"a"},"93b26b2")))),(0,n.kt)("h4",{id:"-enhancements-42"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(contentBox): restructure the component to be more flexible ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f0d2de67e43fafa10052871f99ac841c83cf8157"},(0,n.kt)("inlineCode",{parentName:"a"},"f0d2de6")))),(0,n.kt)("h4",{id:"-internal-changes-15"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(contentBox) : add lint changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5aaf740594f0001b1672bb6dc18d973f55c881f0"},(0,n.kt)("inlineCode",{parentName:"a"},"5aaf740")))),(0,n.kt)("h4",{id:"\ufe0f-others-36"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"perf(eol): change to lf ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/78b2955ff73d9436134d1a6399040b2d7c7f5714"},(0,n.kt)("inlineCode",{parentName:"a"},"78b2955"))),(0,n.kt)("li",{parentName:"ul"},"Cleanup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2b128dface95b560588a343f1ddf7bbaf3efb320"},(0,n.kt)("inlineCode",{parentName:"a"},"2b128df")))),(0,n.kt)("h3",{id:"051---2022-06-13"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.5.0...0.5.1"},"0.5.1")," - 2022-06-13"),(0,n.kt)("h4",{id:"-enhancements-43"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(header): changed homepage text color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/64ce8b61f8f2150513e09bf2926b48aa2ae1071c"},(0,n.kt)("inlineCode",{parentName:"a"},"64ce8b6"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): added styles for adding dark overlay to hero ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bf1d292fecfa8a6b222558f0d93f48e19bf6b8ea"},(0,n.kt)("inlineCode",{parentName:"a"},"bf1d292"))),(0,n.kt)("li",{parentName:"ul"},"change(homepage): hide stagingBanner on homepage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fb6e319dd10f4d148cc8f3b33dafc43280a0254f"},(0,n.kt)("inlineCode",{parentName:"a"},"fb6e319"))),(0,n.kt)("li",{parentName:"ul"},"change(header): use variable for homepage hero-block padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/89ff3441f269281ffb3da32cd3e5c64715b3204b"},(0,n.kt)("inlineCode",{parentName:"a"},"89ff344"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): modified grey-4 color to point to a 10% shade from original color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b406283e61c7356bec9d453567cd1ccde496880d"},(0,n.kt)("inlineCode",{parentName:"a"},"b406283"))),(0,n.kt)("li",{parentName:"ul"},"change(header): added min-height for mega menu needed for 1 items menus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/18814f48fb743c88d05554e9a1773f8d85dec86c"},(0,n.kt)("inlineCode",{parentName:"a"},"18814f4"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): hero section block integration #192 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ea2f40583951016c164c9abdf22d8e809d207fe"},(0,n.kt)("inlineCode",{parentName:"a"},"4ea2f40")))),(0,n.kt)("h4",{id:"\ufe0f-others-37"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Add hero block style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fa39656fd661d8af95f483a6f33a08e4c93c42f1"},(0,n.kt)("inlineCode",{parentName:"a"},"fa39656"))),(0,n.kt)("li",{parentName:"ul"},"Add padding if hero block is not full-width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/808b83957d6a866cc31c928f414fa8fa5da517a1"},(0,n.kt)("inlineCode",{parentName:"a"},"808b839"))),(0,n.kt)("li",{parentName:"ul"},"Cleanup available languages ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0c490512a6a6524efe9a37b4b61ab0061a240abb"},(0,n.kt)("inlineCode",{parentName:"a"},"0c49051"))),(0,n.kt)("li",{parentName:"ul"},"Use 1.5 rem ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1125cd7c65332fc5961ffbbbd2d2ab6bcc8b1b5b"},(0,n.kt)("inlineCode",{parentName:"a"},"1125cd7")))),(0,n.kt)("h3",{id:"050---2022-06-11"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.4.5...0.5.0"},"0.5.0")," - 2022-06-11"),(0,n.kt)("h4",{id:"-new-features-21"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(hero): added storybook implementation of hero component #172 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/17b9d1693e31bf7b3b41ca84be7bd21f07065674"},(0,n.kt)("inlineCode",{parentName:"a"},"17b9d16"))),(0,n.kt)("li",{parentName:"ul"},"feat(hero): add hero block component and stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6019fc843ec14a8afc7558e92c2d4b4bb14ee199"},(0,n.kt)("inlineCode",{parentName:"a"},"6019fc8")))),(0,n.kt)("h4",{id:"-bug-fixes-31"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(header): Internal links in mega menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d8ca13558c3e8c336800791f2fea8a8d33a2b602"},(0,n.kt)("inlineCode",{parentName:"a"},"d8ca135"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): show active menu when clicking on children ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a54fa67a1a92e2ab4216e6d149f66e1ee53aab89"},(0,n.kt)("inlineCode",{parentName:"a"},"a54fa67"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): accessibility and dropdown possition fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/505ac36a27d86e620fb5af515a0b8b5979610f0a"},(0,n.kt)("inlineCode",{parentName:"a"},"505ac36"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): fix accessibility issue by David ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/783dcec0d140e6e6e568d0f82833dcbf8a5c7d3d"},(0,n.kt)("inlineCode",{parentName:"a"},"783dcec"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): dropdowns disappear on resize ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/52338fd3e711f4918612e052dc2034a8d9bd40bd"},(0,n.kt)("inlineCode",{parentName:"a"},"52338fd"))),(0,n.kt)("li",{parentName:"ul"},"fix(header-topdropdown): dedupe html elements for topdropdowns ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cd8a2a7ea091e81b736438f7c2a87c254af1b092"},(0,n.kt)("inlineCode",{parentName:"a"},"cd8a2a7"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): transparency class should apply on the current bg color or image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f9a0033c5538cb19f08f26cf28d47954cc52607d"},(0,n.kt)("inlineCode",{parentName:"a"},"f9a0033"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): mobile dropdown now visible ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/34371b436f2ec100f3920f78de49983ba16679b0"},(0,n.kt)("inlineCode",{parentName:"a"},"34371b4"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): dropdown disappears after window resize #116 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fc7dd8bd7911421fb734a696a2dd5d3ad3b652b0"},(0,n.kt)("inlineCode",{parentName:"a"},"fc7dd8b"))),(0,n.kt)("li",{parentName:"ul"},"fix(header-topdropdown): dedupe html dropdown elements for topdropdowns #115 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f10a7a8743a5fb2cecd0c3374ec9d894e914143f"},(0,n.kt)("inlineCode",{parentName:"a"},"f10a7a8")))),(0,n.kt)("h4",{id:"-enhancements-44"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): update mega menu in header component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2d1ce454553d116efa96288079b8b77649e10abb"},(0,n.kt)("inlineCode",{parentName:"a"},"2d1ce45"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update structure and variables of top bar ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af709094f94f0cc2e2309b1aedb376e45dc7f136"},(0,n.kt)("inlineCode",{parentName:"a"},"af70909"))),(0,n.kt)("li",{parentName:"ul"},"change(header): renamed mega menu items href attribute to url ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ed8144589f87a9ad219c97193863c999a72cb6d"},(0,n.kt)("inlineCode",{parentName:"a"},"3ed8144"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update main section and and add color variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2f0fd1de7c04eff4b2a9b62d03dd13a1b0d69bc"},(0,n.kt)("inlineCode",{parentName:"a"},"f2f0fd1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): minor updates on colors and widths ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a70129fd929fedb344a47e049cca94274e84a3b1"},(0,n.kt)("inlineCode",{parentName:"a"},"a70129f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero): add full-heigh control to adjust height ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a45cb7c599cdc11426207001e67d8f7d727233fe"},(0,n.kt)("inlineCode",{parentName:"a"},"a45cb7c"))),(0,n.kt)("li",{parentName:"ul"},"change(header): disable sticky setting until feature is more stable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1d7af954c85cb6a8a657c1625e4ae863e562346a"},(0,n.kt)("inlineCode",{parentName:"a"},"1d7af95"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero):make button variant and inverted different button controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e182ca9ecdb76507205d84f83cad6a79dd74a03"},(0,n.kt)("inlineCode",{parentName:"a"},"7e182ca"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header):main bar sticky on scroll up ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9c9e7c6f9651c0663a1eab1856d7324a73afb2de"},(0,n.kt)("inlineCode",{parentName:"a"},"9c9e7c6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(headings): update heading sizes for mobile ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19f3ccacaf2c744b5f5c2ec8635773de7ef0016b"},(0,n.kt)("inlineCode",{parentName:"a"},"19f3cca"))),(0,n.kt)("li",{parentName:"ul"},"change(header): hide first link(home) from header menu on site ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ae7f3b9385620eb3d840dd90f512e37cd8556a6d"},(0,n.kt)("inlineCode",{parentName:"a"},"ae7f3b9"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): typo correction and key setting on list.items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/96d2c4fbfa722d22a215e8d27f1400e65fe9476e"},(0,n.kt)("inlineCode",{parentName:"a"},"96d2c4f"))),(0,n.kt)("li",{parentName:"ul"},"change(header): use Link instead of a tag for menu items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9812b3fba7b8305399d6972daf135b8a2d88e876"},(0,n.kt)("inlineCode",{parentName:"a"},"9812b3f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add control for inverted logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/023ca45e6f263166211cbea0d63b1938d11221da"},(0,n.kt)("inlineCode",{parentName:"a"},"023ca45"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero): move quoted utility to h2 tag ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7376676b4875494f16c49945f6b5dac19c6b8009"},(0,n.kt)("inlineCode",{parentName:"a"},"7376676"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add link for menu title inside desktop mega menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24355d000b2bd808b2031cd2b78e60cafb9ad5b1"},(0,n.kt)("inlineCode",{parentName:"a"},"24355d0"))),(0,n.kt)("li",{parentName:"ul"},"refactor(utilities): update hex with color token ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8dc65ef55a62dcb32b6eb8a684524a8dc1fa6ba6"},(0,n.kt)("inlineCode",{parentName:"a"},"8dc65ef"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): and mega menu to latest spec #114 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/44fcf68be242f97ced852b28ac3ab820dc0e1045"},(0,n.kt)("inlineCode",{parentName:"a"},"44fcf68"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update search input and file endings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/afab36f96f245e197eff528cb1d9e6fea45bc7ba"},(0,n.kt)("inlineCode",{parentName:"a"},"afab36f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add control that toggles transparency class on main section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8d4bdb9c527f102ffd3718f32bf1a43309a9bb4"},(0,n.kt)("inlineCode",{parentName:"a"},"b8d4bdb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): restore union dropdown after implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e98bab497ee10ad89d2dfed76c7117b633206fe"},(0,n.kt)("inlineCode",{parentName:"a"},"7e98bab"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): minor responsive fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/16a000634505c9e8f8b310860a30b62798a0fb87"},(0,n.kt)("inlineCode",{parentName:"a"},"16a0006"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero): align hero's text and meta seperately ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4fa958f7c7cc6d331a8eb7aaf25dc44d6cd3632a"},(0,n.kt)("inlineCode",{parentName:"a"},"4fa958f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero):add button variant controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f362a7b2ec273131fa0876f23b74c740c7217b3a"},(0,n.kt)("inlineCode",{parentName:"a"},"f362a7b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update search input ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/368962eabb668e2ec1bdcd18ae81658e7b1d911b"},(0,n.kt)("inlineCode",{parentName:"a"},"368962e"))),(0,n.kt)("li",{parentName:"ul"},"change(header): mark top level active menu item ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/665c449bc2667cc1471a4b97923c897ad3506792"},(0,n.kt)("inlineCode",{parentName:"a"},"665c449"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero):prettier & style changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d84688440417a430afd9fd24f4c8cfeef0121203"},(0,n.kt)("inlineCode",{parentName:"a"},"d846884"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add control for main section stickiness ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2f07572f78074137e7e6a49585273210ed5cedcb"},(0,n.kt)("inlineCode",{parentName:"a"},"2f07572"))),(0,n.kt)("li",{parentName:"ul"},"change(header): use viewport width for changing mobile text in header dropdowns ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b50fa585c0abeedc04a46395f08e50a9e112c430"},(0,n.kt)("inlineCode",{parentName:"a"},"b50fa58"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add fluid font sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f2743e39107fd1bd00a54e03bf92963eb9853f2"},(0,n.kt)("inlineCode",{parentName:"a"},"5f2743e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header) add position sticky & transparent for main section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/29df772edfe23b1752aa3d184659eea90c3c9221"},(0,n.kt)("inlineCode",{parentName:"a"},"29df772"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero): update variables with new design tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1d9792231c50f12fd68364e201054f6ab0926665"},(0,n.kt)("inlineCode",{parentName:"a"},"1d97922"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Language List): render language dropdown as ul and li elements ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3617442da78af07d3f473d0c43c47dd48c9b2ac3"},(0,n.kt)("inlineCode",{parentName:"a"},"3617442"))),(0,n.kt)("li",{parentName:"ul"},"change(header): introduced item class to the mega menu link content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/00ca376ea4cf1de4851e84567b97c374ee7f66e3"},(0,n.kt)("inlineCode",{parentName:"a"},"00ca376"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Language List): add less variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7ccc1ccf57419b6eecbf71d479db72b84428d43a"},(0,n.kt)("inlineCode",{parentName:"a"},"7ccc1cc"))),(0,n.kt)("li",{parentName:"ul"},"change(header): disabled active menu when clicking on globalnav links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3f7b5eedb038b51fbae8a14a683dc6adc919549b"},(0,n.kt)("inlineCode",{parentName:"a"},"3f7b5ee"))),(0,n.kt)("li",{parentName:"ul"},"change(header): target link instead of span directly ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9e865fbb5b256196756c3d84de397296ac0b447a"},(0,n.kt)("inlineCode",{parentName:"a"},"9e865fb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): remove unused imports ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e232db6ce0b2553be79d98d8497fa06f548b772"},(0,n.kt)("inlineCode",{parentName:"a"},"7e232db")))),(0,n.kt)("h4",{id:"\ufe0f-others-38"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Add item themes; override .block .ui.image width based on size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/06010db21398638d46d2e007317d72a7aff7e7d9"},(0,n.kt)("inlineCode",{parentName:"a"},"06010db"))),(0,n.kt)("li",{parentName:"ul"},"Move item icon themes to item.overrides ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/31e8921f4ee4d92ba3a9c58275b41dd3101cffd2"},(0,n.kt)("inlineCode",{parentName:"a"},"31e8921"))),(0,n.kt)("li",{parentName:"ul"},"Override only the width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8d4927084e5daedcb69e6f3a57cab73a9016a55f"},(0,n.kt)("inlineCode",{parentName:"a"},"8d49270"))),(0,n.kt)("li",{parentName:"ul"},"Override tile image in .block parrent ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/005655ddff6f45e211f1ff8156b0b7efa1e47a2e"},(0,n.kt)("inlineCode",{parentName:"a"},"005655d"))),(0,n.kt)("li",{parentName:"ul"},"Update package.json ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9dc38165a95deca1faf2dfccdc03fd6cab3d8c54"},(0,n.kt)("inlineCode",{parentName:"a"},"9dc3816"))),(0,n.kt)("li",{parentName:"ul"},"feature(item): added themes to item icons #190 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a6a2907df09575a18fb6e81dc52e8d6651eff118"},(0,n.kt)("inlineCode",{parentName:"a"},"a6a2907"))),(0,n.kt)("li",{parentName:"ul"},"update storybook header.topdropdown ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e58ac0821af56c06272e3373383647cbbff20978"},(0,n.kt)("inlineCode",{parentName:"a"},"e58ac08"))),(0,n.kt)("li",{parentName:"ul"},"use volto-screen-helper width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea156aad1100166ba78635163cfacdcfb913c1d4"},(0,n.kt)("inlineCode",{parentName:"a"},"ea156aa"))),(0,n.kt)("li",{parentName:"ul"},"Add divider content for metadata field in Banner ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/327ad1c5fdca0d376d04fd36084b940e5dd016ab"},(0,n.kt)("inlineCode",{parentName:"a"},"327ad1c"))),(0,n.kt)("li",{parentName:"ul"},"rename to viewportWidth ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32162e7c695774bbb68ac63a0008e8b148f1e9f5"},(0,n.kt)("inlineCode",{parentName:"a"},"32162e7"))),(0,n.kt)("li",{parentName:"ul"},"don't connect component to store ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/470b8bade5e8f2eaabb20a7bb02c8e82ca42f8a0"},(0,n.kt)("inlineCode",{parentName:"a"},"470b8ba"))),(0,n.kt)("li",{parentName:"ul"},"Add end of line ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51639d804a2b84f66373fb77c569bcc43b22e303"},(0,n.kt)("inlineCode",{parentName:"a"},"51639d8"))),(0,n.kt)("li",{parentName:"ul"},"behave as mobile under 480 only ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/11b99e15cb83245a32bb04f3937f5b95a60b1e95"},(0,n.kt)("inlineCode",{parentName:"a"},"11b99e1"))),(0,n.kt)("li",{parentName:"ul"},"make it account for all mobile-s,m,l ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/69e23ae8d12042f241dc53c9e296c340d5b17089"},(0,n.kt)("inlineCode",{parentName:"a"},"69e23ae")))),(0,n.kt)("h3",{id:"045---2022-06-08"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.4.4...0.4.5"},"0.4.5")," - 2022-06-08"),(0,n.kt)("h4",{id:"-enhancements-45"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(tabs): Add style for tabs accordion template #187 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fb8adbf84ac564a14d45bb6e8f4e1661811672d5"},(0,n.kt)("inlineCode",{parentName:"a"},"fb8adbf"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): avoid react error by providing key prop to grid column ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef0b1937d614a889a0c2117e483a834ed1aec1e3"},(0,n.kt)("inlineCode",{parentName:"a"},"ef0b193")))),(0,n.kt)("h4",{id:"\ufe0f-others-39"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Cleanup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4b9637ebd2d6c015f8d4323551c6cbc4b7506df"},(0,n.kt)("inlineCode",{parentName:"a"},"d4b9637"))),(0,n.kt)("li",{parentName:"ul"},"Add style for tabs accordion template ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a10998372a268b99991f7dda55103149f29d00cb"},(0,n.kt)("inlineCode",{parentName:"a"},"a109983")))),(0,n.kt)("h3",{id:"044---2022-06-08"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.4.3...0.4.4"},"0.4.4")," - 2022-06-08"),(0,n.kt)("h4",{id:"-new-features-22"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(divider): create story for divider ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b10a2e08b14962bed9f13317754f4124ee60d313"},(0,n.kt)("inlineCode",{parentName:"a"},"b10a2e0")))),(0,n.kt)("h4",{id:"-bug-fixes-32"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(divider): restore space between classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c595c152c144463f33757157ed7d6797ae31ceed"},(0,n.kt)("inlineCode",{parentName:"a"},"c595c15"))),(0,n.kt)("li",{parentName:"ul"},"fix(divider): Text colors and transform ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e524e1002bb0700ea69782cf5a95c6073ab383d2"},(0,n.kt)("inlineCode",{parentName:"a"},"e524e10"))),(0,n.kt)("li",{parentName:"ul"},"fix(footer): story aria labels for social media links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/254bdc7ba944943f5d08a71f9d0a3a31bdc06044"},(0,n.kt)("inlineCode",{parentName:"a"},"254bdc7")))),(0,n.kt)("h4",{id:"-enhancements-46"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update logos and less structure ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/66b8e0f12825968d94f7d572f2823d9a8a3a239b"},(0,n.kt)("inlineCode",{parentName:"a"},"66b8e0f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): first footer updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d18a2ee59d0deb143075d8dfeb949898ad1f6399"},(0,n.kt)("inlineCode",{parentName:"a"},"d18a2ee"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): logo updates and adjustments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/101bc9dfe4136240457f335de867a83c28d59339"},(0,n.kt)("inlineCode",{parentName:"a"},"101bc9d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): use tokens and adjust spacing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2cb166949913f725271050e863b38e7630748135"},(0,n.kt)("inlineCode",{parentName:"a"},"2cb1669"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): moved SubFooter logic to SubFooter.jsx from Footer story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/902383a0bb3446dc69237099bd429ead5e30a6c1"},(0,n.kt)("inlineCode",{parentName:"a"},"902383a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Divider):add divider with content inside story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2d66dca901fa189d69b65239dc34b1969097be8"},(0,n.kt)("inlineCode",{parentName:"a"},"e2d66dc"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): added managed by section as properties ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9328fc3084baf22439e1892d256d9a167b911849"},(0,n.kt)("inlineCode",{parentName:"a"},"9328fc3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(divider): remove custom divider ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4870d2252ad216e82213fa1f94cc39609ae676d"},(0,n.kt)("inlineCode",{parentName:"a"},"d4870d2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Divider_:remove green color class & add tertiary ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/95f30186bc1768e08f00ad7d5ffa2a70402ac553"},(0,n.kt)("inlineCode",{parentName:"a"},"95f3018"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): use remix icons for social links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5ef9aa2cebb6f96857a1920cefbf7e367b4d7c28"},(0,n.kt)("inlineCode",{parentName:"a"},"5ef9aa2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Divider):remove clean class and use fitted prop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8d2be350dcc44fd56b5fbfb791fb6b2a45bd8a52"},(0,n.kt)("inlineCode",{parentName:"a"},"8d2be35"))),(0,n.kt)("li",{parentName:"ul"},"change(Divider): Rename color property to theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0deffc823609d23131a85bc180e4a3f5a67a64aa"},(0,n.kt)("inlineCode",{parentName:"a"},"0deffc8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update links and logo align ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7afbab9b37982a557ac8bfa4430205ce912c3b8b"},(0,n.kt)("inlineCode",{parentName:"a"},"7afbab9"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): tweaked column sizes to the values before my changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fdf271868e44bce2904cc28c6fa924ee4c9ba759"},(0,n.kt)("inlineCode",{parentName:"a"},"fdf2718"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): to latest figma design #182 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e0ba2b659db9dc1b140d853840a06bd3ce31cab"},(0,n.kt)("inlineCode",{parentName:"a"},"3e0ba2b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): move subfooter logic to the proper component #185 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/303457719128c9699dd34939bd8db2b647977667"},(0,n.kt)("inlineCode",{parentName:"a"},"3034577"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b0b872b1415c9792a5886f619195f9c0471ea564"},(0,n.kt)("inlineCode",{parentName:"a"},"b0b872b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(testimonial): update divider ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/784450abdf395318fe89d8d3d0a1e398393cc93c"},(0,n.kt)("inlineCode",{parentName:"a"},"784450a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(testimonial): changed divider color to secondary ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/84282f960ab22ccb8403e975c055c61d1023193a"},(0,n.kt)("inlineCode",{parentName:"a"},"84282f9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(divider): remove custom divider from theme config ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a0409e8df3c9ba043717140455369a3630f0da85"},(0,n.kt)("inlineCode",{parentName:"a"},"a0409e8")))),(0,n.kt)("h4",{id:"-documentation-changes-14"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(divider): switch to secondary color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/239844be374a2f6bc4667e7ab3d2f52bfdc181ad"},(0,n.kt)("inlineCode",{parentName:"a"},"239844b"))),(0,n.kt)("li",{parentName:"ul"},"docs(divider): showcase path fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5ea03f60034edc918054aa273e44b84b2537716"},(0,n.kt)("inlineCode",{parentName:"a"},"d5ea03f")))),(0,n.kt)("h4",{id:"\ufe0f-others-40"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Remove unnecessary spaces ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d137981430809345bfb3ad494e7ab981c93c3e51"},(0,n.kt)("inlineCode",{parentName:"a"},"d137981"))),(0,n.kt)("li",{parentName:"ul"},"lint fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/657cf4ed917c4ff992aa033c3d9f4884a949d86d"},(0,n.kt)("inlineCode",{parentName:"a"},"657cf4e"))),(0,n.kt)("li",{parentName:"ul"},"perf(storybook): added storybook favicon ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/38eabc3124c85dd56bf5c68c0fb1e967c39055ec"},(0,n.kt)("inlineCode",{parentName:"a"},"38eabc3")))),(0,n.kt)("h3",{id:"043---2022-06-03"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.4.2...0.4.3"},"0.4.3")," - 2022-06-03"),(0,n.kt)("h4",{id:"-bug-fixes-33"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(edit): Fix columns/accordion inner toolbar padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fafbb525baa60c339906dc6a33d2f9418d050be6"},(0,n.kt)("inlineCode",{parentName:"a"},"fafbb52")))),(0,n.kt)("h4",{id:"-enhancements-47"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): completed removal of description from guides ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/42424b9213ece8d8df84d40f1b73e142cb0ffc6b"},(0,n.kt)("inlineCode",{parentName:"a"},"42424b9")))),(0,n.kt)("h3",{id:"042---2022-06-02"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.4.1...0.4.2"},"0.4.2")," - 2022-06-02"),(0,n.kt)("h4",{id:"-enhancements-48"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): moved color swatches around in the color guide ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8a395fce52a32cf92449a24d3d4cce5abf25a284"},(0,n.kt)("inlineCode",{parentName:"a"},"8a395fc"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): removed description from components and introduced category listing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f220bf0785f5aaede8c25c4164120b09de67b018"},(0,n.kt)("inlineCode",{parentName:"a"},"f220bf0"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): rename gap to space and added em spaces ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f5b042d311518ec3fb32c7f259c39ff62d4547f8"},(0,n.kt)("inlineCode",{parentName:"a"},"f5b042d"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): moved extra docs to webdev section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1ce0797b91418272e4e405467cd1468292620005"},(0,n.kt)("inlineCode",{parentName:"a"},"1ce0797"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): moved md_components files into webdev/md_components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/73c1c08a270d504fa6f2ba2579bcb3e6e25fb112"},(0,n.kt)("inlineCode",{parentName:"a"},"73c1c08"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): added category yml for all sections ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/17405728e3f44828da50890b9fc0f4e8a07f8bf2"},(0,n.kt)("inlineCode",{parentName:"a"},"1740572"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): color guideline updates and spacing tokens documentation #148 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c1154ba172c3b3b40b565c2bcb590f1a5e6b25a4"},(0,n.kt)("inlineCode",{parentName:"a"},"c1154ba"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): modified story links to avoid broken usage tabs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/78dc8d8f4e7cade3ab0e911e6dc002eefc1e7986"},(0,n.kt)("inlineCode",{parentName:"a"},"78dc8d8"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): renamed several file id's so that they match the incremental naming sequence ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/11299c9a4c41ca901926f852227dbca0bc1aee17"},(0,n.kt)("inlineCode",{parentName:"a"},"11299c9")))),(0,n.kt)("h4",{id:"-documentation-changes-15"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(Docusaurus): timeline, testimonial, quote and tags ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aaa54ecbe182872ffc7fff275d5065ebe790d348"},(0,n.kt)("inlineCode",{parentName:"a"},"aaa54ec"))),(0,n.kt)("li",{parentName:"ul"},"docs(spacing): add relative gap tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/92abc8fff2c7006e2c64684048e7783216a230bb"},(0,n.kt)("inlineCode",{parentName:"a"},"92abc8f"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): updated colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a28c99e60867c1eaa1b7b68d4154ccaa8c9ef958"},(0,n.kt)("inlineCode",{parentName:"a"},"a28c99e"))),(0,n.kt)("li",{parentName:"ul"},"docs(tags/content): new page about tags and content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/60be40268a77606c53fc45641bc22166b50b75e7"},(0,n.kt)("inlineCode",{parentName:"a"},"60be402"))),(0,n.kt)("li",{parentName:"ul"},"docs(Docusaurus): labeled icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6a0f61ede3a36c7d66d9b3091b93b0b5ff9a445"},(0,n.kt)("inlineCode",{parentName:"a"},"f6a0f61"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): add font size and line height tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ff65e47cfe56eb3efe976300b764ba13f8685ce"},(0,n.kt)("inlineCode",{parentName:"a"},"2ff65e4"))),(0,n.kt)("li",{parentName:"ul"},"docs(spacing): add spacing gap tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2d53727f8e817588421efea464e849c9f9e16dce"},(0,n.kt)("inlineCode",{parentName:"a"},"2d53727"))),(0,n.kt)("li",{parentName:"ul"},"docs(spacing): add missing gaps ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/442db468830150c8e4ad5f91775fc5b3c47dd655"},(0,n.kt)("inlineCode",{parentName:"a"},"442db46"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): minor fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e66513f08cff598881ce1051b482ddadf8e0593"},(0,n.kt)("inlineCode",{parentName:"a"},"6e66513"))),(0,n.kt)("li",{parentName:"ul"},"docs(spacing): aligned images ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e946fe59457b861a31939e99adf4b380777e01e0"},(0,n.kt)("inlineCode",{parentName:"a"},"e946fe5"))),(0,n.kt)("li",{parentName:"ul"},"docs(spacing): new image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fcd3294d53db76580b8bffc9678a09fd65b33113"},(0,n.kt)("inlineCode",{parentName:"a"},"fcd3294")))),(0,n.kt)("h4",{id:"\ufe0f-others-41"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"merge changes from develop into docusaurus token documentation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a9401384ddf5fcfbf29e50d34f3d7851be85f19a"},(0,n.kt)("inlineCode",{parentName:"a"},"a940138"))),(0,n.kt)("li",{parentName:"ul"},"perf(docs): restructuring order ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f4134d81d1cc59b8ba0d8669415b5eb31c0513d"},(0,n.kt)("inlineCode",{parentName:"a"},"8f4134d")))),(0,n.kt)("h3",{id:"041---2022-06-02"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.4.0...0.4.1"},"0.4.1")," - 2022-06-02"),(0,n.kt)("h4",{id:"-new-features-23"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(languageLabeledIcon) : add new component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/110558eeec37d5b5f616a95298a313ba230dd6f4"},(0,n.kt)("inlineCode",{parentName:"a"},"110558e"))),(0,n.kt)("li",{parentName:"ul"},"feat(LanguageLabeledIcon):add new component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d00200c278e1dab02b449b460a325e0f2e7b8ccd"},(0,n.kt)("inlineCode",{parentName:"a"},"d00200c"))),(0,n.kt)("li",{parentName:"ul"},"feat(newTabLabeledIcon) : add new component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f5cd31257a306a58c1d9cdbf7cb428701412369"},(0,n.kt)("inlineCode",{parentName:"a"},"8f5cd31"))),(0,n.kt)("li",{parentName:"ul"},"feat(labeledIconGroup) : add new component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/787d648342d78c4f9d28fde9d08e83089ef7b08f"},(0,n.kt)("inlineCode",{parentName:"a"},"787d648"))),(0,n.kt)("li",{parentName:"ul"},"feat(DownLoadLabeledIcon) : add new component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6ea2fa1ec17ce235401a8ac741afa8fede920d26"},(0,n.kt)("inlineCode",{parentName:"a"},"6ea2fa1")))),(0,n.kt)("h4",{id:"-bug-fixes-34"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(LabeledIcon) : fix lint errors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91b042f8c16bd3e99659c1c24a5f2a946c72b03f"},(0,n.kt)("inlineCode",{parentName:"a"},"91b042f"))),(0,n.kt)("li",{parentName:"ul"},"fix(LabeledIconGroup) : fix links for tests ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/daa10653ca37f3e83302e2ebcc566b5f5ec4c4d9"},(0,n.kt)("inlineCode",{parentName:"a"},"daa1065"))),(0,n.kt)("li",{parentName:"ul"},"fix(LanguageLabeledIcon):bug fix & languages change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1436e2bc270f8f079f07b7909254bd2e6e087084"},(0,n.kt)("inlineCode",{parentName:"a"},"1436e2b"))),(0,n.kt)("li",{parentName:"ul"},"fix(LabeledIconGroup):fix based on Langauge & Download Labeled icon components changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3015864ce740f534aa204402f85a9f392e342513"},(0,n.kt)("inlineCode",{parentName:"a"},"3015864"))),(0,n.kt)("li",{parentName:"ul"},"fix(newTabLabeledIcon) : add link item ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b1a9ada3dd7dae9e1841cfde5319a6ab37b15de2"},(0,n.kt)("inlineCode",{parentName:"a"},"b1a9ada"))),(0,n.kt)("li",{parentName:"ul"},"fix(Labeled Icons):minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/00f3022cdc2bfad634707f0d6d05768868f599be"},(0,n.kt)("inlineCode",{parentName:"a"},"00f3022")))),(0,n.kt)("h4",{id:"-enhancements-49"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcons): adjust new tab labeled icon to figma and replace px with rems ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/904615d789ea711678f43ce9f9d02a450289031f"},(0,n.kt)("inlineCode",{parentName:"a"},"904615d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(LanguageLabeledIcon):implement with pop up ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0f3dd8f0388484f94351a0ab0798ab53e84c9229"},(0,n.kt)("inlineCode",{parentName:"a"},"0f3dd8f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcon): add group wrapper in labeled icon stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4b7dd314230145b6239fd800d41f546ab5d9eebb"},(0,n.kt)("inlineCode",{parentName:"a"},"4b7dd31"))),(0,n.kt)("li",{parentName:"ul"},"refactor(DownloadLabeledIcon):implement with pop up ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aa61f9b7d449c08c08bc4c004da6a0458598c828"},(0,n.kt)("inlineCode",{parentName:"a"},"aa61f9b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcons): adjust language labeled icon to figma ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5741e3d2e95665ef12670335b12d29cfbf998fdc"},(0,n.kt)("inlineCode",{parentName:"a"},"5741e3d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcons): adjust download icon to figma and replace px with rems ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ae85307a62526fed75ef0b1d37ad59076370b5a"},(0,n.kt)("inlineCode",{parentName:"a"},"4ae8530"))),(0,n.kt)("li",{parentName:"ul"},"refactor(LanguageLabeledIcons):minor storybook change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/78f55442a80cbc2f716ba81274ed08204e3c502a"},(0,n.kt)("inlineCode",{parentName:"a"},"78f5544"))),(0,n.kt)("li",{parentName:"ul"},"refactor(LanguageLabeledIcon): set language code to uppercase and minor storybook change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac286931282c0a69bc6d7803e96cbe302db8994f"},(0,n.kt)("inlineCode",{parentName:"a"},"ac28693"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcon): adjust paddings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9c1ecddc52c81be1d952d0af67862a284eba9eec"},(0,n.kt)("inlineCode",{parentName:"a"},"9c1ecdd"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcons): update margins for group labeled icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5fa5ca9103a5d8ad1510c90cc8c46d0c82abcc63"},(0,n.kt)("inlineCode",{parentName:"a"},"5fa5ca9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcons): add variable for icon color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f9d3cba5115c5c91aaaca49c1f834950400673a"},(0,n.kt)("inlineCode",{parentName:"a"},"9f9d3cb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcons): update colors on download links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c04264229c91bfdea927fd22f4ee1e8ddbcebd5c"},(0,n.kt)("inlineCode",{parentName:"a"},"c042642")))),(0,n.kt)("h4",{id:"-internal-changes-16"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(labeledIconGroup) : lint changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/535cee4795dff75b35856cb4406a9bd33ee07ca4"},(0,n.kt)("inlineCode",{parentName:"a"},"535cee4"))),(0,n.kt)("li",{parentName:"ul"},"style(downloadLabeledIcon) : fix styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d8e3acb3bac1a4174d4bb526d6188cb5e5f8faa"},(0,n.kt)("inlineCode",{parentName:"a"},"6d8e3ac"))),(0,n.kt)("li",{parentName:"ul"},"style(downloadLabeledIcon) : fix alignment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/455801701d2958515885ba2c398312f0c56057b0"},(0,n.kt)("inlineCode",{parentName:"a"},"4558017"))),(0,n.kt)("li",{parentName:"ul"},"chore(LabeledIconGroup) : lint changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab364763bb2526adbbb7fc3c656a16b497568940"},(0,n.kt)("inlineCode",{parentName:"a"},"ab36476")))),(0,n.kt)("h3",{id:"040---2022-06-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.3.1...0.4.0"},"0.4.0")," - 2022-06-01"),(0,n.kt)("h4",{id:"-new-features-24"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(Carousel): create carousel for cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2b0d73798b4fcbf2897d7a8167d9b4d3b3374fb2"},(0,n.kt)("inlineCode",{parentName:"a"},"2b0d737"))),(0,n.kt)("li",{parentName:"ul"},"feat(ItemwithIcons): Initial Item group with icons, new item variation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7f4ea476264856845a07cd24be6ec86ccd21ed8d"},(0,n.kt)("inlineCode",{parentName:"a"},"7f4ea47"))),(0,n.kt)("li",{parentName:"ul"},"feat(utilities): add file and basic utilities ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/05c88b294a49590e3fb355fb6e113f5020442915"},(0,n.kt)("inlineCode",{parentName:"a"},"05c88b2"))),(0,n.kt)("li",{parentName:"ul"},"feat(utilities): add file with basic utilities classes #173 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/855185ff22c77efb75cc5c7850d181254b4c4927"},(0,n.kt)("inlineCode",{parentName:"a"},"855185f")))),(0,n.kt)("h4",{id:"-bug-fixes-35"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(tokens): hsla function for shadows ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8e5d37a6e88321b1e2daf995b407c4ddd6e866e"},(0,n.kt)("inlineCode",{parentName:"a"},"b8e5d37"))),(0,n.kt)("li",{parentName:"ul"},"fix(tokens): remove css var from less file ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a9c422476b412287713a6b475406615c3aed2aca"},(0,n.kt)("inlineCode",{parentName:"a"},"a9c4224"))),(0,n.kt)("li",{parentName:"ul"},"fix(carousel):add storybook controls descriptions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/269a60383ed1e54fc57e26d4eed6b37d1da32236"},(0,n.kt)("inlineCode",{parentName:"a"},"269a603"))),(0,n.kt)("li",{parentName:"ul"},"fix(item): remove image width css from item.less ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7b21cb2d5ddf6a6f72646f47fd268a0bd7af757d"},(0,n.kt)("inlineCode",{parentName:"a"},"7b21cb2"))),(0,n.kt)("li",{parentName:"ul"},"fix(table): Set responsive breakpoint to @tabletBreakpoint ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/067e01842030bfa5639e2a55cb8af5047bb2996f"},(0,n.kt)("inlineCode",{parentName:"a"},"067e018")))),(0,n.kt)("h4",{id:"-enhancements-50"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(item): import item.less in theme definitions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c51637480192dbece828616010174648ac865e2e"},(0,n.kt)("inlineCode",{parentName:"a"},"c516374"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Label):add corner,ribbon & basic label stories and styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2bbbb947113a59127f91b86917ef0edbf36ab16"},(0,n.kt)("inlineCode",{parentName:"a"},"e2bbbb9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Label):style changes based on label importance class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce4d5d1a5bf1b1183242a253e37c509d61f82b8c"},(0,n.kt)("inlineCode",{parentName:"a"},"ce4d5d1"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): rename gap to space and added em spaces ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/719efc44070ef87f049a92e4da96bb111e9fc8ff"},(0,n.kt)("inlineCode",{parentName:"a"},"719efc4"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): add classes for size, set default to tile and add controls for grouped items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5a0405abba4e5f5d36f899dc9e47f43a96d5e49"},(0,n.kt)("inlineCode",{parentName:"a"},"d5a0405"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): add borders, shadows, shapes and z-index tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7069106c2b0ada9cdbad63249b4ada7fde72e05f"},(0,n.kt)("inlineCode",{parentName:"a"},"7069106"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): name spacing tokens gaps and added missing values up to 80px as documented ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9fbd912a6f027150149d82678f88885a939120b0"},(0,n.kt)("inlineCode",{parentName:"a"},"9fbd912"))),(0,n.kt)("li",{parentName:"ul"},"refactor(quote): Rename sourceInfo to extra info ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/76c2b400de4814fe79f303bfd2a82842c848231c"},(0,n.kt)("inlineCode",{parentName:"a"},"76c2b40"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): WIP replacing unstackable with row ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e3a44de4b2dd26667e80e0d131c55b08f3c527d9"},(0,n.kt)("inlineCode",{parentName:"a"},"e3a44de"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tocens): add color design tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/13bb165e103a25aadb9da6414773dc0d35081d88"},(0,n.kt)("inlineCode",{parentName:"a"},"13bb165"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): adjust margins to match figma designs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6334581b336a2f486e85199f371126beea47b92f"},(0,n.kt)("inlineCode",{parentName:"a"},"6334581"))),(0,n.kt)("li",{parentName:"ul"},"refactor(carousel): remove title from story and color on card hover ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/12a1d7c3bd5e7ba6edf4eb20a2d7a6f8f22955f9"},(0,n.kt)("inlineCode",{parentName:"a"},"12a1d7c"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): updated sizes with 4-8-16px increments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f53d655df2b24053a5d331c56dfd14bd3602dfd"},(0,n.kt)("inlineCode",{parentName:"a"},"1f53d65"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): added size tokens to be used for width of elements ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cda5dea1f6ad1ae980c89999d323d7b385894025"},(0,n.kt)("inlineCode",{parentName:"a"},"cda5dea"))),(0,n.kt)("li",{parentName:"ul"},"change(utilities): values need important rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/96150d9a22cb6be6f338f1e9d052cbd65e3602fc"},(0,n.kt)("inlineCode",{parentName:"a"},"96150d9"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): added also rem space values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aedbbddaf7f8be88ed2f8a2b8c21b60752896c53"},(0,n.kt)("inlineCode",{parentName:"a"},"aedbbdd"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): updated z-index tokens with negative values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/404efe4244d67276b435e60a1d7a69aaa90e3d8a"},(0,n.kt)("inlineCode",{parentName:"a"},"404efe4"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): add 14px font size token ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8d8695dce62e7f29af01447308460e4fe3f72b21"},(0,n.kt)("inlineCode",{parentName:"a"},"8d8695d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): restructured and improved sections navigation #174 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b47b0266ffd6baeaf1a5aea1a7ab22c909976de1"},(0,n.kt)("inlineCode",{parentName:"a"},"b47b026"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): add 12 and 14px font size token #176 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/368114729536f03dd85c2d3565b984c3bdfe3a72"},(0,n.kt)("inlineCode",{parentName:"a"},"3681147"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): remove conditional border radius ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f0fe5ada7b74e9c87623dd2b2774283dd89b9a58"},(0,n.kt)("inlineCode",{parentName:"a"},"f0fe5ad")))),(0,n.kt)("h4",{id:"-documentation-changes-16"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(website): created new sections, improved website navigation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/243f0be4d7fa6e988da0ca0f586f5ea478573eef"},(0,n.kt)("inlineCode",{parentName:"a"},"243f0be"))),(0,n.kt)("li",{parentName:"ul"},"docs(homepage): adding design system homepage with links for upcoming sections ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c9a968508acff74d1182e68cf049046dafd564c5"},(0,n.kt)("inlineCode",{parentName:"a"},"c9a9685"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): copyedit, improved navigation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/998762a5bd40d08f619c00743b66d82b43aed653"},(0,n.kt)("inlineCode",{parentName:"a"},"998762a"))),(0,n.kt)("li",{parentName:"ul"},"docs(website): restructuring, moved current DS docs to new folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8bb612f1313dfc739d7912aa2e3252f468e1122f"},(0,n.kt)("inlineCode",{parentName:"a"},"8bb612f"))),(0,n.kt)("li",{parentName:"ul"},"docs(homepage): copy editing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee37d6f1d282b973af744f4305c0eb94c0993113"},(0,n.kt)("inlineCode",{parentName:"a"},"ee37d6f")))),(0,n.kt)("h4",{id:"\ufe0f-others-42"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Release 0.4.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f4bc50928ab877f3670b181dbe6e8cfff7fa2daa"},(0,n.kt)("inlineCode",{parentName:"a"},"f4bc509"))),(0,n.kt)("li",{parentName:"ul"},"feature(homepage): added Item group with icons #167 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ec99f53aeb183b24073be4014a9c2ec30d5235c"},(0,n.kt)("inlineCode",{parentName:"a"},"2ec99f5"))),(0,n.kt)("li",{parentName:"ul"},"feature(tokens): added borders, z-index, shadows tokens #171 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/74c178837cedc7ee9fc55effde1096dc03245574"},(0,n.kt)("inlineCode",{parentName:"a"},"74c1788"))),(0,n.kt)("li",{parentName:"ul"},"feature(tokens): added initial color design tokens #169 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/da3eae05d07783aa5eadaed5d508ee3be8acc47d"},(0,n.kt)("inlineCode",{parentName:"a"},"da3eae0"))),(0,n.kt)("li",{parentName:"ul"},"perf(carousel): added slick library ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca9be5125efa864bc30a0178274d744c5b2bc500"},(0,n.kt)("inlineCode",{parentName:"a"},"ca9be51")))),(0,n.kt)("h3",{id:"031---2022-05-19"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.3.0...0.3.1"},"0.3.1")," - 2022-05-19"),(0,n.kt)("h4",{id:"-bug-fixes-36"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(input,segment): toggle inputs and padding fixes within Volto sidebar forms ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/de030d617325a8f9d028a5c1615faa160fcdd763"},(0,n.kt)("inlineCode",{parentName:"a"},"de030d6")))),(0,n.kt)("h4",{id:"-enhancements-51"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(login): restored width of login container to 376px ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0564293346b2402c3c86009b61066da4200662b8"},(0,n.kt)("inlineCode",{parentName:"a"},"0564293")))),(0,n.kt)("h3",{id:"030---2022-05-17"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.2.4...0.3.0"},"0.3.0")," - 2022-05-17"),(0,n.kt)("h4",{id:"-new-features-25"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(Callout):create Callout component with Blockquote style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3d486b1c2c7f74ee8bc4b3a5e1bf3993ac98f6dd"},(0,n.kt)("inlineCode",{parentName:"a"},"3d486b1"))),(0,n.kt)("li",{parentName:"ul"},"feat(callout): Align the Callout component with Volto slate component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e9343ff7008cd3d60700929e8861c7bdd06df4d3"},(0,n.kt)("inlineCode",{parentName:"a"},"e9343ff")))),(0,n.kt)("h4",{id:"-bug-fixes-37"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(testimonial): fix storybook arg names ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b9df52f7151ef759fd672d365b2d74f6db535ad0"},(0,n.kt)("inlineCode",{parentName:"a"},"b9df52f"))),(0,n.kt)("li",{parentName:"ul"},"fix(table): tweak responsive table for extra long headers ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7f9f9e25f7c57d4bf7edd2546a7579b892867b5c"},(0,n.kt)("inlineCode",{parentName:"a"},"7f9f9e2"))),(0,n.kt)("li",{parentName:"ul"},"fix(quote): fix color and padding issue ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/310d6b37bdf5df3da2d2103eab8f4fa5020c95ab"},(0,n.kt)("inlineCode",{parentName:"a"},"310d6b3"))),(0,n.kt)("li",{parentName:"ul"},"fix(accordion): Fix accordion active title color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/57af1650a0b830e01c79e21b130784190defbcc0"},(0,n.kt)("inlineCode",{parentName:"a"},"57af165"))),(0,n.kt)("li",{parentName:"ul"},"fix(testimonial): remove info arguement ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9593d95f6352fb5aea48c3611b27b4bc6a9ae7e4"},(0,n.kt)("inlineCode",{parentName:"a"},"9593d95")))),(0,n.kt)("h4",{id:"-enhancements-52"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(Table):add responsive mobile table story and styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aed69e698e5b89e33a4c331570755934267492af"},(0,n.kt)("inlineCode",{parentName:"a"},"aed69e6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(testimonial): adjust to volto design | fix avatar image size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/546070e494ad187c50913b5742dab49ce5475a84"},(0,n.kt)("inlineCode",{parentName:"a"},"546070e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Quote):rename Pullquote component to Quote ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9384a0c129b8e4eed637e51a9669c41d8ade69d4"},(0,n.kt)("inlineCode",{parentName:"a"},"9384a0c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Quote):rename Quote.Metadata to Quote.SourceInfo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dfae8b1c147659d24dfd1a13fb4c3098e5865a12"},(0,n.kt)("inlineCode",{parentName:"a"},"dfae8b1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Quote): rename Author to Source ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d400f6a0ec0062f58782b4e170f4a1a9a31c56c"},(0,n.kt)("inlineCode",{parentName:"a"},"6d400f6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Quote):move Testimonial component under Quote folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2467c2089577d67ef5689a2507cb860a837f6a0"},(0,n.kt)("inlineCode",{parentName:"a"},"e2467c2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(testimonial): readjust rounded card ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b41933417a44dabcf829a3346d91c142dd6472d3"},(0,n.kt)("inlineCode",{parentName:"a"},"b419334"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Table):wrap table with semantic ui container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24ac2bb4813df33547f684220e1e12af5ca6df7e"},(0,n.kt)("inlineCode",{parentName:"a"},"24ac2bb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Testimonial):minor storybook bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7b6d128c6be3b2481d4765cebca82af6cafbea05"},(0,n.kt)("inlineCode",{parentName:"a"},"7b6d128"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Callout): wrap story with semantic ui container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ead362d88f43fa1380e8be5481cbc38c055060f8"},(0,n.kt)("inlineCode",{parentName:"a"},"ead362d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(quote): update action name to match the functionality ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/caf2e359cada8056f280d2cd137776d64f82a2af"},(0,n.kt)("inlineCode",{parentName:"a"},"caf2e35"))),(0,n.kt)("li",{parentName:"ul"},"refactor(table): add borders to responsive table with celled attribute ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8a71a670fb34a11fbe4cef7365b91c6be84b5b54"},(0,n.kt)("inlineCode",{parentName:"a"},"8a71a67"))),(0,n.kt)("li",{parentName:"ul"},"change(table): make use of headerSortableWhiteSpace variable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fd836fbe82e92864a628bf4d9d3093674890f722"},(0,n.kt)("inlineCode",{parentName:"a"},"fd836fb"))),(0,n.kt)("li",{parentName:"ul"},"change(table): use the @mobileLandscapeBreakpoint for max 480px media query ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/90880ab324b6a66c7741819dd0d913504751454f"},(0,n.kt)("inlineCode",{parentName:"a"},"90880ab"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Quote):rename pullquote to Quote in Testimonial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f54da192ab3b0823b0d6c77254f8954ab94506c8"},(0,n.kt)("inlineCode",{parentName:"a"},"f54da19"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Testimonial): change card class name ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e995c32bc70780e4315c4dc02d6b6fa9a0c5b29d"},(0,n.kt)("inlineCode",{parentName:"a"},"e995c32"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Testimonial): prettier changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/904594b9814c3d8900656f0e4c8d3a99481efe94"},(0,n.kt)("inlineCode",{parentName:"a"},"904594b")))),(0,n.kt)("h4",{id:"\ufe0f-others-43"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feature(tokens): added tokens folder for design tokens we can use in the system ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a542172cfd84dde0286b4332e66a617a1f3d13bf"},(0,n.kt)("inlineCode",{parentName:"a"},"a542172"))),(0,n.kt)("li",{parentName:"ul"},"perf(lint): fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2ef3abb9daa8fee3dd103adc14246c412951427"},(0,n.kt)("inlineCode",{parentName:"a"},"f2ef3ab"))),(0,n.kt)("li",{parentName:"ul"},"Release 0.3.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8724b2809027b2e359dcd64e418a33cade4ad487"},(0,n.kt)("inlineCode",{parentName:"a"},"8724b28")))),(0,n.kt)("h3",{id:"024---2022-05-13"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.2.3...0.2.4"},"0.2.4")," - 2022-05-13"),(0,n.kt)("h4",{id:"-enhancements-53"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(segment): brought back overrides from pastanaga into our theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/14efd021f81898bb0f2d3f1a2e8677445420591a"},(0,n.kt)("inlineCode",{parentName:"a"},"14efd02"))),(0,n.kt)("li",{parentName:"ul"},"change(container): removed padding from containers restoring thus the defaults ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c2ed813cf2f7ce284e33f2e94e02ff16678c2d05"},(0,n.kt)("inlineCode",{parentName:"a"},"c2ed813"))),(0,n.kt)("li",{parentName:"ul"},"change(grid-story): added container as grid width is influenced by container width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/459f4813ee3c5325a3db22d417ac5f23063bd4d2"},(0,n.kt)("inlineCode",{parentName:"a"},"459f481"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumb): removed padding from breadcrumb added by container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5df5675a519085badc030416e5bb784a9f73321"},(0,n.kt)("inlineCode",{parentName:"a"},"c5df567"))),(0,n.kt)("li",{parentName:"ul"},"change(container): modified all outputted widths to align to grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f29cefa4bfee1fe50844c8450de39ef4b0915d4"},(0,n.kt)("inlineCode",{parentName:"a"},"9f29cef"))),(0,n.kt)("li",{parentName:"ul"},"change(breakpoints): restore Semantic UI breakpoints, adding extra needed values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e7f5b1e4fac6453458078bb02cdc66c328843b59"},(0,n.kt)("inlineCode",{parentName:"a"},"e7f5b1e"))),(0,n.kt)("li",{parentName:"ul"},"change(container): restore maxWidth to 100% now that the last value is 1120px ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8b55c58d3bbc8967b20de19a828aedd2f1473ee5"},(0,n.kt)("inlineCode",{parentName:"a"},"8b55c58"))),(0,n.kt)("li",{parentName:"ul"},"change(header): wrap header globalnav links useful for editing section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/10d4f56624510eb63155ab330dcf0475b0728ed4"},(0,n.kt)("inlineCode",{parentName:"a"},"10d4f56"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumb): added vertical variant to the breadcrumbs like we do in Volto ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f405f8437be6be221b055a41c5d391f4cc94385d"},(0,n.kt)("inlineCode",{parentName:"a"},"f405f84"))),(0,n.kt)("li",{parentName:"ul"},"change(breakpoints): added also contentBreakpoint for backward compatibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b6c9212378a37639e6154d8d8e837169bcbac8b5"},(0,n.kt)("inlineCode",{parentName:"a"},"b6c9212")))),(0,n.kt)("h4",{id:"\ufe0f-others-44"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"[JENKINSFILE]"," Add failure comment, no jenkins fail ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c325bf14f3fb0da150f2a56cda0a9f03d8d8a628"},(0,n.kt)("inlineCode",{parentName:"a"},"c325bf1"))),(0,n.kt)("li",{parentName:"ul"},"prettier changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/134da52549b9d5eac5a12b7ad3005073500ac2c4"},(0,n.kt)("inlineCode",{parentName:"a"},"134da52"))),(0,n.kt)("li",{parentName:"ul"},"[JENKINSFILE]"," format PR comments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/739438c64950c745d630d1998314a2bed595b23a"},(0,n.kt)("inlineCode",{parentName:"a"},"739438c"))),(0,n.kt)("li",{parentName:"ul"},"[JENKINSFILE]"," mention comment author in comment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/39a26aa1ff0f35e93e8df9f442c29c5ab79ff493"},(0,n.kt)("inlineCode",{parentName:"a"},"39a26aa"))),(0,n.kt)("li",{parentName:"ul"},"[JENKINSFILE]"," remove debug, add error per stage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/903eecdb6bcbb8d73cff5e447d80c85e2a2c906d"},(0,n.kt)("inlineCode",{parentName:"a"},"903eecd")))),(0,n.kt)("h3",{id:"023---2022-04-29"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.2.2...0.2.3"},"0.2.3")," - 2022-04-29"),(0,n.kt)("h4",{id:"-new-features-26"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(CallToAction):add feat call to action ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab53642f27c996f929ff871d0794add39bab6c23"},(0,n.kt)("inlineCode",{parentName:"a"},"ab53642")))),(0,n.kt)("h4",{id:"-enhancements-54"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(button): add container to stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6c02c1953e102f2d90ab23023d6b4dfc738ced2e"},(0,n.kt)("inlineCode",{parentName:"a"},"6c02c19"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tab): update vertical tab columns and content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b473fabee196a3ec420e29160448d2be3d1685cc"},(0,n.kt)("inlineCode",{parentName:"a"},"b473fab"))),(0,n.kt)("li",{parentName:"ul"},'refactor(call to action):render call to action with Button as="a" ',(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e7dfabfc2f006505b0f1c802dc6fb48611518bcb"},(0,n.kt)("inlineCode",{parentName:"a"},"e7dfabf"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button): update inverted button colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c822021ab37939632416ce74c0cc88a64b98a3c1"},(0,n.kt)("inlineCode",{parentName:"a"},"c822021"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Tab):scrollbar change in mobile & vertical tab fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0e34cbf459e67b6910217f30a44a1e81f33df622"},(0,n.kt)("inlineCode",{parentName:"a"},"0e34cbf"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): added icon class to share icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48e866e4251dd517c0477cd5a42cec1a98e2f16d"},(0,n.kt)("inlineCode",{parentName:"a"},"48e866e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Button): move button to forms folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/94996fcdf1ea7e55c63dd44e10edf1b44b9bdef5"},(0,n.kt)("inlineCode",{parentName:"a"},"94996fc"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Tab):minor change in secondary pointing menu variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/280b6c41a2107bccb38500f54eb5663ef62c7ae3"},(0,n.kt)("inlineCode",{parentName:"a"},"280b6c4")))),(0,n.kt)("h4",{id:"-documentation-changes-17"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(button): import call to action stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e4eed44e3519ae3dba7d16e252271a964fcb7a4b"},(0,n.kt)("inlineCode",{parentName:"a"},"e4eed44")))),(0,n.kt)("h3",{id:"022---2022-04-22"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.2.1...0.2.2"},"0.2.2")," - 2022-04-22"),(0,n.kt)("h4",{id:"-bug-fixes-38"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(publicationCard): restore line endings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/582859e0ab4fa969662d4cf3e60fe75b160f052a"},(0,n.kt)("inlineCode",{parentName:"a"},"582859e"))),(0,n.kt)("li",{parentName:"ul"},"fix(form): added back overrides from Pastanaga theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a3f7ff810cdeb55b009c2dadc6753d01bbd10d8c"},(0,n.kt)("inlineCode",{parentName:"a"},"a3f7ff8"))),(0,n.kt)("li",{parentName:"ul"},"fix(OrderedList) : add list only if sub list exists ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8acbc8d5a492b411b169b106ab64bb78563f891f"},(0,n.kt)("inlineCode",{parentName:"a"},"8acbc8d"))),(0,n.kt)("li",{parentName:"ul"},"fix(label): update highlight label color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d55bbb03a5d28b2f269c1a1ca447c67dcdc7a748"},(0,n.kt)("inlineCode",{parentName:"a"},"d55bbb0"))),(0,n.kt)("li",{parentName:"ul"},"fix(publication card): run prettier ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/81a5bfc123ce69c44562a5585e41a630fe0bbf5a"},(0,n.kt)("inlineCode",{parentName:"a"},"81a5bfc"))),(0,n.kt)("li",{parentName:"ul"},"fix(avatar) : fix naming convention for arg ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/84fc5fa8faa7887f45cd52e58aa6fa6f8b951d26"},(0,n.kt)("inlineCode",{parentName:"a"},"84fc5fa"))),(0,n.kt)("li",{parentName:"ul"},"fix(tab): restore mobile font sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/58f39be02a45ade92873b86597c33763379e0f44"},(0,n.kt)("inlineCode",{parentName:"a"},"58f39be"))),(0,n.kt)("li",{parentName:"ul"},"fix(addForm): add min height to add form and fixed block chooser overflow ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca4415d49b973378894ec9270501beafbefff776"},(0,n.kt)("inlineCode",{parentName:"a"},"ca4415d"))),(0,n.kt)("li",{parentName:"ul"},"fix(OrderedList): adjust margins to fourth sublists ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/663d384790920f164d51edb304c411275972fbb7"},(0,n.kt)("inlineCode",{parentName:"a"},"663d384"))),(0,n.kt)("li",{parentName:"ul"},"fix(dropdown): being hidden because of third party css ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d353dfd65e93d08a3c8584adeeebea50bf7efe8"},(0,n.kt)("inlineCode",{parentName:"a"},"7d353df"))),(0,n.kt)("li",{parentName:"ul"},"fix(modal): overflow hidden as clearfix of last child from modal ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4923f5165a0a7e8d2dd33ea4c35f9f951372909"},(0,n.kt)("inlineCode",{parentName:"a"},"b4923f5"))),(0,n.kt)("li",{parentName:"ul"},"fix(RelatedContent):fix merge conflict ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/adc34bfdac7d668aa27578eb2a4844c136e0360f"},(0,n.kt)("inlineCode",{parentName:"a"},"adc34bf"))),(0,n.kt)("li",{parentName:"ul"},"fix(button): labeled class needs to be placed after left or right keyword ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53d1204fe52665fe1023747da359d3100d45e58f"},(0,n.kt)("inlineCode",{parentName:"a"},"53d1204")))),(0,n.kt)("h4",{id:"-enhancements-55"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(card): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e10e3d610a313c4e1995676130e2677f0ebab070"},(0,n.kt)("inlineCode",{parentName:"a"},"e10e3d6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add card variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e16d05b4afa678b9089987b42a8257323a78093f"},(0,n.kt)("inlineCode",{parentName:"a"},"e16d05b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): remove stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0deb0cab6d7fd73957b149325960c266c33cdc6f"},(0,n.kt)("inlineCode",{parentName:"a"},"0deb0ca"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):delete primary and secondary card stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f95d227a026ecc34b29cc3e4938c3d13906cfd8"},(0,n.kt)("inlineCode",{parentName:"a"},"1f95d22"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Avatar) : remake avatar as card variant ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea77cdd1acafd2ea288f11074423705e5d6b7412"},(0,n.kt)("inlineCode",{parentName:"a"},"ea77cdd"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add styles for card variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7407bd30e722f2d7b1a9d75a8c7cf155bf1c4996"},(0,n.kt)("inlineCode",{parentName:"a"},"7407bd3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): add story with related content inside of a tab ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dca008a35b27e4a75c13ef965ab8764df0d3b357"},(0,n.kt)("inlineCode",{parentName:"a"},"dca008a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): Rename variables from avatar to rounded ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/be0131631cf8e303f4077fe93b6685fd6b34bf46"},(0,n.kt)("inlineCode",{parentName:"a"},"be01316"))),(0,n.kt)("li",{parentName:"ul"},"refactor(avatar): update less variables and layer structure ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f965db1dd17d90e7165f66d39fdda9016c2eae91"},(0,n.kt)("inlineCode",{parentName:"a"},"f965db1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(PublicationCard):remake publication card to be a semantic card variation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5a0c6ab21c22a53aa6e34fafecfae15a3d435391"},(0,n.kt)("inlineCode",{parentName:"a"},"5a0c6ab"))),(0,n.kt)("li",{parentName:"ul"},"change(button): simplified button styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fe892d6f2f59aecf3f9e8b04f18b55fb0d384021"},(0,n.kt)("inlineCode",{parentName:"a"},"fe892d6"))),(0,n.kt)("li",{parentName:"ul"},"change(button): simplified storybook naming and examples ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9a7df4f46c24a234dd8bb290336ac8e7d5c7422b"},(0,n.kt)("inlineCode",{parentName:"a"},"9a7df4f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Avatar) : convert avatar component to card variation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2004a941c18f8fe21f96f88d3288446fd5e283e8"},(0,n.kt)("inlineCode",{parentName:"a"},"2004a94"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Related Content): change in grid and add see all button ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/955450e974c89aa2297eaa28d278e5098fea7705"},(0,n.kt)("inlineCode",{parentName:"a"},"955450e"))),(0,n.kt)("li",{parentName:"ul"},"change(button): added back button.overrides from pastanaga theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3b55acbf8b8df0e3daa475ab12e4db44693a4053"},(0,n.kt)("inlineCode",{parentName:"a"},"3b55acb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add card class control ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/68c91a9bf7e78874e12e868a0c466f12715a0698"},(0,n.kt)("inlineCode",{parentName:"a"},"68c91a9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):delete publication card variables & overrides files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6be8a037118762cf2280fbe44ba097a0cb7a79e0"},(0,n.kt)("inlineCode",{parentName:"a"},"6be8a03"))),(0,n.kt)("li",{parentName:"ul"},"refactor(OrderedList): rename TOC to Ordered List and add container to the story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e00c4db8e623651eb2ec9ad45de6e3d8c2693b2b"},(0,n.kt)("inlineCode",{parentName:"a"},"e00c4db"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add card grid fluid story with no columns ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f38251ca3fa04a9b586468ead44bbfe8ae110fbb"},(0,n.kt)("inlineCode",{parentName:"a"},"f38251c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(list): remove horizontal control ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f5e576a37452ed368d6f9cf4d55960e737d48ad"},(0,n.kt)("inlineCode",{parentName:"a"},"1f5e576"))),(0,n.kt)("li",{parentName:"ul"},"refactor(avatarGrid): update less variables and layer structure ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/db554a894ca10ba50ff425883000177854ea2455"},(0,n.kt)("inlineCode",{parentName:"a"},"db554a8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Related Content):show button when there are more hidden cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/57ff1c8d485d16c34002da22bd765069e6eb3df0"},(0,n.kt)("inlineCode",{parentName:"a"},"57ff1c8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(RelatedContent):change to use new card variant instead of publication card component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7cf424ae885d9b657a7635fc67a74a8af4c4e905"},(0,n.kt)("inlineCode",{parentName:"a"},"7cf424a"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumb): brought back pastanaga overrides to breadcrumbs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bca1c939c1d49dab1d4b8e72c0999d78383fd643"},(0,n.kt)("inlineCode",{parentName:"a"},"bca1c93"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):delete publication card folder & story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/68bf77306d710651bb2177d429f42b8efc127db2"},(0,n.kt)("inlineCode",{parentName:"a"},"68bf773"))),(0,n.kt)("li",{parentName:"ul"},"change(buttons): modified basic and circular variant behavior ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c06fed9fa74216cf76971b7789dad231a5125ce8"},(0,n.kt)("inlineCode",{parentName:"a"},"c06fed9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):tertiary variation minor story update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87b8dca0b8ef6c6f0fbf1ea6bc71b7b8b6ee9205"},(0,n.kt)("inlineCode",{parentName:"a"},"87b8dca"))),(0,n.kt)("li",{parentName:"ul"},"refactor(DescriptionList): add container to story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d647c1a17097eae9bdfaf8eb8068f6d1d0b13972"},(0,n.kt)("inlineCode",{parentName:"a"},"d647c1a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(List):render ordered list with ol,li tags ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87813c1a942ce498f89b51fe79a59b117afd28b0"},(0,n.kt)("inlineCode",{parentName:"a"},"87813c1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(OrderedList) : change table of contents story to ordered list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb6197c872a97f1b990c675554b1da9b0a8f7959"},(0,n.kt)("inlineCode",{parentName:"a"},"cb6197c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(publicationCard): update tag and name variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c109ad98f257fea233f31d767c4a037a2758be2d"},(0,n.kt)("inlineCode",{parentName:"a"},"c109ad9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(UnorderedList): update list as ul, list items as li and add container to strory ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2c096e117125a7fb943a5d2e665c0077761b271c"},(0,n.kt)("inlineCode",{parentName:"a"},"2c096e1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):organize controls and minor bug fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f3f6e35df077e348ea1e0c2e5c5bd73d4af5aef9"},(0,n.kt)("inlineCode",{parentName:"a"},"f3f6e35"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables): publication card style changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5a84e99ebea6345e45fac3b7ffc077ec42dfb45"},(0,n.kt)("inlineCode",{parentName:"a"},"c5a84e9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables): add less to related content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e1a55438a9fc9dd141a9515c5363d834732a0c4d"},(0,n.kt)("inlineCode",{parentName:"a"},"e1a5543"))),(0,n.kt)("li",{parentName:"ul"},"refactor(RelatedContent):delete publication card component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ed0ed4a1497224b669386f6d0942a79d00555ea"},(0,n.kt)("inlineCode",{parentName:"a"},"2ed0ed4"))),(0,n.kt)("li",{parentName:"ul"},"change(button): basic button is again without padding, border and background ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5a907c721bda1d065153b108d6c9dc0ee20a886d"},(0,n.kt)("inlineCode",{parentName:"a"},"5a907c7"))),(0,n.kt)("li",{parentName:"ul"},"refactor(PublicationCard):remove link wrapper ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5911a0db1967c58311a6776864f92bc0692052fa"},(0,n.kt)("inlineCode",{parentName:"a"},"5911a0d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables): change publication card height per viewport ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d7a525615672f387a2c8a0457bcde5c08aec45dd"},(0,n.kt)("inlineCode",{parentName:"a"},"d7a5256"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Timeline):change timeline icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b2fe0bf9a7a4583f1f10765a9f8c3c989412d472"},(0,n.kt)("inlineCode",{parentName:"a"},"b2fe0bf"))),(0,n.kt)("li",{parentName:"ul"},"refactor(publicationCard): replace px with rems ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53bf8da5e42343de7f7f940c266beb5e530dd63a"},(0,n.kt)("inlineCode",{parentName:"a"},"53bf8da"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Related Content): change in related content grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bf856ce66f9a74cb440cf8a7c93f62cd0d3965e9"},(0,n.kt)("inlineCode",{parentName:"a"},"bf856ce"))),(0,n.kt)("li",{parentName:"ul"},"refactor(List):render description list with dl,dt,dd tags ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ec669a74da08f7a82bb4a1a0a2d752b6ee5ba4bb"},(0,n.kt)("inlineCode",{parentName:"a"},"ec669a7"))),(0,n.kt)("li",{parentName:"ul"},"change(button): show only labeled variant for buttons with icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bf499446dc02e4be8d6452a3e0cba5797b8a005e"},(0,n.kt)("inlineCode",{parentName:"a"},"bf49944"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): import image for rounded card ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca5a47ea2cd713336c7c8ecdebebbdacd681282f"},(0,n.kt)("inlineCode",{parentName:"a"},"ca5a47e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progress): add container to story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dfb33bb8f3560d43e3e7300560bb557591c0a6ba"},(0,n.kt)("inlineCode",{parentName:"a"},"dfb33bb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): add publication card story with different description sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/23af97bc708ac70d70b92efe9a782548c65aabc5"},(0,n.kt)("inlineCode",{parentName:"a"},"23af97b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(List):render default list with dl & dt tags ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ece2280eb06481b3fd42e7a1ffec5c71c08e736f"},(0,n.kt)("inlineCode",{parentName:"a"},"ece2280"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): add publication cards stories with longer description ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/37adefa500c8a85a5b0b86e5b17c687828ea21fc"},(0,n.kt)("inlineCode",{parentName:"a"},"37adefa"))),(0,n.kt)("li",{parentName:"ul"},"change(button): basic icon buttons no longer have box shadows ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c2f3ea38ec3c62dce37612ac1e666a0b064309f7"},(0,n.kt)("inlineCode",{parentName:"a"},"c2f3ea3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): remove story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/afc5f7903a0049563355e3c9292fdd89fa532740"},(0,n.kt)("inlineCode",{parentName:"a"},"afc5f79"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables): change card description line number per device ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6946fdae2a1ede28a0e5971736817b3ae19bf290"},(0,n.kt)("inlineCode",{parentName:"a"},"6946fda"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): update rounded card image path ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8db3a85a45e8e05a3fe86ab824e7550d437222c3"},(0,n.kt)("inlineCode",{parentName:"a"},"8db3a85"))),(0,n.kt)("li",{parentName:"ul"},"refactor(DefaultList): add container to story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f971193369007a45fea7d517cdf0fc2314ebda69"},(0,n.kt)("inlineCode",{parentName:"a"},"f971193"))),(0,n.kt)("li",{parentName:"ul"},"change(button): bumped z-index of sidenav expand button ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/445ed8a8ede4e458814f380bee0600dbb8ff42f6"},(0,n.kt)("inlineCode",{parentName:"a"},"445ed8a"))),(0,n.kt)("li",{parentName:"ul"},"change(progress,label): color accessibility fixes #151 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/09cf6e34ed5a57bfbfc8fe95787591387776df86"},(0,n.kt)("inlineCode",{parentName:"a"},"09cf6e3"))),(0,n.kt)("li",{parentName:"ul"},"change(button): text button now has an underline with a focus border like other buttons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cdd90436bf0c4f8acaca8bf27afef672fb0f3a89"},(0,n.kt)("inlineCode",{parentName:"a"},"cdd9043"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): update card variation grids path ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/756589cff5d3607994d6cf092cb5dd0e36d51903"},(0,n.kt)("inlineCode",{parentName:"a"},"756589c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): minor fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3a880d7d14c89137b2a33342aed1a31c1b2b3939"},(0,n.kt)("inlineCode",{parentName:"a"},"3a880d7"))),(0,n.kt)("li",{parentName:"ul"},"change(button): primary color is blue and secondary is green ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53e0a0c6d32a04c52d089914a224b010b04a8846"},(0,n.kt)("inlineCode",{parentName:"a"},"53e0a0c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(List):change styles to match with the tags lists are rendered ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2673890449579a0421d8ac1c89ad4c5e850322d7"},(0,n.kt)("inlineCode",{parentName:"a"},"2673890"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progress): update colors for accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea2f454f73c859ac21c4fe6e415a2442a6c3d64c"},(0,n.kt)("inlineCode",{parentName:"a"},"ea2f454"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): move avatarGrid & relatedContent to Card folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1959d521de222c95aa13d9b3db249d133f879ccd"},(0,n.kt)("inlineCode",{parentName:"a"},"1959d52"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Timeline): change storybook timeline colors to fix accessibility issues ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/79da8dca48c709fd1df83b858296126f5e5c5753"},(0,n.kt)("inlineCode",{parentName:"a"},"79da8dc"))),(0,n.kt)("li",{parentName:"ul"},"change(segment): restore light grey background color for secondary segments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8716b08a977cacf5dbdab8ab23c714bb03066b0c"},(0,n.kt)("inlineCode",{parentName:"a"},"8716b08"))),(0,n.kt)("li",{parentName:"ul"},"refactor(relatedContent): adjust column paddings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8a1520d1b958b65e968bffdba22c3484916a475e"},(0,n.kt)("inlineCode",{parentName:"a"},"8a1520d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): clear up code ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ada154b5ab562dc7605604de8002a9d3461e594"},(0,n.kt)("inlineCode",{parentName:"a"},"3ada154"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): use the rounded class for avatar grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8c000f3c37103e0068b6d6554783da8188603442"},(0,n.kt)("inlineCode",{parentName:"a"},"8c000f3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card) Update rounded card class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/140b58746673a864d7ea218c4f8a02dc70207af4"},(0,n.kt)("inlineCode",{parentName:"a"},"140b587"))),(0,n.kt)("li",{parentName:"ul"},"refactor(avatar): add variable for image border radius ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c23341c66d34a9dfa572be4df24f1faf4325d58e"},(0,n.kt)("inlineCode",{parentName:"a"},"c23341c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(label): add container to story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/565101fff2c8860deedd599b7b0cff0660c663f6"},(0,n.kt)("inlineCode",{parentName:"a"},"565101f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progress): update value color for accessibility error ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6fc76f8ff3df4bf2b83863687e5ab6bd5e4cd1ef"},(0,n.kt)("inlineCode",{parentName:"a"},"6fc76f8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):use jsx extension ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/413d3284869a35f39f886df7862db6a52e8cc18e"},(0,n.kt)("inlineCode",{parentName:"a"},"413d328")))),(0,n.kt)("h4",{id:"-internal-changes-17"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(Avatar) : add container to stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/41b748cd23002d597d9b6fbb7947a443ef40f9b2"},(0,n.kt)("inlineCode",{parentName:"a"},"41b748c"))),(0,n.kt)("li",{parentName:"ul"},"style(OrderedList): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ed95e4dea2f33d46ca604e1b2c30d63b5596c03d"},(0,n.kt)("inlineCode",{parentName:"a"},"ed95e4d")))),(0,n.kt)("h4",{id:"\ufe0f-others-45"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"perf(eol): change to LF ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c71e42e4a8cf49c4a3b943bfdc8a94c9a9cc4940"},(0,n.kt)("inlineCode",{parentName:"a"},"c71e42e"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): linux eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e0bb30132904f92b9755356f6b5ccbf72075425"},(0,n.kt)("inlineCode",{parentName:"a"},"6e0bb30"))),(0,n.kt)("li",{parentName:"ul"},"lint fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a68866d4058f7412a2635371adebc370b6445281"},(0,n.kt)("inlineCode",{parentName:"a"},"a68866d"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): lf fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7054b2067b0802c5bd04e185cba76e2577ccfdd1"},(0,n.kt)("inlineCode",{parentName:"a"},"7054b20"))),(0,n.kt)("li",{parentName:"ul"},"doco(list): update Ordered List showcase ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/75e40bf4487ea334c9ebc2dd6c2a392d82e662f3"},(0,n.kt)("inlineCode",{parentName:"a"},"75e40bf"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): lf fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19235e585ac50c3669f654a93798b8998894f900"},(0,n.kt)("inlineCode",{parentName:"a"},"19235e5"))),(0,n.kt)("li",{parentName:"ul"},"fixed js syntax error from previous commit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/37dc1f5c1506040c1f155afdea76c4ed739ddda2"},(0,n.kt)("inlineCode",{parentName:"a"},"37dc1f5"))),(0,n.kt)("li",{parentName:"ul"},"Next relese: 0.2.2 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b3fb40ff5e46d7519b6356fdaf7326780bd89d9e"},(0,n.kt)("inlineCode",{parentName:"a"},"b3fb40f")))),(0,n.kt)("h3",{id:"021---2022-04-08"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.2.0...0.2.1"},"0.2.1")," - 2022-04-08"),(0,n.kt)("h4",{id:"-bug-fixes-39"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(version): Switch to 2.0.0.alpha.1 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/83b8b8ebba4f1eb31514b16476ac23a5d2b03ea9"},(0,n.kt)("inlineCode",{parentName:"a"},"83b8b8e")))),(0,n.kt)("h4",{id:"\ufe0f-others-46"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"cleanup(loader): Remove useless HTML ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d1d180c714ea225c1ad269360413a5e5e4b39f22"},(0,n.kt)("inlineCode",{parentName:"a"},"d1d180c")))),(0,n.kt)("h3",{id:"020---2022-04-04"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.9...0.2.0"},"0.2.0")," - 2022-04-04"),(0,n.kt)("h4",{id:"-new-features-27"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(card) : add new default card color-schme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/965adea8eef6d8729790f6d2bd5e71daeee15d75"},(0,n.kt)("inlineCode",{parentName:"a"},"965adea"))),(0,n.kt)("li",{parentName:"ul"},"feat(label): Handle slate links and footnotes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f382431219df29be498fe5063f3d579f0b918068"},(0,n.kt)("inlineCode",{parentName:"a"},"f382431")))),(0,n.kt)("h4",{id:"-bug-fixes-40"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(buttons,toggles): border and background color when active 147629 #139 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea36f31e986110d6c28c104d01666104ac38e2ba"},(0,n.kt)("inlineCode",{parentName:"a"},"ea36f31"))),(0,n.kt)("li",{parentName:"ul"},"fix(checkboxes): background color when they are toggles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4b6ab67085b7514c4f0ab2322e8f45de8bc09449"},(0,n.kt)("inlineCode",{parentName:"a"},"4b6ab67"))),(0,n.kt)("li",{parentName:"ul"},"fix(buttons): border set on basic buttons appearing on svg elements of Volto UI ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/69ca73f33b562b3f87bf11ce43a52ac01f83b951"},(0,n.kt)("inlineCode",{parentName:"a"},"69ca73f"))),(0,n.kt)("li",{parentName:"ul"},"fix(label): Zotero/Footnotes inside label ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0ee4d584f2771b739ed5f2332cb33aad61391786"},(0,n.kt)("inlineCode",{parentName:"a"},"0ee4d58"))),(0,n.kt)("li",{parentName:"ul"},"fix(card) : add control for image url in storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b28e5303ba04c6aee673f1d7f98ce42037c672e1"},(0,n.kt)("inlineCode",{parentName:"a"},"b28e530"))),(0,n.kt)("li",{parentName:"ul"},"fix(less variables):change font family ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e4bca9e0cb7ab9f1fd86e9f4c558382ec129e5a1"},(0,n.kt)("inlineCode",{parentName:"a"},"e4bca9e"))),(0,n.kt)("li",{parentName:"ul"},"fix(storybook):minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9fc53bcad61bbe0561d7a986dbba567d53777a8c"},(0,n.kt)("inlineCode",{parentName:"a"},"9fc53bc"))),(0,n.kt)("li",{parentName:"ul"},"fix(tag): fixes merged theme config ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/eb30363fda8a8a88155ee05268c4d7660fe99df1"},(0,n.kt)("inlineCode",{parentName:"a"},"eb30363"))),(0,n.kt)("li",{parentName:"ul"},"fix(Banner): prop types fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a270e5b4d6e571f219b5da31ca8f883f74da05e3"},(0,n.kt)("inlineCode",{parentName:"a"},"a270e5b")))),(0,n.kt)("h4",{id:"-enhancements-56"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(tag): splits Tags component to TagList and tag, changes default tags style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/78a5f8c245149706a1f7b825ef3e02da5ba86445"},(0,n.kt)("inlineCode",{parentName:"a"},"78a5f8c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner):add banner share pop up in banner story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c9688b2b697c879bbaed3cb3a688a0af7fc71234"},(0,n.kt)("inlineCode",{parentName:"a"},"c9688b2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tag): remove classes and actions that add background color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce9b6f92589618f6cb1e839a2cddc44381ef7406"},(0,n.kt)("inlineCode",{parentName:"a"},"ce9b6f9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner):change banner's image wrapper implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9153dd1073999e67c105b5ba90538bc963e17abc"},(0,n.kt)("inlineCode",{parentName:"a"},"9153dd1"))),(0,n.kt)("li",{parentName:"ul"},"change(package): bump release version to 1.10.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e984c1e1a6ea481a58a5b7a783d077b5769a621"},(0,n.kt)("inlineCode",{parentName:"a"},"7e984c1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): align cards and images, update less variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d47c9780bfbc23d1cba3578f181864074db97e98"},(0,n.kt)("inlineCode",{parentName:"a"},"d47c978"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add class inverted for default card ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/919a56e79c0243fa567144fadd4b842f75f1cf8f"},(0,n.kt)("inlineCode",{parentName:"a"},"919a56e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tag): changes component name ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e1db068bd7ac336a451a4514c61fe44557e14cc2"},(0,n.kt)("inlineCode",{parentName:"a"},"e1db068"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tag): changes color metallicBlue to bottleGreen ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e4b68acf95bb3e192914aab89b2122e0434bf72c"},(0,n.kt)("inlineCode",{parentName:"a"},"e4b68ac"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables): change tag list mobile view ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fcded3dbc67465eec6ef7f72d3fd599ec5cd3c13"},(0,n.kt)("inlineCode",{parentName:"a"},"fcded3d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tagList): update story to not use tag color classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8b5b61bfad9225c0538b713937ed39bbd0bd14e9"},(0,n.kt)("inlineCode",{parentName:"a"},"8b5b61b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner):minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff8c352b899b78528897547df0b20c357fd153cd"},(0,n.kt)("inlineCode",{parentName:"a"},"ff8c352"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner): add metadata field sub component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/327b7e77626c18ae783aea9efae0c7589f63d4f5"},(0,n.kt)("inlineCode",{parentName:"a"},"327b7e7"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): add and adjust remix icon for banner action ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1bf3ffaa16432746c5e5577f0b1643f6659b3f56"},(0,n.kt)("inlineCode",{parentName:"a"},"1bf3ffa"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): replace px with rem and adjust share popup padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a5683294570227d0b25a99e410eb824b2c6d643c"},(0,n.kt)("inlineCode",{parentName:"a"},"a568329"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner):add type class to metadata field and apply styles to it ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/86a286699146c7dda9e288e2183ec8cc86f35a23"},(0,n.kt)("inlineCode",{parentName:"a"},"86a2866"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables):change tag list styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/867008791545769aa003ef7a8a820a7e5a873e4b"},(0,n.kt)("inlineCode",{parentName:"a"},"8670087"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): share items display flex on desktop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ff86840e548f47cd597a0c76b23f996d4a9d74b"},(0,n.kt)("inlineCode",{parentName:"a"},"3ff8684"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): added background gradient, share popup, metadata show and hide #136 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2f5dccacf1e23f45f351b0be58c9bbda04da1518"},(0,n.kt)("inlineCode",{parentName:"a"},"2f5dcca"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): update gradient ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/570ee1e1e9778cb98757804fbd8ad7d9dee9ad13"},(0,n.kt)("inlineCode",{parentName:"a"},"570ee1e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tags): removes hardcoded ':' ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea58e86a79b46b5150d84ff2fbb6a7b8ba47876c"},(0,n.kt)("inlineCode",{parentName:"a"},"ea58e86"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): remove card border ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bc777397026f0efe8e569c8fd0e90d98b585b0eb"},(0,n.kt)("inlineCode",{parentName:"a"},"bc77739")))),(0,n.kt)("h4",{id:"-internal-changes-18"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(card) : add lint and prettier changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9d9a77363f7e4f7ec2ea4db5fa777dc97e086156"},(0,n.kt)("inlineCode",{parentName:"a"},"9d9a773"))),(0,n.kt)("li",{parentName:"ul"},"style(tag): remove comments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/501fcdfb8271f4a3558dadb96c546e71cfdef286"},(0,n.kt)("inlineCode",{parentName:"a"},"501fcdf"))),(0,n.kt)("li",{parentName:"ul"},"style(tag): stylelint and prettier changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/08b63864e8394fd86ada78df0b441cda52cd8063"},(0,n.kt)("inlineCode",{parentName:"a"},"08b6386")))),(0,n.kt)("h4",{id:"\ufe0f-others-47"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"1.10 release #140 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/88d33396845f00830789867663a9cd66ad88920f"},(0,n.kt)("inlineCode",{parentName:"a"},"88d3339"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/328ef2cda2d3470b5cb5ae2ef9854323f6b0f3c7"},(0,n.kt)("inlineCode",{parentName:"a"},"328ef2c"))),(0,n.kt)("li",{parentName:"ul"},"undo changes to Header.jsx committed wrongly in 4b6ab ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bfc4c51d39cf9c5151c39b099071174897de10b0"},(0,n.kt)("inlineCode",{parentName:"a"},"bfc4c51"))),(0,n.kt)("li",{parentName:"ul"},"Update 0-intro.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af75f81a84ddb9b78a77a96450976c6cd1223924"},(0,n.kt)("inlineCode",{parentName:"a"},"af75f81"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): lf fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ecf474ffbaab6796434d49c30fb09deafe9d1125"},(0,n.kt)("inlineCode",{parentName:"a"},"ecf474f"))),(0,n.kt)("li",{parentName:"ul"},"Update 0-intro.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93a073242693fa3c24c39532c2c462f58071e5c4"},(0,n.kt)("inlineCode",{parentName:"a"},"93a0732"))),(0,n.kt)("li",{parentName:"ul"},"modifies tags title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/33c3714660aa6cfbca7e362fd7baa8c396b60a0e"},(0,n.kt)("inlineCode",{parentName:"a"},"33c3714"))),(0,n.kt)("li",{parentName:"ul"},"reafactor(taglist): fixes tags root class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d09959f85d2d21cdc890a71457ed5840b5b2c53"},(0,n.kt)("inlineCode",{parentName:"a"},"7d09959")))),(0,n.kt)("h3",{id:"019---2022-03-25"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.8...0.1.9"},"0.1.9")," - 2022-03-25"),(0,n.kt)("h4",{id:"-new-features-28"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(all): 1.9 release #124 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0d3f6fbf32a4948e00410d9d0943a077863cb869"},(0,n.kt)("inlineCode",{parentName:"a"},"0d3f6fb"))),(0,n.kt)("li",{parentName:"ul"},"feat(callout): Align volto-slate callout with blockquote style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9e0bb49ffe66ebb8b8173af411873ab887b91058"},(0,n.kt)("inlineCode",{parentName:"a"},"9e0bb49")))),(0,n.kt)("h4",{id:"-bug-fixes-41"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(inpageNavigation): restore hidden on top functionality ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c554e6e02e0c82b74653498e2f3fd32a982002a4"},(0,n.kt)("inlineCode",{parentName:"a"},"c554e6e"))),(0,n.kt)("li",{parentName:"ul"},"fix(list): Fix TOC margin on 3rd level ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f17da79394e29baf62bae1247dd954cdd0362108"},(0,n.kt)("inlineCode",{parentName:"a"},"f17da79"))),(0,n.kt)("li",{parentName:"ul"},"fix(inpageNavigation) : add smooth scroll animation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/42f6564276b9214257e2dbc1e2a8f7e501625aee"},(0,n.kt)("inlineCode",{parentName:"a"},"42f6564")))),(0,n.kt)("h4",{id:"-enhancements-57"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update visual and mobile margins ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/64f05af91638d91d2c07217b8edc2fb70a5e7347"},(0,n.kt)("inlineCode",{parentName:"a"},"64f05af"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): restore union dropdown after implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7029c556a9adc1ab9b0269de666e0ed0530f67e"},(0,n.kt)("inlineCode",{parentName:"a"},"a7029c5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pullquote): adjust to the new figma design ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/78e4606ac299938021f9e525898ae7f5cede311f"},(0,n.kt)("inlineCode",{parentName:"a"},"78e4606"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumb): adjust font sizes and import remix divider ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5fcabaf589074716b34fb5d0904e14549d7f4ef2"},(0,n.kt)("inlineCode",{parentName:"a"},"5fcabaf"))),(0,n.kt)("li",{parentName:"ul"},"change(header): use viewport width for changing mobile text in header dropdowns ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5a7868e1725f8766ae1be68d3c27b1313f79196b"},(0,n.kt)("inlineCode",{parentName:"a"},"5a7868e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(inpageNavigation): adjust to the new figma design ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4073acfb87378224d071079467bcfa195b1fc6ac"},(0,n.kt)("inlineCode",{parentName:"a"},"4073acf"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tab): add max width for tab items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/366d279a94d5f388c6167e7afb72d108c77c4085"},(0,n.kt)("inlineCode",{parentName:"a"},"366d279"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables):change pullquote styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9ad94bb424a14713ffa605c7497c95bdefeb6e5f"},(0,n.kt)("inlineCode",{parentName:"a"},"9ad94bb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Pullquote):change quote positions and add Pullquote.Metadata sub component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6bce35fa3cc158d9d18a07d0faf812c5c38bae0b"},(0,n.kt)("inlineCode",{parentName:"a"},"6bce35f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(inpageNavigation): Update to remix icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19a606170b4163cf4f751a419ca36a4c163b566d"},(0,n.kt)("inlineCode",{parentName:"a"},"19a6061"))),(0,n.kt)("li",{parentName:"ul"},"refactor(inpageNavigation) : move icon & text to be in column ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/09539102489ec511cb2b6cd047d316ab8b87ed55"},(0,n.kt)("inlineCode",{parentName:"a"},"0953910"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumbs): modified breadcrumbs template to behave like breadrumb template ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/490a559bc99f3a9d174a344cf0be85086293578e"},(0,n.kt)("inlineCode",{parentName:"a"},"490a559"))),(0,n.kt)("li",{parentName:"ul"},"change(package): bump release version to 1.9.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/43a6e4b92fd05ca272fb140922213834ee426938"},(0,n.kt)("inlineCode",{parentName:"a"},"43a6e4b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumb): adjust font sizes and import remix divider #120 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/09a3a01910ed898b62a9535fe5d2a41cfdb3a91b"},(0,n.kt)("inlineCode",{parentName:"a"},"09a3a01"))),(0,n.kt)("li",{parentName:"ul"},"change(menu): modified secondaryPointingItemMaxWidth to a value that equals to 250 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea138a10257206fae32c4e9a30233a3ddfd424b6"},(0,n.kt)("inlineCode",{parentName:"a"},"ea138a1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pullquote): introduce meta section, use remix icons, integrate slate callouts #119 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fd740c9e72b2defa5cc858ac020f0cb051aa527c"},(0,n.kt)("inlineCode",{parentName:"a"},"fd740c9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): updated visuals and gradients #117 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e5c6d18dc3fb33e5dfa654ecebdc12c6f5f0cf32"},(0,n.kt)("inlineCode",{parentName:"a"},"e5c6d18"))),(0,n.kt)("li",{parentName:"ul"},"change(scrollToTop): feature inpage navigation revamp #121 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3cf20a82b723b8df0b53f16c737e5c8990f891f1"},(0,n.kt)("inlineCode",{parentName:"a"},"3cf20a8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update visual and gradient ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/764ec23a456397b478456f7d628baa4e6c0b4713"},(0,n.kt)("inlineCode",{parentName:"a"},"764ec23"))),(0,n.kt)("li",{parentName:"ul"},"change(header): use 12px font size for mobile resolution dropdowns ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6dad0fab24f37f87696bb50f5a592e88510d053e"},(0,n.kt)("inlineCode",{parentName:"a"},"6dad0fa"))),(0,n.kt)("li",{parentName:"ul"},"change(nav): added navDepth to 3 in order to enable mega menu integration ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4f73fdd0dfadcd63b2f4be7a691bf12dcd9bb76"},(0,n.kt)("inlineCode",{parentName:"a"},"c4f73fd")))),(0,n.kt)("h4",{id:"-internal-changes-19"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(inpageNavigation) : lint changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3641d78374063904c00f1ba19f2f234f7a43892b"},(0,n.kt)("inlineCode",{parentName:"a"},"3641d78"))),(0,n.kt)("li",{parentName:"ul"},"style(inpageNavigation) : add less variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0699c70c66403ff75bf41ba252a74e9f4379671c"},(0,n.kt)("inlineCode",{parentName:"a"},"0699c70"))),(0,n.kt)("li",{parentName:"ul"},"style(pullquote): create variable for icon font size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fea9b0a7c33237ad036522b4dde567718d640210"},(0,n.kt)("inlineCode",{parentName:"a"},"fea9b0a"))),(0,n.kt)("li",{parentName:"ul"},"style(inpageNavigation) : add lint & prettier changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f8dd012a964e0c1f0bc22c36826a4a94bd052759"},(0,n.kt)("inlineCode",{parentName:"a"},"f8dd012"))),(0,n.kt)("li",{parentName:"ul"},"style(inpageNavigation): remove comment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1aee011d032c1a2b7fe564a40688bc39ca457c18"},(0,n.kt)("inlineCode",{parentName:"a"},"1aee011")))),(0,n.kt)("h4",{id:"\ufe0f-others-48"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"perf(eol): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/85a3dc55c7676c0feb8dd5b39fe0cbb9d66a9370"},(0,n.kt)("inlineCode",{parentName:"a"},"85a3dc5"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/00776211ccfa1cb90d9fa0e5269f47f5b3845741"},(0,n.kt)("inlineCode",{parentName:"a"},"0077621"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f1bb1c630edb669b03929a978cc116bae012255"},(0,n.kt)("inlineCode",{parentName:"a"},"9f1bb1c"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2b19fec30d6086f486bdca631a9114d8369fe43"},(0,n.kt)("inlineCode",{parentName:"a"},"e2b19fe"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/03dbc9b027578934f89d9480d981e1bc28f38aa3"},(0,n.kt)("inlineCode",{parentName:"a"},"03dbc9b"))),(0,n.kt)("li",{parentName:"ul"},"Hide breadcrumbs on homepage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e2f609df8d4b6bdb826e539fc0c613406d357a5"},(0,n.kt)("inlineCode",{parentName:"a"},"3e2f609"))),(0,n.kt)("li",{parentName:"ul"},"bug(inpageNavigation): less layers structure fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8d34fbdd5130ed36157db1ff70e8b039faa9f81"},(0,n.kt)("inlineCode",{parentName:"a"},"b8d34fb"))),(0,n.kt)("li",{parentName:"ul"},"prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4b1c572411cbc58dec51d5eeefe9847675c2e41"},(0,n.kt)("inlineCode",{parentName:"a"},"d4b1c57"))),(0,n.kt)("li",{parentName:"ul"},"fefactor(tab): add max width for tab items #118 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/716c408fa4c73f3feb8e36e35fb1f6bb50ac264c"},(0,n.kt)("inlineCode",{parentName:"a"},"716c408"))),(0,n.kt)("li",{parentName:"ul"},"Add reversed option to Timeline grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7c9023245f2fc943380f79743b5f10c6b6f65264"},(0,n.kt)("inlineCode",{parentName:"a"},"7c90232"))),(0,n.kt)("li",{parentName:"ul"},"doc(grid): update grid showcases ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/83671a382e39a2736c2c1353098d5f4fc2a0e67e"},(0,n.kt)("inlineCode",{parentName:"a"},"83671a3"))),(0,n.kt)("li",{parentName:"ul"},"End of line ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7f46fb752ec8918325ebadd386ee88248e02566c"},(0,n.kt)("inlineCode",{parentName:"a"},"7f46fb7")))),(0,n.kt)("h3",{id:"018---2022-03-18"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.7...0.1.8"},"0.1.8")," - 2022-03-18"),(0,n.kt)("h4",{id:"-bug-fixes-42"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(card): avoid long links from spilling outside of card body area ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/95b8951ab87bfab7a68cc20b89b25aa15113aa9d"},(0,n.kt)("inlineCode",{parentName:"a"},"95b8951")))),(0,n.kt)("h4",{id:"-enhancements-58"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(typography): set heading sizes as detailed in docusaurus typography section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/189bf20409581587061ffa30ff2bf04d97f284cf"},(0,n.kt)("inlineCode",{parentName:"a"},"189bf20"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): content tweaks, inpage navigation section #112 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b62d1b1def7c3d8890ffbba30950e8e422e9ed89"},(0,n.kt)("inlineCode",{parentName:"a"},"b62d1b1")))),(0,n.kt)("h4",{id:"-internal-changes-20"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(docusaurus): fixed grid tablet breakpoint value ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c7fbc0912131396e3a1e35803968eda1eff77d40"},(0,n.kt)("inlineCode",{parentName:"a"},"c7fbc09")))),(0,n.kt)("h4",{id:"-documentation-changes-18"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): capitalization remove ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bf8fa4407e7110da1c6a911506d56800bd5c32d7"},(0,n.kt)("inlineCode",{parentName:"a"},"bf8fa44"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1c04976a141324f0dde01b139a77f611e6f51840"},(0,n.kt)("inlineCode",{parentName:"a"},"1c04976"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): comment address on pr 112 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e4fe3bed285eae8b2cff03b1ef558debc0b4edb"},(0,n.kt)("inlineCode",{parentName:"a"},"6e4fe3b"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): color minor update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/13f9fda09287da5b8733d17f9c7567b6b7df750a"},(0,n.kt)("inlineCode",{parentName:"a"},"13f9fda"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): tabs and breadcrump update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d0547e5ad09a8608335b1e77e24c891e49213694"},(0,n.kt)("inlineCode",{parentName:"a"},"d0547e5")))),(0,n.kt)("h4",{id:"\ufe0f-others-49"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"doc(colours): add more content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ec66248f1290369dcf63ee12f7b71a1630df887b"},(0,n.kt)("inlineCode",{parentName:"a"},"ec66248"))),(0,n.kt)("li",{parentName:"ul"},"Add divider content for metadata field in Banner ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f1e34bd6a199f6418fba909e9dfdf50b0100e860"},(0,n.kt)("inlineCode",{parentName:"a"},"f1e34bd"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.8.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fd6ba047e8f8b257c3c75d07a6caefad376f888a"},(0,n.kt)("inlineCode",{parentName:"a"},"fd6ba04")))),(0,n.kt)("h3",{id:"017---2022-03-15"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.6...0.1.7"},"0.1.7")," - 2022-03-15"),(0,n.kt)("h4",{id:"-new-features-29"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(less): add global gap sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c83f20280b8a7ab0b5c78e3df7646beebe08709"},(0,n.kt)("inlineCode",{parentName:"a"},"3c83f20"))),(0,n.kt)("li",{parentName:"ul"},"feat(icons): import remix css ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/29967fb39034910dce286880f347a670f77421b3"},(0,n.kt)("inlineCode",{parentName:"a"},"29967fb")))),(0,n.kt)("h4",{id:"-bug-fixes-43"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(menu): fix border overflow for tabs and pagination ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e88721f916affa2a6d2f03930eb4266f9a2b0fb9"},(0,n.kt)("inlineCode",{parentName:"a"},"e88721f"))),(0,n.kt)("li",{parentName:"ul"},"fix(accordion): responsive and accessibility issues ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c225935ceb9fdba45c6f94086a35e177495fe584"},(0,n.kt)("inlineCode",{parentName:"a"},"c225935")))),(0,n.kt)("h4",{id:"-enhancements-59"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(menu): update paddings for tabs and pagination ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/533a5093e6c306034cb16e0a88e045019677951e"},(0,n.kt)("inlineCode",{parentName:"a"},"533a509"))),(0,n.kt)("li",{parentName:"ul"},"refactor(accordion): import semantic icon for remix arrows ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9aa77d856d1e43f4ec3daaab37f06fa91ebd1eaf"},(0,n.kt)("inlineCode",{parentName:"a"},"9aa77d8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(all) icons, accordion, button and menu itml #108 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/52ed2ca19b5e8dea60f1ee7bfd9c3b6b49a49f7d"},(0,n.kt)("inlineCode",{parentName:"a"},"52ed2ca"))),(0,n.kt)("li",{parentName:"ul"},"change(storybook): segment stories now contain several elements ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/98a7654b0d4a7c30c7a2df35103ddb2740f3ca2d"},(0,n.kt)("inlineCode",{parentName:"a"},"98a7654"))),(0,n.kt)("li",{parentName:"ul"},"change(table): inherit header alignment instead of hard-coding values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ebb5193babfe8b99094db6778afdaf2d91b2c4dd"},(0,n.kt)("inlineCode",{parentName:"a"},"ebb5193"))),(0,n.kt)("li",{parentName:"ul"},"refactor(icons): add remix icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4c1a92b671b52c509386addc02e8919c93391fb"},(0,n.kt)("inlineCode",{parentName:"a"},"c4c1a92"))),(0,n.kt)("li",{parentName:"ul"},"refactor(container): restore mobile width to auto ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2df184c19a8685c69e6b9a55b147a97853cc6b74"},(0,n.kt)("inlineCode",{parentName:"a"},"2df184c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button): update action button hover color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bb09d718433f93091ca1b325471d48741825ca96"},(0,n.kt)("inlineCode",{parentName:"a"},"bb09d71")))),(0,n.kt)("h4",{id:"-internal-changes-21"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(docusaurus): docs delete ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f9d733287902ccb096f5a976a2928e43a43a8e7"},(0,n.kt)("inlineCode",{parentName:"a"},"5f9d733")))),(0,n.kt)("h4",{id:"-documentation-changes-19"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(colors): corrections ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/da64c4c6b58e8840ea98be75d442b90911197e28"},(0,n.kt)("inlineCode",{parentName:"a"},"da64c4c"))),(0,n.kt)("li",{parentName:"ul"},"docs(list): default list showcase ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8ded06231c14d1394f77559aeb2d5a7e3a0c1bf1"},(0,n.kt)("inlineCode",{parentName:"a"},"8ded062")))),(0,n.kt)("h4",{id:"\ufe0f-others-50"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"bug(form): input min-width more specific to not break volto interface ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3f5b5d498ea1a0e3bb6fd62af5930f6579029b11"},(0,n.kt)("inlineCode",{parentName:"a"},"3f5b5d4"))),(0,n.kt)("li",{parentName:"ul"},"Update package.json ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3dba28b5a3d28adbf946a8df3d9cc9b8ef4c68e0"},(0,n.kt)("inlineCode",{parentName:"a"},"3dba28b")))),(0,n.kt)("h3",{id:"016---2022-03-11"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.5...0.1.6"},"0.1.6")," - 2022-03-11"),(0,n.kt)("h4",{id:"-new-features-30"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(cards): add custom display for volto-block-image-cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/645096ac5a0aa3326834191f56ee8a77db0464f5"},(0,n.kt)("inlineCode",{parentName:"a"},"645096a"))),(0,n.kt)("li",{parentName:"ul"},"feat(PublicationCard):create publication card component & styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e5f9b7a9bb301f446b232b99f7db54e6a7470ae"},(0,n.kt)("inlineCode",{parentName:"a"},"3e5f9b7"))),(0,n.kt)("li",{parentName:"ul"},"feat(PublicationCard):create publication card component & styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/12cdd5d50dc4c05f2c2b83586df90c7b91c11a75"},(0,n.kt)("inlineCode",{parentName:"a"},"12cdd5d"))),(0,n.kt)("li",{parentName:"ul"},"feat(Related Content): create Related Content component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/77eda953196f9e686d4ec2c996d6902a614af4a0"},(0,n.kt)("inlineCode",{parentName:"a"},"77eda95"))),(0,n.kt)("li",{parentName:"ul"},"feat(Related Content): create Related Content component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/08d495baeae575a07813056176ac940d7edc91eb"},(0,n.kt)("inlineCode",{parentName:"a"},"08d495b"))),(0,n.kt)("li",{parentName:"ul"},"feat(pagination,related) added several r3 components #105 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/08d47c199286402c31a0ff0de38fd08533d2cd91"},(0,n.kt)("inlineCode",{parentName:"a"},"08d47c1")))),(0,n.kt)("h4",{id:"-bug-fixes-44"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(Related Content): limit publication card number to 4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e7df03214824a85911c26499c8975f88ffa9fe4d"},(0,n.kt)("inlineCode",{parentName:"a"},"e7df032"))),(0,n.kt)("li",{parentName:"ul"},"fix(less variables):rename publication card variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/55c6fb8e5e9660352ce1bf2bd38c4ef8834ce184"},(0,n.kt)("inlineCode",{parentName:"a"},"55c6fb8"))),(0,n.kt)("li",{parentName:"ul"},"fix(Publication Card): add link to card and arg name fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/36a7c961639b2ff07acd455ccf277dd0a93f753c"},(0,n.kt)("inlineCode",{parentName:"a"},"36a7c96"))),(0,n.kt)("li",{parentName:"ul"},"fix(radio): fix bullet scaling issue with firefox ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f02c95f18c77527f949f115471cf24302df4d49"},(0,n.kt)("inlineCode",{parentName:"a"},"5f02c95"))),(0,n.kt)("li",{parentName:"ul"},"fix(radio): fix bullet scaling issue with firefox ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dbb2e27b43e6d267a436a8475107ad01e940ec93"},(0,n.kt)("inlineCode",{parentName:"a"},"dbb2e27")))),(0,n.kt)("h4",{id:"-enhancements-60"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(form): remove custom classes and add container to form items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6b5442a3c56854bf30269f235099d8507ba588f7"},(0,n.kt)("inlineCode",{parentName:"a"},"6b5442a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form): remove custom classes and add container to form items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d1ec083647f854c09d8a64dffa6a5c829321049e"},(0,n.kt)("inlineCode",{parentName:"a"},"d1ec083"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form): update form wrapper component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7195768bbe86121fc82bebca29abfb20b50d77a"},(0,n.kt)("inlineCode",{parentName:"a"},"a719576"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form): update form wrapper component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0736ec7d671d756c13a69bd8bf93488805da27e2"},(0,n.kt)("inlineCode",{parentName:"a"},"0736ec7"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form): adjust form items to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4213cfb79430273e637b06a76af28c9cd660aa74"},(0,n.kt)("inlineCode",{parentName:"a"},"4213cfb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form): adjust form items to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/374ffbc1c380df1b1a5f9939fc658d9ecca4ae1b"},(0,n.kt)("inlineCode",{parentName:"a"},"374ffbc"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumb): remove custom class anf and new variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b3cb83d90e0be7f8a80f619d57bc90cae4f8f207"},(0,n.kt)("inlineCode",{parentName:"a"},"b3cb83d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumb): remove custom class anf and new variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5808ad3576439df010bebfb8fd423858ffc4e66"},(0,n.kt)("inlineCode",{parentName:"a"},"d5808ad"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): clear up unnecessary form elements controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f7e7d5bc285ea5115bc8770c7471729f06da891e"},(0,n.kt)("inlineCode",{parentName:"a"},"f7e7d5b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): small change in unordered list story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ffd87246df9dffcc064683e93d6f3aff35b3931"},(0,n.kt)("inlineCode",{parentName:"a"},"3ffd872"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): small change in unordered list story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6ce16e990f15ef8c61493359815405517756c32c"},(0,n.kt)("inlineCode",{parentName:"a"},"6ce16e9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pagination): fix menu overrides for tabs that affects pagination ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fe8c4ca32072518820ad38f8b334b38f52ef2df5"},(0,n.kt)("inlineCode",{parentName:"a"},"fe8c4ca"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pagination): fix menu overrides for tabs that affects pagination ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3f4b726c2a2047f6f9a65375074dd7ea38717f5c"},(0,n.kt)("inlineCode",{parentName:"a"},"3f4b726"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Loader):remove image & add background image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70fe041e06cfee946bb9557f9fcb5ff49d08c287"},(0,n.kt)("inlineCode",{parentName:"a"},"70fe041"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Loader):remove image & add background image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac3812684ee4377914801cd770890c78bdeecedf"},(0,n.kt)("inlineCode",{parentName:"a"},"ac38126"))),(0,n.kt)("li",{parentName:"ul"},"refactor(list): remove selection control ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a09b1798a62a6e192deb1d217d0c44b4b881ce6a"},(0,n.kt)("inlineCode",{parentName:"a"},"a09b179"))),(0,n.kt)("li",{parentName:"ul"},"refactor(list): remove selection control ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/17bf710d00a91acd35356dbaa9d5093ca80a8987"},(0,n.kt)("inlineCode",{parentName:"a"},"17bf710"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook):unordered list minor change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/df2b72730500aee5d0bbc82185222edacad38b2b"},(0,n.kt)("inlineCode",{parentName:"a"},"df2b727"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook):unordered list minor change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef6db73ce2236d0f653212d2f57c336f1f8d806e"},(0,n.kt)("inlineCode",{parentName:"a"},"ef6db73"))),(0,n.kt)("li",{parentName:"ul"},"refactor(colors): remove metalic blue color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b2f95b6dc3b1d8314827d56e88efa0dfc719aca2"},(0,n.kt)("inlineCode",{parentName:"a"},"b2f95b6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(colors): remove metalic blue color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1eea33f71fdde5834f82d244224c185fde3ab8ba"},(0,n.kt)("inlineCode",{parentName:"a"},"1eea33f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button): update variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b1774d8c7f32ded2eff654b0d16e45d944fe5690"},(0,n.kt)("inlineCode",{parentName:"a"},"b1774d8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button): update variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/061f3e3042f28575dbb1a70f09a62bda728815be"},(0,n.kt)("inlineCode",{parentName:"a"},"061f3e3"))),(0,n.kt)("li",{parentName:"ul"},"change(blockquote): treat slate as a variation of blockquote component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19bd9a5f67e573b71531fe34b29d2e08e0856eae"},(0,n.kt)("inlineCode",{parentName:"a"},"19bd9a5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(container): remove important from rules ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e984771ed59fe849246ae8a01d9d84f3f2f232c5"},(0,n.kt)("inlineCode",{parentName:"a"},"e984771"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook):add textarea control to add/remove fluid class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/475f540efa76d0993c3f7bd72d4c646385f4c909"},(0,n.kt)("inlineCode",{parentName:"a"},"475f540"))),(0,n.kt)("li",{parentName:"ul"},"refactor(container): remove important from rules ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1cc69848705d3d592221bf7fa7d43c8b0eb37f09"},(0,n.kt)("inlineCode",{parentName:"a"},"1cc6984"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): add required attribute to form fields ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fecee278b920c44dd0dd34ace81f9606258c8f7c"},(0,n.kt)("inlineCode",{parentName:"a"},"fecee27"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progressBar): update progress bar colors with vars ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4ef1f0f6eba9792901bc9e0ec5b01877e9da96e"},(0,n.kt)("inlineCode",{parentName:"a"},"c4ef1f0"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progressBar): update progress bar colors with vars ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a44d73c48b6ccc988508fed5c3fb585353fe0958"},(0,n.kt)("inlineCode",{parentName:"a"},"a44d73c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): add required attribute to form fields ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/21da79eafa9f23dcf01cac7e096da7fab2187450"},(0,n.kt)("inlineCode",{parentName:"a"},"21da79e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(list): adjust bullet size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2b29e4e429f939500bc7d7ebd5836b8bc24090ec"},(0,n.kt)("inlineCode",{parentName:"a"},"2b29e4e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(list): adjust bullet size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/61c341cfdad3fccdd7499f6957f91ab99159ea16"},(0,n.kt)("inlineCode",{parentName:"a"},"61c341c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): add inverted background to global variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1427e70f2b208531bbb91ab1a708430f1c03ea3a"},(0,n.kt)("inlineCode",{parentName:"a"},"1427e70"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): add inverted background to global variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea25dfa5589181b7d23bef153bae3ab279e70167"},(0,n.kt)("inlineCode",{parentName:"a"},"ea25dfa"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): remove custom class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/46cc5601e378c7bfcf927b7c25dae2a2d3f795fd"},(0,n.kt)("inlineCode",{parentName:"a"},"46cc560"))),(0,n.kt)("li",{parentName:"ul"},"refactor(container): update mobile width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d548a44d86745270778134028be597f559d7a0b4"},(0,n.kt)("inlineCode",{parentName:"a"},"d548a44"))),(0,n.kt)("li",{parentName:"ul"},"refactor(grid): replace px with rem units ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e792f51e4f41b8f3f53e297b9e5a01d5e2d9bfb1"},(0,n.kt)("inlineCode",{parentName:"a"},"e792f51"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): remove custom class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b5c8e7c2aeb2751d4b981eacc51e3dda58a922dc"},(0,n.kt)("inlineCode",{parentName:"a"},"b5c8e7c"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): updated template to change what's new title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e15f4d3c3e5d4199886bb4cfeda8dce6a4bf041"},(0,n.kt)("inlineCode",{parentName:"a"},"3e15f4d"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): added display variable for footer site logos ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5b3c2f6d85b3a42eefa8521a074a7581bfbd8fb"},(0,n.kt)("inlineCode",{parentName:"a"},"d5b3c2f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(grid): replace px with rem units ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f0331d00f537cf41ca184796386f60a88bfe6c86"},(0,n.kt)("inlineCode",{parentName:"a"},"f0331d0"))),(0,n.kt)("li",{parentName:"ul"},"change(github): auto deploy only on develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/11d6b4e9059674b6dd1fe655995231be03a910fb"},(0,n.kt)("inlineCode",{parentName:"a"},"11d6b4e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): implementation in preparation for Volto integration #20 #89 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/95b136d51ddbc5632c0fa1cc696c2297a8c4695c"},(0,n.kt)("inlineCode",{parentName:"a"},"95b136d"))),(0,n.kt)("li",{parentName:"ul"},"change(github): trigger autobuild when modifying templates contents ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/46094b1427793cd88da6f615b16b70e6cfaee9af"},(0,n.kt)("inlineCode",{parentName:"a"},"46094b1")))),(0,n.kt)("h4",{id:"-internal-changes-22"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(list): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f9e3b05effc0afeddc234b491bc86f2ec82a764f"},(0,n.kt)("inlineCode",{parentName:"a"},"f9e3b05"))),(0,n.kt)("li",{parentName:"ul"},"style(list): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8eb715b05b3bef2795d2485084386c6e910392cf"},(0,n.kt)("inlineCode",{parentName:"a"},"8eb715b"))),(0,n.kt)("li",{parentName:"ul"},"chore(github): merge changes from develop to develop-itml ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/063bd6ecc5e47321854ca4994a91bf0a43ab3e3e"},(0,n.kt)("inlineCode",{parentName:"a"},"063bd6e"))),(0,n.kt)("li",{parentName:"ul"},"chore(github): build deployment only on develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a5a1b0802b46d674d04ae099afc8510e3cb62222"},(0,n.kt)("inlineCode",{parentName:"a"},"a5a1b08"))),(0,n.kt)("li",{parentName:"ul"},"chore(github): build deployment only on develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bb455aa4308e6593c45bcb3a62b8058709d74f83"},(0,n.kt)("inlineCode",{parentName:"a"},"bb455aa"))),(0,n.kt)("li",{parentName:"ul"},"chore(github): merge changes from develop to develop-itml ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/129c12f60025db50bac5b2d3dd36e04a97d49499"},(0,n.kt)("inlineCode",{parentName:"a"},"129c12f")))),(0,n.kt)("h4",{id:"\ufe0f-others-51"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},'Revert "chore(github): merge changes from develop to develop-itml" ',(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca9520fe8d91f8924ea203eb32001e3e6518e472"},(0,n.kt)("inlineCode",{parentName:"a"},"ca9520f"))),(0,n.kt)("li",{parentName:"ul"},"refactor breadcrumbs component, make it functional and customizable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e902d6931060c5676d67842f95391379fcb3cccf"},(0,n.kt)("inlineCode",{parentName:"a"},"e902d69"))),(0,n.kt)("li",{parentName:"ul"},"rollback(cards): move custom display to volto-block-image-cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2564b1ec2cc52670c0f2abc92c49161f5cd1b006"},(0,n.kt)("inlineCode",{parentName:"a"},"2564b1e"))),(0,n.kt)("li",{parentName:"ul"},"bring back segment wrapper and make it attached ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8458f0321f44f22a605e7179485d97f41a0afa38"},(0,n.kt)("inlineCode",{parentName:"a"},"8458f03"))),(0,n.kt)("li",{parentName:"ul"},"no ",(0,n.kt)("inlineCode",{parentName:"li"},"display: flex")," for blockquote added from slate ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5595ce1b8173e6952ab3926dc5f3c988279a42dc"},(0,n.kt)("inlineCode",{parentName:"a"},"5595ce1"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about code length ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a5f36523682dde8d1e16f416a07cd0c8c615a386"},(0,n.kt)("inlineCode",{parentName:"a"},"a5f3652"))),(0,n.kt)("li",{parentName:"ul"},"Add indenting rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/15c44cbcb6a52d0fd0438ff9b5d0e5963a4b53a0"},(0,n.kt)("inlineCode",{parentName:"a"},"15c44cb"))),(0,n.kt)("li",{parentName:"ul"},"fix warning related to proptype ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/946c6c6bc9dece0985ae4b9f9cad6ece2be0ff2c"},(0,n.kt)("inlineCode",{parentName:"a"},"946c6c6"))),(0,n.kt)("li",{parentName:"ul"},"fix profile section css overflow ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/db5126fc902e191d1e18fb7e4c54877c8d8786e6"},(0,n.kt)("inlineCode",{parentName:"a"},"db5126f"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about import sorting ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/804e188eea30427053111310ad2d3edf6a4ec78b"},(0,n.kt)("inlineCode",{parentName:"a"},"804e188"))),(0,n.kt)("li",{parentName:"ul"},"don't use volto-slate ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6a029765d3a59ac65b3b5dd18c1a9624bae1d52a"},(0,n.kt)("inlineCode",{parentName:"a"},"6a02976"))),(0,n.kt)("li",{parentName:"ul"},"remove segment custom width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1d3ea40f98bbdc1eab95b4da739a659b5e29ec16"},(0,n.kt)("inlineCode",{parentName:"a"},"1d3ea40"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about naming vars ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f9020fa3073190681de36cf1dcdf62e69ac2c74"},(0,n.kt)("inlineCode",{parentName:"a"},"8f9020f"))),(0,n.kt)("li",{parentName:"ul"},"update style for accordion title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0b0d678c69d8b0765ff015b0355c01d57c643192"},(0,n.kt)("inlineCode",{parentName:"a"},"0b0d678"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.6.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e771e657e5bedca3630d05cda643c45da5369d4c"},(0,n.kt)("inlineCode",{parentName:"a"},"e771e65"))),(0,n.kt)("li",{parentName:"ul"},"update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bbcab87ef4c8475f347f0daf4ab7e428e69c2316"},(0,n.kt)("inlineCode",{parentName:"a"},"bbcab87"))),(0,n.kt)("li",{parentName:"ul"},"add margin to ","<","br",">"," element to simulate gap as in design ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c6685c11a14febfc9b6c592a9adc9a25a0b80458"},(0,n.kt)("inlineCode",{parentName:"a"},"c6685c1"))),(0,n.kt)("li",{parentName:"ul"},"make breadcrumbs default size as tiny ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/589581fa29a7e249e59393bebe9dfe284090db6f"},(0,n.kt)("inlineCode",{parentName:"a"},"589581f"))),(0,n.kt)("li",{parentName:"ul"},"remove uneeded style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/82a8fb1eb3a359d54bc59234e498eb122d07223c"},(0,n.kt)("inlineCode",{parentName:"a"},"82a8fb1"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about hardcoded values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e04e0df7cd47d575e649d1995ea5c64b2a431b05"},(0,n.kt)("inlineCode",{parentName:"a"},"e04e0df"))),(0,n.kt)("li",{parentName:"ul"},"Add file mode rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/65c9a9357a82a39bf54862eff9231264a6277ab5"},(0,n.kt)("inlineCode",{parentName:"a"},"65c9a93"))),(0,n.kt)("li",{parentName:"ul"},"Add DRY rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/66c9c3a6b05bf3395f5bda1a7c5af26a9962e66c"},(0,n.kt)("inlineCode",{parentName:"a"},"66c9c3a"))),(0,n.kt)("li",{parentName:"ul"},"set profile section overflow to auto ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/71ab47f89a433233c14b394c3824e607dd18a393"},(0,n.kt)("inlineCode",{parentName:"a"},"71ab47f"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using eea-website-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/647a6e3e2093f2c4884c356eb148453551c8f33f"},(0,n.kt)("inlineCode",{parentName:"a"},"647a6e3"))),(0,n.kt)("li",{parentName:"ul"},"removed override already present in card.less ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/50d2ab26f85c8f409da02ec128cc1df34848ca69"},(0,n.kt)("inlineCode",{parentName:"a"},"50d2ab2"))),(0,n.kt)("li",{parentName:"ul"},"update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7a1d482aa875ab2669ed688663228d79ce9b7bea"},(0,n.kt)("inlineCode",{parentName:"a"},"7a1d482"))),(0,n.kt)("li",{parentName:"ul"},"Add functional components rule; add classnames rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91a0b067c7a36002a6d49c5c0238f593b5a6ac6e"},(0,n.kt)("inlineCode",{parentName:"a"},"91a0b06"))),(0,n.kt)("li",{parentName:"ul"},"added comment about need for removal of this fix later ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/65b81665c1cc41991b4903bb44a5eb7fb8ec5f3b"},(0,n.kt)("inlineCode",{parentName:"a"},"65b8166")))),(0,n.kt)("h3",{id:"015---2022-03-08"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.4...0.1.5"},"0.1.5")," - 2022-03-08"),(0,n.kt)("h4",{id:"-new-features-31"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(cards): add custom display for volto-block-image-cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f49ffb65f41c78499f56251c2de267ce5617b4c5"},(0,n.kt)("inlineCode",{parentName:"a"},"f49ffb6"))),(0,n.kt)("li",{parentName:"ul"},"feat(KeyContent): add new component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2534c542c2fd729b31a9064a21dae2bd3cacb2e4"},(0,n.kt)("inlineCode",{parentName:"a"},"2534c54"))),(0,n.kt)("li",{parentName:"ul"},"feat(docusaurus): Updated developer guidelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca146ffd42cb31286a5c49fa09390d0a93270cfa"},(0,n.kt)("inlineCode",{parentName:"a"},"ca146ff"))),(0,n.kt)("li",{parentName:"ul"},"feat(storybook): add testimonial component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/55d97472d82f3819674e78f684e197625c9f854c"},(0,n.kt)("inlineCode",{parentName:"a"},"55d9747"))),(0,n.kt)("li",{parentName:"ul"},"feat(storybook): add AvatarGrid component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b6684456ea6fa17695734b5179b39be77644da93"},(0,n.kt)("inlineCode",{parentName:"a"},"b668445"))),(0,n.kt)("li",{parentName:"ul"},"feat(storybook):add Loader component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6758346a516f7c4be5d66dfdf198dbe2ffe3f01"},(0,n.kt)("inlineCode",{parentName:"a"},"f675834")))),(0,n.kt)("h4",{id:"-bug-fixes-45"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(breakpoints): fix largest screen breakpoint bug on scaling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e4a11c876c20187351fa9454b4fbf0de3e502bff"},(0,n.kt)("inlineCode",{parentName:"a"},"e4a11c8"))),(0,n.kt)("li",{parentName:"ul"},"fix(profile): section css overflow and padding issues #95 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bb9eb0f83307524bda5cf86aa0dfd678c65da653"},(0,n.kt)("inlineCode",{parentName:"a"},"bb9eb0f"))),(0,n.kt)("li",{parentName:"ul"},"fix(storybook): lint auto changes for AvatarGrid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8e74f17df77f8f9f96bf442dc178417bbfc04c6"},(0,n.kt)("inlineCode",{parentName:"a"},"b8e74f1"))),(0,n.kt)("li",{parentName:"ul"},"fix(components): add grid structure to various components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cc33546deda634cee6031bd6cde6eef3eaacb76a"},(0,n.kt)("inlineCode",{parentName:"a"},"cc33546"))),(0,n.kt)("li",{parentName:"ul"},"fix(header) re-added span tags removed in pull request #74 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/00702d7831b84aad52f10368dbef740baf581ab8"},(0,n.kt)("inlineCode",{parentName:"a"},"00702d7")))),(0,n.kt)("h4",{id:"-enhancements-61"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(button): styling updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/37afda5b00797d456e303fb585dad145b575b2ed"},(0,n.kt)("inlineCode",{parentName:"a"},"37afda5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tab): updates on variables and overrides ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/54bf703f9f34f2f945f4635cd4bc4728174c7d47"},(0,n.kt)("inlineCode",{parentName:"a"},"54bf703"))),(0,n.kt)("li",{parentName:"ul"},"change(blockquote): treat slate as a variation of blockquote component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5e8a8b8220c7c25a266f045442aae44303eb8701"},(0,n.kt)("inlineCode",{parentName:"a"},"5e8a8b8"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): added display variable for footer site logos ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2f942b4a80c3ed9eb94e8b71299f4ebf33501eea"},(0,n.kt)("inlineCode",{parentName:"a"},"2f942b4"))),(0,n.kt)("li",{parentName:"ul"},"refactor(checkbox/radio): remove header from message and adjust top position of bullet ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a072b30bb01cf59339960cfd3254584cfae57c6"},(0,n.kt)("inlineCode",{parentName:"a"},"4a072b3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(color): remove secondaryColorDarken variable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/74c8ba073cc92af3987d81d484768235b95fcffb"},(0,n.kt)("inlineCode",{parentName:"a"},"74c8ba0"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): updated template to change what's new title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/58f58c887560e707ced47ccbac6897d8ebcf45d2"},(0,n.kt)("inlineCode",{parentName:"a"},"58f58c8"))),(0,n.kt)("li",{parentName:"ul"},"change(github): auto deploy only on develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bfa35a32bf0fefd4433aec4f7f8ee2cfe53eaae5"},(0,n.kt)("inlineCode",{parentName:"a"},"bfa35a3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): implementation in preparation for Volto integration #20 #97 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cddda2090d3d17c086dfd0cdb8a4dab3f886bfcd"},(0,n.kt)("inlineCode",{parentName:"a"},"cddda20"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumbs): component, make it functional and pluggable #32 #94 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f42e802bdf29d02c76131379b168c8c2119864b"},(0,n.kt)("inlineCode",{parentName:"a"},"9f42e80"))),(0,n.kt)("li",{parentName:"ul"},"change(card): added styles for volto cards integration #92 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a46ac21e6229059fb982174610a733c44000a2b6"},(0,n.kt)("inlineCode",{parentName:"a"},"a46ac21"))),(0,n.kt)("li",{parentName:"ul"},"refactor(grid): remove column count from example ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac0e9cf8e9f6ea99ddf8d5a92e49903999cde262"},(0,n.kt)("inlineCode",{parentName:"a"},"ac0e9cf"))),(0,n.kt)("li",{parentName:"ul"},"change(github): trigger autobuild when modifying templates contents ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f7d1523e92c1c4b3e6285a48d5f8c776aecfa9c"},(0,n.kt)("inlineCode",{parentName:"a"},"5f7d152"))),(0,n.kt)("li",{parentName:"ul"},"refactor(grid): remove custom grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1d978a96a464b3285961d54cb1cbc7c9eaf35faf"},(0,n.kt)("inlineCode",{parentName:"a"},"1d978a9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Form):change form field wrapper implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/73cdd6daba19aefce091552a62a528a42b323228"},(0,n.kt)("inlineCode",{parentName:"a"},"73cdd6d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(message): update colors to match design ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/633ce311dc5a6a141ee514a9108753531aa661e4"},(0,n.kt)("inlineCode",{parentName:"a"},"633ce31"))),(0,n.kt)("li",{parentName:"ul"},"refactor(checkbox/radio): update variables and remove important rules ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ad533b4e3e821c126f62b558523057720d2573c8"},(0,n.kt)("inlineCode",{parentName:"a"},"ad533b4"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables): add variables to less for new components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/47df026655748865bc7af8f44d51e5a9fcf7ee34"},(0,n.kt)("inlineCode",{parentName:"a"},"47df026"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Tab): fix vertical tab alignment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/401bdf2868e8c8305ad2c3cefa3188b730348574"},(0,n.kt)("inlineCode",{parentName:"a"},"401bdf2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(lint changes): add lint changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6f6847fc19db7922c93cb5f52e50db845d053e04"},(0,n.kt)("inlineCode",{parentName:"a"},"6f6847f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(inpageNavigation): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/62f74ea3c08069da8615516a52df8415d50048d5"},(0,n.kt)("inlineCode",{parentName:"a"},"62f74ea"))),(0,n.kt)("li",{parentName:"ul"},"refactor(message): updates on styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4cf8501de961794baf5a8ecec99e4bcddc2d71b"},(0,n.kt)("inlineCode",{parentName:"a"},"b4cf850"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): update class name ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef0969bd873e9fdd0eb32593f7c3f995270ef44c"},(0,n.kt)("inlineCode",{parentName:"a"},"ef0969b"))),(0,n.kt)("li",{parentName:"ul"},"change(github): use develop for auto pushing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a32a723f8126292f62a71cb4c4f94a2c7dec7605"},(0,n.kt)("inlineCode",{parentName:"a"},"a32a723")))),(0,n.kt)("h4",{id:"-internal-changes-23"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(design-system): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/631fa90e2ec5352c01e2ee0824de4a45cc33de34"},(0,n.kt)("inlineCode",{parentName:"a"},"631fa90"))),(0,n.kt)("li",{parentName:"ul"},"style(checkbox/radio): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a04939fdb530ed998a40aeb5b85a748d5dace0cd"},(0,n.kt)("inlineCode",{parentName:"a"},"a04939f"))),(0,n.kt)("li",{parentName:"ul"},"style(design-system): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c753f0b378384150597283c97f657eafbfff296"},(0,n.kt)("inlineCode",{parentName:"a"},"3c753f0"))),(0,n.kt)("li",{parentName:"ul"},"style(message): stylelint fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5b75057cb3a7b366a940ca9d1ba577cd09dc7225"},(0,n.kt)("inlineCode",{parentName:"a"},"5b75057")))),(0,n.kt)("h4",{id:"-documentation-changes-20"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): visuals guidelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/544a9502dc046d7e8bc635c19480a8deb2b31379"},(0,n.kt)("inlineCode",{parentName:"a"},"544a950"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): search guidelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0fb229d8b6a042bd716a093faaf8a1461b70cdb8"},(0,n.kt)("inlineCode",{parentName:"a"},"0fb229d"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): loader page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/892a25dba66f3557af22f8f0f96db695ddf1b402"},(0,n.kt)("inlineCode",{parentName:"a"},"892a25d")))),(0,n.kt)("h4",{id:"\ufe0f-others-52"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Reformat header.less ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f99dfc82c165304ca5600ce5138c1233615ab69"},(0,n.kt)("inlineCode",{parentName:"a"},"1f99dfc"))),(0,n.kt)("li",{parentName:"ul"},"Close menu when changing path ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/65daea9ee34c64bd5e51104077bc745b68169cd2"},(0,n.kt)("inlineCode",{parentName:"a"},"65daea9"))),(0,n.kt)("li",{parentName:"ul"},"refactor breadcrumbs component, make it functional and customizable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ec374e20565eb0a5aed0ff67a02cd6f77eba1f0"},(0,n.kt)("inlineCode",{parentName:"a"},"4ec374e"))),(0,n.kt)("li",{parentName:"ul"},"rollback(cards): move custom display to volto-block-image-cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/79d4c8914b7184d559465135f046b60ee96301e1"},(0,n.kt)("inlineCode",{parentName:"a"},"79d4c89"))),(0,n.kt)("li",{parentName:"ul"},"Open overlay menu on global menu click ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cc749bc4266aae793b85d72c43c8a08b0c2fec48"},(0,n.kt)("inlineCode",{parentName:"a"},"cc749bc"))),(0,n.kt)("li",{parentName:"ul"},"bring back segment wrapper and make it attached ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f413ffaf641c161e8ff0f8010759cffd7e30238"},(0,n.kt)("inlineCode",{parentName:"a"},"9f413ff"))),(0,n.kt)("li",{parentName:"ul"},"Use renderMenuItem also in mobile menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/02de0bb4750062a310109256b6c6d29120287fd4"},(0,n.kt)("inlineCode",{parentName:"a"},"02de0bb"))),(0,n.kt)("li",{parentName:"ul"},"Fix clicking outside closes menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af526646559d1a00ade04dc24def26e5665a5a8c"},(0,n.kt)("inlineCode",{parentName:"a"},"af52664"))),(0,n.kt)("li",{parentName:"ul"},"Cleanup args in header story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2bf6a304b1149ec1204f08f318248ed52ad8fa3d"},(0,n.kt)("inlineCode",{parentName:"a"},"2bf6a30"))),(0,n.kt)("li",{parentName:"ul"},"fix warning related to proptype ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/824b9beff77aae139882cd50a1d670a02ec6f723"},(0,n.kt)("inlineCode",{parentName:"a"},"824b9be"))),(0,n.kt)("li",{parentName:"ul"},"fix profile section css overflow ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8fd265413149f1b5e033dffa0fbcb5ef5ecad15f"},(0,n.kt)("inlineCode",{parentName:"a"},"8fd2654"))),(0,n.kt)("li",{parentName:"ul"},"don't use volto-slate ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70ca3d4ec4e8e4dc633e957b842d94b708af8b82"},(0,n.kt)("inlineCode",{parentName:"a"},"70ca3d4"))),(0,n.kt)("li",{parentName:"ul"},"remove segment custom width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a60d84d5fe76578b7760aa1dad6eef9a20916a7"},(0,n.kt)("inlineCode",{parentName:"a"},"4a60d84"))),(0,n.kt)("li",{parentName:"ul"},"update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/96f4af0fb22605fd294472eb18f7f62e4bd7b0fb"},(0,n.kt)("inlineCode",{parentName:"a"},"96f4af0"))),(0,n.kt)("li",{parentName:"ul"},"Fix TopDropdownMenu component rendering in mobile ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4626def4e1f97f323f3fef130f5d531925ba15b"},(0,n.kt)("inlineCode",{parentName:"a"},"a4626de"))),(0,n.kt)("li",{parentName:"ul"},"Add usePrevious hook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/797faba3cad73288755f6c6e685448d780905189"},(0,n.kt)("inlineCode",{parentName:"a"},"797faba"))),(0,n.kt)("li",{parentName:"ul"},"make breadcrumbs default size as tiny ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c8e1c64f27596421e78927f11616093667b04c6"},(0,n.kt)("inlineCode",{parentName:"a"},"3c8e1c6"))),(0,n.kt)("li",{parentName:"ul"},"Update package.json ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fa020cb5dd85e28d0713b3e8a11aff5b2c1060af"},(0,n.kt)("inlineCode",{parentName:"a"},"fa020cb"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about hardcoded values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0c6912c82625c2e389fd75f0d0a051348781d407"},(0,n.kt)("inlineCode",{parentName:"a"},"0c6912c"))),(0,n.kt)("li",{parentName:"ul"},"set profile section overflow to auto ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8db62bbcd0258fee16411e94888c732a29b1949d"},(0,n.kt)("inlineCode",{parentName:"a"},"8db62bb"))),(0,n.kt)("li",{parentName:"ul"},"added comment about need for removal of this fix later ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6fdbd713dbfe795e7e81cfa37398774fad71c054"},(0,n.kt)("inlineCode",{parentName:"a"},"6fdbd71"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using eea-website-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6051724437a38675e659c797bb5586ef81286ec0"},(0,n.kt)("inlineCode",{parentName:"a"},"6051724"))),(0,n.kt)("li",{parentName:"ul"},"removed override already present in card.less ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93c4e5aac9cc85ff2cc6c04180f6655d5f5616dc"},(0,n.kt)("inlineCode",{parentName:"a"},"93c4e5a"))),(0,n.kt)("li",{parentName:"ul"},"Remove console.log calls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8a3a4cb32bfed2daa86339b15c0301eb01e19f23"},(0,n.kt)("inlineCode",{parentName:"a"},"8a3a4cb"))),(0,n.kt)("li",{parentName:"ul"},"update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/81bb7d4a02576887b80e978c32724580b772d57a"},(0,n.kt)("inlineCode",{parentName:"a"},"81bb7d4"))),(0,n.kt)("li",{parentName:"ul"},"Update comment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ffa24001728f824b8e7154c93c5aad8196bd92ea"},(0,n.kt)("inlineCode",{parentName:"a"},"ffa2400"))),(0,n.kt)("li",{parentName:"ul"},"merge develop into this branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ad5b388957b7d67f1b7ae06f2b80b1c30868d72a"},(0,n.kt)("inlineCode",{parentName:"a"},"ad5b388"))),(0,n.kt)("li",{parentName:"ul"},"WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a8d97f10b9768894a135549e9dc8f938b663f905"},(0,n.kt)("inlineCode",{parentName:"a"},"a8d97f1"))),(0,n.kt)("li",{parentName:"ul"},"Use header.less from develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/99edbc6ccd6023162dcce75b36d6b9451b06f6dc"},(0,n.kt)("inlineCode",{parentName:"a"},"99edbc6"))),(0,n.kt)("li",{parentName:"ul"},"WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/57b5783e2b03859f89c5926951ea232547b455cc"},(0,n.kt)("inlineCode",{parentName:"a"},"57b5783"))),(0,n.kt)("li",{parentName:"ul"},"WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/785da36b725bf14bff28a67da799c51bc5b4f20f"},(0,n.kt)("inlineCode",{parentName:"a"},"785da36"))),(0,n.kt)("li",{parentName:"ul"},"WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5d1eba9a1df2d2bb078f119ee99b0627ac55ae1d"},(0,n.kt)("inlineCode",{parentName:"a"},"5d1eba9"))),(0,n.kt)("li",{parentName:"ul"},"adds Tags ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e37fc1957ed8357bc2190239da4440bb98b0dabe"},(0,n.kt)("inlineCode",{parentName:"a"},"e37fc19"))),(0,n.kt)("li",{parentName:"ul"},"Add useClickOutside hook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70364c88631cbfa6e6854a99dde42ea2ad73221f"},(0,n.kt)("inlineCode",{parentName:"a"},"70364c8"))),(0,n.kt)("li",{parentName:"ul"},"Implement outside click handling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fa6f81823c47ca32209f3f1c8b1810b5447f97ec"},(0,n.kt)("inlineCode",{parentName:"a"},"fa6f818"))),(0,n.kt)("li",{parentName:"ul"},"Simplify overlay menu template ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/28b04784cf32ed4393e452c56680bffda411d526"},(0,n.kt)("inlineCode",{parentName:"a"},"28b0478"))),(0,n.kt)("li",{parentName:"ul"},"fixes less variables, fixes tags positioning ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cc19b9b537b5f21ceaba986bbd0182bb3b867ac7"},(0,n.kt)("inlineCode",{parentName:"a"},"cc19b9b"))),(0,n.kt)("li",{parentName:"ul"},"WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/15bc0f4287b705839f6fd5ac8835f03e2e99f1f1"},(0,n.kt)("inlineCode",{parentName:"a"},"15bc0f4"))),(0,n.kt)("li",{parentName:"ul"},"no ",(0,n.kt)("inlineCode",{parentName:"li"},"display: flex")," for blockquote added from slate ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/312a893e924dea4e7aed182be4a615bc3c4f04f8"},(0,n.kt)("inlineCode",{parentName:"a"},"312a893"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about code length ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/318cd48f8116a49897590137eebe2ce35285b813"},(0,n.kt)("inlineCode",{parentName:"a"},"318cd48"))),(0,n.kt)("li",{parentName:"ul"},"Add indenting rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d58968522ef82a7d5381fc4958ae2049562b7103"},(0,n.kt)("inlineCode",{parentName:"a"},"d589685"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about import sorting ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cd337c16650ae169e4b634b034f40f3cd887ceb8"},(0,n.kt)("inlineCode",{parentName:"a"},"cd337c1"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about naming vars ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b112de0dcaa4209cfe143dcd26ba929b4cbe0a42"},(0,n.kt)("inlineCode",{parentName:"a"},"b112de0"))),(0,n.kt)("li",{parentName:"ul"},"Bring back classNames from header subpopup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e477a5150bee569fadca300a3ccc3586e7d7ef4a"},(0,n.kt)("inlineCode",{parentName:"a"},"e477a51"))),(0,n.kt)("li",{parentName:"ul"},"removes tags hashtag from jsx ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6b8b3e94a6a1060304c1e5b228806985343ef6a0"},(0,n.kt)("inlineCode",{parentName:"a"},"6b8b3e9"))),(0,n.kt)("li",{parentName:"ul"},"WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d481324ff7a63e3cb0847b89fa188cc8781de4dc"},(0,n.kt)("inlineCode",{parentName:"a"},"d481324"))),(0,n.kt)("li",{parentName:"ul"},"fixes undefined on empty classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4b29080d646c44b02a28c4619f5285227fa2bf78"},(0,n.kt)("inlineCode",{parentName:"a"},"4b29080"))),(0,n.kt)("li",{parentName:"ul"},"stylelint changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a5ab83018bccd8fbfcf2160fe9c6c4fc24abe83a"},(0,n.kt)("inlineCode",{parentName:"a"},"a5ab830"))),(0,n.kt)("li",{parentName:"ul"},"Footer link color @white ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/578e4f7bb174cd46d50a8b5c5a97f8bbff510f11"},(0,n.kt)("inlineCode",{parentName:"a"},"578e4f7"))),(0,n.kt)("li",{parentName:"ul"},"add margin to ","<","br",">"," element to simulate gap as in design ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9ab9a97dc231fd3b704fedd99c742f425be4578c"},(0,n.kt)("inlineCode",{parentName:"a"},"9ab9a97"))),(0,n.kt)("li",{parentName:"ul"},"impors colors from site variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6117267716b76b17379ae989911c5d5f00e63259"},(0,n.kt)("inlineCode",{parentName:"a"},"6117267"))),(0,n.kt)("li",{parentName:"ul"},"small fix for the link in footer action ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/72df049aa644ac2a675057bf3a96440144acabfb"},(0,n.kt)("inlineCode",{parentName:"a"},"72df049"))),(0,n.kt)("li",{parentName:"ul"},"remove uneeded style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/66e9064de395b37caef1436aaee3a164b53ae406"},(0,n.kt)("inlineCode",{parentName:"a"},"66e9064"))),(0,n.kt)("li",{parentName:"ul"},"use proper naming conventions for var naming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/596e3143e28f23e60f20becd97276831c89d9684"},(0,n.kt)("inlineCode",{parentName:"a"},"596e314"))),(0,n.kt)("li",{parentName:"ul"},"Add file mode rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/805baa7db5ae1863bc85687f8f872c74a26647c8"},(0,n.kt)("inlineCode",{parentName:"a"},"805baa7"))),(0,n.kt)("li",{parentName:"ul"},"use less variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b43ac8d3bfc0231313f3d8bc719e373a127c6329"},(0,n.kt)("inlineCode",{parentName:"a"},"b43ac8d"))),(0,n.kt)("li",{parentName:"ul"},"Add DRY rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2f1584e769d0462c0385847630e3bbfe48a52339"},(0,n.kt)("inlineCode",{parentName:"a"},"2f1584e"))),(0,n.kt)("li",{parentName:"ul"},"Add functional components rule; add classnames rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1b2915ed3a4a3446e11058ac7de8937cf5755630"},(0,n.kt)("inlineCode",{parentName:"a"},"1b2915e"))),(0,n.kt)("li",{parentName:"ul"},"fix z-index of header ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d2a5d6bb822a298367ce58d867939318171a300"},(0,n.kt)("inlineCode",{parentName:"a"},"7d2a5d6"))),(0,n.kt)("li",{parentName:"ul"},"Remove comment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d120b16491406ea7cc26428dcf13ec2565868d0"},(0,n.kt)("inlineCode",{parentName:"a"},"7d120b1")))),(0,n.kt)("h3",{id:"014---2022-03-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.4-beta.0...0.1.4"},"0.1.4")," - 2022-03-01"),(0,n.kt)("h4",{id:"-enhancements-62"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(pagination): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/06cc3b6db6f56040264e4c70fe2e39ace14499d7"},(0,n.kt)("inlineCode",{parentName:"a"},"06cc3b6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Form):create form field wrapper file ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/95b9934a75ffd6b254b7bb9c119b8087c7565c13"},(0,n.kt)("inlineCode",{parentName:"a"},"95b9934"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): update margins for menu items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/230e476d133b3f7853a73f3f2ee372c6306bd43f"},(0,n.kt)("inlineCode",{parentName:"a"},"230e476"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): update gradient ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/47f2ea40c4f214a41af58ceb90839a05932b0b55"},(0,n.kt)("inlineCode",{parentName:"a"},"47f2ea4")))),(0,n.kt)("h4",{id:"-documentation-changes-21"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): divider page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c6bb2389f819a9ebd8e34db0e825f3e5f62130d4"},(0,n.kt)("inlineCode",{parentName:"a"},"c6bb238")))),(0,n.kt)("h4",{id:"\ufe0f-others-53"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"add footer links,align footer image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b039564e8cd3a0319ebe07f434f20bb7d7827fe1"},(0,n.kt)("inlineCode",{parentName:"a"},"b039564"))),(0,n.kt)("li",{parentName:"ul"},"cosmetics: remove formatting ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e02b08dc2adc8b89a5b9117b5a572c7080248c29"},(0,n.kt)("inlineCode",{parentName:"a"},"e02b08d"))),(0,n.kt)("li",{parentName:"ul"},"refactor Footer component to consume children and prop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/faafcffe07383ba55f5746cb971cdf706d988f78"},(0,n.kt)("inlineCode",{parentName:"a"},"faafcff"))),(0,n.kt)("li",{parentName:"ul"},"update footer stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4e5742872f21d9737f3de443fa0e9d1b6ba02637"},(0,n.kt)("inlineCode",{parentName:"a"},"4e57428"))),(0,n.kt)("li",{parentName:"ul"},"update stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/81973cac96ee48e9b294c45e32c0ec3d2956fe67"},(0,n.kt)("inlineCode",{parentName:"a"},"81973ca"))),(0,n.kt)("li",{parentName:"ul"},"Small improvements to footer ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6d1fdc000ab83932df62244142068f097aeeb85"},(0,n.kt)("inlineCode",{parentName:"a"},"f6d1fdc"))),(0,n.kt)("li",{parentName:"ul"},"fix header urls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e5908916823a1f5771ddbeb51b3e8af026425c49"},(0,n.kt)("inlineCode",{parentName:"a"},"e590891"))),(0,n.kt)("li",{parentName:"ul"},"Rename files in footer story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3de0c19d1ddeb69d8567026e1532fceb9221049a"},(0,n.kt)("inlineCode",{parentName:"a"},"3de0c19"))),(0,n.kt)("li",{parentName:"ul"},"add style for accordion title input on edit mode ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/598aa129f2dff0a2cb2ec57f551fa72481aa911e"},(0,n.kt)("inlineCode",{parentName:"a"},"598aa12"))),(0,n.kt)("li",{parentName:"ul"},"remove comments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2db0d2c2bbebe8bab8cf9801c5ea2650dde96b87"},(0,n.kt)("inlineCode",{parentName:"a"},"2db0d2c"))),(0,n.kt)("li",{parentName:"ul"},"Apply slate customization if volto-slate addon is used ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c066701dc359c6daf01703dac8fa61c2314c11cf"},(0,n.kt)("inlineCode",{parentName:"a"},"c066701"))),(0,n.kt)("li",{parentName:"ul"},"use relative links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af91a203bb30f5c9aa1335bfa8cdaa7857d577e2"},(0,n.kt)("inlineCode",{parentName:"a"},"af91a20"))),(0,n.kt)("li",{parentName:"ul"},"make footer anchor links white ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0c671e1bf52268505a5dc58196c285c04da33b10"},(0,n.kt)("inlineCode",{parentName:"a"},"0c671e1"))),(0,n.kt)("li",{parentName:"ul"},"use custom var for line-height ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f7f6c7ea605014741b9426b19008a4e6eda6704c"},(0,n.kt)("inlineCode",{parentName:"a"},"f7f6c7e"))),(0,n.kt)("li",{parentName:"ul"},"Update semantic.less ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4a90aed030a8927fa2ea949e4f44d23638c751a"},(0,n.kt)("inlineCode",{parentName:"a"},"a4a90ae"))),(0,n.kt)("li",{parentName:"ul"},"Bump release version ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c41a42bc2fd8174a2554e6dce1a1090eff4f3bd1"},(0,n.kt)("inlineCode",{parentName:"a"},"c41a42b"))),(0,n.kt)("li",{parentName:"ul"},"Update style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/89686990b2481f339c9bec7e7f9d35d9caab94c5"},(0,n.kt)("inlineCode",{parentName:"a"},"8968699"))),(0,n.kt)("li",{parentName:"ul"},"remove styling on header popups ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/86c499be61c0d2df46cb3469a47f0afae2e46c49"},(0,n.kt)("inlineCode",{parentName:"a"},"86c499b"))),(0,n.kt)("li",{parentName:"ul"},"remove search icon styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aca80fdc78859461cfee1d902b1d122d4a189b31"},(0,n.kt)("inlineCode",{parentName:"a"},"aca80fd"))),(0,n.kt)("li",{parentName:"ul"},"adjust popup height for computer screens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/47c5edb06c8d8cdb9af8ac64f68be0e0360eccaf"},(0,n.kt)("inlineCode",{parentName:"a"},"47c5edb"))),(0,n.kt)("li",{parentName:"ul"},"fix login container width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9a887e3b15aa63aab9be8738f599febcfe245b81"},(0,n.kt)("inlineCode",{parentName:"a"},"9a887e3"))),(0,n.kt)("li",{parentName:"ul"},"Typo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/90da95c67e965124da7f431e464bcbc15fa67894"},(0,n.kt)("inlineCode",{parentName:"a"},"90da95c"))),(0,n.kt)("li",{parentName:"ul"},"fix search-input icon line-height ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b087ff86d7753f3ee0bf90a9b07c4ee7ef5e336c"},(0,n.kt)("inlineCode",{parentName:"a"},"b087ff8"))),(0,n.kt)("li",{parentName:"ul"},"lint fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e9790ca72b8d3caf114c1b80b9c5837fb6a1a56e"},(0,n.kt)("inlineCode",{parentName:"a"},"e9790ca"))),(0,n.kt)("li",{parentName:"ul"},"Rename, reorganize logos ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1ef8d22df5a757258d8610818f44362046bc828d"},(0,n.kt)("inlineCode",{parentName:"a"},"1ef8d22")))),(0,n.kt)("h3",{id:"014-beta0---2022-02-25"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.3...0.1.4-beta.0"},"0.1.4-beta.0")," - 2022-02-25"),(0,n.kt)("h4",{id:"-new-features-32"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(github): added feature and bug reports templates with our guidelines as checkboxes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/15490937382ced93f5ac69cc1939256c0a468823"},(0,n.kt)("inlineCode",{parentName:"a"},"1549093")))),(0,n.kt)("h3",{id:"013---2022-02-25"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.2...0.1.3"},"0.1.3")," - 2022-02-25"),(0,n.kt)("h4",{id:"-bug-fixes-46"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(all): change eol to unix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/62e72244f78d43ce1c7b1a5ceb8405e4a617c88a"},(0,n.kt)("inlineCode",{parentName:"a"},"62e7224"))),(0,n.kt)("li",{parentName:"ul"},"fix(banner): separate url value ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f9c9140a6f8640bbb83a08f9c5c268f31ff7b6a8"},(0,n.kt)("inlineCode",{parentName:"a"},"f9c9140"))),(0,n.kt)("li",{parentName:"ul"},"fix(all): merge eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c68f6e0e7ab11d7451c8aabf194f62da0b6adb28"},(0,n.kt)("inlineCode",{parentName:"a"},"c68f6e0"))),(0,n.kt)("li",{parentName:"ul"},"fix(blockquote): align self property now uses a valid entry ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ec761634765105694386ce48153fb95c09339273"},(0,n.kt)("inlineCode",{parentName:"a"},"ec76163")))),(0,n.kt)("h4",{id:"-enhancements-63"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): new implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff013afc68fed97d085e3930f6d728b266786dc1"},(0,n.kt)("inlineCode",{parentName:"a"},"ff013af"))),(0,n.kt)("li",{parentName:"ul"},"change(volto): removed customizations made for ims theme from volto-eea-design-system ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bc8d514d82da0811c10eefe6dde16e0846497a4a"},(0,n.kt)("inlineCode",{parentName:"a"},"bc8d514"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Timeline): divide to sub components and change files to .jsx ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e2bd3b6c8dd064e7269819ce465b961a0cee849"},(0,n.kt)("inlineCode",{parentName:"a"},"3e2bd3b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4e5d08d565ef08e4e390ede4a611145a16ca2fa9"},(0,n.kt)("inlineCode",{parentName:"a"},"4e5d08d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): link header's menu to mega menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/08406d84e5bc1c7eb1358baff19ff6731f124b32"},(0,n.kt)("inlineCode",{parentName:"a"},"08406d8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Menu): change mega menu implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/455a51b9a9fbb00c6a89c42de226787c143176f7"},(0,n.kt)("inlineCode",{parentName:"a"},"455a51b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Grid):minor changes and delete extra files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/272585dfed0c0e82b26c1e6843484ad0981ba75f"},(0,n.kt)("inlineCode",{parentName:"a"},"272585d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(timeline): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b98641af00f23302b728094ed00a4563b6813387"},(0,n.kt)("inlineCode",{parentName:"a"},"b98641a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): fix link hover issue for tablet ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/564e9721aea7d4ed998d88764e37454bc3154d3d"},(0,n.kt)("inlineCode",{parentName:"a"},"564e972"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add remix icons and minor updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c9c97dd719187e996efabaee28ccbf23d43f03af"},(0,n.kt)("inlineCode",{parentName:"a"},"c9c97dd"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): change header buttons implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6608b8cfffb75dda90b01728dc4fe657cbd84069"},(0,n.kt)("inlineCode",{parentName:"a"},"6608b8c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): add sub components and change existing Main ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/74c35a3fe462bdad7b9b2a5a6e969043439fdf5b"},(0,n.kt)("inlineCode",{parentName:"a"},"74c35a3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(table): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab7a0e8d9e83edb3035d57285a5f85557bcd7576"},(0,n.kt)("inlineCode",{parentName:"a"},"ab7a0e8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Footer): delete Actions & ThemeSites files and clear imports ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7a78456f55742a1b356070303218342876641e52"},(0,n.kt)("inlineCode",{parentName:"a"},"7a78456"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/326655a48aeac65b32beadb48707d0193c952702"},(0,n.kt)("inlineCode",{parentName:"a"},"326655a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Breadcrumb): add react router link and minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/073a3a36215427dce274a533b10d2d0bb3526de9"},(0,n.kt)("inlineCode",{parentName:"a"},"073a3a3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): show menu on search & minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4d49a8ae6958b84bd2dbaf7bd5f62310037eb288"},(0,n.kt)("inlineCode",{parentName:"a"},"4d49a8a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(List): add extra default list story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/95665cdca945cba104a25d5efcbc56436dffbd7f"},(0,n.kt)("inlineCode",{parentName:"a"},"95665cd"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus) change generation of what's new section and bump package version ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6c35cff4d65bb44755376c85ff4de8c6b39af00b"},(0,n.kt)("inlineCode",{parentName:"a"},"6c35cff"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Footer): minor code changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/67cb4bc5f9d341da78e7816ed89f219d8ac2836e"},(0,n.kt)("inlineCode",{parentName:"a"},"67cb4bc"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Menu): add class to mega menu items for styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19baa342c29322d11371303dc0092f472da1eeee"},(0,n.kt)("inlineCode",{parentName:"a"},"19baa34"))),(0,n.kt)("li",{parentName:"ul"},"change(accordion): modified default accordion stories titles with real accordion names ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cf11cc81d7096d338c565180597822e51fcaa8b7"},(0,n.kt)("inlineCode",{parentName:"a"},"cf11cc8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): accessibility image alt fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7347a688c2f37f08390b189f8bfa990c26c7f75"},(0,n.kt)("inlineCode",{parentName:"a"},"a7347a6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): adjust to volto in progress ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/760becabf40dbbaed36dac6c37275c7e31aa2509"},(0,n.kt)("inlineCode",{parentName:"a"},"760beca"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): header items as storybook arguments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/388c752aa0694e78f5306c2b2efa4a34df4b9ca6"},(0,n.kt)("inlineCode",{parentName:"a"},"388c752"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): update less variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/35b0a98eced49212bb08c3c7d2ac6987a16ec6be"},(0,n.kt)("inlineCode",{parentName:"a"},"35b0a98"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): actions as buttons; don't hardcode url for banner image; subcomponentize Banner, add Banner.Action; add developer guidelines on inline styles and line endings; ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6dd5a41248e8bf4095744bd89217707f3ad820a1"},(0,n.kt)("inlineCode",{parentName:"a"},"6dd5a41"))),(0,n.kt)("li",{parentName:"ul"},"refactor(blockquote): fix responsive margins and sizes rems ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/209f94f5535d83678af5fd650dcc3892a94c8a34"},(0,n.kt)("inlineCode",{parentName:"a"},"209f94f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Input): label position and style change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/970074aacae0c1ffabe88be58779b332993a37fd"},(0,n.kt)("inlineCode",{parentName:"a"},"970074a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update dropdown menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32eb0fa5dbb431c5d8e74e4c3e28b0555dab8aea"},(0,n.kt)("inlineCode",{parentName:"a"},"32eb0fa"))),(0,n.kt)("li",{parentName:"ul"},"refactor(timeline): theming updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c80c9aa5eb08c3b58199c6f6faca06445640f9f8"},(0,n.kt)("inlineCode",{parentName:"a"},"c80c9aa"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Blockquote):remove image stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a6357caa641e18e7a19b834cd907ba8c7117367f"},(0,n.kt)("inlineCode",{parentName:"a"},"a6357ca"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus) proofread blockquote usage section and removed unused api section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0bb29fdb73bce90f842748abd978a388fff93932"},(0,n.kt)("inlineCode",{parentName:"a"},"0bb29fd"))),(0,n.kt)("li",{parentName:"ul"},"change(infrastructure) cherry-pick fix 9639243 skipping jenkins on auto commits ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fc744cda5a4e6d9da0ab6e7f92868d53f28f53c1"},(0,n.kt)("inlineCode",{parentName:"a"},"fc744cd"))),(0,n.kt)("li",{parentName:"ul"},"change(ci) build storybook and docusaurus only when pushing to develop-itml branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4de0cbf9bfc4ecb46605dca1048a38db844880e7"},(0,n.kt)("inlineCode",{parentName:"a"},"4de0cbf"))),(0,n.kt)("li",{parentName:"ul"},"change(infrastructure): modify whats new doc when committing the auto deployment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/39df33ed946a8167e4954cffb676144700e0ec38"},(0,n.kt)("inlineCode",{parentName:"a"},"39df33e"))),(0,n.kt)("li",{parentName:"ul"},"change(blockquote): introduce float argument for blockquote with image storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8fc72906c264b5e96702f8518e81d5724b494a5c"},(0,n.kt)("inlineCode",{parentName:"a"},"8fc7290"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pullquote): add word break ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2245e53dde6dd8abf437afa94e92bbedc60c9f8c"},(0,n.kt)("inlineCode",{parentName:"a"},"2245e53"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner): minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b9073b60e337eab40a992283b5b9e75d5cffe895"},(0,n.kt)("inlineCode",{parentName:"a"},"b9073b6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(table): fix th font weight ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a96a0a7a4cb450b5f947bc397495a2a41c605c87"},(0,n.kt)("inlineCode",{parentName:"a"},"a96a0a7"))),(0,n.kt)("li",{parentName:"ul"},"refactor(comment): remove avatar border radius ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d42c37bb8f71e20e1d0ec438c14e3c7ac00cf0ae"},(0,n.kt)("inlineCode",{parentName:"a"},"d42c37b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): adjust title size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7a24d9c07a5994fa46c39fdf1e827e0d1ae5e504"},(0,n.kt)("inlineCode",{parentName:"a"},"7a24d9c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Image): change image path ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a580da68a45bbe68d314f60e9495fc321489caf5"},(0,n.kt)("inlineCode",{parentName:"a"},"a580da6"))),(0,n.kt)("li",{parentName:"ul"},"change(infrastructure): specify that docs folder contains changes for deployment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a1ca9153b70e3525cd73423d059a8607f63fc2b9"},(0,n.kt)("inlineCode",{parentName:"a"},"a1ca915")))),(0,n.kt)("h4",{id:"-internal-changes-24"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(input) prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e83fa0c3e95e33d89ab668de38e6b0b12d9fb0d9"},(0,n.kt)("inlineCode",{parentName:"a"},"e83fa0c"))),(0,n.kt)("li",{parentName:"ul"},"chore(storybook): prettier fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/354c7b33c92a9f48ca9cbb0b96b6cec213e465c8"},(0,n.kt)("inlineCode",{parentName:"a"},"354c7b3"))),(0,n.kt)("li",{parentName:"ul"},"chore(design system): technical commit for edw integration tests ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f76035122d647e14b5151af3b39f0ab3e199af2"},(0,n.kt)("inlineCode",{parentName:"a"},"9f76035"))),(0,n.kt)("li",{parentName:"ul"},"style(storybook): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c9ad345268335c42e41d13b35c0da93e9770847"},(0,n.kt)("inlineCode",{parentName:"a"},"3c9ad34"))),(0,n.kt)("li",{parentName:"ul"},"chore(infrastructure) updated branch with changes from bitbucket ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/77866f8c7ac203db0645a74b7a7456b5c4de5dd7"},(0,n.kt)("inlineCode",{parentName:"a"},"77866f8")))),(0,n.kt)("h4",{id:"\ufe0f-others-54"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"doc(colours):fix color to better show primary ones ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/705b7899f9d687747d2deb27ac4d8b4429878de0"},(0,n.kt)("inlineCode",{parentName:"a"},"705b789"))),(0,n.kt)("li",{parentName:"ul"},"doc(colours):change font size to fit text in one line ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ad751660ec832e67a0c858e75685259b9ef8d82"},(0,n.kt)("inlineCode",{parentName:"a"},"4ad7516"))),(0,n.kt)("li",{parentName:"ul"},"bump package release to 1.3.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f3cfe4f5232ff96a9845d12da72008cf838c1010"},(0,n.kt)("inlineCode",{parentName:"a"},"f3cfe4f"))),(0,n.kt)("li",{parentName:"ul"},"Refactor banner into content subcomponent ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f8df238b4db90fdb841cdd5436a644e582f73b82"},(0,n.kt)("inlineCode",{parentName:"a"},"f8df238"))),(0,n.kt)("li",{parentName:"ul"},"lint fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cda322d8c013ef303b93b4b8d29594aa3bbd0bc1"},(0,n.kt)("inlineCode",{parentName:"a"},"cda322d"))),(0,n.kt)("li",{parentName:"ul"},"rollback don'ts grammar change and disable unresolved import for Banner.stories.jsx ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a1bd7154fa64451b6a521743955a57405dc7fb67"},(0,n.kt)("inlineCode",{parentName:"a"},"a1bd715"))),(0,n.kt)("li",{parentName:"ul"},"Add space line in component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4d1a5fbe9a9ea53701702d7ce33622795f5ab00"},(0,n.kt)("inlineCode",{parentName:"a"},"d4d1a5f")))),(0,n.kt)("h3",{id:"012---2022-02-17"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.2-beta.2...0.1.2"},"0.1.2")," - 2022-02-17"),(0,n.kt)("h4",{id:"-new-features-33"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(blockquote) added blockquote styles as a custom module ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d30662e23176cf7a5ab64aa322acd5a09a0c4130"},(0,n.kt)("inlineCode",{parentName:"a"},"d30662e")))),(0,n.kt)("h4",{id:"-bug-fixes-47"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(inpageNavigation): hide at the top of the page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/97ef50069cd9b29345fb68ce8b557a47577669a4"},(0,n.kt)("inlineCode",{parentName:"a"},"97ef500"))),(0,n.kt)("li",{parentName:"ul"},"fix(footer):missing image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac91a29a134c97af842c6be4987c60c44c4c96d8"},(0,n.kt)("inlineCode",{parentName:"a"},"ac91a29"))),(0,n.kt)("li",{parentName:"ul"},"fix(comment):fix broken image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8125dc179923f652ecd25003df8ecb4fb0aeffb9"},(0,n.kt)("inlineCode",{parentName:"a"},"8125dc1"))),(0,n.kt)("li",{parentName:"ul"},"fix(message): fix font loading ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fdc498e178a04315c88e005fbc1371ba954ff402"},(0,n.kt)("inlineCode",{parentName:"a"},"fdc498e"))),(0,n.kt)("li",{parentName:"ul"},"fix(logo): logo change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f8c8af4453774386d5d0432a078b049416d034b"},(0,n.kt)("inlineCode",{parentName:"a"},"5f8c8af")))),(0,n.kt)("h4",{id:"-enhancements-64"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): multiple components fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a3ff518323a3eab18edc5057c6f1233e5422a22"},(0,n.kt)("inlineCode",{parentName:"a"},"4a3ff51"))),(0,n.kt)("li",{parentName:"ul"},"change(infrastructure) re-enable integration tests for auto release stack ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce8daf8abc6eb9a6b7fd8579904a3e5642896e3a"},(0,n.kt)("inlineCode",{parentName:"a"},"ce8daf8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): global site files styling update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f3770f1756bca3898e2a67fa532a9d97b0fd1ef2"},(0,n.kt)("inlineCode",{parentName:"a"},"f3770f1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): multiple components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9277aaccb09aa03575b95851d55fc69b1f530e23"},(0,n.kt)("inlineCode",{parentName:"a"},"9277aac"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer) adjust to volto theming update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a59f1c354ceea661c60faabfdb6226c9f4ba1209"},(0,n.kt)("inlineCode",{parentName:"a"},"a59f1c3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): minor styling update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dd6b55c6c5331383a42f6865bd9bd0641feb9a3b"},(0,n.kt)("inlineCode",{parentName:"a"},"dd6b55c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): change header mega menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7559b57a08c2f0e9f3eb95167479ca041b998bc5"},(0,n.kt)("inlineCode",{parentName:"a"},"7559b57"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/451b9493b100dae80bed4b6629da725195dddff1"},(0,n.kt)("inlineCode",{parentName:"a"},"451b949"))),(0,n.kt)("li",{parentName:"ul"},"refactor(accordion): minor styling update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aeaf25f585c1379a2bd40de1c1bf03fee00ef76e"},(0,n.kt)("inlineCode",{parentName:"a"},"aeaf25f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bdff1768096443f2f453d76bf9958adabd309cb7"},(0,n.kt)("inlineCode",{parentName:"a"},"bdff176"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer):mobile responsiveness ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/14822bec78feebc2b06fc26d6992a481be2e3609"},(0,n.kt)("inlineCode",{parentName:"a"},"14822be"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): main and custom less files update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1607760bb1582c63ab1a6b978ac13bb0ca51b0c2"},(0,n.kt)("inlineCode",{parentName:"a"},"1607760"))),(0,n.kt)("li",{parentName:"ul"},"refactor(timeline): update after removing timeline addon ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f54d3806eb0a60379b46b03a04a6602ed465cd15"},(0,n.kt)("inlineCode",{parentName:"a"},"f54d380"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Footer): replace with subcomponents ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/378c652265213bafac9de1d946cb328fa2fe90cb"},(0,n.kt)("inlineCode",{parentName:"a"},"378c652"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): header change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/029e85039bb3f35a6ba4ff2870d98e1faa23661b"},(0,n.kt)("inlineCode",{parentName:"a"},"029e850"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): change header bar ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2b766fd62c86d22f01278c54d3a1dbfb696b095b"},(0,n.kt)("inlineCode",{parentName:"a"},"2b766fd"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus) use itml branch for docusaurus deployment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e286c50056aa6d0d5735cb330789b4e48a1f927"},(0,n.kt)("inlineCode",{parentName:"a"},"6e286c5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(accordion): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/971fcb824f6aa55ac28b4b275927b202d2c08ca6"},(0,n.kt)("inlineCode",{parentName:"a"},"971fcb8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): add sub components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7f955dbafa94c13e71ff587af70aa84d18da8da0"},(0,n.kt)("inlineCode",{parentName:"a"},"7f955db"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus) tweak auto deployment to always commit changes from docs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a2940daef1cf281bac87dec3cec68337053cc52d"},(0,n.kt)("inlineCode",{parentName:"a"},"a2940da"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): less and variables files created ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5b1a8aaf7f678dd60fb88149284058fcab617fd"},(0,n.kt)("inlineCode",{parentName:"a"},"d5b1a8a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(label): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c945e1600b4beb3667b389542adade317d285c6"},(0,n.kt)("inlineCode",{parentName:"a"},"3c945e1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(message): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e950fc56461540be24d9e5b2ff3c0bf8ad53738"},(0,n.kt)("inlineCode",{parentName:"a"},"3e950fc"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Footer): add sub components and props ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c3d14871887a83fb91792fbc8977c0439bcb16f2"},(0,n.kt)("inlineCode",{parentName:"a"},"c3d1487"))),(0,n.kt)("li",{parentName:"ul"},"refactor(modal): modal and confirm adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/83b60e94bdd3203a92a1b9038f9cc45011ba72a5"},(0,n.kt)("inlineCode",{parentName:"a"},"83b60e9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(comment): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/84348c36b5b750c324c89b5e3c462319bb9ebf46"},(0,n.kt)("inlineCode",{parentName:"a"},"84348c3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook):adjust headings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32f64f9b71d1cb8c96c9c37ba1850a2278f95287"},(0,n.kt)("inlineCode",{parentName:"a"},"32f64f9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): add comments to header menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c2c83b202e5117d8e0013101d8e922e9d93d21de"},(0,n.kt)("inlineCode",{parentName:"a"},"c2c83b2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Accordion): clear up accordion stories code ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4e59b8fa961b878591e9806e1ebbfdb841523077"},(0,n.kt)("inlineCode",{parentName:"a"},"4e59b8f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(segmant): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ab211e868296f377fddba203847549f0e5e07df"},(0,n.kt)("inlineCode",{parentName:"a"},"3ab211e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button) minor styling update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8782bb27c789a4aac97b380d718f4de129fdf682"},(0,n.kt)("inlineCode",{parentName:"a"},"8782bb2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): change image position ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cdd76d59ade86f3f989bf7d94e45e4d9b439115f"},(0,n.kt)("inlineCode",{parentName:"a"},"cdd76d5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumbs): update less variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/640817ee904f88a04f0e8f11b258f95b8db97039"},(0,n.kt)("inlineCode",{parentName:"a"},"640817e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(list): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1079c733e6ec634fedaab5b4630888a52b28e482"},(0,n.kt)("inlineCode",{parentName:"a"},"1079c73"))),(0,n.kt)("li",{parentName:"ul"},"refactor(timeline):adjust timeline module ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/213eb11e8e87940c18d81738609b4684329a5ce4"},(0,n.kt)("inlineCode",{parentName:"a"},"213eb11"))),(0,n.kt)("li",{parentName:"ul"},"refactor(blockquote):adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5eec87fc1b3017011266241c20b31217ac27c12d"},(0,n.kt)("inlineCode",{parentName:"a"},"5eec87f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progress): add progress bar colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ccf3c9823b2583fc70183554df7c4588fbf9ca13"},(0,n.kt)("inlineCode",{parentName:"a"},"ccf3c98"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pullquote):adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fee446668a8d65a717b42667af825cb5cec836b2"},(0,n.kt)("inlineCode",{parentName:"a"},"fee4466"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): change mobile mega menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c7ecf18a81024121218d580f201f324cf990829e"},(0,n.kt)("inlineCode",{parentName:"a"},"c7ecf18"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b726e49519914b02766bcd993b94ce9ff164e1df"},(0,n.kt)("inlineCode",{parentName:"a"},"b726e49"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button) adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/eb257f83541871ccc635842664722b914661770c"},(0,n.kt)("inlineCode",{parentName:"a"},"eb257f8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form): minor styling update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/79934b2cde2e806418a6422df2914321181f7a22"},(0,n.kt)("inlineCode",{parentName:"a"},"79934b2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Footer): create Actions & Sites sub components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/446840b99abd6897c1b59a9462d72b1f06f1dd4e"},(0,n.kt)("inlineCode",{parentName:"a"},"446840b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(inpageNavigation): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/85c631a9e9c1454f1f2530e4f1851089663dd610"},(0,n.kt)("inlineCode",{parentName:"a"},"85c631a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Inpage Navigation): changed button's display ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/36e5b4f107ce3535b607f7ed169c723a66ce6ac2"},(0,n.kt)("inlineCode",{parentName:"a"},"36e5b4f"))),(0,n.kt)("li",{parentName:"ul"},"enhancement(docusaurus) modified headings to be within release versions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19ace3038d6b4535b29634209e4d506e7dca2c2c"},(0,n.kt)("inlineCode",{parentName:"a"},"19ace30"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): move components to ui folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb91f88f628580f565eb01ea8627763bc2243dfb"},(0,n.kt)("inlineCode",{parentName:"a"},"cb91f88"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): change mega menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/de0fc6b3862a88ac04058b56020af23c1946ce41"},(0,n.kt)("inlineCode",{parentName:"a"},"de0fc6b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Pullquote): divide Pullquote to sub components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/34413c44ab9e318d67408f7497782b7de693deeb"},(0,n.kt)("inlineCode",{parentName:"a"},"34413c4"))),(0,n.kt)("li",{parentName:"ul"},"enhancement(docusaurus) replace changelog when auto-building docs Refs #145331 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/da25c0e25ffa80131ab4b5503b28e43385d9f827"},(0,n.kt)("inlineCode",{parentName:"a"},"da25c0e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(popup): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d0d192dc2b2a5edd422cf6a7b359c384ec4b1d55"},(0,n.kt)("inlineCode",{parentName:"a"},"d0d192d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ab6f914f487bea0df299de7da0bbd917733ee00"},(0,n.kt)("inlineCode",{parentName:"a"},"2ab6f91"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/89a16af86a165d7798b68b95ff3de215a92f0569"},(0,n.kt)("inlineCode",{parentName:"a"},"89a16af"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pullquotes) remove unnecessary variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e0d20a3febec060ac24c5498846e768d7068e8b9"},(0,n.kt)("inlineCode",{parentName:"a"},"e0d20a3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progress):adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d1ab950ee9cc14bbe95869d4f143fc428aad5a8d"},(0,n.kt)("inlineCode",{parentName:"a"},"d1ab950"))),(0,n.kt)("li",{parentName:"ul"},"refactor(blockquote) change variables names ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/36fd5be9bde1a3ceb8390639414f254fc26b8e76"},(0,n.kt)("inlineCode",{parentName:"a"},"36fd5be"))),(0,n.kt)("li",{parentName:"ul"},"refactor(comment): adjust font sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0311ed14c951eb9cba18a58f6f954c19601d838b"},(0,n.kt)("inlineCode",{parentName:"a"},"0311ed1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(InpageNavigation): clear up code ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1d7afdc8d751e61c3eef75360555807fdbef8619"},(0,n.kt)("inlineCode",{parentName:"a"},"1d7afdc"))),(0,n.kt)("li",{parentName:"ul"},"refactor(container): change variable name for computer padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/26d123f3e7e30a706b09efc10773694af79377f9"},(0,n.kt)("inlineCode",{parentName:"a"},"26d123f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(inpageNavigation): remove imports ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/25c1d1c3016695d92d104a12b22a6a9254f41b20"},(0,n.kt)("inlineCode",{parentName:"a"},"25c1d1c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): update ui index components exports ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce78d47880cab5849f4c01785cdd97a9b26771ec"},(0,n.kt)("inlineCode",{parentName:"a"},"ce78d47"))),(0,n.kt)("li",{parentName:"ul"},"change(infrastructure) auto build storybook when pushing to develop-itml branch of volto-eea-design-system ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e9aa5bc3de9c2e1c5dc55b5d317679bc14dd1cbd"},(0,n.kt)("inlineCode",{parentName:"a"},"e9aa5bc"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): delete demo stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8b58d0245f5bda7e2022a2ef9ace11015f13da01"},(0,n.kt)("inlineCode",{parentName:"a"},"8b58d02"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus) align deployment steps for building docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/37e4ce05d2772ac320a7ad561536189c5ea0a582"},(0,n.kt)("inlineCode",{parentName:"a"},"37e4ce0"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): remove components from customizations folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8930edeaf064ec316f1d086e1301a7e5269bfe4b"},(0,n.kt)("inlineCode",{parentName:"a"},"8930ede"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tab): minor styling update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1252ad0317ecf7e583dbb975b29a4c8e4c75330e"},(0,n.kt)("inlineCode",{parentName:"a"},"1252ad0"))),(0,n.kt)("li",{parentName:"ul"},"refactor(comment): change avatar src ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e5f9c4c02f5de5ae6480eedb45730bb76efbf7b4"},(0,n.kt)("inlineCode",{parentName:"a"},"e5f9c4c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner) : change file type and folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/878742ba0f95440ffbb5aec33f2cc4201dfacd43"},(0,n.kt)("inlineCode",{parentName:"a"},"878742b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form elements):changed text ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/919beea9deccec68ac0cdbbc1249ef4ab4c12230"},(0,n.kt)("inlineCode",{parentName:"a"},"919beea"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Image): change image src ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b9710849adf0cf4f10815186b6293bcc3881d68d"},(0,n.kt)("inlineCode",{parentName:"a"},"b971084"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Pullquote): add component propTypes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d32c5e69e76d7f369a286d29e49d767125550ebc"},(0,n.kt)("inlineCode",{parentName:"a"},"d32c5e6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(blockquote): adjust font sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d71a3cef7bfd4109c56b7fe8c07271c60a4bd19e"},(0,n.kt)("inlineCode",{parentName:"a"},"d71a3ce"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update font sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1c91c357a59669df0da0f4fc70d3aa420db27a14"},(0,n.kt)("inlineCode",{parentName:"a"},"1c91c35"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Blockquote): add component proTypes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea02649f92b0e41b1eb62a771330c2e53b3960e8"},(0,n.kt)("inlineCode",{parentName:"a"},"ea02649"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logo): update image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6113728e248c3e0fd0a467bb34406aa4403399e"},(0,n.kt)("inlineCode",{parentName:"a"},"f611372"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): restore config ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2c5239d92abe6be70b092e7e43f195308800f87"},(0,n.kt)("inlineCode",{parentName:"a"},"f2c5239"))),(0,n.kt)("li",{parentName:"ul"},"refactor(blockquote): update component name ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/572e655c033d93b32a48a61b1bf6383f6c993b26"},(0,n.kt)("inlineCode",{parentName:"a"},"572e655"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): fix story header import ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ceda6c7790964b150b95daf161d10364d6b67427"},(0,n.kt)("inlineCode",{parentName:"a"},"ceda6c7"))),(0,n.kt)("li",{parentName:"ul"},"change(infrastructure) auto build docusaurus when pushing to develop-itml branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7bebdf5e58f37400a8ae3d5f816c64c6b9ca3a5b"},(0,n.kt)("inlineCode",{parentName:"a"},"7bebdf5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): remove components from customization folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a9bb9b34e6961eaf16e54ed6f6ca4942944e8a0"},(0,n.kt)("inlineCode",{parentName:"a"},"4a9bb9b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner):story rename ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/56ff603d6c9cec7c22483a088624f5bd7911f717"},(0,n.kt)("inlineCode",{parentName:"a"},"56ff603"))),(0,n.kt)("li",{parentName:"ul"},"change(testing) removed navigation from cypress tests until component is finished ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5549f4c07cb0ffd725342f365aae07745d7e25f7"},(0,n.kt)("inlineCode",{parentName:"a"},"5549f4c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Segment): change to .jsx extension ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5cb35d81e8628832bab2e6ad50de6892e7e4370e"},(0,n.kt)("inlineCode",{parentName:"a"},"5cb35d8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Pullquote): change to .jsx extension ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/564cf7ea379703315f179ab922b4e0a02df63e47"},(0,n.kt)("inlineCode",{parentName:"a"},"564cf7e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(PopUp):change to .jsx extension ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dcb24ff252665a79fda2fec645e6f2a48ff71fd0"},(0,n.kt)("inlineCode",{parentName:"a"},"dcb24ff"))),(0,n.kt)("li",{parentName:"ul"},"refactor(InpageNavigation): change to .jsx extension ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dfefce3ebe55f8eb6f67974ccc33b0cb0bb13d9f"},(0,n.kt)("inlineCode",{parentName:"a"},"dfefce3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Blockquote): change to .jsx extension ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/44a164532c1ae969e4411e0cfb68b705ff2bfc1e"},(0,n.kt)("inlineCode",{parentName:"a"},"44a1645"))),(0,n.kt)("li",{parentName:"ul"},"refactor(heading): story name update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aa10f3412323321650e20401038d44b9bfdb507a"},(0,n.kt)("inlineCode",{parentName:"a"},"aa10f34")))),(0,n.kt)("h4",{id:"-internal-changes-25"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(footer): prettier fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/902c25712c88330db841240c9f1d6004e3e2674f"},(0,n.kt)("inlineCode",{parentName:"a"},"902c257"))),(0,n.kt)("li",{parentName:"ul"},"style(storybook): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/59f941dea9bf05f31257230f1a871c6eb0e98aae"},(0,n.kt)("inlineCode",{parentName:"a"},"59f941d")))),(0,n.kt)("h4",{id:"-documentation-changes-22"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus):multiple page updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2aba73ea6ff86c5a94789c707d98699fc1397e01"},(0,n.kt)("inlineCode",{parentName:"a"},"2aba73e"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus):update page content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/565697fecb4528cc5b4a6a43ca3ab9b026a2779e"},(0,n.kt)("inlineCode",{parentName:"a"},"565697f"))),(0,n.kt)("li",{parentName:"ul"},"docs(grid):update components grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/60eb083aa5d00840642caf73f6e0bb86b814aed5"},(0,n.kt)("inlineCode",{parentName:"a"},"60eb083"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): page adjustments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0641eacf9f4715acd4baaa651335ff84ac418009"},(0,n.kt)("inlineCode",{parentName:"a"},"0641eac"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus):updated various pages ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f860176a5f755d75d7b9558661e675fc678fe7ac"},(0,n.kt)("inlineCode",{parentName:"a"},"f860176"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): logo change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3af5e5c3acbf7ba4e152ca6944c500dbb0cf10ee"},(0,n.kt)("inlineCode",{parentName:"a"},"3af5e5c")))),(0,n.kt)("h4",{id:"\ufe0f-others-55"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"added sortable table stories and descriptions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d44dd7c651abe46c380b62efd3258c92223e99c"},(0,n.kt)("inlineCode",{parentName:"a"},"6d44dd7"))),(0,n.kt)("li",{parentName:"ul"},"Layout components theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/586101341f713bb072f2753d8df6e8b2ad6e4938"},(0,n.kt)("inlineCode",{parentName:"a"},"5861013"))),(0,n.kt)("li",{parentName:"ul"},"recovered files from origin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4ac04fde9c4297b09c834385f772e955b7f3b4a"},(0,n.kt)("inlineCode",{parentName:"a"},"a4ac04f"))),(0,n.kt)("li",{parentName:"ul"},"grid component & stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a5752e49aac05251905f7355234c3f9bc6b798f"},(0,n.kt)("inlineCode",{parentName:"a"},"4a5752e"))),(0,n.kt)("li",{parentName:"ul"},"Updated what's new section with actual commits from volto-eea-design-system repo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fc5e3c385d82ff7eccbd5841736f3ce292b2b7fd"},(0,n.kt)("inlineCode",{parentName:"a"},"fc5e3c3"))),(0,n.kt)("li",{parentName:"ul"},"Docusaurus title possible fix. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/db699e771b13bbd7e75c3bd84bb91ecf5d0459d8"},(0,n.kt)("inlineCode",{parentName:"a"},"db699e7"))),(0,n.kt)("li",{parentName:"ul"},"form elements stories added description & default values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6b4f6ebeed275a86f5ef6dafb13219db0c0fbbc6"},(0,n.kt)("inlineCode",{parentName:"a"},"6b4f6eb"))),(0,n.kt)("li",{parentName:"ul"},"removed API tabs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/58aa9286eb5d8cc520239aa6ee424ee5cd5446c3"},(0,n.kt)("inlineCode",{parentName:"a"},"58aa928"))),(0,n.kt)("li",{parentName:"ul"},"Layout updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/854f388c5b049e41217ddb444bc7bd0f2c61cdf6"},(0,n.kt)("inlineCode",{parentName:"a"},"854f388"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142123 removed extra customization of semantic.less: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab9de811b20b20a9f91ddc8b45b4de2eb9c47f6c"},(0,n.kt)("inlineCode",{parentName:"a"},"ab9de81"))),(0,n.kt)("li",{parentName:"ul"},"added page-header,footer and grid in docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/660c8e382068c179ca66831ae23588a4fb67cde6"},(0,n.kt)("inlineCode",{parentName:"a"},"660c8e3"))),(0,n.kt)("li",{parentName:"ul"},"Manual docs build and commit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/666eb6aff8535bb586a49579152fcf8a88961f35"},(0,n.kt)("inlineCode",{parentName:"a"},"666eb6a"))),(0,n.kt)("li",{parentName:"ul"},"added svg & png files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f1338d5bb02e17e402cea4b1584c7d01896097f9"},(0,n.kt)("inlineCode",{parentName:"a"},"f1338d5"))),(0,n.kt)("li",{parentName:"ul"},"added missing components to docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/934dfd8a98942c247deb2b5b8693604ad77cafa3"},(0,n.kt)("inlineCode",{parentName:"a"},"934dfd8"))),(0,n.kt)("li",{parentName:"ul"},"Control descriptions updated ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/56581ebc86a91fd012a98984b20f6daad25900fe"},(0,n.kt)("inlineCode",{parentName:"a"},"56581eb"))),(0,n.kt)("li",{parentName:"ul"},"Grid updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/700332d354aea84526ff22acf3bc2f8903c0f584"},(0,n.kt)("inlineCode",{parentName:"a"},"700332d"))),(0,n.kt)("li",{parentName:"ul"},"Button theming update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0ec68b6bd1ab060ac224a859180b9f750834c0b8"},(0,n.kt)("inlineCode",{parentName:"a"},"0ec68b6"))),(0,n.kt)("li",{parentName:"ul"},"site variebales & overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7251162f182f1528d72070aae8a5a14e9ec5ee93"},(0,n.kt)("inlineCode",{parentName:"a"},"7251162"))),(0,n.kt)("li",{parentName:"ul"},"Table and Tabs theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/49f08608e8be8475d561e1ce5c1bfbcfd21001f9"},(0,n.kt)("inlineCode",{parentName:"a"},"49f0860"))),(0,n.kt)("li",{parentName:"ul"},"Responsiveness updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48e1351104249fea610941793ff8ec3bf35d0699"},(0,n.kt)("inlineCode",{parentName:"a"},"48e1351"))),(0,n.kt)("li",{parentName:"ul"},"added various components to docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/550d71963b0957b1c5597bbdb2c699c411c649bd"},(0,n.kt)("inlineCode",{parentName:"a"},"550d719"))),(0,n.kt)("li",{parentName:"ul"},"Checkbox and radio updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24652a238f2c98fe5d8e8032e3320e0b3b4753e5"},(0,n.kt)("inlineCode",{parentName:"a"},"24652a2"))),(0,n.kt)("li",{parentName:"ul"},"remove images from typography and colour docs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8493e924f5af4ba7c2ed478d7bae6992b4ef6ed6"},(0,n.kt)("inlineCode",{parentName:"a"},"8493e92"))),(0,n.kt)("li",{parentName:"ul"},"added guidelines' text and finished all components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/02d75fcdc5a98633e4d563c7ec2863a9588b5506"},(0,n.kt)("inlineCode",{parentName:"a"},"02d75fc"))),(0,n.kt)("li",{parentName:"ul"},"added more missing components in docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8be82634c681a073b13a5a90ee2b699bd25b422a"},(0,n.kt)("inlineCode",{parentName:"a"},"8be8263"))),(0,n.kt)("li",{parentName:"ul"},"Prettier changes on docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f1e5eb796f2072e3b816a39a35cf48523405167"},(0,n.kt)("inlineCode",{parentName:"a"},"5f1e5eb"))),(0,n.kt)("li",{parentName:"ul"},"Grid updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ae099453e280de800a5a06c6fcbe074acc1f7bfd"},(0,n.kt)("inlineCode",{parentName:"a"},"ae09945"))),(0,n.kt)("li",{parentName:"ul"},"Minor fixes for tests ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3bdf3063d9bbc101f4b83c6aa4fc5fef5e87c776"},(0,n.kt)("inlineCode",{parentName:"a"},"3bdf306"))),(0,n.kt)("li",{parentName:"ul"},"Layout updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8b7a4dc8731cb02946e604a0dd73d2a45f61cd8b"},(0,n.kt)("inlineCode",{parentName:"a"},"8b7a4dc"))),(0,n.kt)("li",{parentName:"ul"},"Footer and TOC theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bb3d3c486f64e123b9009a76c6f054a8e2973230"},(0,n.kt)("inlineCode",{parentName:"a"},"bb3d3c4"))),(0,n.kt)("li",{parentName:"ul"},"Refs #145331 manually commit changelog until autobuild is stabilized ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93168b096b60fc6a208b20d1cbe610384be62f42"},(0,n.kt)("inlineCode",{parentName:"a"},"93168b0"))),(0,n.kt)("li",{parentName:"ul"},"label component changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/df8c0ff2d9646e4dcc7ed1a25a80712ca9ea2c9b"},(0,n.kt)("inlineCode",{parentName:"a"},"df8c0ff"))),(0,n.kt)("li",{parentName:"ul"},"added several sections to the theming guidelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff1a649d9c83794024e2db4f6349b3cac4fe79a0"},(0,n.kt)("inlineCode",{parentName:"a"},"ff1a649"))),(0,n.kt)("li",{parentName:"ul"},"Updated removed files. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/84f9b8cf7c469525367764909fa0d322532a13be"},(0,n.kt)("inlineCode",{parentName:"a"},"84f9b8c"))),(0,n.kt)("li",{parentName:"ul"},"added more docusaurus components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/52a3b9edd4c751225609dcaf2d16f08688e9cfeb"},(0,n.kt)("inlineCode",{parentName:"a"},"52a3b9e"))),(0,n.kt)("li",{parentName:"ul"},"Progress Bar ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f2efc9ded5a766df0c611a15f6a93f27bd14a37"},(0,n.kt)("inlineCode",{parentName:"a"},"9f2efc9"))),(0,n.kt)("li",{parentName:"ul"},"Modal and Confirm updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3b306c6fa5631e1e4e37456d483a69bc8cc3b234"},(0,n.kt)("inlineCode",{parentName:"a"},"3b306c6"))),(0,n.kt)("li",{parentName:"ul"},"Add proper changes to whatsnew meant in previous commit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/40f78e362ca607ef3893fff3d03c8ed1b4447c11"},(0,n.kt)("inlineCode",{parentName:"a"},"40f78e3"))),(0,n.kt)("li",{parentName:"ul"},"Form Descriptions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/de0dfbcb3a0a9610f1cbf7337f598b0c5338f2a3"},(0,n.kt)("inlineCode",{parentName:"a"},"de0dfbc"))),(0,n.kt)("li",{parentName:"ul"},"Prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1337e6fffb13fa8447488129d5dcd5af9e35e46a"},(0,n.kt)("inlineCode",{parentName:"a"},"1337e6f"))),(0,n.kt)("li",{parentName:"ul"},"Deleted files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b82f982fbfbaff4e74e35424c6122410e3830faf"},(0,n.kt)("inlineCode",{parentName:"a"},"b82f982"))),(0,n.kt)("li",{parentName:"ul"},"add new images for spacing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7b7b2c48317c45e3ff89162d703434f615c840e9"},(0,n.kt)("inlineCode",{parentName:"a"},"7b7b2c4"))),(0,n.kt)("li",{parentName:"ul"},"Messages Theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ad621a38c121f585125d5934c1939ba6a7198b33"},(0,n.kt)("inlineCode",{parentName:"a"},"ad621a3"))),(0,n.kt)("li",{parentName:"ul"},"added new content to docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1c83452be983d46f4128c33c25e69afef333f82a"},(0,n.kt)("inlineCode",{parentName:"a"},"1c83452"))),(0,n.kt)("li",{parentName:"ul"},"Minor less updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a36a8bbfeb201049fa13987894a5ec2ec167ed03"},(0,n.kt)("inlineCode",{parentName:"a"},"a36a8bb"))),(0,n.kt)("li",{parentName:"ul"},"Tabs and lists updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e37eef19e67c3c5720d5a9565e9884dc5c19f127"},(0,n.kt)("inlineCode",{parentName:"a"},"e37eef1"))),(0,n.kt)("li",{parentName:"ul"},"Inpage nav and timeline components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/76f0f82dc3a8f683268a4df7580b8f73a0cc1cb4"},(0,n.kt)("inlineCode",{parentName:"a"},"76f0f82"))),(0,n.kt)("li",{parentName:"ul"},"Prettier updated files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/679b9d2026091685d6982ab68e5088544ea0941e"},(0,n.kt)("inlineCode",{parentName:"a"},"679b9d2"))),(0,n.kt)("li",{parentName:"ul"},"dropdown initial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d8aef26dc905adbb0fb72c73d6188b50944931c9"},(0,n.kt)("inlineCode",{parentName:"a"},"d8aef26"))),(0,n.kt)("li",{parentName:"ul"},"Prettier changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f068af0b307d85146e1d8a529947c98988c506f7"},(0,n.kt)("inlineCode",{parentName:"a"},"f068af0"))),(0,n.kt)("li",{parentName:"ul"},"List initial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d3b96974bc35ad958b8cfc7921c1fbe345e5ebf"},(0,n.kt)("inlineCode",{parentName:"a"},"6d3b969"))),(0,n.kt)("li",{parentName:"ul"},"List story updated ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e96a6f6cff9a4db994df7cbf584842b18ca1c432"},(0,n.kt)("inlineCode",{parentName:"a"},"e96a6f6"))),(0,n.kt)("li",{parentName:"ul"},"Statistics updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/74bf63999cfeb0791b9475d3895a49a245be2cd3"},(0,n.kt)("inlineCode",{parentName:"a"},"74bf639"))),(0,n.kt)("li",{parentName:"ul"},"styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c169cc026189ca71e6e9cad17bde9d65d93ffbde"},(0,n.kt)("inlineCode",{parentName:"a"},"c169cc0"))),(0,n.kt)("li",{parentName:"ul"},"timeline comp storybook changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f42686ae19b619fa659730567bdceb369ecd4b0"},(0,n.kt)("inlineCode",{parentName:"a"},"1f42686"))),(0,n.kt)("li",{parentName:"ul"},"feature(docusaurus) added theming guidelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ded1f04a3197ac34640f98bcfe363c75a0a3745f"},(0,n.kt)("inlineCode",{parentName:"a"},"ded1f04"))),(0,n.kt)("li",{parentName:"ul"},"Properly commented out integration tests. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48b3a15f426db52b9fa27f6d7792c424b4939867"},(0,n.kt)("inlineCode",{parentName:"a"},"48b3a15"))),(0,n.kt)("li",{parentName:"ul"},"Reattempting commented out integrations tests. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3dd8211ecfca6c7891ef6851d0dc82899ab50f05"},(0,n.kt)("inlineCode",{parentName:"a"},"3dd8211"))),(0,n.kt)("li",{parentName:"ul"},"Button theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4231e1c264165ef6f7e2f2cd6fbd7c51159330b6"},(0,n.kt)("inlineCode",{parentName:"a"},"4231e1c"))),(0,n.kt)("li",{parentName:"ul"},"Card initial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/06dace5c4aa54d90ec4bcdc0b3fbc0883f825947"},(0,n.kt)("inlineCode",{parentName:"a"},"06dace5"))),(0,n.kt)("li",{parentName:"ul"},"form element storybook changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4b06aabddedbc281f23fc75a1e56476c4d1c1af"},(0,n.kt)("inlineCode",{parentName:"a"},"c4b06aa"))),(0,n.kt)("li",{parentName:"ul"},"Pagination theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2a80175762fbab23691d52f89cd38eb6f7740c4e"},(0,n.kt)("inlineCode",{parentName:"a"},"2a80175"))),(0,n.kt)("li",{parentName:"ul"},"Accordion theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8061bf90823a9172cfccb0ea1ed544ceda1c3fe9"},(0,n.kt)("inlineCode",{parentName:"a"},"8061bf9"))),(0,n.kt)("li",{parentName:"ul"},"global var updates and radio story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9526ee2fc8269db60ce912bfd4edfadbb55fed3a"},(0,n.kt)("inlineCode",{parentName:"a"},"9526ee2"))),(0,n.kt)("li",{parentName:"ul"},"created pullquote component & stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/df35563fb7ba2be403461c120b32ebffaa391736"},(0,n.kt)("inlineCode",{parentName:"a"},"df35563"))),(0,n.kt)("li",{parentName:"ul"},"Item stories added description & default values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9d459f2cd92e419813e7edf0f28dec4c750a5940"},(0,n.kt)("inlineCode",{parentName:"a"},"9d459f2"))),(0,n.kt)("li",{parentName:"ul"},"storybook clean up code ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bffd32603a70cf6cafa4874937f3fe218ba5de9d"},(0,n.kt)("inlineCode",{parentName:"a"},"bffd326"))),(0,n.kt)("li",{parentName:"ul"},"List updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/28f1b5352d83e144acdaae694cf20755a3b04106"},(0,n.kt)("inlineCode",{parentName:"a"},"28f1b53"))),(0,n.kt)("li",{parentName:"ul"},"Button classes updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/788c289549490d9ac5f1c40f1e39124349e1dbcd"},(0,n.kt)("inlineCode",{parentName:"a"},"788c289"))),(0,n.kt)("li",{parentName:"ul"},"Prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/678c9be717468fd2c8c425bec5999e81a66dabf6"},(0,n.kt)("inlineCode",{parentName:"a"},"678c9be"))),(0,n.kt)("li",{parentName:"ul"},"Removed header title from partial docusaurus components. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ed7c45e458504fa76ad500ab26f59a442b3c6952"},(0,n.kt)("inlineCode",{parentName:"a"},"ed7c45e"))),(0,n.kt)("li",{parentName:"ul"},"created banner component and stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9be170f2ccb20218a7bdae48c85f77acd69427ff"},(0,n.kt)("inlineCode",{parentName:"a"},"9be170f"))),(0,n.kt)("li",{parentName:"ul"},"Breadcrumb stories description & defaultValue -- clean up code ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/186ab65ca8635c853c919fc645c1ef0486e22a43"},(0,n.kt)("inlineCode",{parentName:"a"},"186ab65"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142123 added customization of semantic.less: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1e02356722fcb7528883b6dc3bf71279343fd1f7"},(0,n.kt)("inlineCode",{parentName:"a"},"1e02356"))),(0,n.kt)("li",{parentName:"ul"},"Card stories added description & default values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6b408f1ed24ee69ad8faacc6b36cf06e9917478"},(0,n.kt)("inlineCode",{parentName:"a"},"f6b408f"))),(0,n.kt)("li",{parentName:"ul"},"Statistic and accordion updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/16064ceeb6e1a7f097979365473c6a86ced4056f"},(0,n.kt)("inlineCode",{parentName:"a"},"16064ce"))),(0,n.kt)("li",{parentName:"ul"},"breadcrumb component & stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5bceb980502828c182a3998943ab086159c3fcb6"},(0,n.kt)("inlineCode",{parentName:"a"},"5bceb98"))),(0,n.kt)("li",{parentName:"ul"},"Container initial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3eb7155332f83bb8896a831e24cbae028413aba2"},(0,n.kt)("inlineCode",{parentName:"a"},"3eb7155"))),(0,n.kt)("li",{parentName:"ul"},"doc(docusaurus):Fix text for various parts ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bfd3fa2584a6e7aa2c26f3502b1ede912682905e"},(0,n.kt)("inlineCode",{parentName:"a"},"bfd3fa2"))),(0,n.kt)("li",{parentName:"ul"},"blockquote component & stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/879b6402f08112fedfffe6d66e72c37750593bb8"},(0,n.kt)("inlineCode",{parentName:"a"},"879b640"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 removed doc comments breaking doc building ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e6a6756b0533e6dbfdb636f9a9e6485e30187cad"},(0,n.kt)("inlineCode",{parentName:"a"},"e6a6756"))),(0,n.kt)("li",{parentName:"ul"},"Popup updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce2d641d8f5d940cbb93deefdabbbfb85ad20ad7"},(0,n.kt)("inlineCode",{parentName:"a"},"ce2d641"))),(0,n.kt)("li",{parentName:"ul"},"Global variables for colors and borders added ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e5fbd619d163acae03d3d1bb26e082390f90c21"},(0,n.kt)("inlineCode",{parentName:"a"},"6e5fbd6"))),(0,n.kt)("li",{parentName:"ul"},"Tab stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5429cfb7751d6ad31231f9cc19d8bd7e8d24d0b8"},(0,n.kt)("inlineCode",{parentName:"a"},"5429cfb"))),(0,n.kt)("li",{parentName:"ul"},"Confirm stories added description & default value ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/85cda14b1338dc986bbab5aa7846b4ef3ec8d0bd"},(0,n.kt)("inlineCode",{parentName:"a"},"85cda14"))),(0,n.kt)("li",{parentName:"ul"},"Kebab case class names ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b41cd078ab5b349dc1d15769832913dcc8e6786f"},(0,n.kt)("inlineCode",{parentName:"a"},"b41cd07"))),(0,n.kt)("li",{parentName:"ul"},"Card and Comment class updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/389946540d3def2ea81c5c7c489e79dc24d4efb3"},(0,n.kt)("inlineCode",{parentName:"a"},"3899465"))),(0,n.kt)("li",{parentName:"ul"},"Accordion updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c97ba39cc7823cb72180a858c0b8a69cc9434927"},(0,n.kt)("inlineCode",{parentName:"a"},"c97ba39"))),(0,n.kt)("li",{parentName:"ul"},"item stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/772e41f3d90034827afcb118c38ab075d3bb7bb9"},(0,n.kt)("inlineCode",{parentName:"a"},"772e41f"))),(0,n.kt)("li",{parentName:"ul"},"Accordion class updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9cdde86f14a17701d66b3d2850980251094934b5"},(0,n.kt)("inlineCode",{parentName:"a"},"9cdde86"))),(0,n.kt)("li",{parentName:"ul"},"Comment stories added description & default value ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb6f25bc1452330f4155ccf6a64df491740ed8da"},(0,n.kt)("inlineCode",{parentName:"a"},"cb6f25b"))),(0,n.kt)("li",{parentName:"ul"},"Accrodion stories description & default value ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab8fb883c3cbfeea1807bf1aaf72f5d8424933f4"},(0,n.kt)("inlineCode",{parentName:"a"},"ab8fb88"))),(0,n.kt)("li",{parentName:"ul"},"Pullquotes updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5984213ba9397ddb4c1932394a5cc368336cf0a"},(0,n.kt)("inlineCode",{parentName:"a"},"c598421"))),(0,n.kt)("li",{parentName:"ul"},"Modal and confirm class updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0ae47e6f55645c0d6318123a5783648326c16852"},(0,n.kt)("inlineCode",{parentName:"a"},"0ae47e6"))),(0,n.kt)("li",{parentName:"ul"},"Tab and paggination updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/96796fffb189d2fa3628423280f3622dcacb449f"},(0,n.kt)("inlineCode",{parentName:"a"},"96796ff"))),(0,n.kt)("li",{parentName:"ul"},"Form Updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e986a9f0fc48ddcbc17488a8bbbaec82cee92232"},(0,n.kt)("inlineCode",{parentName:"a"},"e986a9f"))),(0,n.kt)("li",{parentName:"ul"},"Classes renamed ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/73c8c3d622bb3b9c0b5cf09e340de4df6606a14c"},(0,n.kt)("inlineCode",{parentName:"a"},"73c8c3d"))),(0,n.kt)("li",{parentName:"ul"},"List and item less updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce0de1708ca410c7839f3ce9b5b3cfbdb6979939"},(0,n.kt)("inlineCode",{parentName:"a"},"ce0de17"))),(0,n.kt)("li",{parentName:"ul"},"Confirm theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/36e20ce0dd6cd159e9f8e519d22ab696a622efd9"},(0,n.kt)("inlineCode",{parentName:"a"},"36e20ce"))),(0,n.kt)("li",{parentName:"ul"},"container overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4b3970bd28df5939fd438f7fc58b5d1dfbe33719"},(0,n.kt)("inlineCode",{parentName:"a"},"4b3970b"))),(0,n.kt)("li",{parentName:"ul"},"Docusaurus theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fc4a8c5534b6eb85192a687890846b3a4bed9401"},(0,n.kt)("inlineCode",{parentName:"a"},"fc4a8c5"))),(0,n.kt)("li",{parentName:"ul"},"refacto(headings): update mobile headings sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b2e9f838766ffd73095ecf7eccc71629c09d6bc0"},(0,n.kt)("inlineCode",{parentName:"a"},"b2e9f83"))),(0,n.kt)("li",{parentName:"ul"},"list stories and style changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c61db53b153f8f0e51eddd6a6c82dd38e6278c82"},(0,n.kt)("inlineCode",{parentName:"a"},"c61db53"))),(0,n.kt)("li",{parentName:"ul"},"Tab theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e31e6c3b1f0d6b4dbd63425a1846914d8dfa318d"},(0,n.kt)("inlineCode",{parentName:"a"},"e31e6c3"))),(0,n.kt)("li",{parentName:"ul"},"Message and pagination classes updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c230687c48953208461aa92376588246d49dadaa"},(0,n.kt)("inlineCode",{parentName:"a"},"c230687"))),(0,n.kt)("li",{parentName:"ul"},"Segment initial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5724fe639e0f2aecbb1c633fe7e69b742ddfaf5"},(0,n.kt)("inlineCode",{parentName:"a"},"d5724fe"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 removed doc comments from api_markdown breaking doc building ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/efeacba82875c6b36ee1ef76792e86ca03ee6f35"},(0,n.kt)("inlineCode",{parentName:"a"},"efeacba"))),(0,n.kt)("li",{parentName:"ul"},"Timeline and responsiveness updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1ed152476e33bc41fdf9d89a6bc80f83af538373"},(0,n.kt)("inlineCode",{parentName:"a"},"1ed1524"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142123 use swap font-display for performance reasons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/083738f0834982b5684d67d75c080dc50b1c74ef"},(0,n.kt)("inlineCode",{parentName:"a"},"083738f"))),(0,n.kt)("li",{parentName:"ul"},"Breadcrumb stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3d0d17ca4f04123d55fda64c516b8f867ee1bd13"},(0,n.kt)("inlineCode",{parentName:"a"},"3d0d17c"))),(0,n.kt)("li",{parentName:"ul"},"Table component stories minor change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0bf40835204f57ab300e2c325309fddf5279d76b"},(0,n.kt)("inlineCode",{parentName:"a"},"0bf4083"))),(0,n.kt)("li",{parentName:"ul"},"List stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a64b304a3aa025873643d592de03cbfbc0d02d81"},(0,n.kt)("inlineCode",{parentName:"a"},"a64b304"))),(0,n.kt)("li",{parentName:"ul"},"blockquote component minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cdf71a883d3778e1bde25ec0b4a2f3e370b98b09"},(0,n.kt)("inlineCode",{parentName:"a"},"cdf71a8"))),(0,n.kt)("li",{parentName:"ul"},"ckeckbox stories minor change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d6e508f73a18d7ce9fcdb779026113659ce8950"},(0,n.kt)("inlineCode",{parentName:"a"},"6d6e508"))),(0,n.kt)("li",{parentName:"ul"},"image component storybook changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91290ec540ae913fff76f0dbed6c310668a2eeb3"},(0,n.kt)("inlineCode",{parentName:"a"},"91290ec"))),(0,n.kt)("li",{parentName:"ul"},"button overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5b78dd7b794e2e0ece2d5af9eb171e73b77ee93"},(0,n.kt)("inlineCode",{parentName:"a"},"d5b78dd"))),(0,n.kt)("li",{parentName:"ul"},"accordion overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fdcf7d58eea3ce9e68c49649fb4a788c8a801b49"},(0,n.kt)("inlineCode",{parentName:"a"},"fdcf7d5"))),(0,n.kt)("li",{parentName:"ul"},"Accordion component and stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5079247b2d4b96b2a7252692ea538ca620cbec38"},(0,n.kt)("inlineCode",{parentName:"a"},"5079247"))),(0,n.kt)("li",{parentName:"ul"},"Card theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/23bbb9d1b5751bc4877d02ae1c676ea28463ec39"},(0,n.kt)("inlineCode",{parentName:"a"},"23bbb9d"))),(0,n.kt)("li",{parentName:"ul"},"statistic overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2b11cb5ffb9c907563b37a3db8fea3b1ef3584bc"},(0,n.kt)("inlineCode",{parentName:"a"},"2b11cb5"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 build docs only on pull request like we do with storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/473bb87be53610a654d35c9b399de14824301385"},(0,n.kt)("inlineCode",{parentName:"a"},"473bb87"))),(0,n.kt)("li",{parentName:"ul"},"Card component stories minor change | added link icon ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/deb423af02643697c3781212b177487174d341f7"},(0,n.kt)("inlineCode",{parentName:"a"},"deb423a"))),(0,n.kt)("li",{parentName:"ul"},"comment component stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f1c5e75f1af24c5b39a2e61cf07c773abfa96f66"},(0,n.kt)("inlineCode",{parentName:"a"},"f1c5e75"))),(0,n.kt)("li",{parentName:"ul"},"Accordion component bug fixed ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/815e91df66ed738f3d91cadc8df151782829f545"},(0,n.kt)("inlineCode",{parentName:"a"},"815e91d"))),(0,n.kt)("li",{parentName:"ul"},"Refs #145331 use iso date to release so that we see also time ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ceedf08937ab683c3e624cd3c909bf4a4788f883"},(0,n.kt)("inlineCode",{parentName:"a"},"ceedf08"))),(0,n.kt)("li",{parentName:"ul"},"correct connfig for doco ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93e13135e7f00fe32f4db2d720db4159970da021"},(0,n.kt)("inlineCode",{parentName:"a"},"93e1313"))),(0,n.kt)("li",{parentName:"ul"},"Item updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fae93d43a0ad56c4c9b8ce7bf436ad4f47421744"},(0,n.kt)("inlineCode",{parentName:"a"},"fae93d4"))),(0,n.kt)("li",{parentName:"ul"},"added layout grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2e6be557bcd3bef836338380ef68acade1c6b3e3"},(0,n.kt)("inlineCode",{parentName:"a"},"2e6be55"))),(0,n.kt)("li",{parentName:"ul"},"tab overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87aaf32cac5a0dee0da5833217de68da62327f5a"},(0,n.kt)("inlineCode",{parentName:"a"},"87aaf32"))),(0,n.kt)("li",{parentName:"ul"},"message overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6dccfca52d9673f394d81bd40da0af1b1504af0c"},(0,n.kt)("inlineCode",{parentName:"a"},"6dccfca"))),(0,n.kt)("li",{parentName:"ul"},"segment storie changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/296371fa71e43c2341bee8069f66d5cd1f7aa5f8"},(0,n.kt)("inlineCode",{parentName:"a"},"296371f"))),(0,n.kt)("li",{parentName:"ul"},"progress component stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/df10c2ed1289ae770008c71e1545c1ac0a223fc5"},(0,n.kt)("inlineCode",{parentName:"a"},"df10c2e"))),(0,n.kt)("li",{parentName:"ul"},"message comp storybook changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c86b40563f655fd5833dd05119f04d0e4256e75f"},(0,n.kt)("inlineCode",{parentName:"a"},"c86b405"))),(0,n.kt)("li",{parentName:"ul"},"Accordion cmponent stories | minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6de0d816287a9beeb9e8a5a890a2e14f3457a792"},(0,n.kt)("inlineCode",{parentName:"a"},"6de0d81"))),(0,n.kt)("li",{parentName:"ul"},"Refs #145331 add all changes when auto building docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce11cce4fe3dadc16a0da56c36bc5db480e4ff91"},(0,n.kt)("inlineCode",{parentName:"a"},"ce11cce"))),(0,n.kt)("li",{parentName:"ul"},"perf(timeline):removed semantic timeline package ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0aeb34a189eb53a5fc0fc45d716da515b7ed0301"},(0,n.kt)("inlineCode",{parentName:"a"},"0aeb34a"))),(0,n.kt)("li",{parentName:"ul"},"Tablet Breakpoint update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b229c2739e75a00e403dd07c31eb0dac7700baac"},(0,n.kt)("inlineCode",{parentName:"a"},"b229c27"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 set storyBook Url to eea.github.io ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b7fdecbb5e9e6e7db0b128ab7fd3a98dd1dbbc74"},(0,n.kt)("inlineCode",{parentName:"a"},"b7fdecb"))),(0,n.kt)("li",{parentName:"ul"},"bump package version to signaling of a major release ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c835f1d8193685153b8a9b54edbc2e8d3d095321"},(0,n.kt)("inlineCode",{parentName:"a"},"c835f1d"))),(0,n.kt)("li",{parentName:"ul"},"small commit to trigger deployment of storybook and docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/be46ea3b581cccc82369c9cf6d4e29b02822cd71"},(0,n.kt)("inlineCode",{parentName:"a"},"be46ea3"))),(0,n.kt)("li",{parentName:"ul"},"doc(accordion):revert previous change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3de02da26472c17389366d933f3293f658fd783a"},(0,n.kt)("inlineCode",{parentName:"a"},"3de02da"))),(0,n.kt)("li",{parentName:"ul"},"fix typo for caption @desktop line-height pixel number ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/167155234a897334a03a4f3eadc71701185bb924"},(0,n.kt)("inlineCode",{parentName:"a"},"1671552"))),(0,n.kt)("li",{parentName:"ul"},"Commented out integration tests. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/574cfec852f39bdd30430d2ca3a466aec417180d"},(0,n.kt)("inlineCode",{parentName:"a"},"574cfec"))),(0,n.kt)("li",{parentName:"ul"},"popup overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a9555e3128bd0c92691410c202d9b26dd5a5e0c5"},(0,n.kt)("inlineCode",{parentName:"a"},"a9555e3"))),(0,n.kt)("li",{parentName:"ul"},"container component stories fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/692cfce5e795ac718855349424e7e8eb9c7518ec"},(0,n.kt)("inlineCode",{parentName:"a"},"692cfce"))),(0,n.kt)("li",{parentName:"ul"},"Added timeline to package json fixed ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2e93e0478a1502cccb8d7f866cef337a2546b6c"},(0,n.kt)("inlineCode",{parentName:"a"},"f2e93e0"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142123 modified import of volto-eea-design-system icon.less: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7fab7d2871f153c2db139e3258da071ace7c09d"},(0,n.kt)("inlineCode",{parentName:"a"},"a7fab7d"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142123 reference icon.less from this package: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5616e6d730f1a8cbc04784230c35f3490fd0f921"},(0,n.kt)("inlineCode",{parentName:"a"},"5616e6d"))),(0,n.kt)("li",{parentName:"ul"},"Menu component stories change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2797716aa050a8f70d2b6f0f19b7d01e5cd035be"},(0,n.kt)("inlineCode",{parentName:"a"},"2797716"))),(0,n.kt)("li",{parentName:"ul"},"Image stories minor change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ddb9f1dd56fe42e17df1eac5bfd93ee6eaac3179"},(0,n.kt)("inlineCode",{parentName:"a"},"ddb9f1d"))),(0,n.kt)("li",{parentName:"ul"},"card component stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6ccba1ec4a388ced5a3671bf88d4f18aefc8cff3"},(0,n.kt)("inlineCode",{parentName:"a"},"6ccba1e"))),(0,n.kt)("li",{parentName:"ul"},"Added timeline to package json ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93031d6b6b3215e98074700554d7546f9f17f320"},(0,n.kt)("inlineCode",{parentName:"a"},"93031d6"))),(0,n.kt)("li",{parentName:"ul"},"table stories code clean up ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b7b2a56e37b847a3a3fc3d78f2099aba052826c3"},(0,n.kt)("inlineCode",{parentName:"a"},"b7b2a56"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 removed extra baseUrl from docusaurus config ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/79f36da6a38866765025cedd4f5eeb63e273785c"},(0,n.kt)("inlineCode",{parentName:"a"},"79f36da"))),(0,n.kt)("li",{parentName:"ul"},"Accordion stories minor change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ffe808aabc77c6cb324e8fe097a97bb82c291c29"},(0,n.kt)("inlineCode",{parentName:"a"},"ffe808a"))),(0,n.kt)("li",{parentName:"ul"},"Theme assets ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3f4bea4b53e393bc3d926b63683265c0b5df32c2"},(0,n.kt)("inlineCode",{parentName:"a"},"3f4bea4"))),(0,n.kt)("li",{parentName:"ul"},"Merged with develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/167ec9f7847162965ad045259989cc31abaad7f1"},(0,n.kt)("inlineCode",{parentName:"a"},"167ec9f")))),(0,n.kt)("h3",{id:"012-beta2---2022-01-03"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.2-beta.1...0.1.2-beta.2"},"0.1.2-beta.2")," - 2022-01-03"),(0,n.kt)("h3",{id:"012-beta1---2021-12-22"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.2-beta.0...0.1.2-beta.1"},"0.1.2-beta.1")," - 2021-12-22"),(0,n.kt)("h4",{id:"\ufe0f-others-56"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Tab component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4690a6fc1e739eeeeaa3dc90ee35e05a22875bf8"},(0,n.kt)("inlineCode",{parentName:"a"},"4690a6f"))),(0,n.kt)("li",{parentName:"ul"},"Comment component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a87cb6ad7959ce939c9decbfaa08026d4f00a10e"},(0,n.kt)("inlineCode",{parentName:"a"},"a87cb6a"))),(0,n.kt)("li",{parentName:"ul"},"Form stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fc30c900e5adf5a27930aa64a79a632e2b7d84ae"},(0,n.kt)("inlineCode",{parentName:"a"},"fc30c90"))),(0,n.kt)("li",{parentName:"ul"},"Grid component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/798fdd0d0fecb7980308c831fc9dc111a36c5d9f"},(0,n.kt)("inlineCode",{parentName:"a"},"798fdd0"))),(0,n.kt)("li",{parentName:"ul"},"Image component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/be93385f1ea29846512eb7762d69bb98f33be7f2"},(0,n.kt)("inlineCode",{parentName:"a"},"be93385"))),(0,n.kt)("li",{parentName:"ul"},"Menu component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb1f9a82843bb4e3011be9813ae692c94d986495"},(0,n.kt)("inlineCode",{parentName:"a"},"cb1f9a8"))),(0,n.kt)("li",{parentName:"ul"},"Dropdown component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/57cf954599292e6a2f8a1644c6b6d61706ecaf60"},(0,n.kt)("inlineCode",{parentName:"a"},"57cf954"))),(0,n.kt)("li",{parentName:"ul"},"Header component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/264fd463734c9587e3a820f4d14527af89274e12"},(0,n.kt)("inlineCode",{parentName:"a"},"264fd46"))),(0,n.kt)("li",{parentName:"ul"},"Confirn component minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9a00bc174fb676e626d6cc93fac225e8a6165790"},(0,n.kt)("inlineCode",{parentName:"a"},"9a00bc1"))),(0,n.kt)("li",{parentName:"ul"},"Item component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6994fa00c0f91550f64d7345503df7f562480d32"},(0,n.kt)("inlineCode",{parentName:"a"},"6994fa0"))),(0,n.kt)("li",{parentName:"ul"},"Label component stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5cc5843327deeaa5ae2cedc03e6f0c314be6586a"},(0,n.kt)("inlineCode",{parentName:"a"},"5cc5843"))),(0,n.kt)("li",{parentName:"ul"},"Container component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e6e40b3a505c2e2fe88a36d74ea4e9728e3491f6"},(0,n.kt)("inlineCode",{parentName:"a"},"e6e40b3"))),(0,n.kt)("li",{parentName:"ul"},"Message component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ba9d377fd5b04274f1d42065eafa2401a1b0bbca"},(0,n.kt)("inlineCode",{parentName:"a"},"ba9d377"))),(0,n.kt)("li",{parentName:"ul"},"Breadcrumb component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff7a176141c3a59d71df98a0ed0b23b8c08787df"},(0,n.kt)("inlineCode",{parentName:"a"},"ff7a176"))),(0,n.kt)("li",{parentName:"ul"},"Modal component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af1fe6a84d058fb937b555f4dc3e0efceebefa04"},(0,n.kt)("inlineCode",{parentName:"a"},"af1fe6a"))),(0,n.kt)("li",{parentName:"ul"},"List stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0016042856fa2275aed373eebd6f996b837619a2"},(0,n.kt)("inlineCode",{parentName:"a"},"0016042"))),(0,n.kt)("li",{parentName:"ul"},"Button component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/690dfd234bee017c1f1cda7077265e6cf4a870e9"},(0,n.kt)("inlineCode",{parentName:"a"},"690dfd2"))),(0,n.kt)("li",{parentName:"ul"},"Radio component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/84eac30ab5b523ed09c56b9cca41b058cee3e5d2"},(0,n.kt)("inlineCode",{parentName:"a"},"84eac30"))),(0,n.kt)("li",{parentName:"ul"},"Progress component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e6763571afe637375e8260babd9f2219f29b432a"},(0,n.kt)("inlineCode",{parentName:"a"},"e676357"))),(0,n.kt)("li",{parentName:"ul"},"Pagination component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b1af226b9bd42097dc3c74be3d9ca3fab29b80f6"},(0,n.kt)("inlineCode",{parentName:"a"},"b1af226"))),(0,n.kt)("li",{parentName:"ul"},"Segment component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f8c7efcb9b1de209ff146dd315ea9d43b16f4db"},(0,n.kt)("inlineCode",{parentName:"a"},"5f8c7ef"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 eslint fixes for component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/badcb9158cb4a847380f66592b22c78b5117626a"},(0,n.kt)("inlineCode",{parentName:"a"},"badcb91"))),(0,n.kt)("li",{parentName:"ul"},"Table component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7c104b8e89272b0e2505d165184093ee2680c6f3"},(0,n.kt)("inlineCode",{parentName:"a"},"7c104b8"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 more eslint fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a88c091723af0b87cfa85c83307d9510d2bae65c"},(0,n.kt)("inlineCode",{parentName:"a"},"a88c091"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 warn for broken links instead of throwing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bd5821cb78e030aaf69de73dc4d3bdadbe320195"},(0,n.kt)("inlineCode",{parentName:"a"},"bd5821c"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 merge changes from develop-itml to develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bca28b968bc88720aff9e29e1a94a597a7375666"},(0,n.kt)("inlineCode",{parentName:"a"},"bca28b9"))),(0,n.kt)("li",{parentName:"ul"},"made tabs dynamic for api tab ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea37ecb3ec9fe0ace41d7650d59e209929d8e95f"},(0,n.kt)("inlineCode",{parentName:"a"},"ea37ecb"))),(0,n.kt)("li",{parentName:"ul"},"Basic storybook/Docusaurus components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/840ab60f22f7b73d8742fa7452f198d486c6ec5b"},(0,n.kt)("inlineCode",{parentName:"a"},"840ab60"))),(0,n.kt)("li",{parentName:"ul"},"created List directory & srories based on semantic-ui List component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51f19016b27228a4d391c88b7eee27357d6fdc0d"},(0,n.kt)("inlineCode",{parentName:"a"},"51f1901"))),(0,n.kt)("li",{parentName:"ul"},"made tabs as component easy to call for other components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/07bae4900a4076f3429d3a26978b92aabf6b23ba"},(0,n.kt)("inlineCode",{parentName:"a"},"07bae49"))),(0,n.kt)("li",{parentName:"ul"},"Popup Component | minor fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ff9908a9374f93b9eaf4d8ee8de24acdf5be3ec"},(0,n.kt)("inlineCode",{parentName:"a"},"2ff9908"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Tab component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/95e3a733921b42fbe2540fa39548284abff9fdc0"},(0,n.kt)("inlineCode",{parentName:"a"},"95e3a73"))),(0,n.kt)("li",{parentName:"ul"},"created Table directory and stories based on semantic-ui Table component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e16115daa000962ccd8d141e3c11fd099446a388"},(0,n.kt)("inlineCode",{parentName:"a"},"e16115d"))),(0,n.kt)("li",{parentName:"ul"},"List component stories - minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/de113430b487297417c4697178f9ee37412a5389"},(0,n.kt)("inlineCode",{parentName:"a"},"de11343"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Comment component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a20f8842e8cb5c937dfc450030ac9afcf78ffe11"},(0,n.kt)("inlineCode",{parentName:"a"},"a20f884"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Grid component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/360d2a897f36e86c58b0ba6ac3d4fc852d10287d"},(0,n.kt)("inlineCode",{parentName:"a"},"360d2a8"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Image component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c1d2bcaf886c96052af45fcce98243ea56c98a5"},(0,n.kt)("inlineCode",{parentName:"a"},"3c1d2bc"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Menu component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/17e3b37ae447d8cc86228fa6c0c48a8fd8be9d03"},(0,n.kt)("inlineCode",{parentName:"a"},"17e3b37"))),(0,n.kt)("li",{parentName:"ul"},"Added untracked files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/75f0afda10114e70348e23d480f8f74528531674"},(0,n.kt)("inlineCode",{parentName:"a"},"75f0afd"))),(0,n.kt)("li",{parentName:"ul"},"created Dropdown stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d6a25381078e0b3cabdb9270d5224b3886ab6af9"},(0,n.kt)("inlineCode",{parentName:"a"},"d6a2538"))),(0,n.kt)("li",{parentName:"ul"},"created Header component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8339798f3e7d40f1b5a033bf4d7303c756c38d3"},(0,n.kt)("inlineCode",{parentName:"a"},"b833979"))),(0,n.kt)("li",{parentName:"ul"},"created stories for semantic-ui Confirm component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6fddccc6cf97f9929da52064ceb379f9fc427b42"},(0,n.kt)("inlineCode",{parentName:"a"},"6fddccc"))),(0,n.kt)("li",{parentName:"ul"},"created Statistic directory and stories with semantic-ui Statistic component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cd62498dbd75d5dff0adf849ff95d22bb9dc3b34"},(0,n.kt)("inlineCode",{parentName:"a"},"cd62498"))),(0,n.kt)("li",{parentName:"ul"},"created Item component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/90ec2be7eede347352e318c70615c30e7d422073"},(0,n.kt)("inlineCode",{parentName:"a"},"90ec2be"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Container component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/41934f6c5961ae0ac034a496ac169a191c7a5288"},(0,n.kt)("inlineCode",{parentName:"a"},"41934f6"))),(0,n.kt)("li",{parentName:"ul"},"created Label component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/71732f68b3153320710fbf7fb78dac460b8a084f"},(0,n.kt)("inlineCode",{parentName:"a"},"71732f6"))),(0,n.kt)("li",{parentName:"ul"},"created Message component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/adcbeabe6d4e8c1bbd7bd925c5f7fd3109fb407c"},(0,n.kt)("inlineCode",{parentName:"a"},"adcbeab"))),(0,n.kt)("li",{parentName:"ul"},"created Modal component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c25409d8901ad4eba66fa66a9f5c34b0353569b9"},(0,n.kt)("inlineCode",{parentName:"a"},"c25409d"))),(0,n.kt)("li",{parentName:"ul"},"Breadcrumb component stories and minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6264d92bcf6565e284ae9dc0c7a918652bb3959e"},(0,n.kt)("inlineCode",{parentName:"a"},"6264d92"))),(0,n.kt)("li",{parentName:"ul"},"created Pagination component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/57cdad35e21fdacf303e407abcb8988e97e87242"},(0,n.kt)("inlineCode",{parentName:"a"},"57cdad3"))),(0,n.kt)("li",{parentName:"ul"},"created Segment component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d8d01d70dab9359be46eb1629b3198f871091c7a"},(0,n.kt)("inlineCode",{parentName:"a"},"d8d01d7"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Radio component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1fd062d8a08cbe8507f5154201632ea96f765a2c"},(0,n.kt)("inlineCode",{parentName:"a"},"1fd062d"))),(0,n.kt)("li",{parentName:"ul"},"Menu stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6ba5e0d00a26ffd4625fb51f759af3764cef28de"},(0,n.kt)("inlineCode",{parentName:"a"},"6ba5e0d"))),(0,n.kt)("li",{parentName:"ul"},"Statistic component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c874a520c9959b7673b5c86f63e53e90f006f22"},(0,n.kt)("inlineCode",{parentName:"a"},"3c874a5"))),(0,n.kt)("li",{parentName:"ul"},"Card component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/290bda8dac4c9bb4476108c2e4969fa283f935e2"},(0,n.kt)("inlineCode",{parentName:"a"},"290bda8"))),(0,n.kt)("li",{parentName:"ul"},"Accrordion stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ee3f592fbfaead01506fb6a4dbfb36d06269564"},(0,n.kt)("inlineCode",{parentName:"a"},"2ee3f59"))),(0,n.kt)("li",{parentName:"ul"},"renamed Demo folder to Layout ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b9f6d05708310889dd018961bf5df9d5edd66e12"},(0,n.kt)("inlineCode",{parentName:"a"},"b9f6d05"))),(0,n.kt)("li",{parentName:"ul"},"remove test exclusion ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/94dba3eaa864e25d34bcc33ab19494f83ecabb25"},(0,n.kt)("inlineCode",{parentName:"a"},"94dba3e"))),(0,n.kt)("li",{parentName:"ul"},"Accordion component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e672d59f86a79e69f15b5212e2953aa7c5fea1d1"},(0,n.kt)("inlineCode",{parentName:"a"},"e672d59"))),(0,n.kt)("li",{parentName:"ul"},"fix docusaurus url (removed trailing /) ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b6c59fc7733b3df47dca797906e8f7e40a2f4ada"},(0,n.kt)("inlineCode",{parentName:"a"},"b6c59fc"))),(0,n.kt)("li",{parentName:"ul"},"Item component stories - minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f0a99025b9093ecf2eb25fd4b4e401b5b532a481"},(0,n.kt)("inlineCode",{parentName:"a"},"f0a9902"))),(0,n.kt)("li",{parentName:"ul"},"eea logos and assets ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b435b511d64b0ca99bfd310d66bdbfd5985390cc"},(0,n.kt)("inlineCode",{parentName:"a"},"b435b51")))),(0,n.kt)("h3",{id:"012-beta0---2021-12-18"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.1...0.1.2-beta.0"},"0.1.2-beta.0")," - 2021-12-18"),(0,n.kt)("h4",{id:"\ufe0f-others-57"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Refs #140454 added github action to build docusaurus to the develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/abe6a72882a41c9bca3649a3a6697619038e1677"},(0,n.kt)("inlineCode",{parentName:"a"},"abe6a72")))),(0,n.kt)("h3",{id:"011---2021-12-16"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.1-beta.0...0.1.1"},"0.1.1")," - 2021-12-16"),(0,n.kt)("h4",{id:"\ufe0f-others-58"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Refs #140454 changed the following to volto-eea-design-system: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6791d413cf1b9e434970564d9e59ed56b41907f0"},(0,n.kt)("inlineCode",{parentName:"a"},"6791d41"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 corrected base url for docusaurus website build ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/98271b3d39e2e21dfb4a0e31c334dc9e87811e4a"},(0,n.kt)("inlineCode",{parentName:"a"},"98271b3"))),(0,n.kt)("li",{parentName:"ul"},"Initial test changes on design system/docusaurus. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9dad612f385cc9fde712809f07dbe2b7111432cf"},(0,n.kt)("inlineCode",{parentName:"a"},"9dad612"))),(0,n.kt)("li",{parentName:"ul"},"After prettier check ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9ec40b4fe9d8a18e99f774e1a96a55b286a9733a"},(0,n.kt)("inlineCode",{parentName:"a"},"9ec40b4"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 restore SearchWidget.jsx content and removed dummy text from docs intro page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7505df89d93ac99156834a0c50a8e2b174c506f8"},(0,n.kt)("inlineCode",{parentName:"a"},"7505df8"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 added references to eea and the storybook in the docusaurus footer ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/42bbfcdd67888c3a7a55875d67acae9f7eb753bb"},(0,n.kt)("inlineCode",{parentName:"a"},"42bbfcd"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 lint fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9502f2bdbd45262b38926def5b7b55efabf4c32c"},(0,n.kt)("inlineCode",{parentName:"a"},"9502f2b"))),(0,n.kt)("li",{parentName:"ul"},"Add SonarQube badges ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4e0a4053ff2313fc3939caab80d874470aca062"},(0,n.kt)("inlineCode",{parentName:"a"},"a4e0a40"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 brought changes from develop-itml and upgrades docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/207c873532e38fb7909cdc32a02bf50e575b66fa"},(0,n.kt)("inlineCode",{parentName:"a"},"207c873"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 removed extra content not needed by the docusaurus site ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bc68ebe8259c9b8ed6bc73df8102885554bbc4ed"},(0,n.kt)("inlineCode",{parentName:"a"},"bc68ebe"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 updated docusaurus to latest beta ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d68ed8a1660910067a09550626a5f0e8fbbeeac9"},(0,n.kt)("inlineCode",{parentName:"a"},"d68ed8a")))),(0,n.kt)("h3",{id:"011-beta0---2021-12-09"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.0...0.1.1-beta.0"},"0.1.1-beta.0")," - 2021-12-09"),(0,n.kt)("h4",{id:"\ufe0f-others-59"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Refs #140454 moved header and footer templates from volto-ims-theme: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2d5e56045c0b7d917153d95492dd340668b6222"},(0,n.kt)("inlineCode",{parentName:"a"},"e2d5e56"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 added website folder with docusaurus site skeleton ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6fd15f4365a207308c068fe7eb197c0717e93954"},(0,n.kt)("inlineCode",{parentName:"a"},"6fd15f4"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142794 added commented implementation of the header and footer area: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/773ad8784f4a03e4b600406999d3a274a3984d39"},(0,n.kt)("inlineCode",{parentName:"a"},"773ad87"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 changed the following: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4137ec42270c28cbe036ba11e9475f00a7a5cba3"},(0,n.kt)("inlineCode",{parentName:"a"},"4137ec4"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 removed storybook from volto-eea-design-system: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a129ffb485c4c55f19129a209d920da8f8f52418"},(0,n.kt)("inlineCode",{parentName:"a"},"a129ffb"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 added storybook as a dev dependency: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e04ae4e0294fbb4a09f367d1693a158d5a1e8f2f"},(0,n.kt)("inlineCode",{parentName:"a"},"e04ae4e"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 updated Breadcrumbs.jsx to latest version: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/63fe5076781f3cf2ce5c79641a5f1b45f298b476"},(0,n.kt)("inlineCode",{parentName:"a"},"63fe507"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 we should use jsx and not mdx for storybook tests ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3668e667f857cb3052b9d63cf27ec629fe1c8394"},(0,n.kt)("inlineCode",{parentName:"a"},"3668e66"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 updated eea-design-system readme with extra info on package contents ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d2efc3ddae7b91efc82cf3bce8fb8e42d696a780"},(0,n.kt)("inlineCode",{parentName:"a"},"d2efc3d"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142010 - Optimize Volto-addons gitflow pipelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3af46d2b14fa0b1ef44736f25b0f9ac93b23d18d"},(0,n.kt)("inlineCode",{parentName:"a"},"3af46d2"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 Renamed folders of docusaurus website: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/15bca7462ba1b3c626e2bf76597f6436aa5e9092"},(0,n.kt)("inlineCode",{parentName:"a"},"15bca74"))),(0,n.kt)("li",{parentName:"ul"},"Add demo story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/757c409271eb70baa54bff8bd7c71ba29aaa4f66"},(0,n.kt)("inlineCode",{parentName:"a"},"757c409"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142794 enabled minimum css so that header looks decent ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/adbe2335bacf5ae09541c3679a246a5ec28376a4"},(0,n.kt)("inlineCode",{parentName:"a"},"adbe233"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 use the develop branch for the readme linking, it's always more up to date ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/23dcf166d5d633df2a63ab6fa5bac4be086e99a3"},(0,n.kt)("inlineCode",{parentName:"a"},"23dcf16"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 added missing themes reference for the eea theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e9ca244fcedf0be420748b3e5347e98309b5d996"},(0,n.kt)("inlineCode",{parentName:"a"},"e9ca244"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 modified assets imports after move to volto-eea-design-system ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2250cc7ba4155c328837cea09e2e7d94afc984f8"},(0,n.kt)("inlineCode",{parentName:"a"},"2250cc7"))),(0,n.kt)("li",{parentName:"ul"},"Load footer in segment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/80d38a96284e7fa9416ba327a43e29eb94bebe55"},(0,n.kt)("inlineCode",{parentName:"a"},"80d38a9"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 bump package version to 1.1.0 from 0.1.1 from develop branch: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1314039ceb45d405af6bc4698b489bbd6562c6ae"},(0,n.kt)("inlineCode",{parentName:"a"},"1314039"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142794 keep toolbalWidth variables in case design system runs in an older version of Volto ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1a8b30562e4167fe36b095877db0b215d10cb620"},(0,n.kt)("inlineCode",{parentName:"a"},"1a8b305"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142794 changed the following: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fbb80b1dbd0e3078777b8b3496d4b207ba25639a"},(0,n.kt)("inlineCode",{parentName:"a"},"fbb80b1"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 moved storybook scripts to the scripts section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/705c4c365d26152d917c62991f3f8202bc75287d"},(0,n.kt)("inlineCode",{parentName:"a"},"705c4c3"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 removed dangling comma ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/514f24d503a1f05497696c22c7fdbf7bc19d4e54"},(0,n.kt)("inlineCode",{parentName:"a"},"514f24d"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 changed link to the start of the docs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0e16fdfc77e119da4e1f15183d9cb95ef9b4b6cf"},(0,n.kt)("inlineCode",{parentName:"a"},"0e16fdf"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 add h1 to the list of elements that are max 800px and centered ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d3c30f409aa4cb43810839f8960589456cc1b2e"},(0,n.kt)("inlineCode",{parentName:"a"},"7d3c30f"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using ims-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8d657d056cde5163cfe90ac66bc973f55d82e5e9"},(0,n.kt)("inlineCode",{parentName:"a"},"8d657d0")))),(0,n.kt)("h3",{id:"010---2021-11-17"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.0.1...0.1.0"},"0.1.0")," - 2021-11-17"),(0,n.kt)("h4",{id:"\ufe0f-others-60"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Refs #140454 changed the following to volto-eea-design-system: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/40d2af693e35abdda3ededc7aabcb17e9a12e781"},(0,n.kt)("inlineCode",{parentName:"a"},"40d2af6"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 elements folder now has the variables and overrides from pastanaga theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/595b4e60816d3e24950ede3afea6e5f2aa2d7008"},(0,n.kt)("inlineCode",{parentName:"a"},"595b4e6"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 use font awesome from SemanticUI instead of Pastanaga: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4e273ca1b9a2be1f169d12258ac2335c3ebeefff"},(0,n.kt)("inlineCode",{parentName:"a"},"4e273ca"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 removed the components customizations from volto-eea-design-system: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c98c260b549cd1db48bfe556e994692a4855b95d"},(0,n.kt)("inlineCode",{parentName:"a"},"c98c260"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 added customizations folder from volto-ims-theme to volto-eea-design-system: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff4bf44bd648ff179bd7c82d0cf80da968b291b0"},(0,n.kt)("inlineCode",{parentName:"a"},"ff4bf44"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 modules folder now has the variables and overrides from pastanaga theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2841b62c87e3242423bca1117c7e1793baa7974"},(0,n.kt)("inlineCode",{parentName:"a"},"f2841b6"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 customized Comments.jsx to remove unnecessary container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b2e95d7ae875a7fc85366c76ef35ce215dd7b5ff"},(0,n.kt)("inlineCode",{parentName:"a"},"b2e95d7"))),(0,n.kt)("li",{parentName:"ul"},"Refs #132149 added initial commit for volto-eea-design-system: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2934b911d589fde126f70363a61cbdd2e3dcf7c9"},(0,n.kt)("inlineCode",{parentName:"a"},"2934b91"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 collection folder now has the variables and overrides from pastanaga: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/213d4968e4efa380a389fb7ab40ec3196f030050"},(0,n.kt)("inlineCode",{parentName:"a"},"213d496"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 removed search widget customization, we can use volto-ims-theme for that file ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b7e8b0c4821584a84f940d8f780057122321aae7"},(0,n.kt)("inlineCode",{parentName:"a"},"b7e8b0c"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 stylelint quick fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5595925f68871135a07d703c8ba009b0172c7ccd"},(0,n.kt)("inlineCode",{parentName:"a"},"5595925"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 changed the following: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/769f4f9eca0ed9fffe0c8c49c56bcb123a203f3c"},(0,n.kt)("inlineCode",{parentName:"a"},"769f4f9"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 changed the following to the eea theme: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/06d8d86a7be81fd3feadf034eacfa61eb69743ab"},(0,n.kt)("inlineCode",{parentName:"a"},"06d8d86"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 eea site.variables now use all values from pastanaga's site.variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6535c0f4e1968822a232b017a55babd280716d88"},(0,n.kt)("inlineCode",{parentName:"a"},"6535c0f"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 simplified container overrides: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51250038527f2e4b1135a2b5bfc6adccc3f77a06"},(0,n.kt)("inlineCode",{parentName:"a"},"5125003"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/177d0ce854a8a963faa2aae9481cbcc7e340e0fa"},(0,n.kt)("inlineCode",{parentName:"a"},"177d0ce"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 globals folder now has the variables and overrides from pastanaga theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/116a0c338bd92dd14636a649476b4f00951e3734"},(0,n.kt)("inlineCode",{parentName:"a"},"116a0c3"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 changed the following: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2e7f42381b63e65bafac3b754d49b65daca9663d"},(0,n.kt)("inlineCode",{parentName:"a"},"2e7f423"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 modules folder now has the variables and overrides from pastanaga theme: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/27a201d57024a7c621f4943b8eb59a3247b6c89d"},(0,n.kt)("inlineCode",{parentName:"a"},"27a201d"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 text elements are now with a max width and centered within content-area: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bbed7bbfb3e79a371b7bf7dea2206cdbdcdfe76d"},(0,n.kt)("inlineCode",{parentName:"a"},"bbed7bb"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 added main.variables entries from pastanaga to eea theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1cbbc550436c889d1b297ae9e6880167fce28fe1"},(0,n.kt)("inlineCode",{parentName:"a"},"1cbbc55"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 modified theme image imports for component customizations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef3238a4d615fa1b496e83f4e6c4c0d27f3d68f4"},(0,n.kt)("inlineCode",{parentName:"a"},"ef3238a"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 modified container width to be auto: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2e8d2e0ebb3e4a55b7cf1b66c3dff222ef12aa18"},(0,n.kt)("inlineCode",{parentName:"a"},"2e8d2e0"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 modified several icons to use the \\f values instead of \\e: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c397145bc1e76916ae72a94faaf33f49bd9ca5a6"},(0,n.kt)("inlineCode",{parentName:"a"},"c397145"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 changed the following: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c518edacad9b8bed61ea50d318d8d43bf7f483a0"},(0,n.kt)("inlineCode",{parentName:"a"},"c518eda"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 ensure that main column isn't enlarged over the sidebar section on edit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f7a28684223494933bcd8ec1f6d86b1b3da17e10"},(0,n.kt)("inlineCode",{parentName:"a"},"f7a2868"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 changed the following to the form styling: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/eb92e054fe330730c1a44737cbbdf33985216cbb"},(0,n.kt)("inlineCode",{parentName:"a"},"eb92e05"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 modified path of theme folder location for image selection ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f8cca4594857ab4afd654f35e4ec97e4d3e04be4"},(0,n.kt)("inlineCode",{parentName:"a"},"f8cca45"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 added missing mobileScrollbarWidth variables introduced as part of the mobile navigation pull request ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/444c78d998199e703d7ecde01b3feb0d44c60977"},(0,n.kt)("inlineCode",{parentName:"a"},"444c78d"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 reference font and image path from ~volto-themes instead of relative ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ec93ed3a496673eed7d7ec07a2f76aaa6a29d7ca"},(0,n.kt)("inlineCode",{parentName:"a"},"ec93ed3"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 ensure that Volto doesn't crash when site module is set to eea: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51f2f27f5ba947b49b4b69fcf9b8890676cd1d7e"},(0,n.kt)("inlineCode",{parentName:"a"},"51f2f27"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 added tiny size prop to Breadcrumbs in order to have it as 12px ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/56a12e200c27c3a1826fa3088c34f762ed74dff7"},(0,n.kt)("inlineCode",{parentName:"a"},"56a12e2")))),(0,n.kt)("h3",{id:"001---2021-11-17"},"0.0.1 - 2021-11-17"),(0,n.kt)("h4",{id:"\ufe0f-others-61"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Initial commit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b0bdd445c95a20d088e00469f81028c16482640a"},(0,n.kt)("inlineCode",{parentName:"a"},"b0bdd44")))))}s.isMDXComponent=!0}}]); \ No newline at end of file diff --git a/docs/assets/js/41d5c757.8f7541fb.js b/docs/assets/js/41d5c757.8f7541fb.js deleted file mode 100644 index 3b29cc63f2..0000000000 --- a/docs/assets/js/41d5c757.8f7541fb.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";(self.webpackChunkwebsite=self.webpackChunkwebsite||[]).push([[6245],{3905:(e,a,t)=>{t.d(a,{Zo:()=>c,kt:()=>h});var i=t(7294);function n(e,a,t){return a in e?Object.defineProperty(e,a,{value:t,enumerable:!0,configurable:!0,writable:!0}):e[a]=t,e}function o(e,a){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);a&&(i=i.filter((function(a){return Object.getOwnPropertyDescriptor(e,a).enumerable}))),t.push.apply(t,i)}return t}function m(e){for(var a=1;a=0||(n[t]=e[t]);return n}(e,a);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(i=0;i=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(n[t]=e[t])}return n}var d=i.createContext({}),r=function(e){var a=i.useContext(d),t=a;return e&&(t="function"==typeof e?e(a):m(m({},a),e)),t},c=function(e){var a=r(e.components);return i.createElement(d.Provider,{value:a},e.children)},s="mdxType",f={inlineCode:"code",wrapper:function(e){var a=e.children;return i.createElement(i.Fragment,{},a)}},p=i.forwardRef((function(e,a){var t=e.components,n=e.mdxType,o=e.originalType,d=e.parentName,c=l(e,["components","mdxType","originalType","parentName"]),s=r(t),p=n,h=s["".concat(d,".").concat(p)]||s[p]||f[p]||o;return t?i.createElement(h,m(m({ref:a},c),{},{components:t})):i.createElement(h,m({ref:a},c))}));function h(e,a){var t=arguments,n=a&&a.mdxType;if("string"==typeof e||n){var o=t.length,m=new Array(o);m[0]=p;var l={};for(var d in a)hasOwnProperty.call(a,d)&&(l[d]=a[d]);l.originalType=e,l[s]="string"==typeof e?e:n,m[1]=l;for(var r=2;r{t.r(a),t.d(a,{contentTitle:()=>m,default:()=>s,frontMatter:()=>o,metadata:()=>l,toc:()=>d});var i=t(7462),n=(t(7294),t(3905));const o={title:"What's new"},m=void 0,l={unversionedId:"whatsnew",id:"whatsnew",title:"What's new",description:"EEA Design System (1.0)",source:"@site/docs/2-whatsnew.md",sourceDirName:".",slug:"/whatsnew",permalink:"/volto-eea-design-system/docs/whatsnew",editUrl:"https://github.com/eea/volto-eea-design-system/edit/contribute-documentation/website/docs/2-whatsnew.md",tags:[],version:"current",sidebarPosition:2,frontMatter:{title:"What's new"},sidebar:"sidebar",previous:{title:"Introduction",permalink:"/volto-eea-design-system/docs/intro"},next:{title:"Web development",permalink:"/volto-eea-design-system/docs/category/web-development"}},d=[{value:"EEA Design System (1.0)",id:"eea-design-system-10",children:[{value:"Components ready to be used",id:"components-ready-to-be-used",children:[],level:4},{value:"Future releases",id:"future-releases",children:[],level:4}],level:3},{value:"Unreleased - 2023-03-30T19:12:41.039Z",id:"unreleased---2023-03-30t191241039z",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes",children:[],level:4}],level:3},{value:"1.0.6 - 2023-03-29",id:"106---2023-03-29",children:[{value:"\ud83d\ude80 New Features",id:"-new-features",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-1",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-1",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others",children:[],level:4}],level:3},{value:"1.0.5 - 2023-03-28",id:"105---2023-03-28",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-1",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes",children:[],level:4}],level:3},{value:"1.0.4 - 2023-03-27",id:"104---2023-03-27",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-2",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-2",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-1",children:[],level:4}],level:3},{value:"1.0.3 - 2023-03-24",id:"103---2023-03-24",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-1",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-2",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-2",children:[],level:4}],level:3},{value:"1.0.2 - 2023-03-14",id:"102---2023-03-14",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-2",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-3",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-3",children:[],level:4}],level:3},{value:"1.0.1 - 2023-03-13",id:"101---2023-03-13",children:[],level:3},{value:"1.0.0 - 2023-03-13",id:"100---2023-03-13",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-3",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-4",children:[],level:4}],level:3},{value:"1.0.0-beta.6 - 2023-03-10",id:"100-beta6---2023-03-10",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-3",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-4",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-5",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-3",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-1",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-4",children:[],level:4}],level:3},{value:"1.0.0-beta.5 - 2023-03-07",id:"100-beta5---2023-03-07",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-6",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-4",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-5",children:[],level:4}],level:3},{value:"1.0.0-beta.4 - 2023-03-01",id:"100-beta4---2023-03-01",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-4",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-5",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-7",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-6",children:[],level:4}],level:3},{value:"1.0.0-beta.3 - 2023-02-21",id:"100-beta3---2023-02-21",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-5",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-6",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-8",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-5",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-2",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-7",children:[],level:4}],level:3},{value:"1.0.0-beta.2 - 2023-02-13",id:"100-beta2---2023-02-13",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-7",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-9",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-6",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-8",children:[],level:4}],level:3},{value:"1.0.0-beta.1 - 2023-02-09",id:"100-beta1---2023-02-09",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-6",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-10",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-9",children:[],level:4}],level:3},{value:"1.0.0-alpha.15 - 2023-02-08",id:"100-alpha15---2023-02-08",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-7",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-8",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-11",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-10",children:[],level:4}],level:3},{value:"1.0.0-alpha.14 - 2023-01-30",id:"100-alpha14---2023-01-30",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-12",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-11",children:[],level:4}],level:3},{value:"1.0.0-alpha.13.1 - 2023-01-30",id:"100-alpha131---2023-01-30",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-13",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-12",children:[],level:4}],level:3},{value:"1.0.0-alpha.13 - 2023-01-27",id:"100-alpha13---2023-01-27",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-8",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-9",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-14",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-13",children:[],level:4}],level:3},{value:"1.0.0-alpha.12 - 2023-01-24",id:"100-alpha12---2023-01-24",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-9",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-10",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-15",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-3",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-14",children:[],level:4}],level:3},{value:"1.0.0-alpha.11 - 2023-01-17",id:"100-alpha11---2023-01-17",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-10",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-11",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-16",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-4",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-15",children:[],level:4}],level:3},{value:"1.0.0-alpha.10 - 2023-01-13",id:"100-alpha10---2023-01-13",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-12",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-16",children:[],level:4}],level:3},{value:"1.0.0-alpha.9 - 2022-12-28",id:"100-alpha9---2022-12-28",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-17",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-17",children:[],level:4}],level:3},{value:"1.0.0-alpha.8 - 2022-12-23",id:"100-alpha8---2022-12-23",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-11",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-18",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-7",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-5",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-18",children:[],level:4}],level:3},{value:"1.0.0-alpha.7 - 2022-12-16",id:"100-alpha7---2022-12-16",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-12",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-13",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-19",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-19",children:[],level:4}],level:3},{value:"1.0.0-alpha.6 - 2022-12-07",id:"100-alpha6---2022-12-07",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-13",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-14",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-20",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-6",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-20",children:[],level:4}],level:3},{value:"1.0.0-alpha.5 - 2022-11-29",id:"100-alpha5---2022-11-29",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-14",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-15",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-21",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-8",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-7",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-21",children:[],level:4}],level:3},{value:"1.0.0-alpha.4 - 2022-11-22",id:"100-alpha4---2022-11-22",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-16",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-22",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-22",children:[],level:4}],level:3},{value:"1.0.0-alpha.3 - 2022-11-16",id:"100-alpha3---2022-11-16",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-15",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-17",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-23",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-9",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-23",children:[],level:4}],level:3},{value:"1.0.0-alpha.2 - 2022-10-28",id:"100-alpha2---2022-10-28",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-24",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-10",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-24",children:[],level:4}],level:3},{value:"1.0.0-alpha.1 - 2022-10-20",id:"100-alpha1---2022-10-20",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-25",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-11",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-8",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-25",children:[],level:4}],level:3},{value:"0.9.6 - 2022-12-16",id:"096---2022-12-16",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-26",children:[],level:4}],level:3},{value:"0.9.5 - 2022-10-20",id:"095---2022-10-20",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-18",children:[],level:4}],level:3},{value:"0.9.4 - 2022-10-19",id:"094---2022-10-19",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-19",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-26",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-27",children:[],level:4}],level:3},{value:"0.9.3 - 2022-10-04",id:"093---2022-10-04",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-20",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-27",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-9",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-28",children:[],level:4}],level:3},{value:"0.9.2 - 2022-09-27",id:"092---2022-09-27",children:[],level:3},{value:"0.9.1 - 2022-09-27",id:"091---2022-09-27",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-28",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-29",children:[],level:4}],level:3},{value:"0.9.0 - 2022-09-19",id:"090---2022-09-19",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-16",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-21",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-29",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-12",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-10",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-30",children:[],level:4}],level:3},{value:"0.8.1 - 2022-08-26",id:"081---2022-08-26",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-22",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-30",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-11",children:[],level:4}],level:3},{value:"0.8.0 - 2022-08-20",id:"080---2022-08-20",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-17",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-23",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-31",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-31",children:[],level:4}],level:3},{value:"0.7.6 - 2022-08-15",id:"076---2022-08-15",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-32",children:[],level:4}],level:3},{value:"0.7.5 - 2022-08-11",id:"075---2022-08-11",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-33",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-32",children:[],level:4}],level:3},{value:"0.7.3 - 2022-08-04",id:"073---2022-08-04",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-34",children:[],level:4}],level:3},{value:"0.7.2 - 2022-08-03",id:"072---2022-08-03",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-24",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-33",children:[],level:4}],level:3},{value:"0.7.1 - 2022-08-01",id:"071---2022-08-01",children:[],level:3},{value:"0.7.0 - 2022-08-01",id:"070---2022-08-01",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-18",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-25",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-35",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-34",children:[],level:4}],level:3},{value:"0.6.5 - 2022-07-06",id:"065---2022-07-06",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-26",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-36",children:[],level:4}],level:3},{value:"0.6.1 - 2022-07-01",id:"061---2022-07-01",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-19",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-37",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-13",children:[],level:4}],level:3},{value:"0.6.0 - 2022-07-01",id:"060---2022-07-01",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-27",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-38",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-14",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-12",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-35",children:[],level:4}],level:3},{value:"0.5.5 - 2022-06-23",id:"055---2022-06-23",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-28",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-39",children:[],level:4}],level:3},{value:"0.5.4 - 2022-06-16",id:"054---2022-06-16",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-29",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-40",children:[],level:4}],level:3},{value:"0.5.3 - 2022-06-16",id:"053---2022-06-16",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-30",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-41",children:[],level:4}],level:3},{value:"0.5.2 - 2022-06-14",id:"052---2022-06-14",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-20",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-42",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-15",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-36",children:[],level:4}],level:3},{value:"0.5.1 - 2022-06-13",id:"051---2022-06-13",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-43",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-37",children:[],level:4}],level:3},{value:"0.5.0 - 2022-06-11",id:"050---2022-06-11",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-21",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-31",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-44",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-38",children:[],level:4}],level:3},{value:"0.4.5 - 2022-06-08",id:"045---2022-06-08",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-45",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-39",children:[],level:4}],level:3},{value:"0.4.4 - 2022-06-08",id:"044---2022-06-08",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-22",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-32",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-46",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-13",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-40",children:[],level:4}],level:3},{value:"0.4.3 - 2022-06-03",id:"043---2022-06-03",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-33",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-47",children:[],level:4}],level:3},{value:"0.4.2 - 2022-06-02",id:"042---2022-06-02",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-48",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-14",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-41",children:[],level:4}],level:3},{value:"0.4.1 - 2022-06-02",id:"041---2022-06-02",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-23",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-34",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-49",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-16",children:[],level:4}],level:3},{value:"0.4.0 - 2022-06-01",id:"040---2022-06-01",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-24",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-35",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-50",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-15",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-42",children:[],level:4}],level:3},{value:"0.3.1 - 2022-05-19",id:"031---2022-05-19",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-36",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-51",children:[],level:4}],level:3},{value:"0.3.0 - 2022-05-17",id:"030---2022-05-17",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-25",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-37",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-52",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-43",children:[],level:4}],level:3},{value:"0.2.4 - 2022-05-13",id:"024---2022-05-13",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-53",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-44",children:[],level:4}],level:3},{value:"0.2.3 - 2022-04-29",id:"023---2022-04-29",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-26",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-54",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-16",children:[],level:4}],level:3},{value:"0.2.2 - 2022-04-22",id:"022---2022-04-22",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-38",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-55",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-17",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-45",children:[],level:4}],level:3},{value:"0.2.1 - 2022-04-08",id:"021---2022-04-08",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-39",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-46",children:[],level:4}],level:3},{value:"0.2.0 - 2022-04-04",id:"020---2022-04-04",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-27",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-40",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-56",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-18",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-47",children:[],level:4}],level:3},{value:"0.1.9 - 2022-03-25",id:"019---2022-03-25",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-28",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-41",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-57",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-19",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-48",children:[],level:4}],level:3},{value:"0.1.8 - 2022-03-18",id:"018---2022-03-18",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-42",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-58",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-20",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-17",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-49",children:[],level:4}],level:3},{value:"0.1.7 - 2022-03-15",id:"017---2022-03-15",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-29",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-43",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-59",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-21",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-18",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-50",children:[],level:4}],level:3},{value:"0.1.6 - 2022-03-11",id:"016---2022-03-11",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-30",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-44",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-60",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-22",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-51",children:[],level:4}],level:3},{value:"0.1.5 - 2022-03-08",id:"015---2022-03-08",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-31",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-45",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-61",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-23",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-19",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-52",children:[],level:4}],level:3},{value:"0.1.4 - 2022-03-01",id:"014---2022-03-01",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-62",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-20",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-53",children:[],level:4}],level:3},{value:"0.1.4-beta.0 - 2022-02-25",id:"014-beta0---2022-02-25",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-32",children:[],level:4}],level:3},{value:"0.1.3 - 2022-02-25",id:"013---2022-02-25",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-46",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-63",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-24",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-54",children:[],level:4}],level:3},{value:"0.1.2 - 2022-02-17",id:"012---2022-02-17",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-33",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-47",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-64",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-25",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-21",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-55",children:[],level:4}],level:3},{value:"0.1.2-beta.2 - 2022-01-03",id:"012-beta2---2022-01-03",children:[],level:3},{value:"0.1.2-beta.1 - 2021-12-22",id:"012-beta1---2021-12-22",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-56",children:[],level:4}],level:3},{value:"0.1.2-beta.0 - 2021-12-18",id:"012-beta0---2021-12-18",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-57",children:[],level:4}],level:3},{value:"0.1.1 - 2021-12-16",id:"011---2021-12-16",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-58",children:[],level:4}],level:3},{value:"0.1.1-beta.0 - 2021-12-09",id:"011-beta0---2021-12-09",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-59",children:[],level:4}],level:3},{value:"0.1.0 - 2021-11-17",id:"010---2021-11-17",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-60",children:[],level:4}],level:3},{value:"0.0.1 - 2021-11-17",id:"001---2021-11-17",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-61",children:[],level:4}],level:3}],r={toc:d},c="wrapper";function s(e){let{components:a,...t}=e;return(0,n.kt)(c,(0,i.Z)({},r,t,{components:a,mdxType:"MDXLayout"}),(0,n.kt)("h3",{id:"eea-design-system-10"},"EEA Design System (1.0)"),(0,n.kt)("h4",{id:"components-ready-to-be-used"},"Components ready to be used"),(0,n.kt)("p",null,"The following components are ready to be used as Volto ",(0,n.kt)("inlineCode",{parentName:"p"},"blocks"),", ",(0,n.kt)("inlineCode",{parentName:"p"},"slate")," integration, or via the advanced ",(0,n.kt)("inlineCode",{parentName:"p"},"block styler"),":"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Accordion ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Call to Action ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Callout - part of the Description ",(0,n.kt)("inlineCode",{parentName:"li"},"block"),", ",(0,n.kt)("inlineCode",{parentName:"li"},"slate")),(0,n.kt)("li",{parentName:"ul"},"Card - part of the Teaser ",(0,n.kt)("inlineCode",{parentName:"li"},"block")," and Listing ",(0,n.kt)("inlineCode",{parentName:"li"},"block"),", it includes several variations like round card e.g., used for Avatar"),(0,n.kt)("li",{parentName:"ul"},"Divider ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Headings ",(0,n.kt)("inlineCode",{parentName:"li"},"slate")),(0,n.kt)("li",{parentName:"ul"},"Hero ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Item ",(0,n.kt)("inlineCode",{parentName:"li"},"block")," - used for text with an icon (remixicon or custom SVG/image) on the left/right"),(0,n.kt)("li",{parentName:"ul"},"List ",(0,n.kt)("inlineCode",{parentName:"li"},"slate")," - ordered and unordered"),(0,n.kt)("li",{parentName:"ul"},"Quote ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Statistic ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Tag ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Table ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Tabs ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Timeline ",(0,n.kt)("inlineCode",{parentName:"li"},"block"))),(0,n.kt)("h4",{id:"future-releases"},"Future releases"),(0,n.kt)("p",null,"Below is a non-exhaustive list of the work-in-progress which is planned for future releases:"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Navigation Portlet (used on the left/right hand of content)"),(0,n.kt)("li",{parentName:"ul"},"Spacing/padding system. We want to add the ability for editors to consistently apply various spacing/padding on certain components in order to allow a better alignment when components are used together."),(0,n.kt)("li",{parentName:"ul"},"Improve docusaurus and storybook with more components, controls, and variations in order to better reflect what is possible in Volto.")),(0,n.kt)("p",null,"Generated by ",(0,n.kt)("a",{parentName:"p",href:"https://github.com/CookPete/auto-changelog"},(0,n.kt)("inlineCode",{parentName:"a"},"auto-changelog")),"."),(0,n.kt)("h3",{id:"unreleased---2023-03-30t191241039z"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.6...HEAD"},"Unreleased")," - 2023-03-30T19:12:41.039Z"),(0,n.kt)("h4",{id:"-enhancements"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(breadcrumbs,mega-menu): better screen readers support, see links instead of groups #309 from eea/firefox-accessibility-tab-issues ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d6b0b4adba8f04799491025fb41ac97e875bcce0"},(0,n.kt)("inlineCode",{parentName:"a"},"d6b0b4a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): align menu items with demo site for better testing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/82a5c84cfde81dd8243f3f9a2d1fcaa8ac4b1463"},(0,n.kt)("inlineCode",{parentName:"a"},"82a5c84"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumbs): updates on structure and story for accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/770c8c0bce88c5d9301ab0293a8e4865849bfeb2"},(0,n.kt)("inlineCode",{parentName:"a"},"770c8c0"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): Restructure Topics and Countries lists ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d816e7ab9cdf2f202ab994201c16241cfb26c33a"},(0,n.kt)("inlineCode",{parentName:"a"},"d816e7a"))),(0,n.kt)("li",{parentName:"ul"},"change(mega-menu): use lists for navigation, enhance voice over support for better accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d13137f024d6357514b85f184d219eb81dd585f2"},(0,n.kt)("inlineCode",{parentName:"a"},"d13137f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): firefox accessibility errors fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c7d35b92b90940b466ea016dbbb3f1c6dfa0c3ab"},(0,n.kt)("inlineCode",{parentName:"a"},"c7d35b9"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumbs): label modification for better screen reader output ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c967bef63ac6f622f5936235dd5590831a674d15"},(0,n.kt)("inlineCode",{parentName:"a"},"c967bef"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): clean up function after test ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/883eb73cbc3db6a1fadd0200118eafdce91b7aab"},(0,n.kt)("inlineCode",{parentName:"a"},"883eb73"))),(0,n.kt)("li",{parentName:"ul"},"change(mega-menu): added code to align countries left column subtitle with the right column ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1aa33dd7ac7154a91515eef688f276d664d5d7f3"},(0,n.kt)("inlineCode",{parentName:"a"},"1aa33dd"))),(0,n.kt)("li",{parentName:"ul"},"change(mega-menu): sub-title padding tweaks for better spacing normalization ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e08668dd9fd948e57628e5582e7a4a7f08d96451"},(0,n.kt)("inlineCode",{parentName:"a"},"e08668d"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumbs): fixed sizing of breadcrumbs list items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1761e984a6ffebbcca0c7b88128a01235fc6b903"},(0,n.kt)("inlineCode",{parentName:"a"},"1761e98")))),(0,n.kt)("h4",{id:"-internal-changes"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(megaMenu): remove comments and unused properties ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fa5f8f878421d879026aacd86e5390112b8852a1"},(0,n.kt)("inlineCode",{parentName:"a"},"fa5f8f8")))),(0,n.kt)("h3",{id:"106---2023-03-29"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.5...1.0.6"},"1.0.6")," - 2023-03-29"),(0,n.kt)("h4",{id:"-new-features"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat: add viewport-(width/height) less functions and fixed banner image url #329 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e8e70bdc81f4f301a9dce370867a873e55563048"},(0,n.kt)("inlineCode",{parentName:"a"},"e8e70bd"))),(0,n.kt)("li",{parentName:"ul"},"feat: add viewport-(width/height) less functions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/68300a3c34e66954c7ef3a6e52baa37431fbfa9e"},(0,n.kt)("inlineCode",{parentName:"a"},"68300a3")))),(0,n.kt)("h4",{id:"-enhancements-1"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): set full class name for remix icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f435e10034b04cab4aeb301d8521559f98be299e"},(0,n.kt)("inlineCode",{parentName:"a"},"f435e10"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner.jsx): use flattenToAppURL helper function to get image source URL ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24b13d7c09a498ca889d413135c9abc4e6cab9ad"},(0,n.kt)("inlineCode",{parentName:"a"},"24b13d7")))),(0,n.kt)("h4",{id:"-internal-changes-1"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(theme): update container width and margins in eea theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e4446a3af641ddca03f1f2833dd6e79535feb98"},(0,n.kt)("inlineCode",{parentName:"a"},"3e4446a")))),(0,n.kt)("h4",{id:"\ufe0f-others"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"horizontal overflow hidden in view mode ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f395f276df003480a219bae639f87bebcf35799f"},(0,n.kt)("inlineCode",{parentName:"a"},"f395f27")))),(0,n.kt)("h3",{id:"105---2023-03-28"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.4...1.0.5"},"1.0.5")," - 2023-03-28"),(0,n.kt)("h4",{id:"-new-features-1"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat: improve full-width class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70bba7e295dd237e7c579ef0446ff05e0c8529d8"},(0,n.kt)("inlineCode",{parentName:"a"},"70bba7e")))),(0,n.kt)("h4",{id:"-bug-fixes"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(banner): Add missing divider for time tag #327 from eea/banner-metadata ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c46a58336ec9eb2ce75d2637f3197f417e8ca326"},(0,n.kt)("inlineCode",{parentName:"a"},"c46a583"))),(0,n.kt)("li",{parentName:"ul"},"fix(banner): Add missing divider for time tag ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d68c395d368a267baef4422df6e72f63d099b75"},(0,n.kt)("inlineCode",{parentName:"a"},"7d68c39")))),(0,n.kt)("h3",{id:"104---2023-03-27"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.3...1.0.4"},"1.0.4")," - 2023-03-27"),(0,n.kt)("h4",{id:"-new-features-2"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(copyright): Add copyright prefix - Image - refs #250724 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6a727723c15aee499ed7cedc9f364c5e2c8014bb"},(0,n.kt)("inlineCode",{parentName:"a"},"6a72772")))),(0,n.kt)("h4",{id:"-internal-changes-2"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(copyright): Cleanup useless min-height - refs #250724 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2457df6376ac1a4d00f87eee90e61f66f7ffebb"},(0,n.kt)("inlineCode",{parentName:"a"},"f2457df")))),(0,n.kt)("h4",{id:"\ufe0f-others-1"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cfd6eba8b01eceff4e28ab7ab51b2457672ac172"},(0,n.kt)("inlineCode",{parentName:"a"},"cfd6eba")))),(0,n.kt)("h3",{id:"103---2023-03-24"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.2...1.0.3"},"1.0.3")," - 2023-03-24"),(0,n.kt)("h4",{id:"-bug-fixes-1"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix: improve full-width class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93222590a630b27f3dfccb7df0a50070c9c9901c"},(0,n.kt)("inlineCode",{parentName:"a"},"9322259"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): Remove z-index from subsite logo #320 from eea/subsite-logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/50911009918faf7d3064d97ea7b685ad71970521"},(0,n.kt)("inlineCode",{parentName:"a"},"5091100"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): Remove z-index from subsite logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d433a9788d76db0f1c08ef6bb2313f479c2bb19b"},(0,n.kt)("inlineCode",{parentName:"a"},"d433a97")))),(0,n.kt)("h4",{id:"-enhancements-2"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(header): Add search popup customizations from eea-website-theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/43e5a78be8efa1098ea0fc87f43f40f2b5d482c1"},(0,n.kt)("inlineCode",{parentName:"a"},"43e5a78"))),(0,n.kt)("li",{parentName:"ul"},"change(popup): create custom popup for better accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/036aac95509b6d78b2d3b251578a7de878e28371"},(0,n.kt)("inlineCode",{parentName:"a"},"036aac9"))),(0,n.kt)("li",{parentName:"ul"},"change(popup): added most important popup properties from Semantic ui implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/61f65bc0e5806aaac33b54db36d5360fd05a48cc"},(0,n.kt)("inlineCode",{parentName:"a"},"61f65bc"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): use custom-made Popup for better accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/10d0fcfb28ca97efe9fa5c0f6c9c350b76a73140"},(0,n.kt)("inlineCode",{parentName:"a"},"10d0fcf"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): use custom-made Popup for better accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9108bee5f671505be5199e72a4749bb0af0c0cb9"},(0,n.kt)("inlineCode",{parentName:"a"},"9108bee"))),(0,n.kt)("li",{parentName:"ul"},"change(popup): added also the basic property ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4497acddde258ed31cda09f4d905e003a1e4611"},(0,n.kt)("inlineCode",{parentName:"a"},"a4497ac"))),(0,n.kt)("li",{parentName:"ul"},"change(colors): update gray-4 color value #321 from eea/update-gray-4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f458ff0965debd3629cdd78362244836d0d42687"},(0,n.kt)("inlineCode",{parentName:"a"},"f458ff0"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): MetadataField now uses proper time tag when value is datetime ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4c4d34d5905a6771a281fc3db1174b4998c8fa8"},(0,n.kt)("inlineCode",{parentName:"a"},"b4c4d34"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): updated gray-4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b890df7693880fb965e41752eda64df992a1cdc4"},(0,n.kt)("inlineCode",{parentName:"a"},"b890df7"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): Fix error and empty div if no social links are present #319 from eea/footer-social ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/89222466b76a4720af73c0d516074efec0757c34"},(0,n.kt)("inlineCode",{parentName:"a"},"8922246"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): Fix error and empty div if no social links are present ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5d934a6545ae783ff41dc9e3eda389c571d1369b"},(0,n.kt)("inlineCode",{parentName:"a"},"5d934a6")))),(0,n.kt)("h4",{id:"\ufe0f-others-2"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"lint ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca41def7a3743a8328f26cec868bd20395b62446"},(0,n.kt)("inlineCode",{parentName:"a"},"ca41def"))),(0,n.kt)("li",{parentName:"ul"},"refactor ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9789201c7966cd711bfa85fe448f6f6df2583eaf"},(0,n.kt)("inlineCode",{parentName:"a"},"9789201"))),(0,n.kt)("li",{parentName:"ul"},"lint ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/646dfaa729b51367ce7545ea928837a481a5485a"},(0,n.kt)("inlineCode",{parentName:"a"},"646dfaa"))),(0,n.kt)("li",{parentName:"ul"},"(feat):Page Header Banner accessibility #316 from eea/accesibility-banner ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e587f4657de137273053480a3536a066ab032a29"},(0,n.kt)("inlineCode",{parentName:"a"},"e587f46"))),(0,n.kt)("li",{parentName:"ul"},"storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c8c77de372060328d535b190f30747797db0d23a"},(0,n.kt)("inlineCode",{parentName:"a"},"c8c77de"))),(0,n.kt)("li",{parentName:"ul"},"banner accesibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5e2f23bae30b5bb14d3f607e0cfeb85d0cfe4a9f"},(0,n.kt)("inlineCode",{parentName:"a"},"5e2f23b"))),(0,n.kt)("li",{parentName:"ul"},"prettier ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6ed78e50ee68accca10b06b0790c231ddeb1a1fa"},(0,n.kt)("inlineCode",{parentName:"a"},"6ed78e5"))),(0,n.kt)("li",{parentName:"ul"},"cleaning ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4391aa6c6611d1a15f5977eb150416909ad83bc1"},(0,n.kt)("inlineCode",{parentName:"a"},"4391aa6"))),(0,n.kt)("li",{parentName:"ul"},"lint 3 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2e0bed19a24d8abfa230212cd8c09f8313dc00f2"},(0,n.kt)("inlineCode",{parentName:"a"},"2e0bed1"))),(0,n.kt)("li",{parentName:"ul"},"lint 1 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4c958034870a9861c542359144e3c56f9157994"},(0,n.kt)("inlineCode",{parentName:"a"},"b4c9580")))),(0,n.kt)("h3",{id:"102---2023-03-14"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.1...1.0.2"},"1.0.2")," - 2023-03-14"),(0,n.kt)("h4",{id:"-bug-fixes-2"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(megamenu): topic menu title is now placed before content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6004bcb2683dedf6d6e18e61f33fde84a54c38d5"},(0,n.kt)("inlineCode",{parentName:"a"},"6004bcb"))),(0,n.kt)("li",{parentName:"ul"},"fix(megamenu): removed in depth nav_title renaming that set title wrongly to a-z topics ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/899ca0e2ba5f8f9eb61e4280d786f74a17c186b7"},(0,n.kt)("inlineCode",{parentName:"a"},"899ca0e")))),(0,n.kt)("h4",{id:"-enhancements-3"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(megamenu): removed special styling from at a glance mega menu section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fd0c4c8a06bb4c4aa26f57c453132d13d30bc691"},(0,n.kt)("inlineCode",{parentName:"a"},"fd0c4c8"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): renamed thematic information platforms to environmental information systems ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e7004a7ea39451dbf97e1faed222b0cc5a12d6ce"},(0,n.kt)("inlineCode",{parentName:"a"},"e7004a7"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): updated static image of footer sections ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ff3185edf9257c790d2a124d3f937f61d84e147"},(0,n.kt)("inlineCode",{parentName:"a"},"4ff3185")))),(0,n.kt)("h4",{id:"-documentation-changes"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(What's new): Update 'What's new' ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d7ed9d619aa60d087c3821a972ebe5bf5766521a"},(0,n.kt)("inlineCode",{parentName:"a"},"d7ed9d6")))),(0,n.kt)("h4",{id:"\ufe0f-others-3"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fixed accordion selector typo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f4cabc8f2222cf587af9e04b0ea196799b84202f"},(0,n.kt)("inlineCode",{parentName:"a"},"f4cabc8")))),(0,n.kt)("h3",{id:"101---2023-03-13"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0...1.0.1"},"1.0.1")," - 2023-03-13"),(0,n.kt)("h3",{id:"100---2023-03-13"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-beta.6...1.0.0"},"1.0.0")," - 2023-03-13"),(0,n.kt)("h4",{id:"-bug-fixes-3"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(Footer): Open internal links within the same page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5b3e409c71281800bb0fd137a1bac256efaca2b5"},(0,n.kt)("inlineCode",{parentName:"a"},"5b3e409")))),(0,n.kt)("h4",{id:"-enhancements-4"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(banner): use huge scale instead of full image for better performance ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/381c58e3521436f562d9e1727428a18435e2c0f3"},(0,n.kt)("inlineCode",{parentName:"a"},"381c58e")))),(0,n.kt)("h3",{id:"100-beta6---2023-03-10"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-beta.5...1.0.0-beta.6"},"1.0.0-beta.6")," - 2023-03-10"),(0,n.kt)("h4",{id:"-new-features-3"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(site): serve Roboto fonts from eea design system package instead of google fonts #311 from eea/roboto-library ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6a1b3e3864a0bc8602e9c434ff70746bba59f44"},(0,n.kt)("inlineCode",{parentName:"a"},"f6a1b3e")))),(0,n.kt)("h4",{id:"-bug-fixes-4"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix: full-width is now properly sized ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e2e3482d658febbd692112608df14279bed05e7"},(0,n.kt)("inlineCode",{parentName:"a"},"6e2e348"))),(0,n.kt)("li",{parentName:"ul"},"fix(storybook): add fontDisplay ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/078966a6a5c7277d36fcd31bb4c0704bcc43e523"},(0,n.kt)("inlineCode",{parentName:"a"},"078966a")))),(0,n.kt)("h4",{id:"-enhancements-5"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(image): copyright position fixes, moved image floating to image-block-container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53422e0ea345a7cb6e8cb07bf9006b48d86ded58"},(0,n.kt)("inlineCode",{parentName:"a"},"53422e0"))),(0,n.kt)("li",{parentName:"ul"},"change(colors:) update the design system colour palette #312 from eea/update-color-palette ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a5fb69465717dbdc0fe8091640a0e46f66199b65"},(0,n.kt)("inlineCode",{parentName:"a"},"a5fb694"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): added roboto library ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19de7b19fe795870102000bfebbf452d88b3a7b1"},(0,n.kt)("inlineCode",{parentName:"a"},"19de7b1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): added roboto library ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e9916215728dda0ff423f8196e7442588058042e"},(0,n.kt)("inlineCode",{parentName:"a"},"e991621"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): update colours ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3a2c1e1da8f0224e08f9f8afac3f0a74f7ce91d3"},(0,n.kt)("inlineCode",{parentName:"a"},"3a2c1e1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): restored site variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a48478bae9bdf1d9275be999e1ec8382f10a2fec"},(0,n.kt)("inlineCode",{parentName:"a"},"a48478b"))),(0,n.kt)("li",{parentName:"ul"},"change(copyright): implemented copyright hover design ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6b1244163de7ff58d1529fdd791502c862ee48ec"},(0,n.kt)("inlineCode",{parentName:"a"},"6b12441")))),(0,n.kt)("h4",{id:"-internal-changes-3"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(storybook): switched google fonts to true ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a8cae46582356cc24ec3cd7ec47e692bc67a6a5"},(0,n.kt)("inlineCode",{parentName:"a"},"4a8cae4"))),(0,n.kt)("li",{parentName:"ul"},"chore(colours): changed back yellow 6 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87c9bbc0ec9a2a0f4bf8eeb03525d43ce6f502be"},(0,n.kt)("inlineCode",{parentName:"a"},"87c9bbc"))),(0,n.kt)("li",{parentName:"ul"},"chore(lint): lint ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9b0f1256a8b0a583ac7724a8d88259c615d7e0c7"},(0,n.kt)("inlineCode",{parentName:"a"},"9b0f125"))),(0,n.kt)("li",{parentName:"ul"},"chore(storybook): lint ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/29bc809ab2e9fa4207b8b067785e6b17e91db3b4"},(0,n.kt)("inlineCode",{parentName:"a"},"29bc809")))),(0,n.kt)("h4",{id:"-documentation-changes-1"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(colours): colours update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/161007e2480aa79517c4ca772364a12a0756f1af"},(0,n.kt)("inlineCode",{parentName:"a"},"161007e"))),(0,n.kt)("li",{parentName:"ul"},"docs(colours): accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee342aa6af3863d243222eaa89709be2ba61f988"},(0,n.kt)("inlineCode",{parentName:"a"},"ee342aa")))),(0,n.kt)("h4",{id:"\ufe0f-others-4"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"test(cypress): Use latest stable Volto for testing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/20516617ae045f48c37a7ac7ad05c3d1090339b3"},(0,n.kt)("inlineCode",{parentName:"a"},"2051661"))),(0,n.kt)("li",{parentName:"ul"},"Update What's new section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/caa4b5d93affa7b63a332eaed9e73ea161a508cf"},(0,n.kt)("inlineCode",{parentName:"a"},"caa4b5d"))),(0,n.kt)("li",{parentName:"ul"},"Prepare final release 1.0.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef4383d05b295cbbb377f877522b9f83cd0873ef"},(0,n.kt)("inlineCode",{parentName:"a"},"ef4383d"))),(0,n.kt)("li",{parentName:"ul"},"lint fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/599f5098904f607bd694dd5d2e642c8820f11b3c"},(0,n.kt)("inlineCode",{parentName:"a"},"599f509"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/80cd3df3534e46e52ba246256c3d990a52753bbd"},(0,n.kt)("inlineCode",{parentName:"a"},"80cd3df")))),(0,n.kt)("h3",{id:"100-beta5---2023-03-07"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-beta.4...1.0.0-beta.5"},"1.0.0-beta.5")," - 2023-03-07"),(0,n.kt)("h4",{id:"-enhancements-6"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(carousel): tweak size of carousel dots for better touch interaction ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e1fb8230806de2e157a9a5ea87e63765769565b4"},(0,n.kt)("inlineCode",{parentName:"a"},"e1fb823"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): removed min width and height from links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac33219fb77f23bb5148355551a7aad9f453d2e7"},(0,n.kt)("inlineCode",{parentName:"a"},"ac33219")))),(0,n.kt)("h4",{id:"-internal-changes-4"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(hiddenStructure): Add hiddenStructure utility to be used with h1 heading on frontpage - refs #158717 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/672cca2401003f56e5ea104f18103ea090e38fd7"},(0,n.kt)("inlineCode",{parentName:"a"},"672cca2")))),(0,n.kt)("h4",{id:"\ufe0f-others-5"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fixed less build failure due to changes in footer.less ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/190bc8cfa88191b45808f1e27c6e2737ee3d15b1"},(0,n.kt)("inlineCode",{parentName:"a"},"190bc8c"))),(0,n.kt)("li",{parentName:"ul"},"lazyload bg img on footer also ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ae07162ba1b27bff58fed70eaabc28c78c5f45a3"},(0,n.kt)("inlineCode",{parentName:"a"},"ae07162"))),(0,n.kt)("li",{parentName:"ul"},"lazyload footer images ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a0633c9ec4ccfb63a48eb4e4c4a63c90daac1a37"},(0,n.kt)("inlineCode",{parentName:"a"},"a0633c9"))),(0,n.kt)("li",{parentName:"ul"},"Increase performance - mobile friendly ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/07d86c8e77568f91d50b3a45248de9427140a295"},(0,n.kt)("inlineCode",{parentName:"a"},"07d86c8"))),(0,n.kt)("li",{parentName:"ul"},"better useOnScreen hook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c214b6b76443f81c795ce2f3aa457562ec088b30"},(0,n.kt)("inlineCode",{parentName:"a"},"c214b6b"))),(0,n.kt)("li",{parentName:"ul"},"role change for accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5e758e0a7fa8c56ba688d0a43de5890686f14ea3"},(0,n.kt)("inlineCode",{parentName:"a"},"5e758e0"))),(0,n.kt)("li",{parentName:"ul"},"minimum tap dimension for mobile ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a25e9a8ba8a8a0f24d287ed7513e549ae2caab0f"},(0,n.kt)("inlineCode",{parentName:"a"},"a25e9a8"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-beta.5 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e4417e121477511c350ae3fbe4e70aadb445ed86"},(0,n.kt)("inlineCode",{parentName:"a"},"e4417e1"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using eea-website-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b227cf8a8c44b9d91e9fda8a7999fb0a42bacdca"},(0,n.kt)("inlineCode",{parentName:"a"},"b227cf8"))),(0,n.kt)("li",{parentName:"ul"},"feature(mobile): increased performance by lazy loading footer images #303 from eea/increase_performance ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/80d1df1c459680331d486f9e8e6a95c9db0adbf6"},(0,n.kt)("inlineCode",{parentName:"a"},"80d1df1"))),(0,n.kt)("li",{parentName:"ul"},"useOnScreen default export ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e6cfdd4dcb814aad328f97be7af41af071ccba6"},(0,n.kt)("inlineCode",{parentName:"a"},"3e6cfdd"))),(0,n.kt)("li",{parentName:"ul"},"use aria-labels on dropdown ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/27e144315416ceace0f01def03b5b24640f5c7da"},(0,n.kt)("inlineCode",{parentName:"a"},"27e1443"))),(0,n.kt)("li",{parentName:"ul"},"prettier ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7f838470c1bcc4e2be115d514d92a1b686a5e9b"},(0,n.kt)("inlineCode",{parentName:"a"},"a7f8384")))),(0,n.kt)("h3",{id:"100-beta4---2023-03-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-beta.3...1.0.0-beta.4"},"1.0.0-beta.4")," - 2023-03-01"),(0,n.kt)("h4",{id:"-new-features-4"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(footer): Add footer description ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ad0f714556c5b8c2fd95a2caea5c3a1e82c75d1"},(0,n.kt)("inlineCode",{parentName:"a"},"2ad0f71"))),(0,n.kt)("li",{parentName:"ul"},"feat(footer): Add footer description #306 from eea/footer-description ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bf655d133dd75b217c34b3d4303ad450a59f2c51"},(0,n.kt)("inlineCode",{parentName:"a"},"bf655d1")))),(0,n.kt)("h4",{id:"-bug-fixes-5"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(footer): Don't show empty row if description is not present ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ca7f7d3247668ae8583b8cd629856aac82eb07d"},(0,n.kt)("inlineCode",{parentName:"a"},"2ca7f7d"))),(0,n.kt)("li",{parentName:"ul"},"fix(footer): Add class for children ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c50d15cd6ed46d78ef10d48fd851ed7c4b5ddea"},(0,n.kt)("inlineCode",{parentName:"a"},"3c50d15"))),(0,n.kt)("li",{parentName:"ul"},"fix(search): Fix search links color #307 from eea/search-accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a76f48bab3a7d3f6b748eaa85b33266401372e40"},(0,n.kt)("inlineCode",{parentName:"a"},"a76f48b"))),(0,n.kt)("li",{parentName:"ul"},"fix(search): Fix search links color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/69c42effc5bdc3d31f18de74d77a3b7cc0018dc5"},(0,n.kt)("inlineCode",{parentName:"a"},"69c42ef")))),(0,n.kt)("h4",{id:"-enhancements-7"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(carousel): tweak card width and padding for better arrow alignment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e184f70062d622e1ec53e8e1e2b012c080e62d77"},(0,n.kt)("inlineCode",{parentName:"a"},"e184f70"))),(0,n.kt)("li",{parentName:"ul"},"change(storybook): include footer description in storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e904aa0850e101d736e8d045e822d9a58b75ff6a"},(0,n.kt)("inlineCode",{parentName:"a"},"e904aa0")))),(0,n.kt)("h4",{id:"\ufe0f-others-6"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-beta.4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8c335c56c5a2a76ea87f9da318055770f904e649"},(0,n.kt)("inlineCode",{parentName:"a"},"8c335c5"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/38b03333066416915b056f8ac45da4de87ed7184"},(0,n.kt)("inlineCode",{parentName:"a"},"38b0333")))),(0,n.kt)("h3",{id:"100-beta3---2023-02-21"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-beta.2...1.0.0-beta.3"},"1.0.0-beta.3")," - 2023-02-21"),(0,n.kt)("h4",{id:"-new-features-5"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(accordion): storybook accessibility by using buttons for titles #297 from eea/accessibility-accordion ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/809d52b203ef40fab735006b3b8358d68682f7cf"},(0,n.kt)("inlineCode",{parentName:"a"},"809d52b")))),(0,n.kt)("h4",{id:"-bug-fixes-6"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(dropdown): remove close on blur so that we can navigate links using keyboard ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5442715e022b3eb2eeb709ff597f815947ac45bd"},(0,n.kt)("inlineCode",{parentName:"a"},"5442715")))),(0,n.kt)("h4",{id:"-enhancements-8"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(language): dropdown to use links for proper keyboard navigation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6a7de30d9d229443d6d2070d9649129e6d35badf"},(0,n.kt)("inlineCode",{parentName:"a"},"6a7de30"))),(0,n.kt)("li",{parentName:"ul"},"refactor(images): cleared unused/renamed images assets ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/821f5c1da5c1e2350818cd9b8b82bc0b1893370d"},(0,n.kt)("inlineCode",{parentName:"a"},"821f5c1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Accessibility): add box-shadow on focus-visible components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b1adcc315a89c7d3431e542e8d1b6ec479a346e2"},(0,n.kt)("inlineCode",{parentName:"a"},"b1adcc3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(images): remove unused docusaurus svgs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5ef14cdb1923d803feb673559d41b3064211653"},(0,n.kt)("inlineCode",{parentName:"a"},"c5ef14c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add escape key functionality, actions from div to button to have proper focus state ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8081aa4e3b77f8a3dc89aa358408d75e3dca5579"},(0,n.kt)("inlineCode",{parentName:"a"},"8081aa4"))),(0,n.kt)("li",{parentName:"ul"},"change(language): restore dropdown duplication in order to properly show and hide language dropdown ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb28888ff19bd9894b58403e674f69de42ad8d09"},(0,n.kt)("inlineCode",{parentName:"a"},"cb28888"))),(0,n.kt)("li",{parentName:"ul"},"change(search): to reflect changes from eea-website-theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2cc35e0da6e6eac1473724293fcf6cd6b0a914b5"},(0,n.kt)("inlineCode",{parentName:"a"},"2cc35e0"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update p with h3 heading tag for header ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca1477b554f56423d40a33d8ee788c3f3bd3e341"},(0,n.kt)("inlineCode",{parentName:"a"},"ca1477b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer images): removed unused/renamed ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/186de6b23906e05ec700c3db5180a4d7f7e5ed68"},(0,n.kt)("inlineCode",{parentName:"a"},"186de6b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Accordion): div titles to buttons, test in mobile mega menu accordions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/eaad4b479e37ebf5ac004cfc5759e0be603000a7"},(0,n.kt)("inlineCode",{parentName:"a"},"eaad4b4"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): cleanup decorative images ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fedc4d4dc156f9c1394fcedcebece4fb87dc70b6"},(0,n.kt)("inlineCode",{parentName:"a"},"fedc4d4"))),(0,n.kt)("li",{parentName:"ul"},"change(accessibility): style outline instead of box-shadow ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53209f3b28c9a1dd54a8a86ab418b8bc2a8e01b3"},(0,n.kt)("inlineCode",{parentName:"a"},"53209f3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Footer): update mobile header size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/01ab7f0d9abe688b3d96aaec018838e1abefec73"},(0,n.kt)("inlineCode",{parentName:"a"},"01ab7f0"))),(0,n.kt)("li",{parentName:"ul"},"change(header): set the logo class directly on the link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f8fba508f925d9e6b86720fcb2c7dcfffee4ab5e"},(0,n.kt)("inlineCode",{parentName:"a"},"f8fba50"))),(0,n.kt)("li",{parentName:"ul"},"refactor(images): clear docusaurus unused pngs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/db5c61124182e3030f753f6baa294fbdecaa3798"},(0,n.kt)("inlineCode",{parentName:"a"},"db5c611"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header-images): removed unused ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8250d94421d9d1ee13144e71bc0938af2b7309f5"},(0,n.kt)("inlineCode",{parentName:"a"},"8250d94"))),(0,n.kt)("li",{parentName:"ul"},"change(language): hide language dropdown by default ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cc6064f72dcb4dbf96e9b05205cc796775d75205"},(0,n.kt)("inlineCode",{parentName:"a"},"cc6064f"))),(0,n.kt)("li",{parentName:"ul"},"change(header): top dropdown menu keyboard navigation #293 from eea/accessibility-megamenu-searchbox ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1e6fa658e52b9d5e6cc38f065b5707b592005241"},(0,n.kt)("inlineCode",{parentName:"a"},"1e6fa65"))),(0,n.kt)("li",{parentName:"ul"},"change(button): set focus styling for buttons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/33ebfcacb014fca365ae58079bfa5429d9007e54"},(0,n.kt)("inlineCode",{parentName:"a"},"33ebfca"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): Avoid devtools warning in FooterActions #304 from eea/avoid_warning ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d774824c5d3d0998b3440ac83152428cfa821087"},(0,n.kt)("inlineCode",{parentName:"a"},"d774824"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): Accessibility update p with h3 heading tag for theme sites title #302 from eea/footer-accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5bf70de97aee216a0b88f5843a290c6bcb5da6f2"},(0,n.kt)("inlineCode",{parentName:"a"},"5bf70de"))),(0,n.kt)("li",{parentName:"ul"},"change(documentation): Rename all image files to follow the agreed convention #301 from eea/refactor-image-filenames ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cfe44ef79943af9b9179df1b8ec5f8c743e8bb39"},(0,n.kt)("inlineCode",{parentName:"a"},"cfe44ef")))),(0,n.kt)("h4",{id:"-internal-changes-5"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(header): react syntax fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3add1271c785a92bea0ef925d7bc562cef1e0d92"},(0,n.kt)("inlineCode",{parentName:"a"},"3add127"))),(0,n.kt)("li",{parentName:"ul"},"chore(docusaurus): ignore website/.yarn ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0b33ffd1dda61b126e3cc5ff48888124d6aee41b"},(0,n.kt)("inlineCode",{parentName:"a"},"0b33ffd")))),(0,n.kt)("h4",{id:"-documentation-changes-2"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(guidelines): add image name convention ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/290747c8df6919199577bc7fce6a0e337cb57853"},(0,n.kt)("inlineCode",{parentName:"a"},"290747c")))),(0,n.kt)("h4",{id:"\ufe0f-others-7"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Avoid warning in FooterActions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0fe73d70e44e32be73049f3b5cf826de42115942"},(0,n.kt)("inlineCode",{parentName:"a"},"0fe73d7"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-beta.3 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/386c9032d39317b0bb95191bd59e3b7a99bded69"},(0,n.kt)("inlineCode",{parentName:"a"},"386c903")))),(0,n.kt)("h3",{id:"100-beta2---2023-02-13"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-beta.1...1.0.0-beta.2"},"1.0.0-beta.2")," - 2023-02-13"),(0,n.kt)("h4",{id:"-bug-fixes-7"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(footer): action and copyright #300 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/579f3e436e9608b38a2407a16c070345462bfccc"},(0,n.kt)("inlineCode",{parentName:"a"},"579f3e4"))),(0,n.kt)("li",{parentName:"ul"},"fix(footer): action or copyright links are simple a tags for external link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9af5070187ec975e58387f133afedcf1bbc47a50"},(0,n.kt)("inlineCode",{parentName:"a"},"9af5070"))),(0,n.kt)("li",{parentName:"ul"},"fix(accessibility): added navigation and footer id's for skip link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48354b908e7d1a87b4e1a965d225e8f1b3e0ac59"},(0,n.kt)("inlineCode",{parentName:"a"},"48354b9")))),(0,n.kt)("h4",{id:"-enhancements-9"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(footer): typos and modified footer links to be center aligned ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac23f046bcac06525985dff7520bb2766dec44ec"},(0,n.kt)("inlineCode",{parentName:"a"},"ac23f04"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): added gap for actions and copyright ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d32ddd3c28a48c6c2fb73dea373bb5873b6f76b"},(0,n.kt)("inlineCode",{parentName:"a"},"7d32ddd"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): modified footer gap ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8a820ac90c7d6664e4d4655c2c06edfa976c64e"},(0,n.kt)("inlineCode",{parentName:"a"},"b8a820a"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): removed extra text and date from copyright section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af47bbec298678fece6f879fbc18fe2e01ab0894"},(0,n.kt)("inlineCode",{parentName:"a"},"af47bbe"))),(0,n.kt)("li",{parentName:"ul"},"change(navigation): raise z-index of go to top link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/485ca7291da7a156b6b580c42e46d4f3602211bb"},(0,n.kt)("inlineCode",{parentName:"a"},"485ca72")))),(0,n.kt)("h4",{id:"-internal-changes-6"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(docs): Update eea.hbs template to beta - refs #158717 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/196538ed7bb9dab36a0efb4cef84e96dd3038ff8"},(0,n.kt)("inlineCode",{parentName:"a"},"196538e")))),(0,n.kt)("h4",{id:"\ufe0f-others-8"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change version to beta 2 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cbb07981454b28de840561eca281888e8bc29f9e"},(0,n.kt)("inlineCode",{parentName:"a"},"cbb0798"))),(0,n.kt)("li",{parentName:"ul"},"Beta release ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ad51b3c2bbb75f19af14fa56afdbddf57b6c95e"},(0,n.kt)("inlineCode",{parentName:"a"},"4ad51b3")))),(0,n.kt)("h3",{id:"100-beta1---2023-02-09"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.15...1.0.0-beta.1"},"1.0.0-beta.1")," - 2023-02-09"),(0,n.kt)("h4",{id:"-new-features-6"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(search): Add search suggestions style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6b2b77bbaba11541606ae2bc1f4e8ffc823f470d"},(0,n.kt)("inlineCode",{parentName:"a"},"6b2b77b"))),(0,n.kt)("li",{parentName:"ul"},"feat(search): Add search suggestions style #296 from eea/search-suggestions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3b0c956f569ebdc8400b88249c45067a1f881264"},(0,n.kt)("inlineCode",{parentName:"a"},"3b0c956")))),(0,n.kt)("h4",{id:"-enhancements-10"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(search): Add proper margin for search popup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/190c9f5be570215586086f42aebc7e36d6a26ea2"},(0,n.kt)("inlineCode",{parentName:"a"},"190c9f5")))),(0,n.kt)("h4",{id:"\ufe0f-others-9"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Extra bottom padding for header menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4f38c7a96d93fbcd47de4ec60176de2a667c5643"},(0,n.kt)("inlineCode",{parentName:"a"},"4f38c7a"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-beta.1 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4384ae28597c725f66ab0f1361ffd5167ee5e3a1"},(0,n.kt)("inlineCode",{parentName:"a"},"4384ae2"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c2ee90c1754f17a304897839adf482bc2a111212"},(0,n.kt)("inlineCode",{parentName:"a"},"c2ee90c")))),(0,n.kt)("h3",{id:"100-alpha15---2023-02-08"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.14...1.0.0-alpha.15"},"1.0.0-alpha.15")," - 2023-02-08"),(0,n.kt)("h4",{id:"-new-features-7"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(Card): add teaser card grid story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53cac0b0d1c40ad6ad8c9dc91c5d24bfb160f98e"},(0,n.kt)("inlineCode",{parentName:"a"},"53cac0b"))),(0,n.kt)("li",{parentName:"ul"},"feat(utilities): Complete list of text-align utilities - refs #160747 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/224fab602184b8974f588c91a7412e3d03e4e2f7"},(0,n.kt)("inlineCode",{parentName:"a"},"224fab6"))),(0,n.kt)("li",{parentName:"ul"},"feat(small): CSS for small HTML tag - refs #160747 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ad3c0adec4efa7cead69153d399c6452131c94cc"},(0,n.kt)("inlineCode",{parentName:"a"},"ad3c0ad"))),(0,n.kt)("li",{parentName:"ul"},"feat(fw-light): Add font weight light utility - refs #160747 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c44cf57db5845fbb9c07233aeedab79e1438f80f"},(0,n.kt)("inlineCode",{parentName:"a"},"c44cf57")))),(0,n.kt)("h4",{id:"-bug-fixes-8"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(card): teaser card dimensions on tablet size #290 from eea/teaser-card-grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/013fdf5cad347aee14bdc51553dbd95d972a7c66"},(0,n.kt)("inlineCode",{parentName:"a"},"013fdf5")))),(0,n.kt)("h4",{id:"-enhancements-11"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(card): added extra content for teaser card story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/30690ae6c499682853cb19db10b0cdc13c6f9508"},(0,n.kt)("inlineCode",{parentName:"a"},"30690ae"))),(0,n.kt)("li",{parentName:"ul"},"refactor(style-menu): add text-color to paragraphs styles #291 from eea/stylemenu-theme-colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2d783075b8089184e50b1763226af0d60ed11786"},(0,n.kt)("inlineCode",{parentName:"a"},"2d78307"))),(0,n.kt)("li",{parentName:"ul"},"change(header): Small fix in search popup #292 from eea/search-popup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/86c130539455b9a00b4b088b1871a98b9756df79"},(0,n.kt)("inlineCode",{parentName:"a"},"86c1305"))),(0,n.kt)("li",{parentName:"ul"},"refactor(style-menu): add text-color to paragraphs styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3446bc2704603bbfead7ff6c72d4e3a1ce81c7d4"},(0,n.kt)("inlineCode",{parentName:"a"},"3446bc2"))),(0,n.kt)("li",{parentName:"ul"},"change(color): darkCyan is now replaced everywhere by the new green ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef3791de6e2ea23487791c717eefc575e21fd283"},(0,n.kt)("inlineCode",{parentName:"a"},"ef3791d"))),(0,n.kt)("li",{parentName:"ul"},"change(header): Small fix in search popup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3d622ea99df5a1f1088f70998e38fd5bf43997cf"},(0,n.kt)("inlineCode",{parentName:"a"},"3d622ea")))),(0,n.kt)("h4",{id:"\ufe0f-others-10"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Release alpha 15 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3b72b29aaf9b3e1bfb7015808aafbd73a7167895"},(0,n.kt)("inlineCode",{parentName:"a"},"3b72b29")))),(0,n.kt)("h3",{id:"100-alpha14---2023-01-30"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.13.1...1.0.0-alpha.14"},"1.0.0-alpha.14")," - 2023-01-30"),(0,n.kt)("h4",{id:"-enhancements-12"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(mobile menu): integrate a-z topic with menu rendering logic #287 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/05d4c04603e6572cd6f9b255faa03c4636d8efdb"},(0,n.kt)("inlineCode",{parentName:"a"},"05d4c04"))),(0,n.kt)("li",{parentName:"ul"},"change(mobile menu): integrate a-z topic with menu rendering logic ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/246d3d839b773e2f6e1fff7fed5f9aa7a4968daa"},(0,n.kt)("inlineCode",{parentName:"a"},"246d3d8")))),(0,n.kt)("h4",{id:"\ufe0f-others-11"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"bump release to alpha 14 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/92f01975a809553ed122824c8407c74da9132c23"},(0,n.kt)("inlineCode",{parentName:"a"},"92f0197"))),(0,n.kt)("li",{parentName:"ul"},"link fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e1c12a132a1a99d773af359ebce071fb37c7e661"},(0,n.kt)("inlineCode",{parentName:"a"},"e1c12a1")))),(0,n.kt)("h3",{id:"100-alpha131---2023-01-30"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.13...1.0.0-alpha.13.1"},"1.0.0-alpha.13.1")," - 2023-01-30"),(0,n.kt)("h4",{id:"-enhancements-13"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(mobile menu): hardcode a-z topics to '/en/topics-in-depth' #286 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6436224e1922fb5d4b4053c874cebe5c57b2a6b9"},(0,n.kt)("inlineCode",{parentName:"a"},"6436224"))),(0,n.kt)("li",{parentName:"ul"},"change(mobile menu): hardcode a-z topics to '/en/topics-in-depth' ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5235b52047a80a8b626aa5ef3ef304c4d9a82003"},(0,n.kt)("inlineCode",{parentName:"a"},"5235b52")))),(0,n.kt)("h4",{id:"\ufe0f-others-12"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change release to 13.1 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70aa5648e7d9e14796445323b6ebaf7733cc7fd8"},(0,n.kt)("inlineCode",{parentName:"a"},"70aa564")))),(0,n.kt)("h3",{id:"100-alpha13---2023-01-27"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.12...1.0.0-alpha.13"},"1.0.0-alpha.13")," - 2023-01-27"),(0,n.kt)("h4",{id:"-new-features-8"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(utilities): added has--bg--top center and bottom utility classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/051e6d7c33aca7947802ddaa9fe68ac41ed7fe11"},(0,n.kt)("inlineCode",{parentName:"a"},"051e6d7")))),(0,n.kt)("h4",{id:"-bug-fixes-9"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(header): update green color used in page header #284 from eea/fix-banner-background ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/29d54db06487d18a367202725e525ac26e5b7c58"},(0,n.kt)("inlineCode",{parentName:"a"},"29d54db")))),(0,n.kt)("h4",{id:"-enhancements-14"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(site): added fixes from customVolto.css to design package ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51ba9b5df0186bdf075d803dea6032bac52e540f"},(0,n.kt)("inlineCode",{parentName:"a"},"51ba9b5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner): update banner background green color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fd4a552d9ff7a2973ebd6d18b6fbfd9bba5d98c6"},(0,n.kt)("inlineCode",{parentName:"a"},"fd4a552"))),(0,n.kt)("li",{parentName:"ul"},"change(mobile menu): changed link for a-z topics to point to in depth ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/721bf237d23d2a8e47fc2132912646c4ce182c9d"},(0,n.kt)("inlineCode",{parentName:"a"},"721bf23")))),(0,n.kt)("h4",{id:"\ufe0f-others-13"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"1.0.0-alpha.13 release #285 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c96694005e2d4160876f6a900db13940d42266d5"},(0,n.kt)("inlineCode",{parentName:"a"},"c966940"))),(0,n.kt)("li",{parentName:"ul"},"bump next version to alpha 13 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/897e9069062282f1b5cd8d86a02b8e54c40a4690"},(0,n.kt)("inlineCode",{parentName:"a"},"897e906"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5780dc7abeb24da5e77b043a34593ff7a44f350d"},(0,n.kt)("inlineCode",{parentName:"a"},"5780dc7")))),(0,n.kt)("h3",{id:"100-alpha12---2023-01-24"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.11...1.0.0-alpha.12"},"1.0.0-alpha.12")," - 2023-01-24"),(0,n.kt)("h4",{id:"-new-features-9"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(card, colors): visited color change and title on image option for cards #283 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e638ee6b77885fd5989179aa9e6532e46e475247"},(0,n.kt)("inlineCode",{parentName:"a"},"e638ee6")))),(0,n.kt)("h4",{id:"-bug-fixes-10"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(mobile menu): sub links when an accordion section is active ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bb3be81416340ad0e3e992cd4e75642fc50f8ad3"},(0,n.kt)("inlineCode",{parentName:"a"},"bb3be81")))),(0,n.kt)("h4",{id:"-enhancements-15"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(Card): create card template for stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2fa77f3f93935dd01cd5e3d77437fe8dc03721da"},(0,n.kt)("inlineCode",{parentName:"a"},"2fa77f3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Card): add image with title css ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e6e63e2362a27b0bbf4b8dd968f11a0dc87da2a"},(0,n.kt)("inlineCode",{parentName:"a"},"6e6e63e"))),(0,n.kt)("li",{parentName:"ul"},"change(card): implement title on image within image section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff6cc600978355e04dde704d014d2cbe27df1298"},(0,n.kt)("inlineCode",{parentName:"a"},"ff6cc60"))),(0,n.kt)("li",{parentName:"ul"},"change(card): added image card section, tweaked mobile heading size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0f879e15d22ae066f020d8188ef3e355c27d016c"},(0,n.kt)("inlineCode",{parentName:"a"},"0f879e1"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): moved image gradient overlay to a mixin.less file ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8b4928a87bfe5fae6f64c93d7c8f1f7a3045816c"},(0,n.kt)("inlineCode",{parentName:"a"},"8b4928a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): Update titles value and size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c35ad5c76caa00556f8a501d2e7d516464790dc4"},(0,n.kt)("inlineCode",{parentName:"a"},"c35ad5c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): applied image naming convention ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee7bc290084e198f9f94e40fbf44c6d9cb19d1ba"},(0,n.kt)("inlineCode",{parentName:"a"},"ee7bc29"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): added image for all storybook card examples ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3f194130bb6fb7b9ab04a7e1305f26fa135c23d2"},(0,n.kt)("inlineCode",{parentName:"a"},"3f19413"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): restored label value of metadata field when type isn't date ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/571a4f27fe73d0465b6482f70dd70b2dc47dffe8"},(0,n.kt)("inlineCode",{parentName:"a"},"571a4f2"))),(0,n.kt)("li",{parentName:"ul"},"change(card): title padding value for a more balance look ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/74b65563d973eb9c6afc534935e253f2705fe9ee"},(0,n.kt)("inlineCode",{parentName:"a"},"74b6556"))),(0,n.kt)("li",{parentName:"ul"},"change(card): removed uppercase transform from title on image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2948ae16f748911929910ac53d1e0acf96952317"},(0,n.kt)("inlineCode",{parentName:"a"},"2948ae1"))),(0,n.kt)("li",{parentName:"ul"},"change(colors, Docusaurus): Visited link colour change and thematic logo replacement #278 from eea/refactor-visited-link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f82d9781cc3b34443f181565c2ec1892d534f8e2"},(0,n.kt)("inlineCode",{parentName:"a"},"f82d978"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): visited link variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b209b2f7703641926c6d4b1f7162eef39b2a1ad8"},(0,n.kt)("inlineCode",{parentName:"a"},"b209b2f")))),(0,n.kt)("h4",{id:"-documentation-changes-3"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(colors): visited link update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ece77fec130de1d9d8014d40e7da975bf57061ee"},(0,n.kt)("inlineCode",{parentName:"a"},"ece77fe")))),(0,n.kt)("h4",{id:"\ufe0f-others-14"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix typos in footer gradient variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/40066405d97af838e986370101371a8162029e02"},(0,n.kt)("inlineCode",{parentName:"a"},"4006640"))),(0,n.kt)("li",{parentName:"ul"},"change version to alpha 12 instead of 1 final ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32250253f5d7fe9f01126136ad86b8a4f2f5c700"},(0,n.kt)("inlineCode",{parentName:"a"},"3225025"))),(0,n.kt)("li",{parentName:"ul"},"feature(card): new card variation with title on top of image #267 from eea/title-on-image-card ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2c0ca95700bb162bc1273c83f2fc4f591de8dcf0"},(0,n.kt)("inlineCode",{parentName:"a"},"2c0ca95"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/477d997513ef5152ab98e080ad07f927b5869705"},(0,n.kt)("inlineCode",{parentName:"a"},"477d997")))),(0,n.kt)("h3",{id:"100-alpha11---2023-01-17"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.10...1.0.0-alpha.11"},"1.0.0-alpha.11")," - 2023-01-17"),(0,n.kt)("h4",{id:"-new-features-10"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(docusaurus): Header and footer elements section #277 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0df271c4c79bd8a24750cfe44d69f32cb04a1b63"},(0,n.kt)("inlineCode",{parentName:"a"},"0df271c")))),(0,n.kt)("h4",{id:"-bug-fixes-11"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(banner): storybook date input and simplified gradient opacity ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7674d767bb770342828d6bea6953ce45b823943f"},(0,n.kt)("inlineCode",{parentName:"a"},"7674d76"))),(0,n.kt)("li",{parentName:"ul"},"fix(banner): re-added title class on banner title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d157994934c3da9af4e3dd37844f910bddf8377"},(0,n.kt)("inlineCode",{parentName:"a"},"6d15799")))),(0,n.kt)("h4",{id:"-enhancements-16"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(banner): sync storybook and Volto component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c9087cc8edc3fb27e0b96b509354861ec306f22a"},(0,n.kt)("inlineCode",{parentName:"a"},"c9087cc"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): removed margin from title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/17e592c4f3fd16a78069af50574e2ac608166a0f"},(0,n.kt)("inlineCode",{parentName:"a"},"17e592c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): sync storybook and Volto component #275 from eea/sync-page-banner-theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4331fb4a6d5744e7d7d6a001bca91265a22587fd"},(0,n.kt)("inlineCode",{parentName:"a"},"4331fb4")))),(0,n.kt)("h4",{id:"-documentation-changes-4"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(footer): updates on header elements ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b41c550475dc5a2eefcad5d75439601d079613e2"},(0,n.kt)("inlineCode",{parentName:"a"},"b41c550"))),(0,n.kt)("li",{parentName:"ul"},"docs(footer): add elements anatomy ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d9f0872f93a6f7572f798b2c001d3af00eb282e3"},(0,n.kt)("inlineCode",{parentName:"a"},"d9f0872")))),(0,n.kt)("h4",{id:"\ufe0f-others-15"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"add(banner): banner title css ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d0032474d2b57eb63a4b50a882ced2ee743a48e6"},(0,n.kt)("inlineCode",{parentName:"a"},"d003247"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-alpha.11 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/07e8f858b0bdeaa6a348c0bfc2b785f26017e1ea"},(0,n.kt)("inlineCode",{parentName:"a"},"07e8f85"))),(0,n.kt)("li",{parentName:"ul"},"renamed image elements as requested in review ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8541fb6739d3c935ed8d44a220114546b2aef682"},(0,n.kt)("inlineCode",{parentName:"a"},"8541fb6"))),(0,n.kt)("li",{parentName:"ul"},"remove(banner-gradiant): image gradiant in favour of text ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1b58520490be5e17ea4ce6fc98329d467dad3960"},(0,n.kt)("inlineCode",{parentName:"a"},"1b58520"))),(0,n.kt)("li",{parentName:"ul"},"update(gradient): use 8deg angle ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6fd597d8d7a83fdf8a27939e4c69dfc3975b6a81"},(0,n.kt)("inlineCode",{parentName:"a"},"6fd597d"))),(0,n.kt)("li",{parentName:"ul"},"update(gradiant): make it 0deg ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1bb2696375eef233b509e27d9d464b8343421430"},(0,n.kt)("inlineCode",{parentName:"a"},"1bb2696"))),(0,n.kt)("li",{parentName:"ul"},"remove(comment) referencing old verison of title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4226d42e34b119e057cf4e9878b6a99172cb976a"},(0,n.kt)("inlineCode",{parentName:"a"},"4226d42")))),(0,n.kt)("h3",{id:"100-alpha10---2023-01-13"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.9...1.0.0-alpha.10"},"1.0.0-alpha.10")," - 2023-01-13"),(0,n.kt)("h4",{id:"-bug-fixes-12"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(subsite): Fix logo size on subsite section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/65fff54503a9ace573dc7198f6bedb372e65d211"},(0,n.kt)("inlineCode",{parentName:"a"},"65fff54"))),(0,n.kt)("li",{parentName:"ul"},"fix(subsite): Fix logo size on subsite section #279 from eea/subsite-fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f6cf94811dbebc2081c0ca812570a72dd977b06"},(0,n.kt)("inlineCode",{parentName:"a"},"8f6cf94"))),(0,n.kt)("li",{parentName:"ul"},"fix(mega-menu): show sub grid only if there are children ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ddfbd82aab2be723ae230d703f72a8cd489f17d8"},(0,n.kt)("inlineCode",{parentName:"a"},"ddfbd82")))),(0,n.kt)("h4",{id:"\ufe0f-others-16"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Add variable definitions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/293fe65e2f24e6290e1286229169a77f9be4750e"},(0,n.kt)("inlineCode",{parentName:"a"},"293fe65"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-alpha.10 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7014d080ce114bd0bc039abeecbd7229333b0971"},(0,n.kt)("inlineCode",{parentName:"a"},"7014d08"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using advisory-board-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef58a6f5ad8deea26b1395a86778fe1159b7617b"},(0,n.kt)("inlineCode",{parentName:"a"},"ef58a6f"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/31d461662b9184a7bbe190e86f3c47fab39229fe"},(0,n.kt)("inlineCode",{parentName:"a"},"31d4616")))),(0,n.kt)("h3",{id:"100-alpha9---2022-12-28"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.8...1.0.0-alpha.9"},"1.0.0-alpha.9")," - 2022-12-28"),(0,n.kt)("h4",{id:"-enhancements-17"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(contextnav): Default title is text, custom title is link #273 from eea/context-nav-link-title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef7bdb7c40cd12c3d7e059074aa5797b8cb3378c"},(0,n.kt)("inlineCode",{parentName:"a"},"ef7bdb7")))),(0,n.kt)("h4",{id:"\ufe0f-others-17"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Show document and folder content-type in Navigation listing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8471db3b3d555e8602f1076d0f96a2ba38a12247"},(0,n.kt)("inlineCode",{parentName:"a"},"8471db3"))),(0,n.kt)("li",{parentName:"ul"},"Default title is text, custom title is link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1ae95b05b67423121566448c6b0cededca4b2b1d"},(0,n.kt)("inlineCode",{parentName:"a"},"1ae95b0"))),(0,n.kt)("li",{parentName:"ul"},"Context nav title link to # ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a27a6b78bcda0eb6037f73f1d36b06e00e3ffc52"},(0,n.kt)("inlineCode",{parentName:"a"},"a27a6b7")))),(0,n.kt)("h3",{id:"100-alpha8---2022-12-23"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.7...1.0.0-alpha.8"},"1.0.0-alpha.8")," - 2022-12-23"),(0,n.kt)("h4",{id:"-new-features-11"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(copyright): Align copyright options with Volto integration - refs #158210 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6bac7f6a9ad969af4be1c8c08a18a1144d5bad63"},(0,n.kt)("inlineCode",{parentName:"a"},"6bac7f6")))),(0,n.kt)("h4",{id:"-enhancements-18"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(logo): import theme site logos to the story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2f29136ca457f2419ca25a5292a036b2cd0fc402"},(0,n.kt)("inlineCode",{parentName:"a"},"2f29136"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logo): update logo and mega search gradient ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e11f44d59334fc02e3833a133b20e7b2240a2022"},(0,n.kt)("inlineCode",{parentName:"a"},"e11f44d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logos): convert logo names to lowercase ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/07b822864490b4cc63bef94f3306466ba5933e16"},(0,n.kt)("inlineCode",{parentName:"a"},"07b8228"))),(0,n.kt)("li",{parentName:"ul"},"change(item): use default logic of setting align class on content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6b5b47c10ce5a6d3710bedd492aa3d362d62d225"},(0,n.kt)("inlineCode",{parentName:"a"},"6b5b47c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logo): update logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/170efe5bfc7fd4988f4a4d4aac18ace32c360cd6"},(0,n.kt)("inlineCode",{parentName:"a"},"170efe5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logos): convert storybook logo names to lowercase ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4b24ec8796f8fffd87158a55f4ac19624ebe04c"},(0,n.kt)("inlineCode",{parentName:"a"},"c4b24ec"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logo): add eea roboto font logo variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/de1224a97568c0b48b509c65170a6080d8a058d4"},(0,n.kt)("inlineCode",{parentName:"a"},"de1224a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logo): add container and segment to logo story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/61eff16fcd080194fe1187656d67ef73a7dd4d6c"},(0,n.kt)("inlineCode",{parentName:"a"},"61eff16"))),(0,n.kt)("li",{parentName:"ul"},"change(item): removed requirement for aligned classes to be on content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/30c0d5d2de7ac05172cfb726b60a8bd763de7b31"},(0,n.kt)("inlineCode",{parentName:"a"},"30c0d5d"))),(0,n.kt)("li",{parentName:"ul"},"change(logos): cleanup eea logo reference to only eea-logo and eea-logo-white.svg ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2796e054a21a9025036c8b2882afe23a6984cd37"},(0,n.kt)("inlineCode",{parentName:"a"},"2796e05")))),(0,n.kt)("h4",{id:"-internal-changes-7"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(npmignore): Reduce npmjs package size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/164c8a5ad0f7241eb8e30c53eccfdff9cec1fb93"},(0,n.kt)("inlineCode",{parentName:"a"},"164c8a5"))),(0,n.kt)("li",{parentName:"ul"},"chore(npmignore): Reduce npmjs package size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ade9d5ba3411efc47cdd3b461fd60b2b7389f9be"},(0,n.kt)("inlineCode",{parentName:"a"},"ade9d5b"))),(0,n.kt)("li",{parentName:"ul"},"chore(docs): renamed logo mdx to md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/52e9d46bb2decabdc935eeee84dacc3e063e3616"},(0,n.kt)("inlineCode",{parentName:"a"},"52e9d46")))),(0,n.kt)("h4",{id:"-documentation-changes-5"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(logos): svgs without classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/28a58336ac57deb3eec7287b6fbf5cd58ada8a7e"},(0,n.kt)("inlineCode",{parentName:"a"},"28a5833"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): add dark mode logos ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ccc1609643cff5f851942ab95198d44252ddb22e"},(0,n.kt)("inlineCode",{parentName:"a"},"ccc1609"))),(0,n.kt)("li",{parentName:"ul"},"docs(logo): update eea logos and add logo wrapper ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91cdd6636dfb102e4712177ad5fa7e952eb6ea45"},(0,n.kt)("inlineCode",{parentName:"a"},"91cdd66"))),(0,n.kt)("li",{parentName:"ul"},"docs(logo): update logos on docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/760e1012892ab28b25e8d9b0de50cfa0ba07addf"},(0,n.kt)("inlineCode",{parentName:"a"},"760e101"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): updated svgs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dc224e1dbcf46a29b0639afde694d44221affe27"},(0,n.kt)("inlineCode",{parentName:"a"},"dc224e1"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): add thematic logos ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5a21a3076e506e6bd7f82fa97697f81825e87255"},(0,n.kt)("inlineCode",{parentName:"a"},"5a21a30"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): add zipped svgs for download ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5855bf83b471a9849ee71370d7eee4f6a1d12a44"},(0,n.kt)("inlineCode",{parentName:"a"},"5855bf8"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): wisef logo update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f90b59d03c1c4eaa760dd981e082f237c09e96f"},(0,n.kt)("inlineCode",{parentName:"a"},"8f90b59"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): move to static, add download ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8c1fd5f9a64bd8fb976687fe5ed96bc515b95393"},(0,n.kt)("inlineCode",{parentName:"a"},"8c1fd5f"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): improve eea logo visibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/82188abb99aa080d7bea15975497e03c653d311c"},(0,n.kt)("inlineCode",{parentName:"a"},"82188ab"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): change eea logo to svg ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f57b846ca9d635f5af4d1adeee280a5adcaf7b5f"},(0,n.kt)("inlineCode",{parentName:"a"},"f57b846")))),(0,n.kt)("h4",{id:"\ufe0f-others-18"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"logo update or docusaurus thematic logo listing #274 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dde90beb68ac129e476ece22e7ced4640786f094"},(0,n.kt)("inlineCode",{parentName:"a"},"dde90be"))),(0,n.kt)("li",{parentName:"ul"},"(feat): Add ability to disable the language select from website top menu - refs #158616 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/411c8e4afaf0b2b9edfdeeecdca22aa4cc41f329"},(0,n.kt)("inlineCode",{parentName:"a"},"411c8e4"))),(0,n.kt)("li",{parentName:"ul"},"Proof reading page header section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/230239e1b22734fb8606656985bc5e513731e244"},(0,n.kt)("inlineCode",{parentName:"a"},"230239e"))),(0,n.kt)("li",{parentName:"ul"},"bump package version ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4628bed134abc76e38a243d4e98143e19cef989"},(0,n.kt)("inlineCode",{parentName:"a"},"b4628be"))),(0,n.kt)("li",{parentName:"ul"},"feature(docusaurus, storybook): logos selection for sites plus inverted options #253 from eea/doc-logo-page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dbfc90d035dc40e9d4054347f00fde4de486d63d"},(0,n.kt)("inlineCode",{parentName:"a"},"dbfc90d"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using advisory-board-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4769e987d525f5dcafac8e6cf8a89fd8111667d"},(0,n.kt)("inlineCode",{parentName:"a"},"c4769e9"))),(0,n.kt)("li",{parentName:"ul"},"test(Jenkins): Run tests and cypress with latest canary @plone/volto ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/92feea09796c9ef0530f65fa1d34139905133215"},(0,n.kt)("inlineCode",{parentName:"a"},"92feea0")))),(0,n.kt)("h3",{id:"100-alpha7---2022-12-16"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.6...1.0.0-alpha.7"},"1.0.0-alpha.7")," - 2022-12-16"),(0,n.kt)("h4",{id:"-new-features-12"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(item): normalized size for image or icon items #258 from eea/refactor-items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/945170f1503be68aa3fc1bd950a97eeebfd81037"},(0,n.kt)("inlineCode",{parentName:"a"},"945170f")))),(0,n.kt)("h4",{id:"-bug-fixes-13"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(card): rounded after removal of has--rounded--true style class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4727afdecf3d25e3e5bc98d472b976d60154183"},(0,n.kt)("inlineCode",{parentName:"a"},"d4727af"))),(0,n.kt)("li",{parentName:"ul"},"fix(item): removed margin set for description which pushed the text from icon ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d9d40310fcfb1bd214bd901b79dcbac41e9a8518"},(0,n.kt)("inlineCode",{parentName:"a"},"d9d4031"))),(0,n.kt)("li",{parentName:"ul"},"fix(project): Proper paths if volto-eea-design-system package is not installed, but in development #270 from eea/correct_paths ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0f8ee8d770f1b26d4315be8f615d58a61acbafc8"},(0,n.kt)("inlineCode",{parentName:"a"},"0f8ee8d")))),(0,n.kt)("h4",{id:"-enhancements-19"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(item): update icon variations and paddings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6a407b3e7f743eb7b73247bcc5d489685d567bc6"},(0,n.kt)("inlineCode",{parentName:"a"},"6a407b3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): update spacing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2fd91c4aa1a76dd2f7099d3f24f94067e95e06a1"},(0,n.kt)("inlineCode",{parentName:"a"},"2fd91c4"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): initial values for new sizes & add description class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3546296f0cacb96411c8c67b98e9763e2b843b05"},(0,n.kt)("inlineCode",{parentName:"a"},"3546296"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): add icon and more size options ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1120bb62d9ab908c5c97a4871a66e3c08c5c7ece"},(0,n.kt)("inlineCode",{parentName:"a"},"1120bb6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): update image and icon sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8025735121aaa0024a5783afbde0f6be3715618"},(0,n.kt)("inlineCode",{parentName:"a"},"b802573"))),(0,n.kt)("li",{parentName:"ul"},"change(item): set same height as width on item images ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/69cbd23ca53dd68ae9f7c00a69ed2d8820746305"},(0,n.kt)("inlineCode",{parentName:"a"},"69cbd23"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): update item part 2 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9812ae2e41ac86cfd4c56e13af8af570b752966f"},(0,n.kt)("inlineCode",{parentName:"a"},"9812ae2"))),(0,n.kt)("li",{parentName:"ul"},"change(item): rename large to big class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24ff1275b9a0556b85ab86757bc0c84f50357e7d"},(0,n.kt)("inlineCode",{parentName:"a"},"24ff127"))),(0,n.kt)("li",{parentName:"ul"},"change(item): added tiny size that outputs 24px icon sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ea96363a957f9033cb5bfe2d7fd311e92377493"},(0,n.kt)("inlineCode",{parentName:"a"},"2ea9636"))),(0,n.kt)("li",{parentName:"ul"},"change(image): added preview image size default to 400px ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a0aa867e932d1b3c0bf449553726d6feb645853e"},(0,n.kt)("inlineCode",{parentName:"a"},"a0aa867"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): update operator for condition controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/149ccb2f1e498c27e5550214cdee25eb808ab27e"},(0,n.kt)("inlineCode",{parentName:"a"},"149ccb2")))),(0,n.kt)("h4",{id:"\ufe0f-others-19"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Proper paths if the package is not installed, but in development ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7a2655f7cf9d3c687f172eefcf2b4cff4b12f832"},(0,n.kt)("inlineCode",{parentName:"a"},"7a2655f"))),(0,n.kt)("li",{parentName:"ul"},"Update .project.eslintrc.js ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a2fd3f23473325976c2b146e066eeb538d140dce"},(0,n.kt)("inlineCode",{parentName:"a"},"a2fd3f2"))),(0,n.kt)("li",{parentName:"ul"},"added back descriptionDistance variable until package release ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3af811a8d86a132e16de118697ba5a4302a8a4da"},(0,n.kt)("inlineCode",{parentName:"a"},"3af811a"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-alpha.7 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e66bcc296b389bc55073e7f99681534977dce3a"},(0,n.kt)("inlineCode",{parentName:"a"},"7e66bcc"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using cca-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce47e9b163bcb4eda988e3a87718b54ffbd3f99f"},(0,n.kt)("inlineCode",{parentName:"a"},"ce47e9b"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb531c933c907bdbb88c9de0f1df2eb7ce899a4c"},(0,n.kt)("inlineCode",{parentName:"a"},"cb531c9")))),(0,n.kt)("h3",{id:"100-alpha6---2022-12-07"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.5...1.0.0-alpha.6"},"1.0.0-alpha.6")," - 2022-12-07"),(0,n.kt)("h4",{id:"-new-features-13"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(copyright): create copyright component and import it in banner ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8fcde9df2915585e2336024436cef76642820d75"},(0,n.kt)("inlineCode",{parentName:"a"},"8fcde9d"))),(0,n.kt)("li",{parentName:"ul"},"feat(Header): add hideSearch prop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/13ddfe59a6bd7fe2050b70ac4524a6f6c5c169ea"},(0,n.kt)("inlineCode",{parentName:"a"},"13ddfe5"))),(0,n.kt)("li",{parentName:"ul"},"feat(Docusaurus): Image copyright information #257 from eea/image-copyright-info ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/21195153240da052acb7171f7904449ed7854cb3"},(0,n.kt)("inlineCode",{parentName:"a"},"2119515")))),(0,n.kt)("h4",{id:"-bug-fixes-14"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(tags): content gap when using tags-content wrapper ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4eb9b89d4ea09f936b7fcdc22a84105fd8639af"},(0,n.kt)("inlineCode",{parentName:"a"},"c4eb9b8")))),(0,n.kt)("h4",{id:"-enhancements-20"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(hero): add copyright component to hero ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0fa88fad3e7b48789dc6d0462b9f78dd359b8949"},(0,n.kt)("inlineCode",{parentName:"a"},"0fa88fa"))),(0,n.kt)("li",{parentName:"ul"},"change(copyright): implementation to add classes on content sections ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e10bde674f2b1f722ec6c70734e4a72c018f4afe"},(0,n.kt)("inlineCode",{parentName:"a"},"e10bde6"))),(0,n.kt)("li",{parentName:"ul"},"change(copyright): removed color variant ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/747b8a27155569247d4975837587e3320327fce9"},(0,n.kt)("inlineCode",{parentName:"a"},"747b8a2"))),(0,n.kt)("li",{parentName:"ul"},"change(copyright): removed copyrightVariant from Banner and Hero stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac62e079d4eafb818f9cae25880a04d9e069d107"},(0,n.kt)("inlineCode",{parentName:"a"},"ac62e07"))),(0,n.kt)("li",{parentName:"ul"},"change(tagList): modified implementation to align to volto-tags-block ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7a57a3d4bf7ede4b5ab5f3ef045d664aaaf67f2c"},(0,n.kt)("inlineCode",{parentName:"a"},"7a57a3d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(copyright): remove data section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/52cb09dc363bb0a2e363ec86dcefb4c57e07a14d"},(0,n.kt)("inlineCode",{parentName:"a"},"52cb09d"))),(0,n.kt)("li",{parentName:"ul"},"change(copyright): line height to match page header implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a56254e7588cfc6aca999f550084d79dca6e9a6c"},(0,n.kt)("inlineCode",{parentName:"a"},"a56254e"))),(0,n.kt)("li",{parentName:"ul"},"change(copyright): now uses text color css variable with fallback to white ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee7268ba359f079dfce45fd0fe91f75ae5c37e94"},(0,n.kt)("inlineCode",{parentName:"a"},"ee7268b")))),(0,n.kt)("h4",{id:"-documentation-changes-6"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(copyright): copyright documentation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a90ed766e60b5eb5b027beb36d2b1967d2c41fa3"},(0,n.kt)("inlineCode",{parentName:"a"},"a90ed76")))),(0,n.kt)("h4",{id:"\ufe0f-others-20"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Update usage_markdown.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f76d4a242f795451d64ef2d192d0006a0ed5eac1"},(0,n.kt)("inlineCode",{parentName:"a"},"f76d4a2"))),(0,n.kt)("li",{parentName:"ul"},"grammar fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb2a5a5fd9dfc01eccc179721b06988742f5b2e2"},(0,n.kt)("inlineCode",{parentName:"a"},"cb2a5a5"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-alpha.6 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6ca32f03c1860781d3c1c4ff9558713ad8acac95"},(0,n.kt)("inlineCode",{parentName:"a"},"6ca32f0"))),(0,n.kt)("li",{parentName:"ul"},"feature(copyright): image information #250 from eea/feature-copyright ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a8618c7f0230a19b6c973aa2c9646463de9eeffb"},(0,n.kt)("inlineCode",{parentName:"a"},"a8618c7"))),(0,n.kt)("li",{parentName:"ul"},"lint fix by introducing local variable tagsGap ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7b6c0ae2ebfed06221700faf9a0d0c2bdeb60d99"},(0,n.kt)("inlineCode",{parentName:"a"},"7b6c0ae"))),(0,n.kt)("li",{parentName:"ul"},"Update 3-images.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1b0ef033f9c8a36aaa739f268263f24a6d0fb473"},(0,n.kt)("inlineCode",{parentName:"a"},"1b0ef03")))),(0,n.kt)("h3",{id:"100-alpha5---2022-11-29"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.4...1.0.0-alpha.5"},"1.0.0-alpha.5")," - 2022-11-29"),(0,n.kt)("h4",{id:"-new-features-14"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(Iconography): import and showcase remix icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/777112f7e77ce8c74c3fd4384bff6ec9694aba04"},(0,n.kt)("inlineCode",{parentName:"a"},"777112f")))),(0,n.kt)("h4",{id:"-bug-fixes-15"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(docusaurus): right bar overflow fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/197c763624f70556c62379bc0751763725d0fed3"},(0,n.kt)("inlineCode",{parentName:"a"},"197c763"))),(0,n.kt)("li",{parentName:"ul"},"fix(lists): bullet position by using padding instead of margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0ecae2e7fe61b98d8795f876a525fbbc873bf799"},(0,n.kt)("inlineCode",{parentName:"a"},"0ecae2e"))),(0,n.kt)("li",{parentName:"ul"},"fix(label): color for yellow variant as white isn't accessible on yellow color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91d8880a829d2728c49a1953f6d2d8c2c812990c"},(0,n.kt)("inlineCode",{parentName:"a"},"91d8880"))),(0,n.kt)("li",{parentName:"ul"},"fix(contentBox): avoid text decoration for header-link added on cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ccb592db6f465cec59124b94fb6918b513bb761"},(0,n.kt)("inlineCode",{parentName:"a"},"3ccb592"))),(0,n.kt)("li",{parentName:"ul"},"fix(label): margin value for ribbon image left and right margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f8e1129734709d6034539a6522105af9d43fef20"},(0,n.kt)("inlineCode",{parentName:"a"},"f8e1129")))),(0,n.kt)("h4",{id:"-enhancements-21"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): eea color palette in separate file ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6c855df9c2238f8d21860ade4578aa969b68448e"},(0,n.kt)("inlineCode",{parentName:"a"},"6c855df"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): classes for color boxes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/80219d52bc63842d8e6382dbbe7d43cdc8a29b9c"},(0,n.kt)("inlineCode",{parentName:"a"},"80219d5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): move supplementary, state and link colors to partials ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2776be32615d7a6bdd8561a523fb9cfb1a85e38b"},(0,n.kt)("inlineCode",{parentName:"a"},"2776be3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): fix side menu / moved more content in palette partial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f5b70775471369ca8f3193784b9bc66caa8fb76f"},(0,n.kt)("inlineCode",{parentName:"a"},"f5b7077"))),(0,n.kt)("li",{parentName:"ul"},"change(tag): set gap on tags element for margin between tag elements ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/726bc6da821a366a5afa03659e614cc73ed02c0b"},(0,n.kt)("inlineCode",{parentName:"a"},"726bc6d")))),(0,n.kt)("h4",{id:"-internal-changes-8"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(colours): fix wrong class name ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51ad0a8232f7f35cae05f5861d7822db852b3f8d"},(0,n.kt)("inlineCode",{parentName:"a"},"51ad0a8")))),(0,n.kt)("h4",{id:"-documentation-changes-7"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): Iconography updates, thematic platforms ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2a0e596bd002290e0759d8c5e568da4d318f7d59"},(0,n.kt)("inlineCode",{parentName:"a"},"2a0e596"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): thematic pages integration ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea7a4220a93d3fd2f437b51462f7f19d99f52595"},(0,n.kt)("inlineCode",{parentName:"a"},"ea7a422"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): color updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cc13b5499a9ae13bb45925a057f8ff4d6a2e4643"},(0,n.kt)("inlineCode",{parentName:"a"},"cc13b54"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): fix swatches accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/306cb74d3e06390a9c15da9b8b29c9d3c8f0f6c5"},(0,n.kt)("inlineCode",{parentName:"a"},"306cb74"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): typography and colors fixes according to comments on PR ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ae20a7258cc88465fa0937895c2999952736f456"},(0,n.kt)("inlineCode",{parentName:"a"},"ae20a72"))),(0,n.kt)("li",{parentName:"ul"},"docs(colours): adjust logos heights ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/854d4fb761be7307e83e5dd2eb0fe5a0117727c5"},(0,n.kt)("inlineCode",{parentName:"a"},"854d4fb"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): merge designer and dev units ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/65c240eddbf20b3fc870d301b96837f49ad9caca"},(0,n.kt)("inlineCode",{parentName:"a"},"65c240e"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): readded extra font sizes, fixed fluid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4a5d892538a9713d14ac718b1bf2c771be09810"},(0,n.kt)("inlineCode",{parentName:"a"},"a4a5d89"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): changed em to percentages ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4176007ff4b421bc988b618488e0ba6b550f9fe"},(0,n.kt)("inlineCode",{parentName:"a"},"d417600"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): minors updates and instructions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/84ac8828e430b4af2b461534b4e2f81189080145"},(0,n.kt)("inlineCode",{parentName:"a"},"84ac882"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): blue-grey-6 adjustment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e7ab2d15d3a617bc5b3713897f3e3521d9e2720a"},(0,n.kt)("inlineCode",{parentName:"a"},"e7ab2d1"))),(0,n.kt)("li",{parentName:"ul"},"docs(colours): added active colour ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/574f7a95ea8a9510d03a104ad72fafafcae5d738"},(0,n.kt)("inlineCode",{parentName:"a"},"574f7a9"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): switch FISE logo to png ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/335471fd95bbd78cd7bd80b960272baa0a32e1c5"},(0,n.kt)("inlineCode",{parentName:"a"},"335471f"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): updated visited ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0248fd164cbf85168945797244977c305c67608d"},(0,n.kt)("inlineCode",{parentName:"a"},"0248fd1"))),(0,n.kt)("li",{parentName:"ul"},"docs(FISE): replaced logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f7d833127f769d79f099618b98789c6929b4ba08"},(0,n.kt)("inlineCode",{parentName:"a"},"f7d8331")))),(0,n.kt)("h4",{id:"\ufe0f-others-21"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"perf(docusaurus): added remixicon and roboto locally ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b67b1a72bc9cdc7c62a25967e81b430f8b62d558"},(0,n.kt)("inlineCode",{parentName:"a"},"b67b1a7"))),(0,n.kt)("li",{parentName:"ul"},"feature(Docusaurus): Updates on color palette information including thematic websites #231 from eea/refactor-docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ec7843dea07f626dc1c71ae1baa8bb5b0caa52f3"},(0,n.kt)("inlineCode",{parentName:"a"},"ec7843d"))),(0,n.kt)("li",{parentName:"ul"},"Upgrade Jenkinsfile storybook to yarn 3 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d20de8d6e21a14660b7b5125a80218a8a6f19e62"},(0,n.kt)("inlineCode",{parentName:"a"},"d20de8d"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/563fbc5fac0d4b0295690d0a3a4e04271753f18a"},(0,n.kt)("inlineCode",{parentName:"a"},"563fbc5")))),(0,n.kt)("h3",{id:"100-alpha4---2022-11-22"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.3...1.0.0-alpha.4"},"1.0.0-alpha.4")," - 2022-11-22"),(0,n.kt)("h4",{id:"-bug-fixes-16"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(cards-storybook): load slick carousel css for arrow and pagination styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1159b1beea0d7f7e026f1f1181fea91b7ac38ffa"},(0,n.kt)("inlineCode",{parentName:"a"},"1159b1b")))),(0,n.kt)("h4",{id:"-enhancements-22"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(cards): refactor cards theming implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4e454238d540ef306f4c1a4f8e9a94c7aa10189"},(0,n.kt)("inlineCode",{parentName:"a"},"d4e4542"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): allow rounded, inverted and theme parameter to be set by has classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4b4ad893fc5d39629b4e8d874327f31ea2e7d885"},(0,n.kt)("inlineCode",{parentName:"a"},"4b4ad89"))),(0,n.kt)("li",{parentName:"ul"},"change(card): expect has classes on the card directly ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6a9e38bcae0656685a99b47800d556813663d2ee"},(0,n.kt)("inlineCode",{parentName:"a"},"6a9e38b"))),(0,n.kt)("li",{parentName:"ul"},"change(utilities): added has text classes to the text alignment utilities ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e6974c634551fe0d19a9c9da269f5c6fbaefab7a"},(0,n.kt)("inlineCode",{parentName:"a"},"e6974c6"))),(0,n.kt)("li",{parentName:"ul"},"change(utilities): modified class name for text align using has naming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/579a0cbe0f704eb9305119fdd162f4f29c8086d5"},(0,n.kt)("inlineCode",{parentName:"a"},"579a0cb"))),(0,n.kt)("li",{parentName:"ul"},"change(theme): ensure that only direct children of container have a default top and bottom margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7f8b8dcc72827004d366e1c531311cf8734053fc"},(0,n.kt)("inlineCode",{parentName:"a"},"7f8b8dc"))),(0,n.kt)("li",{parentName:"ul"},"change(build): upgrade action to trigger workflow and wait to latest version ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c63ad3fdae7972bb2c722dea3d046861fa0ac086"},(0,n.kt)("inlineCode",{parentName:"a"},"c63ad3f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): theming implementation to allow has theming classes #265 from eea/card-refactoring ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24edc99d85c0c619fc763a8774a96f7208f529a5"},(0,n.kt)("inlineCode",{parentName:"a"},"24edc99"))),(0,n.kt)("li",{parentName:"ul"},"change(theme): add slick-carousel dependency ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2eec7d7233adf86b9c4f61670eb87d9754ff94c"},(0,n.kt)("inlineCode",{parentName:"a"},"f2eec7d")))),(0,n.kt)("h4",{id:"\ufe0f-others-22"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Update eea.github.io on all commits in develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3d0b8d745138bd2e0219560c8c895ce2c56dbf04"},(0,n.kt)("inlineCode",{parentName:"a"},"3d0b8d7"))),(0,n.kt)("li",{parentName:"ul"},"Exclude mockups from npm package ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/634af8e3ddabec36a18597d8d7638888269875fc"},(0,n.kt)("inlineCode",{parentName:"a"},"634af8e"))),(0,n.kt)("li",{parentName:"ul"},"fix rounded selector ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1fa15442f03d3f3d9ef59afa14075b061483cf3a"},(0,n.kt)("inlineCode",{parentName:"a"},"1fa1544"))),(0,n.kt)("li",{parentName:"ul"},"Trigger re-build ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3566dd2b4d2cd12496e05b792c85a78de550dd50"},(0,n.kt)("inlineCode",{parentName:"a"},"3566dd2"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea47f6f10097f23f635d98f0c5483bebf8378fc4"},(0,n.kt)("inlineCode",{parentName:"a"},"ea47f6f")))),(0,n.kt)("h3",{id:"100-alpha3---2022-11-16"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.2...1.0.0-alpha.3"},"1.0.0-alpha.3")," - 2022-11-16"),(0,n.kt)("h4",{id:"-new-features-15"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(Header): Add subsite section styling #263 from eea/subsite ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/00398b8a6c5d83241c30d0ba85d95c115edf2480"},(0,n.kt)("inlineCode",{parentName:"a"},"00398b8")))),(0,n.kt)("h4",{id:"-bug-fixes-17"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(search): position now changed by default to absolute from relative ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51b08fc217e25c1391a2bac0b42a8c3f7ae091c7"},(0,n.kt)("inlineCode",{parentName:"a"},"51b08fc"))),(0,n.kt)("li",{parentName:"ul"},"fix(megaMenu): remove paddings for buttons added by active class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ec33ebfe23a6064c88383ab465bd45edee2dba9b"},(0,n.kt)("inlineCode",{parentName:"a"},"ec33ebf")))),(0,n.kt)("h4",{id:"-enhancements-23"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(components): load overrides files for our defined semantic files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/adde7a9519f38fa779d8d038f3b6817281f0b4a2"},(0,n.kt)("inlineCode",{parentName:"a"},"adde7a9"))),(0,n.kt)("li",{parentName:"ul"},"change(container): fullwidth now take into account devices without hover ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5a35a65ce4928972027325bd01265db3f046f0e8"},(0,n.kt)("inlineCode",{parentName:"a"},"5a35a65"))),(0,n.kt)("li",{parentName:"ul"},"change(container): ensure only the top level elements behave like containers ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/98b85d1fb285919a8851454fa3007131b2a0ffc3"},(0,n.kt)("inlineCode",{parentName:"a"},"98b85d1"))),(0,n.kt)("li",{parentName:"ul"},"change(container): modified column-block grid to remove margin and padding when using full width class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/35c1cee7b3b35e7c361562ab7a430240f0117cc3"},(0,n.kt)("inlineCode",{parentName:"a"},"35c1cee"))),(0,n.kt)("li",{parentName:"ul"},"change(mega-menu): hide home link and accordion content from mobile menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1a691729b6d61c0daf46c5de035c1c55b0fda0d9"},(0,n.kt)("inlineCode",{parentName:"a"},"1a69172"))),(0,n.kt)("li",{parentName:"ul"},"change(container): width from min width 1280px to 1365px max width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/66e551e532da2cc5e9716e5179f943f172663be4"},(0,n.kt)("inlineCode",{parentName:"a"},"66e551e"))),(0,n.kt)("li",{parentName:"ul"},"change(container): removed app extras and view setting of layout sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6dc1ee602634df85140f6db75e41293b72eacf1"},(0,n.kt)("inlineCode",{parentName:"a"},"f6dc1ee"))),(0,n.kt)("li",{parentName:"ul"},"change(views): customized DefaultView to pass class into page-document area ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91123aad429f4bb086110b4997e43e9809a97581"},(0,n.kt)("inlineCode",{parentName:"a"},"91123aa"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): desktop - use buttons for menu section titles and readjust content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb9315f2b999193b7b64cec27c49fc8dda306899"},(0,n.kt)("inlineCode",{parentName:"a"},"cb9315f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): add nav_title and nav_description attributes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0d7a5686daab2ecec87d78728437d8f994606448"},(0,n.kt)("inlineCode",{parentName:"a"},"0d7a568"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): style sub-title and nav-description ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b2a48fd3588ffdc75f61f0b8d52284d13edf2d92"},(0,n.kt)("inlineCode",{parentName:"a"},"b2a48fd"))),(0,n.kt)("li",{parentName:"ul"},"refactor(sidemenu): add third level list and items & update active indication ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2d87da9fddca2b867f3d065a007c0b921587a61"},(0,n.kt)("inlineCode",{parentName:"a"},"e2d87da"))),(0,n.kt)("li",{parentName:"ul"},"change(columns): implement narrow, container and wide width classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9696b5457e50ba3186406a584da16f5248c14439"},(0,n.kt)("inlineCode",{parentName:"a"},"9696b54"))),(0,n.kt)("li",{parentName:"ul"},"change(container): story to add classes that modify the max width of the containers ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/37948f89ee797738bd8bbb0023bc5dca018d7331"},(0,n.kt)("inlineCode",{parentName:"a"},"37948f8"))),(0,n.kt)("li",{parentName:"ul"},"change(container): affect only left and right margin of containers ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/183265b7dd8d20359b6c3956ea05b62df6e70f75"},(0,n.kt)("inlineCode",{parentName:"a"},"183265b"))),(0,n.kt)("li",{parentName:"ul"},"change(containers): modified class names after layout checks ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1dc3689509001031f0afd30422f517de5316e47a"},(0,n.kt)("inlineCode",{parentName:"a"},"1dc3689"))),(0,n.kt)("li",{parentName:"ul"},"refactor(sidemenu): add is_in_path and is_current attributes for an active example ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a3fe7fd8da93db0a065d4408ce154c9d8c26b568"},(0,n.kt)("inlineCode",{parentName:"a"},"a3fe7fd"))),(0,n.kt)("li",{parentName:"ul"},"change(container): story to avoid adding containerwidth property to container div ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c13d83cdbc8741bf4075cdfcd884f39f3f71d73c"},(0,n.kt)("inlineCode",{parentName:"a"},"c13d83c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): mobile - use buttons for menu section titles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7b632fd29a8ac815d2e590509baa51f1279e659"},(0,n.kt)("inlineCode",{parentName:"a"},"a7b632f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): update padding variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5f25838ba9ec367a58c98c929921ebf09cd8ad8"},(0,n.kt)("inlineCode",{parentName:"a"},"c5f2583"))),(0,n.kt)("li",{parentName:"ul"},"change(views): moved narrow style bellow the default container width styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/72fa58dce9ea03a1e4f409a9f9aab21b01efbfc8"},(0,n.kt)("inlineCode",{parentName:"a"},"72fa58d"))),(0,n.kt)("li",{parentName:"ul"},"change(listing): removed container from default view page-document area ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/69f3d8f422e3cb95e89937929aaef48b5569bcdf"},(0,n.kt)("inlineCode",{parentName:"a"},"69f3d8f"))),(0,n.kt)("li",{parentName:"ul"},"change(views): rename classes names to width_view and added app extras layout component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/745b7720839754d1e248795cb1263f8c02f5f3c2"},(0,n.kt)("inlineCode",{parentName:"a"},"745b772"))),(0,n.kt)("li",{parentName:"ul"},"change(container): use important flag for left and right margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a49c83abe9a045d28118a680558de5416a0516a3"},(0,n.kt)("inlineCode",{parentName:"a"},"a49c83a"))),(0,n.kt)("li",{parentName:"ul"},"change(container): add variables for edit and add section of containers ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2e2c335dc82c120d15d4c536c400ae742f68fe7"},(0,n.kt)("inlineCode",{parentName:"a"},"f2e2c33"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): update sub-title paddings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/992f919bb5155c8e6fc169e43adf00dcae41f400"},(0,n.kt)("inlineCode",{parentName:"a"},"992f919"))),(0,n.kt)("li",{parentName:"ul"},"change(site): add a 1rem margin top and bottom on all styled classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dabf6c1162fe23cef61a2053eefd7e687f649a56"},(0,n.kt)("inlineCode",{parentName:"a"},"dabf6c1"))),(0,n.kt)("li",{parentName:"ul"},"change(homepage): removed hiding of staging banner from homepage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ba2cd7fc17cdf1bf58381aa58e05acad0ac77ba"},(0,n.kt)("inlineCode",{parentName:"a"},"4ba2cd7"))),(0,n.kt)("li",{parentName:"ul"},"change(container): unset values of page-document on 1200+ browser width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dd5bea37d414e2a8689eaf6cc99c7b3a3d4b0e08"},(0,n.kt)("inlineCode",{parentName:"a"},"dd5bea3"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): set children to be appended to the right of the menu title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b69c23a20ef2ded1f0382650ff8e85d1bead6941"},(0,n.kt)("inlineCode",{parentName:"a"},"b69c23a"))),(0,n.kt)("li",{parentName:"ul"},"change(theme): modified wide width to point to 1320px as it's perfectly divisible by 4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f825737d6dafd595024bb4537eab624a47a9ad0"},(0,n.kt)("inlineCode",{parentName:"a"},"8f82573"))),(0,n.kt)("li",{parentName:"ul"},"change(theme): modified wide width to point to 1368px as it's perfectly divisible by 4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2349fee36ee72783665a0b101d684389f1fdf834"},(0,n.kt)("inlineCode",{parentName:"a"},"2349fee"))),(0,n.kt)("li",{parentName:"ul"},"change(container): renamed content-text-width to container-text-width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6f788c282348292dd4b5deb47ffe83ca4573e5c8"},(0,n.kt)("inlineCode",{parentName:"a"},"6f788c2"))),(0,n.kt)("li",{parentName:"ul"},"change(listing): provide ui container fallback if no class is passed to default view ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af9e94ded1e301f4c811749badbcc1f59e6d0de5"},(0,n.kt)("inlineCode",{parentName:"a"},"af9e94d"))),(0,n.kt)("li",{parentName:"ul"},"change(narrow-view): re-added container class to page-document ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/56b44a6e09d45f96c106dc471bb2e1cde58ef10f"},(0,n.kt)("inlineCode",{parentName:"a"},"56b44a6"))),(0,n.kt)("li",{parentName:"ul"},"change(view): set container width for view-viewview class as well ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/29dc324319d6dc2450dd0e906c1b4c93fd65ed56"},(0,n.kt)("inlineCode",{parentName:"a"},"29dc324")))),(0,n.kt)("h4",{id:"-internal-changes-9"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style: load header/footer overrides ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e5b5e0fc00c61d81f45c12f119bd2f06a91b1b5c"},(0,n.kt)("inlineCode",{parentName:"a"},"e5b5e0f"))),(0,n.kt)("li",{parentName:"ul"},"style(megaMenu): restore item description color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8a19bbb4866cdeb31d87b782587c499e621055b7"},(0,n.kt)("inlineCode",{parentName:"a"},"8a19bbb"))),(0,n.kt)("li",{parentName:"ul"},"style(megaMenu): restore accordion content bottom padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8e0c5a79f06247d353511b412b0122c6f614f5ec"},(0,n.kt)("inlineCode",{parentName:"a"},"8e0c5a7")))),(0,n.kt)("h4",{id:"\ufe0f-others-23"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Add subsite styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e79c0ed7931d6287dbeb3bab1e9155b8707481a3"},(0,n.kt)("inlineCode",{parentName:"a"},"e79c0ed"))),(0,n.kt)("li",{parentName:"ul"},"WIP settings column grid width when using full size class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/affc7ac99527aa92d5a192d90dc8c9ec46a66404"},(0,n.kt)("inlineCode",{parentName:"a"},"affc7ac"))),(0,n.kt)("li",{parentName:"ul"},"code cleanup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2cdc3e590b6d36865f16890c45ce56d32963e1d0"},(0,n.kt)("inlineCode",{parentName:"a"},"2cdc3e5"))),(0,n.kt)("li",{parentName:"ul"},"fix eslint ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/30c52e4eb443555ca44c1b35df064e73d52c0a8b"},(0,n.kt)("inlineCode",{parentName:"a"},"30c52e4"))),(0,n.kt)("li",{parentName:"ul"},"test(estlint): Fix .project.eslintrc.js ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aaeaa07b27491551daba29bbfdd7cab4a54b6bec"},(0,n.kt)("inlineCode",{parentName:"a"},"aaeaa07"))),(0,n.kt)("li",{parentName:"ul"},"modified left value of full width classes with toolbars ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70d82d47fbc2c00a3a709de0d5c087c8443a1eae"},(0,n.kt)("inlineCode",{parentName:"a"},"70d82d4"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-alpha.3 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8fc86a7d0bf4ad06ab339b3066ff56ea61d48878"},(0,n.kt)("inlineCode",{parentName:"a"},"8fc86a7"))),(0,n.kt)("li",{parentName:"ul"},"feature(content): added NarrowView useful for modifying the containers from content-area ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d937df7c262e8d8cc6e78eebec736e28263fc657"},(0,n.kt)("inlineCode",{parentName:"a"},"d937df7"))),(0,n.kt)("li",{parentName:"ul"},"jslint fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/98461593605344d0b6d8cba81f91d1cafc2653cd"},(0,n.kt)("inlineCode",{parentName:"a"},"9846159"))),(0,n.kt)("li",{parentName:"ul"},"Feature(container): flexible container size #260 from eea/feature-flexible-container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f84c5b67afe9cbe01b2a44a8f92a9a554e1036a"},(0,n.kt)("inlineCode",{parentName:"a"},"8f84c5b"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using circularity-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/76a41c786995fd54afe4d1c345de939f683ffa70"},(0,n.kt)("inlineCode",{parentName:"a"},"76a41c7"))),(0,n.kt)("li",{parentName:"ul"},"fix broken variable call for contentBox.variables introduced in previous commit by mistake ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d249c1160d19bedb174a2fde3fdab48d9ce297d4"},(0,n.kt)("inlineCode",{parentName:"a"},"d249c11"))),(0,n.kt)("li",{parentName:"ul"},"clean up ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/89f3cb33d70a14806a953f0acd1807e94169ee5c"},(0,n.kt)("inlineCode",{parentName:"a"},"89f3cb3"))),(0,n.kt)("li",{parentName:"ul"},"removed console log from code ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fad86ae581dd81d0c29fc03d8528e57cadadd3fb"},(0,n.kt)("inlineCode",{parentName:"a"},"fad86ae")))),(0,n.kt)("h3",{id:"100-alpha2---2022-10-28"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.1...1.0.0-alpha.2"},"1.0.0-alpha.2")," - 2022-10-28"),(0,n.kt)("h4",{id:"-enhancements-24"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(documentation): grammarly proof-read suggestions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f609be3758673b0d479d99baee69e7238a5b7f9"},(0,n.kt)("inlineCode",{parentName:"a"},"9f609be"))),(0,n.kt)("li",{parentName:"ul"},"refactor(volto-slate): Upgrade to @plone/volto-slate - refs #153447 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/853d9d189dd17859e3999fbf53507df7083eefb4"},(0,n.kt)("inlineCode",{parentName:"a"},"853d9d1")))),(0,n.kt)("h4",{id:"-internal-changes-10"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(docs): Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e33113a0541d082d93f61c7494bcce2ac5f79a8c"},(0,n.kt)("inlineCode",{parentName:"a"},"e33113a")))),(0,n.kt)("h4",{id:"\ufe0f-others-24"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"test(cypress): Upgrade to Cypress 10 / Razzle 4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c1c1f4b280945a9f0b77eb0b59de003c1360bac9"},(0,n.kt)("inlineCode",{parentName:"a"},"c1c1f4b"))),(0,n.kt)("li",{parentName:"ul"},"more explanations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a8b22728659125ba6ea6fb41f29571a8f1b9953b"},(0,n.kt)("inlineCode",{parentName:"a"},"a8b2272"))),(0,n.kt)("li",{parentName:"ul"},"add announcement bar, showing that EEA DS is WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e14aeac02cf922493aff4f83c8d80af95cc63eb9"},(0,n.kt)("inlineCode",{parentName:"a"},"e14aeac"))),(0,n.kt)("li",{parentName:"ul"},"Update dependencies ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee30a2bad3769163d3ab4d996c0a7be8fcb4bc6e"},(0,n.kt)("inlineCode",{parentName:"a"},"ee30a2b")))),(0,n.kt)("h3",{id:"100-alpha1---2022-10-20"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.6...1.0.0-alpha.1"},"1.0.0-alpha.1")," - 2022-10-20"),(0,n.kt)("h4",{id:"-enhancements-25"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update svg and tablet contact link sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6aba061a5d37e84da706e94a2ce1140ffca81d43"},(0,n.kt)("inlineCode",{parentName:"a"},"6aba061"))),(0,n.kt)("li",{parentName:"ul"},"change(blockquote): renamed to Callout reflecting the correct naming from Storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/61a518c84f08b03d29b99aafce3d9108ae56b3a7"},(0,n.kt)("inlineCode",{parentName:"a"},"61a518c"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): Shadow removed from logo & tablet updates #252 from eea/fix-footer ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6df783d6571cb1b477202bf1d503763d98db66bf"},(0,n.kt)("inlineCode",{parentName:"a"},"6df783d"))),(0,n.kt)("li",{parentName:"ul"},"change(colors): updated theme classes for text to use css variable colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb089fd9a40b67430e0d4efaa2cb51902a46de4f"},(0,n.kt)("inlineCode",{parentName:"a"},"cb089fd")))),(0,n.kt)("h4",{id:"-internal-changes-11"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(footer): reduce social icons margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6a9cf7a6da4a46d9b85a63fbdfc8d421ae4c0d8"},(0,n.kt)("inlineCode",{parentName:"a"},"f6a9cf7")))),(0,n.kt)("h4",{id:"-documentation-changes-8"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(alpha): Update included components in 1.0 alpha version - refs #154387 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fcc5af9bb9163d158ccd6ce452d7f80ac26f7ac0"},(0,n.kt)("inlineCode",{parentName:"a"},"fcc5af9"))),(0,n.kt)("li",{parentName:"ul"},"docs(callout): Rename Blockqoute to Callout in docusaurus - refs #154387 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8d733ac7b00273581575ceddd1a4480ba67fa498"},(0,n.kt)("inlineCode",{parentName:"a"},"8d733ac")))),(0,n.kt)("h4",{id:"\ufe0f-others-25"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-alpha.1 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70e4d97c6a2b13f3b98efe1e2ba93174be2df476"},(0,n.kt)("inlineCode",{parentName:"a"},"70e4d97")))),(0,n.kt)("h3",{id:"096---2022-12-16"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.5...0.9.6"},"0.9.6")," - 2022-12-16"),(0,n.kt)("h4",{id:"\ufe0f-others-26"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Release 0.9.6 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ae19b837678ef5a6a26ebe7c69577e446b13ed50"},(0,n.kt)("inlineCode",{parentName:"a"},"ae19b83"))),(0,n.kt)("li",{parentName:"ul"},"feature(copyright): image information #250 from eea/feature-copyright ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7b323ed27e15f9b4265618099089526c97aa89a1"},(0,n.kt)("inlineCode",{parentName:"a"},"7b323ed"))),(0,n.kt)("li",{parentName:"ul"},"Release-it ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f5671de5a36a721f86a2f8ae4077fd2e0ffafb5"},(0,n.kt)("inlineCode",{parentName:"a"},"1f5671d")))),(0,n.kt)("h3",{id:"095---2022-10-20"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.4...0.9.5"},"0.9.5")," - 2022-10-20"),(0,n.kt)("h4",{id:"-bug-fixes-18"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(statistic): margin and slate colors when using the inverted options ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f263dea1940594ad00b3548c8640ca378fee5563"},(0,n.kt)("inlineCode",{parentName:"a"},"f263dea")))),(0,n.kt)("h3",{id:"094---2022-10-19"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.3...0.9.4"},"0.9.4")," - 2022-10-19"),(0,n.kt)("h4",{id:"-bug-fixes-19"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(edit-interface): block chooser and power user menu item colors when inside content-box ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7aee4f1619a0d798b5fd8d90844a780c25aca019"},(0,n.kt)("inlineCode",{parentName:"a"},"7aee4f1"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): hero text going over the logo and menu on mobile resolutions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1434508f5995d4316dfb2fd18fdc7926a4ece6ee"},(0,n.kt)("inlineCode",{parentName:"a"},"1434508"))),(0,n.kt)("li",{parentName:"ul"},"fix(content-box): z-index of box-inner and added underline to slate links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c8b7c7e41df39e1bf6377401a7aad4220287d454"},(0,n.kt)("inlineCode",{parentName:"a"},"c8b7c7e"))),(0,n.kt)("li",{parentName:"ul"},"fix(content-box): adding of underline to links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c2f5f0f45963e48342edb0046d84b945ffe4b6a8"},(0,n.kt)("inlineCode",{parentName:"a"},"c2f5f0f")))),(0,n.kt)("h4",{id:"-enhancements-26"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(banner,colors): content box theme aware colors banner changes#254 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bcb9a8cde0cb0f927a68c0872e590e5ab853f824"},(0,n.kt)("inlineCode",{parentName:"a"},"bcb9a8c"))),(0,n.kt)("li",{parentName:"ul"},"change(Banner): Add subtitle subcomponent ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bb67f4c83a2ff0e17958116fc4a52a426ba64a70"},(0,n.kt)("inlineCode",{parentName:"a"},"bb67f4c"))),(0,n.kt)("li",{parentName:"ul"},"change(item): moved svg filter definitions to item.overrides ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/de703661065648968903bb6b46efc13d19c51d2b"},(0,n.kt)("inlineCode",{parentName:"a"},"de70366"))),(0,n.kt)("li",{parentName:"ul"},"change(accordion): accordion titles with themes colors can now be modified by css variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2ac13ea56a74b2f7a22abc274bc94c770fbe3a2"},(0,n.kt)("inlineCode",{parentName:"a"},"e2ac13e"))),(0,n.kt)("li",{parentName:"ul"},"change(colors): in lists and callouts to allow color changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/940d1b8ed815b1a38f78d7602f0b221b48fe21f9"},(0,n.kt)("inlineCode",{parentName:"a"},"940d1b8"))),(0,n.kt)("li",{parentName:"ul"},"change(colors): added backgroundColorSupplementary color variable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f5262af2b90d2ffd9dd5560232f3bf47bcc85e3"},(0,n.kt)("inlineCode",{parentName:"a"},"1f5262a"))),(0,n.kt)("li",{parentName:"ul"},"change(list,bullet): color is no longer primary instead it's text color css variant ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8c046704871c7202406ff71b280a8a34e195e54d"},(0,n.kt)("inlineCode",{parentName:"a"},"8c04670"))),(0,n.kt)("li",{parentName:"ul"},"change(statistics): use theme colors with css variable for easy color customization ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fb72a012e81eba73fbace58317a52b5cdda31ee5"},(0,n.kt)("inlineCode",{parentName:"a"},"fb72a01"))),(0,n.kt)("li",{parentName:"ul"},"change(Banner): Show label in metadata field ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1acda3c53739b610b501a53baf10226769929d2d"},(0,n.kt)("inlineCode",{parentName:"a"},"1acda3c"))),(0,n.kt)("li",{parentName:"ul"},"change(tags, items): use text color with css variable for content color for easy customization ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6660e2e49c6e732a13283ad7c922c5a5091bffc1"},(0,n.kt)("inlineCode",{parentName:"a"},"6660e2e"))),(0,n.kt)("li",{parentName:"ul"},"change(styling): modified naming of theme css variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a332961e1c4d55cdee3a8bcdf652f53cf03e251b"},(0,n.kt)("inlineCode",{parentName:"a"},"a332961"))),(0,n.kt)("li",{parentName:"ul"},"change(colors): added backgroundColor color variable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b7e68311f77a724c49a3cf858a76239ca5f6876c"},(0,n.kt)("inlineCode",{parentName:"a"},"b7e6831"))),(0,n.kt)("li",{parentName:"ul"},"change(quote): use secondary css var for easier color replacement ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7a3231228c2eb9b420cc7b59a4a07fba96643e5e"},(0,n.kt)("inlineCode",{parentName:"a"},"7a32312"))),(0,n.kt)("li",{parentName:"ul"},"change(statistics): tweaked margin of statistics so that they don't overflow over context boxes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4a8e33dfaa716f38ac9ce5448d400c74ef9ba62"},(0,n.kt)("inlineCode",{parentName:"a"},"b4a8e33"))),(0,n.kt)("li",{parentName:"ul"},"change(accordion): allow customization of accordion title background color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6590baf1716867eabe897e765ae1924122ba2333"},(0,n.kt)("inlineCode",{parentName:"a"},"6590baf"))),(0,n.kt)("li",{parentName:"ul"},"change(colors): introduced css variables for primary colors #247 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac8082590f978ab953ece70082e06b124c292ddf"},(0,n.kt)("inlineCode",{parentName:"a"},"ac80825"))),(0,n.kt)("li",{parentName:"ul"},"change(content-box): override primary text color to white as well ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/28b43c72b9fcfeb153ac7e734bbbca67f2e42111"},(0,n.kt)("inlineCode",{parentName:"a"},"28b43c7")))),(0,n.kt)("h4",{id:"\ufe0f-others-27"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Include changes in the storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4d9fa4c631a6a1ec0d7d525721fd32c5ff01d9c"},(0,n.kt)("inlineCode",{parentName:"a"},"a4d9fa4")))),(0,n.kt)("h3",{id:"093---2022-10-04"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.2...0.9.3"},"0.9.3")," - 2022-10-04"),(0,n.kt)("h4",{id:"-bug-fixes-20"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(card, contentBox): meta font size, removed header override of cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7f94b9ca8c65a887ced5c4812563a2226fca869"},(0,n.kt)("inlineCode",{parentName:"a"},"a7f94b9"))),(0,n.kt)("li",{parentName:"ul"},"fix(List): Ordered list item story - refs #155248 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c70a2bceecf4ce9497cbe0e9cdb30944fff2287d"},(0,n.kt)("inlineCode",{parentName:"a"},"c70a2bc"))),(0,n.kt)("li",{parentName:"ul"},"fix(OrderedList): li third level margin left - refs #155248 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fba5cb9d3897d2827951cd218405b1ae7c8e818a"},(0,n.kt)("inlineCode",{parentName:"a"},"fba5cb9"))),(0,n.kt)("li",{parentName:"ul"},"fix(cards): inherit color of card description ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ceda79971663785c81292b85ae07b7f9f922213c"},(0,n.kt)("inlineCode",{parentName:"a"},"ceda799"))),(0,n.kt)("li",{parentName:"ul"},"fix(accordion): Fix content default padding - refs #153783 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/566adf7a53c48fb24044eeba1d159d5ce715ecc6"},(0,n.kt)("inlineCode",{parentName:"a"},"566adf7")))),(0,n.kt)("h4",{id:"-enhancements-27"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(site): committed fixed from custom into eea design package ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9b9a1fd3648796a502ca4eb3abd08b61b33bdff2"},(0,n.kt)("inlineCode",{parentName:"a"},"9b9a1fd"))),(0,n.kt)("li",{parentName:"ul"},"change(jenkins): added yarn policy for storybook building ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3d1b844efeea40b99c00c9aa97089e0a0be58a57"},(0,n.kt)("inlineCode",{parentName:"a"},"3d1b844"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): typography updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/60a93a4aece4e478ae13c2dfe697fd3703aa178a"},(0,n.kt)("inlineCode",{parentName:"a"},"60a93a4"))),(0,n.kt)("li",{parentName:"ul"},"change(item): added item image coloring when applying theming classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0403fe4974f37a46ec7418d9b8492ad74d7c5688"},(0,n.kt)("inlineCode",{parentName:"a"},"0403fe4"))),(0,n.kt)("li",{parentName:"ul"},"change(accordion, site): change text color to tertiary instead of black ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/464105842508a62216aa0a3f28e9565af1b93232"},(0,n.kt)("inlineCode",{parentName:"a"},"4641058"))),(0,n.kt)("li",{parentName:"ul"},"change(accordion): allow customization of accordion title with css variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/15e7d27f02c640df582f51a51ef36e645723f842"},(0,n.kt)("inlineCode",{parentName:"a"},"15e7d27"))),(0,n.kt)("li",{parentName:"ul"},"change(content-box): added css variables that will set text color and background for children ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/86cac531cc94386b6022e1be80dba826b39f2443"},(0,n.kt)("inlineCode",{parentName:"a"},"86cac53"))),(0,n.kt)("li",{parentName:"ul"},"change(tabs): allow customization of tab active and hover color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4370f4270dcaa29b1193fc2347567b748f6d5d82"},(0,n.kt)("inlineCode",{parentName:"a"},"4370f42"))),(0,n.kt)("li",{parentName:"ul"},"change(tabs): color for tabs-block section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6778c923618e725194120d7f35e2ee7d66e1be8e"},(0,n.kt)("inlineCode",{parentName:"a"},"6778c92"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): by default date is set to appear on the right of the meta section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b7b80e86b69a0179f1e48748bef909bbd2a98d58"},(0,n.kt)("inlineCode",{parentName:"a"},"b7b80e8"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): carousel dots are now relative positioned ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/daa40a4ab6532497830d5f7536bf0a7f20d9cd00"},(0,n.kt)("inlineCode",{parentName:"a"},"daa40a4")))),(0,n.kt)("h4",{id:"-documentation-changes-9"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(typography): update, local fonts ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/39a32d9aa4dec21c0e7df32aa5798432fc6bd403"},(0,n.kt)("inlineCode",{parentName:"a"},"39a32d9"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): token fix to match used values for heightheight and letterspacing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91693ecd2dd367cd83fa2752756557d463e214a7"},(0,n.kt)("inlineCode",{parentName:"a"},"91693ec"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): token fix to match used values for lineheight ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff41b56b4365a3e70ac20e548c7c74671e7c584c"},(0,n.kt)("inlineCode",{parentName:"a"},"ff41b56"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): remove semibold ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6eb3e0856f01aacf6d294f68e7d845f74f752685"},(0,n.kt)("inlineCode",{parentName:"a"},"6eb3e08")))),(0,n.kt)("h4",{id:"\ufe0f-others-28"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"test(cypress): Fix md5 dependency ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/17f618e7c5eef01759494e787a8c9cb96449fbca"},(0,n.kt)("inlineCode",{parentName:"a"},"17f618e")))),(0,n.kt)("h3",{id:"092---2022-09-27"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.1...0.9.2"},"0.9.2")," - 2022-09-27"),(0,n.kt)("h3",{id:"091---2022-09-27"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.0...0.9.1"},"0.9.1")," - 2022-09-27"),(0,n.kt)("h4",{id:"-enhancements-28"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(cards): added ability to change the text alignment using css variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ed532ac20c82a6933c4f12613c80ce92eec78405"},(0,n.kt)("inlineCode",{parentName:"a"},"ed532ac"))),(0,n.kt)("li",{parentName:"ul"},"change(styles): use flex-end values only instead of end to avoid babel warning ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24244b22ea69b9f4dc3006597c7836f814b74cf2"},(0,n.kt)("inlineCode",{parentName:"a"},"24244b2"))),(0,n.kt)("li",{parentName:"ul"},"change(rounded): image size, border radius to ensure more image are turned into rounded options ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51e23c1bb38f277b2bfbad5d814925eb61d17668"},(0,n.kt)("inlineCode",{parentName:"a"},"51e23c1")))),(0,n.kt)("h4",{id:"\ufe0f-others-29"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Merge pull request #243 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/576564ce395ee6ac9e74bcb19d5c4f0b4cd3c33b"},(0,n.kt)("inlineCode",{parentName:"a"},"576564c"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using eea-website-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a5be6eec78dae230626e61ea2c77e7f3c62510d"},(0,n.kt)("inlineCode",{parentName:"a"},"4a5be6e"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b251255a7ed14d8290717726d86eaf54b87aa2d4"},(0,n.kt)("inlineCode",{parentName:"a"},"b251255")))),(0,n.kt)("h3",{id:"090---2022-09-19"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.8.1...0.9.0"},"0.9.0")," - 2022-09-19"),(0,n.kt)("h4",{id:"-new-features-16"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(countUp): intall countup package and import it in statistics ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/10ba7cf2975ffc33cc8e6965998b7ab7ec58b1ab"},(0,n.kt)("inlineCode",{parentName:"a"},"10ba7cf"))),(0,n.kt)("li",{parentName:"ul"},"feat(docusaurus): custom editUrl function for the components usage pages - taskman refs #154076 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93c4240f269d72e4e353665dacd57d079a31afac"},(0,n.kt)("inlineCode",{parentName:"a"},"93c4240"))),(0,n.kt)("li",{parentName:"ul"},"feat(site): Styling scroll-to-text fragments #238 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1883fcf4e80055f68bdff4d66fc6db3ccad4614a"},(0,n.kt)("inlineCode",{parentName:"a"},"1883fcf"))),(0,n.kt)("li",{parentName:"ul"},"feat(docusaurus): added Edit this page link in footer of each page - taskman refs #154076 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2cf8746e42631ea2e214223e208bdbfb76ffafa7"},(0,n.kt)("inlineCode",{parentName:"a"},"2cf8746")))),(0,n.kt)("h4",{id:"-bug-fixes-21"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(header): Prevent dropdown closing when clicking inside content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/838f34006260ce7c331fd933a595e95d78e1a927"},(0,n.kt)("inlineCode",{parentName:"a"},"838f340"))),(0,n.kt)("li",{parentName:"ul"},"fix(cards): position of bullets and arrow clicking on events page 148723 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/22ef8282247401b0f8cf5a44f2e65f0b469cc6fa"},(0,n.kt)("inlineCode",{parentName:"a"},"22ef828"))),(0,n.kt)("li",{parentName:"ul"},"fix(cards): rounded images show up now even when card parent is cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48f5e81a5b76168435537d92aec35ab3a184b4d2"},(0,n.kt)("inlineCode",{parentName:"a"},"48f5e81"))),(0,n.kt)("li",{parentName:"ul"},"fix(statistic): add a min-width to content so unwrapped statistics don't break ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7c5d511c35d50f3afabf77f14b27e5760c49051f"},(0,n.kt)("inlineCode",{parentName:"a"},"7c5d511"))),(0,n.kt)("li",{parentName:"ul"},"fix(sideNavigation): add role list to list item ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/58f322b732c995349ba588db3bac6a1ffea40f89"},(0,n.kt)("inlineCode",{parentName:"a"},"58f322b"))),(0,n.kt)("li",{parentName:"ul"},"fix(sideNavigation): remove unused useState import ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f9ea6779d2c584203b77f11b3127f39aba7799f3"},(0,n.kt)("inlineCode",{parentName:"a"},"f9ea677")))),(0,n.kt)("h4",{id:"-enhancements-29"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(sideNavigation): implement the design to the initial navigation & make component dynamic ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b673d63a45e56e1d05354d8675c01b15ec9543f5"},(0,n.kt)("inlineCode",{parentName:"a"},"b673d63"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update top bar ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/626bdd5805bde1e97b91d83dae7adc1d39c62234"},(0,n.kt)("inlineCode",{parentName:"a"},"626bdd5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): create custom export and add links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f9ed560a68d261e9e6a9b6fa3c44944a252e596"},(0,n.kt)("inlineCode",{parentName:"a"},"9f9ed56"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): update inverted style and add background variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7578dc6a408094fbc215218b3ffe21a878841568"},(0,n.kt)("inlineCode",{parentName:"a"},"7578dc6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): remove horizontal display on mobiles & update columns control ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/58f00e12851c4a1af1bb200d0577d76f6222df3c"},(0,n.kt)("inlineCode",{parentName:"a"},"58f00e1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): minor fixes spotted in testing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0f0f3aba7ea282c4ecc4f602f9ff3144c04e2146"},(0,n.kt)("inlineCode",{parentName:"a"},"0f0f3ab"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update main section heights ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d669f012f1b831952dbb73b7d40134b1243ba7e4"},(0,n.kt)("inlineCode",{parentName:"a"},"d669f01"))),(0,n.kt)("li",{parentName:"ul"},"refactor(sideNavigation): remove green border and divider ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/939cd9bf2a9a7338fd770550a8396586c5f610b3"},(0,n.kt)("inlineCode",{parentName:"a"},"939cd9b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(link): update colors for link states ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e9f59950838f9119131797550945963c2965dcf"},(0,n.kt)("inlineCode",{parentName:"a"},"3e9f599"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): styles img tag outside of .image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee892745a4748da12007ba5cedab16c1810c1dd9"},(0,n.kt)("inlineCode",{parentName:"a"},"ee89274"))),(0,n.kt)("li",{parentName:"ul"},"refactor(sideNavigation): update controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a3e8430d88ee52fd92f4f8c2d6f5e01ea82dd9eb"},(0,n.kt)("inlineCode",{parentName:"a"},"a3e8430"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): fix firefox issue for fit content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87aa113667ea53d83d479cd52347e7298e60e9b0"},(0,n.kt)("inlineCode",{parentName:"a"},"87aa113"))),(0,n.kt)("li",{parentName:"ul"},"change(statistics): rearrange controls order ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b19ae70568f18873732ff62ee82251c9256a214d"},(0,n.kt)("inlineCode",{parentName:"a"},"b19ae70"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): add max width to wrap text for all content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/758f8ce09f78a6343ac0226e5d332c0216dea95b"},(0,n.kt)("inlineCode",{parentName:"a"},"758f8ce"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): add max width to label so it wraps the text ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/824a12702f133485a1c254e267d9e75c1b22048c"},(0,n.kt)("inlineCode",{parentName:"a"},"824a127"))),(0,n.kt)("li",{parentName:"ul"},"change(Side menu & in page navigation): styling according to figma design #221 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b2df858a2dc88f61d686ad0991e711dc763f4cc6"},(0,n.kt)("inlineCode",{parentName:"a"},"b2df858"))),(0,n.kt)("li",{parentName:"ul"},"change(header): align header with latest figma changes #232 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/135cd68307c6ebdc5d48b361d1696457c6f99b4c"},(0,n.kt)("inlineCode",{parentName:"a"},"135cd68"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): integration when cards also contain call to action buttons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f0d876616b211c79dde5b18c1fe862ff019073a1"},(0,n.kt)("inlineCode",{parentName:"a"},"f0d8766"))),(0,n.kt)("li",{parentName:"ul"},"refactor(iconography): icon group headings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b9ccd8031049d6b91c5676930ea3e44d9587435d"},(0,n.kt)("inlineCode",{parentName:"a"},"b9ccd80"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add variables for some sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8eae84ef665d7b3331090a8a8ac6b714ecdacbb3"},(0,n.kt)("inlineCode",{parentName:"a"},"8eae84e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Statisctic): Rename slateVariation to extraVariation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a07c5896c8c4b8f3179622f335e3f02e68dadfbd"},(0,n.kt)("inlineCode",{parentName:"a"},"a07c589"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): started example on how to add headings for iconography ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53cf8431446954eee6c5d27be31e15c075ffe16d"},(0,n.kt)("inlineCode",{parentName:"a"},"53cf843"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): remove center alignment of rounded cards body area, only the image is now centered ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fdfac4876903272b437c7dcf0e65f7cfe66bbf66"},(0,n.kt)("inlineCode",{parentName:"a"},"fdfac48"))),(0,n.kt)("li",{parentName:"ul"},"change(color): updated link colors #234 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/feabfe7a3b6d6b89bfd4065a32bae8148ddc5a4c"},(0,n.kt)("inlineCode",{parentName:"a"},"feabfe7"))),(0,n.kt)("li",{parentName:"ul"},"change(mockup): Access to figma style tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0bb25bec495f9046a15924ee92f4f17152148ba8"},(0,n.kt)("inlineCode",{parentName:"a"},"0bb25be"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): update margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5190f56e134d672ccb9d5d1a8efacac4d41530d3"},(0,n.kt)("inlineCode",{parentName:"a"},"5190f56"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button): adjust vertical margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/db6d44102171738907b4b03fcc5f526463f59389"},(0,n.kt)("inlineCode",{parentName:"a"},"db6d441")))),(0,n.kt)("h4",{id:"-internal-changes-12"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(statistic): update decimal point ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7976aa4cac4c56e70e196eb62791a2b3f2aba749"},(0,n.kt)("inlineCode",{parentName:"a"},"7976aa4"))),(0,n.kt)("li",{parentName:"ul"},"style(link): update visited link color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d3b18b305bb2bd2f20bb2509584a6bc86b0e252c"},(0,n.kt)("inlineCode",{parentName:"a"},"d3b18b3")))),(0,n.kt)("h4",{id:"-documentation-changes-10"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(iconography): added icons, guidelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0073f1d42600be1d14bff406083b112014a2061f"},(0,n.kt)("inlineCode",{parentName:"a"},"0073f1d")))),(0,n.kt)("h4",{id:"\ufe0f-others-30"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Delete 2-test-new-page.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/749eff9b81e1c08068650cff1aba6cd574ea403b"},(0,n.kt)("inlineCode",{parentName:"a"},"749eff9"))),(0,n.kt)("li",{parentName:"ul"},"Create 2-test-new-page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab623ffc27f65e3e5fdcfe627009df1799582325"},(0,n.kt)("inlineCode",{parentName:"a"},"ab623ff"))),(0,n.kt)("li",{parentName:"ul"},"Release 0.9.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/eb7e2e57b5f2778e709b67deee3624f6e9f9e716"},(0,n.kt)("inlineCode",{parentName:"a"},"eb7e2e5"))),(0,n.kt)("li",{parentName:"ul"},"stylelint fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/114e3f97c6209f100aae2d6e24c595b7ba0a6500"},(0,n.kt)("inlineCode",{parentName:"a"},"114e3f9"))),(0,n.kt)("li",{parentName:"ul"},"Move text fragments style to site.overrides ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8368cbe2cecfc296a2fc81dd0bb49cb9e9a9314c"},(0,n.kt)("inlineCode",{parentName:"a"},"8368cbe"))),(0,n.kt)("li",{parentName:"ul"},"Styling scroll-to-text fragments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1bb39148717cdac922c403a0cdbfa3681a65dd9f"},(0,n.kt)("inlineCode",{parentName:"a"},"1bb3914"))),(0,n.kt)("li",{parentName:"ul"},"Update Header.stories.js ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9036c74d54640df2ccfcfdea9ddcdb29787d8ae2"},(0,n.kt)("inlineCode",{parentName:"a"},"9036c74"))),(0,n.kt)("li",{parentName:"ul"},"feature(Docusaurus): Reflect usage of remixicon in iconography page #239 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0802b32c13d978e380960befb78647dadb2d7e53"},(0,n.kt)("inlineCode",{parentName:"a"},"0802b32"))),(0,n.kt)("li",{parentName:"ul"},"Update 1-design.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/146115a13ac7a1943b6878df42f0b8e7f1fcd3f1"},(0,n.kt)("inlineCode",{parentName:"a"},"146115a"))),(0,n.kt)("li",{parentName:"ul"},"Test workflow for contribution - taskman refs #154076 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dcb924f79306ba26bb5168ac0a12d82c0c354caa"},(0,n.kt)("inlineCode",{parentName:"a"},"dcb924f"))),(0,n.kt)("li",{parentName:"ul"},"perf(figma): access to style tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/27d8dbe3c282e187f93bc4d93a0c9aa5c8162b00"},(0,n.kt)("inlineCode",{parentName:"a"},"27d8dbe"))),(0,n.kt)("li",{parentName:"ul"},"Rename 2-test-new-page to 2-test-new-page.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4e3be106cc4739e60ee5038901dbb626cf17f2e7"},(0,n.kt)("inlineCode",{parentName:"a"},"4e3be10")))),(0,n.kt)("h3",{id:"081---2022-08-26"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.8.0...0.8.1"},"0.8.1")," - 2022-08-26"),(0,n.kt)("h4",{id:"-bug-fixes-22"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(message): fix size controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee51e1dca4f84aeb9e39be525016f751acc147de"},(0,n.kt)("inlineCode",{parentName:"a"},"ee51e1d"))),(0,n.kt)("li",{parentName:"ul"},"fix(docusaurus): intro page hero title color now that headers are using tertiary color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/618e3cb7ac5533b1c087aea10452947c8676ab4e"},(0,n.kt)("inlineCode",{parentName:"a"},"618e3cb")))),(0,n.kt)("h4",{id:"-enhancements-30"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(message): restore semantic variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1c16621b4862efc64d82d475798ed40938c65f5e"},(0,n.kt)("inlineCode",{parentName:"a"},"1c16621"))),(0,n.kt)("li",{parentName:"ul"},"refactor(messages): mix semantc and token colors for messages ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/12efa75c30956df9958058242be4b8732819a5a1"},(0,n.kt)("inlineCode",{parentName:"a"},"12efa75"))),(0,n.kt)("li",{parentName:"ul"},"refactor(emotiveColors): temp update for tests ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/61a720c1ddbbad2c5bab17c8b2f890618f2a747c"},(0,n.kt)("inlineCode",{parentName:"a"},"61a720c"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): removed line between sections and moved actions back to the bottom of footer ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d9f33e4cf5a517acfbae497d6cb2fdccb048c281"},(0,n.kt)("inlineCode",{parentName:"a"},"d9f33e4"))),(0,n.kt)("li",{parentName:"ul"},"change(storybook): headings storybook now uses tertiary color by default reflecting site options ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1061e7749de2d4fe1233ccdc7f6f835ad491504a"},(0,n.kt)("inlineCode",{parentName:"a"},"1061e77"))),(0,n.kt)("li",{parentName:"ul"},"refactor(message): add container to story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1259ecead7162d2a46f5e802ba07e7e0dcb72e42"},(0,n.kt)("inlineCode",{parentName:"a"},"1259ece"))),(0,n.kt)("li",{parentName:"ul"},"refactor(message): remove override with custom background color on error ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9b40cd7ef2cca901e65a812585943c2e2d867b5f"},(0,n.kt)("inlineCode",{parentName:"a"},"9b40cd7"))),(0,n.kt)("li",{parentName:"ul"},"refactor(message): add header controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/960c2f7b524b1f049bb2f666e3e8278feca506da"},(0,n.kt)("inlineCode",{parentName:"a"},"960c2f7"))),(0,n.kt)("li",{parentName:"ul"},"change(message): use semantic colors for messages #204 from eea/refactor-message ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/22d2c43cd55a82621f2da3103652677b4b45db1a"},(0,n.kt)("inlineCode",{parentName:"a"},"22d2c43")))),(0,n.kt)("h4",{id:"-documentation-changes-11"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(figma): added figma files to repo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6bd4144ffc9c563ce224a07fe942fc4f2615c53f"},(0,n.kt)("inlineCode",{parentName:"a"},"6bd4144")))),(0,n.kt)("h3",{id:"080---2022-08-20"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.7.6...0.8.0"},"0.8.0")," - 2022-08-20"),(0,n.kt)("h4",{id:"-new-features-17"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(IconCard): card with icon instead of image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a85a1791e3a1245474dcafc4fd833350156dccb4"},(0,n.kt)("inlineCode",{parentName:"a"},"a85a179")))),(0,n.kt)("h4",{id:"-bug-fixes-23"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(docusaurus): typography guideline now has real font values for headings, body, caption and small text ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9508db918687b524c4d464539b9a4667399abb43"},(0,n.kt)("inlineCode",{parentName:"a"},"9508db9"))),(0,n.kt)("li",{parentName:"ul"},"fix(card): fix content gaps, adjust new meta section and update text color for default ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f1a78e14fc9a4b809572bd5d4d45bd10711c6eaa"},(0,n.kt)("inlineCode",{parentName:"a"},"f1a78e1"))),(0,n.kt)("li",{parentName:"ul"},"fix(item): remove duplicate argType ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dde0be5f7fe362143e248f7e53aa1d2e5df1fda0"},(0,n.kt)("inlineCode",{parentName:"a"},"dde0be5"))),(0,n.kt)("li",{parentName:"ul"},"fix(iconCard): add aria-label at links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/44f64c7127c0ccabbbf81eb5a838ee0f63284cea"},(0,n.kt)("inlineCode",{parentName:"a"},"44f64c7"))),(0,n.kt)("li",{parentName:"ul"},"fix(card): merge fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/df440ecd89eeb228f6f28df9109b84460cdfd523"},(0,n.kt)("inlineCode",{parentName:"a"},"df440ec"))),(0,n.kt)("li",{parentName:"ul"},"fix(heroblock): color even on edit page by inheriting color instead of using the tertiary color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac53fb74dedafcce231d1ca72843eff8a589c530"},(0,n.kt)("inlineCode",{parentName:"a"},"ac53fb7"))),(0,n.kt)("li",{parentName:"ul"},"fix(tab): add tabindex for accessibility error ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab512be71b86a3b696a228840e34d297928485ab"},(0,n.kt)("inlineCode",{parentName:"a"},"ab512be"))),(0,n.kt)("li",{parentName:"ul"},"fix(carousel): restore missing variable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1728312162d102aa2812eb3c7a55dac83bca8a04"},(0,n.kt)("inlineCode",{parentName:"a"},"1728312"))),(0,n.kt)("li",{parentName:"ul"},"fix(carousel): restore flex grow for cards and opacity for arrows ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce71305ab3fed5ff5c09b577e970050d3b29a2cb"},(0,n.kt)("inlineCode",{parentName:"a"},"ce71305")))),(0,n.kt)("h4",{id:"-enhancements-31"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(carousel) add links in carousel cards & update structure and variables of less files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f99cb219f3a95f5aab49a180434a4f5e0db14462"},(0,n.kt)("inlineCode",{parentName:"a"},"f99cb21"))),(0,n.kt)("li",{parentName:"ul"},"refactor(iconCard): add control for variations and link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5e1b6a1c7ab9fdce138c5643bc01763a02bed287"},(0,n.kt)("inlineCode",{parentName:"a"},"5e1b6a1"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus, fonts): documented font letter spacing modification ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/522712aeddb55f4ff96fdf4e8bea26f4575504ec"},(0,n.kt)("inlineCode",{parentName:"a"},"522712a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): css updates for card variations and styling updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c8b4a43dd25c50e77e8c71fa8fbc45cd70bde94e"},(0,n.kt)("inlineCode",{parentName:"a"},"c8b4a43"))),(0,n.kt)("li",{parentName:"ul"},"refactor(publicationCard): add links and fix accessibily issue ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/80adf6ce0f01e577c34ddba8b345a1fc562f6711"},(0,n.kt)("inlineCode",{parentName:"a"},"80adf6c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add new section in meta and remove links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bfb82ae9635d26ef478db3d63b39f67b25d11fd5"},(0,n.kt)("inlineCode",{parentName:"a"},"bfb82ae"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): add stackable functionality ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8d714fad0465cc71650dcb41236d5667ccc3e789"},(0,n.kt)("inlineCode",{parentName:"a"},"8d714fa"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): update meta section and controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5e28e12bacec6a226659553b8244aeb0165378c9"},(0,n.kt)("inlineCode",{parentName:"a"},"5e28e12"))),(0,n.kt)("li",{parentName:"ul"},"refactor(roundedCard): remove unnecessary code and controls and add all variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6305c54df14faada4058c602af2e33dbc4fad39d"},(0,n.kt)("inlineCode",{parentName:"a"},"6305c54"))),(0,n.kt)("li",{parentName:"ul"},"refactor(roundedCard): add optional link for image and header ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a6d3bf27031d189c403c4a099b09a9066a1620a2"},(0,n.kt)("inlineCode",{parentName:"a"},"a6d3bf2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add tertiary hover and update css selectors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca069484da914520c92f7d67ac92c476ff2ee4a2"},(0,n.kt)("inlineCode",{parentName:"a"},"ca06948"))),(0,n.kt)("li",{parentName:"ul"},"change(fonts): updated font sizes with values given in figma ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4b0ae48ab140d8bbbf6ccbf46eda8d957195ca50"},(0,n.kt)("inlineCode",{parentName:"a"},"4b0ae48"))),(0,n.kt)("li",{parentName:"ul"},"change(style): color, space and adjust line-height as described in docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3366da262ba2dc1c34f57964accf4d6ef6ed37e1"},(0,n.kt)("inlineCode",{parentName:"a"},"3366da2"))),(0,n.kt)("li",{parentName:"ul"},"change(headings): only h2-h6 get tertiary color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d81308c4c0d52d5610a922146f5b426d9eaf323"},(0,n.kt)("inlineCode",{parentName:"a"},"7d81308"))),(0,n.kt)("li",{parentName:"ul"},"change(site): removed Archivo import as we should only use Roboto font ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a6af0564667075d2012c114acb2ad8e1f39b926f"},(0,n.kt)("inlineCode",{parentName:"a"},"a6af056"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): use tertiary color for headings and body color mirroring the design system styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/145fe7348a19b51784a2879225d1b71a642eed45"},(0,n.kt)("inlineCode",{parentName:"a"},"145fe73"))),(0,n.kt)("li",{parentName:"ul"},"change(fonts): modified headings font size as well as line height ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f0771ea1942b6ef436a03c256491a690a52d7413"},(0,n.kt)("inlineCode",{parentName:"a"},"f0771ea"))),(0,n.kt)("li",{parentName:"ul"},"change(fonts): updated font sizes with values given in figma ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f16eef7128ed4f2e7fe97b1ec77f651dc062b771"},(0,n.kt)("inlineCode",{parentName:"a"},"f16eef7"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): use Roboto font from google fonts also for docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/adca8e911faac2d541eb2b9fecf1d9db5b8f9b4c"},(0,n.kt)("inlineCode",{parentName:"a"},"adca8e9"))),(0,n.kt)("li",{parentName:"ul"},"change(headers): added headerColor variable so that thematic sites can easily choose another heading color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f09d2c5e95e82077cc7dfef43a5c56fc73d435c3"},(0,n.kt)("inlineCode",{parentName:"a"},"f09d2c5"))),(0,n.kt)("li",{parentName:"ul"},"change(fonts): typo fixes for typography section of docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cae4b02b20ff578f5cad7c4238c36baa3cae545a"},(0,n.kt)("inlineCode",{parentName:"a"},"cae4b02"))),(0,n.kt)("li",{parentName:"ul"},"change(fonts): modified footer and header values afer global font size changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f160d354b36dc2bee0707b6d63097d5f08408abe"},(0,n.kt)("inlineCode",{parentName:"a"},"f160d35"))),(0,n.kt)("li",{parentName:"ul"},"refactor(iconCards): run prettier ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fe84e46adbc385098385120d14e7583b890db027"},(0,n.kt)("inlineCode",{parentName:"a"},"fe84e46"))),(0,n.kt)("li",{parentName:"ul"},"change(typography): inherit header colors with @headerColor variable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91d93577772534f67bb74df0c9ed260bbaccdd4c"},(0,n.kt)("inlineCode",{parentName:"a"},"91d9357"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumb): use tertiary color also for breadcrumb ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5cbd44bcabae36bcb99a1e987d701e2ea75434b"},(0,n.kt)("inlineCode",{parentName:"a"},"c5cbd44"))),(0,n.kt)("li",{parentName:"ul"},"change(heading): on homepage on the first hero set font size to h1 and inherit color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5711096e45c57b0c3c871f8dcf870c05405d217d"},(0,n.kt)("inlineCode",{parentName:"a"},"5711096"))),(0,n.kt)("li",{parentName:"ul"},"refactor(carousel): update card titles to display styling fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/edd966b5648be51f2d4056c68489648574506656"},(0,n.kt)("inlineCode",{parentName:"a"},"edd966b"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): use the tertiary color for body and heading colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/11c4ed4683df4527ce79155bc65424789e3864af"},(0,n.kt)("inlineCode",{parentName:"a"},"11c4ed4"))),(0,n.kt)("li",{parentName:"ul"},"change(typography): modified lineheight-0 after headers now use 1.2 instead of 1.25 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/04d78a8b0094d9187548e1e3b16d6fbf2248821c"},(0,n.kt)("inlineCode",{parentName:"a"},"04d78a8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add links to cards and replace description with title in carousel ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0258737d26bbb3015ee6222ec878e0477001f615"},(0,n.kt)("inlineCode",{parentName:"a"},"0258737")))),(0,n.kt)("h4",{id:"\ufe0f-others-31"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feature(heading): and cards refactoring #227 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/334fbda2d5b751858d4cc8cae832ca7f5c1ad6c2"},(0,n.kt)("inlineCode",{parentName:"a"},"334fbda"))),(0,n.kt)("li",{parentName:"ul"},"Update package.json ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3870cf3265f0dab4e181c94a6657b9fa408bf186"},(0,n.kt)("inlineCode",{parentName:"a"},"3870cf3"))),(0,n.kt)("li",{parentName:"ul"},"Header refactor 153536 #226 from eea/header-refactor-153536 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87a6fe73211eb028861e099a67e90d365c5111ea"},(0,n.kt)("inlineCode",{parentName:"a"},"87a6fe7"))),(0,n.kt)("li",{parentName:"ul"},"feature(item): icon is now stackable moving the icon on top #220 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b716acfc850345d666d99840445798cdae201a63"},(0,n.kt)("inlineCode",{parentName:"a"},"b716acf")))),(0,n.kt)("h3",{id:"076---2022-08-15"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.7.5...0.7.6"},"0.7.6")," - 2022-08-15"),(0,n.kt)("h4",{id:"-enhancements-32"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(footer): Footer updates 147837 #225 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fa9ae580c7fd45fb4983672167cb5b0b33cc6279"},(0,n.kt)("inlineCode",{parentName:"a"},"fa9ae58"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): initial redesign of main section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8e85617157cdc31a7470acfcd72b85d8fadd1bce"},(0,n.kt)("inlineCode",{parentName:"a"},"8e85617"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): restructure theme sites logo columns ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dcba45a0bfd832c7d5d1e092db8ea4040eceda57"},(0,n.kt)("inlineCode",{parentName:"a"},"dcba45a"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): set actions before thematic section on mobile ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/db25f966a214c94677192215181453e9d59ca957"},(0,n.kt)("inlineCode",{parentName:"a"},"db25f96"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): fix missing key warning from react dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/77f72d5bdc719805a6314058c741387ee7155d28"},(0,n.kt)("inlineCode",{parentName:"a"},"77f72d5"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): Footer updates 147837 #222 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32fed231f1209caeddb18e0bb75d670f20bafb88"},(0,n.kt)("inlineCode",{parentName:"a"},"32fed23")))),(0,n.kt)("h3",{id:"075---2022-08-11"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.7.3...0.7.5"},"0.7.5")," - 2022-08-11"),(0,n.kt)("h4",{id:"-enhancements-33"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(megamenu): mobile improvements with See all links, active elements and non accordion children #224 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6767b99fea3925b35e9dede0a67ea90242e5e730"},(0,n.kt)("inlineCode",{parentName:"a"},"6767b99"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): render accordion only if children have children ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/be63ce2a8e240eac26eedeff0ca104813afbc6b3"},(0,n.kt)("inlineCode",{parentName:"a"},"be63ce2"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): mobile menu design tweaks as seen in latest figma ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/26d74dc063f0b3f8d541c714a10038d79145047e"},(0,n.kt)("inlineCode",{parentName:"a"},"26d74dc"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): removed icon from at a change menu items and they are no longer bold as requested ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/043e77219979711d2f25845c6811b546e791fbf7"},(0,n.kt)("inlineCode",{parentName:"a"},"043e772"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): reset first level panels after each item pass ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/175351bdc9bab5c2d02b2717c24071ba62d4b924"},(0,n.kt)("inlineCode",{parentName:"a"},"175351b"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): mobile menu improvements #223 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b3cabfe3ddc42c2ea39ae20d01bb6fd0db478ecc"},(0,n.kt)("inlineCode",{parentName:"a"},"b3cabfe"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): fixed key error warnings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/075bf0167554869e9fc2f4938c972112e4afa2f7"},(0,n.kt)("inlineCode",{parentName:"a"},"075bf01"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): handle default active sub accordion ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6192a9938b53522682953cb73d7ccfc6ef9c1aec"},(0,n.kt)("inlineCode",{parentName:"a"},"6192a99"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): enable active border only for items not titles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fb0b8696dd73cbf3083c3006a7cff5a1901a6bac"},(0,n.kt)("inlineCode",{parentName:"a"},"fb0b869")))),(0,n.kt)("h4",{id:"\ufe0f-others-32"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Update package.json ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e21e00dc1e0b54daef2c71311a9da709bc1f7e6d"},(0,n.kt)("inlineCode",{parentName:"a"},"e21e00d")))),(0,n.kt)("h3",{id:"073---2022-08-04"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.7.2...0.7.3"},"0.7.3")," - 2022-08-04"),(0,n.kt)("h4",{id:"-enhancements-34"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(megamenu): added icon on mega menu header section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d0ad4d80fc4941e0cdbd8a2d81415387f86efc1c"},(0,n.kt)("inlineCode",{parentName:"a"},"d0ad4d8")))),(0,n.kt)("h3",{id:"072---2022-08-03"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.7.1...0.7.2"},"0.7.2")," - 2022-08-03"),(0,n.kt)("h4",{id:"-bug-fixes-24"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(contentBox): z-index of content hidden by bg when using content-box-inner ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5a7dac923d648d8fe9c9a9cbb8001969d32aea2"},(0,n.kt)("inlineCode",{parentName:"a"},"c5a7dac")))),(0,n.kt)("h4",{id:"\ufe0f-others-33"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Set focus on search input field in the popup on click ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d12c05106d9b95df1885ffa12cb284a0e50e0dfd"},(0,n.kt)("inlineCode",{parentName:"a"},"d12c051"))),(0,n.kt)("li",{parentName:"ul"},"Make cypress tests work with both slate and draft selectors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4d8e5b1d7719637a46eac8232891fc5ed1f51b6f"},(0,n.kt)("inlineCode",{parentName:"a"},"4d8e5b1")))),(0,n.kt)("h3",{id:"071---2022-08-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.7.0...0.7.1"},"0.7.1")," - 2022-08-01"),(0,n.kt)("h3",{id:"070---2022-08-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.6.5...0.7.0"},"0.7.0")," - 2022-08-01"),(0,n.kt)("h4",{id:"-new-features-18"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(accordion,buttons): primary, secondary and tertiary variations #209 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c34617f7a7d7b6b7568c3127f4ae0f52bd57cf8a"},(0,n.kt)("inlineCode",{parentName:"a"},"c34617f")))),(0,n.kt)("h4",{id:"-bug-fixes-25"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(megamenu): key warning errors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ecd27921546204dfa4aa23d25188876e52cda7a"},(0,n.kt)("inlineCode",{parentName:"a"},"4ecd279"))),(0,n.kt)("li",{parentName:"ul"},"fix(container): add padding also for block editors when we are on the add page not just edit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b857aad7855c30c5059b0f0f7c0f720826a71aa7"},(0,n.kt)("inlineCode",{parentName:"a"},"b857aad"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): bump opacity of gradient class to get rid of green hue of header text ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2011b40d384ae5b54a0525e6d9afc88c02f6ca90"},(0,n.kt)("inlineCode",{parentName:"a"},"2011b40"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): remove console log ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3a200233609bbcea39d8e519dc292a132a98aaa3"},(0,n.kt)("inlineCode",{parentName:"a"},"3a20023")))),(0,n.kt)("h4",{id:"-enhancements-35"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(callToAction): add tertiary variant and restructure exports ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac6695ab3066c41739ec4852f0ec3c3bb6cea346"},(0,n.kt)("inlineCode",{parentName:"a"},"ac6695a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(accordion): add color variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3504c15cc861803dc263fb2ad3b6a478043ced33"},(0,n.kt)("inlineCode",{parentName:"a"},"3504c15"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): WIP bringing back rendering of item with callback and path modification ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e43d4340ea82afde950e5fee44a76119060fc28"},(0,n.kt)("inlineCode",{parentName:"a"},"6e43d43"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): add slide down transition and update targetRefs on close ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/96671574f5f7dd992269c42e509598f62bba516d"},(0,n.kt)("inlineCode",{parentName:"a"},"9667157"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): use renderMenuItem in order to render menu items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9ed5cbdf120ee2c92e5f14c09e5289a5abe3f8b0"},(0,n.kt)("inlineCode",{parentName:"a"},"9ed5cbd"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): replaced eionet logo with an svg variant and tweaked size of eionet to match size of eea logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32ce4623ad454edec864ad6c8b45cbf99465bede"},(0,n.kt)("inlineCode",{parentName:"a"},"32ce462"))),(0,n.kt)("li",{parentName:"ul"},"refactor(callToAction): update tertiary state colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/159668ac526a98032392bcbd2c115dc448193152"},(0,n.kt)("inlineCode",{parentName:"a"},"159668a"))),(0,n.kt)("li",{parentName:"ul"},"change(accordion): style default accordion using the grey from semantic ui ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e24907df397457bd9704905aa29ea5d7e1d396cd"},(0,n.kt)("inlineCode",{parentName:"a"},"e24907d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(accordion): add variations and create a default export ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a9c68ffe933c9d700e46db3e0cbbd9e3820c7c7"},(0,n.kt)("inlineCode",{parentName:"a"},"4a9c68f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(colors): add tertiary shades for element states ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1e24a7e13b50f1ee7bd9bd44f3b2eb8e4460c691"},(0,n.kt)("inlineCode",{parentName:"a"},"1e24a7e"))),(0,n.kt)("li",{parentName:"ul"},"change(tests): try to modify tests to use slate instead of draft ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a2e248593433a7a8bf612008c12a3a20a0049d86"},(0,n.kt)("inlineCode",{parentName:"a"},"a2e2485"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): set active class on storybook list items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/112bff195cd07e789b352ae239a148a168b4d877"},(0,n.kt)("inlineCode",{parentName:"a"},"112bff1"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): add border for active element of menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5e7dfa539dc0d126dfb057ac2d293c94b31561bb"},(0,n.kt)("inlineCode",{parentName:"a"},"5e7dfa5"))),(0,n.kt)("li",{parentName:"ul"},"change(package): condition modification of navDepth settings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dd21dadf34f87f08223be3b98c06e7a2f0714326"},(0,n.kt)("inlineCode",{parentName:"a"},"dd21dad"))),(0,n.kt)("li",{parentName:"ul"},"change(mega menu): use non variable to fix build of volto-kitkat-frontend ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ecd652405ba616c9defc86fd793f8c066c0af1e"},(0,n.kt)("inlineCode",{parentName:"a"},"3ecd652"))),(0,n.kt)("li",{parentName:"ul"},"change(header): prefix mega-menu active class for adding border ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32898cb19c20ee7696c51b99cd9df25a333ae6e9"},(0,n.kt)("inlineCode",{parentName:"a"},"32898cb"))),(0,n.kt)("li",{parentName:"ul"},"change(tests): use data-slate-editor instead of contents that was found in draft js instead of slate ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1e0413cf117c098b188e00249c323f2f718b9299"},(0,n.kt)("inlineCode",{parentName:"a"},"1e0413c"))),(0,n.kt)("li",{parentName:"ul"},"change(stories): hide variant control from button link story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/43f8c412f6762edbed9c60e613736d5b60677cd1"},(0,n.kt)("inlineCode",{parentName:"a"},"43f8c41"))),(0,n.kt)("li",{parentName:"ul"},"change(stories): hide variant control from button link story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aea712668331f5681028d961b42a05655f1113d3"},(0,n.kt)("inlineCode",{parentName:"a"},"aea7126")))),(0,n.kt)("h4",{id:"\ufe0f-others-34"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feature(theme): added context navigation component story and default style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5a6955fe935cf6a07f6593164014ed4c9e77d88f"},(0,n.kt)("inlineCode",{parentName:"a"},"5a6955f"))),(0,n.kt)("li",{parentName:"ul"},"feature(megamenu): open default accordions on mobile navigation based on pathname ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cc299c1047f96aa5f85cdc4bb8bb9b3b4fb9ca5e"},(0,n.kt)("inlineCode",{parentName:"a"},"cc299c1"))),(0,n.kt)("li",{parentName:"ul"},"fix eslint warnings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3b30282ea4df59f2d05644cae5c1d703b4dc48b3"},(0,n.kt)("inlineCode",{parentName:"a"},"3b30282"))),(0,n.kt)("li",{parentName:"ul"},"bump release version to 0.7.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fa82cbd7d50765c322bc5c7c58abb5675e0aadad"},(0,n.kt)("inlineCode",{parentName:"a"},"fa82cbd"))),(0,n.kt)("li",{parentName:"ul"},"Theme fixes, mega menu selected element both in desktop and mobile #211 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4827292a9badb02f178b7431cc63e11070784ea"},(0,n.kt)("inlineCode",{parentName:"a"},"b482729"))),(0,n.kt)("li",{parentName:"ul"},"feature(mega-menu): added menu slide down animation #208 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4360d0ef570fbfcc9989170219f7826e5ed780cf"},(0,n.kt)("inlineCode",{parentName:"a"},"4360d0e")))),(0,n.kt)("h3",{id:"065---2022-07-06"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.6.1...0.6.5"},"0.6.5")," - 2022-07-06"),(0,n.kt)("h4",{id:"-bug-fixes-26"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(header): double click to close dropdown is no longer required ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8a2ed0d1e671d12239ecaf250e68b3187c12a53"},(0,n.kt)("inlineCode",{parentName:"a"},"b8a2ed0"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): menu generation when atAGlance isn't found ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d68b03c05f7671e7ea154efe0199c29a3734fbcf"},(0,n.kt)("inlineCode",{parentName:"a"},"d68b03c"))),(0,n.kt)("li",{parentName:"ul"},"fix(menu): removed minHeight that enlarged the global menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/133be1e43d9b7778fd94388629400c5f2b707ff4"},(0,n.kt)("inlineCode",{parentName:"a"},"133be1e"))),(0,n.kt)("li",{parentName:"ul"},"fix(hero): image dimensions when full width and height isn't enabled ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4114f731cce63dc520bfd00cd487943181cec2ee"},(0,n.kt)("inlineCode",{parentName:"a"},"4114f73"))),(0,n.kt)("li",{parentName:"ul"},"fix(contentBox): removed negative z-index that hid fullwidth bg color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bd60faff53205da95d94930517f2ac830ec523d1"},(0,n.kt)("inlineCode",{parentName:"a"},"bd60faf")))),(0,n.kt)("h4",{id:"-enhancements-36"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(hero): tweaked hero block height and padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/994b6f8943c061657792df8adcbdee5da487ce43"},(0,n.kt)("inlineCode",{parentName:"a"},"994b6f8"))),(0,n.kt)("li",{parentName:"ul"},"change(item): tweak size and padding of icon when used inside item ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dbdef191e70bf59dcfddf63c8f9f9a1343266a59"},(0,n.kt)("inlineCode",{parentName:"a"},"dbdef19"))),(0,n.kt)("li",{parentName:"ul"},"change(typography): updated letterspacing values and clarified values used for certain type tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8a13bf8b3691d288209532842fb2c80962d652c0"},(0,n.kt)("inlineCode",{parentName:"a"},"8a13bf8"))),(0,n.kt)("li",{parentName:"ul"},"change(item): enable theming for icon and text color and added tertiary option ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d4444feedd1cd7e6e8f8da630b4b53a19050d1b"},(0,n.kt)("inlineCode",{parentName:"a"},"6d4444f"))),(0,n.kt)("li",{parentName:"ul"},"change(header): top section chevron sizes and margin as requested in enhancements document ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b307c74a671c10a5a6703dcb2126c3c36679c6f5"},(0,n.kt)("inlineCode",{parentName:"a"},"b307c74"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): add underline to links when applied to headers and use tertiary color by default ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/874f956c61e65ddbb6a240865f3946bb84247712"},(0,n.kt)("inlineCode",{parentName:"a"},"874f956"))),(0,n.kt)("li",{parentName:"ul"},"change(utilities): wrap in quotes h2 and h3 of quoted-wrapper ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8aa471604fb127cfa535373bb90a44b4204dd0f4"},(0,n.kt)("inlineCode",{parentName:"a"},"8aa4716"))),(0,n.kt)("li",{parentName:"ul"},"change(package): bump package version to 0.6.5 denoting bug fixes release ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0585aebaeb9e3483ba230110d99a1a875590ad66"},(0,n.kt)("inlineCode",{parentName:"a"},"0585aeb")))),(0,n.kt)("h3",{id:"061---2022-07-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.6.0...0.6.1"},"0.6.1")," - 2022-07-01"),(0,n.kt)("h4",{id:"-new-features-19"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(UnderlinedTitle): create story and necessary utilities ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8beb56b64ca76fb9f0f6df0f3554e64449a64868"},(0,n.kt)("inlineCode",{parentName:"a"},"8beb56b"))),(0,n.kt)("li",{parentName:"ul"},"feat(headers): added underlined titles with theming support ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af675616f9e002458501cf8b90742514153a298f"},(0,n.kt)("inlineCode",{parentName:"a"},"af67561")))),(0,n.kt)("h4",{id:"-enhancements-37"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(heading): move underline story and update controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2c9bfd279eafc44435d223be326f9496856c2154"},(0,n.kt)("inlineCode",{parentName:"a"},"2c9bfd2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(underlineTitle): add content box for different variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/087891535059d6c2d7d2c2accded20f6ba601bb5"},(0,n.kt)("inlineCode",{parentName:"a"},"0878915"))),(0,n.kt)("li",{parentName:"ul"},"refactor(underlinedTitle): add control for changing heading size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/211f5158bff2b437aac60f26ba63f9adb6be540a"},(0,n.kt)("inlineCode",{parentName:"a"},"211f515"))),(0,n.kt)("li",{parentName:"ul"},"refactor(underlinedTitle): Restore text variation dropdown control ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bd8c61129d2c80475af8d0e9310412d5c3a82169"},(0,n.kt)("inlineCode",{parentName:"a"},"bd8c611"))),(0,n.kt)("li",{parentName:"ul"},"refactor(utilities): add color variation for headings and text ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e3a779ec4fa3b712fcd32124f6f83ab784d2223"},(0,n.kt)("inlineCode",{parentName:"a"},"7e3a779"))),(0,n.kt)("li",{parentName:"ul"},"refactor(utilities): update border bottom utility and restore line height for headings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7fe4a7b9fee579d213fe3945a4e548ff089784bd"},(0,n.kt)("inlineCode",{parentName:"a"},"7fe4a7b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(headings): update the line height of headers according to docusaurus instructions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9da19b3e1ea1fd93431e00edf3dc9a443e94f27a"},(0,n.kt)("inlineCode",{parentName:"a"},"9da19b3")))),(0,n.kt)("h4",{id:"-internal-changes-13"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(countup): package for statistics ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/26fcd09bbd8d44119d5ca957542863be8c64836b"},(0,n.kt)("inlineCode",{parentName:"a"},"26fcd09")))),(0,n.kt)("h3",{id:"060---2022-07-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.5.5...0.6.0"},"0.6.0")," - 2022-07-01"),(0,n.kt)("h4",{id:"-bug-fixes-27"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(item): adjust the container in stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a848c46b5bf3153ec993a21a530e120bae872407"},(0,n.kt)("inlineCode",{parentName:"a"},"a848c46"))),(0,n.kt)("li",{parentName:"ul"},"fix(tag): align start for tags on mobile, update path for Tag List and add containers ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b9de8452c42ed6d16028ce147f2d7a062b895d67"},(0,n.kt)("inlineCode",{parentName:"a"},"b9de845"))),(0,n.kt)("li",{parentName:"ul"},"fix(item): update image width & height on mobiles and add 3 line clamp for description ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0cd2c46c945ff85b55183994990fae9cf450f3d1"},(0,n.kt)("inlineCode",{parentName:"a"},"0cd2c46"))),(0,n.kt)("li",{parentName:"ul"},"fix(pageheader): metadata font size on mobile to be readable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0a9b1fa7db6f0b11265f9eb4d28f25b23bedc79a"},(0,n.kt)("inlineCode",{parentName:"a"},"0a9b1fa"))),(0,n.kt)("li",{parentName:"ul"},"fix(breadcrumb): fixed variable name for breadcrumb item ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2b547eb43e0db4aa9bb63b4e4ba7f541f357fbd0"},(0,n.kt)("inlineCode",{parentName:"a"},"2b547eb")))),(0,n.kt)("h4",{id:"-enhancements-38"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(Item):create item story with custom default class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/069ae02a7cc2b15b7e6732e46f52d07eaa4502b1"},(0,n.kt)("inlineCode",{parentName:"a"},"069ae02"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pagination): add pastanage menu overrides and remove any eea theme css from default story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/508081090baaeb455130c760c6c0e7e23972d84a"},(0,n.kt)("inlineCode",{parentName:"a"},"5080810"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): update variables from px to rem ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/30eed78c170e5719ba4fb85c3a171db3f97d63c8"},(0,n.kt)("inlineCode",{parentName:"a"},"30eed78"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Item):add default item mobile padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/35184655e3225b8ad63626c8e521b5dcf59eaa3b"},(0,n.kt)("inlineCode",{parentName:"a"},"3518465"))),(0,n.kt)("li",{parentName:"ul"},"change(site): added fixes from custom ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0fe4d80586c8877d58905ec40aa7df19c2f4e32f"},(0,n.kt)("inlineCode",{parentName:"a"},"0fe4d80"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Pagination): add default pagination stopry and rename previous as Secondary ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a5e3e13b40d4d1d0c96f1efaa3a0c326d60c6d93"},(0,n.kt)("inlineCode",{parentName:"a"},"a5e3e13"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pagination): comment out secondary pagination and its styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bcf4cff1cff490718751475354b8fb32da174383"},(0,n.kt)("inlineCode",{parentName:"a"},"bcf4cff"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tags): remove content class and add flex wrap ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d6333ca7e61a588d8ffe4d0d2e02005c0aa12379"},(0,n.kt)("inlineCode",{parentName:"a"},"d6333ca"))),(0,n.kt)("li",{parentName:"ul"},"change(logo): use a real svg logo for white eea logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3b80dc7698c3dbab5d3834cc62f5102c2ace0166"},(0,n.kt)("inlineCode",{parentName:"a"},"3b80dc7"))),(0,n.kt)("li",{parentName:"ul"},"change(header): show eea information systems on tablet as well ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce82cebb554eb11a35ea2b3ee0c62bc645716476"},(0,n.kt)("inlineCode",{parentName:"a"},"ce82ceb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): update letter spacing tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f8753b7527b1bf7271102666a8662a74b2b1775"},(0,n.kt)("inlineCode",{parentName:"a"},"5f8753b"))),(0,n.kt)("li",{parentName:"ul"},"change(letterspacing): updated letter spacing positive values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b31818f292ce7ce8711084116a7b4df78cca33f0"},(0,n.kt)("inlineCode",{parentName:"a"},"b31818f"))),(0,n.kt)("li",{parentName:"ul"},"change(pageheader): add bottom margin on mobile for sharing dropdown actions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d3cda4732ec94dac91b36ef10014fbbe08a0a470"},(0,n.kt)("inlineCode",{parentName:"a"},"d3cda47"))),(0,n.kt)("li",{parentName:"ul"},"change(pageheader): removed blogger, reddit and stumbleupon sharing links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e4acc4e83c120cda59d94f04867a53e21bf322ab"},(0,n.kt)("inlineCode",{parentName:"a"},"e4acc4e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Item): add default item background color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c978c8d05355065466a8a661844237a9df103b94"},(0,n.kt)("inlineCode",{parentName:"a"},"c978c8d"))),(0,n.kt)("li",{parentName:"ul"},"change(package): bump package version ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f01f72ba6b09b6aae00c54e446bafddb48c4cd1"},(0,n.kt)("inlineCode",{parentName:"a"},"1f01f72")))),(0,n.kt)("h4",{id:"-internal-changes-14"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(item): update item image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e585e9d8c85a3627696b55c0505e29e8a8c33f7f"},(0,n.kt)("inlineCode",{parentName:"a"},"e585e9d")))),(0,n.kt)("h4",{id:"-documentation-changes-12"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(colors): token usage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c433ec6fcf190f85ab1dd81ea3e63eeb381d0c28"},(0,n.kt)("inlineCode",{parentName:"a"},"c433ec6"))),(0,n.kt)("li",{parentName:"ul"},"docs(Docusaurus): typography and spacing updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48d1269dce396aec26db1d1e2f777851a26eaa81"},(0,n.kt)("inlineCode",{parentName:"a"},"48d1269"))),(0,n.kt)("li",{parentName:"ul"},"docs(Docusaurus): various fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a972a31f7932d29d61a46da251c0c98994516365"},(0,n.kt)("inlineCode",{parentName:"a"},"a972a31"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/66d95e4fee695a20de47f5476712034f9f07f4a8"},(0,n.kt)("inlineCode",{parentName:"a"},"66d95e4")))),(0,n.kt)("h4",{id:"\ufe0f-others-35"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Tabs block custom border left/top ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca4cce05ddb603a26d729dfe31f0f11fda7563fb"},(0,n.kt)("inlineCode",{parentName:"a"},"ca4cce0"))),(0,n.kt)("li",{parentName:"ul"},"Fix sidebar tabs in Volto CSS ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c287db5abbfe068d4b255c41fd58d0433d2640c4"},(0,n.kt)("inlineCode",{parentName:"a"},"c287db5")))),(0,n.kt)("h3",{id:"055---2022-06-23"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.5.4...0.5.5"},"0.5.5")," - 2022-06-23"),(0,n.kt)("h4",{id:"-bug-fixes-28"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(contentBox): color of cards when inside content-boxes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/76a452031473f43928dee1d3ee705d06101e6a21"},(0,n.kt)("inlineCode",{parentName:"a"},"76a4520")))),(0,n.kt)("h4",{id:"-enhancements-39"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(homepage): moved fixes of homepage to custom and colored carousel arrow ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0a226ef3f5d328d45513764bec02d58241417db0"},(0,n.kt)("inlineCode",{parentName:"a"},"0a226ef")))),(0,n.kt)("h3",{id:"054---2022-06-16"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.5.3...0.5.4"},"0.5.4")," - 2022-06-16"),(0,n.kt)("h4",{id:"-bug-fixes-29"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(block-style): Content box preview in sidebar ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6362766f5e8dabf778e3864d2bb08966a55fc078"},(0,n.kt)("inlineCode",{parentName:"a"},"6362766"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): ensure transparency goes as high as the search icon ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4470e132e1e70fba3fdfb33fc63a1cc9d62700e8"},(0,n.kt)("inlineCode",{parentName:"a"},"4470e13")))),(0,n.kt)("h4",{id:"-enhancements-40"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(contentBox): add background as before element instead of using full-width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e0a5962c1b9cb0d3ef9a8d7b7208eded34eb3ce"},(0,n.kt)("inlineCode",{parentName:"a"},"7e0a596"))),(0,n.kt)("li",{parentName:"ul"},"change(content-box): content box links are now underlined ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f7976f50f5807a884522d6dba871a2757a1c5a98"},(0,n.kt)("inlineCode",{parentName:"a"},"f7976f5"))),(0,n.kt)("li",{parentName:"ul"},"change(homepage): added fixes from custom ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c3e03331d328f4fd7c6689f93bc1f1156013b8a9"},(0,n.kt)("inlineCode",{parentName:"a"},"c3e0333"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): add margin top with the height of the top section on edit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fefa6bb0f513e221ddb587f081c0e7d0c3067dfd"},(0,n.kt)("inlineCode",{parentName:"a"},"fefa6bb"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): fix default card color when inside content-boxes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6fdf3aabf9515289b36a5822e21edc5d282c4536"},(0,n.kt)("inlineCode",{parentName:"a"},"6fdf3aa"))),(0,n.kt)("li",{parentName:"ul"},"change(container): removed override of content-box-inner container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/66fe7d45adc631c3ebf0e8dd11de19d7ff60b894"},(0,n.kt)("inlineCode",{parentName:"a"},"66fe7d4")))),(0,n.kt)("h3",{id:"053---2022-06-16"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.5.2...0.5.3"},"0.5.3")," - 2022-06-16"),(0,n.kt)("h4",{id:"-bug-fixes-30"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(homepage): hero and homepage fixes for #151156 #198 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/43d4efc508750e0e9cbb93b9bffc3721be452c5a"},(0,n.kt)("inlineCode",{parentName:"a"},"43d4efc"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): fixed top section width on edit page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce5898b5ee41ea6959a2c454b3fb98216d71feb3"},(0,n.kt)("inlineCode",{parentName:"a"},"ce5898b")))),(0,n.kt)("h4",{id:"-enhancements-41"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(hero): added min height to hero-block-image-wrapper ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3cc37c027597573281710c9db98c687057d261dd"},(0,n.kt)("inlineCode",{parentName:"a"},"3cc37c0"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): spaced hero block has a 3rem margin top and bottom ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c463b033dda601bfd475b282bc0003200a053d45"},(0,n.kt)("inlineCode",{parentName:"a"},"c463b03"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): added extra top margin on hero-block-body from tablet and up within homepage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/64142c3c45f6a8ea6502842055a2341dcf16088c"},(0,n.kt)("inlineCode",{parentName:"a"},"64142c3"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): tweak min height of hero block ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e1271b4b5fdcd8205f0bec8b88ab9ae31f62251f"},(0,n.kt)("inlineCode",{parentName:"a"},"e1271b4"))),(0,n.kt)("li",{parentName:"ul"},"change(card,contentBox): use inherit for text color to inherit black from body ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c1ba3b6ddc16ddc7394aba8d78cad73b5a8c34cb"},(0,n.kt)("inlineCode",{parentName:"a"},"c1ba3b6"))),(0,n.kt)("li",{parentName:"ul"},"change(container): on section-edit modify only left and right padding values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fe6e3ec764643ec01e20ae9dbdde921774ef04cd"},(0,n.kt)("inlineCode",{parentName:"a"},"fe6e3ec"))),(0,n.kt)("li",{parentName:"ul"},"change(utilities): bump z-index of overlay class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ede3209556b620d2252bb03d4c994a92b6708fd2"},(0,n.kt)("inlineCode",{parentName:"a"},"ede3209"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): fixed variable reference for margin of body from homepage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/092b90b2a902b71cc96132ca3c96108edda56342"},(0,n.kt)("inlineCode",{parentName:"a"},"092b90b")))),(0,n.kt)("h3",{id:"052---2022-06-14"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.5.1...0.5.2"},"0.5.2")," - 2022-06-14"),(0,n.kt)("h4",{id:"-new-features-20"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(contentBox) : add new Content Box component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ebbb47fe685f9809aa3572263be376d9688371e"},(0,n.kt)("inlineCode",{parentName:"a"},"2ebbb47"))),(0,n.kt)("li",{parentName:"ul"},"feat(ContentBox): Add primary, secondary, tertiary themes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87cb2fe7e4cd5c2872299756f493e371abcbb05f"},(0,n.kt)("inlineCode",{parentName:"a"},"87cb2fe"))),(0,n.kt)("li",{parentName:"ul"},"feat(ContentBox): Update storybook with available themes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93b26b2f5f1d627aa8049df61257499e4798dd79"},(0,n.kt)("inlineCode",{parentName:"a"},"93b26b2")))),(0,n.kt)("h4",{id:"-enhancements-42"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(contentBox): restructure the component to be more flexible ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f0d2de67e43fafa10052871f99ac841c83cf8157"},(0,n.kt)("inlineCode",{parentName:"a"},"f0d2de6")))),(0,n.kt)("h4",{id:"-internal-changes-15"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(contentBox) : add lint changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5aaf740594f0001b1672bb6dc18d973f55c881f0"},(0,n.kt)("inlineCode",{parentName:"a"},"5aaf740")))),(0,n.kt)("h4",{id:"\ufe0f-others-36"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"perf(eol): change to lf ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/78b2955ff73d9436134d1a6399040b2d7c7f5714"},(0,n.kt)("inlineCode",{parentName:"a"},"78b2955"))),(0,n.kt)("li",{parentName:"ul"},"Cleanup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2b128dface95b560588a343f1ddf7bbaf3efb320"},(0,n.kt)("inlineCode",{parentName:"a"},"2b128df")))),(0,n.kt)("h3",{id:"051---2022-06-13"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.5.0...0.5.1"},"0.5.1")," - 2022-06-13"),(0,n.kt)("h4",{id:"-enhancements-43"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(header): changed homepage text color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/64ce8b61f8f2150513e09bf2926b48aa2ae1071c"},(0,n.kt)("inlineCode",{parentName:"a"},"64ce8b6"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): added styles for adding dark overlay to hero ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bf1d292fecfa8a6b222558f0d93f48e19bf6b8ea"},(0,n.kt)("inlineCode",{parentName:"a"},"bf1d292"))),(0,n.kt)("li",{parentName:"ul"},"change(homepage): hide stagingBanner on homepage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fb6e319dd10f4d148cc8f3b33dafc43280a0254f"},(0,n.kt)("inlineCode",{parentName:"a"},"fb6e319"))),(0,n.kt)("li",{parentName:"ul"},"change(header): use variable for homepage hero-block padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/89ff3441f269281ffb3da32cd3e5c64715b3204b"},(0,n.kt)("inlineCode",{parentName:"a"},"89ff344"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): modified grey-4 color to point to a 10% shade from original color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b406283e61c7356bec9d453567cd1ccde496880d"},(0,n.kt)("inlineCode",{parentName:"a"},"b406283"))),(0,n.kt)("li",{parentName:"ul"},"change(header): added min-height for mega menu needed for 1 items menus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/18814f48fb743c88d05554e9a1773f8d85dec86c"},(0,n.kt)("inlineCode",{parentName:"a"},"18814f4"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): hero section block integration #192 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ea2f40583951016c164c9abdf22d8e809d207fe"},(0,n.kt)("inlineCode",{parentName:"a"},"4ea2f40")))),(0,n.kt)("h4",{id:"\ufe0f-others-37"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Add hero block style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fa39656fd661d8af95f483a6f33a08e4c93c42f1"},(0,n.kt)("inlineCode",{parentName:"a"},"fa39656"))),(0,n.kt)("li",{parentName:"ul"},"Add padding if hero block is not full-width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/808b83957d6a866cc31c928f414fa8fa5da517a1"},(0,n.kt)("inlineCode",{parentName:"a"},"808b839"))),(0,n.kt)("li",{parentName:"ul"},"Cleanup available languages ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0c490512a6a6524efe9a37b4b61ab0061a240abb"},(0,n.kt)("inlineCode",{parentName:"a"},"0c49051"))),(0,n.kt)("li",{parentName:"ul"},"Use 1.5 rem ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1125cd7c65332fc5961ffbbbd2d2ab6bcc8b1b5b"},(0,n.kt)("inlineCode",{parentName:"a"},"1125cd7")))),(0,n.kt)("h3",{id:"050---2022-06-11"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.4.5...0.5.0"},"0.5.0")," - 2022-06-11"),(0,n.kt)("h4",{id:"-new-features-21"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(hero): added storybook implementation of hero component #172 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/17b9d1693e31bf7b3b41ca84be7bd21f07065674"},(0,n.kt)("inlineCode",{parentName:"a"},"17b9d16"))),(0,n.kt)("li",{parentName:"ul"},"feat(hero): add hero block component and stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6019fc843ec14a8afc7558e92c2d4b4bb14ee199"},(0,n.kt)("inlineCode",{parentName:"a"},"6019fc8")))),(0,n.kt)("h4",{id:"-bug-fixes-31"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(header): Internal links in mega menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d8ca13558c3e8c336800791f2fea8a8d33a2b602"},(0,n.kt)("inlineCode",{parentName:"a"},"d8ca135"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): show active menu when clicking on children ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a54fa67a1a92e2ab4216e6d149f66e1ee53aab89"},(0,n.kt)("inlineCode",{parentName:"a"},"a54fa67"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): accessibility and dropdown possition fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/505ac36a27d86e620fb5af515a0b8b5979610f0a"},(0,n.kt)("inlineCode",{parentName:"a"},"505ac36"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): fix accessibility issue by David ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/783dcec0d140e6e6e568d0f82833dcbf8a5c7d3d"},(0,n.kt)("inlineCode",{parentName:"a"},"783dcec"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): dropdowns disappear on resize ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/52338fd3e711f4918612e052dc2034a8d9bd40bd"},(0,n.kt)("inlineCode",{parentName:"a"},"52338fd"))),(0,n.kt)("li",{parentName:"ul"},"fix(header-topdropdown): dedupe html elements for topdropdowns ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cd8a2a7ea091e81b736438f7c2a87c254af1b092"},(0,n.kt)("inlineCode",{parentName:"a"},"cd8a2a7"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): transparency class should apply on the current bg color or image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f9a0033c5538cb19f08f26cf28d47954cc52607d"},(0,n.kt)("inlineCode",{parentName:"a"},"f9a0033"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): mobile dropdown now visible ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/34371b436f2ec100f3920f78de49983ba16679b0"},(0,n.kt)("inlineCode",{parentName:"a"},"34371b4"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): dropdown disappears after window resize #116 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fc7dd8bd7911421fb734a696a2dd5d3ad3b652b0"},(0,n.kt)("inlineCode",{parentName:"a"},"fc7dd8b"))),(0,n.kt)("li",{parentName:"ul"},"fix(header-topdropdown): dedupe html dropdown elements for topdropdowns #115 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f10a7a8743a5fb2cecd0c3374ec9d894e914143f"},(0,n.kt)("inlineCode",{parentName:"a"},"f10a7a8")))),(0,n.kt)("h4",{id:"-enhancements-44"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): update mega menu in header component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2d1ce454553d116efa96288079b8b77649e10abb"},(0,n.kt)("inlineCode",{parentName:"a"},"2d1ce45"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update structure and variables of top bar ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af709094f94f0cc2e2309b1aedb376e45dc7f136"},(0,n.kt)("inlineCode",{parentName:"a"},"af70909"))),(0,n.kt)("li",{parentName:"ul"},"change(header): renamed mega menu items href attribute to url ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ed8144589f87a9ad219c97193863c999a72cb6d"},(0,n.kt)("inlineCode",{parentName:"a"},"3ed8144"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update main section and and add color variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2f0fd1de7c04eff4b2a9b62d03dd13a1b0d69bc"},(0,n.kt)("inlineCode",{parentName:"a"},"f2f0fd1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): minor updates on colors and widths ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a70129fd929fedb344a47e049cca94274e84a3b1"},(0,n.kt)("inlineCode",{parentName:"a"},"a70129f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero): add full-heigh control to adjust height ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a45cb7c599cdc11426207001e67d8f7d727233fe"},(0,n.kt)("inlineCode",{parentName:"a"},"a45cb7c"))),(0,n.kt)("li",{parentName:"ul"},"change(header): disable sticky setting until feature is more stable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1d7af954c85cb6a8a657c1625e4ae863e562346a"},(0,n.kt)("inlineCode",{parentName:"a"},"1d7af95"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero):make button variant and inverted different button controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e182ca9ecdb76507205d84f83cad6a79dd74a03"},(0,n.kt)("inlineCode",{parentName:"a"},"7e182ca"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header):main bar sticky on scroll up ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9c9e7c6f9651c0663a1eab1856d7324a73afb2de"},(0,n.kt)("inlineCode",{parentName:"a"},"9c9e7c6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(headings): update heading sizes for mobile ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19f3ccacaf2c744b5f5c2ec8635773de7ef0016b"},(0,n.kt)("inlineCode",{parentName:"a"},"19f3cca"))),(0,n.kt)("li",{parentName:"ul"},"change(header): hide first link(home) from header menu on site ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ae7f3b9385620eb3d840dd90f512e37cd8556a6d"},(0,n.kt)("inlineCode",{parentName:"a"},"ae7f3b9"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): typo correction and key setting on list.items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/96d2c4fbfa722d22a215e8d27f1400e65fe9476e"},(0,n.kt)("inlineCode",{parentName:"a"},"96d2c4f"))),(0,n.kt)("li",{parentName:"ul"},"change(header): use Link instead of a tag for menu items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9812b3fba7b8305399d6972daf135b8a2d88e876"},(0,n.kt)("inlineCode",{parentName:"a"},"9812b3f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add control for inverted logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/023ca45e6f263166211cbea0d63b1938d11221da"},(0,n.kt)("inlineCode",{parentName:"a"},"023ca45"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero): move quoted utility to h2 tag ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7376676b4875494f16c49945f6b5dac19c6b8009"},(0,n.kt)("inlineCode",{parentName:"a"},"7376676"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add link for menu title inside desktop mega menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24355d000b2bd808b2031cd2b78e60cafb9ad5b1"},(0,n.kt)("inlineCode",{parentName:"a"},"24355d0"))),(0,n.kt)("li",{parentName:"ul"},"refactor(utilities): update hex with color token ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8dc65ef55a62dcb32b6eb8a684524a8dc1fa6ba6"},(0,n.kt)("inlineCode",{parentName:"a"},"8dc65ef"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): and mega menu to latest spec #114 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/44fcf68be242f97ced852b28ac3ab820dc0e1045"},(0,n.kt)("inlineCode",{parentName:"a"},"44fcf68"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update search input and file endings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/afab36f96f245e197eff528cb1d9e6fea45bc7ba"},(0,n.kt)("inlineCode",{parentName:"a"},"afab36f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add control that toggles transparency class on main section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8d4bdb9c527f102ffd3718f32bf1a43309a9bb4"},(0,n.kt)("inlineCode",{parentName:"a"},"b8d4bdb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): restore union dropdown after implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e98bab497ee10ad89d2dfed76c7117b633206fe"},(0,n.kt)("inlineCode",{parentName:"a"},"7e98bab"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): minor responsive fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/16a000634505c9e8f8b310860a30b62798a0fb87"},(0,n.kt)("inlineCode",{parentName:"a"},"16a0006"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero): align hero's text and meta seperately ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4fa958f7c7cc6d331a8eb7aaf25dc44d6cd3632a"},(0,n.kt)("inlineCode",{parentName:"a"},"4fa958f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero):add button variant controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f362a7b2ec273131fa0876f23b74c740c7217b3a"},(0,n.kt)("inlineCode",{parentName:"a"},"f362a7b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update search input ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/368962eabb668e2ec1bdcd18ae81658e7b1d911b"},(0,n.kt)("inlineCode",{parentName:"a"},"368962e"))),(0,n.kt)("li",{parentName:"ul"},"change(header): mark top level active menu item ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/665c449bc2667cc1471a4b97923c897ad3506792"},(0,n.kt)("inlineCode",{parentName:"a"},"665c449"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero):prettier & style changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d84688440417a430afd9fd24f4c8cfeef0121203"},(0,n.kt)("inlineCode",{parentName:"a"},"d846884"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add control for main section stickiness ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2f07572f78074137e7e6a49585273210ed5cedcb"},(0,n.kt)("inlineCode",{parentName:"a"},"2f07572"))),(0,n.kt)("li",{parentName:"ul"},"change(header): use viewport width for changing mobile text in header dropdowns ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b50fa585c0abeedc04a46395f08e50a9e112c430"},(0,n.kt)("inlineCode",{parentName:"a"},"b50fa58"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add fluid font sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f2743e39107fd1bd00a54e03bf92963eb9853f2"},(0,n.kt)("inlineCode",{parentName:"a"},"5f2743e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header) add position sticky & transparent for main section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/29df772edfe23b1752aa3d184659eea90c3c9221"},(0,n.kt)("inlineCode",{parentName:"a"},"29df772"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero): update variables with new design tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1d9792231c50f12fd68364e201054f6ab0926665"},(0,n.kt)("inlineCode",{parentName:"a"},"1d97922"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Language List): render language dropdown as ul and li elements ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3617442da78af07d3f473d0c43c47dd48c9b2ac3"},(0,n.kt)("inlineCode",{parentName:"a"},"3617442"))),(0,n.kt)("li",{parentName:"ul"},"change(header): introduced item class to the mega menu link content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/00ca376ea4cf1de4851e84567b97c374ee7f66e3"},(0,n.kt)("inlineCode",{parentName:"a"},"00ca376"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Language List): add less variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7ccc1ccf57419b6eecbf71d479db72b84428d43a"},(0,n.kt)("inlineCode",{parentName:"a"},"7ccc1cc"))),(0,n.kt)("li",{parentName:"ul"},"change(header): disabled active menu when clicking on globalnav links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3f7b5eedb038b51fbae8a14a683dc6adc919549b"},(0,n.kt)("inlineCode",{parentName:"a"},"3f7b5ee"))),(0,n.kt)("li",{parentName:"ul"},"change(header): target link instead of span directly ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9e865fbb5b256196756c3d84de397296ac0b447a"},(0,n.kt)("inlineCode",{parentName:"a"},"9e865fb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): remove unused imports ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e232db6ce0b2553be79d98d8497fa06f548b772"},(0,n.kt)("inlineCode",{parentName:"a"},"7e232db")))),(0,n.kt)("h4",{id:"\ufe0f-others-38"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Add item themes; override .block .ui.image width based on size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/06010db21398638d46d2e007317d72a7aff7e7d9"},(0,n.kt)("inlineCode",{parentName:"a"},"06010db"))),(0,n.kt)("li",{parentName:"ul"},"Move item icon themes to item.overrides ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/31e8921f4ee4d92ba3a9c58275b41dd3101cffd2"},(0,n.kt)("inlineCode",{parentName:"a"},"31e8921"))),(0,n.kt)("li",{parentName:"ul"},"Override only the width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8d4927084e5daedcb69e6f3a57cab73a9016a55f"},(0,n.kt)("inlineCode",{parentName:"a"},"8d49270"))),(0,n.kt)("li",{parentName:"ul"},"Override tile image in .block parrent ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/005655ddff6f45e211f1ff8156b0b7efa1e47a2e"},(0,n.kt)("inlineCode",{parentName:"a"},"005655d"))),(0,n.kt)("li",{parentName:"ul"},"Update package.json ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9dc38165a95deca1faf2dfccdc03fd6cab3d8c54"},(0,n.kt)("inlineCode",{parentName:"a"},"9dc3816"))),(0,n.kt)("li",{parentName:"ul"},"feature(item): added themes to item icons #190 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a6a2907df09575a18fb6e81dc52e8d6651eff118"},(0,n.kt)("inlineCode",{parentName:"a"},"a6a2907"))),(0,n.kt)("li",{parentName:"ul"},"update storybook header.topdropdown ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e58ac0821af56c06272e3373383647cbbff20978"},(0,n.kt)("inlineCode",{parentName:"a"},"e58ac08"))),(0,n.kt)("li",{parentName:"ul"},"use volto-screen-helper width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea156aad1100166ba78635163cfacdcfb913c1d4"},(0,n.kt)("inlineCode",{parentName:"a"},"ea156aa"))),(0,n.kt)("li",{parentName:"ul"},"Add divider content for metadata field in Banner ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/327ad1c5fdca0d376d04fd36084b940e5dd016ab"},(0,n.kt)("inlineCode",{parentName:"a"},"327ad1c"))),(0,n.kt)("li",{parentName:"ul"},"rename to viewportWidth ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32162e7c695774bbb68ac63a0008e8b148f1e9f5"},(0,n.kt)("inlineCode",{parentName:"a"},"32162e7"))),(0,n.kt)("li",{parentName:"ul"},"don't connect component to store ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/470b8bade5e8f2eaabb20a7bb02c8e82ca42f8a0"},(0,n.kt)("inlineCode",{parentName:"a"},"470b8ba"))),(0,n.kt)("li",{parentName:"ul"},"Add end of line ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51639d804a2b84f66373fb77c569bcc43b22e303"},(0,n.kt)("inlineCode",{parentName:"a"},"51639d8"))),(0,n.kt)("li",{parentName:"ul"},"behave as mobile under 480 only ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/11b99e15cb83245a32bb04f3937f5b95a60b1e95"},(0,n.kt)("inlineCode",{parentName:"a"},"11b99e1"))),(0,n.kt)("li",{parentName:"ul"},"make it account for all mobile-s,m,l ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/69e23ae8d12042f241dc53c9e296c340d5b17089"},(0,n.kt)("inlineCode",{parentName:"a"},"69e23ae")))),(0,n.kt)("h3",{id:"045---2022-06-08"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.4.4...0.4.5"},"0.4.5")," - 2022-06-08"),(0,n.kt)("h4",{id:"-enhancements-45"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(tabs): Add style for tabs accordion template #187 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fb8adbf84ac564a14d45bb6e8f4e1661811672d5"},(0,n.kt)("inlineCode",{parentName:"a"},"fb8adbf"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): avoid react error by providing key prop to grid column ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef0b1937d614a889a0c2117e483a834ed1aec1e3"},(0,n.kt)("inlineCode",{parentName:"a"},"ef0b193")))),(0,n.kt)("h4",{id:"\ufe0f-others-39"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Cleanup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4b9637ebd2d6c015f8d4323551c6cbc4b7506df"},(0,n.kt)("inlineCode",{parentName:"a"},"d4b9637"))),(0,n.kt)("li",{parentName:"ul"},"Add style for tabs accordion template ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a10998372a268b99991f7dda55103149f29d00cb"},(0,n.kt)("inlineCode",{parentName:"a"},"a109983")))),(0,n.kt)("h3",{id:"044---2022-06-08"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.4.3...0.4.4"},"0.4.4")," - 2022-06-08"),(0,n.kt)("h4",{id:"-new-features-22"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(divider): create story for divider ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b10a2e08b14962bed9f13317754f4124ee60d313"},(0,n.kt)("inlineCode",{parentName:"a"},"b10a2e0")))),(0,n.kt)("h4",{id:"-bug-fixes-32"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(divider): restore space between classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c595c152c144463f33757157ed7d6797ae31ceed"},(0,n.kt)("inlineCode",{parentName:"a"},"c595c15"))),(0,n.kt)("li",{parentName:"ul"},"fix(divider): Text colors and transform ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e524e1002bb0700ea69782cf5a95c6073ab383d2"},(0,n.kt)("inlineCode",{parentName:"a"},"e524e10"))),(0,n.kt)("li",{parentName:"ul"},"fix(footer): story aria labels for social media links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/254bdc7ba944943f5d08a71f9d0a3a31bdc06044"},(0,n.kt)("inlineCode",{parentName:"a"},"254bdc7")))),(0,n.kt)("h4",{id:"-enhancements-46"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update logos and less structure ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/66b8e0f12825968d94f7d572f2823d9a8a3a239b"},(0,n.kt)("inlineCode",{parentName:"a"},"66b8e0f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): first footer updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d18a2ee59d0deb143075d8dfeb949898ad1f6399"},(0,n.kt)("inlineCode",{parentName:"a"},"d18a2ee"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): logo updates and adjustments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/101bc9dfe4136240457f335de867a83c28d59339"},(0,n.kt)("inlineCode",{parentName:"a"},"101bc9d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): use tokens and adjust spacing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2cb166949913f725271050e863b38e7630748135"},(0,n.kt)("inlineCode",{parentName:"a"},"2cb1669"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): moved SubFooter logic to SubFooter.jsx from Footer story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/902383a0bb3446dc69237099bd429ead5e30a6c1"},(0,n.kt)("inlineCode",{parentName:"a"},"902383a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Divider):add divider with content inside story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2d66dca901fa189d69b65239dc34b1969097be8"},(0,n.kt)("inlineCode",{parentName:"a"},"e2d66dc"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): added managed by section as properties ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9328fc3084baf22439e1892d256d9a167b911849"},(0,n.kt)("inlineCode",{parentName:"a"},"9328fc3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(divider): remove custom divider ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4870d2252ad216e82213fa1f94cc39609ae676d"},(0,n.kt)("inlineCode",{parentName:"a"},"d4870d2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Divider_:remove green color class & add tertiary ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/95f30186bc1768e08f00ad7d5ffa2a70402ac553"},(0,n.kt)("inlineCode",{parentName:"a"},"95f3018"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): use remix icons for social links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5ef9aa2cebb6f96857a1920cefbf7e367b4d7c28"},(0,n.kt)("inlineCode",{parentName:"a"},"5ef9aa2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Divider):remove clean class and use fitted prop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8d2be350dcc44fd56b5fbfb791fb6b2a45bd8a52"},(0,n.kt)("inlineCode",{parentName:"a"},"8d2be35"))),(0,n.kt)("li",{parentName:"ul"},"change(Divider): Rename color property to theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0deffc823609d23131a85bc180e4a3f5a67a64aa"},(0,n.kt)("inlineCode",{parentName:"a"},"0deffc8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update links and logo align ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7afbab9b37982a557ac8bfa4430205ce912c3b8b"},(0,n.kt)("inlineCode",{parentName:"a"},"7afbab9"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): tweaked column sizes to the values before my changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fdf271868e44bce2904cc28c6fa924ee4c9ba759"},(0,n.kt)("inlineCode",{parentName:"a"},"fdf2718"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): to latest figma design #182 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e0ba2b659db9dc1b140d853840a06bd3ce31cab"},(0,n.kt)("inlineCode",{parentName:"a"},"3e0ba2b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): move subfooter logic to the proper component #185 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/303457719128c9699dd34939bd8db2b647977667"},(0,n.kt)("inlineCode",{parentName:"a"},"3034577"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b0b872b1415c9792a5886f619195f9c0471ea564"},(0,n.kt)("inlineCode",{parentName:"a"},"b0b872b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(testimonial): update divider ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/784450abdf395318fe89d8d3d0a1e398393cc93c"},(0,n.kt)("inlineCode",{parentName:"a"},"784450a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(testimonial): changed divider color to secondary ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/84282f960ab22ccb8403e975c055c61d1023193a"},(0,n.kt)("inlineCode",{parentName:"a"},"84282f9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(divider): remove custom divider from theme config ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a0409e8df3c9ba043717140455369a3630f0da85"},(0,n.kt)("inlineCode",{parentName:"a"},"a0409e8")))),(0,n.kt)("h4",{id:"-documentation-changes-13"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(divider): switch to secondary color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/239844be374a2f6bc4667e7ab3d2f52bfdc181ad"},(0,n.kt)("inlineCode",{parentName:"a"},"239844b"))),(0,n.kt)("li",{parentName:"ul"},"docs(divider): showcase path fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5ea03f60034edc918054aa273e44b84b2537716"},(0,n.kt)("inlineCode",{parentName:"a"},"d5ea03f")))),(0,n.kt)("h4",{id:"\ufe0f-others-40"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Remove unnecessary spaces ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d137981430809345bfb3ad494e7ab981c93c3e51"},(0,n.kt)("inlineCode",{parentName:"a"},"d137981"))),(0,n.kt)("li",{parentName:"ul"},"lint fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/657cf4ed917c4ff992aa033c3d9f4884a949d86d"},(0,n.kt)("inlineCode",{parentName:"a"},"657cf4e"))),(0,n.kt)("li",{parentName:"ul"},"perf(storybook): added storybook favicon ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/38eabc3124c85dd56bf5c68c0fb1e967c39055ec"},(0,n.kt)("inlineCode",{parentName:"a"},"38eabc3")))),(0,n.kt)("h3",{id:"043---2022-06-03"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.4.2...0.4.3"},"0.4.3")," - 2022-06-03"),(0,n.kt)("h4",{id:"-bug-fixes-33"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(edit): Fix columns/accordion inner toolbar padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fafbb525baa60c339906dc6a33d2f9418d050be6"},(0,n.kt)("inlineCode",{parentName:"a"},"fafbb52")))),(0,n.kt)("h4",{id:"-enhancements-47"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): completed removal of description from guides ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/42424b9213ece8d8df84d40f1b73e142cb0ffc6b"},(0,n.kt)("inlineCode",{parentName:"a"},"42424b9")))),(0,n.kt)("h3",{id:"042---2022-06-02"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.4.1...0.4.2"},"0.4.2")," - 2022-06-02"),(0,n.kt)("h4",{id:"-enhancements-48"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): moved color swatches around in the color guide ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8a395fce52a32cf92449a24d3d4cce5abf25a284"},(0,n.kt)("inlineCode",{parentName:"a"},"8a395fc"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): removed description from components and introduced category listing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f220bf0785f5aaede8c25c4164120b09de67b018"},(0,n.kt)("inlineCode",{parentName:"a"},"f220bf0"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): rename gap to space and added em spaces ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f5b042d311518ec3fb32c7f259c39ff62d4547f8"},(0,n.kt)("inlineCode",{parentName:"a"},"f5b042d"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): moved extra docs to webdev section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1ce0797b91418272e4e405467cd1468292620005"},(0,n.kt)("inlineCode",{parentName:"a"},"1ce0797"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): moved md_components files into webdev/md_components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/73c1c08a270d504fa6f2ba2579bcb3e6e25fb112"},(0,n.kt)("inlineCode",{parentName:"a"},"73c1c08"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): added category yml for all sections ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/17405728e3f44828da50890b9fc0f4e8a07f8bf2"},(0,n.kt)("inlineCode",{parentName:"a"},"1740572"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): color guideline updates and spacing tokens documentation #148 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c1154ba172c3b3b40b565c2bcb590f1a5e6b25a4"},(0,n.kt)("inlineCode",{parentName:"a"},"c1154ba"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): modified story links to avoid broken usage tabs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/78dc8d8f4e7cade3ab0e911e6dc002eefc1e7986"},(0,n.kt)("inlineCode",{parentName:"a"},"78dc8d8"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): renamed several file id's so that they match the incremental naming sequence ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/11299c9a4c41ca901926f852227dbca0bc1aee17"},(0,n.kt)("inlineCode",{parentName:"a"},"11299c9")))),(0,n.kt)("h4",{id:"-documentation-changes-14"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(Docusaurus): timeline, testimonial, quote and tags ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aaa54ecbe182872ffc7fff275d5065ebe790d348"},(0,n.kt)("inlineCode",{parentName:"a"},"aaa54ec"))),(0,n.kt)("li",{parentName:"ul"},"docs(spacing): add relative gap tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/92abc8fff2c7006e2c64684048e7783216a230bb"},(0,n.kt)("inlineCode",{parentName:"a"},"92abc8f"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): updated colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a28c99e60867c1eaa1b7b68d4154ccaa8c9ef958"},(0,n.kt)("inlineCode",{parentName:"a"},"a28c99e"))),(0,n.kt)("li",{parentName:"ul"},"docs(tags/content): new page about tags and content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/60be40268a77606c53fc45641bc22166b50b75e7"},(0,n.kt)("inlineCode",{parentName:"a"},"60be402"))),(0,n.kt)("li",{parentName:"ul"},"docs(Docusaurus): labeled icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6a0f61ede3a36c7d66d9b3091b93b0b5ff9a445"},(0,n.kt)("inlineCode",{parentName:"a"},"f6a0f61"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): add font size and line height tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ff65e47cfe56eb3efe976300b764ba13f8685ce"},(0,n.kt)("inlineCode",{parentName:"a"},"2ff65e4"))),(0,n.kt)("li",{parentName:"ul"},"docs(spacing): add spacing gap tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2d53727f8e817588421efea464e849c9f9e16dce"},(0,n.kt)("inlineCode",{parentName:"a"},"2d53727"))),(0,n.kt)("li",{parentName:"ul"},"docs(spacing): add missing gaps ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/442db468830150c8e4ad5f91775fc5b3c47dd655"},(0,n.kt)("inlineCode",{parentName:"a"},"442db46"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): minor fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e66513f08cff598881ce1051b482ddadf8e0593"},(0,n.kt)("inlineCode",{parentName:"a"},"6e66513"))),(0,n.kt)("li",{parentName:"ul"},"docs(spacing): aligned images ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e946fe59457b861a31939e99adf4b380777e01e0"},(0,n.kt)("inlineCode",{parentName:"a"},"e946fe5"))),(0,n.kt)("li",{parentName:"ul"},"docs(spacing): new image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fcd3294d53db76580b8bffc9678a09fd65b33113"},(0,n.kt)("inlineCode",{parentName:"a"},"fcd3294")))),(0,n.kt)("h4",{id:"\ufe0f-others-41"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"merge changes from develop into docusaurus token documentation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a9401384ddf5fcfbf29e50d34f3d7851be85f19a"},(0,n.kt)("inlineCode",{parentName:"a"},"a940138"))),(0,n.kt)("li",{parentName:"ul"},"perf(docs): restructuring order ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f4134d81d1cc59b8ba0d8669415b5eb31c0513d"},(0,n.kt)("inlineCode",{parentName:"a"},"8f4134d")))),(0,n.kt)("h3",{id:"041---2022-06-02"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.4.0...0.4.1"},"0.4.1")," - 2022-06-02"),(0,n.kt)("h4",{id:"-new-features-23"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(languageLabeledIcon) : add new component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/110558eeec37d5b5f616a95298a313ba230dd6f4"},(0,n.kt)("inlineCode",{parentName:"a"},"110558e"))),(0,n.kt)("li",{parentName:"ul"},"feat(LanguageLabeledIcon):add new component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d00200c278e1dab02b449b460a325e0f2e7b8ccd"},(0,n.kt)("inlineCode",{parentName:"a"},"d00200c"))),(0,n.kt)("li",{parentName:"ul"},"feat(newTabLabeledIcon) : add new component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f5cd31257a306a58c1d9cdbf7cb428701412369"},(0,n.kt)("inlineCode",{parentName:"a"},"8f5cd31"))),(0,n.kt)("li",{parentName:"ul"},"feat(labeledIconGroup) : add new component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/787d648342d78c4f9d28fde9d08e83089ef7b08f"},(0,n.kt)("inlineCode",{parentName:"a"},"787d648"))),(0,n.kt)("li",{parentName:"ul"},"feat(DownLoadLabeledIcon) : add new component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6ea2fa1ec17ce235401a8ac741afa8fede920d26"},(0,n.kt)("inlineCode",{parentName:"a"},"6ea2fa1")))),(0,n.kt)("h4",{id:"-bug-fixes-34"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(LabeledIcon) : fix lint errors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91b042f8c16bd3e99659c1c24a5f2a946c72b03f"},(0,n.kt)("inlineCode",{parentName:"a"},"91b042f"))),(0,n.kt)("li",{parentName:"ul"},"fix(LabeledIconGroup) : fix links for tests ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/daa10653ca37f3e83302e2ebcc566b5f5ec4c4d9"},(0,n.kt)("inlineCode",{parentName:"a"},"daa1065"))),(0,n.kt)("li",{parentName:"ul"},"fix(LanguageLabeledIcon):bug fix & languages change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1436e2bc270f8f079f07b7909254bd2e6e087084"},(0,n.kt)("inlineCode",{parentName:"a"},"1436e2b"))),(0,n.kt)("li",{parentName:"ul"},"fix(LabeledIconGroup):fix based on Langauge & Download Labeled icon components changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3015864ce740f534aa204402f85a9f392e342513"},(0,n.kt)("inlineCode",{parentName:"a"},"3015864"))),(0,n.kt)("li",{parentName:"ul"},"fix(newTabLabeledIcon) : add link item ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b1a9ada3dd7dae9e1841cfde5319a6ab37b15de2"},(0,n.kt)("inlineCode",{parentName:"a"},"b1a9ada"))),(0,n.kt)("li",{parentName:"ul"},"fix(Labeled Icons):minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/00f3022cdc2bfad634707f0d6d05768868f599be"},(0,n.kt)("inlineCode",{parentName:"a"},"00f3022")))),(0,n.kt)("h4",{id:"-enhancements-49"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcons): adjust new tab labeled icon to figma and replace px with rems ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/904615d789ea711678f43ce9f9d02a450289031f"},(0,n.kt)("inlineCode",{parentName:"a"},"904615d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(LanguageLabeledIcon):implement with pop up ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0f3dd8f0388484f94351a0ab0798ab53e84c9229"},(0,n.kt)("inlineCode",{parentName:"a"},"0f3dd8f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcon): add group wrapper in labeled icon stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4b7dd314230145b6239fd800d41f546ab5d9eebb"},(0,n.kt)("inlineCode",{parentName:"a"},"4b7dd31"))),(0,n.kt)("li",{parentName:"ul"},"refactor(DownloadLabeledIcon):implement with pop up ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aa61f9b7d449c08c08bc4c004da6a0458598c828"},(0,n.kt)("inlineCode",{parentName:"a"},"aa61f9b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcons): adjust language labeled icon to figma ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5741e3d2e95665ef12670335b12d29cfbf998fdc"},(0,n.kt)("inlineCode",{parentName:"a"},"5741e3d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcons): adjust download icon to figma and replace px with rems ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ae85307a62526fed75ef0b1d37ad59076370b5a"},(0,n.kt)("inlineCode",{parentName:"a"},"4ae8530"))),(0,n.kt)("li",{parentName:"ul"},"refactor(LanguageLabeledIcons):minor storybook change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/78f55442a80cbc2f716ba81274ed08204e3c502a"},(0,n.kt)("inlineCode",{parentName:"a"},"78f5544"))),(0,n.kt)("li",{parentName:"ul"},"refactor(LanguageLabeledIcon): set language code to uppercase and minor storybook change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac286931282c0a69bc6d7803e96cbe302db8994f"},(0,n.kt)("inlineCode",{parentName:"a"},"ac28693"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcon): adjust paddings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9c1ecddc52c81be1d952d0af67862a284eba9eec"},(0,n.kt)("inlineCode",{parentName:"a"},"9c1ecdd"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcons): update margins for group labeled icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5fa5ca9103a5d8ad1510c90cc8c46d0c82abcc63"},(0,n.kt)("inlineCode",{parentName:"a"},"5fa5ca9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcons): add variable for icon color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f9d3cba5115c5c91aaaca49c1f834950400673a"},(0,n.kt)("inlineCode",{parentName:"a"},"9f9d3cb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcons): update colors on download links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c04264229c91bfdea927fd22f4ee1e8ddbcebd5c"},(0,n.kt)("inlineCode",{parentName:"a"},"c042642")))),(0,n.kt)("h4",{id:"-internal-changes-16"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(labeledIconGroup) : lint changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/535cee4795dff75b35856cb4406a9bd33ee07ca4"},(0,n.kt)("inlineCode",{parentName:"a"},"535cee4"))),(0,n.kt)("li",{parentName:"ul"},"style(downloadLabeledIcon) : fix styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d8e3acb3bac1a4174d4bb526d6188cb5e5f8faa"},(0,n.kt)("inlineCode",{parentName:"a"},"6d8e3ac"))),(0,n.kt)("li",{parentName:"ul"},"style(downloadLabeledIcon) : fix alignment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/455801701d2958515885ba2c398312f0c56057b0"},(0,n.kt)("inlineCode",{parentName:"a"},"4558017"))),(0,n.kt)("li",{parentName:"ul"},"chore(LabeledIconGroup) : lint changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab364763bb2526adbbb7fc3c656a16b497568940"},(0,n.kt)("inlineCode",{parentName:"a"},"ab36476")))),(0,n.kt)("h3",{id:"040---2022-06-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.3.1...0.4.0"},"0.4.0")," - 2022-06-01"),(0,n.kt)("h4",{id:"-new-features-24"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(Carousel): create carousel for cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2b0d73798b4fcbf2897d7a8167d9b4d3b3374fb2"},(0,n.kt)("inlineCode",{parentName:"a"},"2b0d737"))),(0,n.kt)("li",{parentName:"ul"},"feat(ItemwithIcons): Initial Item group with icons, new item variation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7f4ea476264856845a07cd24be6ec86ccd21ed8d"},(0,n.kt)("inlineCode",{parentName:"a"},"7f4ea47"))),(0,n.kt)("li",{parentName:"ul"},"feat(utilities): add file and basic utilities ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/05c88b294a49590e3fb355fb6e113f5020442915"},(0,n.kt)("inlineCode",{parentName:"a"},"05c88b2"))),(0,n.kt)("li",{parentName:"ul"},"feat(utilities): add file with basic utilities classes #173 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/855185ff22c77efb75cc5c7850d181254b4c4927"},(0,n.kt)("inlineCode",{parentName:"a"},"855185f")))),(0,n.kt)("h4",{id:"-bug-fixes-35"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(tokens): hsla function for shadows ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8e5d37a6e88321b1e2daf995b407c4ddd6e866e"},(0,n.kt)("inlineCode",{parentName:"a"},"b8e5d37"))),(0,n.kt)("li",{parentName:"ul"},"fix(tokens): remove css var from less file ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a9c422476b412287713a6b475406615c3aed2aca"},(0,n.kt)("inlineCode",{parentName:"a"},"a9c4224"))),(0,n.kt)("li",{parentName:"ul"},"fix(carousel):add storybook controls descriptions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/269a60383ed1e54fc57e26d4eed6b37d1da32236"},(0,n.kt)("inlineCode",{parentName:"a"},"269a603"))),(0,n.kt)("li",{parentName:"ul"},"fix(item): remove image width css from item.less ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7b21cb2d5ddf6a6f72646f47fd268a0bd7af757d"},(0,n.kt)("inlineCode",{parentName:"a"},"7b21cb2"))),(0,n.kt)("li",{parentName:"ul"},"fix(table): Set responsive breakpoint to @tabletBreakpoint ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/067e01842030bfa5639e2a55cb8af5047bb2996f"},(0,n.kt)("inlineCode",{parentName:"a"},"067e018")))),(0,n.kt)("h4",{id:"-enhancements-50"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(item): import item.less in theme definitions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c51637480192dbece828616010174648ac865e2e"},(0,n.kt)("inlineCode",{parentName:"a"},"c516374"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Label):add corner,ribbon & basic label stories and styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2bbbb947113a59127f91b86917ef0edbf36ab16"},(0,n.kt)("inlineCode",{parentName:"a"},"e2bbbb9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Label):style changes based on label importance class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce4d5d1a5bf1b1183242a253e37c509d61f82b8c"},(0,n.kt)("inlineCode",{parentName:"a"},"ce4d5d1"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): rename gap to space and added em spaces ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/719efc44070ef87f049a92e4da96bb111e9fc8ff"},(0,n.kt)("inlineCode",{parentName:"a"},"719efc4"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): add classes for size, set default to tile and add controls for grouped items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5a0405abba4e5f5d36f899dc9e47f43a96d5e49"},(0,n.kt)("inlineCode",{parentName:"a"},"d5a0405"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): add borders, shadows, shapes and z-index tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7069106c2b0ada9cdbad63249b4ada7fde72e05f"},(0,n.kt)("inlineCode",{parentName:"a"},"7069106"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): name spacing tokens gaps and added missing values up to 80px as documented ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9fbd912a6f027150149d82678f88885a939120b0"},(0,n.kt)("inlineCode",{parentName:"a"},"9fbd912"))),(0,n.kt)("li",{parentName:"ul"},"refactor(quote): Rename sourceInfo to extra info ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/76c2b400de4814fe79f303bfd2a82842c848231c"},(0,n.kt)("inlineCode",{parentName:"a"},"76c2b40"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): WIP replacing unstackable with row ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e3a44de4b2dd26667e80e0d131c55b08f3c527d9"},(0,n.kt)("inlineCode",{parentName:"a"},"e3a44de"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tocens): add color design tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/13bb165e103a25aadb9da6414773dc0d35081d88"},(0,n.kt)("inlineCode",{parentName:"a"},"13bb165"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): adjust margins to match figma designs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6334581b336a2f486e85199f371126beea47b92f"},(0,n.kt)("inlineCode",{parentName:"a"},"6334581"))),(0,n.kt)("li",{parentName:"ul"},"refactor(carousel): remove title from story and color on card hover ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/12a1d7c3bd5e7ba6edf4eb20a2d7a6f8f22955f9"},(0,n.kt)("inlineCode",{parentName:"a"},"12a1d7c"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): updated sizes with 4-8-16px increments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f53d655df2b24053a5d331c56dfd14bd3602dfd"},(0,n.kt)("inlineCode",{parentName:"a"},"1f53d65"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): added size tokens to be used for width of elements ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cda5dea1f6ad1ae980c89999d323d7b385894025"},(0,n.kt)("inlineCode",{parentName:"a"},"cda5dea"))),(0,n.kt)("li",{parentName:"ul"},"change(utilities): values need important rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/96150d9a22cb6be6f338f1e9d052cbd65e3602fc"},(0,n.kt)("inlineCode",{parentName:"a"},"96150d9"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): added also rem space values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aedbbddaf7f8be88ed2f8a2b8c21b60752896c53"},(0,n.kt)("inlineCode",{parentName:"a"},"aedbbdd"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): updated z-index tokens with negative values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/404efe4244d67276b435e60a1d7a69aaa90e3d8a"},(0,n.kt)("inlineCode",{parentName:"a"},"404efe4"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): add 14px font size token ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8d8695dce62e7f29af01447308460e4fe3f72b21"},(0,n.kt)("inlineCode",{parentName:"a"},"8d8695d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): restructured and improved sections navigation #174 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b47b0266ffd6baeaf1a5aea1a7ab22c909976de1"},(0,n.kt)("inlineCode",{parentName:"a"},"b47b026"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): add 12 and 14px font size token #176 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/368114729536f03dd85c2d3565b984c3bdfe3a72"},(0,n.kt)("inlineCode",{parentName:"a"},"3681147"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): remove conditional border radius ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f0fe5ada7b74e9c87623dd2b2774283dd89b9a58"},(0,n.kt)("inlineCode",{parentName:"a"},"f0fe5ad")))),(0,n.kt)("h4",{id:"-documentation-changes-15"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(website): created new sections, improved website navigation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/243f0be4d7fa6e988da0ca0f586f5ea478573eef"},(0,n.kt)("inlineCode",{parentName:"a"},"243f0be"))),(0,n.kt)("li",{parentName:"ul"},"docs(homepage): adding design system homepage with links for upcoming sections ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c9a968508acff74d1182e68cf049046dafd564c5"},(0,n.kt)("inlineCode",{parentName:"a"},"c9a9685"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): copyedit, improved navigation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/998762a5bd40d08f619c00743b66d82b43aed653"},(0,n.kt)("inlineCode",{parentName:"a"},"998762a"))),(0,n.kt)("li",{parentName:"ul"},"docs(website): restructuring, moved current DS docs to new folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8bb612f1313dfc739d7912aa2e3252f468e1122f"},(0,n.kt)("inlineCode",{parentName:"a"},"8bb612f"))),(0,n.kt)("li",{parentName:"ul"},"docs(homepage): copy editing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee37d6f1d282b973af744f4305c0eb94c0993113"},(0,n.kt)("inlineCode",{parentName:"a"},"ee37d6f")))),(0,n.kt)("h4",{id:"\ufe0f-others-42"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Release 0.4.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f4bc50928ab877f3670b181dbe6e8cfff7fa2daa"},(0,n.kt)("inlineCode",{parentName:"a"},"f4bc509"))),(0,n.kt)("li",{parentName:"ul"},"feature(homepage): added Item group with icons #167 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ec99f53aeb183b24073be4014a9c2ec30d5235c"},(0,n.kt)("inlineCode",{parentName:"a"},"2ec99f5"))),(0,n.kt)("li",{parentName:"ul"},"feature(tokens): added borders, z-index, shadows tokens #171 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/74c178837cedc7ee9fc55effde1096dc03245574"},(0,n.kt)("inlineCode",{parentName:"a"},"74c1788"))),(0,n.kt)("li",{parentName:"ul"},"feature(tokens): added initial color design tokens #169 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/da3eae05d07783aa5eadaed5d508ee3be8acc47d"},(0,n.kt)("inlineCode",{parentName:"a"},"da3eae0"))),(0,n.kt)("li",{parentName:"ul"},"perf(carousel): added slick library ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca9be5125efa864bc30a0178274d744c5b2bc500"},(0,n.kt)("inlineCode",{parentName:"a"},"ca9be51")))),(0,n.kt)("h3",{id:"031---2022-05-19"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.3.0...0.3.1"},"0.3.1")," - 2022-05-19"),(0,n.kt)("h4",{id:"-bug-fixes-36"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(input,segment): toggle inputs and padding fixes within Volto sidebar forms ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/de030d617325a8f9d028a5c1615faa160fcdd763"},(0,n.kt)("inlineCode",{parentName:"a"},"de030d6")))),(0,n.kt)("h4",{id:"-enhancements-51"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(login): restored width of login container to 376px ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0564293346b2402c3c86009b61066da4200662b8"},(0,n.kt)("inlineCode",{parentName:"a"},"0564293")))),(0,n.kt)("h3",{id:"030---2022-05-17"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.2.4...0.3.0"},"0.3.0")," - 2022-05-17"),(0,n.kt)("h4",{id:"-new-features-25"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(Callout):create Callout component with Blockquote style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3d486b1c2c7f74ee8bc4b3a5e1bf3993ac98f6dd"},(0,n.kt)("inlineCode",{parentName:"a"},"3d486b1"))),(0,n.kt)("li",{parentName:"ul"},"feat(callout): Align the Callout component with Volto slate component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e9343ff7008cd3d60700929e8861c7bdd06df4d3"},(0,n.kt)("inlineCode",{parentName:"a"},"e9343ff")))),(0,n.kt)("h4",{id:"-bug-fixes-37"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(testimonial): fix storybook arg names ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b9df52f7151ef759fd672d365b2d74f6db535ad0"},(0,n.kt)("inlineCode",{parentName:"a"},"b9df52f"))),(0,n.kt)("li",{parentName:"ul"},"fix(table): tweak responsive table for extra long headers ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7f9f9e25f7c57d4bf7edd2546a7579b892867b5c"},(0,n.kt)("inlineCode",{parentName:"a"},"7f9f9e2"))),(0,n.kt)("li",{parentName:"ul"},"fix(quote): fix color and padding issue ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/310d6b37bdf5df3da2d2103eab8f4fa5020c95ab"},(0,n.kt)("inlineCode",{parentName:"a"},"310d6b3"))),(0,n.kt)("li",{parentName:"ul"},"fix(accordion): Fix accordion active title color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/57af1650a0b830e01c79e21b130784190defbcc0"},(0,n.kt)("inlineCode",{parentName:"a"},"57af165"))),(0,n.kt)("li",{parentName:"ul"},"fix(testimonial): remove info arguement ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9593d95f6352fb5aea48c3611b27b4bc6a9ae7e4"},(0,n.kt)("inlineCode",{parentName:"a"},"9593d95")))),(0,n.kt)("h4",{id:"-enhancements-52"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(Table):add responsive mobile table story and styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aed69e698e5b89e33a4c331570755934267492af"},(0,n.kt)("inlineCode",{parentName:"a"},"aed69e6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(testimonial): adjust to volto design | fix avatar image size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/546070e494ad187c50913b5742dab49ce5475a84"},(0,n.kt)("inlineCode",{parentName:"a"},"546070e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Quote):rename Pullquote component to Quote ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9384a0c129b8e4eed637e51a9669c41d8ade69d4"},(0,n.kt)("inlineCode",{parentName:"a"},"9384a0c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Quote):rename Quote.Metadata to Quote.SourceInfo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dfae8b1c147659d24dfd1a13fb4c3098e5865a12"},(0,n.kt)("inlineCode",{parentName:"a"},"dfae8b1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Quote): rename Author to Source ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d400f6a0ec0062f58782b4e170f4a1a9a31c56c"},(0,n.kt)("inlineCode",{parentName:"a"},"6d400f6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Quote):move Testimonial component under Quote folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2467c2089577d67ef5689a2507cb860a837f6a0"},(0,n.kt)("inlineCode",{parentName:"a"},"e2467c2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(testimonial): readjust rounded card ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b41933417a44dabcf829a3346d91c142dd6472d3"},(0,n.kt)("inlineCode",{parentName:"a"},"b419334"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Table):wrap table with semantic ui container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24ac2bb4813df33547f684220e1e12af5ca6df7e"},(0,n.kt)("inlineCode",{parentName:"a"},"24ac2bb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Testimonial):minor storybook bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7b6d128c6be3b2481d4765cebca82af6cafbea05"},(0,n.kt)("inlineCode",{parentName:"a"},"7b6d128"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Callout): wrap story with semantic ui container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ead362d88f43fa1380e8be5481cbc38c055060f8"},(0,n.kt)("inlineCode",{parentName:"a"},"ead362d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(quote): update action name to match the functionality ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/caf2e359cada8056f280d2cd137776d64f82a2af"},(0,n.kt)("inlineCode",{parentName:"a"},"caf2e35"))),(0,n.kt)("li",{parentName:"ul"},"refactor(table): add borders to responsive table with celled attribute ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8a71a670fb34a11fbe4cef7365b91c6be84b5b54"},(0,n.kt)("inlineCode",{parentName:"a"},"8a71a67"))),(0,n.kt)("li",{parentName:"ul"},"change(table): make use of headerSortableWhiteSpace variable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fd836fbe82e92864a628bf4d9d3093674890f722"},(0,n.kt)("inlineCode",{parentName:"a"},"fd836fb"))),(0,n.kt)("li",{parentName:"ul"},"change(table): use the @mobileLandscapeBreakpoint for max 480px media query ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/90880ab324b6a66c7741819dd0d913504751454f"},(0,n.kt)("inlineCode",{parentName:"a"},"90880ab"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Quote):rename pullquote to Quote in Testimonial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f54da192ab3b0823b0d6c77254f8954ab94506c8"},(0,n.kt)("inlineCode",{parentName:"a"},"f54da19"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Testimonial): change card class name ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e995c32bc70780e4315c4dc02d6b6fa9a0c5b29d"},(0,n.kt)("inlineCode",{parentName:"a"},"e995c32"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Testimonial): prettier changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/904594b9814c3d8900656f0e4c8d3a99481efe94"},(0,n.kt)("inlineCode",{parentName:"a"},"904594b")))),(0,n.kt)("h4",{id:"\ufe0f-others-43"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feature(tokens): added tokens folder for design tokens we can use in the system ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a542172cfd84dde0286b4332e66a617a1f3d13bf"},(0,n.kt)("inlineCode",{parentName:"a"},"a542172"))),(0,n.kt)("li",{parentName:"ul"},"perf(lint): fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2ef3abb9daa8fee3dd103adc14246c412951427"},(0,n.kt)("inlineCode",{parentName:"a"},"f2ef3ab"))),(0,n.kt)("li",{parentName:"ul"},"Release 0.3.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8724b2809027b2e359dcd64e418a33cade4ad487"},(0,n.kt)("inlineCode",{parentName:"a"},"8724b28")))),(0,n.kt)("h3",{id:"024---2022-05-13"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.2.3...0.2.4"},"0.2.4")," - 2022-05-13"),(0,n.kt)("h4",{id:"-enhancements-53"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(segment): brought back overrides from pastanaga into our theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/14efd021f81898bb0f2d3f1a2e8677445420591a"},(0,n.kt)("inlineCode",{parentName:"a"},"14efd02"))),(0,n.kt)("li",{parentName:"ul"},"change(container): removed padding from containers restoring thus the defaults ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c2ed813cf2f7ce284e33f2e94e02ff16678c2d05"},(0,n.kt)("inlineCode",{parentName:"a"},"c2ed813"))),(0,n.kt)("li",{parentName:"ul"},"change(grid-story): added container as grid width is influenced by container width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/459f4813ee3c5325a3db22d417ac5f23063bd4d2"},(0,n.kt)("inlineCode",{parentName:"a"},"459f481"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumb): removed padding from breadcrumb added by container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5df5675a519085badc030416e5bb784a9f73321"},(0,n.kt)("inlineCode",{parentName:"a"},"c5df567"))),(0,n.kt)("li",{parentName:"ul"},"change(container): modified all outputted widths to align to grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f29cefa4bfee1fe50844c8450de39ef4b0915d4"},(0,n.kt)("inlineCode",{parentName:"a"},"9f29cef"))),(0,n.kt)("li",{parentName:"ul"},"change(breakpoints): restore Semantic UI breakpoints, adding extra needed values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e7f5b1e4fac6453458078bb02cdc66c328843b59"},(0,n.kt)("inlineCode",{parentName:"a"},"e7f5b1e"))),(0,n.kt)("li",{parentName:"ul"},"change(container): restore maxWidth to 100% now that the last value is 1120px ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8b55c58d3bbc8967b20de19a828aedd2f1473ee5"},(0,n.kt)("inlineCode",{parentName:"a"},"8b55c58"))),(0,n.kt)("li",{parentName:"ul"},"change(header): wrap header globalnav links useful for editing section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/10d4f56624510eb63155ab330dcf0475b0728ed4"},(0,n.kt)("inlineCode",{parentName:"a"},"10d4f56"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumb): added vertical variant to the breadcrumbs like we do in Volto ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f405f8437be6be221b055a41c5d391f4cc94385d"},(0,n.kt)("inlineCode",{parentName:"a"},"f405f84"))),(0,n.kt)("li",{parentName:"ul"},"change(breakpoints): added also contentBreakpoint for backward compatibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b6c9212378a37639e6154d8d8e837169bcbac8b5"},(0,n.kt)("inlineCode",{parentName:"a"},"b6c9212")))),(0,n.kt)("h4",{id:"\ufe0f-others-44"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"[JENKINSFILE]"," Add failure comment, no jenkins fail ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c325bf14f3fb0da150f2a56cda0a9f03d8d8a628"},(0,n.kt)("inlineCode",{parentName:"a"},"c325bf1"))),(0,n.kt)("li",{parentName:"ul"},"prettier changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/134da52549b9d5eac5a12b7ad3005073500ac2c4"},(0,n.kt)("inlineCode",{parentName:"a"},"134da52"))),(0,n.kt)("li",{parentName:"ul"},"[JENKINSFILE]"," format PR comments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/739438c64950c745d630d1998314a2bed595b23a"},(0,n.kt)("inlineCode",{parentName:"a"},"739438c"))),(0,n.kt)("li",{parentName:"ul"},"[JENKINSFILE]"," mention comment author in comment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/39a26aa1ff0f35e93e8df9f442c29c5ab79ff493"},(0,n.kt)("inlineCode",{parentName:"a"},"39a26aa"))),(0,n.kt)("li",{parentName:"ul"},"[JENKINSFILE]"," remove debug, add error per stage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/903eecdb6bcbb8d73cff5e447d80c85e2a2c906d"},(0,n.kt)("inlineCode",{parentName:"a"},"903eecd")))),(0,n.kt)("h3",{id:"023---2022-04-29"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.2.2...0.2.3"},"0.2.3")," - 2022-04-29"),(0,n.kt)("h4",{id:"-new-features-26"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(CallToAction):add feat call to action ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab53642f27c996f929ff871d0794add39bab6c23"},(0,n.kt)("inlineCode",{parentName:"a"},"ab53642")))),(0,n.kt)("h4",{id:"-enhancements-54"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(button): add container to stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6c02c1953e102f2d90ab23023d6b4dfc738ced2e"},(0,n.kt)("inlineCode",{parentName:"a"},"6c02c19"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tab): update vertical tab columns and content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b473fabee196a3ec420e29160448d2be3d1685cc"},(0,n.kt)("inlineCode",{parentName:"a"},"b473fab"))),(0,n.kt)("li",{parentName:"ul"},'refactor(call to action):render call to action with Button as="a" ',(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e7dfabfc2f006505b0f1c802dc6fb48611518bcb"},(0,n.kt)("inlineCode",{parentName:"a"},"e7dfabf"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button): update inverted button colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c822021ab37939632416ce74c0cc88a64b98a3c1"},(0,n.kt)("inlineCode",{parentName:"a"},"c822021"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Tab):scrollbar change in mobile & vertical tab fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0e34cbf459e67b6910217f30a44a1e81f33df622"},(0,n.kt)("inlineCode",{parentName:"a"},"0e34cbf"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): added icon class to share icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48e866e4251dd517c0477cd5a42cec1a98e2f16d"},(0,n.kt)("inlineCode",{parentName:"a"},"48e866e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Button): move button to forms folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/94996fcdf1ea7e55c63dd44e10edf1b44b9bdef5"},(0,n.kt)("inlineCode",{parentName:"a"},"94996fc"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Tab):minor change in secondary pointing menu variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/280b6c41a2107bccb38500f54eb5663ef62c7ae3"},(0,n.kt)("inlineCode",{parentName:"a"},"280b6c4")))),(0,n.kt)("h4",{id:"-documentation-changes-16"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(button): import call to action stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e4eed44e3519ae3dba7d16e252271a964fcb7a4b"},(0,n.kt)("inlineCode",{parentName:"a"},"e4eed44")))),(0,n.kt)("h3",{id:"022---2022-04-22"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.2.1...0.2.2"},"0.2.2")," - 2022-04-22"),(0,n.kt)("h4",{id:"-bug-fixes-38"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(publicationCard): restore line endings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/582859e0ab4fa969662d4cf3e60fe75b160f052a"},(0,n.kt)("inlineCode",{parentName:"a"},"582859e"))),(0,n.kt)("li",{parentName:"ul"},"fix(form): added back overrides from Pastanaga theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a3f7ff810cdeb55b009c2dadc6753d01bbd10d8c"},(0,n.kt)("inlineCode",{parentName:"a"},"a3f7ff8"))),(0,n.kt)("li",{parentName:"ul"},"fix(OrderedList) : add list only if sub list exists ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8acbc8d5a492b411b169b106ab64bb78563f891f"},(0,n.kt)("inlineCode",{parentName:"a"},"8acbc8d"))),(0,n.kt)("li",{parentName:"ul"},"fix(label): update highlight label color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d55bbb03a5d28b2f269c1a1ca447c67dcdc7a748"},(0,n.kt)("inlineCode",{parentName:"a"},"d55bbb0"))),(0,n.kt)("li",{parentName:"ul"},"fix(publication card): run prettier ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/81a5bfc123ce69c44562a5585e41a630fe0bbf5a"},(0,n.kt)("inlineCode",{parentName:"a"},"81a5bfc"))),(0,n.kt)("li",{parentName:"ul"},"fix(avatar) : fix naming convention for arg ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/84fc5fa8faa7887f45cd52e58aa6fa6f8b951d26"},(0,n.kt)("inlineCode",{parentName:"a"},"84fc5fa"))),(0,n.kt)("li",{parentName:"ul"},"fix(tab): restore mobile font sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/58f39be02a45ade92873b86597c33763379e0f44"},(0,n.kt)("inlineCode",{parentName:"a"},"58f39be"))),(0,n.kt)("li",{parentName:"ul"},"fix(addForm): add min height to add form and fixed block chooser overflow ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca4415d49b973378894ec9270501beafbefff776"},(0,n.kt)("inlineCode",{parentName:"a"},"ca4415d"))),(0,n.kt)("li",{parentName:"ul"},"fix(OrderedList): adjust margins to fourth sublists ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/663d384790920f164d51edb304c411275972fbb7"},(0,n.kt)("inlineCode",{parentName:"a"},"663d384"))),(0,n.kt)("li",{parentName:"ul"},"fix(dropdown): being hidden because of third party css ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d353dfd65e93d08a3c8584adeeebea50bf7efe8"},(0,n.kt)("inlineCode",{parentName:"a"},"7d353df"))),(0,n.kt)("li",{parentName:"ul"},"fix(modal): overflow hidden as clearfix of last child from modal ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4923f5165a0a7e8d2dd33ea4c35f9f951372909"},(0,n.kt)("inlineCode",{parentName:"a"},"b4923f5"))),(0,n.kt)("li",{parentName:"ul"},"fix(RelatedContent):fix merge conflict ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/adc34bfdac7d668aa27578eb2a4844c136e0360f"},(0,n.kt)("inlineCode",{parentName:"a"},"adc34bf"))),(0,n.kt)("li",{parentName:"ul"},"fix(button): labeled class needs to be placed after left or right keyword ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53d1204fe52665fe1023747da359d3100d45e58f"},(0,n.kt)("inlineCode",{parentName:"a"},"53d1204")))),(0,n.kt)("h4",{id:"-enhancements-55"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(card): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e10e3d610a313c4e1995676130e2677f0ebab070"},(0,n.kt)("inlineCode",{parentName:"a"},"e10e3d6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add card variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e16d05b4afa678b9089987b42a8257323a78093f"},(0,n.kt)("inlineCode",{parentName:"a"},"e16d05b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): remove stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0deb0cab6d7fd73957b149325960c266c33cdc6f"},(0,n.kt)("inlineCode",{parentName:"a"},"0deb0ca"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):delete primary and secondary card stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f95d227a026ecc34b29cc3e4938c3d13906cfd8"},(0,n.kt)("inlineCode",{parentName:"a"},"1f95d22"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Avatar) : remake avatar as card variant ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea77cdd1acafd2ea288f11074423705e5d6b7412"},(0,n.kt)("inlineCode",{parentName:"a"},"ea77cdd"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add styles for card variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7407bd30e722f2d7b1a9d75a8c7cf155bf1c4996"},(0,n.kt)("inlineCode",{parentName:"a"},"7407bd3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): add story with related content inside of a tab ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dca008a35b27e4a75c13ef965ab8764df0d3b357"},(0,n.kt)("inlineCode",{parentName:"a"},"dca008a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): Rename variables from avatar to rounded ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/be0131631cf8e303f4077fe93b6685fd6b34bf46"},(0,n.kt)("inlineCode",{parentName:"a"},"be01316"))),(0,n.kt)("li",{parentName:"ul"},"refactor(avatar): update less variables and layer structure ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f965db1dd17d90e7165f66d39fdda9016c2eae91"},(0,n.kt)("inlineCode",{parentName:"a"},"f965db1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(PublicationCard):remake publication card to be a semantic card variation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5a0c6ab21c22a53aa6e34fafecfae15a3d435391"},(0,n.kt)("inlineCode",{parentName:"a"},"5a0c6ab"))),(0,n.kt)("li",{parentName:"ul"},"change(button): simplified button styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fe892d6f2f59aecf3f9e8b04f18b55fb0d384021"},(0,n.kt)("inlineCode",{parentName:"a"},"fe892d6"))),(0,n.kt)("li",{parentName:"ul"},"change(button): simplified storybook naming and examples ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9a7df4f46c24a234dd8bb290336ac8e7d5c7422b"},(0,n.kt)("inlineCode",{parentName:"a"},"9a7df4f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Avatar) : convert avatar component to card variation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2004a941c18f8fe21f96f88d3288446fd5e283e8"},(0,n.kt)("inlineCode",{parentName:"a"},"2004a94"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Related Content): change in grid and add see all button ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/955450e974c89aa2297eaa28d278e5098fea7705"},(0,n.kt)("inlineCode",{parentName:"a"},"955450e"))),(0,n.kt)("li",{parentName:"ul"},"change(button): added back button.overrides from pastanaga theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3b55acbf8b8df0e3daa475ab12e4db44693a4053"},(0,n.kt)("inlineCode",{parentName:"a"},"3b55acb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add card class control ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/68c91a9bf7e78874e12e868a0c466f12715a0698"},(0,n.kt)("inlineCode",{parentName:"a"},"68c91a9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):delete publication card variables & overrides files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6be8a037118762cf2280fbe44ba097a0cb7a79e0"},(0,n.kt)("inlineCode",{parentName:"a"},"6be8a03"))),(0,n.kt)("li",{parentName:"ul"},"refactor(OrderedList): rename TOC to Ordered List and add container to the story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e00c4db8e623651eb2ec9ad45de6e3d8c2693b2b"},(0,n.kt)("inlineCode",{parentName:"a"},"e00c4db"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add card grid fluid story with no columns ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f38251ca3fa04a9b586468ead44bbfe8ae110fbb"},(0,n.kt)("inlineCode",{parentName:"a"},"f38251c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(list): remove horizontal control ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f5e576a37452ed368d6f9cf4d55960e737d48ad"},(0,n.kt)("inlineCode",{parentName:"a"},"1f5e576"))),(0,n.kt)("li",{parentName:"ul"},"refactor(avatarGrid): update less variables and layer structure ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/db554a894ca10ba50ff425883000177854ea2455"},(0,n.kt)("inlineCode",{parentName:"a"},"db554a8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Related Content):show button when there are more hidden cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/57ff1c8d485d16c34002da22bd765069e6eb3df0"},(0,n.kt)("inlineCode",{parentName:"a"},"57ff1c8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(RelatedContent):change to use new card variant instead of publication card component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7cf424ae885d9b657a7635fc67a74a8af4c4e905"},(0,n.kt)("inlineCode",{parentName:"a"},"7cf424a"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumb): brought back pastanaga overrides to breadcrumbs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bca1c939c1d49dab1d4b8e72c0999d78383fd643"},(0,n.kt)("inlineCode",{parentName:"a"},"bca1c93"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):delete publication card folder & story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/68bf77306d710651bb2177d429f42b8efc127db2"},(0,n.kt)("inlineCode",{parentName:"a"},"68bf773"))),(0,n.kt)("li",{parentName:"ul"},"change(buttons): modified basic and circular variant behavior ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c06fed9fa74216cf76971b7789dad231a5125ce8"},(0,n.kt)("inlineCode",{parentName:"a"},"c06fed9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):tertiary variation minor story update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87b8dca0b8ef6c6f0fbf1ea6bc71b7b8b6ee9205"},(0,n.kt)("inlineCode",{parentName:"a"},"87b8dca"))),(0,n.kt)("li",{parentName:"ul"},"refactor(DescriptionList): add container to story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d647c1a17097eae9bdfaf8eb8068f6d1d0b13972"},(0,n.kt)("inlineCode",{parentName:"a"},"d647c1a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(List):render ordered list with ol,li tags ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87813c1a942ce498f89b51fe79a59b117afd28b0"},(0,n.kt)("inlineCode",{parentName:"a"},"87813c1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(OrderedList) : change table of contents story to ordered list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb6197c872a97f1b990c675554b1da9b0a8f7959"},(0,n.kt)("inlineCode",{parentName:"a"},"cb6197c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(publicationCard): update tag and name variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c109ad98f257fea233f31d767c4a037a2758be2d"},(0,n.kt)("inlineCode",{parentName:"a"},"c109ad9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(UnorderedList): update list as ul, list items as li and add container to strory ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2c096e117125a7fb943a5d2e665c0077761b271c"},(0,n.kt)("inlineCode",{parentName:"a"},"2c096e1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):organize controls and minor bug fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f3f6e35df077e348ea1e0c2e5c5bd73d4af5aef9"},(0,n.kt)("inlineCode",{parentName:"a"},"f3f6e35"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables): publication card style changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5a84e99ebea6345e45fac3b7ffc077ec42dfb45"},(0,n.kt)("inlineCode",{parentName:"a"},"c5a84e9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables): add less to related content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e1a55438a9fc9dd141a9515c5363d834732a0c4d"},(0,n.kt)("inlineCode",{parentName:"a"},"e1a5543"))),(0,n.kt)("li",{parentName:"ul"},"refactor(RelatedContent):delete publication card component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ed0ed4a1497224b669386f6d0942a79d00555ea"},(0,n.kt)("inlineCode",{parentName:"a"},"2ed0ed4"))),(0,n.kt)("li",{parentName:"ul"},"change(button): basic button is again without padding, border and background ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5a907c721bda1d065153b108d6c9dc0ee20a886d"},(0,n.kt)("inlineCode",{parentName:"a"},"5a907c7"))),(0,n.kt)("li",{parentName:"ul"},"refactor(PublicationCard):remove link wrapper ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5911a0db1967c58311a6776864f92bc0692052fa"},(0,n.kt)("inlineCode",{parentName:"a"},"5911a0d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables): change publication card height per viewport ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d7a525615672f387a2c8a0457bcde5c08aec45dd"},(0,n.kt)("inlineCode",{parentName:"a"},"d7a5256"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Timeline):change timeline icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b2fe0bf9a7a4583f1f10765a9f8c3c989412d472"},(0,n.kt)("inlineCode",{parentName:"a"},"b2fe0bf"))),(0,n.kt)("li",{parentName:"ul"},"refactor(publicationCard): replace px with rems ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53bf8da5e42343de7f7f940c266beb5e530dd63a"},(0,n.kt)("inlineCode",{parentName:"a"},"53bf8da"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Related Content): change in related content grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bf856ce66f9a74cb440cf8a7c93f62cd0d3965e9"},(0,n.kt)("inlineCode",{parentName:"a"},"bf856ce"))),(0,n.kt)("li",{parentName:"ul"},"refactor(List):render description list with dl,dt,dd tags ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ec669a74da08f7a82bb4a1a0a2d752b6ee5ba4bb"},(0,n.kt)("inlineCode",{parentName:"a"},"ec669a7"))),(0,n.kt)("li",{parentName:"ul"},"change(button): show only labeled variant for buttons with icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bf499446dc02e4be8d6452a3e0cba5797b8a005e"},(0,n.kt)("inlineCode",{parentName:"a"},"bf49944"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): import image for rounded card ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca5a47ea2cd713336c7c8ecdebebbdacd681282f"},(0,n.kt)("inlineCode",{parentName:"a"},"ca5a47e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progress): add container to story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dfb33bb8f3560d43e3e7300560bb557591c0a6ba"},(0,n.kt)("inlineCode",{parentName:"a"},"dfb33bb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): add publication card story with different description sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/23af97bc708ac70d70b92efe9a782548c65aabc5"},(0,n.kt)("inlineCode",{parentName:"a"},"23af97b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(List):render default list with dl & dt tags ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ece2280eb06481b3fd42e7a1ffec5c71c08e736f"},(0,n.kt)("inlineCode",{parentName:"a"},"ece2280"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): add publication cards stories with longer description ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/37adefa500c8a85a5b0b86e5b17c687828ea21fc"},(0,n.kt)("inlineCode",{parentName:"a"},"37adefa"))),(0,n.kt)("li",{parentName:"ul"},"change(button): basic icon buttons no longer have box shadows ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c2f3ea38ec3c62dce37612ac1e666a0b064309f7"},(0,n.kt)("inlineCode",{parentName:"a"},"c2f3ea3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): remove story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/afc5f7903a0049563355e3c9292fdd89fa532740"},(0,n.kt)("inlineCode",{parentName:"a"},"afc5f79"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables): change card description line number per device ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6946fdae2a1ede28a0e5971736817b3ae19bf290"},(0,n.kt)("inlineCode",{parentName:"a"},"6946fda"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): update rounded card image path ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8db3a85a45e8e05a3fe86ab824e7550d437222c3"},(0,n.kt)("inlineCode",{parentName:"a"},"8db3a85"))),(0,n.kt)("li",{parentName:"ul"},"refactor(DefaultList): add container to story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f971193369007a45fea7d517cdf0fc2314ebda69"},(0,n.kt)("inlineCode",{parentName:"a"},"f971193"))),(0,n.kt)("li",{parentName:"ul"},"change(button): bumped z-index of sidenav expand button ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/445ed8a8ede4e458814f380bee0600dbb8ff42f6"},(0,n.kt)("inlineCode",{parentName:"a"},"445ed8a"))),(0,n.kt)("li",{parentName:"ul"},"change(progress,label): color accessibility fixes #151 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/09cf6e34ed5a57bfbfc8fe95787591387776df86"},(0,n.kt)("inlineCode",{parentName:"a"},"09cf6e3"))),(0,n.kt)("li",{parentName:"ul"},"change(button): text button now has an underline with a focus border like other buttons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cdd90436bf0c4f8acaca8bf27afef672fb0f3a89"},(0,n.kt)("inlineCode",{parentName:"a"},"cdd9043"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): update card variation grids path ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/756589cff5d3607994d6cf092cb5dd0e36d51903"},(0,n.kt)("inlineCode",{parentName:"a"},"756589c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): minor fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3a880d7d14c89137b2a33342aed1a31c1b2b3939"},(0,n.kt)("inlineCode",{parentName:"a"},"3a880d7"))),(0,n.kt)("li",{parentName:"ul"},"change(button): primary color is blue and secondary is green ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53e0a0c6d32a04c52d089914a224b010b04a8846"},(0,n.kt)("inlineCode",{parentName:"a"},"53e0a0c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(List):change styles to match with the tags lists are rendered ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2673890449579a0421d8ac1c89ad4c5e850322d7"},(0,n.kt)("inlineCode",{parentName:"a"},"2673890"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progress): update colors for accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea2f454f73c859ac21c4fe6e415a2442a6c3d64c"},(0,n.kt)("inlineCode",{parentName:"a"},"ea2f454"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): move avatarGrid & relatedContent to Card folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1959d521de222c95aa13d9b3db249d133f879ccd"},(0,n.kt)("inlineCode",{parentName:"a"},"1959d52"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Timeline): change storybook timeline colors to fix accessibility issues ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/79da8dca48c709fd1df83b858296126f5e5c5753"},(0,n.kt)("inlineCode",{parentName:"a"},"79da8dc"))),(0,n.kt)("li",{parentName:"ul"},"change(segment): restore light grey background color for secondary segments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8716b08a977cacf5dbdab8ab23c714bb03066b0c"},(0,n.kt)("inlineCode",{parentName:"a"},"8716b08"))),(0,n.kt)("li",{parentName:"ul"},"refactor(relatedContent): adjust column paddings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8a1520d1b958b65e968bffdba22c3484916a475e"},(0,n.kt)("inlineCode",{parentName:"a"},"8a1520d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): clear up code ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ada154b5ab562dc7605604de8002a9d3461e594"},(0,n.kt)("inlineCode",{parentName:"a"},"3ada154"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): use the rounded class for avatar grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8c000f3c37103e0068b6d6554783da8188603442"},(0,n.kt)("inlineCode",{parentName:"a"},"8c000f3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card) Update rounded card class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/140b58746673a864d7ea218c4f8a02dc70207af4"},(0,n.kt)("inlineCode",{parentName:"a"},"140b587"))),(0,n.kt)("li",{parentName:"ul"},"refactor(avatar): add variable for image border radius ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c23341c66d34a9dfa572be4df24f1faf4325d58e"},(0,n.kt)("inlineCode",{parentName:"a"},"c23341c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(label): add container to story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/565101fff2c8860deedd599b7b0cff0660c663f6"},(0,n.kt)("inlineCode",{parentName:"a"},"565101f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progress): update value color for accessibility error ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6fc76f8ff3df4bf2b83863687e5ab6bd5e4cd1ef"},(0,n.kt)("inlineCode",{parentName:"a"},"6fc76f8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):use jsx extension ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/413d3284869a35f39f886df7862db6a52e8cc18e"},(0,n.kt)("inlineCode",{parentName:"a"},"413d328")))),(0,n.kt)("h4",{id:"-internal-changes-17"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(Avatar) : add container to stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/41b748cd23002d597d9b6fbb7947a443ef40f9b2"},(0,n.kt)("inlineCode",{parentName:"a"},"41b748c"))),(0,n.kt)("li",{parentName:"ul"},"style(OrderedList): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ed95e4dea2f33d46ca604e1b2c30d63b5596c03d"},(0,n.kt)("inlineCode",{parentName:"a"},"ed95e4d")))),(0,n.kt)("h4",{id:"\ufe0f-others-45"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"perf(eol): change to LF ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c71e42e4a8cf49c4a3b943bfdc8a94c9a9cc4940"},(0,n.kt)("inlineCode",{parentName:"a"},"c71e42e"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): linux eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e0bb30132904f92b9755356f6b5ccbf72075425"},(0,n.kt)("inlineCode",{parentName:"a"},"6e0bb30"))),(0,n.kt)("li",{parentName:"ul"},"lint fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a68866d4058f7412a2635371adebc370b6445281"},(0,n.kt)("inlineCode",{parentName:"a"},"a68866d"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): lf fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7054b2067b0802c5bd04e185cba76e2577ccfdd1"},(0,n.kt)("inlineCode",{parentName:"a"},"7054b20"))),(0,n.kt)("li",{parentName:"ul"},"doco(list): update Ordered List showcase ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/75e40bf4487ea334c9ebc2dd6c2a392d82e662f3"},(0,n.kt)("inlineCode",{parentName:"a"},"75e40bf"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): lf fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19235e585ac50c3669f654a93798b8998894f900"},(0,n.kt)("inlineCode",{parentName:"a"},"19235e5"))),(0,n.kt)("li",{parentName:"ul"},"fixed js syntax error from previous commit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/37dc1f5c1506040c1f155afdea76c4ed739ddda2"},(0,n.kt)("inlineCode",{parentName:"a"},"37dc1f5"))),(0,n.kt)("li",{parentName:"ul"},"Next relese: 0.2.2 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b3fb40ff5e46d7519b6356fdaf7326780bd89d9e"},(0,n.kt)("inlineCode",{parentName:"a"},"b3fb40f")))),(0,n.kt)("h3",{id:"021---2022-04-08"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.2.0...0.2.1"},"0.2.1")," - 2022-04-08"),(0,n.kt)("h4",{id:"-bug-fixes-39"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(version): Switch to 2.0.0.alpha.1 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/83b8b8ebba4f1eb31514b16476ac23a5d2b03ea9"},(0,n.kt)("inlineCode",{parentName:"a"},"83b8b8e")))),(0,n.kt)("h4",{id:"\ufe0f-others-46"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"cleanup(loader): Remove useless HTML ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d1d180c714ea225c1ad269360413a5e5e4b39f22"},(0,n.kt)("inlineCode",{parentName:"a"},"d1d180c")))),(0,n.kt)("h3",{id:"020---2022-04-04"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.9...0.2.0"},"0.2.0")," - 2022-04-04"),(0,n.kt)("h4",{id:"-new-features-27"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(card) : add new default card color-schme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/965adea8eef6d8729790f6d2bd5e71daeee15d75"},(0,n.kt)("inlineCode",{parentName:"a"},"965adea"))),(0,n.kt)("li",{parentName:"ul"},"feat(label): Handle slate links and footnotes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f382431219df29be498fe5063f3d579f0b918068"},(0,n.kt)("inlineCode",{parentName:"a"},"f382431")))),(0,n.kt)("h4",{id:"-bug-fixes-40"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(buttons,toggles): border and background color when active 147629 #139 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea36f31e986110d6c28c104d01666104ac38e2ba"},(0,n.kt)("inlineCode",{parentName:"a"},"ea36f31"))),(0,n.kt)("li",{parentName:"ul"},"fix(checkboxes): background color when they are toggles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4b6ab67085b7514c4f0ab2322e8f45de8bc09449"},(0,n.kt)("inlineCode",{parentName:"a"},"4b6ab67"))),(0,n.kt)("li",{parentName:"ul"},"fix(buttons): border set on basic buttons appearing on svg elements of Volto UI ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/69ca73f33b562b3f87bf11ce43a52ac01f83b951"},(0,n.kt)("inlineCode",{parentName:"a"},"69ca73f"))),(0,n.kt)("li",{parentName:"ul"},"fix(label): Zotero/Footnotes inside label ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0ee4d584f2771b739ed5f2332cb33aad61391786"},(0,n.kt)("inlineCode",{parentName:"a"},"0ee4d58"))),(0,n.kt)("li",{parentName:"ul"},"fix(card) : add control for image url in storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b28e5303ba04c6aee673f1d7f98ce42037c672e1"},(0,n.kt)("inlineCode",{parentName:"a"},"b28e530"))),(0,n.kt)("li",{parentName:"ul"},"fix(less variables):change font family ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e4bca9e0cb7ab9f1fd86e9f4c558382ec129e5a1"},(0,n.kt)("inlineCode",{parentName:"a"},"e4bca9e"))),(0,n.kt)("li",{parentName:"ul"},"fix(storybook):minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9fc53bcad61bbe0561d7a986dbba567d53777a8c"},(0,n.kt)("inlineCode",{parentName:"a"},"9fc53bc"))),(0,n.kt)("li",{parentName:"ul"},"fix(tag): fixes merged theme config ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/eb30363fda8a8a88155ee05268c4d7660fe99df1"},(0,n.kt)("inlineCode",{parentName:"a"},"eb30363"))),(0,n.kt)("li",{parentName:"ul"},"fix(Banner): prop types fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a270e5b4d6e571f219b5da31ca8f883f74da05e3"},(0,n.kt)("inlineCode",{parentName:"a"},"a270e5b")))),(0,n.kt)("h4",{id:"-enhancements-56"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(tag): splits Tags component to TagList and tag, changes default tags style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/78a5f8c245149706a1f7b825ef3e02da5ba86445"},(0,n.kt)("inlineCode",{parentName:"a"},"78a5f8c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner):add banner share pop up in banner story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c9688b2b697c879bbaed3cb3a688a0af7fc71234"},(0,n.kt)("inlineCode",{parentName:"a"},"c9688b2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tag): remove classes and actions that add background color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce9b6f92589618f6cb1e839a2cddc44381ef7406"},(0,n.kt)("inlineCode",{parentName:"a"},"ce9b6f9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner):change banner's image wrapper implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9153dd1073999e67c105b5ba90538bc963e17abc"},(0,n.kt)("inlineCode",{parentName:"a"},"9153dd1"))),(0,n.kt)("li",{parentName:"ul"},"change(package): bump release version to 1.10.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e984c1e1a6ea481a58a5b7a783d077b5769a621"},(0,n.kt)("inlineCode",{parentName:"a"},"7e984c1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): align cards and images, update less variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d47c9780bfbc23d1cba3578f181864074db97e98"},(0,n.kt)("inlineCode",{parentName:"a"},"d47c978"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add class inverted for default card ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/919a56e79c0243fa567144fadd4b842f75f1cf8f"},(0,n.kt)("inlineCode",{parentName:"a"},"919a56e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tag): changes component name ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e1db068bd7ac336a451a4514c61fe44557e14cc2"},(0,n.kt)("inlineCode",{parentName:"a"},"e1db068"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tag): changes color metallicBlue to bottleGreen ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e4b68acf95bb3e192914aab89b2122e0434bf72c"},(0,n.kt)("inlineCode",{parentName:"a"},"e4b68ac"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables): change tag list mobile view ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fcded3dbc67465eec6ef7f72d3fd599ec5cd3c13"},(0,n.kt)("inlineCode",{parentName:"a"},"fcded3d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tagList): update story to not use tag color classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8b5b61bfad9225c0538b713937ed39bbd0bd14e9"},(0,n.kt)("inlineCode",{parentName:"a"},"8b5b61b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner):minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff8c352b899b78528897547df0b20c357fd153cd"},(0,n.kt)("inlineCode",{parentName:"a"},"ff8c352"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner): add metadata field sub component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/327b7e77626c18ae783aea9efae0c7589f63d4f5"},(0,n.kt)("inlineCode",{parentName:"a"},"327b7e7"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): add and adjust remix icon for banner action ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1bf3ffaa16432746c5e5577f0b1643f6659b3f56"},(0,n.kt)("inlineCode",{parentName:"a"},"1bf3ffa"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): replace px with rem and adjust share popup padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a5683294570227d0b25a99e410eb824b2c6d643c"},(0,n.kt)("inlineCode",{parentName:"a"},"a568329"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner):add type class to metadata field and apply styles to it ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/86a286699146c7dda9e288e2183ec8cc86f35a23"},(0,n.kt)("inlineCode",{parentName:"a"},"86a2866"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables):change tag list styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/867008791545769aa003ef7a8a820a7e5a873e4b"},(0,n.kt)("inlineCode",{parentName:"a"},"8670087"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): share items display flex on desktop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ff86840e548f47cd597a0c76b23f996d4a9d74b"},(0,n.kt)("inlineCode",{parentName:"a"},"3ff8684"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): added background gradient, share popup, metadata show and hide #136 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2f5dccacf1e23f45f351b0be58c9bbda04da1518"},(0,n.kt)("inlineCode",{parentName:"a"},"2f5dcca"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): update gradient ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/570ee1e1e9778cb98757804fbd8ad7d9dee9ad13"},(0,n.kt)("inlineCode",{parentName:"a"},"570ee1e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tags): removes hardcoded ':' ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea58e86a79b46b5150d84ff2fbb6a7b8ba47876c"},(0,n.kt)("inlineCode",{parentName:"a"},"ea58e86"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): remove card border ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bc777397026f0efe8e569c8fd0e90d98b585b0eb"},(0,n.kt)("inlineCode",{parentName:"a"},"bc77739")))),(0,n.kt)("h4",{id:"-internal-changes-18"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(card) : add lint and prettier changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9d9a77363f7e4f7ec2ea4db5fa777dc97e086156"},(0,n.kt)("inlineCode",{parentName:"a"},"9d9a773"))),(0,n.kt)("li",{parentName:"ul"},"style(tag): remove comments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/501fcdfb8271f4a3558dadb96c546e71cfdef286"},(0,n.kt)("inlineCode",{parentName:"a"},"501fcdf"))),(0,n.kt)("li",{parentName:"ul"},"style(tag): stylelint and prettier changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/08b63864e8394fd86ada78df0b441cda52cd8063"},(0,n.kt)("inlineCode",{parentName:"a"},"08b6386")))),(0,n.kt)("h4",{id:"\ufe0f-others-47"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"1.10 release #140 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/88d33396845f00830789867663a9cd66ad88920f"},(0,n.kt)("inlineCode",{parentName:"a"},"88d3339"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/328ef2cda2d3470b5cb5ae2ef9854323f6b0f3c7"},(0,n.kt)("inlineCode",{parentName:"a"},"328ef2c"))),(0,n.kt)("li",{parentName:"ul"},"undo changes to Header.jsx committed wrongly in 4b6ab ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bfc4c51d39cf9c5151c39b099071174897de10b0"},(0,n.kt)("inlineCode",{parentName:"a"},"bfc4c51"))),(0,n.kt)("li",{parentName:"ul"},"Update 0-intro.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af75f81a84ddb9b78a77a96450976c6cd1223924"},(0,n.kt)("inlineCode",{parentName:"a"},"af75f81"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): lf fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ecf474ffbaab6796434d49c30fb09deafe9d1125"},(0,n.kt)("inlineCode",{parentName:"a"},"ecf474f"))),(0,n.kt)("li",{parentName:"ul"},"Update 0-intro.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93a073242693fa3c24c39532c2c462f58071e5c4"},(0,n.kt)("inlineCode",{parentName:"a"},"93a0732"))),(0,n.kt)("li",{parentName:"ul"},"modifies tags title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/33c3714660aa6cfbca7e362fd7baa8c396b60a0e"},(0,n.kt)("inlineCode",{parentName:"a"},"33c3714"))),(0,n.kt)("li",{parentName:"ul"},"reafactor(taglist): fixes tags root class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d09959f85d2d21cdc890a71457ed5840b5b2c53"},(0,n.kt)("inlineCode",{parentName:"a"},"7d09959")))),(0,n.kt)("h3",{id:"019---2022-03-25"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.8...0.1.9"},"0.1.9")," - 2022-03-25"),(0,n.kt)("h4",{id:"-new-features-28"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(all): 1.9 release #124 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0d3f6fbf32a4948e00410d9d0943a077863cb869"},(0,n.kt)("inlineCode",{parentName:"a"},"0d3f6fb"))),(0,n.kt)("li",{parentName:"ul"},"feat(callout): Align volto-slate callout with blockquote style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9e0bb49ffe66ebb8b8173af411873ab887b91058"},(0,n.kt)("inlineCode",{parentName:"a"},"9e0bb49")))),(0,n.kt)("h4",{id:"-bug-fixes-41"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(inpageNavigation): restore hidden on top functionality ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c554e6e02e0c82b74653498e2f3fd32a982002a4"},(0,n.kt)("inlineCode",{parentName:"a"},"c554e6e"))),(0,n.kt)("li",{parentName:"ul"},"fix(list): Fix TOC margin on 3rd level ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f17da79394e29baf62bae1247dd954cdd0362108"},(0,n.kt)("inlineCode",{parentName:"a"},"f17da79"))),(0,n.kt)("li",{parentName:"ul"},"fix(inpageNavigation) : add smooth scroll animation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/42f6564276b9214257e2dbc1e2a8f7e501625aee"},(0,n.kt)("inlineCode",{parentName:"a"},"42f6564")))),(0,n.kt)("h4",{id:"-enhancements-57"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update visual and mobile margins ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/64f05af91638d91d2c07217b8edc2fb70a5e7347"},(0,n.kt)("inlineCode",{parentName:"a"},"64f05af"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): restore union dropdown after implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7029c556a9adc1ab9b0269de666e0ed0530f67e"},(0,n.kt)("inlineCode",{parentName:"a"},"a7029c5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pullquote): adjust to the new figma design ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/78e4606ac299938021f9e525898ae7f5cede311f"},(0,n.kt)("inlineCode",{parentName:"a"},"78e4606"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumb): adjust font sizes and import remix divider ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5fcabaf589074716b34fb5d0904e14549d7f4ef2"},(0,n.kt)("inlineCode",{parentName:"a"},"5fcabaf"))),(0,n.kt)("li",{parentName:"ul"},"change(header): use viewport width for changing mobile text in header dropdowns ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5a7868e1725f8766ae1be68d3c27b1313f79196b"},(0,n.kt)("inlineCode",{parentName:"a"},"5a7868e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(inpageNavigation): adjust to the new figma design ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4073acfb87378224d071079467bcfa195b1fc6ac"},(0,n.kt)("inlineCode",{parentName:"a"},"4073acf"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tab): add max width for tab items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/366d279a94d5f388c6167e7afb72d108c77c4085"},(0,n.kt)("inlineCode",{parentName:"a"},"366d279"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables):change pullquote styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9ad94bb424a14713ffa605c7497c95bdefeb6e5f"},(0,n.kt)("inlineCode",{parentName:"a"},"9ad94bb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Pullquote):change quote positions and add Pullquote.Metadata sub component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6bce35fa3cc158d9d18a07d0faf812c5c38bae0b"},(0,n.kt)("inlineCode",{parentName:"a"},"6bce35f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(inpageNavigation): Update to remix icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19a606170b4163cf4f751a419ca36a4c163b566d"},(0,n.kt)("inlineCode",{parentName:"a"},"19a6061"))),(0,n.kt)("li",{parentName:"ul"},"refactor(inpageNavigation) : move icon & text to be in column ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/09539102489ec511cb2b6cd047d316ab8b87ed55"},(0,n.kt)("inlineCode",{parentName:"a"},"0953910"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumbs): modified breadcrumbs template to behave like breadrumb template ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/490a559bc99f3a9d174a344cf0be85086293578e"},(0,n.kt)("inlineCode",{parentName:"a"},"490a559"))),(0,n.kt)("li",{parentName:"ul"},"change(package): bump release version to 1.9.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/43a6e4b92fd05ca272fb140922213834ee426938"},(0,n.kt)("inlineCode",{parentName:"a"},"43a6e4b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumb): adjust font sizes and import remix divider #120 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/09a3a01910ed898b62a9535fe5d2a41cfdb3a91b"},(0,n.kt)("inlineCode",{parentName:"a"},"09a3a01"))),(0,n.kt)("li",{parentName:"ul"},"change(menu): modified secondaryPointingItemMaxWidth to a value that equals to 250 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea138a10257206fae32c4e9a30233a3ddfd424b6"},(0,n.kt)("inlineCode",{parentName:"a"},"ea138a1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pullquote): introduce meta section, use remix icons, integrate slate callouts #119 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fd740c9e72b2defa5cc858ac020f0cb051aa527c"},(0,n.kt)("inlineCode",{parentName:"a"},"fd740c9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): updated visuals and gradients #117 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e5c6d18dc3fb33e5dfa654ecebdc12c6f5f0cf32"},(0,n.kt)("inlineCode",{parentName:"a"},"e5c6d18"))),(0,n.kt)("li",{parentName:"ul"},"change(scrollToTop): feature inpage navigation revamp #121 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3cf20a82b723b8df0b53f16c737e5c8990f891f1"},(0,n.kt)("inlineCode",{parentName:"a"},"3cf20a8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update visual and gradient ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/764ec23a456397b478456f7d628baa4e6c0b4713"},(0,n.kt)("inlineCode",{parentName:"a"},"764ec23"))),(0,n.kt)("li",{parentName:"ul"},"change(header): use 12px font size for mobile resolution dropdowns ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6dad0fab24f37f87696bb50f5a592e88510d053e"},(0,n.kt)("inlineCode",{parentName:"a"},"6dad0fa"))),(0,n.kt)("li",{parentName:"ul"},"change(nav): added navDepth to 3 in order to enable mega menu integration ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4f73fdd0dfadcd63b2f4be7a691bf12dcd9bb76"},(0,n.kt)("inlineCode",{parentName:"a"},"c4f73fd")))),(0,n.kt)("h4",{id:"-internal-changes-19"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(inpageNavigation) : lint changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3641d78374063904c00f1ba19f2f234f7a43892b"},(0,n.kt)("inlineCode",{parentName:"a"},"3641d78"))),(0,n.kt)("li",{parentName:"ul"},"style(inpageNavigation) : add less variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0699c70c66403ff75bf41ba252a74e9f4379671c"},(0,n.kt)("inlineCode",{parentName:"a"},"0699c70"))),(0,n.kt)("li",{parentName:"ul"},"style(pullquote): create variable for icon font size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fea9b0a7c33237ad036522b4dde567718d640210"},(0,n.kt)("inlineCode",{parentName:"a"},"fea9b0a"))),(0,n.kt)("li",{parentName:"ul"},"style(inpageNavigation) : add lint & prettier changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f8dd012a964e0c1f0bc22c36826a4a94bd052759"},(0,n.kt)("inlineCode",{parentName:"a"},"f8dd012"))),(0,n.kt)("li",{parentName:"ul"},"style(inpageNavigation): remove comment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1aee011d032c1a2b7fe564a40688bc39ca457c18"},(0,n.kt)("inlineCode",{parentName:"a"},"1aee011")))),(0,n.kt)("h4",{id:"\ufe0f-others-48"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"perf(eol): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/85a3dc55c7676c0feb8dd5b39fe0cbb9d66a9370"},(0,n.kt)("inlineCode",{parentName:"a"},"85a3dc5"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/00776211ccfa1cb90d9fa0e5269f47f5b3845741"},(0,n.kt)("inlineCode",{parentName:"a"},"0077621"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f1bb1c630edb669b03929a978cc116bae012255"},(0,n.kt)("inlineCode",{parentName:"a"},"9f1bb1c"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2b19fec30d6086f486bdca631a9114d8369fe43"},(0,n.kt)("inlineCode",{parentName:"a"},"e2b19fe"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/03dbc9b027578934f89d9480d981e1bc28f38aa3"},(0,n.kt)("inlineCode",{parentName:"a"},"03dbc9b"))),(0,n.kt)("li",{parentName:"ul"},"Hide breadcrumbs on homepage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e2f609df8d4b6bdb826e539fc0c613406d357a5"},(0,n.kt)("inlineCode",{parentName:"a"},"3e2f609"))),(0,n.kt)("li",{parentName:"ul"},"bug(inpageNavigation): less layers structure fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8d34fbdd5130ed36157db1ff70e8b039faa9f81"},(0,n.kt)("inlineCode",{parentName:"a"},"b8d34fb"))),(0,n.kt)("li",{parentName:"ul"},"prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4b1c572411cbc58dec51d5eeefe9847675c2e41"},(0,n.kt)("inlineCode",{parentName:"a"},"d4b1c57"))),(0,n.kt)("li",{parentName:"ul"},"fefactor(tab): add max width for tab items #118 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/716c408fa4c73f3feb8e36e35fb1f6bb50ac264c"},(0,n.kt)("inlineCode",{parentName:"a"},"716c408"))),(0,n.kt)("li",{parentName:"ul"},"Add reversed option to Timeline grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7c9023245f2fc943380f79743b5f10c6b6f65264"},(0,n.kt)("inlineCode",{parentName:"a"},"7c90232"))),(0,n.kt)("li",{parentName:"ul"},"doc(grid): update grid showcases ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/83671a382e39a2736c2c1353098d5f4fc2a0e67e"},(0,n.kt)("inlineCode",{parentName:"a"},"83671a3"))),(0,n.kt)("li",{parentName:"ul"},"End of line ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7f46fb752ec8918325ebadd386ee88248e02566c"},(0,n.kt)("inlineCode",{parentName:"a"},"7f46fb7")))),(0,n.kt)("h3",{id:"018---2022-03-18"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.7...0.1.8"},"0.1.8")," - 2022-03-18"),(0,n.kt)("h4",{id:"-bug-fixes-42"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(card): avoid long links from spilling outside of card body area ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/95b8951ab87bfab7a68cc20b89b25aa15113aa9d"},(0,n.kt)("inlineCode",{parentName:"a"},"95b8951")))),(0,n.kt)("h4",{id:"-enhancements-58"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(typography): set heading sizes as detailed in docusaurus typography section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/189bf20409581587061ffa30ff2bf04d97f284cf"},(0,n.kt)("inlineCode",{parentName:"a"},"189bf20"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): content tweaks, inpage navigation section #112 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b62d1b1def7c3d8890ffbba30950e8e422e9ed89"},(0,n.kt)("inlineCode",{parentName:"a"},"b62d1b1")))),(0,n.kt)("h4",{id:"-internal-changes-20"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(docusaurus): fixed grid tablet breakpoint value ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c7fbc0912131396e3a1e35803968eda1eff77d40"},(0,n.kt)("inlineCode",{parentName:"a"},"c7fbc09")))),(0,n.kt)("h4",{id:"-documentation-changes-17"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): capitalization remove ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bf8fa4407e7110da1c6a911506d56800bd5c32d7"},(0,n.kt)("inlineCode",{parentName:"a"},"bf8fa44"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1c04976a141324f0dde01b139a77f611e6f51840"},(0,n.kt)("inlineCode",{parentName:"a"},"1c04976"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): comment address on pr 112 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e4fe3bed285eae8b2cff03b1ef558debc0b4edb"},(0,n.kt)("inlineCode",{parentName:"a"},"6e4fe3b"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): color minor update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/13f9fda09287da5b8733d17f9c7567b6b7df750a"},(0,n.kt)("inlineCode",{parentName:"a"},"13f9fda"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): tabs and breadcrump update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d0547e5ad09a8608335b1e77e24c891e49213694"},(0,n.kt)("inlineCode",{parentName:"a"},"d0547e5")))),(0,n.kt)("h4",{id:"\ufe0f-others-49"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"doc(colours): add more content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ec66248f1290369dcf63ee12f7b71a1630df887b"},(0,n.kt)("inlineCode",{parentName:"a"},"ec66248"))),(0,n.kt)("li",{parentName:"ul"},"Add divider content for metadata field in Banner ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f1e34bd6a199f6418fba909e9dfdf50b0100e860"},(0,n.kt)("inlineCode",{parentName:"a"},"f1e34bd"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.8.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fd6ba047e8f8b257c3c75d07a6caefad376f888a"},(0,n.kt)("inlineCode",{parentName:"a"},"fd6ba04")))),(0,n.kt)("h3",{id:"017---2022-03-15"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.6...0.1.7"},"0.1.7")," - 2022-03-15"),(0,n.kt)("h4",{id:"-new-features-29"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(less): add global gap sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c83f20280b8a7ab0b5c78e3df7646beebe08709"},(0,n.kt)("inlineCode",{parentName:"a"},"3c83f20"))),(0,n.kt)("li",{parentName:"ul"},"feat(icons): import remix css ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/29967fb39034910dce286880f347a670f77421b3"},(0,n.kt)("inlineCode",{parentName:"a"},"29967fb")))),(0,n.kt)("h4",{id:"-bug-fixes-43"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(menu): fix border overflow for tabs and pagination ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e88721f916affa2a6d2f03930eb4266f9a2b0fb9"},(0,n.kt)("inlineCode",{parentName:"a"},"e88721f"))),(0,n.kt)("li",{parentName:"ul"},"fix(accordion): responsive and accessibility issues ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c225935ceb9fdba45c6f94086a35e177495fe584"},(0,n.kt)("inlineCode",{parentName:"a"},"c225935")))),(0,n.kt)("h4",{id:"-enhancements-59"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(menu): update paddings for tabs and pagination ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/533a5093e6c306034cb16e0a88e045019677951e"},(0,n.kt)("inlineCode",{parentName:"a"},"533a509"))),(0,n.kt)("li",{parentName:"ul"},"refactor(accordion): import semantic icon for remix arrows ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9aa77d856d1e43f4ec3daaab37f06fa91ebd1eaf"},(0,n.kt)("inlineCode",{parentName:"a"},"9aa77d8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(all) icons, accordion, button and menu itml #108 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/52ed2ca19b5e8dea60f1ee7bfd9c3b6b49a49f7d"},(0,n.kt)("inlineCode",{parentName:"a"},"52ed2ca"))),(0,n.kt)("li",{parentName:"ul"},"change(storybook): segment stories now contain several elements ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/98a7654b0d4a7c30c7a2df35103ddb2740f3ca2d"},(0,n.kt)("inlineCode",{parentName:"a"},"98a7654"))),(0,n.kt)("li",{parentName:"ul"},"change(table): inherit header alignment instead of hard-coding values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ebb5193babfe8b99094db6778afdaf2d91b2c4dd"},(0,n.kt)("inlineCode",{parentName:"a"},"ebb5193"))),(0,n.kt)("li",{parentName:"ul"},"refactor(icons): add remix icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4c1a92b671b52c509386addc02e8919c93391fb"},(0,n.kt)("inlineCode",{parentName:"a"},"c4c1a92"))),(0,n.kt)("li",{parentName:"ul"},"refactor(container): restore mobile width to auto ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2df184c19a8685c69e6b9a55b147a97853cc6b74"},(0,n.kt)("inlineCode",{parentName:"a"},"2df184c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button): update action button hover color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bb09d718433f93091ca1b325471d48741825ca96"},(0,n.kt)("inlineCode",{parentName:"a"},"bb09d71")))),(0,n.kt)("h4",{id:"-internal-changes-21"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(docusaurus): docs delete ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f9d733287902ccb096f5a976a2928e43a43a8e7"},(0,n.kt)("inlineCode",{parentName:"a"},"5f9d733")))),(0,n.kt)("h4",{id:"-documentation-changes-18"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(colors): corrections ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/da64c4c6b58e8840ea98be75d442b90911197e28"},(0,n.kt)("inlineCode",{parentName:"a"},"da64c4c"))),(0,n.kt)("li",{parentName:"ul"},"docs(list): default list showcase ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8ded06231c14d1394f77559aeb2d5a7e3a0c1bf1"},(0,n.kt)("inlineCode",{parentName:"a"},"8ded062")))),(0,n.kt)("h4",{id:"\ufe0f-others-50"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"bug(form): input min-width more specific to not break volto interface ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3f5b5d498ea1a0e3bb6fd62af5930f6579029b11"},(0,n.kt)("inlineCode",{parentName:"a"},"3f5b5d4"))),(0,n.kt)("li",{parentName:"ul"},"Update package.json ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3dba28b5a3d28adbf946a8df3d9cc9b8ef4c68e0"},(0,n.kt)("inlineCode",{parentName:"a"},"3dba28b")))),(0,n.kt)("h3",{id:"016---2022-03-11"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.5...0.1.6"},"0.1.6")," - 2022-03-11"),(0,n.kt)("h4",{id:"-new-features-30"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(cards): add custom display for volto-block-image-cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/645096ac5a0aa3326834191f56ee8a77db0464f5"},(0,n.kt)("inlineCode",{parentName:"a"},"645096a"))),(0,n.kt)("li",{parentName:"ul"},"feat(PublicationCard):create publication card component & styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e5f9b7a9bb301f446b232b99f7db54e6a7470ae"},(0,n.kt)("inlineCode",{parentName:"a"},"3e5f9b7"))),(0,n.kt)("li",{parentName:"ul"},"feat(PublicationCard):create publication card component & styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/12cdd5d50dc4c05f2c2b83586df90c7b91c11a75"},(0,n.kt)("inlineCode",{parentName:"a"},"12cdd5d"))),(0,n.kt)("li",{parentName:"ul"},"feat(Related Content): create Related Content component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/77eda953196f9e686d4ec2c996d6902a614af4a0"},(0,n.kt)("inlineCode",{parentName:"a"},"77eda95"))),(0,n.kt)("li",{parentName:"ul"},"feat(Related Content): create Related Content component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/08d495baeae575a07813056176ac940d7edc91eb"},(0,n.kt)("inlineCode",{parentName:"a"},"08d495b"))),(0,n.kt)("li",{parentName:"ul"},"feat(pagination,related) added several r3 components #105 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/08d47c199286402c31a0ff0de38fd08533d2cd91"},(0,n.kt)("inlineCode",{parentName:"a"},"08d47c1")))),(0,n.kt)("h4",{id:"-bug-fixes-44"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(Related Content): limit publication card number to 4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e7df03214824a85911c26499c8975f88ffa9fe4d"},(0,n.kt)("inlineCode",{parentName:"a"},"e7df032"))),(0,n.kt)("li",{parentName:"ul"},"fix(less variables):rename publication card variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/55c6fb8e5e9660352ce1bf2bd38c4ef8834ce184"},(0,n.kt)("inlineCode",{parentName:"a"},"55c6fb8"))),(0,n.kt)("li",{parentName:"ul"},"fix(Publication Card): add link to card and arg name fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/36a7c961639b2ff07acd455ccf277dd0a93f753c"},(0,n.kt)("inlineCode",{parentName:"a"},"36a7c96"))),(0,n.kt)("li",{parentName:"ul"},"fix(radio): fix bullet scaling issue with firefox ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f02c95f18c77527f949f115471cf24302df4d49"},(0,n.kt)("inlineCode",{parentName:"a"},"5f02c95"))),(0,n.kt)("li",{parentName:"ul"},"fix(radio): fix bullet scaling issue with firefox ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dbb2e27b43e6d267a436a8475107ad01e940ec93"},(0,n.kt)("inlineCode",{parentName:"a"},"dbb2e27")))),(0,n.kt)("h4",{id:"-enhancements-60"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(form): remove custom classes and add container to form items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6b5442a3c56854bf30269f235099d8507ba588f7"},(0,n.kt)("inlineCode",{parentName:"a"},"6b5442a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form): remove custom classes and add container to form items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d1ec083647f854c09d8a64dffa6a5c829321049e"},(0,n.kt)("inlineCode",{parentName:"a"},"d1ec083"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form): update form wrapper component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7195768bbe86121fc82bebca29abfb20b50d77a"},(0,n.kt)("inlineCode",{parentName:"a"},"a719576"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form): update form wrapper component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0736ec7d671d756c13a69bd8bf93488805da27e2"},(0,n.kt)("inlineCode",{parentName:"a"},"0736ec7"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form): adjust form items to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4213cfb79430273e637b06a76af28c9cd660aa74"},(0,n.kt)("inlineCode",{parentName:"a"},"4213cfb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form): adjust form items to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/374ffbc1c380df1b1a5f9939fc658d9ecca4ae1b"},(0,n.kt)("inlineCode",{parentName:"a"},"374ffbc"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumb): remove custom class anf and new variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b3cb83d90e0be7f8a80f619d57bc90cae4f8f207"},(0,n.kt)("inlineCode",{parentName:"a"},"b3cb83d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumb): remove custom class anf and new variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5808ad3576439df010bebfb8fd423858ffc4e66"},(0,n.kt)("inlineCode",{parentName:"a"},"d5808ad"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): clear up unnecessary form elements controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f7e7d5bc285ea5115bc8770c7471729f06da891e"},(0,n.kt)("inlineCode",{parentName:"a"},"f7e7d5b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): small change in unordered list story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ffd87246df9dffcc064683e93d6f3aff35b3931"},(0,n.kt)("inlineCode",{parentName:"a"},"3ffd872"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): small change in unordered list story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6ce16e990f15ef8c61493359815405517756c32c"},(0,n.kt)("inlineCode",{parentName:"a"},"6ce16e9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pagination): fix menu overrides for tabs that affects pagination ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fe8c4ca32072518820ad38f8b334b38f52ef2df5"},(0,n.kt)("inlineCode",{parentName:"a"},"fe8c4ca"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pagination): fix menu overrides for tabs that affects pagination ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3f4b726c2a2047f6f9a65375074dd7ea38717f5c"},(0,n.kt)("inlineCode",{parentName:"a"},"3f4b726"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Loader):remove image & add background image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70fe041e06cfee946bb9557f9fcb5ff49d08c287"},(0,n.kt)("inlineCode",{parentName:"a"},"70fe041"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Loader):remove image & add background image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac3812684ee4377914801cd770890c78bdeecedf"},(0,n.kt)("inlineCode",{parentName:"a"},"ac38126"))),(0,n.kt)("li",{parentName:"ul"},"refactor(list): remove selection control ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a09b1798a62a6e192deb1d217d0c44b4b881ce6a"},(0,n.kt)("inlineCode",{parentName:"a"},"a09b179"))),(0,n.kt)("li",{parentName:"ul"},"refactor(list): remove selection control ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/17bf710d00a91acd35356dbaa9d5093ca80a8987"},(0,n.kt)("inlineCode",{parentName:"a"},"17bf710"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook):unordered list minor change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/df2b72730500aee5d0bbc82185222edacad38b2b"},(0,n.kt)("inlineCode",{parentName:"a"},"df2b727"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook):unordered list minor change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef6db73ce2236d0f653212d2f57c336f1f8d806e"},(0,n.kt)("inlineCode",{parentName:"a"},"ef6db73"))),(0,n.kt)("li",{parentName:"ul"},"refactor(colors): remove metalic blue color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b2f95b6dc3b1d8314827d56e88efa0dfc719aca2"},(0,n.kt)("inlineCode",{parentName:"a"},"b2f95b6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(colors): remove metalic blue color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1eea33f71fdde5834f82d244224c185fde3ab8ba"},(0,n.kt)("inlineCode",{parentName:"a"},"1eea33f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button): update variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b1774d8c7f32ded2eff654b0d16e45d944fe5690"},(0,n.kt)("inlineCode",{parentName:"a"},"b1774d8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button): update variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/061f3e3042f28575dbb1a70f09a62bda728815be"},(0,n.kt)("inlineCode",{parentName:"a"},"061f3e3"))),(0,n.kt)("li",{parentName:"ul"},"change(blockquote): treat slate as a variation of blockquote component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19bd9a5f67e573b71531fe34b29d2e08e0856eae"},(0,n.kt)("inlineCode",{parentName:"a"},"19bd9a5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(container): remove important from rules ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e984771ed59fe849246ae8a01d9d84f3f2f232c5"},(0,n.kt)("inlineCode",{parentName:"a"},"e984771"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook):add textarea control to add/remove fluid class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/475f540efa76d0993c3f7bd72d4c646385f4c909"},(0,n.kt)("inlineCode",{parentName:"a"},"475f540"))),(0,n.kt)("li",{parentName:"ul"},"refactor(container): remove important from rules ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1cc69848705d3d592221bf7fa7d43c8b0eb37f09"},(0,n.kt)("inlineCode",{parentName:"a"},"1cc6984"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): add required attribute to form fields ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fecee278b920c44dd0dd34ace81f9606258c8f7c"},(0,n.kt)("inlineCode",{parentName:"a"},"fecee27"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progressBar): update progress bar colors with vars ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4ef1f0f6eba9792901bc9e0ec5b01877e9da96e"},(0,n.kt)("inlineCode",{parentName:"a"},"c4ef1f0"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progressBar): update progress bar colors with vars ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a44d73c48b6ccc988508fed5c3fb585353fe0958"},(0,n.kt)("inlineCode",{parentName:"a"},"a44d73c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): add required attribute to form fields ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/21da79eafa9f23dcf01cac7e096da7fab2187450"},(0,n.kt)("inlineCode",{parentName:"a"},"21da79e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(list): adjust bullet size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2b29e4e429f939500bc7d7ebd5836b8bc24090ec"},(0,n.kt)("inlineCode",{parentName:"a"},"2b29e4e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(list): adjust bullet size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/61c341cfdad3fccdd7499f6957f91ab99159ea16"},(0,n.kt)("inlineCode",{parentName:"a"},"61c341c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): add inverted background to global variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1427e70f2b208531bbb91ab1a708430f1c03ea3a"},(0,n.kt)("inlineCode",{parentName:"a"},"1427e70"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): add inverted background to global variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea25dfa5589181b7d23bef153bae3ab279e70167"},(0,n.kt)("inlineCode",{parentName:"a"},"ea25dfa"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): remove custom class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/46cc5601e378c7bfcf927b7c25dae2a2d3f795fd"},(0,n.kt)("inlineCode",{parentName:"a"},"46cc560"))),(0,n.kt)("li",{parentName:"ul"},"refactor(container): update mobile width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d548a44d86745270778134028be597f559d7a0b4"},(0,n.kt)("inlineCode",{parentName:"a"},"d548a44"))),(0,n.kt)("li",{parentName:"ul"},"refactor(grid): replace px with rem units ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e792f51e4f41b8f3f53e297b9e5a01d5e2d9bfb1"},(0,n.kt)("inlineCode",{parentName:"a"},"e792f51"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): remove custom class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b5c8e7c2aeb2751d4b981eacc51e3dda58a922dc"},(0,n.kt)("inlineCode",{parentName:"a"},"b5c8e7c"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): updated template to change what's new title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e15f4d3c3e5d4199886bb4cfeda8dce6a4bf041"},(0,n.kt)("inlineCode",{parentName:"a"},"3e15f4d"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): added display variable for footer site logos ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5b3c2f6d85b3a42eefa8521a074a7581bfbd8fb"},(0,n.kt)("inlineCode",{parentName:"a"},"d5b3c2f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(grid): replace px with rem units ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f0331d00f537cf41ca184796386f60a88bfe6c86"},(0,n.kt)("inlineCode",{parentName:"a"},"f0331d0"))),(0,n.kt)("li",{parentName:"ul"},"change(github): auto deploy only on develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/11d6b4e9059674b6dd1fe655995231be03a910fb"},(0,n.kt)("inlineCode",{parentName:"a"},"11d6b4e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): implementation in preparation for Volto integration #20 #89 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/95b136d51ddbc5632c0fa1cc696c2297a8c4695c"},(0,n.kt)("inlineCode",{parentName:"a"},"95b136d"))),(0,n.kt)("li",{parentName:"ul"},"change(github): trigger autobuild when modifying templates contents ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/46094b1427793cd88da6f615b16b70e6cfaee9af"},(0,n.kt)("inlineCode",{parentName:"a"},"46094b1")))),(0,n.kt)("h4",{id:"-internal-changes-22"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(list): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f9e3b05effc0afeddc234b491bc86f2ec82a764f"},(0,n.kt)("inlineCode",{parentName:"a"},"f9e3b05"))),(0,n.kt)("li",{parentName:"ul"},"style(list): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8eb715b05b3bef2795d2485084386c6e910392cf"},(0,n.kt)("inlineCode",{parentName:"a"},"8eb715b"))),(0,n.kt)("li",{parentName:"ul"},"chore(github): merge changes from develop to develop-itml ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/063bd6ecc5e47321854ca4994a91bf0a43ab3e3e"},(0,n.kt)("inlineCode",{parentName:"a"},"063bd6e"))),(0,n.kt)("li",{parentName:"ul"},"chore(github): build deployment only on develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a5a1b0802b46d674d04ae099afc8510e3cb62222"},(0,n.kt)("inlineCode",{parentName:"a"},"a5a1b08"))),(0,n.kt)("li",{parentName:"ul"},"chore(github): build deployment only on develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bb455aa4308e6593c45bcb3a62b8058709d74f83"},(0,n.kt)("inlineCode",{parentName:"a"},"bb455aa"))),(0,n.kt)("li",{parentName:"ul"},"chore(github): merge changes from develop to develop-itml ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/129c12f60025db50bac5b2d3dd36e04a97d49499"},(0,n.kt)("inlineCode",{parentName:"a"},"129c12f")))),(0,n.kt)("h4",{id:"\ufe0f-others-51"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},'Revert "chore(github): merge changes from develop to develop-itml" ',(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca9520fe8d91f8924ea203eb32001e3e6518e472"},(0,n.kt)("inlineCode",{parentName:"a"},"ca9520f"))),(0,n.kt)("li",{parentName:"ul"},"refactor breadcrumbs component, make it functional and customizable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e902d6931060c5676d67842f95391379fcb3cccf"},(0,n.kt)("inlineCode",{parentName:"a"},"e902d69"))),(0,n.kt)("li",{parentName:"ul"},"rollback(cards): move custom display to volto-block-image-cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2564b1ec2cc52670c0f2abc92c49161f5cd1b006"},(0,n.kt)("inlineCode",{parentName:"a"},"2564b1e"))),(0,n.kt)("li",{parentName:"ul"},"bring back segment wrapper and make it attached ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8458f0321f44f22a605e7179485d97f41a0afa38"},(0,n.kt)("inlineCode",{parentName:"a"},"8458f03"))),(0,n.kt)("li",{parentName:"ul"},"no ",(0,n.kt)("inlineCode",{parentName:"li"},"display: flex")," for blockquote added from slate ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5595ce1b8173e6952ab3926dc5f3c988279a42dc"},(0,n.kt)("inlineCode",{parentName:"a"},"5595ce1"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about code length ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a5f36523682dde8d1e16f416a07cd0c8c615a386"},(0,n.kt)("inlineCode",{parentName:"a"},"a5f3652"))),(0,n.kt)("li",{parentName:"ul"},"Add indenting rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/15c44cbcb6a52d0fd0438ff9b5d0e5963a4b53a0"},(0,n.kt)("inlineCode",{parentName:"a"},"15c44cb"))),(0,n.kt)("li",{parentName:"ul"},"fix warning related to proptype ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/946c6c6bc9dece0985ae4b9f9cad6ece2be0ff2c"},(0,n.kt)("inlineCode",{parentName:"a"},"946c6c6"))),(0,n.kt)("li",{parentName:"ul"},"fix profile section css overflow ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/db5126fc902e191d1e18fb7e4c54877c8d8786e6"},(0,n.kt)("inlineCode",{parentName:"a"},"db5126f"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about import sorting ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/804e188eea30427053111310ad2d3edf6a4ec78b"},(0,n.kt)("inlineCode",{parentName:"a"},"804e188"))),(0,n.kt)("li",{parentName:"ul"},"don't use volto-slate ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6a029765d3a59ac65b3b5dd18c1a9624bae1d52a"},(0,n.kt)("inlineCode",{parentName:"a"},"6a02976"))),(0,n.kt)("li",{parentName:"ul"},"remove segment custom width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1d3ea40f98bbdc1eab95b4da739a659b5e29ec16"},(0,n.kt)("inlineCode",{parentName:"a"},"1d3ea40"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about naming vars ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f9020fa3073190681de36cf1dcdf62e69ac2c74"},(0,n.kt)("inlineCode",{parentName:"a"},"8f9020f"))),(0,n.kt)("li",{parentName:"ul"},"update style for accordion title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0b0d678c69d8b0765ff015b0355c01d57c643192"},(0,n.kt)("inlineCode",{parentName:"a"},"0b0d678"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.6.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e771e657e5bedca3630d05cda643c45da5369d4c"},(0,n.kt)("inlineCode",{parentName:"a"},"e771e65"))),(0,n.kt)("li",{parentName:"ul"},"update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bbcab87ef4c8475f347f0daf4ab7e428e69c2316"},(0,n.kt)("inlineCode",{parentName:"a"},"bbcab87"))),(0,n.kt)("li",{parentName:"ul"},"add margin to ","<","br",">"," element to simulate gap as in design ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c6685c11a14febfc9b6c592a9adc9a25a0b80458"},(0,n.kt)("inlineCode",{parentName:"a"},"c6685c1"))),(0,n.kt)("li",{parentName:"ul"},"make breadcrumbs default size as tiny ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/589581fa29a7e249e59393bebe9dfe284090db6f"},(0,n.kt)("inlineCode",{parentName:"a"},"589581f"))),(0,n.kt)("li",{parentName:"ul"},"remove uneeded style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/82a8fb1eb3a359d54bc59234e498eb122d07223c"},(0,n.kt)("inlineCode",{parentName:"a"},"82a8fb1"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about hardcoded values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e04e0df7cd47d575e649d1995ea5c64b2a431b05"},(0,n.kt)("inlineCode",{parentName:"a"},"e04e0df"))),(0,n.kt)("li",{parentName:"ul"},"Add file mode rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/65c9a9357a82a39bf54862eff9231264a6277ab5"},(0,n.kt)("inlineCode",{parentName:"a"},"65c9a93"))),(0,n.kt)("li",{parentName:"ul"},"Add DRY rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/66c9c3a6b05bf3395f5bda1a7c5af26a9962e66c"},(0,n.kt)("inlineCode",{parentName:"a"},"66c9c3a"))),(0,n.kt)("li",{parentName:"ul"},"set profile section overflow to auto ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/71ab47f89a433233c14b394c3824e607dd18a393"},(0,n.kt)("inlineCode",{parentName:"a"},"71ab47f"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using eea-website-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/647a6e3e2093f2c4884c356eb148453551c8f33f"},(0,n.kt)("inlineCode",{parentName:"a"},"647a6e3"))),(0,n.kt)("li",{parentName:"ul"},"removed override already present in card.less ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/50d2ab26f85c8f409da02ec128cc1df34848ca69"},(0,n.kt)("inlineCode",{parentName:"a"},"50d2ab2"))),(0,n.kt)("li",{parentName:"ul"},"update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7a1d482aa875ab2669ed688663228d79ce9b7bea"},(0,n.kt)("inlineCode",{parentName:"a"},"7a1d482"))),(0,n.kt)("li",{parentName:"ul"},"Add functional components rule; add classnames rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91a0b067c7a36002a6d49c5c0238f593b5a6ac6e"},(0,n.kt)("inlineCode",{parentName:"a"},"91a0b06"))),(0,n.kt)("li",{parentName:"ul"},"added comment about need for removal of this fix later ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/65b81665c1cc41991b4903bb44a5eb7fb8ec5f3b"},(0,n.kt)("inlineCode",{parentName:"a"},"65b8166")))),(0,n.kt)("h3",{id:"015---2022-03-08"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.4...0.1.5"},"0.1.5")," - 2022-03-08"),(0,n.kt)("h4",{id:"-new-features-31"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(cards): add custom display for volto-block-image-cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f49ffb65f41c78499f56251c2de267ce5617b4c5"},(0,n.kt)("inlineCode",{parentName:"a"},"f49ffb6"))),(0,n.kt)("li",{parentName:"ul"},"feat(KeyContent): add new component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2534c542c2fd729b31a9064a21dae2bd3cacb2e4"},(0,n.kt)("inlineCode",{parentName:"a"},"2534c54"))),(0,n.kt)("li",{parentName:"ul"},"feat(docusaurus): Updated developer guidelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca146ffd42cb31286a5c49fa09390d0a93270cfa"},(0,n.kt)("inlineCode",{parentName:"a"},"ca146ff"))),(0,n.kt)("li",{parentName:"ul"},"feat(storybook): add testimonial component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/55d97472d82f3819674e78f684e197625c9f854c"},(0,n.kt)("inlineCode",{parentName:"a"},"55d9747"))),(0,n.kt)("li",{parentName:"ul"},"feat(storybook): add AvatarGrid component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b6684456ea6fa17695734b5179b39be77644da93"},(0,n.kt)("inlineCode",{parentName:"a"},"b668445"))),(0,n.kt)("li",{parentName:"ul"},"feat(storybook):add Loader component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6758346a516f7c4be5d66dfdf198dbe2ffe3f01"},(0,n.kt)("inlineCode",{parentName:"a"},"f675834")))),(0,n.kt)("h4",{id:"-bug-fixes-45"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(breakpoints): fix largest screen breakpoint bug on scaling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e4a11c876c20187351fa9454b4fbf0de3e502bff"},(0,n.kt)("inlineCode",{parentName:"a"},"e4a11c8"))),(0,n.kt)("li",{parentName:"ul"},"fix(profile): section css overflow and padding issues #95 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bb9eb0f83307524bda5cf86aa0dfd678c65da653"},(0,n.kt)("inlineCode",{parentName:"a"},"bb9eb0f"))),(0,n.kt)("li",{parentName:"ul"},"fix(storybook): lint auto changes for AvatarGrid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8e74f17df77f8f9f96bf442dc178417bbfc04c6"},(0,n.kt)("inlineCode",{parentName:"a"},"b8e74f1"))),(0,n.kt)("li",{parentName:"ul"},"fix(components): add grid structure to various components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cc33546deda634cee6031bd6cde6eef3eaacb76a"},(0,n.kt)("inlineCode",{parentName:"a"},"cc33546"))),(0,n.kt)("li",{parentName:"ul"},"fix(header) re-added span tags removed in pull request #74 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/00702d7831b84aad52f10368dbef740baf581ab8"},(0,n.kt)("inlineCode",{parentName:"a"},"00702d7")))),(0,n.kt)("h4",{id:"-enhancements-61"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(button): styling updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/37afda5b00797d456e303fb585dad145b575b2ed"},(0,n.kt)("inlineCode",{parentName:"a"},"37afda5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tab): updates on variables and overrides ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/54bf703f9f34f2f945f4635cd4bc4728174c7d47"},(0,n.kt)("inlineCode",{parentName:"a"},"54bf703"))),(0,n.kt)("li",{parentName:"ul"},"change(blockquote): treat slate as a variation of blockquote component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5e8a8b8220c7c25a266f045442aae44303eb8701"},(0,n.kt)("inlineCode",{parentName:"a"},"5e8a8b8"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): added display variable for footer site logos ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2f942b4a80c3ed9eb94e8b71299f4ebf33501eea"},(0,n.kt)("inlineCode",{parentName:"a"},"2f942b4"))),(0,n.kt)("li",{parentName:"ul"},"refactor(checkbox/radio): remove header from message and adjust top position of bullet ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a072b30bb01cf59339960cfd3254584cfae57c6"},(0,n.kt)("inlineCode",{parentName:"a"},"4a072b3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(color): remove secondaryColorDarken variable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/74c8ba073cc92af3987d81d484768235b95fcffb"},(0,n.kt)("inlineCode",{parentName:"a"},"74c8ba0"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): updated template to change what's new title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/58f58c887560e707ced47ccbac6897d8ebcf45d2"},(0,n.kt)("inlineCode",{parentName:"a"},"58f58c8"))),(0,n.kt)("li",{parentName:"ul"},"change(github): auto deploy only on develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bfa35a32bf0fefd4433aec4f7f8ee2cfe53eaae5"},(0,n.kt)("inlineCode",{parentName:"a"},"bfa35a3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): implementation in preparation for Volto integration #20 #97 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cddda2090d3d17c086dfd0cdb8a4dab3f886bfcd"},(0,n.kt)("inlineCode",{parentName:"a"},"cddda20"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumbs): component, make it functional and pluggable #32 #94 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f42e802bdf29d02c76131379b168c8c2119864b"},(0,n.kt)("inlineCode",{parentName:"a"},"9f42e80"))),(0,n.kt)("li",{parentName:"ul"},"change(card): added styles for volto cards integration #92 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a46ac21e6229059fb982174610a733c44000a2b6"},(0,n.kt)("inlineCode",{parentName:"a"},"a46ac21"))),(0,n.kt)("li",{parentName:"ul"},"refactor(grid): remove column count from example ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac0e9cf8e9f6ea99ddf8d5a92e49903999cde262"},(0,n.kt)("inlineCode",{parentName:"a"},"ac0e9cf"))),(0,n.kt)("li",{parentName:"ul"},"change(github): trigger autobuild when modifying templates contents ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f7d1523e92c1c4b3e6285a48d5f8c776aecfa9c"},(0,n.kt)("inlineCode",{parentName:"a"},"5f7d152"))),(0,n.kt)("li",{parentName:"ul"},"refactor(grid): remove custom grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1d978a96a464b3285961d54cb1cbc7c9eaf35faf"},(0,n.kt)("inlineCode",{parentName:"a"},"1d978a9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Form):change form field wrapper implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/73cdd6daba19aefce091552a62a528a42b323228"},(0,n.kt)("inlineCode",{parentName:"a"},"73cdd6d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(message): update colors to match design ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/633ce311dc5a6a141ee514a9108753531aa661e4"},(0,n.kt)("inlineCode",{parentName:"a"},"633ce31"))),(0,n.kt)("li",{parentName:"ul"},"refactor(checkbox/radio): update variables and remove important rules ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ad533b4e3e821c126f62b558523057720d2573c8"},(0,n.kt)("inlineCode",{parentName:"a"},"ad533b4"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables): add variables to less for new components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/47df026655748865bc7af8f44d51e5a9fcf7ee34"},(0,n.kt)("inlineCode",{parentName:"a"},"47df026"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Tab): fix vertical tab alignment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/401bdf2868e8c8305ad2c3cefa3188b730348574"},(0,n.kt)("inlineCode",{parentName:"a"},"401bdf2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(lint changes): add lint changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6f6847fc19db7922c93cb5f52e50db845d053e04"},(0,n.kt)("inlineCode",{parentName:"a"},"6f6847f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(inpageNavigation): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/62f74ea3c08069da8615516a52df8415d50048d5"},(0,n.kt)("inlineCode",{parentName:"a"},"62f74ea"))),(0,n.kt)("li",{parentName:"ul"},"refactor(message): updates on styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4cf8501de961794baf5a8ecec99e4bcddc2d71b"},(0,n.kt)("inlineCode",{parentName:"a"},"b4cf850"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): update class name ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef0969bd873e9fdd0eb32593f7c3f995270ef44c"},(0,n.kt)("inlineCode",{parentName:"a"},"ef0969b"))),(0,n.kt)("li",{parentName:"ul"},"change(github): use develop for auto pushing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a32a723f8126292f62a71cb4c4f94a2c7dec7605"},(0,n.kt)("inlineCode",{parentName:"a"},"a32a723")))),(0,n.kt)("h4",{id:"-internal-changes-23"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(design-system): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/631fa90e2ec5352c01e2ee0824de4a45cc33de34"},(0,n.kt)("inlineCode",{parentName:"a"},"631fa90"))),(0,n.kt)("li",{parentName:"ul"},"style(checkbox/radio): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a04939fdb530ed998a40aeb5b85a748d5dace0cd"},(0,n.kt)("inlineCode",{parentName:"a"},"a04939f"))),(0,n.kt)("li",{parentName:"ul"},"style(design-system): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c753f0b378384150597283c97f657eafbfff296"},(0,n.kt)("inlineCode",{parentName:"a"},"3c753f0"))),(0,n.kt)("li",{parentName:"ul"},"style(message): stylelint fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5b75057cb3a7b366a940ca9d1ba577cd09dc7225"},(0,n.kt)("inlineCode",{parentName:"a"},"5b75057")))),(0,n.kt)("h4",{id:"-documentation-changes-19"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): visuals guidelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/544a9502dc046d7e8bc635c19480a8deb2b31379"},(0,n.kt)("inlineCode",{parentName:"a"},"544a950"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): search guidelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0fb229d8b6a042bd716a093faaf8a1461b70cdb8"},(0,n.kt)("inlineCode",{parentName:"a"},"0fb229d"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): loader page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/892a25dba66f3557af22f8f0f96db695ddf1b402"},(0,n.kt)("inlineCode",{parentName:"a"},"892a25d")))),(0,n.kt)("h4",{id:"\ufe0f-others-52"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Reformat header.less ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f99dfc82c165304ca5600ce5138c1233615ab69"},(0,n.kt)("inlineCode",{parentName:"a"},"1f99dfc"))),(0,n.kt)("li",{parentName:"ul"},"Close menu when changing path ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/65daea9ee34c64bd5e51104077bc745b68169cd2"},(0,n.kt)("inlineCode",{parentName:"a"},"65daea9"))),(0,n.kt)("li",{parentName:"ul"},"refactor breadcrumbs component, make it functional and customizable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ec374e20565eb0a5aed0ff67a02cd6f77eba1f0"},(0,n.kt)("inlineCode",{parentName:"a"},"4ec374e"))),(0,n.kt)("li",{parentName:"ul"},"rollback(cards): move custom display to volto-block-image-cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/79d4c8914b7184d559465135f046b60ee96301e1"},(0,n.kt)("inlineCode",{parentName:"a"},"79d4c89"))),(0,n.kt)("li",{parentName:"ul"},"Open overlay menu on global menu click ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cc749bc4266aae793b85d72c43c8a08b0c2fec48"},(0,n.kt)("inlineCode",{parentName:"a"},"cc749bc"))),(0,n.kt)("li",{parentName:"ul"},"bring back segment wrapper and make it attached ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f413ffaf641c161e8ff0f8010759cffd7e30238"},(0,n.kt)("inlineCode",{parentName:"a"},"9f413ff"))),(0,n.kt)("li",{parentName:"ul"},"Use renderMenuItem also in mobile menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/02de0bb4750062a310109256b6c6d29120287fd4"},(0,n.kt)("inlineCode",{parentName:"a"},"02de0bb"))),(0,n.kt)("li",{parentName:"ul"},"Fix clicking outside closes menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af526646559d1a00ade04dc24def26e5665a5a8c"},(0,n.kt)("inlineCode",{parentName:"a"},"af52664"))),(0,n.kt)("li",{parentName:"ul"},"Cleanup args in header story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2bf6a304b1149ec1204f08f318248ed52ad8fa3d"},(0,n.kt)("inlineCode",{parentName:"a"},"2bf6a30"))),(0,n.kt)("li",{parentName:"ul"},"fix warning related to proptype ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/824b9beff77aae139882cd50a1d670a02ec6f723"},(0,n.kt)("inlineCode",{parentName:"a"},"824b9be"))),(0,n.kt)("li",{parentName:"ul"},"fix profile section css overflow ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8fd265413149f1b5e033dffa0fbcb5ef5ecad15f"},(0,n.kt)("inlineCode",{parentName:"a"},"8fd2654"))),(0,n.kt)("li",{parentName:"ul"},"don't use volto-slate ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70ca3d4ec4e8e4dc633e957b842d94b708af8b82"},(0,n.kt)("inlineCode",{parentName:"a"},"70ca3d4"))),(0,n.kt)("li",{parentName:"ul"},"remove segment custom width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a60d84d5fe76578b7760aa1dad6eef9a20916a7"},(0,n.kt)("inlineCode",{parentName:"a"},"4a60d84"))),(0,n.kt)("li",{parentName:"ul"},"update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/96f4af0fb22605fd294472eb18f7f62e4bd7b0fb"},(0,n.kt)("inlineCode",{parentName:"a"},"96f4af0"))),(0,n.kt)("li",{parentName:"ul"},"Fix TopDropdownMenu component rendering in mobile ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4626def4e1f97f323f3fef130f5d531925ba15b"},(0,n.kt)("inlineCode",{parentName:"a"},"a4626de"))),(0,n.kt)("li",{parentName:"ul"},"Add usePrevious hook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/797faba3cad73288755f6c6e685448d780905189"},(0,n.kt)("inlineCode",{parentName:"a"},"797faba"))),(0,n.kt)("li",{parentName:"ul"},"make breadcrumbs default size as tiny ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c8e1c64f27596421e78927f11616093667b04c6"},(0,n.kt)("inlineCode",{parentName:"a"},"3c8e1c6"))),(0,n.kt)("li",{parentName:"ul"},"Update package.json ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fa020cb5dd85e28d0713b3e8a11aff5b2c1060af"},(0,n.kt)("inlineCode",{parentName:"a"},"fa020cb"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about hardcoded values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0c6912c82625c2e389fd75f0d0a051348781d407"},(0,n.kt)("inlineCode",{parentName:"a"},"0c6912c"))),(0,n.kt)("li",{parentName:"ul"},"set profile section overflow to auto ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8db62bbcd0258fee16411e94888c732a29b1949d"},(0,n.kt)("inlineCode",{parentName:"a"},"8db62bb"))),(0,n.kt)("li",{parentName:"ul"},"added comment about need for removal of this fix later ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6fdbd713dbfe795e7e81cfa37398774fad71c054"},(0,n.kt)("inlineCode",{parentName:"a"},"6fdbd71"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using eea-website-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6051724437a38675e659c797bb5586ef81286ec0"},(0,n.kt)("inlineCode",{parentName:"a"},"6051724"))),(0,n.kt)("li",{parentName:"ul"},"removed override already present in card.less ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93c4e5aac9cc85ff2cc6c04180f6655d5f5616dc"},(0,n.kt)("inlineCode",{parentName:"a"},"93c4e5a"))),(0,n.kt)("li",{parentName:"ul"},"Remove console.log calls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8a3a4cb32bfed2daa86339b15c0301eb01e19f23"},(0,n.kt)("inlineCode",{parentName:"a"},"8a3a4cb"))),(0,n.kt)("li",{parentName:"ul"},"update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/81bb7d4a02576887b80e978c32724580b772d57a"},(0,n.kt)("inlineCode",{parentName:"a"},"81bb7d4"))),(0,n.kt)("li",{parentName:"ul"},"Update comment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ffa24001728f824b8e7154c93c5aad8196bd92ea"},(0,n.kt)("inlineCode",{parentName:"a"},"ffa2400"))),(0,n.kt)("li",{parentName:"ul"},"merge develop into this branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ad5b388957b7d67f1b7ae06f2b80b1c30868d72a"},(0,n.kt)("inlineCode",{parentName:"a"},"ad5b388"))),(0,n.kt)("li",{parentName:"ul"},"WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a8d97f10b9768894a135549e9dc8f938b663f905"},(0,n.kt)("inlineCode",{parentName:"a"},"a8d97f1"))),(0,n.kt)("li",{parentName:"ul"},"Use header.less from develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/99edbc6ccd6023162dcce75b36d6b9451b06f6dc"},(0,n.kt)("inlineCode",{parentName:"a"},"99edbc6"))),(0,n.kt)("li",{parentName:"ul"},"WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/57b5783e2b03859f89c5926951ea232547b455cc"},(0,n.kt)("inlineCode",{parentName:"a"},"57b5783"))),(0,n.kt)("li",{parentName:"ul"},"WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/785da36b725bf14bff28a67da799c51bc5b4f20f"},(0,n.kt)("inlineCode",{parentName:"a"},"785da36"))),(0,n.kt)("li",{parentName:"ul"},"WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5d1eba9a1df2d2bb078f119ee99b0627ac55ae1d"},(0,n.kt)("inlineCode",{parentName:"a"},"5d1eba9"))),(0,n.kt)("li",{parentName:"ul"},"adds Tags ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e37fc1957ed8357bc2190239da4440bb98b0dabe"},(0,n.kt)("inlineCode",{parentName:"a"},"e37fc19"))),(0,n.kt)("li",{parentName:"ul"},"Add useClickOutside hook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70364c88631cbfa6e6854a99dde42ea2ad73221f"},(0,n.kt)("inlineCode",{parentName:"a"},"70364c8"))),(0,n.kt)("li",{parentName:"ul"},"Implement outside click handling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fa6f81823c47ca32209f3f1c8b1810b5447f97ec"},(0,n.kt)("inlineCode",{parentName:"a"},"fa6f818"))),(0,n.kt)("li",{parentName:"ul"},"Simplify overlay menu template ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/28b04784cf32ed4393e452c56680bffda411d526"},(0,n.kt)("inlineCode",{parentName:"a"},"28b0478"))),(0,n.kt)("li",{parentName:"ul"},"fixes less variables, fixes tags positioning ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cc19b9b537b5f21ceaba986bbd0182bb3b867ac7"},(0,n.kt)("inlineCode",{parentName:"a"},"cc19b9b"))),(0,n.kt)("li",{parentName:"ul"},"WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/15bc0f4287b705839f6fd5ac8835f03e2e99f1f1"},(0,n.kt)("inlineCode",{parentName:"a"},"15bc0f4"))),(0,n.kt)("li",{parentName:"ul"},"no ",(0,n.kt)("inlineCode",{parentName:"li"},"display: flex")," for blockquote added from slate ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/312a893e924dea4e7aed182be4a615bc3c4f04f8"},(0,n.kt)("inlineCode",{parentName:"a"},"312a893"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about code length ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/318cd48f8116a49897590137eebe2ce35285b813"},(0,n.kt)("inlineCode",{parentName:"a"},"318cd48"))),(0,n.kt)("li",{parentName:"ul"},"Add indenting rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d58968522ef82a7d5381fc4958ae2049562b7103"},(0,n.kt)("inlineCode",{parentName:"a"},"d589685"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about import sorting ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cd337c16650ae169e4b634b034f40f3cd887ceb8"},(0,n.kt)("inlineCode",{parentName:"a"},"cd337c1"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about naming vars ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b112de0dcaa4209cfe143dcd26ba929b4cbe0a42"},(0,n.kt)("inlineCode",{parentName:"a"},"b112de0"))),(0,n.kt)("li",{parentName:"ul"},"Bring back classNames from header subpopup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e477a5150bee569fadca300a3ccc3586e7d7ef4a"},(0,n.kt)("inlineCode",{parentName:"a"},"e477a51"))),(0,n.kt)("li",{parentName:"ul"},"removes tags hashtag from jsx ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6b8b3e94a6a1060304c1e5b228806985343ef6a0"},(0,n.kt)("inlineCode",{parentName:"a"},"6b8b3e9"))),(0,n.kt)("li",{parentName:"ul"},"WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d481324ff7a63e3cb0847b89fa188cc8781de4dc"},(0,n.kt)("inlineCode",{parentName:"a"},"d481324"))),(0,n.kt)("li",{parentName:"ul"},"fixes undefined on empty classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4b29080d646c44b02a28c4619f5285227fa2bf78"},(0,n.kt)("inlineCode",{parentName:"a"},"4b29080"))),(0,n.kt)("li",{parentName:"ul"},"stylelint changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a5ab83018bccd8fbfcf2160fe9c6c4fc24abe83a"},(0,n.kt)("inlineCode",{parentName:"a"},"a5ab830"))),(0,n.kt)("li",{parentName:"ul"},"Footer link color @white ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/578e4f7bb174cd46d50a8b5c5a97f8bbff510f11"},(0,n.kt)("inlineCode",{parentName:"a"},"578e4f7"))),(0,n.kt)("li",{parentName:"ul"},"add margin to ","<","br",">"," element to simulate gap as in design ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9ab9a97dc231fd3b704fedd99c742f425be4578c"},(0,n.kt)("inlineCode",{parentName:"a"},"9ab9a97"))),(0,n.kt)("li",{parentName:"ul"},"impors colors from site variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6117267716b76b17379ae989911c5d5f00e63259"},(0,n.kt)("inlineCode",{parentName:"a"},"6117267"))),(0,n.kt)("li",{parentName:"ul"},"small fix for the link in footer action ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/72df049aa644ac2a675057bf3a96440144acabfb"},(0,n.kt)("inlineCode",{parentName:"a"},"72df049"))),(0,n.kt)("li",{parentName:"ul"},"remove uneeded style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/66e9064de395b37caef1436aaee3a164b53ae406"},(0,n.kt)("inlineCode",{parentName:"a"},"66e9064"))),(0,n.kt)("li",{parentName:"ul"},"use proper naming conventions for var naming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/596e3143e28f23e60f20becd97276831c89d9684"},(0,n.kt)("inlineCode",{parentName:"a"},"596e314"))),(0,n.kt)("li",{parentName:"ul"},"Add file mode rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/805baa7db5ae1863bc85687f8f872c74a26647c8"},(0,n.kt)("inlineCode",{parentName:"a"},"805baa7"))),(0,n.kt)("li",{parentName:"ul"},"use less variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b43ac8d3bfc0231313f3d8bc719e373a127c6329"},(0,n.kt)("inlineCode",{parentName:"a"},"b43ac8d"))),(0,n.kt)("li",{parentName:"ul"},"Add DRY rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2f1584e769d0462c0385847630e3bbfe48a52339"},(0,n.kt)("inlineCode",{parentName:"a"},"2f1584e"))),(0,n.kt)("li",{parentName:"ul"},"Add functional components rule; add classnames rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1b2915ed3a4a3446e11058ac7de8937cf5755630"},(0,n.kt)("inlineCode",{parentName:"a"},"1b2915e"))),(0,n.kt)("li",{parentName:"ul"},"fix z-index of header ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d2a5d6bb822a298367ce58d867939318171a300"},(0,n.kt)("inlineCode",{parentName:"a"},"7d2a5d6"))),(0,n.kt)("li",{parentName:"ul"},"Remove comment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d120b16491406ea7cc26428dcf13ec2565868d0"},(0,n.kt)("inlineCode",{parentName:"a"},"7d120b1")))),(0,n.kt)("h3",{id:"014---2022-03-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.4-beta.0...0.1.4"},"0.1.4")," - 2022-03-01"),(0,n.kt)("h4",{id:"-enhancements-62"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(pagination): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/06cc3b6db6f56040264e4c70fe2e39ace14499d7"},(0,n.kt)("inlineCode",{parentName:"a"},"06cc3b6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Form):create form field wrapper file ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/95b9934a75ffd6b254b7bb9c119b8087c7565c13"},(0,n.kt)("inlineCode",{parentName:"a"},"95b9934"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): update margins for menu items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/230e476d133b3f7853a73f3f2ee372c6306bd43f"},(0,n.kt)("inlineCode",{parentName:"a"},"230e476"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): update gradient ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/47f2ea40c4f214a41af58ceb90839a05932b0b55"},(0,n.kt)("inlineCode",{parentName:"a"},"47f2ea4")))),(0,n.kt)("h4",{id:"-documentation-changes-20"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): divider page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c6bb2389f819a9ebd8e34db0e825f3e5f62130d4"},(0,n.kt)("inlineCode",{parentName:"a"},"c6bb238")))),(0,n.kt)("h4",{id:"\ufe0f-others-53"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"add footer links,align footer image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b039564e8cd3a0319ebe07f434f20bb7d7827fe1"},(0,n.kt)("inlineCode",{parentName:"a"},"b039564"))),(0,n.kt)("li",{parentName:"ul"},"cosmetics: remove formatting ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e02b08dc2adc8b89a5b9117b5a572c7080248c29"},(0,n.kt)("inlineCode",{parentName:"a"},"e02b08d"))),(0,n.kt)("li",{parentName:"ul"},"refactor Footer component to consume children and prop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/faafcffe07383ba55f5746cb971cdf706d988f78"},(0,n.kt)("inlineCode",{parentName:"a"},"faafcff"))),(0,n.kt)("li",{parentName:"ul"},"update footer stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4e5742872f21d9737f3de443fa0e9d1b6ba02637"},(0,n.kt)("inlineCode",{parentName:"a"},"4e57428"))),(0,n.kt)("li",{parentName:"ul"},"update stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/81973cac96ee48e9b294c45e32c0ec3d2956fe67"},(0,n.kt)("inlineCode",{parentName:"a"},"81973ca"))),(0,n.kt)("li",{parentName:"ul"},"Small improvements to footer ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6d1fdc000ab83932df62244142068f097aeeb85"},(0,n.kt)("inlineCode",{parentName:"a"},"f6d1fdc"))),(0,n.kt)("li",{parentName:"ul"},"fix header urls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e5908916823a1f5771ddbeb51b3e8af026425c49"},(0,n.kt)("inlineCode",{parentName:"a"},"e590891"))),(0,n.kt)("li",{parentName:"ul"},"Rename files in footer story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3de0c19d1ddeb69d8567026e1532fceb9221049a"},(0,n.kt)("inlineCode",{parentName:"a"},"3de0c19"))),(0,n.kt)("li",{parentName:"ul"},"add style for accordion title input on edit mode ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/598aa129f2dff0a2cb2ec57f551fa72481aa911e"},(0,n.kt)("inlineCode",{parentName:"a"},"598aa12"))),(0,n.kt)("li",{parentName:"ul"},"remove comments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2db0d2c2bbebe8bab8cf9801c5ea2650dde96b87"},(0,n.kt)("inlineCode",{parentName:"a"},"2db0d2c"))),(0,n.kt)("li",{parentName:"ul"},"Apply slate customization if volto-slate addon is used ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c066701dc359c6daf01703dac8fa61c2314c11cf"},(0,n.kt)("inlineCode",{parentName:"a"},"c066701"))),(0,n.kt)("li",{parentName:"ul"},"use relative links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af91a203bb30f5c9aa1335bfa8cdaa7857d577e2"},(0,n.kt)("inlineCode",{parentName:"a"},"af91a20"))),(0,n.kt)("li",{parentName:"ul"},"make footer anchor links white ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0c671e1bf52268505a5dc58196c285c04da33b10"},(0,n.kt)("inlineCode",{parentName:"a"},"0c671e1"))),(0,n.kt)("li",{parentName:"ul"},"use custom var for line-height ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f7f6c7ea605014741b9426b19008a4e6eda6704c"},(0,n.kt)("inlineCode",{parentName:"a"},"f7f6c7e"))),(0,n.kt)("li",{parentName:"ul"},"Update semantic.less ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4a90aed030a8927fa2ea949e4f44d23638c751a"},(0,n.kt)("inlineCode",{parentName:"a"},"a4a90ae"))),(0,n.kt)("li",{parentName:"ul"},"Bump release version ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c41a42bc2fd8174a2554e6dce1a1090eff4f3bd1"},(0,n.kt)("inlineCode",{parentName:"a"},"c41a42b"))),(0,n.kt)("li",{parentName:"ul"},"Update style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/89686990b2481f339c9bec7e7f9d35d9caab94c5"},(0,n.kt)("inlineCode",{parentName:"a"},"8968699"))),(0,n.kt)("li",{parentName:"ul"},"remove styling on header popups ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/86c499be61c0d2df46cb3469a47f0afae2e46c49"},(0,n.kt)("inlineCode",{parentName:"a"},"86c499b"))),(0,n.kt)("li",{parentName:"ul"},"remove search icon styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aca80fdc78859461cfee1d902b1d122d4a189b31"},(0,n.kt)("inlineCode",{parentName:"a"},"aca80fd"))),(0,n.kt)("li",{parentName:"ul"},"adjust popup height for computer screens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/47c5edb06c8d8cdb9af8ac64f68be0e0360eccaf"},(0,n.kt)("inlineCode",{parentName:"a"},"47c5edb"))),(0,n.kt)("li",{parentName:"ul"},"fix login container width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9a887e3b15aa63aab9be8738f599febcfe245b81"},(0,n.kt)("inlineCode",{parentName:"a"},"9a887e3"))),(0,n.kt)("li",{parentName:"ul"},"Typo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/90da95c67e965124da7f431e464bcbc15fa67894"},(0,n.kt)("inlineCode",{parentName:"a"},"90da95c"))),(0,n.kt)("li",{parentName:"ul"},"fix search-input icon line-height ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b087ff86d7753f3ee0bf90a9b07c4ee7ef5e336c"},(0,n.kt)("inlineCode",{parentName:"a"},"b087ff8"))),(0,n.kt)("li",{parentName:"ul"},"lint fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e9790ca72b8d3caf114c1b80b9c5837fb6a1a56e"},(0,n.kt)("inlineCode",{parentName:"a"},"e9790ca"))),(0,n.kt)("li",{parentName:"ul"},"Rename, reorganize logos ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1ef8d22df5a757258d8610818f44362046bc828d"},(0,n.kt)("inlineCode",{parentName:"a"},"1ef8d22")))),(0,n.kt)("h3",{id:"014-beta0---2022-02-25"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.3...0.1.4-beta.0"},"0.1.4-beta.0")," - 2022-02-25"),(0,n.kt)("h4",{id:"-new-features-32"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(github): added feature and bug reports templates with our guidelines as checkboxes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/15490937382ced93f5ac69cc1939256c0a468823"},(0,n.kt)("inlineCode",{parentName:"a"},"1549093")))),(0,n.kt)("h3",{id:"013---2022-02-25"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.2...0.1.3"},"0.1.3")," - 2022-02-25"),(0,n.kt)("h4",{id:"-bug-fixes-46"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(all): change eol to unix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/62e72244f78d43ce1c7b1a5ceb8405e4a617c88a"},(0,n.kt)("inlineCode",{parentName:"a"},"62e7224"))),(0,n.kt)("li",{parentName:"ul"},"fix(banner): separate url value ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f9c9140a6f8640bbb83a08f9c5c268f31ff7b6a8"},(0,n.kt)("inlineCode",{parentName:"a"},"f9c9140"))),(0,n.kt)("li",{parentName:"ul"},"fix(all): merge eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c68f6e0e7ab11d7451c8aabf194f62da0b6adb28"},(0,n.kt)("inlineCode",{parentName:"a"},"c68f6e0"))),(0,n.kt)("li",{parentName:"ul"},"fix(blockquote): align self property now uses a valid entry ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ec761634765105694386ce48153fb95c09339273"},(0,n.kt)("inlineCode",{parentName:"a"},"ec76163")))),(0,n.kt)("h4",{id:"-enhancements-63"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): new implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff013afc68fed97d085e3930f6d728b266786dc1"},(0,n.kt)("inlineCode",{parentName:"a"},"ff013af"))),(0,n.kt)("li",{parentName:"ul"},"change(volto): removed customizations made for ims theme from volto-eea-design-system ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bc8d514d82da0811c10eefe6dde16e0846497a4a"},(0,n.kt)("inlineCode",{parentName:"a"},"bc8d514"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Timeline): divide to sub components and change files to .jsx ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e2bd3b6c8dd064e7269819ce465b961a0cee849"},(0,n.kt)("inlineCode",{parentName:"a"},"3e2bd3b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4e5d08d565ef08e4e390ede4a611145a16ca2fa9"},(0,n.kt)("inlineCode",{parentName:"a"},"4e5d08d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): link header's menu to mega menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/08406d84e5bc1c7eb1358baff19ff6731f124b32"},(0,n.kt)("inlineCode",{parentName:"a"},"08406d8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Menu): change mega menu implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/455a51b9a9fbb00c6a89c42de226787c143176f7"},(0,n.kt)("inlineCode",{parentName:"a"},"455a51b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Grid):minor changes and delete extra files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/272585dfed0c0e82b26c1e6843484ad0981ba75f"},(0,n.kt)("inlineCode",{parentName:"a"},"272585d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(timeline): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b98641af00f23302b728094ed00a4563b6813387"},(0,n.kt)("inlineCode",{parentName:"a"},"b98641a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): fix link hover issue for tablet ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/564e9721aea7d4ed998d88764e37454bc3154d3d"},(0,n.kt)("inlineCode",{parentName:"a"},"564e972"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add remix icons and minor updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c9c97dd719187e996efabaee28ccbf23d43f03af"},(0,n.kt)("inlineCode",{parentName:"a"},"c9c97dd"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): change header buttons implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6608b8cfffb75dda90b01728dc4fe657cbd84069"},(0,n.kt)("inlineCode",{parentName:"a"},"6608b8c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): add sub components and change existing Main ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/74c35a3fe462bdad7b9b2a5a6e969043439fdf5b"},(0,n.kt)("inlineCode",{parentName:"a"},"74c35a3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(table): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab7a0e8d9e83edb3035d57285a5f85557bcd7576"},(0,n.kt)("inlineCode",{parentName:"a"},"ab7a0e8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Footer): delete Actions & ThemeSites files and clear imports ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7a78456f55742a1b356070303218342876641e52"},(0,n.kt)("inlineCode",{parentName:"a"},"7a78456"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/326655a48aeac65b32beadb48707d0193c952702"},(0,n.kt)("inlineCode",{parentName:"a"},"326655a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Breadcrumb): add react router link and minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/073a3a36215427dce274a533b10d2d0bb3526de9"},(0,n.kt)("inlineCode",{parentName:"a"},"073a3a3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): show menu on search & minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4d49a8ae6958b84bd2dbaf7bd5f62310037eb288"},(0,n.kt)("inlineCode",{parentName:"a"},"4d49a8a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(List): add extra default list story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/95665cdca945cba104a25d5efcbc56436dffbd7f"},(0,n.kt)("inlineCode",{parentName:"a"},"95665cd"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus) change generation of what's new section and bump package version ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6c35cff4d65bb44755376c85ff4de8c6b39af00b"},(0,n.kt)("inlineCode",{parentName:"a"},"6c35cff"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Footer): minor code changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/67cb4bc5f9d341da78e7816ed89f219d8ac2836e"},(0,n.kt)("inlineCode",{parentName:"a"},"67cb4bc"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Menu): add class to mega menu items for styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19baa342c29322d11371303dc0092f472da1eeee"},(0,n.kt)("inlineCode",{parentName:"a"},"19baa34"))),(0,n.kt)("li",{parentName:"ul"},"change(accordion): modified default accordion stories titles with real accordion names ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cf11cc81d7096d338c565180597822e51fcaa8b7"},(0,n.kt)("inlineCode",{parentName:"a"},"cf11cc8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): accessibility image alt fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7347a688c2f37f08390b189f8bfa990c26c7f75"},(0,n.kt)("inlineCode",{parentName:"a"},"a7347a6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): adjust to volto in progress ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/760becabf40dbbaed36dac6c37275c7e31aa2509"},(0,n.kt)("inlineCode",{parentName:"a"},"760beca"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): header items as storybook arguments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/388c752aa0694e78f5306c2b2efa4a34df4b9ca6"},(0,n.kt)("inlineCode",{parentName:"a"},"388c752"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): update less variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/35b0a98eced49212bb08c3c7d2ac6987a16ec6be"},(0,n.kt)("inlineCode",{parentName:"a"},"35b0a98"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): actions as buttons; don't hardcode url for banner image; subcomponentize Banner, add Banner.Action; add developer guidelines on inline styles and line endings; ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6dd5a41248e8bf4095744bd89217707f3ad820a1"},(0,n.kt)("inlineCode",{parentName:"a"},"6dd5a41"))),(0,n.kt)("li",{parentName:"ul"},"refactor(blockquote): fix responsive margins and sizes rems ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/209f94f5535d83678af5fd650dcc3892a94c8a34"},(0,n.kt)("inlineCode",{parentName:"a"},"209f94f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Input): label position and style change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/970074aacae0c1ffabe88be58779b332993a37fd"},(0,n.kt)("inlineCode",{parentName:"a"},"970074a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update dropdown menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32eb0fa5dbb431c5d8e74e4c3e28b0555dab8aea"},(0,n.kt)("inlineCode",{parentName:"a"},"32eb0fa"))),(0,n.kt)("li",{parentName:"ul"},"refactor(timeline): theming updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c80c9aa5eb08c3b58199c6f6faca06445640f9f8"},(0,n.kt)("inlineCode",{parentName:"a"},"c80c9aa"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Blockquote):remove image stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a6357caa641e18e7a19b834cd907ba8c7117367f"},(0,n.kt)("inlineCode",{parentName:"a"},"a6357ca"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus) proofread blockquote usage section and removed unused api section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0bb29fdb73bce90f842748abd978a388fff93932"},(0,n.kt)("inlineCode",{parentName:"a"},"0bb29fd"))),(0,n.kt)("li",{parentName:"ul"},"change(infrastructure) cherry-pick fix 9639243 skipping jenkins on auto commits ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fc744cda5a4e6d9da0ab6e7f92868d53f28f53c1"},(0,n.kt)("inlineCode",{parentName:"a"},"fc744cd"))),(0,n.kt)("li",{parentName:"ul"},"change(ci) build storybook and docusaurus only when pushing to develop-itml branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4de0cbf9bfc4ecb46605dca1048a38db844880e7"},(0,n.kt)("inlineCode",{parentName:"a"},"4de0cbf"))),(0,n.kt)("li",{parentName:"ul"},"change(infrastructure): modify whats new doc when committing the auto deployment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/39df33ed946a8167e4954cffb676144700e0ec38"},(0,n.kt)("inlineCode",{parentName:"a"},"39df33e"))),(0,n.kt)("li",{parentName:"ul"},"change(blockquote): introduce float argument for blockquote with image storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8fc72906c264b5e96702f8518e81d5724b494a5c"},(0,n.kt)("inlineCode",{parentName:"a"},"8fc7290"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pullquote): add word break ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2245e53dde6dd8abf437afa94e92bbedc60c9f8c"},(0,n.kt)("inlineCode",{parentName:"a"},"2245e53"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner): minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b9073b60e337eab40a992283b5b9e75d5cffe895"},(0,n.kt)("inlineCode",{parentName:"a"},"b9073b6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(table): fix th font weight ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a96a0a7a4cb450b5f947bc397495a2a41c605c87"},(0,n.kt)("inlineCode",{parentName:"a"},"a96a0a7"))),(0,n.kt)("li",{parentName:"ul"},"refactor(comment): remove avatar border radius ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d42c37bb8f71e20e1d0ec438c14e3c7ac00cf0ae"},(0,n.kt)("inlineCode",{parentName:"a"},"d42c37b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): adjust title size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7a24d9c07a5994fa46c39fdf1e827e0d1ae5e504"},(0,n.kt)("inlineCode",{parentName:"a"},"7a24d9c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Image): change image path ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a580da68a45bbe68d314f60e9495fc321489caf5"},(0,n.kt)("inlineCode",{parentName:"a"},"a580da6"))),(0,n.kt)("li",{parentName:"ul"},"change(infrastructure): specify that docs folder contains changes for deployment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a1ca9153b70e3525cd73423d059a8607f63fc2b9"},(0,n.kt)("inlineCode",{parentName:"a"},"a1ca915")))),(0,n.kt)("h4",{id:"-internal-changes-24"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(input) prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e83fa0c3e95e33d89ab668de38e6b0b12d9fb0d9"},(0,n.kt)("inlineCode",{parentName:"a"},"e83fa0c"))),(0,n.kt)("li",{parentName:"ul"},"chore(storybook): prettier fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/354c7b33c92a9f48ca9cbb0b96b6cec213e465c8"},(0,n.kt)("inlineCode",{parentName:"a"},"354c7b3"))),(0,n.kt)("li",{parentName:"ul"},"chore(design system): technical commit for edw integration tests ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f76035122d647e14b5151af3b39f0ab3e199af2"},(0,n.kt)("inlineCode",{parentName:"a"},"9f76035"))),(0,n.kt)("li",{parentName:"ul"},"style(storybook): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c9ad345268335c42e41d13b35c0da93e9770847"},(0,n.kt)("inlineCode",{parentName:"a"},"3c9ad34"))),(0,n.kt)("li",{parentName:"ul"},"chore(infrastructure) updated branch with changes from bitbucket ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/77866f8c7ac203db0645a74b7a7456b5c4de5dd7"},(0,n.kt)("inlineCode",{parentName:"a"},"77866f8")))),(0,n.kt)("h4",{id:"\ufe0f-others-54"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"doc(colours):fix color to better show primary ones ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/705b7899f9d687747d2deb27ac4d8b4429878de0"},(0,n.kt)("inlineCode",{parentName:"a"},"705b789"))),(0,n.kt)("li",{parentName:"ul"},"doc(colours):change font size to fit text in one line ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ad751660ec832e67a0c858e75685259b9ef8d82"},(0,n.kt)("inlineCode",{parentName:"a"},"4ad7516"))),(0,n.kt)("li",{parentName:"ul"},"bump package release to 1.3.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f3cfe4f5232ff96a9845d12da72008cf838c1010"},(0,n.kt)("inlineCode",{parentName:"a"},"f3cfe4f"))),(0,n.kt)("li",{parentName:"ul"},"Refactor banner into content subcomponent ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f8df238b4db90fdb841cdd5436a644e582f73b82"},(0,n.kt)("inlineCode",{parentName:"a"},"f8df238"))),(0,n.kt)("li",{parentName:"ul"},"lint fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cda322d8c013ef303b93b4b8d29594aa3bbd0bc1"},(0,n.kt)("inlineCode",{parentName:"a"},"cda322d"))),(0,n.kt)("li",{parentName:"ul"},"rollback don'ts grammar change and disable unresolved import for Banner.stories.jsx ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a1bd7154fa64451b6a521743955a57405dc7fb67"},(0,n.kt)("inlineCode",{parentName:"a"},"a1bd715"))),(0,n.kt)("li",{parentName:"ul"},"Add space line in component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4d1a5fbe9a9ea53701702d7ce33622795f5ab00"},(0,n.kt)("inlineCode",{parentName:"a"},"d4d1a5f")))),(0,n.kt)("h3",{id:"012---2022-02-17"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.2-beta.2...0.1.2"},"0.1.2")," - 2022-02-17"),(0,n.kt)("h4",{id:"-new-features-33"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(blockquote) added blockquote styles as a custom module ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d30662e23176cf7a5ab64aa322acd5a09a0c4130"},(0,n.kt)("inlineCode",{parentName:"a"},"d30662e")))),(0,n.kt)("h4",{id:"-bug-fixes-47"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(inpageNavigation): hide at the top of the page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/97ef50069cd9b29345fb68ce8b557a47577669a4"},(0,n.kt)("inlineCode",{parentName:"a"},"97ef500"))),(0,n.kt)("li",{parentName:"ul"},"fix(footer):missing image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac91a29a134c97af842c6be4987c60c44c4c96d8"},(0,n.kt)("inlineCode",{parentName:"a"},"ac91a29"))),(0,n.kt)("li",{parentName:"ul"},"fix(comment):fix broken image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8125dc179923f652ecd25003df8ecb4fb0aeffb9"},(0,n.kt)("inlineCode",{parentName:"a"},"8125dc1"))),(0,n.kt)("li",{parentName:"ul"},"fix(message): fix font loading ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fdc498e178a04315c88e005fbc1371ba954ff402"},(0,n.kt)("inlineCode",{parentName:"a"},"fdc498e"))),(0,n.kt)("li",{parentName:"ul"},"fix(logo): logo change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f8c8af4453774386d5d0432a078b049416d034b"},(0,n.kt)("inlineCode",{parentName:"a"},"5f8c8af")))),(0,n.kt)("h4",{id:"-enhancements-64"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): multiple components fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a3ff518323a3eab18edc5057c6f1233e5422a22"},(0,n.kt)("inlineCode",{parentName:"a"},"4a3ff51"))),(0,n.kt)("li",{parentName:"ul"},"change(infrastructure) re-enable integration tests for auto release stack ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce8daf8abc6eb9a6b7fd8579904a3e5642896e3a"},(0,n.kt)("inlineCode",{parentName:"a"},"ce8daf8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): global site files styling update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f3770f1756bca3898e2a67fa532a9d97b0fd1ef2"},(0,n.kt)("inlineCode",{parentName:"a"},"f3770f1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): multiple components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9277aaccb09aa03575b95851d55fc69b1f530e23"},(0,n.kt)("inlineCode",{parentName:"a"},"9277aac"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer) adjust to volto theming update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a59f1c354ceea661c60faabfdb6226c9f4ba1209"},(0,n.kt)("inlineCode",{parentName:"a"},"a59f1c3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): minor styling update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dd6b55c6c5331383a42f6865bd9bd0641feb9a3b"},(0,n.kt)("inlineCode",{parentName:"a"},"dd6b55c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): change header mega menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7559b57a08c2f0e9f3eb95167479ca041b998bc5"},(0,n.kt)("inlineCode",{parentName:"a"},"7559b57"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/451b9493b100dae80bed4b6629da725195dddff1"},(0,n.kt)("inlineCode",{parentName:"a"},"451b949"))),(0,n.kt)("li",{parentName:"ul"},"refactor(accordion): minor styling update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aeaf25f585c1379a2bd40de1c1bf03fee00ef76e"},(0,n.kt)("inlineCode",{parentName:"a"},"aeaf25f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bdff1768096443f2f453d76bf9958adabd309cb7"},(0,n.kt)("inlineCode",{parentName:"a"},"bdff176"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer):mobile responsiveness ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/14822bec78feebc2b06fc26d6992a481be2e3609"},(0,n.kt)("inlineCode",{parentName:"a"},"14822be"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): main and custom less files update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1607760bb1582c63ab1a6b978ac13bb0ca51b0c2"},(0,n.kt)("inlineCode",{parentName:"a"},"1607760"))),(0,n.kt)("li",{parentName:"ul"},"refactor(timeline): update after removing timeline addon ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f54d3806eb0a60379b46b03a04a6602ed465cd15"},(0,n.kt)("inlineCode",{parentName:"a"},"f54d380"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Footer): replace with subcomponents ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/378c652265213bafac9de1d946cb328fa2fe90cb"},(0,n.kt)("inlineCode",{parentName:"a"},"378c652"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): header change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/029e85039bb3f35a6ba4ff2870d98e1faa23661b"},(0,n.kt)("inlineCode",{parentName:"a"},"029e850"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): change header bar ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2b766fd62c86d22f01278c54d3a1dbfb696b095b"},(0,n.kt)("inlineCode",{parentName:"a"},"2b766fd"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus) use itml branch for docusaurus deployment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e286c50056aa6d0d5735cb330789b4e48a1f927"},(0,n.kt)("inlineCode",{parentName:"a"},"6e286c5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(accordion): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/971fcb824f6aa55ac28b4b275927b202d2c08ca6"},(0,n.kt)("inlineCode",{parentName:"a"},"971fcb8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): add sub components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7f955dbafa94c13e71ff587af70aa84d18da8da0"},(0,n.kt)("inlineCode",{parentName:"a"},"7f955db"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus) tweak auto deployment to always commit changes from docs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a2940daef1cf281bac87dec3cec68337053cc52d"},(0,n.kt)("inlineCode",{parentName:"a"},"a2940da"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): less and variables files created ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5b1a8aaf7f678dd60fb88149284058fcab617fd"},(0,n.kt)("inlineCode",{parentName:"a"},"d5b1a8a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(label): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c945e1600b4beb3667b389542adade317d285c6"},(0,n.kt)("inlineCode",{parentName:"a"},"3c945e1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(message): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e950fc56461540be24d9e5b2ff3c0bf8ad53738"},(0,n.kt)("inlineCode",{parentName:"a"},"3e950fc"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Footer): add sub components and props ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c3d14871887a83fb91792fbc8977c0439bcb16f2"},(0,n.kt)("inlineCode",{parentName:"a"},"c3d1487"))),(0,n.kt)("li",{parentName:"ul"},"refactor(modal): modal and confirm adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/83b60e94bdd3203a92a1b9038f9cc45011ba72a5"},(0,n.kt)("inlineCode",{parentName:"a"},"83b60e9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(comment): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/84348c36b5b750c324c89b5e3c462319bb9ebf46"},(0,n.kt)("inlineCode",{parentName:"a"},"84348c3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook):adjust headings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32f64f9b71d1cb8c96c9c37ba1850a2278f95287"},(0,n.kt)("inlineCode",{parentName:"a"},"32f64f9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): add comments to header menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c2c83b202e5117d8e0013101d8e922e9d93d21de"},(0,n.kt)("inlineCode",{parentName:"a"},"c2c83b2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Accordion): clear up accordion stories code ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4e59b8fa961b878591e9806e1ebbfdb841523077"},(0,n.kt)("inlineCode",{parentName:"a"},"4e59b8f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(segmant): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ab211e868296f377fddba203847549f0e5e07df"},(0,n.kt)("inlineCode",{parentName:"a"},"3ab211e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button) minor styling update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8782bb27c789a4aac97b380d718f4de129fdf682"},(0,n.kt)("inlineCode",{parentName:"a"},"8782bb2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): change image position ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cdd76d59ade86f3f989bf7d94e45e4d9b439115f"},(0,n.kt)("inlineCode",{parentName:"a"},"cdd76d5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumbs): update less variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/640817ee904f88a04f0e8f11b258f95b8db97039"},(0,n.kt)("inlineCode",{parentName:"a"},"640817e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(list): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1079c733e6ec634fedaab5b4630888a52b28e482"},(0,n.kt)("inlineCode",{parentName:"a"},"1079c73"))),(0,n.kt)("li",{parentName:"ul"},"refactor(timeline):adjust timeline module ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/213eb11e8e87940c18d81738609b4684329a5ce4"},(0,n.kt)("inlineCode",{parentName:"a"},"213eb11"))),(0,n.kt)("li",{parentName:"ul"},"refactor(blockquote):adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5eec87fc1b3017011266241c20b31217ac27c12d"},(0,n.kt)("inlineCode",{parentName:"a"},"5eec87f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progress): add progress bar colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ccf3c9823b2583fc70183554df7c4588fbf9ca13"},(0,n.kt)("inlineCode",{parentName:"a"},"ccf3c98"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pullquote):adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fee446668a8d65a717b42667af825cb5cec836b2"},(0,n.kt)("inlineCode",{parentName:"a"},"fee4466"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): change mobile mega menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c7ecf18a81024121218d580f201f324cf990829e"},(0,n.kt)("inlineCode",{parentName:"a"},"c7ecf18"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b726e49519914b02766bcd993b94ce9ff164e1df"},(0,n.kt)("inlineCode",{parentName:"a"},"b726e49"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button) adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/eb257f83541871ccc635842664722b914661770c"},(0,n.kt)("inlineCode",{parentName:"a"},"eb257f8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form): minor styling update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/79934b2cde2e806418a6422df2914321181f7a22"},(0,n.kt)("inlineCode",{parentName:"a"},"79934b2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Footer): create Actions & Sites sub components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/446840b99abd6897c1b59a9462d72b1f06f1dd4e"},(0,n.kt)("inlineCode",{parentName:"a"},"446840b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(inpageNavigation): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/85c631a9e9c1454f1f2530e4f1851089663dd610"},(0,n.kt)("inlineCode",{parentName:"a"},"85c631a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Inpage Navigation): changed button's display ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/36e5b4f107ce3535b607f7ed169c723a66ce6ac2"},(0,n.kt)("inlineCode",{parentName:"a"},"36e5b4f"))),(0,n.kt)("li",{parentName:"ul"},"enhancement(docusaurus) modified headings to be within release versions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19ace3038d6b4535b29634209e4d506e7dca2c2c"},(0,n.kt)("inlineCode",{parentName:"a"},"19ace30"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): move components to ui folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb91f88f628580f565eb01ea8627763bc2243dfb"},(0,n.kt)("inlineCode",{parentName:"a"},"cb91f88"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): change mega menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/de0fc6b3862a88ac04058b56020af23c1946ce41"},(0,n.kt)("inlineCode",{parentName:"a"},"de0fc6b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Pullquote): divide Pullquote to sub components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/34413c44ab9e318d67408f7497782b7de693deeb"},(0,n.kt)("inlineCode",{parentName:"a"},"34413c4"))),(0,n.kt)("li",{parentName:"ul"},"enhancement(docusaurus) replace changelog when auto-building docs Refs #145331 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/da25c0e25ffa80131ab4b5503b28e43385d9f827"},(0,n.kt)("inlineCode",{parentName:"a"},"da25c0e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(popup): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d0d192dc2b2a5edd422cf6a7b359c384ec4b1d55"},(0,n.kt)("inlineCode",{parentName:"a"},"d0d192d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ab6f914f487bea0df299de7da0bbd917733ee00"},(0,n.kt)("inlineCode",{parentName:"a"},"2ab6f91"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/89a16af86a165d7798b68b95ff3de215a92f0569"},(0,n.kt)("inlineCode",{parentName:"a"},"89a16af"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pullquotes) remove unnecessary variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e0d20a3febec060ac24c5498846e768d7068e8b9"},(0,n.kt)("inlineCode",{parentName:"a"},"e0d20a3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progress):adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d1ab950ee9cc14bbe95869d4f143fc428aad5a8d"},(0,n.kt)("inlineCode",{parentName:"a"},"d1ab950"))),(0,n.kt)("li",{parentName:"ul"},"refactor(blockquote) change variables names ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/36fd5be9bde1a3ceb8390639414f254fc26b8e76"},(0,n.kt)("inlineCode",{parentName:"a"},"36fd5be"))),(0,n.kt)("li",{parentName:"ul"},"refactor(comment): adjust font sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0311ed14c951eb9cba18a58f6f954c19601d838b"},(0,n.kt)("inlineCode",{parentName:"a"},"0311ed1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(InpageNavigation): clear up code ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1d7afdc8d751e61c3eef75360555807fdbef8619"},(0,n.kt)("inlineCode",{parentName:"a"},"1d7afdc"))),(0,n.kt)("li",{parentName:"ul"},"refactor(container): change variable name for computer padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/26d123f3e7e30a706b09efc10773694af79377f9"},(0,n.kt)("inlineCode",{parentName:"a"},"26d123f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(inpageNavigation): remove imports ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/25c1d1c3016695d92d104a12b22a6a9254f41b20"},(0,n.kt)("inlineCode",{parentName:"a"},"25c1d1c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): update ui index components exports ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce78d47880cab5849f4c01785cdd97a9b26771ec"},(0,n.kt)("inlineCode",{parentName:"a"},"ce78d47"))),(0,n.kt)("li",{parentName:"ul"},"change(infrastructure) auto build storybook when pushing to develop-itml branch of volto-eea-design-system ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e9aa5bc3de9c2e1c5dc55b5d317679bc14dd1cbd"},(0,n.kt)("inlineCode",{parentName:"a"},"e9aa5bc"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): delete demo stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8b58d0245f5bda7e2022a2ef9ace11015f13da01"},(0,n.kt)("inlineCode",{parentName:"a"},"8b58d02"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus) align deployment steps for building docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/37e4ce05d2772ac320a7ad561536189c5ea0a582"},(0,n.kt)("inlineCode",{parentName:"a"},"37e4ce0"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): remove components from customizations folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8930edeaf064ec316f1d086e1301a7e5269bfe4b"},(0,n.kt)("inlineCode",{parentName:"a"},"8930ede"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tab): minor styling update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1252ad0317ecf7e583dbb975b29a4c8e4c75330e"},(0,n.kt)("inlineCode",{parentName:"a"},"1252ad0"))),(0,n.kt)("li",{parentName:"ul"},"refactor(comment): change avatar src ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e5f9c4c02f5de5ae6480eedb45730bb76efbf7b4"},(0,n.kt)("inlineCode",{parentName:"a"},"e5f9c4c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner) : change file type and folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/878742ba0f95440ffbb5aec33f2cc4201dfacd43"},(0,n.kt)("inlineCode",{parentName:"a"},"878742b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form elements):changed text ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/919beea9deccec68ac0cdbbc1249ef4ab4c12230"},(0,n.kt)("inlineCode",{parentName:"a"},"919beea"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Image): change image src ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b9710849adf0cf4f10815186b6293bcc3881d68d"},(0,n.kt)("inlineCode",{parentName:"a"},"b971084"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Pullquote): add component propTypes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d32c5e69e76d7f369a286d29e49d767125550ebc"},(0,n.kt)("inlineCode",{parentName:"a"},"d32c5e6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(blockquote): adjust font sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d71a3cef7bfd4109c56b7fe8c07271c60a4bd19e"},(0,n.kt)("inlineCode",{parentName:"a"},"d71a3ce"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update font sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1c91c357a59669df0da0f4fc70d3aa420db27a14"},(0,n.kt)("inlineCode",{parentName:"a"},"1c91c35"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Blockquote): add component proTypes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea02649f92b0e41b1eb62a771330c2e53b3960e8"},(0,n.kt)("inlineCode",{parentName:"a"},"ea02649"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logo): update image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6113728e248c3e0fd0a467bb34406aa4403399e"},(0,n.kt)("inlineCode",{parentName:"a"},"f611372"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): restore config ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2c5239d92abe6be70b092e7e43f195308800f87"},(0,n.kt)("inlineCode",{parentName:"a"},"f2c5239"))),(0,n.kt)("li",{parentName:"ul"},"refactor(blockquote): update component name ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/572e655c033d93b32a48a61b1bf6383f6c993b26"},(0,n.kt)("inlineCode",{parentName:"a"},"572e655"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): fix story header import ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ceda6c7790964b150b95daf161d10364d6b67427"},(0,n.kt)("inlineCode",{parentName:"a"},"ceda6c7"))),(0,n.kt)("li",{parentName:"ul"},"change(infrastructure) auto build docusaurus when pushing to develop-itml branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7bebdf5e58f37400a8ae3d5f816c64c6b9ca3a5b"},(0,n.kt)("inlineCode",{parentName:"a"},"7bebdf5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): remove components from customization folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a9bb9b34e6961eaf16e54ed6f6ca4942944e8a0"},(0,n.kt)("inlineCode",{parentName:"a"},"4a9bb9b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner):story rename ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/56ff603d6c9cec7c22483a088624f5bd7911f717"},(0,n.kt)("inlineCode",{parentName:"a"},"56ff603"))),(0,n.kt)("li",{parentName:"ul"},"change(testing) removed navigation from cypress tests until component is finished ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5549f4c07cb0ffd725342f365aae07745d7e25f7"},(0,n.kt)("inlineCode",{parentName:"a"},"5549f4c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Segment): change to .jsx extension ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5cb35d81e8628832bab2e6ad50de6892e7e4370e"},(0,n.kt)("inlineCode",{parentName:"a"},"5cb35d8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Pullquote): change to .jsx extension ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/564cf7ea379703315f179ab922b4e0a02df63e47"},(0,n.kt)("inlineCode",{parentName:"a"},"564cf7e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(PopUp):change to .jsx extension ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dcb24ff252665a79fda2fec645e6f2a48ff71fd0"},(0,n.kt)("inlineCode",{parentName:"a"},"dcb24ff"))),(0,n.kt)("li",{parentName:"ul"},"refactor(InpageNavigation): change to .jsx extension ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dfefce3ebe55f8eb6f67974ccc33b0cb0bb13d9f"},(0,n.kt)("inlineCode",{parentName:"a"},"dfefce3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Blockquote): change to .jsx extension ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/44a164532c1ae969e4411e0cfb68b705ff2bfc1e"},(0,n.kt)("inlineCode",{parentName:"a"},"44a1645"))),(0,n.kt)("li",{parentName:"ul"},"refactor(heading): story name update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aa10f3412323321650e20401038d44b9bfdb507a"},(0,n.kt)("inlineCode",{parentName:"a"},"aa10f34")))),(0,n.kt)("h4",{id:"-internal-changes-25"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(footer): prettier fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/902c25712c88330db841240c9f1d6004e3e2674f"},(0,n.kt)("inlineCode",{parentName:"a"},"902c257"))),(0,n.kt)("li",{parentName:"ul"},"style(storybook): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/59f941dea9bf05f31257230f1a871c6eb0e98aae"},(0,n.kt)("inlineCode",{parentName:"a"},"59f941d")))),(0,n.kt)("h4",{id:"-documentation-changes-21"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus):multiple page updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2aba73ea6ff86c5a94789c707d98699fc1397e01"},(0,n.kt)("inlineCode",{parentName:"a"},"2aba73e"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus):update page content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/565697fecb4528cc5b4a6a43ca3ab9b026a2779e"},(0,n.kt)("inlineCode",{parentName:"a"},"565697f"))),(0,n.kt)("li",{parentName:"ul"},"docs(grid):update components grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/60eb083aa5d00840642caf73f6e0bb86b814aed5"},(0,n.kt)("inlineCode",{parentName:"a"},"60eb083"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): page adjustments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0641eacf9f4715acd4baaa651335ff84ac418009"},(0,n.kt)("inlineCode",{parentName:"a"},"0641eac"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus):updated various pages ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f860176a5f755d75d7b9558661e675fc678fe7ac"},(0,n.kt)("inlineCode",{parentName:"a"},"f860176"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): logo change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3af5e5c3acbf7ba4e152ca6944c500dbb0cf10ee"},(0,n.kt)("inlineCode",{parentName:"a"},"3af5e5c")))),(0,n.kt)("h4",{id:"\ufe0f-others-55"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"added sortable table stories and descriptions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d44dd7c651abe46c380b62efd3258c92223e99c"},(0,n.kt)("inlineCode",{parentName:"a"},"6d44dd7"))),(0,n.kt)("li",{parentName:"ul"},"Layout components theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/586101341f713bb072f2753d8df6e8b2ad6e4938"},(0,n.kt)("inlineCode",{parentName:"a"},"5861013"))),(0,n.kt)("li",{parentName:"ul"},"recovered files from origin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4ac04fde9c4297b09c834385f772e955b7f3b4a"},(0,n.kt)("inlineCode",{parentName:"a"},"a4ac04f"))),(0,n.kt)("li",{parentName:"ul"},"grid component & stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a5752e49aac05251905f7355234c3f9bc6b798f"},(0,n.kt)("inlineCode",{parentName:"a"},"4a5752e"))),(0,n.kt)("li",{parentName:"ul"},"Updated what's new section with actual commits from volto-eea-design-system repo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fc5e3c385d82ff7eccbd5841736f3ce292b2b7fd"},(0,n.kt)("inlineCode",{parentName:"a"},"fc5e3c3"))),(0,n.kt)("li",{parentName:"ul"},"Docusaurus title possible fix. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/db699e771b13bbd7e75c3bd84bb91ecf5d0459d8"},(0,n.kt)("inlineCode",{parentName:"a"},"db699e7"))),(0,n.kt)("li",{parentName:"ul"},"form elements stories added description & default values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6b4f6ebeed275a86f5ef6dafb13219db0c0fbbc6"},(0,n.kt)("inlineCode",{parentName:"a"},"6b4f6eb"))),(0,n.kt)("li",{parentName:"ul"},"removed API tabs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/58aa9286eb5d8cc520239aa6ee424ee5cd5446c3"},(0,n.kt)("inlineCode",{parentName:"a"},"58aa928"))),(0,n.kt)("li",{parentName:"ul"},"Layout updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/854f388c5b049e41217ddb444bc7bd0f2c61cdf6"},(0,n.kt)("inlineCode",{parentName:"a"},"854f388"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142123 removed extra customization of semantic.less: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab9de811b20b20a9f91ddc8b45b4de2eb9c47f6c"},(0,n.kt)("inlineCode",{parentName:"a"},"ab9de81"))),(0,n.kt)("li",{parentName:"ul"},"added page-header,footer and grid in docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/660c8e382068c179ca66831ae23588a4fb67cde6"},(0,n.kt)("inlineCode",{parentName:"a"},"660c8e3"))),(0,n.kt)("li",{parentName:"ul"},"Manual docs build and commit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/666eb6aff8535bb586a49579152fcf8a88961f35"},(0,n.kt)("inlineCode",{parentName:"a"},"666eb6a"))),(0,n.kt)("li",{parentName:"ul"},"added svg & png files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f1338d5bb02e17e402cea4b1584c7d01896097f9"},(0,n.kt)("inlineCode",{parentName:"a"},"f1338d5"))),(0,n.kt)("li",{parentName:"ul"},"added missing components to docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/934dfd8a98942c247deb2b5b8693604ad77cafa3"},(0,n.kt)("inlineCode",{parentName:"a"},"934dfd8"))),(0,n.kt)("li",{parentName:"ul"},"Control descriptions updated ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/56581ebc86a91fd012a98984b20f6daad25900fe"},(0,n.kt)("inlineCode",{parentName:"a"},"56581eb"))),(0,n.kt)("li",{parentName:"ul"},"Grid updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/700332d354aea84526ff22acf3bc2f8903c0f584"},(0,n.kt)("inlineCode",{parentName:"a"},"700332d"))),(0,n.kt)("li",{parentName:"ul"},"Button theming update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0ec68b6bd1ab060ac224a859180b9f750834c0b8"},(0,n.kt)("inlineCode",{parentName:"a"},"0ec68b6"))),(0,n.kt)("li",{parentName:"ul"},"site variebales & overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7251162f182f1528d72070aae8a5a14e9ec5ee93"},(0,n.kt)("inlineCode",{parentName:"a"},"7251162"))),(0,n.kt)("li",{parentName:"ul"},"Table and Tabs theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/49f08608e8be8475d561e1ce5c1bfbcfd21001f9"},(0,n.kt)("inlineCode",{parentName:"a"},"49f0860"))),(0,n.kt)("li",{parentName:"ul"},"Responsiveness updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48e1351104249fea610941793ff8ec3bf35d0699"},(0,n.kt)("inlineCode",{parentName:"a"},"48e1351"))),(0,n.kt)("li",{parentName:"ul"},"added various components to docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/550d71963b0957b1c5597bbdb2c699c411c649bd"},(0,n.kt)("inlineCode",{parentName:"a"},"550d719"))),(0,n.kt)("li",{parentName:"ul"},"Checkbox and radio updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24652a238f2c98fe5d8e8032e3320e0b3b4753e5"},(0,n.kt)("inlineCode",{parentName:"a"},"24652a2"))),(0,n.kt)("li",{parentName:"ul"},"remove images from typography and colour docs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8493e924f5af4ba7c2ed478d7bae6992b4ef6ed6"},(0,n.kt)("inlineCode",{parentName:"a"},"8493e92"))),(0,n.kt)("li",{parentName:"ul"},"added guidelines' text and finished all components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/02d75fcdc5a98633e4d563c7ec2863a9588b5506"},(0,n.kt)("inlineCode",{parentName:"a"},"02d75fc"))),(0,n.kt)("li",{parentName:"ul"},"added more missing components in docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8be82634c681a073b13a5a90ee2b699bd25b422a"},(0,n.kt)("inlineCode",{parentName:"a"},"8be8263"))),(0,n.kt)("li",{parentName:"ul"},"Prettier changes on docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f1e5eb796f2072e3b816a39a35cf48523405167"},(0,n.kt)("inlineCode",{parentName:"a"},"5f1e5eb"))),(0,n.kt)("li",{parentName:"ul"},"Grid updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ae099453e280de800a5a06c6fcbe074acc1f7bfd"},(0,n.kt)("inlineCode",{parentName:"a"},"ae09945"))),(0,n.kt)("li",{parentName:"ul"},"Minor fixes for tests ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3bdf3063d9bbc101f4b83c6aa4fc5fef5e87c776"},(0,n.kt)("inlineCode",{parentName:"a"},"3bdf306"))),(0,n.kt)("li",{parentName:"ul"},"Layout updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8b7a4dc8731cb02946e604a0dd73d2a45f61cd8b"},(0,n.kt)("inlineCode",{parentName:"a"},"8b7a4dc"))),(0,n.kt)("li",{parentName:"ul"},"Footer and TOC theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bb3d3c486f64e123b9009a76c6f054a8e2973230"},(0,n.kt)("inlineCode",{parentName:"a"},"bb3d3c4"))),(0,n.kt)("li",{parentName:"ul"},"Refs #145331 manually commit changelog until autobuild is stabilized ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93168b096b60fc6a208b20d1cbe610384be62f42"},(0,n.kt)("inlineCode",{parentName:"a"},"93168b0"))),(0,n.kt)("li",{parentName:"ul"},"label component changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/df8c0ff2d9646e4dcc7ed1a25a80712ca9ea2c9b"},(0,n.kt)("inlineCode",{parentName:"a"},"df8c0ff"))),(0,n.kt)("li",{parentName:"ul"},"added several sections to the theming guidelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff1a649d9c83794024e2db4f6349b3cac4fe79a0"},(0,n.kt)("inlineCode",{parentName:"a"},"ff1a649"))),(0,n.kt)("li",{parentName:"ul"},"Updated removed files. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/84f9b8cf7c469525367764909fa0d322532a13be"},(0,n.kt)("inlineCode",{parentName:"a"},"84f9b8c"))),(0,n.kt)("li",{parentName:"ul"},"added more docusaurus components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/52a3b9edd4c751225609dcaf2d16f08688e9cfeb"},(0,n.kt)("inlineCode",{parentName:"a"},"52a3b9e"))),(0,n.kt)("li",{parentName:"ul"},"Progress Bar ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f2efc9ded5a766df0c611a15f6a93f27bd14a37"},(0,n.kt)("inlineCode",{parentName:"a"},"9f2efc9"))),(0,n.kt)("li",{parentName:"ul"},"Modal and Confirm updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3b306c6fa5631e1e4e37456d483a69bc8cc3b234"},(0,n.kt)("inlineCode",{parentName:"a"},"3b306c6"))),(0,n.kt)("li",{parentName:"ul"},"Add proper changes to whatsnew meant in previous commit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/40f78e362ca607ef3893fff3d03c8ed1b4447c11"},(0,n.kt)("inlineCode",{parentName:"a"},"40f78e3"))),(0,n.kt)("li",{parentName:"ul"},"Form Descriptions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/de0dfbcb3a0a9610f1cbf7337f598b0c5338f2a3"},(0,n.kt)("inlineCode",{parentName:"a"},"de0dfbc"))),(0,n.kt)("li",{parentName:"ul"},"Prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1337e6fffb13fa8447488129d5dcd5af9e35e46a"},(0,n.kt)("inlineCode",{parentName:"a"},"1337e6f"))),(0,n.kt)("li",{parentName:"ul"},"Deleted files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b82f982fbfbaff4e74e35424c6122410e3830faf"},(0,n.kt)("inlineCode",{parentName:"a"},"b82f982"))),(0,n.kt)("li",{parentName:"ul"},"add new images for spacing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7b7b2c48317c45e3ff89162d703434f615c840e9"},(0,n.kt)("inlineCode",{parentName:"a"},"7b7b2c4"))),(0,n.kt)("li",{parentName:"ul"},"Messages Theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ad621a38c121f585125d5934c1939ba6a7198b33"},(0,n.kt)("inlineCode",{parentName:"a"},"ad621a3"))),(0,n.kt)("li",{parentName:"ul"},"added new content to docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1c83452be983d46f4128c33c25e69afef333f82a"},(0,n.kt)("inlineCode",{parentName:"a"},"1c83452"))),(0,n.kt)("li",{parentName:"ul"},"Minor less updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a36a8bbfeb201049fa13987894a5ec2ec167ed03"},(0,n.kt)("inlineCode",{parentName:"a"},"a36a8bb"))),(0,n.kt)("li",{parentName:"ul"},"Tabs and lists updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e37eef19e67c3c5720d5a9565e9884dc5c19f127"},(0,n.kt)("inlineCode",{parentName:"a"},"e37eef1"))),(0,n.kt)("li",{parentName:"ul"},"Inpage nav and timeline components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/76f0f82dc3a8f683268a4df7580b8f73a0cc1cb4"},(0,n.kt)("inlineCode",{parentName:"a"},"76f0f82"))),(0,n.kt)("li",{parentName:"ul"},"Prettier updated files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/679b9d2026091685d6982ab68e5088544ea0941e"},(0,n.kt)("inlineCode",{parentName:"a"},"679b9d2"))),(0,n.kt)("li",{parentName:"ul"},"dropdown initial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d8aef26dc905adbb0fb72c73d6188b50944931c9"},(0,n.kt)("inlineCode",{parentName:"a"},"d8aef26"))),(0,n.kt)("li",{parentName:"ul"},"Prettier changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f068af0b307d85146e1d8a529947c98988c506f7"},(0,n.kt)("inlineCode",{parentName:"a"},"f068af0"))),(0,n.kt)("li",{parentName:"ul"},"List initial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d3b96974bc35ad958b8cfc7921c1fbe345e5ebf"},(0,n.kt)("inlineCode",{parentName:"a"},"6d3b969"))),(0,n.kt)("li",{parentName:"ul"},"List story updated ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e96a6f6cff9a4db994df7cbf584842b18ca1c432"},(0,n.kt)("inlineCode",{parentName:"a"},"e96a6f6"))),(0,n.kt)("li",{parentName:"ul"},"Statistics updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/74bf63999cfeb0791b9475d3895a49a245be2cd3"},(0,n.kt)("inlineCode",{parentName:"a"},"74bf639"))),(0,n.kt)("li",{parentName:"ul"},"styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c169cc026189ca71e6e9cad17bde9d65d93ffbde"},(0,n.kt)("inlineCode",{parentName:"a"},"c169cc0"))),(0,n.kt)("li",{parentName:"ul"},"timeline comp storybook changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f42686ae19b619fa659730567bdceb369ecd4b0"},(0,n.kt)("inlineCode",{parentName:"a"},"1f42686"))),(0,n.kt)("li",{parentName:"ul"},"feature(docusaurus) added theming guidelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ded1f04a3197ac34640f98bcfe363c75a0a3745f"},(0,n.kt)("inlineCode",{parentName:"a"},"ded1f04"))),(0,n.kt)("li",{parentName:"ul"},"Properly commented out integration tests. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48b3a15f426db52b9fa27f6d7792c424b4939867"},(0,n.kt)("inlineCode",{parentName:"a"},"48b3a15"))),(0,n.kt)("li",{parentName:"ul"},"Reattempting commented out integrations tests. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3dd8211ecfca6c7891ef6851d0dc82899ab50f05"},(0,n.kt)("inlineCode",{parentName:"a"},"3dd8211"))),(0,n.kt)("li",{parentName:"ul"},"Button theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4231e1c264165ef6f7e2f2cd6fbd7c51159330b6"},(0,n.kt)("inlineCode",{parentName:"a"},"4231e1c"))),(0,n.kt)("li",{parentName:"ul"},"Card initial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/06dace5c4aa54d90ec4bcdc0b3fbc0883f825947"},(0,n.kt)("inlineCode",{parentName:"a"},"06dace5"))),(0,n.kt)("li",{parentName:"ul"},"form element storybook changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4b06aabddedbc281f23fc75a1e56476c4d1c1af"},(0,n.kt)("inlineCode",{parentName:"a"},"c4b06aa"))),(0,n.kt)("li",{parentName:"ul"},"Pagination theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2a80175762fbab23691d52f89cd38eb6f7740c4e"},(0,n.kt)("inlineCode",{parentName:"a"},"2a80175"))),(0,n.kt)("li",{parentName:"ul"},"Accordion theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8061bf90823a9172cfccb0ea1ed544ceda1c3fe9"},(0,n.kt)("inlineCode",{parentName:"a"},"8061bf9"))),(0,n.kt)("li",{parentName:"ul"},"global var updates and radio story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9526ee2fc8269db60ce912bfd4edfadbb55fed3a"},(0,n.kt)("inlineCode",{parentName:"a"},"9526ee2"))),(0,n.kt)("li",{parentName:"ul"},"created pullquote component & stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/df35563fb7ba2be403461c120b32ebffaa391736"},(0,n.kt)("inlineCode",{parentName:"a"},"df35563"))),(0,n.kt)("li",{parentName:"ul"},"Item stories added description & default values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9d459f2cd92e419813e7edf0f28dec4c750a5940"},(0,n.kt)("inlineCode",{parentName:"a"},"9d459f2"))),(0,n.kt)("li",{parentName:"ul"},"storybook clean up code ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bffd32603a70cf6cafa4874937f3fe218ba5de9d"},(0,n.kt)("inlineCode",{parentName:"a"},"bffd326"))),(0,n.kt)("li",{parentName:"ul"},"List updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/28f1b5352d83e144acdaae694cf20755a3b04106"},(0,n.kt)("inlineCode",{parentName:"a"},"28f1b53"))),(0,n.kt)("li",{parentName:"ul"},"Button classes updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/788c289549490d9ac5f1c40f1e39124349e1dbcd"},(0,n.kt)("inlineCode",{parentName:"a"},"788c289"))),(0,n.kt)("li",{parentName:"ul"},"Prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/678c9be717468fd2c8c425bec5999e81a66dabf6"},(0,n.kt)("inlineCode",{parentName:"a"},"678c9be"))),(0,n.kt)("li",{parentName:"ul"},"Removed header title from partial docusaurus components. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ed7c45e458504fa76ad500ab26f59a442b3c6952"},(0,n.kt)("inlineCode",{parentName:"a"},"ed7c45e"))),(0,n.kt)("li",{parentName:"ul"},"created banner component and stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9be170f2ccb20218a7bdae48c85f77acd69427ff"},(0,n.kt)("inlineCode",{parentName:"a"},"9be170f"))),(0,n.kt)("li",{parentName:"ul"},"Breadcrumb stories description & defaultValue -- clean up code ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/186ab65ca8635c853c919fc645c1ef0486e22a43"},(0,n.kt)("inlineCode",{parentName:"a"},"186ab65"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142123 added customization of semantic.less: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1e02356722fcb7528883b6dc3bf71279343fd1f7"},(0,n.kt)("inlineCode",{parentName:"a"},"1e02356"))),(0,n.kt)("li",{parentName:"ul"},"Card stories added description & default values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6b408f1ed24ee69ad8faacc6b36cf06e9917478"},(0,n.kt)("inlineCode",{parentName:"a"},"f6b408f"))),(0,n.kt)("li",{parentName:"ul"},"Statistic and accordion updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/16064ceeb6e1a7f097979365473c6a86ced4056f"},(0,n.kt)("inlineCode",{parentName:"a"},"16064ce"))),(0,n.kt)("li",{parentName:"ul"},"breadcrumb component & stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5bceb980502828c182a3998943ab086159c3fcb6"},(0,n.kt)("inlineCode",{parentName:"a"},"5bceb98"))),(0,n.kt)("li",{parentName:"ul"},"Container initial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3eb7155332f83bb8896a831e24cbae028413aba2"},(0,n.kt)("inlineCode",{parentName:"a"},"3eb7155"))),(0,n.kt)("li",{parentName:"ul"},"doc(docusaurus):Fix text for various parts ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bfd3fa2584a6e7aa2c26f3502b1ede912682905e"},(0,n.kt)("inlineCode",{parentName:"a"},"bfd3fa2"))),(0,n.kt)("li",{parentName:"ul"},"blockquote component & stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/879b6402f08112fedfffe6d66e72c37750593bb8"},(0,n.kt)("inlineCode",{parentName:"a"},"879b640"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 removed doc comments breaking doc building ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e6a6756b0533e6dbfdb636f9a9e6485e30187cad"},(0,n.kt)("inlineCode",{parentName:"a"},"e6a6756"))),(0,n.kt)("li",{parentName:"ul"},"Popup updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce2d641d8f5d940cbb93deefdabbbfb85ad20ad7"},(0,n.kt)("inlineCode",{parentName:"a"},"ce2d641"))),(0,n.kt)("li",{parentName:"ul"},"Global variables for colors and borders added ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e5fbd619d163acae03d3d1bb26e082390f90c21"},(0,n.kt)("inlineCode",{parentName:"a"},"6e5fbd6"))),(0,n.kt)("li",{parentName:"ul"},"Tab stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5429cfb7751d6ad31231f9cc19d8bd7e8d24d0b8"},(0,n.kt)("inlineCode",{parentName:"a"},"5429cfb"))),(0,n.kt)("li",{parentName:"ul"},"Confirm stories added description & default value ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/85cda14b1338dc986bbab5aa7846b4ef3ec8d0bd"},(0,n.kt)("inlineCode",{parentName:"a"},"85cda14"))),(0,n.kt)("li",{parentName:"ul"},"Kebab case class names ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b41cd078ab5b349dc1d15769832913dcc8e6786f"},(0,n.kt)("inlineCode",{parentName:"a"},"b41cd07"))),(0,n.kt)("li",{parentName:"ul"},"Card and Comment class updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/389946540d3def2ea81c5c7c489e79dc24d4efb3"},(0,n.kt)("inlineCode",{parentName:"a"},"3899465"))),(0,n.kt)("li",{parentName:"ul"},"Accordion updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c97ba39cc7823cb72180a858c0b8a69cc9434927"},(0,n.kt)("inlineCode",{parentName:"a"},"c97ba39"))),(0,n.kt)("li",{parentName:"ul"},"item stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/772e41f3d90034827afcb118c38ab075d3bb7bb9"},(0,n.kt)("inlineCode",{parentName:"a"},"772e41f"))),(0,n.kt)("li",{parentName:"ul"},"Accordion class updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9cdde86f14a17701d66b3d2850980251094934b5"},(0,n.kt)("inlineCode",{parentName:"a"},"9cdde86"))),(0,n.kt)("li",{parentName:"ul"},"Comment stories added description & default value ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb6f25bc1452330f4155ccf6a64df491740ed8da"},(0,n.kt)("inlineCode",{parentName:"a"},"cb6f25b"))),(0,n.kt)("li",{parentName:"ul"},"Accrodion stories description & default value ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab8fb883c3cbfeea1807bf1aaf72f5d8424933f4"},(0,n.kt)("inlineCode",{parentName:"a"},"ab8fb88"))),(0,n.kt)("li",{parentName:"ul"},"Pullquotes updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5984213ba9397ddb4c1932394a5cc368336cf0a"},(0,n.kt)("inlineCode",{parentName:"a"},"c598421"))),(0,n.kt)("li",{parentName:"ul"},"Modal and confirm class updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0ae47e6f55645c0d6318123a5783648326c16852"},(0,n.kt)("inlineCode",{parentName:"a"},"0ae47e6"))),(0,n.kt)("li",{parentName:"ul"},"Tab and paggination updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/96796fffb189d2fa3628423280f3622dcacb449f"},(0,n.kt)("inlineCode",{parentName:"a"},"96796ff"))),(0,n.kt)("li",{parentName:"ul"},"Form Updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e986a9f0fc48ddcbc17488a8bbbaec82cee92232"},(0,n.kt)("inlineCode",{parentName:"a"},"e986a9f"))),(0,n.kt)("li",{parentName:"ul"},"Classes renamed ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/73c8c3d622bb3b9c0b5cf09e340de4df6606a14c"},(0,n.kt)("inlineCode",{parentName:"a"},"73c8c3d"))),(0,n.kt)("li",{parentName:"ul"},"List and item less updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce0de1708ca410c7839f3ce9b5b3cfbdb6979939"},(0,n.kt)("inlineCode",{parentName:"a"},"ce0de17"))),(0,n.kt)("li",{parentName:"ul"},"Confirm theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/36e20ce0dd6cd159e9f8e519d22ab696a622efd9"},(0,n.kt)("inlineCode",{parentName:"a"},"36e20ce"))),(0,n.kt)("li",{parentName:"ul"},"container overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4b3970bd28df5939fd438f7fc58b5d1dfbe33719"},(0,n.kt)("inlineCode",{parentName:"a"},"4b3970b"))),(0,n.kt)("li",{parentName:"ul"},"Docusaurus theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fc4a8c5534b6eb85192a687890846b3a4bed9401"},(0,n.kt)("inlineCode",{parentName:"a"},"fc4a8c5"))),(0,n.kt)("li",{parentName:"ul"},"refacto(headings): update mobile headings sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b2e9f838766ffd73095ecf7eccc71629c09d6bc0"},(0,n.kt)("inlineCode",{parentName:"a"},"b2e9f83"))),(0,n.kt)("li",{parentName:"ul"},"list stories and style changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c61db53b153f8f0e51eddd6a6c82dd38e6278c82"},(0,n.kt)("inlineCode",{parentName:"a"},"c61db53"))),(0,n.kt)("li",{parentName:"ul"},"Tab theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e31e6c3b1f0d6b4dbd63425a1846914d8dfa318d"},(0,n.kt)("inlineCode",{parentName:"a"},"e31e6c3"))),(0,n.kt)("li",{parentName:"ul"},"Message and pagination classes updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c230687c48953208461aa92376588246d49dadaa"},(0,n.kt)("inlineCode",{parentName:"a"},"c230687"))),(0,n.kt)("li",{parentName:"ul"},"Segment initial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5724fe639e0f2aecbb1c633fe7e69b742ddfaf5"},(0,n.kt)("inlineCode",{parentName:"a"},"d5724fe"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 removed doc comments from api_markdown breaking doc building ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/efeacba82875c6b36ee1ef76792e86ca03ee6f35"},(0,n.kt)("inlineCode",{parentName:"a"},"efeacba"))),(0,n.kt)("li",{parentName:"ul"},"Timeline and responsiveness updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1ed152476e33bc41fdf9d89a6bc80f83af538373"},(0,n.kt)("inlineCode",{parentName:"a"},"1ed1524"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142123 use swap font-display for performance reasons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/083738f0834982b5684d67d75c080dc50b1c74ef"},(0,n.kt)("inlineCode",{parentName:"a"},"083738f"))),(0,n.kt)("li",{parentName:"ul"},"Breadcrumb stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3d0d17ca4f04123d55fda64c516b8f867ee1bd13"},(0,n.kt)("inlineCode",{parentName:"a"},"3d0d17c"))),(0,n.kt)("li",{parentName:"ul"},"Table component stories minor change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0bf40835204f57ab300e2c325309fddf5279d76b"},(0,n.kt)("inlineCode",{parentName:"a"},"0bf4083"))),(0,n.kt)("li",{parentName:"ul"},"List stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a64b304a3aa025873643d592de03cbfbc0d02d81"},(0,n.kt)("inlineCode",{parentName:"a"},"a64b304"))),(0,n.kt)("li",{parentName:"ul"},"blockquote component minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cdf71a883d3778e1bde25ec0b4a2f3e370b98b09"},(0,n.kt)("inlineCode",{parentName:"a"},"cdf71a8"))),(0,n.kt)("li",{parentName:"ul"},"ckeckbox stories minor change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d6e508f73a18d7ce9fcdb779026113659ce8950"},(0,n.kt)("inlineCode",{parentName:"a"},"6d6e508"))),(0,n.kt)("li",{parentName:"ul"},"image component storybook changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91290ec540ae913fff76f0dbed6c310668a2eeb3"},(0,n.kt)("inlineCode",{parentName:"a"},"91290ec"))),(0,n.kt)("li",{parentName:"ul"},"button overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5b78dd7b794e2e0ece2d5af9eb171e73b77ee93"},(0,n.kt)("inlineCode",{parentName:"a"},"d5b78dd"))),(0,n.kt)("li",{parentName:"ul"},"accordion overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fdcf7d58eea3ce9e68c49649fb4a788c8a801b49"},(0,n.kt)("inlineCode",{parentName:"a"},"fdcf7d5"))),(0,n.kt)("li",{parentName:"ul"},"Accordion component and stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5079247b2d4b96b2a7252692ea538ca620cbec38"},(0,n.kt)("inlineCode",{parentName:"a"},"5079247"))),(0,n.kt)("li",{parentName:"ul"},"Card theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/23bbb9d1b5751bc4877d02ae1c676ea28463ec39"},(0,n.kt)("inlineCode",{parentName:"a"},"23bbb9d"))),(0,n.kt)("li",{parentName:"ul"},"statistic overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2b11cb5ffb9c907563b37a3db8fea3b1ef3584bc"},(0,n.kt)("inlineCode",{parentName:"a"},"2b11cb5"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 build docs only on pull request like we do with storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/473bb87be53610a654d35c9b399de14824301385"},(0,n.kt)("inlineCode",{parentName:"a"},"473bb87"))),(0,n.kt)("li",{parentName:"ul"},"Card component stories minor change | added link icon ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/deb423af02643697c3781212b177487174d341f7"},(0,n.kt)("inlineCode",{parentName:"a"},"deb423a"))),(0,n.kt)("li",{parentName:"ul"},"comment component stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f1c5e75f1af24c5b39a2e61cf07c773abfa96f66"},(0,n.kt)("inlineCode",{parentName:"a"},"f1c5e75"))),(0,n.kt)("li",{parentName:"ul"},"Accordion component bug fixed ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/815e91df66ed738f3d91cadc8df151782829f545"},(0,n.kt)("inlineCode",{parentName:"a"},"815e91d"))),(0,n.kt)("li",{parentName:"ul"},"Refs #145331 use iso date to release so that we see also time ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ceedf08937ab683c3e624cd3c909bf4a4788f883"},(0,n.kt)("inlineCode",{parentName:"a"},"ceedf08"))),(0,n.kt)("li",{parentName:"ul"},"correct connfig for doco ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93e13135e7f00fe32f4db2d720db4159970da021"},(0,n.kt)("inlineCode",{parentName:"a"},"93e1313"))),(0,n.kt)("li",{parentName:"ul"},"Item updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fae93d43a0ad56c4c9b8ce7bf436ad4f47421744"},(0,n.kt)("inlineCode",{parentName:"a"},"fae93d4"))),(0,n.kt)("li",{parentName:"ul"},"added layout grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2e6be557bcd3bef836338380ef68acade1c6b3e3"},(0,n.kt)("inlineCode",{parentName:"a"},"2e6be55"))),(0,n.kt)("li",{parentName:"ul"},"tab overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87aaf32cac5a0dee0da5833217de68da62327f5a"},(0,n.kt)("inlineCode",{parentName:"a"},"87aaf32"))),(0,n.kt)("li",{parentName:"ul"},"message overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6dccfca52d9673f394d81bd40da0af1b1504af0c"},(0,n.kt)("inlineCode",{parentName:"a"},"6dccfca"))),(0,n.kt)("li",{parentName:"ul"},"segment storie changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/296371fa71e43c2341bee8069f66d5cd1f7aa5f8"},(0,n.kt)("inlineCode",{parentName:"a"},"296371f"))),(0,n.kt)("li",{parentName:"ul"},"progress component stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/df10c2ed1289ae770008c71e1545c1ac0a223fc5"},(0,n.kt)("inlineCode",{parentName:"a"},"df10c2e"))),(0,n.kt)("li",{parentName:"ul"},"message comp storybook changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c86b40563f655fd5833dd05119f04d0e4256e75f"},(0,n.kt)("inlineCode",{parentName:"a"},"c86b405"))),(0,n.kt)("li",{parentName:"ul"},"Accordion cmponent stories | minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6de0d816287a9beeb9e8a5a890a2e14f3457a792"},(0,n.kt)("inlineCode",{parentName:"a"},"6de0d81"))),(0,n.kt)("li",{parentName:"ul"},"Refs #145331 add all changes when auto building docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce11cce4fe3dadc16a0da56c36bc5db480e4ff91"},(0,n.kt)("inlineCode",{parentName:"a"},"ce11cce"))),(0,n.kt)("li",{parentName:"ul"},"perf(timeline):removed semantic timeline package ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0aeb34a189eb53a5fc0fc45d716da515b7ed0301"},(0,n.kt)("inlineCode",{parentName:"a"},"0aeb34a"))),(0,n.kt)("li",{parentName:"ul"},"Tablet Breakpoint update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b229c2739e75a00e403dd07c31eb0dac7700baac"},(0,n.kt)("inlineCode",{parentName:"a"},"b229c27"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 set storyBook Url to eea.github.io ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b7fdecbb5e9e6e7db0b128ab7fd3a98dd1dbbc74"},(0,n.kt)("inlineCode",{parentName:"a"},"b7fdecb"))),(0,n.kt)("li",{parentName:"ul"},"bump package version to signaling of a major release ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c835f1d8193685153b8a9b54edbc2e8d3d095321"},(0,n.kt)("inlineCode",{parentName:"a"},"c835f1d"))),(0,n.kt)("li",{parentName:"ul"},"small commit to trigger deployment of storybook and docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/be46ea3b581cccc82369c9cf6d4e29b02822cd71"},(0,n.kt)("inlineCode",{parentName:"a"},"be46ea3"))),(0,n.kt)("li",{parentName:"ul"},"doc(accordion):revert previous change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3de02da26472c17389366d933f3293f658fd783a"},(0,n.kt)("inlineCode",{parentName:"a"},"3de02da"))),(0,n.kt)("li",{parentName:"ul"},"fix typo for caption @desktop line-height pixel number ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/167155234a897334a03a4f3eadc71701185bb924"},(0,n.kt)("inlineCode",{parentName:"a"},"1671552"))),(0,n.kt)("li",{parentName:"ul"},"Commented out integration tests. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/574cfec852f39bdd30430d2ca3a466aec417180d"},(0,n.kt)("inlineCode",{parentName:"a"},"574cfec"))),(0,n.kt)("li",{parentName:"ul"},"popup overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a9555e3128bd0c92691410c202d9b26dd5a5e0c5"},(0,n.kt)("inlineCode",{parentName:"a"},"a9555e3"))),(0,n.kt)("li",{parentName:"ul"},"container component stories fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/692cfce5e795ac718855349424e7e8eb9c7518ec"},(0,n.kt)("inlineCode",{parentName:"a"},"692cfce"))),(0,n.kt)("li",{parentName:"ul"},"Added timeline to package json fixed ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2e93e0478a1502cccb8d7f866cef337a2546b6c"},(0,n.kt)("inlineCode",{parentName:"a"},"f2e93e0"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142123 modified import of volto-eea-design-system icon.less: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7fab7d2871f153c2db139e3258da071ace7c09d"},(0,n.kt)("inlineCode",{parentName:"a"},"a7fab7d"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142123 reference icon.less from this package: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5616e6d730f1a8cbc04784230c35f3490fd0f921"},(0,n.kt)("inlineCode",{parentName:"a"},"5616e6d"))),(0,n.kt)("li",{parentName:"ul"},"Menu component stories change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2797716aa050a8f70d2b6f0f19b7d01e5cd035be"},(0,n.kt)("inlineCode",{parentName:"a"},"2797716"))),(0,n.kt)("li",{parentName:"ul"},"Image stories minor change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ddb9f1dd56fe42e17df1eac5bfd93ee6eaac3179"},(0,n.kt)("inlineCode",{parentName:"a"},"ddb9f1d"))),(0,n.kt)("li",{parentName:"ul"},"card component stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6ccba1ec4a388ced5a3671bf88d4f18aefc8cff3"},(0,n.kt)("inlineCode",{parentName:"a"},"6ccba1e"))),(0,n.kt)("li",{parentName:"ul"},"Added timeline to package json ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93031d6b6b3215e98074700554d7546f9f17f320"},(0,n.kt)("inlineCode",{parentName:"a"},"93031d6"))),(0,n.kt)("li",{parentName:"ul"},"table stories code clean up ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b7b2a56e37b847a3a3fc3d78f2099aba052826c3"},(0,n.kt)("inlineCode",{parentName:"a"},"b7b2a56"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 removed extra baseUrl from docusaurus config ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/79f36da6a38866765025cedd4f5eeb63e273785c"},(0,n.kt)("inlineCode",{parentName:"a"},"79f36da"))),(0,n.kt)("li",{parentName:"ul"},"Accordion stories minor change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ffe808aabc77c6cb324e8fe097a97bb82c291c29"},(0,n.kt)("inlineCode",{parentName:"a"},"ffe808a"))),(0,n.kt)("li",{parentName:"ul"},"Theme assets ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3f4bea4b53e393bc3d926b63683265c0b5df32c2"},(0,n.kt)("inlineCode",{parentName:"a"},"3f4bea4"))),(0,n.kt)("li",{parentName:"ul"},"Merged with develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/167ec9f7847162965ad045259989cc31abaad7f1"},(0,n.kt)("inlineCode",{parentName:"a"},"167ec9f")))),(0,n.kt)("h3",{id:"012-beta2---2022-01-03"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.2-beta.1...0.1.2-beta.2"},"0.1.2-beta.2")," - 2022-01-03"),(0,n.kt)("h3",{id:"012-beta1---2021-12-22"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.2-beta.0...0.1.2-beta.1"},"0.1.2-beta.1")," - 2021-12-22"),(0,n.kt)("h4",{id:"\ufe0f-others-56"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Tab component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4690a6fc1e739eeeeaa3dc90ee35e05a22875bf8"},(0,n.kt)("inlineCode",{parentName:"a"},"4690a6f"))),(0,n.kt)("li",{parentName:"ul"},"Comment component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a87cb6ad7959ce939c9decbfaa08026d4f00a10e"},(0,n.kt)("inlineCode",{parentName:"a"},"a87cb6a"))),(0,n.kt)("li",{parentName:"ul"},"Form stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fc30c900e5adf5a27930aa64a79a632e2b7d84ae"},(0,n.kt)("inlineCode",{parentName:"a"},"fc30c90"))),(0,n.kt)("li",{parentName:"ul"},"Grid component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/798fdd0d0fecb7980308c831fc9dc111a36c5d9f"},(0,n.kt)("inlineCode",{parentName:"a"},"798fdd0"))),(0,n.kt)("li",{parentName:"ul"},"Image component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/be93385f1ea29846512eb7762d69bb98f33be7f2"},(0,n.kt)("inlineCode",{parentName:"a"},"be93385"))),(0,n.kt)("li",{parentName:"ul"},"Menu component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb1f9a82843bb4e3011be9813ae692c94d986495"},(0,n.kt)("inlineCode",{parentName:"a"},"cb1f9a8"))),(0,n.kt)("li",{parentName:"ul"},"Dropdown component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/57cf954599292e6a2f8a1644c6b6d61706ecaf60"},(0,n.kt)("inlineCode",{parentName:"a"},"57cf954"))),(0,n.kt)("li",{parentName:"ul"},"Header component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/264fd463734c9587e3a820f4d14527af89274e12"},(0,n.kt)("inlineCode",{parentName:"a"},"264fd46"))),(0,n.kt)("li",{parentName:"ul"},"Confirn component minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9a00bc174fb676e626d6cc93fac225e8a6165790"},(0,n.kt)("inlineCode",{parentName:"a"},"9a00bc1"))),(0,n.kt)("li",{parentName:"ul"},"Item component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6994fa00c0f91550f64d7345503df7f562480d32"},(0,n.kt)("inlineCode",{parentName:"a"},"6994fa0"))),(0,n.kt)("li",{parentName:"ul"},"Label component stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5cc5843327deeaa5ae2cedc03e6f0c314be6586a"},(0,n.kt)("inlineCode",{parentName:"a"},"5cc5843"))),(0,n.kt)("li",{parentName:"ul"},"Container component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e6e40b3a505c2e2fe88a36d74ea4e9728e3491f6"},(0,n.kt)("inlineCode",{parentName:"a"},"e6e40b3"))),(0,n.kt)("li",{parentName:"ul"},"Message component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ba9d377fd5b04274f1d42065eafa2401a1b0bbca"},(0,n.kt)("inlineCode",{parentName:"a"},"ba9d377"))),(0,n.kt)("li",{parentName:"ul"},"Breadcrumb component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff7a176141c3a59d71df98a0ed0b23b8c08787df"},(0,n.kt)("inlineCode",{parentName:"a"},"ff7a176"))),(0,n.kt)("li",{parentName:"ul"},"Modal component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af1fe6a84d058fb937b555f4dc3e0efceebefa04"},(0,n.kt)("inlineCode",{parentName:"a"},"af1fe6a"))),(0,n.kt)("li",{parentName:"ul"},"List stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0016042856fa2275aed373eebd6f996b837619a2"},(0,n.kt)("inlineCode",{parentName:"a"},"0016042"))),(0,n.kt)("li",{parentName:"ul"},"Button component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/690dfd234bee017c1f1cda7077265e6cf4a870e9"},(0,n.kt)("inlineCode",{parentName:"a"},"690dfd2"))),(0,n.kt)("li",{parentName:"ul"},"Radio component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/84eac30ab5b523ed09c56b9cca41b058cee3e5d2"},(0,n.kt)("inlineCode",{parentName:"a"},"84eac30"))),(0,n.kt)("li",{parentName:"ul"},"Progress component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e6763571afe637375e8260babd9f2219f29b432a"},(0,n.kt)("inlineCode",{parentName:"a"},"e676357"))),(0,n.kt)("li",{parentName:"ul"},"Pagination component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b1af226b9bd42097dc3c74be3d9ca3fab29b80f6"},(0,n.kt)("inlineCode",{parentName:"a"},"b1af226"))),(0,n.kt)("li",{parentName:"ul"},"Segment component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f8c7efcb9b1de209ff146dd315ea9d43b16f4db"},(0,n.kt)("inlineCode",{parentName:"a"},"5f8c7ef"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 eslint fixes for component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/badcb9158cb4a847380f66592b22c78b5117626a"},(0,n.kt)("inlineCode",{parentName:"a"},"badcb91"))),(0,n.kt)("li",{parentName:"ul"},"Table component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7c104b8e89272b0e2505d165184093ee2680c6f3"},(0,n.kt)("inlineCode",{parentName:"a"},"7c104b8"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 more eslint fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a88c091723af0b87cfa85c83307d9510d2bae65c"},(0,n.kt)("inlineCode",{parentName:"a"},"a88c091"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 warn for broken links instead of throwing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bd5821cb78e030aaf69de73dc4d3bdadbe320195"},(0,n.kt)("inlineCode",{parentName:"a"},"bd5821c"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 merge changes from develop-itml to develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bca28b968bc88720aff9e29e1a94a597a7375666"},(0,n.kt)("inlineCode",{parentName:"a"},"bca28b9"))),(0,n.kt)("li",{parentName:"ul"},"made tabs dynamic for api tab ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea37ecb3ec9fe0ace41d7650d59e209929d8e95f"},(0,n.kt)("inlineCode",{parentName:"a"},"ea37ecb"))),(0,n.kt)("li",{parentName:"ul"},"Basic storybook/Docusaurus components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/840ab60f22f7b73d8742fa7452f198d486c6ec5b"},(0,n.kt)("inlineCode",{parentName:"a"},"840ab60"))),(0,n.kt)("li",{parentName:"ul"},"created List directory & srories based on semantic-ui List component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51f19016b27228a4d391c88b7eee27357d6fdc0d"},(0,n.kt)("inlineCode",{parentName:"a"},"51f1901"))),(0,n.kt)("li",{parentName:"ul"},"made tabs as component easy to call for other components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/07bae4900a4076f3429d3a26978b92aabf6b23ba"},(0,n.kt)("inlineCode",{parentName:"a"},"07bae49"))),(0,n.kt)("li",{parentName:"ul"},"Popup Component | minor fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ff9908a9374f93b9eaf4d8ee8de24acdf5be3ec"},(0,n.kt)("inlineCode",{parentName:"a"},"2ff9908"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Tab component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/95e3a733921b42fbe2540fa39548284abff9fdc0"},(0,n.kt)("inlineCode",{parentName:"a"},"95e3a73"))),(0,n.kt)("li",{parentName:"ul"},"created Table directory and stories based on semantic-ui Table component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e16115daa000962ccd8d141e3c11fd099446a388"},(0,n.kt)("inlineCode",{parentName:"a"},"e16115d"))),(0,n.kt)("li",{parentName:"ul"},"List component stories - minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/de113430b487297417c4697178f9ee37412a5389"},(0,n.kt)("inlineCode",{parentName:"a"},"de11343"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Comment component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a20f8842e8cb5c937dfc450030ac9afcf78ffe11"},(0,n.kt)("inlineCode",{parentName:"a"},"a20f884"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Grid component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/360d2a897f36e86c58b0ba6ac3d4fc852d10287d"},(0,n.kt)("inlineCode",{parentName:"a"},"360d2a8"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Image component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c1d2bcaf886c96052af45fcce98243ea56c98a5"},(0,n.kt)("inlineCode",{parentName:"a"},"3c1d2bc"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Menu component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/17e3b37ae447d8cc86228fa6c0c48a8fd8be9d03"},(0,n.kt)("inlineCode",{parentName:"a"},"17e3b37"))),(0,n.kt)("li",{parentName:"ul"},"Added untracked files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/75f0afda10114e70348e23d480f8f74528531674"},(0,n.kt)("inlineCode",{parentName:"a"},"75f0afd"))),(0,n.kt)("li",{parentName:"ul"},"created Dropdown stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d6a25381078e0b3cabdb9270d5224b3886ab6af9"},(0,n.kt)("inlineCode",{parentName:"a"},"d6a2538"))),(0,n.kt)("li",{parentName:"ul"},"created Header component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8339798f3e7d40f1b5a033bf4d7303c756c38d3"},(0,n.kt)("inlineCode",{parentName:"a"},"b833979"))),(0,n.kt)("li",{parentName:"ul"},"created stories for semantic-ui Confirm component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6fddccc6cf97f9929da52064ceb379f9fc427b42"},(0,n.kt)("inlineCode",{parentName:"a"},"6fddccc"))),(0,n.kt)("li",{parentName:"ul"},"created Statistic directory and stories with semantic-ui Statistic component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cd62498dbd75d5dff0adf849ff95d22bb9dc3b34"},(0,n.kt)("inlineCode",{parentName:"a"},"cd62498"))),(0,n.kt)("li",{parentName:"ul"},"created Item component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/90ec2be7eede347352e318c70615c30e7d422073"},(0,n.kt)("inlineCode",{parentName:"a"},"90ec2be"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Container component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/41934f6c5961ae0ac034a496ac169a191c7a5288"},(0,n.kt)("inlineCode",{parentName:"a"},"41934f6"))),(0,n.kt)("li",{parentName:"ul"},"created Label component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/71732f68b3153320710fbf7fb78dac460b8a084f"},(0,n.kt)("inlineCode",{parentName:"a"},"71732f6"))),(0,n.kt)("li",{parentName:"ul"},"created Message component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/adcbeabe6d4e8c1bbd7bd925c5f7fd3109fb407c"},(0,n.kt)("inlineCode",{parentName:"a"},"adcbeab"))),(0,n.kt)("li",{parentName:"ul"},"created Modal component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c25409d8901ad4eba66fa66a9f5c34b0353569b9"},(0,n.kt)("inlineCode",{parentName:"a"},"c25409d"))),(0,n.kt)("li",{parentName:"ul"},"Breadcrumb component stories and minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6264d92bcf6565e284ae9dc0c7a918652bb3959e"},(0,n.kt)("inlineCode",{parentName:"a"},"6264d92"))),(0,n.kt)("li",{parentName:"ul"},"created Pagination component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/57cdad35e21fdacf303e407abcb8988e97e87242"},(0,n.kt)("inlineCode",{parentName:"a"},"57cdad3"))),(0,n.kt)("li",{parentName:"ul"},"created Segment component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d8d01d70dab9359be46eb1629b3198f871091c7a"},(0,n.kt)("inlineCode",{parentName:"a"},"d8d01d7"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Radio component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1fd062d8a08cbe8507f5154201632ea96f765a2c"},(0,n.kt)("inlineCode",{parentName:"a"},"1fd062d"))),(0,n.kt)("li",{parentName:"ul"},"Menu stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6ba5e0d00a26ffd4625fb51f759af3764cef28de"},(0,n.kt)("inlineCode",{parentName:"a"},"6ba5e0d"))),(0,n.kt)("li",{parentName:"ul"},"Statistic component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c874a520c9959b7673b5c86f63e53e90f006f22"},(0,n.kt)("inlineCode",{parentName:"a"},"3c874a5"))),(0,n.kt)("li",{parentName:"ul"},"Card component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/290bda8dac4c9bb4476108c2e4969fa283f935e2"},(0,n.kt)("inlineCode",{parentName:"a"},"290bda8"))),(0,n.kt)("li",{parentName:"ul"},"Accrordion stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ee3f592fbfaead01506fb6a4dbfb36d06269564"},(0,n.kt)("inlineCode",{parentName:"a"},"2ee3f59"))),(0,n.kt)("li",{parentName:"ul"},"renamed Demo folder to Layout ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b9f6d05708310889dd018961bf5df9d5edd66e12"},(0,n.kt)("inlineCode",{parentName:"a"},"b9f6d05"))),(0,n.kt)("li",{parentName:"ul"},"remove test exclusion ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/94dba3eaa864e25d34bcc33ab19494f83ecabb25"},(0,n.kt)("inlineCode",{parentName:"a"},"94dba3e"))),(0,n.kt)("li",{parentName:"ul"},"Accordion component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e672d59f86a79e69f15b5212e2953aa7c5fea1d1"},(0,n.kt)("inlineCode",{parentName:"a"},"e672d59"))),(0,n.kt)("li",{parentName:"ul"},"fix docusaurus url (removed trailing /) ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b6c59fc7733b3df47dca797906e8f7e40a2f4ada"},(0,n.kt)("inlineCode",{parentName:"a"},"b6c59fc"))),(0,n.kt)("li",{parentName:"ul"},"Item component stories - minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f0a99025b9093ecf2eb25fd4b4e401b5b532a481"},(0,n.kt)("inlineCode",{parentName:"a"},"f0a9902"))),(0,n.kt)("li",{parentName:"ul"},"eea logos and assets ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b435b511d64b0ca99bfd310d66bdbfd5985390cc"},(0,n.kt)("inlineCode",{parentName:"a"},"b435b51")))),(0,n.kt)("h3",{id:"012-beta0---2021-12-18"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.1...0.1.2-beta.0"},"0.1.2-beta.0")," - 2021-12-18"),(0,n.kt)("h4",{id:"\ufe0f-others-57"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Refs #140454 added github action to build docusaurus to the develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/abe6a72882a41c9bca3649a3a6697619038e1677"},(0,n.kt)("inlineCode",{parentName:"a"},"abe6a72")))),(0,n.kt)("h3",{id:"011---2021-12-16"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.1-beta.0...0.1.1"},"0.1.1")," - 2021-12-16"),(0,n.kt)("h4",{id:"\ufe0f-others-58"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Refs #140454 changed the following to volto-eea-design-system: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6791d413cf1b9e434970564d9e59ed56b41907f0"},(0,n.kt)("inlineCode",{parentName:"a"},"6791d41"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 corrected base url for docusaurus website build ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/98271b3d39e2e21dfb4a0e31c334dc9e87811e4a"},(0,n.kt)("inlineCode",{parentName:"a"},"98271b3"))),(0,n.kt)("li",{parentName:"ul"},"Initial test changes on design system/docusaurus. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9dad612f385cc9fde712809f07dbe2b7111432cf"},(0,n.kt)("inlineCode",{parentName:"a"},"9dad612"))),(0,n.kt)("li",{parentName:"ul"},"After prettier check ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9ec40b4fe9d8a18e99f774e1a96a55b286a9733a"},(0,n.kt)("inlineCode",{parentName:"a"},"9ec40b4"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 restore SearchWidget.jsx content and removed dummy text from docs intro page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7505df89d93ac99156834a0c50a8e2b174c506f8"},(0,n.kt)("inlineCode",{parentName:"a"},"7505df8"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 added references to eea and the storybook in the docusaurus footer ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/42bbfcdd67888c3a7a55875d67acae9f7eb753bb"},(0,n.kt)("inlineCode",{parentName:"a"},"42bbfcd"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 lint fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9502f2bdbd45262b38926def5b7b55efabf4c32c"},(0,n.kt)("inlineCode",{parentName:"a"},"9502f2b"))),(0,n.kt)("li",{parentName:"ul"},"Add SonarQube badges ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4e0a4053ff2313fc3939caab80d874470aca062"},(0,n.kt)("inlineCode",{parentName:"a"},"a4e0a40"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 brought changes from develop-itml and upgrades docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/207c873532e38fb7909cdc32a02bf50e575b66fa"},(0,n.kt)("inlineCode",{parentName:"a"},"207c873"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 removed extra content not needed by the docusaurus site ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bc68ebe8259c9b8ed6bc73df8102885554bbc4ed"},(0,n.kt)("inlineCode",{parentName:"a"},"bc68ebe"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 updated docusaurus to latest beta ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d68ed8a1660910067a09550626a5f0e8fbbeeac9"},(0,n.kt)("inlineCode",{parentName:"a"},"d68ed8a")))),(0,n.kt)("h3",{id:"011-beta0---2021-12-09"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.0...0.1.1-beta.0"},"0.1.1-beta.0")," - 2021-12-09"),(0,n.kt)("h4",{id:"\ufe0f-others-59"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Refs #140454 moved header and footer templates from volto-ims-theme: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2d5e56045c0b7d917153d95492dd340668b6222"},(0,n.kt)("inlineCode",{parentName:"a"},"e2d5e56"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 added website folder with docusaurus site skeleton ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6fd15f4365a207308c068fe7eb197c0717e93954"},(0,n.kt)("inlineCode",{parentName:"a"},"6fd15f4"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142794 added commented implementation of the header and footer area: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/773ad8784f4a03e4b600406999d3a274a3984d39"},(0,n.kt)("inlineCode",{parentName:"a"},"773ad87"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 changed the following: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4137ec42270c28cbe036ba11e9475f00a7a5cba3"},(0,n.kt)("inlineCode",{parentName:"a"},"4137ec4"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 removed storybook from volto-eea-design-system: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a129ffb485c4c55f19129a209d920da8f8f52418"},(0,n.kt)("inlineCode",{parentName:"a"},"a129ffb"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 added storybook as a dev dependency: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e04ae4e0294fbb4a09f367d1693a158d5a1e8f2f"},(0,n.kt)("inlineCode",{parentName:"a"},"e04ae4e"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 updated Breadcrumbs.jsx to latest version: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/63fe5076781f3cf2ce5c79641a5f1b45f298b476"},(0,n.kt)("inlineCode",{parentName:"a"},"63fe507"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 we should use jsx and not mdx for storybook tests ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3668e667f857cb3052b9d63cf27ec629fe1c8394"},(0,n.kt)("inlineCode",{parentName:"a"},"3668e66"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 updated eea-design-system readme with extra info on package contents ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d2efc3ddae7b91efc82cf3bce8fb8e42d696a780"},(0,n.kt)("inlineCode",{parentName:"a"},"d2efc3d"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142010 - Optimize Volto-addons gitflow pipelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3af46d2b14fa0b1ef44736f25b0f9ac93b23d18d"},(0,n.kt)("inlineCode",{parentName:"a"},"3af46d2"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 Renamed folders of docusaurus website: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/15bca7462ba1b3c626e2bf76597f6436aa5e9092"},(0,n.kt)("inlineCode",{parentName:"a"},"15bca74"))),(0,n.kt)("li",{parentName:"ul"},"Add demo story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/757c409271eb70baa54bff8bd7c71ba29aaa4f66"},(0,n.kt)("inlineCode",{parentName:"a"},"757c409"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142794 enabled minimum css so that header looks decent ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/adbe2335bacf5ae09541c3679a246a5ec28376a4"},(0,n.kt)("inlineCode",{parentName:"a"},"adbe233"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 use the develop branch for the readme linking, it's always more up to date ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/23dcf166d5d633df2a63ab6fa5bac4be086e99a3"},(0,n.kt)("inlineCode",{parentName:"a"},"23dcf16"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 added missing themes reference for the eea theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e9ca244fcedf0be420748b3e5347e98309b5d996"},(0,n.kt)("inlineCode",{parentName:"a"},"e9ca244"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 modified assets imports after move to volto-eea-design-system ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2250cc7ba4155c328837cea09e2e7d94afc984f8"},(0,n.kt)("inlineCode",{parentName:"a"},"2250cc7"))),(0,n.kt)("li",{parentName:"ul"},"Load footer in segment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/80d38a96284e7fa9416ba327a43e29eb94bebe55"},(0,n.kt)("inlineCode",{parentName:"a"},"80d38a9"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 bump package version to 1.1.0 from 0.1.1 from develop branch: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1314039ceb45d405af6bc4698b489bbd6562c6ae"},(0,n.kt)("inlineCode",{parentName:"a"},"1314039"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142794 keep toolbalWidth variables in case design system runs in an older version of Volto ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1a8b30562e4167fe36b095877db0b215d10cb620"},(0,n.kt)("inlineCode",{parentName:"a"},"1a8b305"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142794 changed the following: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fbb80b1dbd0e3078777b8b3496d4b207ba25639a"},(0,n.kt)("inlineCode",{parentName:"a"},"fbb80b1"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 moved storybook scripts to the scripts section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/705c4c365d26152d917c62991f3f8202bc75287d"},(0,n.kt)("inlineCode",{parentName:"a"},"705c4c3"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 removed dangling comma ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/514f24d503a1f05497696c22c7fdbf7bc19d4e54"},(0,n.kt)("inlineCode",{parentName:"a"},"514f24d"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 changed link to the start of the docs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0e16fdfc77e119da4e1f15183d9cb95ef9b4b6cf"},(0,n.kt)("inlineCode",{parentName:"a"},"0e16fdf"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 add h1 to the list of elements that are max 800px and centered ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d3c30f409aa4cb43810839f8960589456cc1b2e"},(0,n.kt)("inlineCode",{parentName:"a"},"7d3c30f"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using ims-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8d657d056cde5163cfe90ac66bc973f55d82e5e9"},(0,n.kt)("inlineCode",{parentName:"a"},"8d657d0")))),(0,n.kt)("h3",{id:"010---2021-11-17"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.0.1...0.1.0"},"0.1.0")," - 2021-11-17"),(0,n.kt)("h4",{id:"\ufe0f-others-60"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Refs #140454 changed the following to volto-eea-design-system: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/40d2af693e35abdda3ededc7aabcb17e9a12e781"},(0,n.kt)("inlineCode",{parentName:"a"},"40d2af6"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 elements folder now has the variables and overrides from pastanaga theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/595b4e60816d3e24950ede3afea6e5f2aa2d7008"},(0,n.kt)("inlineCode",{parentName:"a"},"595b4e6"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 use font awesome from SemanticUI instead of Pastanaga: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4e273ca1b9a2be1f169d12258ac2335c3ebeefff"},(0,n.kt)("inlineCode",{parentName:"a"},"4e273ca"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 removed the components customizations from volto-eea-design-system: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c98c260b549cd1db48bfe556e994692a4855b95d"},(0,n.kt)("inlineCode",{parentName:"a"},"c98c260"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 added customizations folder from volto-ims-theme to volto-eea-design-system: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff4bf44bd648ff179bd7c82d0cf80da968b291b0"},(0,n.kt)("inlineCode",{parentName:"a"},"ff4bf44"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 modules folder now has the variables and overrides from pastanaga theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2841b62c87e3242423bca1117c7e1793baa7974"},(0,n.kt)("inlineCode",{parentName:"a"},"f2841b6"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 customized Comments.jsx to remove unnecessary container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b2e95d7ae875a7fc85366c76ef35ce215dd7b5ff"},(0,n.kt)("inlineCode",{parentName:"a"},"b2e95d7"))),(0,n.kt)("li",{parentName:"ul"},"Refs #132149 added initial commit for volto-eea-design-system: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2934b911d589fde126f70363a61cbdd2e3dcf7c9"},(0,n.kt)("inlineCode",{parentName:"a"},"2934b91"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 collection folder now has the variables and overrides from pastanaga: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/213d4968e4efa380a389fb7ab40ec3196f030050"},(0,n.kt)("inlineCode",{parentName:"a"},"213d496"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 removed search widget customization, we can use volto-ims-theme for that file ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b7e8b0c4821584a84f940d8f780057122321aae7"},(0,n.kt)("inlineCode",{parentName:"a"},"b7e8b0c"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 stylelint quick fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5595925f68871135a07d703c8ba009b0172c7ccd"},(0,n.kt)("inlineCode",{parentName:"a"},"5595925"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 changed the following: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/769f4f9eca0ed9fffe0c8c49c56bcb123a203f3c"},(0,n.kt)("inlineCode",{parentName:"a"},"769f4f9"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 changed the following to the eea theme: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/06d8d86a7be81fd3feadf034eacfa61eb69743ab"},(0,n.kt)("inlineCode",{parentName:"a"},"06d8d86"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 eea site.variables now use all values from pastanaga's site.variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6535c0f4e1968822a232b017a55babd280716d88"},(0,n.kt)("inlineCode",{parentName:"a"},"6535c0f"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 simplified container overrides: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51250038527f2e4b1135a2b5bfc6adccc3f77a06"},(0,n.kt)("inlineCode",{parentName:"a"},"5125003"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/177d0ce854a8a963faa2aae9481cbcc7e340e0fa"},(0,n.kt)("inlineCode",{parentName:"a"},"177d0ce"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 globals folder now has the variables and overrides from pastanaga theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/116a0c338bd92dd14636a649476b4f00951e3734"},(0,n.kt)("inlineCode",{parentName:"a"},"116a0c3"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 changed the following: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2e7f42381b63e65bafac3b754d49b65daca9663d"},(0,n.kt)("inlineCode",{parentName:"a"},"2e7f423"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 modules folder now has the variables and overrides from pastanaga theme: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/27a201d57024a7c621f4943b8eb59a3247b6c89d"},(0,n.kt)("inlineCode",{parentName:"a"},"27a201d"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 text elements are now with a max width and centered within content-area: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bbed7bbfb3e79a371b7bf7dea2206cdbdcdfe76d"},(0,n.kt)("inlineCode",{parentName:"a"},"bbed7bb"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 added main.variables entries from pastanaga to eea theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1cbbc550436c889d1b297ae9e6880167fce28fe1"},(0,n.kt)("inlineCode",{parentName:"a"},"1cbbc55"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 modified theme image imports for component customizations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef3238a4d615fa1b496e83f4e6c4c0d27f3d68f4"},(0,n.kt)("inlineCode",{parentName:"a"},"ef3238a"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 modified container width to be auto: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2e8d2e0ebb3e4a55b7cf1b66c3dff222ef12aa18"},(0,n.kt)("inlineCode",{parentName:"a"},"2e8d2e0"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 modified several icons to use the \\f values instead of \\e: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c397145bc1e76916ae72a94faaf33f49bd9ca5a6"},(0,n.kt)("inlineCode",{parentName:"a"},"c397145"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 changed the following: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c518edacad9b8bed61ea50d318d8d43bf7f483a0"},(0,n.kt)("inlineCode",{parentName:"a"},"c518eda"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 ensure that main column isn't enlarged over the sidebar section on edit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f7a28684223494933bcd8ec1f6d86b1b3da17e10"},(0,n.kt)("inlineCode",{parentName:"a"},"f7a2868"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 changed the following to the form styling: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/eb92e054fe330730c1a44737cbbdf33985216cbb"},(0,n.kt)("inlineCode",{parentName:"a"},"eb92e05"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 modified path of theme folder location for image selection ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f8cca4594857ab4afd654f35e4ec97e4d3e04be4"},(0,n.kt)("inlineCode",{parentName:"a"},"f8cca45"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 added missing mobileScrollbarWidth variables introduced as part of the mobile navigation pull request ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/444c78d998199e703d7ecde01b3feb0d44c60977"},(0,n.kt)("inlineCode",{parentName:"a"},"444c78d"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 reference font and image path from ~volto-themes instead of relative ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ec93ed3a496673eed7d7ec07a2f76aaa6a29d7ca"},(0,n.kt)("inlineCode",{parentName:"a"},"ec93ed3"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 ensure that Volto doesn't crash when site module is set to eea: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51f2f27f5ba947b49b4b69fcf9b8890676cd1d7e"},(0,n.kt)("inlineCode",{parentName:"a"},"51f2f27"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 added tiny size prop to Breadcrumbs in order to have it as 12px ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/56a12e200c27c3a1826fa3088c34f762ed74dff7"},(0,n.kt)("inlineCode",{parentName:"a"},"56a12e2")))),(0,n.kt)("h3",{id:"001---2021-11-17"},"0.0.1 - 2021-11-17"),(0,n.kt)("h4",{id:"\ufe0f-others-61"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Initial commit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b0bdd445c95a20d088e00469f81028c16482640a"},(0,n.kt)("inlineCode",{parentName:"a"},"b0bdd44")))))}s.isMDXComponent=!0}}]); \ No newline at end of file diff --git a/docs/assets/js/runtime~main.ee0bc8a7.js b/docs/assets/js/runtime~main.4df05331.js similarity index 72% rename from docs/assets/js/runtime~main.ee0bc8a7.js rename to docs/assets/js/runtime~main.4df05331.js index edd454502f..a4faeb8594 100644 --- a/docs/assets/js/runtime~main.ee0bc8a7.js +++ b/docs/assets/js/runtime~main.4df05331.js @@ -1 +1 @@ -(()=>{"use strict";var e,d,a,f,c,t={},b={};function r(e){var d=b[e];if(void 0!==d)return d.exports;var a=b[e]={id:e,loaded:!1,exports:{}};return t[e].call(a.exports,a,a.exports,r),a.loaded=!0,a.exports}r.m=t,r.c=b,e=[],r.O=(d,a,f,c)=>{if(!a){var t=1/0;for(i=0;i=c)&&Object.keys(r.O).every((e=>r.O[e](a[o])))?a.splice(o--,1):(b=!1,c0&&e[i-1][2]>c;i--)e[i]=e[i-1];e[i]=[a,f,c]},r.n=e=>{var d=e&&e.__esModule?()=>e.default:()=>e;return r.d(d,{a:d}),d},a=Object.getPrototypeOf?e=>Object.getPrototypeOf(e):e=>e.__proto__,r.t=function(e,f){if(1&f&&(e=this(e)),8&f)return e;if("object"==typeof e&&e){if(4&f&&e.__esModule)return e;if(16&f&&"function"==typeof e.then)return e}var c=Object.create(null);r.r(c);var t={};d=d||[null,a({}),a([]),a(a)];for(var b=2&f&&e;"object"==typeof b&&!~d.indexOf(b);b=a(b))Object.getOwnPropertyNames(b).forEach((d=>t[d]=()=>e[d]));return t.default=()=>e,r.d(c,t),c},r.d=(e,d)=>{for(var a in d)r.o(d,a)&&!r.o(e,a)&&Object.defineProperty(e,a,{enumerable:!0,get:d[a]})},r.f={},r.e=e=>Promise.all(Object.keys(r.f).reduce(((d,a)=>(r.f[a](e,d),d)),[])),r.u=e=>"assets/js/"+({53:"935f2afb",123:"3fc91083",296:"a64f9232",432:"323ff172",554:"8fd6869d",585:"c74413f4",596:"ca221c65",698:"56bbe726",918:"1e6d2369",952:"4442ee2e",1129:"30e35848",1327:"9c235974",1356:"7ca1ae16",1500:"3508f21e",1704:"6c6ad4cd",2099:"f4f5dc73",2163:"0bef62f9",2263:"e9a55e4f",2282:"9a6dc4ea",2305:"686ae6d4",2359:"d61699b0",2438:"d9dbb717",2453:"a5822498",2463:"42e0342b",2543:"86298114",2582:"63791757",2672:"bdd5fc8f",2678:"9b6f4efd",2853:"06df40a2",2873:"398224d0",3018:"2d344845",3166:"f9ee06b1",3293:"b78356b1",3305:"1f485700",3412:"792760cc",3436:"860b2a9d",3608:"9e4087bc",3661:"39f50359",3808:"fe8a233d",3822:"77dd8181",3902:"a8b15fb1",3934:"aa38dcb9",4009:"8050142d",4195:"c4f5d8e4",4419:"f601d3af",4521:"1a10606c",5294:"76fe1567",5386:"54e4468f",5435:"24202412",5437:"a186f965",5886:"7e4403b7",6061:"046f8cb9",6196:"c3faf33a",6245:"41d5c757",6304:"1c178b4f",6515:"f8c0402f",6570:"23d147e2",6671:"8effdd7e",6966:"c7d85666",7098:"d727d0d1",7426:"671d942a",7492:"b0f56568",7578:"3aee128f",7918:"17896441",8027:"2d39cd59",8150:"85201c01",8362:"0b225811",8518:"627750f7",8635:"0a8b14be",9003:"072ed0e5",9053:"75066279",9110:"7810a5ba",9173:"6d890e16",9184:"b3c62368",9213:"6dda7ddb",9221:"797402ac",9340:"d6e43592",9456:"aed7c9bd",9514:"1be78505",9744:"224603d4",9817:"14eb3368"}[e]||e)+"."+{53:"af8c3126",123:"1fc5f8a1",296:"a3fe1499",432:"8e77499f",554:"9012c388",585:"88e2ed16",596:"c934dcb0",698:"02ecf8a0",918:"74ff9fcc",952:"51f99e28",1129:"07372634",1327:"37d0ed39",1356:"02804555",1500:"929876a1",1704:"6511d866",2099:"2a653be0",2163:"096fabb0",2263:"3980a0d4",2282:"f1d8d943",2305:"600335dc",2359:"e041662b",2438:"e1067b46",2453:"7f593cf2",2463:"6d5f3ad4",2543:"52def2ee",2582:"b5f68b7e",2672:"25d9da0a",2678:"b0273f83",2853:"23875b5f",2873:"b722ee28",3018:"1383b54d",3166:"136c147f",3293:"655674df",3305:"1237957a",3412:"08f0edc4",3436:"cba9bde3",3608:"6e912446",3661:"593bba5c",3808:"a7fce259",3822:"dbb98ec9",3902:"73af5b7e",3934:"a4f5c736",4009:"1e9f60f9",4195:"684c270e",4419:"4a574066",4521:"92eeae11",4608:"46768f56",5294:"86227180",5386:"f96775e6",5435:"67d0c84c",5437:"e2c081c8",5886:"f539fb56",6061:"24207895",6196:"aa89e306",6245:"8f7541fb",6304:"6abca704",6515:"6a8c6376",6570:"dd09dcfc",6671:"78438c01",6966:"3b2a23c4",7098:"451ca2c2",7426:"361333e3",7492:"01af3d6a",7578:"465c5637",7918:"6d7b2f82",8027:"c3e1229f",8150:"e3153012",8362:"69f9ed96",8518:"6f79a50b",8635:"9eacda40",9003:"b1cc3b3e",9053:"90332cf0",9110:"cbdafccc",9173:"3ab4f8fe",9184:"9ae02f15",9213:"3a3aae20",9221:"261f0d22",9340:"c521528a",9456:"3112a237",9514:"a4a3adad",9744:"bcc78ee9",9817:"d6f1bb65"}[e]+".js",r.miniCssF=e=>"assets/css/styles.6aa5c4cf.css",r.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),r.o=(e,d)=>Object.prototype.hasOwnProperty.call(e,d),f={},c="website:",r.l=(e,d,a,t)=>{if(f[e])f[e].push(d);else{var b,o;if(void 0!==a)for(var n=document.getElementsByTagName("script"),i=0;i{b.onerror=b.onload=null,clearTimeout(u);var c=f[e];if(delete f[e],b.parentNode&&b.parentNode.removeChild(b),c&&c.forEach((e=>e(a))),d)return d(a)},u=setTimeout(l.bind(null,void 0,{type:"timeout",target:b}),12e4);b.onerror=l.bind(null,b.onerror),b.onload=l.bind(null,b.onload),o&&document.head.appendChild(b)}},r.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r.p="/volto-eea-design-system/",r.gca=function(e){return e={17896441:"7918",24202412:"5435",63791757:"2582",75066279:"9053",86298114:"2543","935f2afb":"53","3fc91083":"123",a64f9232:"296","323ff172":"432","8fd6869d":"554",c74413f4:"585",ca221c65:"596","56bbe726":"698","1e6d2369":"918","4442ee2e":"952","30e35848":"1129","9c235974":"1327","7ca1ae16":"1356","3508f21e":"1500","6c6ad4cd":"1704",f4f5dc73:"2099","0bef62f9":"2163",e9a55e4f:"2263","9a6dc4ea":"2282","686ae6d4":"2305",d61699b0:"2359",d9dbb717:"2438",a5822498:"2453","42e0342b":"2463",bdd5fc8f:"2672","9b6f4efd":"2678","06df40a2":"2853","398224d0":"2873","2d344845":"3018",f9ee06b1:"3166",b78356b1:"3293","1f485700":"3305","792760cc":"3412","860b2a9d":"3436","9e4087bc":"3608","39f50359":"3661",fe8a233d:"3808","77dd8181":"3822",a8b15fb1:"3902",aa38dcb9:"3934","8050142d":"4009",c4f5d8e4:"4195",f601d3af:"4419","1a10606c":"4521","76fe1567":"5294","54e4468f":"5386",a186f965:"5437","7e4403b7":"5886","046f8cb9":"6061",c3faf33a:"6196","41d5c757":"6245","1c178b4f":"6304",f8c0402f:"6515","23d147e2":"6570","8effdd7e":"6671",c7d85666:"6966",d727d0d1:"7098","671d942a":"7426",b0f56568:"7492","3aee128f":"7578","2d39cd59":"8027","85201c01":"8150","0b225811":"8362","627750f7":"8518","0a8b14be":"8635","072ed0e5":"9003","7810a5ba":"9110","6d890e16":"9173",b3c62368:"9184","6dda7ddb":"9213","797402ac":"9221",d6e43592:"9340",aed7c9bd:"9456","1be78505":"9514","224603d4":"9744","14eb3368":"9817"}[e]||e,r.p+r.u(e)},(()=>{var e={1303:0,532:0};r.f.j=(d,a)=>{var f=r.o(e,d)?e[d]:void 0;if(0!==f)if(f)a.push(f[2]);else if(/^(1303|532)$/.test(d))e[d]=0;else{var c=new Promise(((a,c)=>f=e[d]=[a,c]));a.push(f[2]=c);var t=r.p+r.u(d),b=new Error;r.l(t,(a=>{if(r.o(e,d)&&(0!==(f=e[d])&&(e[d]=void 0),f)){var c=a&&("load"===a.type?"missing":a.type),t=a&&a.target&&a.target.src;b.message="Loading chunk "+d+" failed.\n("+c+": "+t+")",b.name="ChunkLoadError",b.type=c,b.request=t,f[1](b)}}),"chunk-"+d,d)}},r.O.j=d=>0===e[d];var d=(d,a)=>{var f,c,t=a[0],b=a[1],o=a[2],n=0;if(t.some((d=>0!==e[d]))){for(f in b)r.o(b,f)&&(r.m[f]=b[f]);if(o)var i=o(r)}for(d&&d(a);n{"use strict";var e,d,a,f,c,b={},t={};function r(e){var d=t[e];if(void 0!==d)return d.exports;var a=t[e]={id:e,loaded:!1,exports:{}};return b[e].call(a.exports,a,a.exports,r),a.loaded=!0,a.exports}r.m=b,r.c=t,e=[],r.O=(d,a,f,c)=>{if(!a){var b=1/0;for(i=0;i=c)&&Object.keys(r.O).every((e=>r.O[e](a[o])))?a.splice(o--,1):(t=!1,c0&&e[i-1][2]>c;i--)e[i]=e[i-1];e[i]=[a,f,c]},r.n=e=>{var d=e&&e.__esModule?()=>e.default:()=>e;return r.d(d,{a:d}),d},a=Object.getPrototypeOf?e=>Object.getPrototypeOf(e):e=>e.__proto__,r.t=function(e,f){if(1&f&&(e=this(e)),8&f)return e;if("object"==typeof e&&e){if(4&f&&e.__esModule)return e;if(16&f&&"function"==typeof e.then)return e}var c=Object.create(null);r.r(c);var b={};d=d||[null,a({}),a([]),a(a)];for(var t=2&f&&e;"object"==typeof t&&!~d.indexOf(t);t=a(t))Object.getOwnPropertyNames(t).forEach((d=>b[d]=()=>e[d]));return b.default=()=>e,r.d(c,b),c},r.d=(e,d)=>{for(var a in d)r.o(d,a)&&!r.o(e,a)&&Object.defineProperty(e,a,{enumerable:!0,get:d[a]})},r.f={},r.e=e=>Promise.all(Object.keys(r.f).reduce(((d,a)=>(r.f[a](e,d),d)),[])),r.u=e=>"assets/js/"+({53:"935f2afb",123:"3fc91083",296:"a64f9232",432:"323ff172",554:"8fd6869d",585:"c74413f4",596:"ca221c65",698:"56bbe726",918:"1e6d2369",952:"4442ee2e",1129:"30e35848",1327:"9c235974",1356:"7ca1ae16",1500:"3508f21e",1704:"6c6ad4cd",2099:"f4f5dc73",2163:"0bef62f9",2263:"e9a55e4f",2282:"9a6dc4ea",2305:"686ae6d4",2359:"d61699b0",2438:"d9dbb717",2453:"a5822498",2463:"42e0342b",2543:"86298114",2582:"63791757",2672:"bdd5fc8f",2678:"9b6f4efd",2853:"06df40a2",2873:"398224d0",3018:"2d344845",3166:"f9ee06b1",3293:"b78356b1",3305:"1f485700",3412:"792760cc",3436:"860b2a9d",3608:"9e4087bc",3661:"39f50359",3808:"fe8a233d",3822:"77dd8181",3902:"a8b15fb1",3934:"aa38dcb9",4009:"8050142d",4195:"c4f5d8e4",4419:"f601d3af",4521:"1a10606c",5294:"76fe1567",5386:"54e4468f",5435:"24202412",5437:"a186f965",5886:"7e4403b7",6061:"046f8cb9",6196:"c3faf33a",6245:"41d5c757",6304:"1c178b4f",6515:"f8c0402f",6570:"23d147e2",6671:"8effdd7e",6966:"c7d85666",7098:"d727d0d1",7426:"671d942a",7492:"b0f56568",7578:"3aee128f",7918:"17896441",8027:"2d39cd59",8150:"85201c01",8362:"0b225811",8518:"627750f7",8635:"0a8b14be",9003:"072ed0e5",9053:"75066279",9110:"7810a5ba",9173:"6d890e16",9184:"b3c62368",9213:"6dda7ddb",9221:"797402ac",9340:"d6e43592",9456:"aed7c9bd",9514:"1be78505",9744:"224603d4",9817:"14eb3368"}[e]||e)+"."+{53:"af8c3126",123:"1fc5f8a1",296:"a3fe1499",432:"8e77499f",554:"9012c388",585:"88e2ed16",596:"c934dcb0",698:"02ecf8a0",918:"74ff9fcc",952:"51f99e28",1129:"07372634",1327:"37d0ed39",1356:"02804555",1500:"929876a1",1704:"6511d866",2099:"2a653be0",2163:"096fabb0",2263:"3980a0d4",2282:"f1d8d943",2305:"600335dc",2359:"e041662b",2438:"e1067b46",2453:"7f593cf2",2463:"6d5f3ad4",2543:"52def2ee",2582:"b5f68b7e",2672:"25d9da0a",2678:"b0273f83",2853:"23875b5f",2873:"b722ee28",3018:"1383b54d",3166:"136c147f",3293:"655674df",3305:"1237957a",3412:"08f0edc4",3436:"cba9bde3",3608:"6e912446",3661:"593bba5c",3808:"a7fce259",3822:"dbb98ec9",3902:"73af5b7e",3934:"a4f5c736",4009:"1e9f60f9",4195:"684c270e",4419:"4a574066",4521:"216f709e",4608:"46768f56",5294:"86227180",5386:"f96775e6",5435:"67d0c84c",5437:"e2c081c8",5886:"f539fb56",6061:"24207895",6196:"aa89e306",6245:"0d9cade4",6304:"6abca704",6515:"6a8c6376",6570:"dd09dcfc",6671:"78438c01",6966:"3b2a23c4",7098:"451ca2c2",7426:"361333e3",7492:"01af3d6a",7578:"465c5637",7918:"6d7b2f82",8027:"c3e1229f",8150:"e3153012",8362:"69f9ed96",8518:"6f79a50b",8635:"9eacda40",9003:"b1cc3b3e",9053:"90332cf0",9110:"cbdafccc",9173:"3ab4f8fe",9184:"9ae02f15",9213:"3a3aae20",9221:"261f0d22",9340:"c521528a",9456:"3112a237",9514:"a4a3adad",9744:"bcc78ee9",9817:"d6f1bb65"}[e]+".js",r.miniCssF=e=>"assets/css/styles.6aa5c4cf.css",r.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),r.o=(e,d)=>Object.prototype.hasOwnProperty.call(e,d),f={},c="website:",r.l=(e,d,a,b)=>{if(f[e])f[e].push(d);else{var t,o;if(void 0!==a)for(var n=document.getElementsByTagName("script"),i=0;i{t.onerror=t.onload=null,clearTimeout(u);var c=f[e];if(delete f[e],t.parentNode&&t.parentNode.removeChild(t),c&&c.forEach((e=>e(a))),d)return d(a)},u=setTimeout(l.bind(null,void 0,{type:"timeout",target:t}),12e4);t.onerror=l.bind(null,t.onerror),t.onload=l.bind(null,t.onload),o&&document.head.appendChild(t)}},r.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r.p="/volto-eea-design-system/",r.gca=function(e){return e={17896441:"7918",24202412:"5435",63791757:"2582",75066279:"9053",86298114:"2543","935f2afb":"53","3fc91083":"123",a64f9232:"296","323ff172":"432","8fd6869d":"554",c74413f4:"585",ca221c65:"596","56bbe726":"698","1e6d2369":"918","4442ee2e":"952","30e35848":"1129","9c235974":"1327","7ca1ae16":"1356","3508f21e":"1500","6c6ad4cd":"1704",f4f5dc73:"2099","0bef62f9":"2163",e9a55e4f:"2263","9a6dc4ea":"2282","686ae6d4":"2305",d61699b0:"2359",d9dbb717:"2438",a5822498:"2453","42e0342b":"2463",bdd5fc8f:"2672","9b6f4efd":"2678","06df40a2":"2853","398224d0":"2873","2d344845":"3018",f9ee06b1:"3166",b78356b1:"3293","1f485700":"3305","792760cc":"3412","860b2a9d":"3436","9e4087bc":"3608","39f50359":"3661",fe8a233d:"3808","77dd8181":"3822",a8b15fb1:"3902",aa38dcb9:"3934","8050142d":"4009",c4f5d8e4:"4195",f601d3af:"4419","1a10606c":"4521","76fe1567":"5294","54e4468f":"5386",a186f965:"5437","7e4403b7":"5886","046f8cb9":"6061",c3faf33a:"6196","41d5c757":"6245","1c178b4f":"6304",f8c0402f:"6515","23d147e2":"6570","8effdd7e":"6671",c7d85666:"6966",d727d0d1:"7098","671d942a":"7426",b0f56568:"7492","3aee128f":"7578","2d39cd59":"8027","85201c01":"8150","0b225811":"8362","627750f7":"8518","0a8b14be":"8635","072ed0e5":"9003","7810a5ba":"9110","6d890e16":"9173",b3c62368:"9184","6dda7ddb":"9213","797402ac":"9221",d6e43592:"9340",aed7c9bd:"9456","1be78505":"9514","224603d4":"9744","14eb3368":"9817"}[e]||e,r.p+r.u(e)},(()=>{var e={1303:0,532:0};r.f.j=(d,a)=>{var f=r.o(e,d)?e[d]:void 0;if(0!==f)if(f)a.push(f[2]);else if(/^(1303|532)$/.test(d))e[d]=0;else{var c=new Promise(((a,c)=>f=e[d]=[a,c]));a.push(f[2]=c);var b=r.p+r.u(d),t=new Error;r.l(b,(a=>{if(r.o(e,d)&&(0!==(f=e[d])&&(e[d]=void 0),f)){var c=a&&("load"===a.type?"missing":a.type),b=a&&a.target&&a.target.src;t.message="Loading chunk "+d+" failed.\n("+c+": "+b+")",t.name="ChunkLoadError",t.type=c,t.request=b,f[1](t)}}),"chunk-"+d,d)}},r.O.j=d=>0===e[d];var d=(d,a)=>{var f,c,b=a[0],t=a[1],o=a[2],n=0;if(b.some((d=>0!==e[d]))){for(f in t)r.o(t,f)&&(r.m[f]=t[f]);if(o)var i=o(r)}for(d&&d(a);n Archive | EEA Design System - +

Archive

Archive

- + \ No newline at end of file diff --git a/docs/docs/category/components/index.html b/docs/docs/category/components/index.html index e4f48da5ff..5cad09faf4 100644 --- a/docs/docs/category/components/index.html +++ b/docs/docs/category/components/index.html @@ -5,13 +5,13 @@ Components | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/category/forms/index.html b/docs/docs/category/forms/index.html index 28af6b5eb8..4dcaed92f5 100644 --- a/docs/docs/category/forms/index.html +++ b/docs/docs/category/forms/index.html @@ -5,13 +5,13 @@ Forms | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/category/guidelines/index.html b/docs/docs/category/guidelines/index.html index aff1e774bb..1e94f4a3ff 100644 --- a/docs/docs/category/guidelines/index.html +++ b/docs/docs/category/guidelines/index.html @@ -5,13 +5,13 @@ Guidelines | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/category/maps-and-charts/index.html b/docs/docs/category/maps-and-charts/index.html index 2d97c355ed..47f785001d 100644 --- a/docs/docs/category/maps-and-charts/index.html +++ b/docs/docs/category/maps-and-charts/index.html @@ -5,13 +5,13 @@ Maps and charts | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/category/publications/index.html b/docs/docs/category/publications/index.html index a5f6c3acbb..944d539011 100644 --- a/docs/docs/category/publications/index.html +++ b/docs/docs/category/publications/index.html @@ -5,13 +5,13 @@ Publications | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/category/quotes/index.html b/docs/docs/category/quotes/index.html index 3652fac368..47900082a7 100644 --- a/docs/docs/category/quotes/index.html +++ b/docs/docs/category/quotes/index.html @@ -5,13 +5,13 @@ Quotes | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/category/resources/index.html b/docs/docs/category/resources/index.html index 45242b1612..6df792cc28 100644 --- a/docs/docs/category/resources/index.html +++ b/docs/docs/category/resources/index.html @@ -5,13 +5,13 @@ Resources | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/category/search/index.html b/docs/docs/category/search/index.html index d8ff79d6a0..0ca8dfe947 100644 --- a/docs/docs/category/search/index.html +++ b/docs/docs/category/search/index.html @@ -5,13 +5,13 @@ Search | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/category/templates/index.html b/docs/docs/category/templates/index.html index 9db2afae3e..41f7899b7a 100644 --- a/docs/docs/category/templates/index.html +++ b/docs/docs/category/templates/index.html @@ -5,13 +5,13 @@ Templates | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/category/utilities/index.html b/docs/docs/category/utilities/index.html index d349f69fb9..b4fc35d5f7 100644 --- a/docs/docs/category/utilities/index.html +++ b/docs/docs/category/utilities/index.html @@ -5,13 +5,13 @@ Utilities | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/category/visuals/index.html b/docs/docs/category/visuals/index.html index 2a2dfec097..71b15756aa 100644 --- a/docs/docs/category/visuals/index.html +++ b/docs/docs/category/visuals/index.html @@ -5,13 +5,13 @@ Visuals | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/category/web-content/index.html b/docs/docs/category/web-content/index.html index 320d4b5c04..6860d83d5d 100644 --- a/docs/docs/category/web-content/index.html +++ b/docs/docs/category/web-content/index.html @@ -5,13 +5,13 @@ Web content | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/category/web-development/index.html b/docs/docs/category/web-development/index.html index 52f2f43b85..f0c0eae185 100644 --- a/docs/docs/category/web-development/index.html +++ b/docs/docs/category/web-development/index.html @@ -5,13 +5,13 @@ Web development | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/dataguide/intro/index.html b/docs/docs/dataguide/intro/index.html index 16c5d39640..d696e51dab 100644 --- a/docs/docs/dataguide/intro/index.html +++ b/docs/docs/dataguide/intro/index.html @@ -5,13 +5,13 @@ Dos and don'ts | EEA Design System - +
- + \ No newline at end of file diff --git a/docs/docs/intro/index.html b/docs/docs/intro/index.html index be58378955..0e20f811f4 100644 --- a/docs/docs/intro/index.html +++ b/docs/docs/intro/index.html @@ -5,13 +5,13 @@ Introduction | EEA Design System - +

Introduction

We created the EEA Design System (EEA-DS) to standardize the visual language and user experience of the EEA’s online applications.

This also allows us to be more effecient when creating online applications instead of reinventing the wheel over and over.

EEA-DS was built by a multi-disciplinary team of developers, designers, UX researchers, writers and data scientists. Combining the expertise of all of these roles allowed us to create a design system with a wide range of elements and for various target users (Web Designer, Web Writer/Content manager, Web Developer and Data scientist).

What is a design system?

A design system is a catalogue of everything that makes up your digital product including user interface elements, writing style, guiding principles, coding standards, visual design, etc. using reusable components for easy development.

All library elements are accompanied by:

  • documentation explaining what a component is and how it should be used
  • a visual demonstration
  • HTML/CSS code for implementation
- + \ No newline at end of file diff --git a/docs/docs/pubguide/design/index.html b/docs/docs/pubguide/design/index.html index 7ed89add22..974a875103 100644 --- a/docs/docs/pubguide/design/index.html +++ b/docs/docs/pubguide/design/index.html @@ -5,14 +5,14 @@ Design guidelines | EEA Design System - +
- + \ No newline at end of file diff --git a/docs/docs/pubguide/writing/index.html b/docs/docs/pubguide/writing/index.html index 7caf71ee01..32f120897d 100644 --- a/docs/docs/pubguide/writing/index.html +++ b/docs/docs/pubguide/writing/index.html @@ -5,13 +5,13 @@ Writing guidelines | EEA Design System - +
- + \ No newline at end of file diff --git a/docs/docs/webcontent/intro/index.html b/docs/docs/webcontent/intro/index.html index 4902eab88b..14e86ef82f 100644 --- a/docs/docs/webcontent/intro/index.html +++ b/docs/docs/webcontent/intro/index.html @@ -5,13 +5,13 @@ Guidelines | EEA Design System - +
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Accordion/index.html b/docs/docs/webdev/Components/Accordion/index.html index cb904ae149..fa41f23fdb 100644 --- a/docs/docs/webdev/Components/Accordion/index.html +++ b/docs/docs/webdev/Components/Accordion/index.html @@ -5,13 +5,13 @@ Accordion | EEA Design System - +

Accordion

The accordion component is used to generate vertically stacked content in a page. It is intended to save vertical space by hiding content, reducing scrolling.

Accordions contain labels with the relevant information. Users can click on the accordion to read additional information. For this reason, accordion labels (collapsed state) should be as descriptive and concise as possible.

Do's

  • use labels that are representative of the content inside the (initially hidden) container
  • order logically (such as 1st quarter, 2nd quarter, 3rd quarter, 4th quarter)
  • make sure this component is required in order to shorten the page

Don'ts

  • don't use unless users will benefit from hidden information
  • don't use actionable items (i.e. forms, accordions, buttons, CTAs, etc.) or pictures in the content container as they will have decreased visibility
  • don't hide important information that should be present at all times
  • don't use long labels, ideally keep it to one line, maximum 2

When to use

  • when you need to present multiple sections of content in a simple way on one page, without overwhelming the user (especially applicable to mobile)
  • when it’s not critical for every user to read every section of content, adding value
  • when you can make extensive and complex content easier to digest through descriptive labels

When not to use

  • don't use when pages are short (reading time: under 3 minutes)
  • don't use when information would be better structured horizontally (does not need comparison between sections) - use tabs instead
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Breadcrumb/index.html b/docs/docs/webdev/Components/Breadcrumb/index.html index fcc38acba1..1fea4fa603 100644 --- a/docs/docs/webdev/Components/Breadcrumb/index.html +++ b/docs/docs/webdev/Components/Breadcrumb/index.html @@ -5,13 +5,13 @@ Breadcrumb | EEA Design System - +

Breadcrumb

The Breadcrumb informs the users on their current location relative to the homepage of the website and allows them to navigate to higher levels. It is a series links except the last item in the group, which is the current page.

Do's

  • the first element of the breadcrumb must always be labelled "Home" and must link to the homepage of the actual site where the current user page is located

Don'ts

  • use long labels which creates visual clutter
  • breadcrumb links cannot exceed 220px in length else they will be truncated

When to use

  • if your website's navigational structure is a tree of more than 2 levels

When not to use

  • if your website's navigational structure has less than 3 levels of depth
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Buttons/index.html b/docs/docs/webdev/Components/Buttons/index.html index e040d0d201..a35ffbaa81 100644 --- a/docs/docs/webdev/Components/Buttons/index.html +++ b/docs/docs/webdev/Components/Buttons/index.html @@ -5,13 +5,13 @@ Buttons | EEA Design System - +

Buttons

Buttons trigger an action in a web page. There are 4 variants of the button component with different levels of importance and usages.

Primary Button

Use for basic and successful actions. They direct the user’s attention to the primary action the application is suggesting that the user take.

Do's

  • make sure the button‘s microcopy represents the action such as “Submit“ or “Register“
  • use an icon only when it is necessary
  • use to perform a new action, task, move to next step

Don'ts

  • don't assign an action that should be assigned for a CTA (Call To Action) or other variations of buttons
  • don't use an icon when it is not relevant or necessary to the action

When not to use

  • don't use for navigation
  • don't use for downloads
  • don't use when the primary action is negative - use secondary button
  • don't use when the action can't be undone, such as delete

Secondary Button

Use for medium-emphasis actions. They contain actions that are important but aren’t the primary action. They are used to indicate a secondary action that compliments a primary action or to reduce visual noise when there are many actions of equal importance on the page.

Do's

  • ensure the button performs an action, such as "Cancel", "Delete," "Remove" or "Replace" as the secondary action next to the primary button
  • use an icon only when it is necessary

Don'ts

  • don't use for primary positive actions – such as Submit, Send, Accept, Apply or navigation
  • don't use on its own
  • don't use for navigation
  • don't use an icon when it is not relevant or necessary to the action

Inverted Button

When to use

  • use inverted and inverted-green only on white or light color background
  • use inverted-dark only on dark background

Use for low-emphasis actions or for buttons that could have a long length text. It can be grouped with other buttons or placed independently.

When to use

  • use with low emphasis in a button group
  • use on pages/cards when the main focus should be the content and not the button
  • when there is a single action intended

When not to use

  • do not use for navigation purpose
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Callout/index.html b/docs/docs/webdev/Components/Callout/index.html index d01e13084f..44932f6efc 100644 --- a/docs/docs/webdev/Components/Callout/index.html +++ b/docs/docs/webdev/Components/Callout/index.html @@ -5,13 +5,13 @@ Callout | EEA Design System - +

Callout

The callout component is used to capture users' attention of an excerpt, testimonial, or a quote cited from the article or other sources. The design style makes the quoted section more distinguishable than the rest of the content in the web page.

Do's

  • always name the source of the quoted content
  • limit the quote to no longer than 80 characters
  • use the image variant to add a portrait of the quoted person

Don'ts

  • do not apply more than two callout components on the webpage
  • for the image variant, do not use a photoshopped composition of images

When to use

  • quoting something important

When not to use

  • to emphasize text style
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Cards/index.html b/docs/docs/webdev/Components/Cards/index.html index 0a6cf9fc2c..2ccdfccb66 100644 --- a/docs/docs/webdev/Components/Cards/index.html +++ b/docs/docs/webdev/Components/Cards/index.html @@ -5,14 +5,14 @@ Card | EEA Design System - +

Card

Cards component is used as an entry point to more detailed information. The component can include various sets of elements to serve users' specific needs.

Do's

  • use cards to emphasize on contents
  • only display the most relevant information on each card illustration: card with a thumbnail, title, description
  • keep the amount of links on the cards as low as possible

Don'ts

  • overuse cards
  • limit the amount of cards to small groups of items
  • limit to 3-4 cards within a row
  • display too many links on a cards, the main and ideally only action on card should remain to navigate to the content it represent

When to use

  • browsing for information (as opposed to searching)

  • grouping heterogeneous types of content

  • allowing users to scan through content in small portions

    • to display structured content
    • to make information discoverable
  • the user goals that the card-based web design best responds to:

    • scrolling through
    • scanning through
    • browsing through

When not to use

  • searching for information (as opposed to browsing)
  • on small screen display avoid using too many cards as they force users to scroll down and rely on their short-term memory. This creates a cognitive overload, a negative user experience
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Comment/index.html b/docs/docs/webdev/Components/Comment/index.html index e8980378aa..76a3f81737 100644 --- a/docs/docs/webdev/Components/Comment/index.html +++ b/docs/docs/webdev/Components/Comment/index.html @@ -5,13 +5,13 @@ Comment | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Confirm/index.html b/docs/docs/webdev/Components/Confirm/index.html index d7176a14eb..404cd55f47 100644 --- a/docs/docs/webdev/Components/Confirm/index.html +++ b/docs/docs/webdev/Components/Confirm/index.html @@ -5,13 +5,13 @@ Confirm | EEA Design System - +

Confirm

A confirmation dialog asks users whether they are sure that they want to proceed with an action.

Do’s

  • use a confirmation dialog before actions that cannot be undone
  • be specific and inform users about the consequence of their actions.

Don’ts

  • do not use confirmation dialogs for routine actions
  • avoid giving confirmation dialogs a default Yes answer
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Content/index.html b/docs/docs/webdev/Components/Content/index.html index 3ce4c3e840..e7ce48f8c3 100644 --- a/docs/docs/webdev/Components/Content/index.html +++ b/docs/docs/webdev/Components/Content/index.html @@ -5,7 +5,7 @@ Content | EEA Design System - + @@ -18,7 +18,7 @@ Don’t indent paragraphs, use whitespace before. While most longform print design uses indented lines to distinguish paragraphs, it’s more conventional on the web to use unindented paragraphs separated by whitespace. Use at least 1em of whitespace between paragraphs. To properly separate paragraphs from one another, use the equivalent of one blank line of whitespace between them. Using more than 1.5em disturbs the flow of the text, and using less than 0.5em doesn’t provide enough separation. Headings should be closer to the text they introduce than the text that preceeds them. It’s important that headings are more visually connected to the text for which they’re the heading than the text of the previous section to reduce ambiguity and cognitive dissonance. Use at least 1.5 times the amount of whitespace above the heading as below it.

- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Divider/index.html b/docs/docs/webdev/Components/Divider/index.html index ecb51a3e7f..391b281032 100644 --- a/docs/docs/webdev/Components/Divider/index.html +++ b/docs/docs/webdev/Components/Divider/index.html @@ -5,13 +5,13 @@ Divider | EEA Design System - +

Divider

Dividers are used throughout all types of design to establish content hierarchy and separate themes. Deceptively simple, they are one of the main contributors to our visual style.

Kinds of Visual Dividers

Talking about dividers, we can analyze them in two aspects: their appearance and their functions. Starting with the visual part, there are 4 basic and broadly used methods of dividing content in our user interfaces:

  • Lines

  • Color contrast

  • Negative space

  • Images

Lines have belonged to the top methods of separating the pieces of content since time immemorial, both in print production and in digital interfaces. They are recognized easily in this role, so users won’t need to think twice.

Don’ts

Too many lines can overload the screen with visual noise and create unnecessary visual tension. Use lines only if the content cannot be effectively divided in another way.

When to use

  • when whitespace is not enough of a separator

  • in lists, separate items to show they are individual and unrelated items when each item is long and otherwise difficult to scan

  • in layouts, when background color changes (e.g. from Gray 100 to White)

When not to use

  • for surrounding an item, use a border instead

  • for grouping content, use a card or table

Color Contrast is another effective type of visual divider. Contrast is one of the key factors influencing scannability and visual hierarchy of the page or screen. With all that, color contrast can effective separate different option, items, or interactive zones, that means work as a visual divider.

Negative space (aka white space) means empty space on the screen around and often inside the elements. Yet, empty does not mean passive or wasted: as well as any other element of the screen, it works supporting a positive user experience. Negative space is one of the most popular kinds of visual dividers, especially in interfaces built on the idea of minimalism and simplicity. Negative space turns into an effective and elegant visual divider that also let the interface to breathe and avoid clutter.

Images of all kinds present one more effective visual divider. In this role, they are especially popular in the interfaces with lots of text content pages. Photos, illustrations, 3D graphics, as well as animated images, help to balance the text content, increase scannability and readability levels, effectively divide the visual blocks, as well as add fun and emotional appeal.

- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Forms/Checkbox/index.html b/docs/docs/webdev/Components/Forms/Checkbox/index.html index f7977261f6..fcebe13ca4 100644 --- a/docs/docs/webdev/Components/Forms/Checkbox/index.html +++ b/docs/docs/webdev/Components/Forms/Checkbox/index.html @@ -5,13 +5,13 @@ Checkbox | EEA Design System - +

Checkbox

The checkbox is a form input for users to choose one or more options from the list of selections.

Dos

  • always make sure each checkbox has a short, distinct and indicative checkbox label
  • use checkbox labels as click targets (clicking the label will select that option)
  • arrange them vertically, in a single column layout
  • group related fields
  • order logically
  • indicate whether the input group is optional or mandatory
  • make use of helper text if there are further directions or hints the users may need in completing their goal
  • write specific and clear error messages, so users understand how to properly address and recover from the error

Don'ts

  • don't add them without grouping first, in a logical order
  • don't restrict the number of checkboxes that can be ticked at any time
  • don't nest elements under the checkbox - keep all the options on the same level

When to use

  • use in any situation where the input information is known to the organisation
  • when users need to select options or toggle settings
  • in forms with multiple non-exclusive options
  • in search filters
  • to turn a setting option on or off

When not to use

  • do not use it when you have mutually exclusive items
  • do not use it if the checkbox selection will perform an action
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Forms/Dropdown/index.html b/docs/docs/webdev/Components/Forms/Dropdown/index.html index fbaf94bb74..7b3205a992 100644 --- a/docs/docs/webdev/Components/Forms/Dropdown/index.html +++ b/docs/docs/webdev/Components/Forms/Dropdown/index.html @@ -5,13 +5,13 @@ Dropdown | EEA Design System - +

Dropdown

Default single select

The select component, is a widget which displays a list of selectable items from which the user can select one values.

Do's

  • write short, distinct and indicative headings for the items listed inside the dropdown
  • use dropdown select menu labels as click targets (clicking the label will trigger the action)
  • indicate whether the input is optional
  • make use of helper text if there are further directions or hints the users may need in completing their goal (example: you must be a current resident of this country)
  • write specific and clear error message texts, so users understand how to address the error

Don'ts

  • don't use as navigation
  • don't use it for multi-select

When to use

  • when there are more than 5 options to select from

When not to use

  • when you want users to read all options
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Forms/Radio/index.html b/docs/docs/webdev/Components/Forms/Radio/index.html index ac1be98bb8..a66a5d8bea 100644 --- a/docs/docs/webdev/Components/Forms/Radio/index.html +++ b/docs/docs/webdev/Components/Forms/Radio/index.html @@ -5,13 +5,13 @@ Radio | EEA Design System - +

Radio

Radio buttons provides a selection with two or more options. Only one option can be selected.

Do's

  • use labels as click targets (clicking the label will select that option)
  • group related fields
  • order logically (e.g. ages 18-25, ages 25-35, ages, 35-50, over 65)
  • indicate whether the input group is optional - if it's mandatory, have a neutral option (e.g. other, n/a) selected by default
  • make use of helper text if there are further directions or hints the users may need in completing their goal
  • write specific and clear error messages, so users understand how to address the error

Don'ts

  • don't add them without grouping first
  • don't nest elements under radio buttons - keep all the options on the same level

When to use

  • when you have under 10 items
  • when users need to select options or toggle settings, for example
  • in forms with multiple non-exclusive options (e.g. search filters)
  • only one selection can be made

When not to use

  • avoid when more than one option can be selected - use checkboxes instead
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Forms/TextArea/index.html b/docs/docs/webdev/Components/Forms/TextArea/index.html index 6136c372ba..80479952bb 100644 --- a/docs/docs/webdev/Components/Forms/TextArea/index.html +++ b/docs/docs/webdev/Components/Forms/TextArea/index.html @@ -5,13 +5,13 @@ Text Area | EEA Design System - +

Text Area

A text area is an input field allowing users to enter multiple lines of text. Use in any situation where the user needs to input a large, or unknown, amount of data.

Do's

  • allow copy/paste for ease of use
  • match the text field to the expected size of the input - make it wide enough for the user to see their entire entry
  • write specific and clear error message texts, so users understand how to address the error

Don'ts

  • don't use placeholder text in the text field - this may not be read by screen reading software, leading to accessibility issues
  • don't have a mandatory minimum input of characters
  • don't restrict the use of uncommon or special characters
  • don't disable copy and paste functions
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Forms/TextInput/index.html b/docs/docs/webdev/Components/Forms/TextInput/index.html index 15ee5f9046..34c1d5f26a 100644 --- a/docs/docs/webdev/Components/Forms/TextInput/index.html +++ b/docs/docs/webdev/Components/Forms/TextInput/index.html @@ -5,13 +5,13 @@ Text Input | EEA Design System - +

Text Input

A text field is an input that can be used on a form, sign-in or any place where data is requested from the user.

Do's

  • minimise the number of input fields - only ask for necessary information
  • arrange them vertically for better layout and readability
  • group related fields together
  • order input fields logically, matching real-world task succession and interactions
  • always label each text area with a short, descriptive title, placed above the text area
  • indicate whether the input field is optional or mandatory
  • make use of helper text if there are further directions or hints the users may need in completing their goal (example: Must be at least 6 characters and contain a number and a special character)
  • allow copy/paste for ease of use
  • if a character counter is necessary, place it below the text area
  • match the text field area to the expected size of the input - make it wide enough for the user to see their entire entry
  • write specific and descriptive error message for easy comprehension

Don'ts

  • don't use placeholder text in the text area - this may not be read by screen reading software, leading to accessibility issues
  • don't have a mandatory minimum input of characters
  • don't restrict the use of uncommon or special characters
  • don't disable copyand paste functions

When to use

  • use in any situation where the user needs to input limited amount of data (name, email address, age, etc)

When not to use

  • do not use where the user needs to input a large, or unknown amount of data
  • do not use when the user must respond with specific options which are known to the organisation
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Headings/index.html b/docs/docs/webdev/Components/Headings/index.html index 8f53f107ba..1b3f3de6de 100644 --- a/docs/docs/webdev/Components/Headings/index.html +++ b/docs/docs/webdev/Components/Headings/index.html @@ -5,13 +5,13 @@ Headings | EEA Design System - +

Headings

Effective headings are recognizable immediately, and help readers understand the flow of content on the page.

How to Use

  • employ visual contrast to make headings stand out. Headings need to appear separate from the rest of the content on the page
  • size matters: Headings should be big
  • use headings as titles. If we’re labeling a section of a website, the heading serves as the title for the section
  • be concise. Keep headings short. In some cases, it’s even okay to drop articles like “the” and “a,” as they can be assumed
  • not all headings should be bold
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Image/index.html b/docs/docs/webdev/Components/Image/index.html index f40b691b64..87b3d539d9 100644 --- a/docs/docs/webdev/Components/Image/index.html +++ b/docs/docs/webdev/Components/Image/index.html @@ -5,13 +5,13 @@ Image | EEA Design System - +

Image

Images must have natural snapshots that show unique situations.

Do’s

  • use stylistic tools such as light, perspective, color, focus and composition to tell stories that are authentic and believable.
  • the content of the photographs should be positive, optimistic, natural, realistic, warm, and welcoming. Framing should be playful and feel spontaneous
  • use image copyrights to be respectful of the author’s ownership rights

Don’ts

  • do not use images that are too dark or do not have enough contrast
  • do not use overlaying gradients
  • images that are too static or that appear too symmetrical should not be used
  • do not use images that are over exposed or over saturated
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Inpage-Navigation/index.html b/docs/docs/webdev/Components/Inpage-Navigation/index.html index b65cd40260..b90f5d99c4 100644 --- a/docs/docs/webdev/Components/Inpage-Navigation/index.html +++ b/docs/docs/webdev/Components/Inpage-Navigation/index.html @@ -5,13 +5,13 @@ Inpage Navigation | EEA Design System - +

Inpage Navigation

A Back to Top button, which is a shortcut that allows users to quickly navigate to the top of the page.

When users get at the bottom of a really long page, they often will need to get back to the top to:

  • see the navigation menu and choose a new destination
  • access filtering and sorting features
  • enter or edit a query in the search box

When the page is really long (for example, because of infinite scrolling), it becomes too tedious to scroll back up through screens and screens of content. Hence the role of the Back to Top button.

Do's

  • use a 'Back to Top button' for pages that are longer than 4 screens. For relatively short page lengths, 'Back to Top links' are overkill
  • place a persistent 'Back to Top button' in the lower right side of the page. This is where people expect to see it. This position is out of the way, but noticeable. When the button is placed in a different place on the screen, it is often ignored
  • label the button 'Back to Top'. This phrase is most descriptive. An icon only (.e.g., an arrow pointing up) can be ambiguous and, depending on the graphical realization, may not convey the right meaning
  • keep the button small so it doesn’t cover important page elements. But, if you are on a touch screen, make it big enough so people can tap it
  • make the button stand out visually on the page rather than blend in. When Back to Top blends too much with the background content, users are less likely to notice and use it
  • consider delaying the appearance of a 'Back to Top' option until after users scroll a few pages and indicate that they want to scroll up (e.g., move the scroll bar up, flick up on the page). Thus, the button appears only when it is most likely needed, without covering up important parts of the screen the rest of the time
  • make the button stationary. Once it appears, don’t allow it to move. Moving elements cause major distractions, since the eye is automatically attracted to any movement on the screen
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Item/index.html b/docs/docs/webdev/Components/Item/index.html index fad04c4583..1b3b359d9b 100644 --- a/docs/docs/webdev/Components/Item/index.html +++ b/docs/docs/webdev/Components/Item/index.html @@ -5,13 +5,13 @@ Item | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Labeled-icons/index.html b/docs/docs/webdev/Components/Labeled-icons/index.html index ad7bbdbd9b..588a36ddc3 100644 --- a/docs/docs/webdev/Components/Labeled-icons/index.html +++ b/docs/docs/webdev/Components/Labeled-icons/index.html @@ -5,13 +5,13 @@ Labeled icons | EEA Design System - +

Labeled icons

The labeled icons are used as a visual represenation of every available action below data products.

Do's

  • keep the labels as short as possible
  • always choose icons that the users can easily identify

Don'ts

  • don't use more than 5-6 labeled icons at once
  • dont use less than two in one row
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Labels/index.html b/docs/docs/webdev/Components/Labels/index.html index 627df7e9ea..2fdefbd155 100644 --- a/docs/docs/webdev/Components/Labels/index.html +++ b/docs/docs/webdev/Components/Labels/index.html @@ -5,13 +5,13 @@ Label | EEA Design System - +

Label

Labels are used to indicate the different states for items in a list. They bring supplementary meaning by adding an indicative state (label) that is visually distinct (background colour) from other elements.

Do's

  • keep the message consistent on a single list of items and express meaning based on the content in which it is being used (e.g. "canceled" for events)
  • keep the label succinct (1-2 words)

Don'ts

  • don't use 2 labels at the same time (in one list)

When to use

  • when you have items in a list with multiple states (e.g. featured item & generic list item; canceled, rescheduled & upcoming event)

When not to use

  • when all items in a list have the same state (e.g. search list items)
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Lists/index.html b/docs/docs/webdev/Components/Lists/index.html index c7c400689c..30b7eb87a6 100644 --- a/docs/docs/webdev/Components/Lists/index.html +++ b/docs/docs/webdev/Components/Lists/index.html @@ -5,13 +5,13 @@ List | EEA Design System - +

List

Used to present chunks of information in a concise and scannable way, lists help to organise content related to a single topic, grouping together a set of items or text options.

Ordered lists

Ordered lists display a set of items in a sequential and logical order, indicated by a number in front of the label. Common use cases include counting, ranking or sequencing, but can be used in everything that has a hierarchy. Different list styles can be applied to list items, like numbers, roman numerals or letters, which can be used interchangeably when nesting (e.g. nested item 1 & 2 under item 3).

Do's

  • make sure the items are placed in hierarchical order so that the relation, rank or order is obvious to the user
  • indicate the external links, if linking to any pages external to the EEA
  • for easy to read purpose, try to use labels that are relatively consistent in characters & width

Don'ts

  • do not nest lists deeper than 3 levels

When to use

  • use ordered lists when you need to display items in a specific order or to indicate hierarchy

When not to use

  • do not use it for navigation purpose
  • do not use it when all items have equal value or importance
  • do not use when you have one or more overarching categories that require descriptions

Unordered list

Unordered lists are used to group related content without any particular order, with bullet points placed in front of the labels. Common use cases are much broader than ordered lists. They are used for a set of items that can be arranged in any specific order. Different bullet list styles are available to unordered list items, such as disc, circle, square or hyphen when nesting (eg. 2 sub-points under point 2).

Do's

  • indicate the external links, if linking to any pages external to the EEA
  • for easy to read purpose, try to use labels that are relatively consistent in characters & width

Don'ts

  • do not nest lists deeper than 3 levels in order to avoid clutters

When to use

  • use it when you need to display items that do not have a specific order or hierarchy

When not to use

  • do not use it for navigation purpose
  • do not use it when items can be ranked, counted or sequenced
  • do not use when you have one or more overarching categories or terms require descriptions

Description lists

Description lists are used to display and organise content with a descriptions. Common use cases include glossary, or a list of speakers with their biographies.

Do's

  • keep label short and meaningful
  • order logically according to their hierarchy, significance and degree of relatedness
  • avoid using long sentences
  • try to use labels that are relatively consistent in characters & width
  • add a meaningful description or explanation of each term

Don'ts

  • do not use an active voice
  • do not nest description lists

When to use

  • use a description list when the terms in the list require a specific description or explanation
  • on content pages to add additional information(such as latest update on the content of a page) or link to pages of interest

When not to use

  • do not use it for navigation purpose
  • do not use it when items can be ranked, counted or sequenced
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Loader/index.html b/docs/docs/webdev/Components/Loader/index.html index 1f6f6e6227..bea05dc4a7 100644 --- a/docs/docs/webdev/Components/Loader/index.html +++ b/docs/docs/webdev/Components/Loader/index.html @@ -5,13 +5,13 @@ Loader | EEA Design System - +

Loader

Loaders can be used to indicate progress on long actions/waits which meet some or preferably all of these characteristics:

  • the action/wait is blocking user flow. That is, it's difficult or impossible for the user to proceed with the flow she is on without waiting.

    • e.g. The user asked a question and the answer is being retrieved from a server

    • e.g. The user scrolled to the bottom of page feed and new content is being loaded

  • the action is long enough that a user may feel anxious if there is no indication of progress. For short actions or waits having a short-lived throbber is not a great idea because it can confuse users

  • it's difficult or impossible to indicate exact progress. If it's possible to indicate progress (eg percentage complete) then progress bars or widgets are more appropriately communicative and less likely to frustrate users

Dont ‘s

Do not use it for actions that take less than 1 sec.

- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Logo/index.html b/docs/docs/webdev/Components/Logo/index.html index 1ca1acb497..748dc86586 100644 --- a/docs/docs/webdev/Components/Logo/index.html +++ b/docs/docs/webdev/Components/Logo/index.html @@ -5,13 +5,13 @@ Logo | EEA Design System - +

Logo

To ensure consistency, it is important that the EEA logo appears only in the colours specified in these guidelines.

When applying the logo to images ensure that it is against a light, uncluttered background.

To ensure logo's integrity and visibility, it must always be kept clear of competing text, images or graphic elements. It must be surrounded by a minimum clear space οf 16px as indicated below.

EEA LOGO - Dark version

The only time the white version of the EEA logo appears on is against the dark background of the footer.

- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Messages/index.html b/docs/docs/webdev/Components/Messages/index.html index f7dc5994ff..629f495e93 100644 --- a/docs/docs/webdev/Components/Messages/index.html +++ b/docs/docs/webdev/Components/Messages/index.html @@ -5,13 +5,13 @@ Messages | EEA Design System - +

Messages

Messages component contains important information to alert users to take a certain actions.

Do's

  • keep the message brief and clear
  • use consistent messages for the same information/success/warning/error throughout your site

Don'ts

  • overuse messages - users may ignore them and they can get in the way of a user completing their task
  • write messages that are neutral. For example, instead of The postal code you entered is invalid, the message should say Please enter a valid postal code

When to use

  • when the information is essential to convey to the users in order to go to the next step
  • success message: the user has performed an action which was successfully completed
  • warning message: the user needs to know about the potential dangers of completing their task (for example: "you are about replace/erase your data")
  • error message: the user tried to perform an action that failed because of a problem (for example: a file could not be uploaded because it wasn't the correct type of file)

When not to use

  • don't use to show non critical information
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Modal/index.html b/docs/docs/webdev/Components/Modal/index.html index 5f51c94aa8..7373469f5a 100644 --- a/docs/docs/webdev/Components/Modal/index.html +++ b/docs/docs/webdev/Components/Modal/index.html @@ -5,13 +5,13 @@ Modal | EEA Design System - +

Modal

Modals appear on top of the main content and require user interaction. This dialog disables the main content until the user explicitly interacts with the modal dialog.

Do’s

  • use modal dialogs for important warnings, to prevent or correct critical errors
  • use modal dialogs to request the user to enter information critical to continuing the current process
  • modal dialogs can be used to fragment a complex workflow into simpler steps

Don’ts

  • do not use modal dialogs for nonessential information that is not related to the current user flow
  • avoid modal dialogs that interrupt high-stake processes
  • avoid modal dialogues for complex decision making that require additional sources of information unavailable in the modal
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Pagination/index.html b/docs/docs/webdev/Components/Pagination/index.html index 7b27175297..c9768682b0 100644 --- a/docs/docs/webdev/Components/Pagination/index.html +++ b/docs/docs/webdev/Components/Pagination/index.html @@ -5,13 +5,13 @@ Pagination | EEA Design System - +

Pagination

Pagination component is the control to navigate through multiple pages.

Do's

  • place the pagination below the list of items

Don'ts

  • don't replace this component with an "infinite scrolling" feature

When to use

  • to show long lists otherwise redundant scrolling in one page

When not to use

  • don't use to break unrelated content on different pages
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Popup/index.html b/docs/docs/webdev/Components/Popup/index.html index 55eb1ab496..2bc0bf7fbf 100644 --- a/docs/docs/webdev/Components/Popup/index.html +++ b/docs/docs/webdev/Components/Popup/index.html @@ -5,14 +5,14 @@ Popup | EEA Design System - +

Popup

A popup (also known as an overlay) is a window or dialog that appears on top of the page content. A popup can be classified according to two dimensions:

  • whether the user can interact with the rest of the page, and it is called 'Modal' when the content on the page is disabled until the user explicitly interacts with the overlay or 'Nonmodal' when users can still interact with the background content (for example, by selecting links or tapping buttons) while the overlay remains visible
  • whether the background is dimmed the popup is called a 'Lightbox'

Do’s

  • present the content in the popup when it’s contextually relevant to the user
  • if you must present critical information (e.g., important warnings to prevent or correct errors) in a popup, be sure to show only one at a time

Don’ts

  • do not show a popup before the main page content loads
  • do not display a popup right after the user logs in
  • you should not ask for feedback before people have done anything meaningful
  • do not show multiple popups one after another
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Progress/index.html b/docs/docs/webdev/Components/Progress/index.html index ff2ff28554..4f7ed36efa 100644 --- a/docs/docs/webdev/Components/Progress/index.html +++ b/docs/docs/webdev/Components/Progress/index.html @@ -5,13 +5,13 @@ Progress | EEA Design System - +

Progress

Progress indicators tell users that more time is needed to process the last user action (for instance, to load a file, or to install a new update), and how much time remains.

Do’s

  • use a progress indicator for any action that takes longer than about 1.0 second
  • use Looped animation only for fast actions. The animated-spinner icon is an example of this common progress indicator. This indicator should be used for actions that take between 2-10 seconds
  • percent-done animation: Use for actions that take 10 seconds or more.

Don’ts

  • do not use static progress indicators
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Quote/Quote/index.html b/docs/docs/webdev/Components/Quote/Quote/index.html index d6c1157dc0..377d7f69bd 100644 --- a/docs/docs/webdev/Components/Quote/Quote/index.html +++ b/docs/docs/webdev/Components/Quote/Quote/index.html @@ -5,13 +5,13 @@ Quote | EEA Design System - +

Quote

Quote is a key phrase, quotation, or excerpt that has been pulled from an article and used as a page layout graphic element, serving to entice readers into the article or to highlight a key topic.

Dont's

  • Do not use more than one quote per page
  • Do not use long text or job title
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Quote/Testimonial/index.html b/docs/docs/webdev/Components/Quote/Testimonial/index.html index c25dca4ca2..1a2043656a 100644 --- a/docs/docs/webdev/Components/Quote/Testimonial/index.html +++ b/docs/docs/webdev/Components/Quote/Testimonial/index.html @@ -5,13 +5,13 @@ Testimonial | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Search/Filters/index.html b/docs/docs/webdev/Components/Search/Filters/index.html index 3e47fbd600..9f4734b4c2 100644 --- a/docs/docs/webdev/Components/Search/Filters/index.html +++ b/docs/docs/webdev/Components/Search/Filters/index.html @@ -5,13 +5,13 @@ Filters | EEA Design System - +

Filters

The filter options must cover the most important aspects of whatever users will be filtering, based on relevance to users’ needs.

To design a filter that serves our users, we need to answer the following questions:

  • which characteristics are most influential to users in making their choice?

  • what words do users use to describe these characteristics?

  • do users understand our labels, or do they look like jargon to them?

  • which filter values are the most popular or most used?

    How to use Search filters

  • make sure users can find the search filters:

    • on desktop, users tend to find and use them easily when they are placed to the top and top left area of the page
    • on mobile where usually they are behind a button or drawer Keep them at the top and don’t rely on just an icon. Remove any ambiguity by adding a label to the icon or removing the icon altogether and just have text
  • ensure the options are relevant to users. When it comes to filters, matching the user’s mental model of how they would choose something in the physical world, is important in helping them choose something on a website

  • clearly display the selections to users. Feedback is an important heuristic for the usability of a website. So, once users have found the filters, understood the options they have, and made their selections – it’s important to let them know their choices have been applied to the list of products

  • allow a combination of filters. A big part of filters’ effectiveness will come down to using a number of them at the same time, letting the filters interact to produce the best results

  • live filtering updates. Live update for filtering UIs is great because the user gets to immediately see the changed results they are getting

  • include a ‘Clear all’ interaction. Let the users clear all applied filters with one click to action

  • show the number of results. Another key element in communicating feedback is to display the number of results. This provides users with feedback as to how effective their input was to reduce the result list and save time

  • make Important filters easily found. Users often do not reach useful filters because they are hidden at the bottom of a long menu. Filters at the top of the menu are the most used ones

Don’ts

Do not use live filtering updates

  • on mobile devices. Their screens are simply too small to pack the results, filters, and the live update feedback, without a visual overload

  • when handling a lot of data. For users doing a lot of research, having to wait for the results to update after each individual filter would be simply unbearable

In this case let the user batch their filters and click on an apply button before any actual updating takes place.

- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Search/Searchbox/index.html b/docs/docs/webdev/Components/Search/Searchbox/index.html index 0c9cac9618..44329e18fa 100644 --- a/docs/docs/webdev/Components/Search/Searchbox/index.html +++ b/docs/docs/webdev/Components/Search/Searchbox/index.html @@ -5,13 +5,13 @@ Searchbox | EEA Design System - +

Searchbox

Search lets users assert independence from websites' attempt to direct how they use it. Therefore, many users go straight to the homepage search function.

Search is also users' escape hatch when they are stuck in navigation. When they cannot find a reasonable place to go next, they often turn to the site's search function. This is why you should make search available from every page on the site; you cannot predict where users will be when they decide they are lost.

Do's

  • use placeholder text. Placeholder text provides context as to what can be searched and describes the action of the input

  • use a magnifying glass icon. The magnifying glass is universally recognized as a symbol for search and one which users can easily identify

  • provide a button to submit search queries. Inputs should be accessible. Ensure users can return results using their keyboard as well as clicking a button or the magnifying glass icon

  • consider the search icon position. In most cases, it is beneficial to place the Icon to the right of placeholder text. This allows the Icon to act as the submit button and makes more sense hierarchically as queries are entered first, and results returned after

  • use input widths which are appropriate for the typical query length. The width of the Input field should be wide enough to contain the typical search query. If an Input field is too narrow, it results in scrolling and decreases usability. It is recommended to use a minimum width of 27 characters

- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Search/Suggestions/index.html b/docs/docs/webdev/Components/Search/Suggestions/index.html index 46149b8159..de2d581ced 100644 --- a/docs/docs/webdev/Components/Search/Suggestions/index.html +++ b/docs/docs/webdev/Components/Search/Suggestions/index.html @@ -5,13 +5,13 @@ Suggestions | EEA Design System - +

Suggestions

Auto-suggestion is a powerful tool that reduces data input. Typical users are very poor at query formulation: if they don’t get good results on the first try, later search attempts rarely succeed. When autocomplete suggestions work well, they help the user articulate better search queries.

Usage

  • ensure that auto-suggestions are useful. Poorly designed auto-suggestions can confuse and distract users. Thus, use spelling auto-corrections, recognition of root words, and predictive text in order to improve the tool

  • present less than 10 items in the list of suggestions (and without a scrollbar) so the information doesn’t become overwhelming

  • allow for keyboard navigation for the list of suggestions. Once a user scrolls down past the last item, they should return to the top of the list. The Esc key should allow users to exit the list

  • highlight differences between the inputted information and suggested information. For example, the input text might have a standard weight, while suggested terms are bolded

- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Segment/index.html b/docs/docs/webdev/Components/Segment/index.html index 8a2bdbe099..f90c6b41ba 100644 --- a/docs/docs/webdev/Components/Segment/index.html +++ b/docs/docs/webdev/Components/Segment/index.html @@ -5,13 +5,13 @@ Segment | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Statistic/index.html b/docs/docs/webdev/Components/Statistic/index.html index ba1432144f..be73900a29 100644 --- a/docs/docs/webdev/Components/Statistic/index.html +++ b/docs/docs/webdev/Components/Statistic/index.html @@ -5,13 +5,13 @@ Statistic | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Tab/index.html b/docs/docs/webdev/Components/Tab/index.html index 22c126dc05..2b0c95a999 100644 --- a/docs/docs/webdev/Components/Tab/index.html +++ b/docs/docs/webdev/Components/Tab/index.html @@ -5,14 +5,14 @@ Tab | EEA Design System - +

Tab

The tabs component lets users navigate between related sections of content, displaying one section at a time.

Do’s

Tabs can be useful for users to quickly switch between related information if:

  • your content can be usefully separated into sections
  • the first section is more relevant than the others for most users
  • users will not need to view all the sections at once

Don’ts

Tabs hide content from users and not everyone will notice them or understand how they work. Do not use tabs if your users might need to:

  • read all the content in order, for example, to understand a step-by-step process
  • compare information in different tabs

Having to memorize information and switch between tabs can be frustrating. Test your content without tabs first.

Consider if it is better to:

  • simplify and reduce the amount of content
  • split the content across multiple pages
  • keep the content on a single page, separated by headings
  • use a table of contents to let users navigate quickly to specific sections of content

Tab labels

  • use short tab labels to appear in a single row. In exceptions, they can use a second line if needed, with a tab max width of 250px. Alternatively, you can use scrollable tabs to allow room for longer titles
  • don’t truncate labels unless required, as truncated text can impede comprehension
  • tab labels should consist of 1 – 2 words: Labels on tabs should clearly describe their function or destination within 2 words at most. Constraining yourself to 1 – 2 words will also help you in thinking more about selecting the best words for your tab labels.
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Table/index.html b/docs/docs/webdev/Components/Table/index.html index 4494a7db6b..3ca322cd94 100644 --- a/docs/docs/webdev/Components/Table/index.html +++ b/docs/docs/webdev/Components/Table/index.html @@ -5,13 +5,13 @@ Table | EEA Design System - +

Table

Tables are used to structure complex data in an organised way that is more user friendly and discoverable.

Do's

  • reduce the table width to fit the content
  • align content left to right within cells
  • use a dash ( - ) in null data cells
  • adjusts the styling to render a small/large table

Don'ts

  • don't spell out numbers
  • don't use colour alone to convey information

When to use

  • use when you want to show structured information, or static data
  • use when you want to help users to compare information

When not to use

  • when you don't have any relationship among content you want to present
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Tags/index.html b/docs/docs/webdev/Components/Tags/index.html index d7a8bb4a1b..8cdc29439a 100644 --- a/docs/docs/webdev/Components/Tags/index.html +++ b/docs/docs/webdev/Components/Tags/index.html @@ -5,13 +5,13 @@ Tags | EEA Design System - +

Tags

Labels, Tags, or Badges are all types of classification component that help to categorize, organize, and label elements. Tags are used to call attention to new or updated content.

Do's

  • use them to draw attention to new, important content. Tags can focus attention on important content on that might otherwise be missed
  • when needed to filter results with one or more tags
  • to indicate the number of new or unread items within a container. For example, to indicate the number of unread emails within a person’s inbox

Don'ts

  • if your tags aren’t interactive, disable hover, focus, and active styles
  • don’t mix interactive and static tags
  • don’t overdo it. If everything on a page is called out as important, nothing commands unique attention.
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Timeline/index.html b/docs/docs/webdev/Components/Timeline/index.html index 105aef04d0..54b35ef629 100644 --- a/docs/docs/webdev/Components/Timeline/index.html +++ b/docs/docs/webdev/Components/Timeline/index.html @@ -5,13 +5,13 @@ Timeline | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Visuals/Charts/index.html b/docs/docs/webdev/Components/Visuals/Charts/index.html index 68035ae6a3..22f44aec60 100644 --- a/docs/docs/webdev/Components/Visuals/Charts/index.html +++ b/docs/docs/webdev/Components/Visuals/Charts/index.html @@ -5,13 +5,13 @@ Charts | EEA Design System - +

Charts

Static and Interactive

Data accuracy and integrity come first. Don’t distort or confuse the information for embellishment or partiality. Emphasize clarity and transparency. Reduce cognitive load and focus on what matters. Every action, color, and visual element should support data insights and understanding.

More information can be referenced here https://www.eea.europa.eu/data-and-maps/daviz/learn-more/chart-dos-and-donts

Use the interactive chart if:

  • you want to give the user the possibility to visually filter data

  • you want the user to gain insights before filtering large datasets

Do not use the interactive chart if:

  • you want to visualize data without using it for filtering

  • you are not using the visual filter bar

- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Visuals/Dashboard/index.html b/docs/docs/webdev/Components/Visuals/Dashboard/index.html index edb39cf9eb..1133bb45b1 100644 --- a/docs/docs/webdev/Components/Visuals/Dashboard/index.html +++ b/docs/docs/webdev/Components/Visuals/Dashboard/index.html @@ -5,13 +5,13 @@ Dashboard | EEA Design System - +

Dashboard

A good dashboard design means:

  • information available at the fingertip
  • metrics are clear
  • intuitive design
  • customizable
  • summarized data

Do’s

  • reside on a single screen
  • support the aims and objectives of the intended user
  • show what the underlying data means:  This can be done through adequate labelling, logical grouping of related visualisations and the use of clear statistical and verbal descriptions
  • summarise data and provide a means to dig deeper into the data 
  • make optimal use of the available space: Double your margins

Don’ts

  • don’t hide information or rely on interactions too much
  • don’t flood the user with data
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Visuals/Maps/index.html b/docs/docs/webdev/Components/Visuals/Maps/index.html index 3ed88262fd..2e6a451e3a 100644 --- a/docs/docs/webdev/Components/Visuals/Maps/index.html +++ b/docs/docs/webdev/Components/Visuals/Maps/index.html @@ -5,13 +5,13 @@ Maps | EEA Design System - +

Maps

Static

There are five main design principles in map design.

  • legibility
  • visual contrast
  • figure-ground organization
  • hierarchical organization, and
  • balance

Together these principles form a system for seeing and understanding the relative importance of the content in the map and on the page.

What are the qualities of a good map?

  • clear idea of what the map is trying to demonstrate
  • easy to interpret legend or key
  • good use of symbols to demonstrate a clear point
  • good sources/metadata
  • clear features not overcrowded

Styles

  • do not use underlined text! This is difficult for low-vision users to read and indicates a possible hyperlink
  • italics should be used as little as possible, for water labels and short labels only
  • bolding of fonts is a good way to call out features, but avoid it for continuous, readable text
  • although ALL CAPS labels stand out, they are harder to read and should be used sparingly

Map Objects

  • avoid overlapping points or annotations, when possible. Try to place them offset from a line
  • there should be visible whitespace between symbols; touching symbols blend together for users with low vision
  • there should be a 2x size difference in levels of information

Colors

  • use a limited color palette. Limited color palette works the best for all UIs, and map UI is not an exception. It’s much easier to create visual harmony with a limited color palette. You should use between 10 to 12 colors for a full-body color palette, depending on the complexity of your map. Choose colors for individuals with visual impairments such as color-blindness (i.e. don’t use red-green color schemes)
  • try to use the same hue for similar features. For example, features related to transportation (bus stops, railway stations, etc.) should share the same hue. The same hue will help users to decode visual elements without reading text, and this will help you to create a more cohesive UI.
  • always consider accessibility. Many people have limited color vision, so you also need to take this into account when selecting colors to ensure that you have a proper contrast ratio

Text

  • choose fonts that have a variety of styles, such as bold, extra bold, italic, bold italic light, etc to differentiate between different kinds of features on your map
  • use one version of fonts for the map body and one for the explainer text outside the map

Interactive Maps

Interactive maps are high risk, high reward. Highly interactive maps can be too difficult for new users, yet they can also allow users to learn and explore at their own pace. It is always important to test designs on multiple people with varying degrees of technical expertise to see how they interact differently with the layout. Interactive map design should reflect what the cartographer is trying to convey (beauty vs. function) and never sacrifice visual hierarchy or great styling for interactivity.

Tips for designing effective interactive maps:

  • simplify the interface
  • panels should be the minimum possible size so they don’t clutter the space
  • don’t innovate to the point where users don’t know what to do
  • use panel opacity and margins to help them blend with your basemap and look cohesive
  • leave space for the maps to be used on mobile devices. This means avoiding permanent panels

Pop-ups and markers

  • keep pop-ups concise
  • only one pop-up on the screen at a time (generally)
  • cluster markers for better readability
  • use a legend when you have multiple types of markers
  • remove unnecessary padding and margins from popups
  • use a slight shadow to “lift” pop-ups off the map
- + \ No newline at end of file diff --git a/docs/docs/webdev/Guidelines/colours/index.html b/docs/docs/webdev/Guidelines/colours/index.html index 3091c11a97..dbd746dea9 100644 --- a/docs/docs/webdev/Guidelines/colours/index.html +++ b/docs/docs/webdev/Guidelines/colours/index.html @@ -5,14 +5,14 @@ Colours | EEA Design System - +

Colours

Communication is key

Although we value an aesthetically pleasing use of colour, clear communication is our focus. We use colours to support the purpose of the content, communicating things like hierarchy of information, interactive states, and the difference between distinct elements.

Accessibility

Accessibility is crucial and AA colour contrast must be achieved. It is up to the designer to ensure these standards are met but please refer to the accessibility guide for support. The colour system is designed to generate themes that meet WCAG 2.1 compliant contrast ratios. This makes things easier to find, identify, and interact with. It also makes the whole experience more accessible for visitors who are colour blind or who have low vision. However, you should never convey information using colour alone.

Legend:
AA: Compatible with WCAG AA requirements
AAA: Compatible with WCAG AAA requirements
AA L: Compatible with WCAG AA requirements only for Large text (WCAG defines large text as text that is 18pt and larger, or 14pt and larger if it is bold.)

You can find more on WCAG requirements here

Brand Colours

This colour should be eye-catching but not harsh. It can be liberally applied to your layout as its main identity. A primary colour is the colour displayed most frequently across your screens and components. Brand colours are extracted from the EEA logo in order to help users to easily identify the brand.

#007B6C
EEA GREEN
#004B7F
EEA BLUE

Shades

#C8FFF8
#A0E5DC
#78CAC0
#50B0A4
#289588
#007B6C
#005248

#A0D7FF
#47B3FF
#0A99FF
#0083E0
#006BB8
#004B7F
#003052

Supplementary colours

These colours highlight or complement the primary colours. These are to be used sparingly to make the UI elements stand out. These colours can be used together together or separately.

#3D5265
AAA
#F9F9F9
AAA
ΕΕΑ main background colour is white but the secondary colours can also be used as background to compliment text elements or components.

You can use #F9F9F9 as background with #3D5265 text (10.44:1 AAA) or, you can use #3D5265 background with #F9F9F9 text (10.44:1 AAA)

Shades

#DAE8F4
#ACCAE5
#87A7C3
#6989A5
#4C677F
#3D5265
#2E3E4C

#FFFFFF
#F9F9F9
#E6E7E8
#BCBEC0
#747678
#323232
#000000

Core colours

#3D5265
Text colour
#FFFFFF
Background colour
#007B6C
Highlight
(EEA Green)
#006BB8
Default
#004B7F
Hover
#753AAD
Visited
#003052
Active

Discrete colours

#3D5265
Usually used with a small text style
#323232
Used with a background

State colours

These are the colours that communicate purpose. They help users convey messages. For example, Green has a positive connotation. We use Green to convey success, confirmation messages, etc.

#B83230
ERROR
#FF9933
WARNING
#007B6C
SUCCESS
#004B7F
INFO









Thematic Platforms

info

All thematic platforms use EEA Supplementary colours, state colours, link colours and discrete colours.


Biodiversity

Brand Colours

This colour should be eye-catching but not harsh. It can be liberally applied to your layout as its main identity. A primary colour is the colour displayed most frequently across your screens and components. Brand colours are extracted from the Biodiversity logo in order to help users to easily identify the brand.

#289588
#FAC50D

Shades

#C8FFF8
#A0E5DC
#78CAC0
#50B0A4
#289588
#007B6C
#005248

#FEF6CD
#FBEC9B
#FAD936
#FAC50D
#FDAF20
#FF9933
#C35527

Core colours

#3D5265
Text colour
#FFFFFF
Background colour
#005248
Elements
#289588
Highlight










Forest Information System

Brand Colours

This colour should be eye-catching but not harsh. It can be liberally applied to your layout as its main identity. A primary colour is the colour displayed most frequently across your screens and components. Brand colours are extracted from the Forest information system logo in order to help users to easily identify the brand.

#007B6C
#005248

Shades

#C8FFF8
#A0E5DC
#78CAC0
#50B0A4
#289588
#007B6C
#005248

Core colours

#3D5265
Text colour
#FFFFFF
Background colour
#005248
Elements
#007B6C
Highlight










Wise Freshwater

Brand Colours

This colour should be eye-catching but not harsh. It can be liberally applied to your layout as its main identity. A primary colour is the colour displayed most frequently across your screens and components. Brand colours are extracted from the Wise Freshwater logo in order to help users to easily identify the brand.

#0083E0
#004B7F

Shades

#A0D7FF
#47B3FF
#0A99FF
#0083E0
#006BB8
#004B7F
#003052

Core colours

#3D5265
Text colour
#FFFFFF
Background colour
#0083E0
Elements
#004B7F
Highlight










Wise Marine

Brand Colours

This colour should be eye-catching but not harsh. It can be liberally applied to your layout as its main identity. A primary colour is the colour displayed most frequently across your screens and components. Brand colours are extracted from the Wise Marine logo in order to help users to easily identify the brand.

#004B7F
#0083E0

Shades

#A0D7FF
#47B3FF
#0A99FF
#0083E0
#006BB8
#004B7F
#003052

Core colours

#3D5265
Text colour
#FFFFFF
Background colour
#0083E0
Elements
#004B7F
Highlight









EEA complete colour palette

Not all colours have to be used - sometimes a simple colour scheme works best. Accessible text and background colour combinations are included and marked with their accesibility level.

#FFF6EC
brown-0
#FFEDD8
brown-1
#E7BC91
brown-2
#BC8A5F
brown-3
#8B5E34
brown-4
#603808
brown-5
#3D2201
brown-6

#EFEBF2
purple-0
#DFD6E7
purple-1
#BEADCE
purple-2
#9E84B6
purple-3
#753AAD
purple-4
#5C3285
purple-5
#3C096C
purple-6
#FBEEF8
red-0
#F6DDF0
red-1
#E7B2C0
red-2
#D78890
red-3
#C65B59
red-4
#B83230
red-5
#5C1918
red-6

#FEF6CD
yellow-0
#FBEC9B
yellow-1
#FAD936
yellow-2
#FAC50D
yellow-3
#FDAF20
yellow-4
#FF9933
yellow-5
#C35527
yellow-6
#C8FFF8
green-0
#A0E5DC
green-1
#78CAC0
green-2
#50B0A4
green-3
#289588
green-4
#007B6C
green-5
#005248
green-6

#A0D7FF
blue-0
#47B3FF
blue-1
#0A99FF
blue-2
#0083E0
blue-3
#006BB8
blue-4
#004B7F
blue-5
#003052
blue-6
#DAE8F4
blue-grey-0
#ACCAE5
blue-grey-1
#87A7C3
blue-grey-2
#6989A5
blue-grey-3
#4C677F
blue-grey-4
#3D5265
blue-grey-5
#2E3E4C
blue-grey-6

#FFFFFF
grey-0
#F9F9F9
grey-1
#E6E7E8
grey-2
#BCBEC0
grey-3
#747678
grey-4
#323232
grey-5
#000000
grey-6

Tools for creating colour palettes

You can use the following tools for creating colour wheels and additional shades for every main colour at each of EEA's network sites.

https://color.adobe.com/create/color-wheel

https://coolors.co/

Colours for maps

For optional creation of additional colour shades to use in maps and charts you can use the following tools.

https://colorbrewer2.org

https://carto.com/carto-colors/

- + \ No newline at end of file diff --git a/docs/docs/webdev/Guidelines/iconography/index.html b/docs/docs/webdev/Guidelines/iconography/index.html index 2dd31f4628..505f325596 100644 --- a/docs/docs/webdev/Guidelines/iconography/index.html +++ b/docs/docs/webdev/Guidelines/iconography/index.html @@ -5,14 +5,14 @@ Iconography | EEA Design System - +

Iconography

In our websites we use the Remix icon set

Remix Icon is a set of open-source neutral-style system symbols elaborately crafted for designers and developers. All of the icons are free for both personal and commercial use. (http://remixicon.com/)

We use icons to help our users understand the core idea of the content quickly or enhance the aesthetic appeal of the interface.

Consistency is key with icons, and all your icons should be the same size when you build them. Our grid is based on 8s, you'd want to build at 16, 24, or 32.

Choose a common size to build all your icons to, and then allow your engineers to scale to other sizes that might be needed by other designers. You don't want to build the same icon over and over at a multitude of sizes.

For product icons, use 1 color. Anything more than that and your components are going to become too complex and difficult for other designers to leverage. Anything with 3 or more colors is an illustration, not an icon.

Grids

The pixel grid is the fundamental grid that uses the smallest increment: a pixel. When building icons, you always want to align objects to the pixel grid, especially straight lines. But, you can build other shapes on the pixel grid. You want to build things on the pixel grid, not just because it will render more nicely, but because it makes your life easier. Spacing things evenly is much easier when you're using a grid. It helps you stay consistent with your placement, and overall will make your icons look better.

The optical grid helps us figure out where the center of mass of the icon is, as well as how large it is perceived by the human eye. Circles and curved objects take up less visual space than squares. It is best to put your icons in a fixed size container so that they’re all identical dimensions when exported. Adding this intrinsic padding supports the optical/perceptive weighting without additional effort in dev later.

In building the optical grid, you should give padding at the edge that’s equal to your stroke weight, or possibly double if using a 1px stroke.

Strokes and fills

Making sure our icons are all styled the same way is very important. We might have use cases for applying a fill to show something is selected, for instance, but you definitely want to create a set with one style, and possibly create the other variant.

Typically, filled icons have higher recognizability. Stroked icons give us great ability to create tiny details. When choosing which style is more appropriate, you should also consider your overall brand.

If you're going to create stroked icons, strokes all need to be the same weight. The space between strokes not be thinner than your stroke weight.

Don’ts

When possible, avoid type in icons. Icons are meant to be global. If you do need type (for instance, currency symbols), draw it yourself, rather than using a typeface.

Icon set

ri-home-line

ri-home-fill

ri-home-2-line

ri-home-2-fill

ri-home-3-line

ri-home-3-fill

ri-home-4-line

ri-home-4-fill

ri-home-5-line

ri-home-5-fill

ri-home-6-line

ri-home-6-fill

ri-home-7-line

ri-home-7-fill

ri-home-8-line

ri-home-8-fill

ri-home-gear-line

ri-home-gear-fill

ri-home-wifi-line

ri-home-wifi-fill

ri-home-smile-line

ri-home-smile-fill

ri-home-smile-2-line

ri-home-smile-2-fill

ri-home-heart-line

ri-home-heart-fill

ri-building-line

ri-building-fill

ri-building-2-line

ri-building-2-fill

ri-building-3-line

ri-building-3-fill

ri-building-4-line

ri-building-4-fill

ri-hotel-line

ri-hotel-fill

ri-community-line

ri-community-fill

ri-government-line

ri-government-fill

ri-bank-line

ri-bank-fill

ri-store-line

ri-store-fill

ri-store-2-line

ri-store-2-fill

ri-store-3-line

ri-store-3-fill

ri-hospital-line

ri-hospital-fill

ri-ancient-gate-line

ri-ancient-gate-fill

ri-ancient-pavilion-line

ri-ancient-pavilion-fill

Buildings

ri-mail-line

ri-mail-fill

ri-mail-open-line

ri-mail-open-fill

ri-mail-send-line

ri-mail-send-fill

ri-mail-unread-line

ri-mail-unread-fill

ri-mail-add-line

ri-mail-add-fill

ri-mail-check-line

ri-mail-check-fill

ri-mail-close-line

ri-mail-close-fill

ri-mail-download-line

ri-mail-download-fill

ri-mail-forbid-line

ri-mail-forbid-fill

ri-mail-lock-line

ri-mail-lock-fill

ri-mail-settings-line

ri-mail-settings-fill

ri-mail-star-line

ri-mail-star-fill

ri-mail-volume-line

ri-mail-volume-fill

ri-inbox-line

ri-inbox-fill

ri-inbox-archive-line

ri-inbox-archive-fill

ri-inbox-unarchive-line

ri-inbox-unarchive-fill

ri-cloud-line

ri-cloud-fill

ri-cloud-off-line

ri-cloud-off-fill

ri-attachment-line

ri-attachment-fill

ri-profile-line

ri-profile-fill

ri-archive-line

ri-archive-fill

ri-archive-drawer-line

ri-archive-drawer-fill

ri-at-line

ri-at-fill

ri-award-line

ri-award-fill

ri-medal-line

ri-medal-fill

ri-medal-2-line

ri-medal-2-fill

ri-bar-chart-line

ri-bar-chart-fill

ri-bar-chart-horizontal-line

ri-bar-chart-horizontal-fill

ri-bar-chart-2-line

ri-bar-chart-2-fill

ri-bar-chart-box-line

ri-bar-chart-box-fill

ri-bar-chart-grouped-line

ri-bar-chart-grouped-fill

ri-bubble-chart-line

ri-bubble-chart-fill

ri-pie-chart-line

ri-pie-chart-fill

ri-pie-chart-2-line

ri-pie-chart-2-fill

ri-pie-chart-box-line

ri-pie-chart-box-fill

ri-donut-chart-line

ri-donut-chart-fill

ri-line-chart-line

ri-line-chart-fill

ri-bookmark-line

ri-bookmark-fill

ri-bookmark-2-line

ri-bookmark-2-fill

ri-bookmark-3-line

ri-bookmark-3-fill

ri-briefcase-line

ri-briefcase-fill

ri-briefcase-2-line

ri-briefcase-2-fill

ri-briefcase-3-line

ri-briefcase-3-fill

ri-briefcase-4-line

ri-briefcase-4-fill

ri-briefcase-5-line

ri-briefcase-5-fill

ri-calculator-line

ri-calculator-fill

ri-calendar-line

ri-calendar-fill

ri-calendar-2-line

ri-calendar-2-fill

ri-calendar-event-line

ri-calendar-event-fill

ri-calendar-todo-line

ri-calendar-todo-fill

ri-calendar-check-line

ri-calendar-check-fill

ri-customer-service-line

ri-customer-service-fill

ri-customer-service-2-line

ri-customer-service-2-fill

ri-flag-line

ri-flag-fill

ri-flag-2-line

ri-flag-2-fill

ri-global-line

ri-global-fill

ri-honour-line

ri-honour-fill

ri-links-line

ri-links-fill

ri-printer-line

ri-printer-fill

ri-printer-cloud-line

ri-printer-cloud-fill

ri-record-mail-line

ri-record-mail-fill

ri-reply-line

ri-reply-fill

ri-reply-all-line

ri-reply-all-fill

ri-send-plane-line

ri-send-plane-fill

ri-send-plane-2-line

ri-send-plane-2-fill

ri-projector-line

ri-projector-fill

ri-projector-2-line

ri-projector-2-fill

ri-slideshow-line

ri-slideshow-fill

ri-slideshow-2-line

ri-slideshow-2-fill

ri-slideshow-3-line

ri-slideshow-3-fill

ri-slideshow-4-line

ri-slideshow-4-fill

ri-window-line

ri-window-fill

ri-window-2-line

ri-window-2-fill

ri-stack-line

ri-stack-fill

ri-service-line

ri-service-fill

ri-registered-line

ri-registered-fill

ri-trademark-line

ri-trademark-fill

ri-advertisement-line

ri-advertisement-fill

ri-copyleft-line

ri-copyleft-fill

ri-copyright-line

ri-copyright-fill

ri-creative-commons-line

ri-creative-commons-fill

ri-creative-commons-by-line

ri-creative-commons-by-fill

ri-creative-commons-nc-line

ri-creative-commons-nc-fill

ri-creative-commons-nd-line

ri-creative-commons-nd-fill

ri-creative-commons-sa-line

ri-creative-commons-sa-fill

ri-creative-commons-zero-line

ri-creative-commons-zero-fill

Business

ri-chat-1-line

ri-chat-1-fill

ri-chat-2-line

ri-chat-2-fill

ri-chat-3-line

ri-chat-3-fill

ri-chat-4-line

ri-chat-4-fill

ri-message-line

ri-message-fill

ri-message-2-line

ri-message-2-fill

ri-message-3-line

ri-message-3-fill

ri-chat-check-line

ri-chat-check-fill

ri-chat-delete-line

ri-chat-delete-fill

ri-chat-forward-line

ri-chat-forward-fill

ri-chat-upload-line

ri-chat-upload-fill

ri-chat-download-line

ri-chat-download-fill

ri-chat-new-line

ri-chat-new-fill

ri-chat-settings-line

ri-chat-settings-fill

ri-chat-smile-line

ri-chat-smile-fill

ri-chat-smile-2-line

ri-chat-smile-2-fill

ri-chat-smile-3-line

ri-chat-smile-3-fill

ri-chat-heart-line

ri-chat-heart-fill

ri-chat-off-line

ri-chat-off-fill

ri-feedback-line

ri-feedback-fill

ri-discuss-line

ri-discuss-fill

ri-question-answer-line

ri-question-answer-fill

ri-questionnaire-line

ri-questionnaire-fill

ri-video-chat-line

ri-video-chat-fill

ri-chat-voice-line

ri-chat-voice-fill

ri-chat-quote-line

ri-chat-quote-fill

ri-chat-follow-up-line

ri-chat-follow-up-fill

ri-chat-poll-line

ri-chat-poll-fill

ri-chat-history-line

ri-chat-history-fill

ri-chat-private-line

ri-chat-private-fill

Communication

ri-pencil-line

ri-pencil-fill

ri-edit-line

ri-edit-fill

ri-edit-2-line

ri-edit-2-fill

ri-ball-pen-line

ri-ball-pen-fill

ri-quill-pen-line

ri-quill-pen-fill

ri-pen-nib-line

ri-pen-nib-fill

ri-ink-bottle-line

ri-ink-bottle-fill

ri-mark-pen-line

ri-mark-pen-fill

ri-markup-line

ri-markup-fill

ri-edit-box-line

ri-edit-box-fill

ri-edit-circle-line

ri-edit-circle-fill

ri-sip-line

ri-sip-fill

ri-brush-line

ri-brush-fill

ri-brush-2-line

ri-brush-2-fill

ri-brush-3-line

ri-brush-3-fill

ri-brush-4-line

ri-brush-4-fill

ri-paint-brush-line

ri-paint-brush-fill

ri-contrast-line

ri-contrast-fill

ri-contrast-2-line

ri-contrast-2-fill

ri-drop-line

ri-drop-fill

ri-blur-off-line

ri-blur-off-fill

ri-contrast-drop-line

ri-contrast-drop-fill

ri-contrast-drop-2-line

ri-contrast-drop-2-fill

ri-compasses-line

ri-compasses-fill

ri-compasses-2-line

ri-compasses-2-fill

ri-scissors-line

ri-scissors-fill

ri-scissors-cut-line

ri-scissors-cut-fill

ri-scissors-2-line

ri-scissors-2-fill

ri-slice-line

ri-slice-fill

ri-eraser-line

ri-eraser-fill

ri-ruler-line

ri-ruler-fill

ri-ruler-2-line

ri-ruler-2-fill

ri-pencil-ruler-line

ri-pencil-ruler-fill

ri-pencil-ruler-2-line

ri-pencil-ruler-2-fill

ri-t-box-line

ri-t-box-fill

ri-input-method-line

ri-input-method-fill

ri-artboard-line

ri-artboard-fill

ri-artboard-2-line

ri-artboard-2-fill

ri-crop-line

ri-crop-fill

ri-crop-2-line

ri-crop-2-fill

ri-screenshot-line

ri-screenshot-fill

ri-screenshot-2-line

ri-screenshot-2-fill

ri-drag-move-line

ri-drag-move-fill

ri-drag-move-2-line

ri-drag-move-2-fill

ri-focus-line

ri-focus-fill

ri-focus-2-line

ri-focus-2-fill

ri-focus-3-line

ri-focus-3-fill

ri-paint-line

ri-paint-fill

ri-palette-line

ri-palette-fill

ri-pantone-line

ri-pantone-fill

ri-shape-line

ri-shape-fill

ri-shape-2-line

ri-shape-2-fill

ri-magic-line

ri-magic-fill

ri-anticlockwise-line

ri-anticlockwise-fill

ri-anticlockwise-2-line

ri-anticlockwise-2-fill

ri-clockwise-line

ri-clockwise-fill

ri-clockwise-2-line

ri-clockwise-2-fill

ri-hammer-line

ri-hammer-fill

ri-tools-line

ri-tools-fill

ri-drag-drop-line

ri-drag-drop-fill

ri-table-line

ri-table-fill

ri-table-alt-line

ri-table-alt-fill

ri-layout-line

ri-layout-fill

ri-layout-2-line

ri-layout-2-fill

ri-layout-3-line

ri-layout-3-fill

ri-layout-4-line

ri-layout-4-fill

ri-layout-5-line

ri-layout-5-fill

ri-layout-6-line

ri-layout-6-fill

ri-layout-column-line

ri-layout-column-fill

ri-layout-row-line

ri-layout-row-fill

ri-layout-top-line

ri-layout-top-fill

ri-layout-right-line

ri-layout-right-fill

ri-layout-bottom-line

ri-layout-bottom-fill

ri-layout-left-line

ri-layout-left-fill

ri-layout-top-2-line

ri-layout-top-2-fill

ri-layout-right-2-line

ri-layout-right-2-fill

ri-layout-bottom-2-line

ri-layout-bottom-2-fill

ri-layout-left-2-line

ri-layout-left-2-fill

ri-layout-grid-line

ri-layout-grid-fill

ri-layout-masonry-line

ri-layout-masonry-fill

ri-collage-line

ri-collage-fill

ri-grid-line

ri-grid-fill

Design

ri-bug-line

ri-bug-fill

ri-bug-2-line

ri-bug-2-fill

ri-code-line

ri-code-fill

ri-code-s-line

ri-code-s-fill

ri-code-s-slash-line

ri-code-s-slash-fill

ri-code-box-line

ri-code-box-fill

ri-terminal-box-line

ri-terminal-box-fill

ri-terminal-line

ri-terminal-fill

ri-terminal-window-line

ri-terminal-window-fill

ri-parentheses-line

ri-parentheses-fill

ri-brackets-line

ri-brackets-fill

ri-braces-line

ri-braces-fill

ri-command-line

ri-command-fill

ri-cursor-line

ri-cursor-fill

ri-git-commit-line

ri-git-commit-fill

ri-git-pull-request-line

ri-git-pull-request-fill

ri-git-merge-line

ri-git-merge-fill

ri-git-branch-line

ri-git-branch-fill

ri-git-repository-line

ri-git-repository-fill

ri-git-repository-commits-line

ri-git-repository-commits-fill

ri-git-repository-private-line

ri-git-repository-private-fill

ri-html5-line

ri-html5-fill

ri-css3-line

ri-css3-fill

Development

ri-tv-line

ri-tv-fill

ri-tv-2-line

ri-tv-2-fill

ri-computer-line

ri-computer-fill

ri-mac-line

ri-mac-fill

ri-macbook-line

ri-macbook-fill

ri-cellphone-line

ri-cellphone-fill

ri-smartphone-line

ri-smartphone-fill

ri-tablet-line

ri-tablet-fill

ri-device-line

ri-device-fill

ri-phone-line

ri-phone-fill

ri-database-line

ri-database-fill

ri-database-2-line

ri-database-2-fill

ri-server-line

ri-server-fill

ri-hard-drive-line

ri-hard-drive-fill

ri-hard-drive-2-line

ri-hard-drive-2-fill

ri-install-line

ri-install-fill

ri-uninstall-line

ri-uninstall-fill

ri-save-line

ri-save-fill

ri-save-2-line

ri-save-2-fill

ri-save-3-line

ri-save-3-fill

ri-sd-card-line

ri-sd-card-fill

ri-sd-card-mini-line

ri-sd-card-mini-fill

ri-sim-card-line

ri-sim-card-fill

ri-sim-card-2-line

ri-sim-card-2-fill

ri-dual-sim-1-line

ri-dual-sim-1-fill

ri-dual-sim-2-line

ri-dual-sim-2-fill

ri-u-disk-line

ri-u-disk-fill

ri-battery-line

ri-battery-fill

ri-battery-charge-line

ri-battery-charge-fill

ri-battery-low-line

ri-battery-low-fill

ri-battery-2-line

ri-battery-2-fill

ri-battery-2-charge-line

ri-battery-2-charge-fill

ri-battery-saver-line

ri-battery-saver-fill

ri-battery-share-line

ri-battery-share-fill

ri-cast-line

ri-cast-fill

ri-airplay-line

ri-airplay-fill

ri-cpu-line

ri-cpu-fill

ri-gradienter-line

ri-gradienter-fill

ri-keyboard-line

ri-keyboard-fill

ri-keyboard-box-line

ri-keyboard-box-fill

ri-mouse-line

ri-mouse-fill

ri-sensor-line

ri-sensor-fill

ri-router-line

ri-router-fill

ri-radar-line

ri-radar-fill

ri-gamepad-line

ri-gamepad-fill

ri-remote-control-line

ri-remote-control-fill

ri-remote-control-2-line

ri-remote-control-2-fill

ri-device-recover-line

ri-device-recover-fill

ri-hotspot-line

ri-hotspot-fill

ri-phone-find-line

ri-phone-find-fill

ri-phone-lock-line

ri-phone-lock-fill

ri-rotate-lock-line

ri-rotate-lock-fill

ri-restart-line

ri-restart-fill

ri-shut-down-line

ri-shut-down-fill

ri-fingerprint-line

ri-fingerprint-fill

ri-fingerprint-2-line

ri-fingerprint-2-fill

ri-barcode-line

ri-barcode-fill

ri-barcode-box-line

ri-barcode-box-fill

ri-qr-code-line

ri-qr-code-fill

ri-qr-scan-line

ri-qr-scan-fill

ri-qr-scan-2-line

ri-qr-scan-2-fill

ri-scan-line

ri-scan-fill

ri-scan-2-line

ri-scan-2-fill

ri-rss-line

ri-rss-fill

ri-gps-line

ri-gps-fill

ri-base-station-line

ri-base-station-fill

ri-bluetooth-line

ri-bluetooth-fill

ri-bluetooth-connect-line

ri-bluetooth-connect-fill

ri-wifi-line

ri-wifi-fill

ri-wifi-off-line

ri-wifi-off-fill

ri-signal-wifi-line

ri-signal-wifi-fill

ri-signal-wifi-1-line

ri-signal-wifi-1-fill

ri-signal-wifi-2-line

ri-signal-wifi-2-fill

ri-signal-wifi-3-line

ri-signal-wifi-3-fill

ri-signal-wifi-error-line

ri-signal-wifi-error-fill

ri-signal-wifi-off-line

ri-signal-wifi-off-fill

ri-wireless-charging-line

ri-wireless-charging-fill

ri-dashboard-2-line

ri-dashboard-2-fill

ri-dashboard-3-line

ri-dashboard-3-fill

ri-usb-line

ri-usb-fill

Device

ri-file-line

ri-file-fill

ri-file-2-line

ri-file-2-fill

ri-file-3-line

ri-file-3-fill

ri-file-4-line

ri-file-4-fill

ri-sticky-note-line

ri-sticky-note-fill

ri-sticky-note-2-line

ri-sticky-note-2-fill

ri-file-edit-line

ri-file-edit-fill

ri-draft-line

ri-draft-fill

ri-file-paper-line

ri-file-paper-fill

ri-file-paper-2-line

ri-file-paper-2-fill

ri-file-text-line

ri-file-text-fill

ri-file-list-line

ri-file-list-fill

ri-file-list-2-line

ri-file-list-2-fill

ri-file-list-3-line

ri-file-list-3-fill

ri-bill-line

ri-bill-fill

ri-file-copy-line

ri-file-copy-fill

ri-file-copy-2-line

ri-file-copy-2-fill

ri-clipboard-line

ri-clipboard-fill

ri-survey-line

ri-survey-fill

ri-article-line

ri-article-fill

ri-newspaper-line

ri-newspaper-fill

ri-file-zip-line

ri-file-zip-fill

ri-file-mark-line

ri-file-mark-fill

ri-task-line

ri-task-fill

ri-todo-line

ri-todo-fill

ri-book-line

ri-book-fill

ri-book-mark-line

ri-book-mark-fill

ri-book-2-line

ri-book-2-fill

ri-book-3-line

ri-book-3-fill

ri-book-open-line

ri-book-open-fill

ri-book-read-line

ri-book-read-fill

ri-contacts-book-line

ri-contacts-book-fill

ri-contacts-book-2-line

ri-contacts-book-2-fill

ri-contacts-book-upload-line

ri-contacts-book-upload-fill

ri-booklet-line

ri-booklet-fill

ri-file-code-line

ri-file-code-fill

ri-file-pdf-line

ri-file-pdf-fill

ri-file-word-line

ri-file-word-fill

ri-file-ppt-line

ri-file-ppt-fill

ri-file-excel-line

ri-file-excel-fill

ri-file-word-2-line

ri-file-word-2-fill

ri-file-ppt-2-line

ri-file-ppt-2-fill

ri-file-excel-2-line

ri-file-excel-2-fill

ri-file-hwp-line

ri-file-hwp-fill

ri-keynote-line

ri-keynote-fill

ri-numbers-line

ri-numbers-fill

ri-pages-line

ri-pages-fill

ri-file-search-line

ri-file-search-fill

ri-file-add-line

ri-file-add-fill

ri-file-reduce-line

ri-file-reduce-fill

ri-file-settings-line

ri-file-settings-fill

ri-file-upload-line

ri-file-upload-fill

ri-file-transfer-line

ri-file-transfer-fill

ri-file-download-line

ri-file-download-fill

ri-file-lock-line

ri-file-lock-fill

ri-file-chart-line

ri-file-chart-fill

ri-file-chart-2-line

ri-file-chart-2-fill

ri-file-music-line

ri-file-music-fill

ri-file-gif-line

ri-file-gif-fill

ri-file-forbid-line

ri-file-forbid-fill

ri-file-info-line

ri-file-info-fill

ri-file-warning-line

ri-file-warning-fill

ri-file-unknow-line

ri-file-unknow-fill

ri-file-user-line

ri-file-user-fill

ri-file-shield-line

ri-file-shield-fill

ri-file-shield-2-line

ri-file-shield-2-fill

ri-file-damage-line

ri-file-damage-fill

ri-file-history-line

ri-file-history-fill

ri-file-shred-line

ri-file-shred-fill

ri-file-cloud-line

ri-file-cloud-fill

ri-folder-line

ri-folder-fill

ri-folder-2-line

ri-folder-2-fill

ri-folder-3-line

ri-folder-3-fill

ri-folder-4-line

ri-folder-4-fill

ri-folder-5-line

ri-folder-5-fill

ri-folders-line

ri-folders-fill

ri-folder-add-line

ri-folder-add-fill

ri-folder-reduce-line

ri-folder-reduce-fill

ri-folder-settings-line

ri-folder-settings-fill

ri-folder-upload-line

ri-folder-upload-fill

ri-folder-transfer-line

ri-folder-transfer-fill

ri-folder-download-line

ri-folder-download-fill

ri-folder-lock-line

ri-folder-lock-fill

ri-folder-chart-line

ri-folder-chart-fill

ri-folder-chart-2-line

ri-folder-chart-2-fill

ri-folder-music-line

ri-folder-music-fill

ri-folder-forbid-line

ri-folder-forbid-fill

ri-folder-info-line

ri-folder-info-fill

ri-folder-warning-line

ri-folder-warning-fill

ri-folder-unknow-line

ri-folder-unknow-fill

ri-folder-user-line

ri-folder-user-fill

ri-folder-shield-line

ri-folder-shield-fill

ri-folder-shield-2-line

ri-folder-shield-2-fill

ri-folder-shared-line

ri-folder-shared-fill

ri-folder-received-line

ri-folder-received-fill

ri-folder-open-line

ri-folder-open-fill

ri-folder-keyhole-line

ri-folder-keyhole-fill

ri-folder-zip-line

ri-folder-zip-fill

ri-folder-history-line

ri-folder-history-fill

ri-markdown-line

ri-markdown-fill

Document

ri-bold

ri-italic

ri-heading

ri-text

ri-font-color

ri-font-size

ri-font-size-2

ri-underline

ri-emphasis

ri-emphasis-cn

ri-strikethrough

ri-strikethrough-2

ri-format-clear

ri-align-left

ri-align-center

ri-align-right

ri-align-justify

ri-align-top

ri-align-vertically

ri-align-bottom

ri-list-check

ri-list-check-2

ri-list-ordered

ri-list-unordered

ri-indent-decrease

ri-indent-increase

ri-line-height

ri-text-spacing

ri-text-wrap

ri-attachment-2

ri-link

ri-link-unlink

ri-link-m

ri-link-unlink-m

ri-separator

ri-space

ri-page-separator

ri-code-view

ri-double-quotes-l

ri-double-quotes-r

ri-single-quotes-l

ri-single-quotes-r

ri-table-2

ri-subscript

ri-subscript-2

ri-superscript

ri-superscript-2

ri-paragraph

ri-text-direction-l

ri-text-direction-r

ri-functions

ri-omega

ri-hashtag

ri-asterisk

ri-question-mark

ri-translate

ri-translate-2

ri-a-b

ri-english-input

ri-pinyin-input

ri-wubi-input

ri-input-cursor-move

ri-number-1

ri-number-2

ri-number-3

ri-number-4

ri-number-5

ri-number-6

ri-number-7

ri-number-8

ri-number-9

ri-number-0

ri-sort-asc

ri-sort-desc

ri-bring-forward

ri-send-backward

ri-bring-to-front

ri-send-to-back

ri-h-1

ri-h-2

ri-h-3

ri-h-4

ri-h-5

ri-h-6

ri-insert-column-left

ri-insert-column-right

ri-insert-row-top

ri-insert-row-bottom

ri-delete-column

ri-delete-row

ri-merge-cells-horizontal

ri-merge-cells-vertical

ri-split-cells-horizontal

ri-split-cells-vertical

ri-flow-chart

ri-mind-map

ri-node-tree

ri-organization-chart

ri-rounded-corner

Editor

ri-wallet-line

ri-wallet-fill

ri-wallet-2-line

ri-wallet-2-fill

ri-wallet-3-line

ri-wallet-3-fill

ri-bank-card-line

ri-bank-card-fill

ri-bank-card-2-line

ri-bank-card-2-fill

ri-secure-payment-line

ri-secure-payment-fill

ri-refund-line

ri-refund-fill

ri-refund-2-line

ri-refund-2-fill

ri-safe-line

ri-safe-fill

ri-safe-2-line

ri-safe-2-fill

ri-price-tag-line

ri-price-tag-fill

ri-price-tag-2-line

ri-price-tag-2-fill

ri-price-tag-3-line

ri-price-tag-3-fill

ri-ticket-line

ri-ticket-fill

ri-ticket-2-line

ri-ticket-2-fill

ri-coupon-line

ri-coupon-fill

ri-coupon-2-line

ri-coupon-2-fill

ri-coupon-3-line

ri-coupon-3-fill

ri-coupon-4-line

ri-coupon-4-fill

ri-coupon-5-line

ri-coupon-5-fill

ri-shopping-bag-line

ri-shopping-bag-fill

ri-shopping-bag-2-line

ri-shopping-bag-2-fill

ri-shopping-bag-3-line

ri-shopping-bag-3-fill

ri-shopping-basket-line

ri-shopping-basket-fill

ri-shopping-basket-2-line

ri-shopping-basket-2-fill

ri-shopping-cart-line

ri-shopping-cart-fill

ri-shopping-cart-2-line

ri-shopping-cart-2-fill

ri-vip-line

ri-vip-fill

ri-vip-crown-line

ri-vip-crown-fill

ri-vip-crown-2-line

ri-vip-crown-2-fill

ri-vip-diamond-line

ri-vip-diamond-fill

ri-trophy-line

ri-trophy-fill

ri-exchange-line

ri-exchange-fill

ri-exchange-box-line

ri-exchange-box-fill

ri-swap-line

ri-swap-fill

ri-swap-box-line

ri-swap-box-fill

ri-exchange-dollar-line

ri-exchange-dollar-fill

ri-exchange-cny-line

ri-exchange-cny-fill

ri-exchange-funds-line

ri-exchange-funds-fill

ri-increase-decrease-line

ri-increase-decrease-fill

ri-percent-line

ri-percent-fill

ri-copper-coin-line

ri-copper-coin-fill

ri-copper-diamond-line

ri-copper-diamond-fill

ri-money-cny-box-line

ri-money-cny-box-fill

ri-money-cny-circle-line

ri-money-cny-circle-fill

ri-money-dollar-box-line

ri-money-dollar-box-fill

ri-money-dollar-circle-line

ri-money-dollar-circle-fill

ri-money-euro-box-line

ri-money-euro-box-fill

ri-money-euro-circle-line

ri-money-euro-circle-fill

ri-money-pound-box-line

ri-money-pound-box-fill

ri-money-pound-circle-line

ri-money-pound-circle-fill

ri-bit-coin-line

ri-bit-coin-fill

ri-coin-line

ri-coin-fill

ri-coins-line

ri-coins-fill

ri-currency-line

ri-currency-fill

ri-funds-line

ri-funds-fill

ri-funds-box-line

ri-funds-box-fill

ri-red-packet-line

ri-red-packet-fill

ri-water-flash-line

ri-water-flash-fill

ri-stock-line

ri-stock-fill

ri-auction-line

ri-auction-fill

ri-gift-line

ri-gift-fill

ri-gift-2-line

ri-gift-2-fill

ri-hand-coin-line

ri-hand-coin-fill

ri-hand-heart-line

ri-hand-heart-fill

ri-24-hours-line

ri-24-hours-fill

Finance

ri-heart-line

ri-heart-fill

ri-heart-2-line

ri-heart-2-fill

ri-heart-3-line

ri-heart-3-fill

ri-heart-add-line

ri-heart-add-fill

ri-dislike-line

ri-dislike-fill

ri-hearts-line

ri-hearts-fill

ri-heart-pulse-line

ri-heart-pulse-fill

ri-pulse-line

ri-pulse-fill

ri-empathize-line

ri-empathize-fill

ri-nurse-line

ri-nurse-fill

ri-dossier-line

ri-dossier-fill

ri-health-book-line

ri-health-book-fill

ri-first-aid-kit-line

ri-first-aid-kit-fill

ri-capsule-line

ri-capsule-fill

ri-medicine-bottle-line

ri-medicine-bottle-fill

ri-flask-line

ri-flask-fill

ri-test-tube-line

ri-test-tube-fill

ri-microscope-line

ri-microscope-fill

ri-hand-sanitizer-line

ri-hand-sanitizer-fill

ri-mental-health-line

ri-mental-health-fill

ri-psychotherapy-line

ri-psychotherapy-fill

ri-stethoscope-line

ri-stethoscope-fill

ri-syringe-line

ri-syringe-fill

ri-thermometer-line

ri-thermometer-fill

ri-infrared-thermometer-line

ri-infrared-thermometer-fill

ri-surgical-mask-line

ri-surgical-mask-fill

ri-virus-line

ri-virus-fill

ri-lungs-line

ri-lungs-fill

ri-rest-time-line

ri-rest-time-fill

ri-zzz-line

ri-zzz-fill

Health & Medical

ri-alipay-line

ri-alipay-fill

ri-amazon-line

ri-amazon-fill

ri-android-line

ri-android-fill

ri-angularjs-line

ri-angularjs-fill

ri-app-store-line

ri-app-store-fill

ri-apple-line

ri-apple-fill

ri-baidu-line

ri-baidu-fill

ri-behance-line

ri-behance-fill

ri-bilibili-line

ri-bilibili-fill

ri-centos-line

ri-centos-fill

ri-chrome-line

ri-chrome-fill

ri-codepen-line

ri-codepen-fill

ri-coreos-line

ri-coreos-fill

ri-dingding-line

ri-dingding-fill

ri-discord-line

ri-discord-fill

ri-disqus-line

ri-disqus-fill

ri-douban-line

ri-douban-fill

ri-dribbble-line

ri-dribbble-fill

ri-drive-line

ri-drive-fill

ri-dropbox-line

ri-dropbox-fill

ri-edge-line

ri-edge-fill

ri-evernote-line

ri-evernote-fill

ri-facebook-line

ri-facebook-fill

ri-facebook-circle-line

ri-facebook-circle-fill

ri-facebook-box-line

ri-facebook-box-fill

ri-finder-line

ri-finder-fill

ri-firefox-line

ri-firefox-fill

ri-flutter-line

ri-flutter-fill

ri-gatsby-line

ri-gatsby-fill

ri-github-line

ri-github-fill

ri-gitlab-line

ri-gitlab-fill

ri-google-line

ri-google-fill

ri-google-play-line

ri-google-play-fill

ri-honor-of-kings-line

ri-honor-of-kings-fill

ri-ie-line

ri-ie-fill

ri-instagram-line

ri-instagram-fill

ri-invision-line

ri-invision-fill

ri-kakao-talk-line

ri-kakao-talk-fill

ri-line-line

ri-line-fill

ri-linkedin-line

ri-linkedin-fill

ri-linkedin-box-line

ri-linkedin-box-fill

ri-mastercard-line

ri-mastercard-fill

ri-mastodon-line

ri-mastodon-fill

ri-medium-line

ri-medium-fill

ri-messenger-line

ri-messenger-fill

ri-microsoft-line

ri-microsoft-fill

ri-mini-program-line

ri-mini-program-fill

ri-netease-cloud-music-line

ri-netease-cloud-music-fill

ri-netflix-line

ri-netflix-fill

ri-npmjs-line

ri-npmjs-fill

ri-open-source-line

ri-open-source-fill

ri-opera-line

ri-opera-fill

ri-patreon-line

ri-patreon-fill

ri-paypal-line

ri-paypal-fill

ri-pinterest-line

ri-pinterest-fill

ri-pixelfed-line

ri-pixelfed-fill

ri-playstation-line

ri-playstation-fill

ri-product-hunt-line

ri-product-hunt-fill

ri-qq-line

ri-qq-fill

ri-reactjs-line

ri-reactjs-fill

ri-reddit-line

ri-reddit-fill

ri-remixicon-line

ri-remixicon-fill

ri-safari-line

ri-safari-fill

ri-skype-line

ri-skype-fill

ri-slack-line

ri-slack-fill

ri-snapchat-line

ri-snapchat-fill

ri-soundcloud-line

ri-soundcloud-fill

ri-spectrum-line

ri-spectrum-fill

ri-spotify-line

ri-spotify-fill

ri-stack-overflow-line

ri-stack-overflow-fill

ri-stackshare-line

ri-stackshare-fill

ri-steam-line

ri-steam-fill

ri-switch-line

ri-switch-fill

ri-taobao-line

ri-taobao-fill

ri-telegram-line

ri-telegram-fill

ri-trello-line

ri-trello-fill

ri-tumblr-line

ri-tumblr-fill

ri-twitch-line

ri-twitch-fill

ri-twitter-line

ri-twitter-fill

ri-ubuntu-line

ri-ubuntu-fill

ri-unsplash-line

ri-unsplash-fill

ri-vimeo-line

ri-vimeo-fill

ri-visa-line

ri-visa-fill

ri-vuejs-line

ri-vuejs-fill

ri-wechat-line

ri-wechat-fill

ri-wechat-2-line

ri-wechat-2-fill

ri-wechat-pay-line

ri-wechat-pay-fill

ri-weibo-line

ri-weibo-fill

ri-whatsapp-line

ri-whatsapp-fill

ri-windows-line

ri-windows-fill

ri-xbox-line

ri-xbox-fill

ri-xing-line

ri-xing-fill

ri-youtube-line

ri-youtube-fill

ri-zcool-line

ri-zcool-fill

ri-zhihu-line

ri-zhihu-fill

Logos

ri-map-pin-line

ri-map-pin-fill

ri-map-pin-2-line

ri-map-pin-2-fill

ri-map-pin-3-line

ri-map-pin-3-fill

ri-map-pin-4-line

ri-map-pin-4-fill

ri-map-pin-5-line

ri-map-pin-5-fill

ri-map-pin-add-line

ri-map-pin-add-fill

ri-map-pin-range-line

ri-map-pin-range-fill

ri-map-pin-time-line

ri-map-pin-time-fill

ri-map-pin-user-line

ri-map-pin-user-fill

ri-pin-distance-line

ri-pin-distance-fill

ri-pushpin-line

ri-pushpin-fill

ri-pushpin-2-line

ri-pushpin-2-fill

ri-compass-line

ri-compass-fill

ri-compass-2-line

ri-compass-2-fill

ri-compass-3-line

ri-compass-3-fill

ri-compass-4-line

ri-compass-4-fill

ri-compass-discover-line

ri-compass-discover-fill

ri-anchor-line

ri-anchor-fill

ri-china-railway-line

ri-china-railway-fill

ri-space-ship-line

ri-space-ship-fill

ri-rocket-line

ri-rocket-fill

ri-rocket-2-line

ri-rocket-2-fill

ri-map-line

ri-map-fill

ri-map-2-line

ri-map-2-fill

ri-treasure-map-line

ri-treasure-map-fill

ri-road-map-line

ri-road-map-fill

ri-earth-line

ri-earth-fill

ri-globe-line

ri-globe-fill

ri-parking-line

ri-parking-fill

ri-parking-box-line

ri-parking-box-fill

ri-route-line

ri-route-fill

ri-guide-line

ri-guide-fill

ri-gas-station-line

ri-gas-station-fill

ri-charging-pile-line

ri-charging-pile-fill

ri-charging-pile-2-line

ri-charging-pile-2-fill

ri-car-line

ri-car-fill

ri-car-washing-line

ri-car-washing-fill

ri-roadster-line

ri-roadster-fill

ri-taxi-line

ri-taxi-fill

ri-taxi-wifi-line

ri-taxi-wifi-fill

ri-police-car-line

ri-police-car-fill

ri-bus-line

ri-bus-fill

ri-bus-2-line

ri-bus-2-fill

ri-bus-wifi-line

ri-bus-wifi-fill

ri-truck-line

ri-truck-fill

ri-train-line

ri-train-fill

ri-train-wifi-line

ri-train-wifi-fill

ri-subway-line

ri-subway-fill

ri-subway-wifi-line

ri-subway-wifi-fill

ri-flight-takeoff-line

ri-flight-takeoff-fill

ri-flight-land-line

ri-flight-land-fill

ri-plane-line

ri-plane-fill

ri-sailboat-line

ri-sailboat-fill

ri-ship-line

ri-ship-fill

ri-ship-2-line

ri-ship-2-fill

ri-bike-line

ri-bike-fill

ri-e-bike-line

ri-e-bike-fill

ri-e-bike-2-line

ri-e-bike-2-fill

ri-takeaway-line

ri-takeaway-fill

ri-motorbike-line

ri-motorbike-fill

ri-caravan-line

ri-caravan-fill

ri-walk-line

ri-walk-fill

ri-run-line

ri-run-fill

ri-riding-line

ri-riding-fill

ri-barricade-line

ri-barricade-fill

ri-footprint-line

ri-footprint-fill

ri-traffic-light-line

ri-traffic-light-fill

ri-signal-tower-line

ri-signal-tower-fill

ri-restaurant-line

ri-restaurant-fill

ri-restaurant-2-line

ri-restaurant-2-fill

ri-cup-line

ri-cup-fill

ri-goblet-line

ri-goblet-fill

ri-hotel-bed-line

ri-hotel-bed-fill

ri-navigation-line

ri-navigation-fill

ri-oil-line

ri-oil-fill

ri-direction-line

ri-direction-fill

ri-steering-line

ri-steering-fill

ri-steering-2-line

ri-steering-2-fill

ri-lifebuoy-line

ri-lifebuoy-fill

ri-passport-line

ri-passport-fill

ri-suitcase-line

ri-suitcase-fill

ri-suitcase-2-line

ri-suitcase-2-fill

ri-suitcase-3-line

ri-suitcase-3-fill

ri-luggage-deposit-line

ri-luggage-deposit-fill

ri-luggage-cart-line

ri-luggage-cart-fill

Map

ri-image-line

ri-image-fill

ri-image-2-line

ri-image-2-fill

ri-image-add-line

ri-image-add-fill

ri-image-edit-line

ri-image-edit-fill

ri-landscape-line

ri-landscape-fill

ri-gallery-line

ri-gallery-fill

ri-gallery-upload-line

ri-gallery-upload-fill

ri-video-line

ri-video-fill

ri-movie-line

ri-movie-fill

ri-movie-2-line

ri-movie-2-fill

ri-film-line

ri-film-fill

ri-clapperboard-line

ri-clapperboard-fill

ri-vidicon-line

ri-vidicon-fill

ri-vidicon-2-line

ri-vidicon-2-fill

ri-live-line

ri-live-fill

ri-video-add-line

ri-video-add-fill

ri-video-upload-line

ri-video-upload-fill

ri-video-download-line

ri-video-download-fill

ri-dv-line

ri-dv-fill

ri-camera-line

ri-camera-fill

ri-camera-off-line

ri-camera-off-fill

ri-camera-2-line

ri-camera-2-fill

ri-camera-3-line

ri-camera-3-fill

ri-camera-lens-line

ri-camera-lens-fill

ri-camera-switch-line

ri-camera-switch-fill

ri-polaroid-line

ri-polaroid-fill

ri-polaroid-2-line

ri-polaroid-2-fill

ri-phone-camera-line

ri-phone-camera-fill

ri-webcam-line

ri-webcam-fill

ri-mv-line

ri-mv-fill

ri-music-line

ri-music-fill

ri-music-2-line

ri-music-2-fill

ri-disc-line

ri-disc-fill

ri-album-line

ri-album-fill

ri-dvd-line

ri-dvd-fill

ri-headphone-line

ri-headphone-fill

ri-radio-line

ri-radio-fill

ri-radio-2-line

ri-radio-2-fill

ri-tape-line

ri-tape-fill

ri-mic-line

ri-mic-fill

ri-mic-2-line

ri-mic-2-fill

ri-mic-off-line

ri-mic-off-fill

ri-volume-down-line

ri-volume-down-fill

ri-volume-mute-line

ri-volume-mute-fill

ri-volume-up-line

ri-volume-up-fill

ri-volume-vibrate-line

ri-volume-vibrate-fill

ri-volume-off-vibrate-line

ri-volume-off-vibrate-fill

ri-speaker-line

ri-speaker-fill

ri-speaker-2-line

ri-speaker-2-fill

ri-speaker-3-line

ri-speaker-3-fill

ri-surround-sound-line

ri-surround-sound-fill

ri-broadcast-line

ri-broadcast-fill

ri-notification-line

ri-notification-fill

ri-notification-2-line

ri-notification-2-fill

ri-notification-3-line

ri-notification-3-fill

ri-notification-4-line

ri-notification-4-fill

ri-notification-off-line

ri-notification-off-fill

ri-play-circle-line

ri-play-circle-fill

ri-pause-circle-line

ri-pause-circle-fill

ri-record-circle-line

ri-record-circle-fill

ri-stop-circle-line

ri-stop-circle-fill

ri-eject-line

ri-eject-fill

ri-play-line

ri-play-fill

ri-pause-line

ri-pause-fill

ri-stop-line

ri-stop-fill

ri-rewind-line

ri-rewind-fill

ri-speed-line

ri-speed-fill

ri-skip-back-line

ri-skip-back-fill

ri-skip-forward-line

ri-skip-forward-fill

ri-play-mini-line

ri-play-mini-fill

ri-pause-mini-line

ri-pause-mini-fill

ri-stop-mini-line

ri-stop-mini-fill

ri-rewind-mini-line

ri-rewind-mini-fill

ri-speed-mini-line

ri-speed-mini-fill

ri-skip-back-mini-line

ri-skip-back-mini-fill

ri-skip-forward-mini-line

ri-skip-forward-mini-fill

ri-repeat-line

ri-repeat-fill

ri-repeat-2-line

ri-repeat-2-fill

ri-repeat-one-line

ri-repeat-one-fill

ri-order-play-line

ri-order-play-fill

ri-shuffle-line

ri-shuffle-fill

ri-play-list-line

ri-play-list-fill

ri-play-list-2-line

ri-play-list-2-fill

ri-play-list-add-line

ri-play-list-add-fill

ri-fullscreen-line

ri-fullscreen-fill

ri-fullscreen-exit-line

ri-fullscreen-exit-fill

ri-equalizer-line

ri-equalizer-fill

ri-sound-module-line

ri-sound-module-fill

ri-rhythm-line

ri-rhythm-fill

ri-voiceprint-line

ri-voiceprint-fill

ri-hq-line

ri-hq-fill

ri-hd-line

ri-hd-fill

ri-4k-line

ri-4k-fill

ri-closed-captioning-line

ri-closed-captioning-fill

ri-aspect-ratio-line

ri-aspect-ratio-fill

ri-picture-in-picture-line

ri-picture-in-picture-fill

ri-picture-in-picture-2-line

ri-picture-in-picture-2-fill

ri-picture-in-picture-exit-line

ri-picture-in-picture-exit-fill

Media

ri-apps-line

ri-apps-fill

ri-apps-2-line

ri-apps-2-fill

ri-function-line

ri-function-fill

ri-dashboard-line

ri-dashboard-fill

ri-menu-line

ri-menu-fill

ri-menu-2-line

ri-menu-2-fill

ri-menu-3-line

ri-menu-3-fill

ri-menu-4-line

ri-menu-4-fill

ri-menu-5-line

ri-menu-5-fill

ri-menu-add-line

ri-menu-add-fill

ri-menu-fold-line

ri-menu-fold-fill

ri-menu-unfold-line

ri-menu-unfold-fill

ri-more-line

ri-more-fill

ri-more-2-line

ri-more-2-fill

ri-star-line

ri-star-fill

ri-star-s-line

ri-star-s-fill

ri-star-half-line

ri-star-half-fill

ri-star-half-s-line

ri-star-half-s-fill

ri-settings-line

ri-settings-fill

ri-settings-2-line

ri-settings-2-fill

ri-settings-3-line

ri-settings-3-fill

ri-settings-4-line

ri-settings-4-fill

ri-settings-5-line

ri-settings-5-fill

ri-settings-6-line

ri-settings-6-fill

ri-list-settings-line

ri-list-settings-fill

ri-forbid-line

ri-forbid-fill

ri-forbid-2-line

ri-forbid-2-fill

ri-information-line

ri-information-fill

ri-error-warning-line

ri-error-warning-fill

ri-question-line

ri-question-fill

ri-alert-line

ri-alert-fill

ri-spam-line

ri-spam-fill

ri-spam-2-line

ri-spam-2-fill

ri-spam-3-line

ri-spam-3-fill

ri-checkbox-blank-line

ri-checkbox-blank-fill

ri-checkbox-line

ri-checkbox-fill

ri-checkbox-indeterminate-line

ri-checkbox-indeterminate-fill

ri-add-box-line

ri-add-box-fill

ri-checkbox-blank-circle-line

ri-checkbox-blank-circle-fill

ri-checkbox-circle-line

ri-checkbox-circle-fill

ri-indeterminate-circle-line

ri-indeterminate-circle-fill

ri-add-circle-line

ri-add-circle-fill

ri-close-circle-line

ri-close-circle-fill

ri-radio-button-line

ri-radio-button-fill

ri-checkbox-multiple-blank-line

ri-checkbox-multiple-blank-fill

ri-checkbox-multiple-line

ri-checkbox-multiple-fill

ri-check-line

ri-check-fill

ri-check-double-line

ri-check-double-fill

ri-close-line

ri-close-fill

ri-add-line

ri-add-fill

ri-subtract-line

ri-subtract-fill

ri-divide-line

ri-divide-fill

ri-arrow-left-up-line

ri-arrow-left-up-fill

ri-arrow-up-line

ri-arrow-up-fill

ri-arrow-right-up-line

ri-arrow-right-up-fill

ri-arrow-right-line

ri-arrow-right-fill

ri-arrow-right-down-line

ri-arrow-right-down-fill

ri-arrow-down-line

ri-arrow-down-fill

ri-arrow-left-down-line

ri-arrow-left-down-fill

ri-arrow-left-line

ri-arrow-left-fill

ri-arrow-up-circle-line

ri-arrow-up-circle-fill

ri-arrow-right-circle-line

ri-arrow-right-circle-fill

ri-arrow-down-circle-line

ri-arrow-down-circle-fill

ri-arrow-left-circle-line

ri-arrow-left-circle-fill

ri-arrow-up-s-line

ri-arrow-up-s-fill

ri-arrow-down-s-line

ri-arrow-down-s-fill

ri-arrow-right-s-line

ri-arrow-right-s-fill

ri-arrow-left-s-line

ri-arrow-left-s-fill

ri-arrow-drop-up-line

ri-arrow-drop-up-fill

ri-arrow-drop-right-line

ri-arrow-drop-right-fill

ri-arrow-drop-down-line

ri-arrow-drop-down-fill

ri-arrow-drop-left-line

ri-arrow-drop-left-fill

ri-arrow-left-right-line

ri-arrow-left-right-fill

ri-arrow-up-down-line

ri-arrow-up-down-fill

ri-arrow-go-back-line

ri-arrow-go-back-fill

ri-arrow-go-forward-line

ri-arrow-go-forward-fill

ri-download-line

ri-download-fill

ri-upload-line

ri-upload-fill

ri-download-2-line

ri-download-2-fill

ri-upload-2-line

ri-upload-2-fill

ri-download-cloud-line

ri-download-cloud-fill

ri-download-cloud-2-line

ri-download-cloud-2-fill

ri-upload-cloud-line

ri-upload-cloud-fill

ri-upload-cloud-2-line

ri-upload-cloud-2-fill

ri-login-box-line

ri-login-box-fill

ri-logout-box-line

ri-logout-box-fill

ri-logout-box-r-line

ri-logout-box-r-fill

ri-login-circle-line

ri-login-circle-fill

ri-logout-circle-line

ri-logout-circle-fill

ri-logout-circle-r-line

ri-logout-circle-r-fill

ri-refresh-line

ri-refresh-fill

ri-shield-line

ri-shield-fill

ri-shield-cross-line

ri-shield-cross-fill

ri-shield-flash-line

ri-shield-flash-fill

ri-shield-star-line

ri-shield-star-fill

ri-shield-user-line

ri-shield-user-fill

ri-shield-keyhole-line

ri-shield-keyhole-fill

ri-shield-check-line

ri-shield-check-fill

ri-delete-back-line

ri-delete-back-fill

ri-delete-back-2-line

ri-delete-back-2-fill

ri-delete-bin-line

ri-delete-bin-fill

ri-delete-bin-2-line

ri-delete-bin-2-fill

ri-delete-bin-3-line

ri-delete-bin-3-fill

ri-delete-bin-4-line

ri-delete-bin-4-fill

ri-delete-bin-5-line

ri-delete-bin-5-fill

ri-delete-bin-6-line

ri-delete-bin-6-fill

ri-delete-bin-7-line

ri-delete-bin-7-fill

ri-lock-line

ri-lock-fill

ri-lock-2-line

ri-lock-2-fill

ri-lock-password-line

ri-lock-password-fill

ri-lock-unlock-line

ri-lock-unlock-fill

ri-eye-line

ri-eye-fill

ri-eye-off-line

ri-eye-off-fill

ri-eye-2-line

ri-eye-2-fill

ri-eye-close-line

ri-eye-close-fill

ri-search-line

ri-search-fill

ri-search-2-line

ri-search-2-fill

ri-search-eye-line

ri-search-eye-fill

ri-zoom-in-line

ri-zoom-in-fill

ri-zoom-out-line

ri-zoom-out-fill

ri-find-replace-line

ri-find-replace-fill

ri-share-line

ri-share-fill

ri-share-box-line

ri-share-box-fill

ri-share-circle-line

ri-share-circle-fill

ri-share-forward-line

ri-share-forward-fill

ri-share-forward-2-line

ri-share-forward-2-fill

ri-share-forward-box-line

ri-share-forward-box-fill

ri-side-bar-line

ri-side-bar-fill

ri-time-line

ri-time-fill

ri-timer-line

ri-timer-fill

ri-timer-2-line

ri-timer-2-fill

ri-timer-flash-line

ri-timer-flash-fill

ri-alarm-line

ri-alarm-fill

ri-history-line

ri-history-fill

ri-thumb-down-line

ri-thumb-down-fill

ri-thumb-up-line

ri-thumb-up-fill

ri-alarm-warning-line

ri-alarm-warning-fill

ri-notification-badge-line

ri-notification-badge-fill

ri-toggle-line

ri-toggle-fill

ri-filter-line

ri-filter-fill

ri-filter-2-line

ri-filter-2-fill

ri-filter-3-line

ri-filter-3-fill

ri-filter-off-line

ri-filter-off-fill

ri-loader-line

ri-loader-fill

ri-loader-2-line

ri-loader-2-fill

ri-loader-3-line

ri-loader-3-fill

ri-loader-4-line

ri-loader-4-fill

ri-loader-5-line

ri-loader-5-fill

ri-external-link-line

ri-external-link-fill

System

ri-user-line

ri-user-fill

ri-user-2-line

ri-user-2-fill

ri-user-3-line

ri-user-3-fill

ri-user-4-line

ri-user-4-fill

ri-user-5-line

ri-user-5-fill

ri-user-6-line

ri-user-6-fill

ri-user-smile-line

ri-user-smile-fill

ri-account-box-line

ri-account-box-fill

ri-account-circle-line

ri-account-circle-fill

ri-account-pin-box-line

ri-account-pin-box-fill

ri-account-pin-circle-line

ri-account-pin-circle-fill

ri-user-add-line

ri-user-add-fill

ri-user-follow-line

ri-user-follow-fill

ri-user-unfollow-line

ri-user-unfollow-fill

ri-user-shared-line

ri-user-shared-fill

ri-user-shared-2-line

ri-user-shared-2-fill

ri-user-received-line

ri-user-received-fill

ri-user-received-2-line

ri-user-received-2-fill

ri-user-location-line

ri-user-location-fill

ri-user-search-line

ri-user-search-fill

ri-user-settings-line

ri-user-settings-fill

ri-user-star-line

ri-user-star-fill

ri-user-heart-line

ri-user-heart-fill

ri-admin-line

ri-admin-fill

ri-contacts-line

ri-contacts-fill

ri-group-line

ri-group-fill

ri-group-2-line

ri-group-2-fill

ri-team-line

ri-team-fill

ri-user-voice-line

ri-user-voice-fill

ri-emotion-line

ri-emotion-fill

ri-emotion-2-line

ri-emotion-2-fill

ri-emotion-happy-line

ri-emotion-happy-fill

ri-emotion-normal-line

ri-emotion-normal-fill

ri-emotion-unhappy-line

ri-emotion-unhappy-fill

ri-emotion-laugh-line

ri-emotion-laugh-fill

ri-emotion-sad-line

ri-emotion-sad-fill

ri-skull-line

ri-skull-fill

ri-skull-2-line

ri-skull-2-fill

ri-men-line

ri-men-fill

ri-women-line

ri-women-fill

ri-travesti-line

ri-travesti-fill

ri-genderless-line

ri-genderless-fill

ri-open-arm-line

ri-open-arm-fill

ri-body-scan-line

ri-body-scan-fill

ri-parent-line

ri-parent-fill

ri-robot-line

ri-robot-fill

ri-aliens-line

ri-aliens-fill

ri-bear-smile-line

ri-bear-smile-fill

ri-mickey-line

ri-mickey-fill

ri-criminal-line

ri-criminal-fill

ri-ghost-line

ri-ghost-fill

ri-ghost-2-line

ri-ghost-2-fill

ri-ghost-smile-line

ri-ghost-smile-fill

ri-star-smile-line

ri-star-smile-fill

ri-spy-line

ri-spy-fill

User & Faces

ri-sun-line

ri-sun-fill

ri-moon-line

ri-moon-fill

ri-flashlight-line

ri-flashlight-fill

ri-cloudy-line

ri-cloudy-fill

ri-cloudy-2-line

ri-cloudy-2-fill

ri-mist-line

ri-mist-fill

ri-foggy-line

ri-foggy-fill

ri-cloud-windy-line

ri-cloud-windy-fill

ri-windy-line

ri-windy-fill

ri-rainy-line

ri-rainy-fill

ri-drizzle-line

ri-drizzle-fill

ri-showers-line

ri-showers-fill

ri-heavy-showers-line

ri-heavy-showers-fill

ri-thunderstorms-line

ri-thunderstorms-fill

ri-hail-line

ri-hail-fill

ri-snowy-line

ri-snowy-fill

ri-sun-cloudy-line

ri-sun-cloudy-fill

ri-moon-cloudy-line

ri-moon-cloudy-fill

ri-tornado-line

ri-tornado-fill

ri-typhoon-line

ri-typhoon-fill

ri-haze-line

ri-haze-fill

ri-haze-2-line

ri-haze-2-fill

ri-sun-foggy-line

ri-sun-foggy-fill

ri-moon-foggy-line

ri-moon-foggy-fill

ri-moon-clear-line

ri-moon-clear-fill

ri-temp-hot-line

ri-temp-hot-fill

ri-temp-cold-line

ri-temp-cold-fill

ri-celsius-line

ri-celsius-fill

ri-fahrenheit-line

ri-fahrenheit-fill

ri-fire-line

ri-fire-fill

ri-blaze-line

ri-blaze-fill

ri-earthquake-line

ri-earthquake-fill

ri-flood-line

ri-flood-fill

ri-meteor-line

ri-meteor-fill

ri-rainbow-line

ri-rainbow-fill

Weather

ri-basketball-line

ri-basketball-fill

ri-bell-line

ri-bell-fill

ri-billiards-line

ri-billiards-fill

ri-boxing-line

ri-boxing-fill

ri-cake-line

ri-cake-fill

ri-cake-2-line

ri-cake-2-fill

ri-cake-3-line

ri-cake-3-fill

ri-door-lock-line

ri-door-lock-fill

ri-door-lock-box-line

ri-door-lock-box-fill

ri-football-line

ri-football-fill

ri-game-line

ri-game-fill

ri-handbag-line

ri-handbag-fill

ri-key-line

ri-key-fill

ri-key-2-line

ri-key-2-fill

ri-knife-line

ri-knife-fill

ri-knife-blood-line

ri-knife-blood-fill

ri-lightbulb-line

ri-lightbulb-fill

ri-lightbulb-flash-line

ri-lightbulb-flash-fill

ri-outlet-line

ri-outlet-fill

ri-outlet-2-line

ri-outlet-2-fill

ri-ping-pong-line

ri-ping-pong-fill

ri-plug-line

ri-plug-fill

ri-plug-2-line

ri-plug-2-fill

ri-reserved-line

ri-reserved-fill

ri-shirt-line

ri-shirt-fill

ri-sword-line

ri-sword-fill

ri-t-shirt-line

ri-t-shirt-fill

ri-t-shirt-2-line

ri-t-shirt-2-fill

ri-t-shirt-air-line

ri-t-shirt-air-fill

ri-umbrella-line

ri-umbrella-fill

ri-character-recognition-line

ri-character-recognition-fill

ri-voice-recognition-line

ri-voice-recognition-fill

ri-leaf-line

ri-leaf-fill

ri-plant-line

ri-plant-fill

ri-seedling-line

ri-seedling-fill

ri-recycle-line

ri-recycle-fill

ri-scales-line

ri-scales-fill

ri-scales-2-line

ri-scales-2-fill

ri-scales-3-line

ri-scales-3-fill

ri-fridge-line

ri-fridge-fill

ri-wheelchair-line

ri-wheelchair-fill

ri-cactus-line

ri-cactus-fill

ri-door-line

ri-door-fill

ri-door-open-line

ri-door-open-fill

ri-door-closed-line

ri-door-closed-fill

Others

- + \ No newline at end of file diff --git a/docs/docs/webdev/Guidelines/images/index.html b/docs/docs/webdev/Guidelines/images/index.html index 8b8eb1a017..24467a6f44 100644 --- a/docs/docs/webdev/Guidelines/images/index.html +++ b/docs/docs/webdev/Guidelines/images/index.html @@ -5,7 +5,7 @@ Use of images | EEA Design System - + @@ -14,7 +14,7 @@ To acknowledge a copyrighted work add three things to the image, the copyright symbol, the year of the copyright, and the name of the copyright holder.

Best practices

  • your visual content is relevant to the topic of the webpage
  • only add an image whenever it adds value to the webpage
  • place images near the relevant text
  • the most important image should be near the top of the webpage
  • avoid embedding text in images, not all users can access them (page translation tools can't read images)
  • text in HTML, provide alt text for images; follow rules of accessibility
  • create good content is equally important as visual content for images

Widely supported image formats

File type (short)File type (long)File extension
GIFgraphics Interchange Format.gif
JPEGjoint Photographic Expert Group image.jpeg .jpg
PNGportable Network Graphics.png
SVGscalable Vector Graphics.svg

Raster graphic

Raster images are pixel-based. When you scale up a raster image you'll see jagged and blurry edges.

GIF (Graphics Interchange Format)

  • fewer colours, file size is smaller than JPEG
  • interlaced progressive loading, low-quality version first, more detailed image is loaded next
  • fewer colours, file size is smaller than JPEG
  • does not lose any data with compression
  • best use for web graphics with few colours only, and line drawings

JPG/JPEG (Joint Photographic-Experts-Group)

  • can display millions of colours, use JPEG format for photographs, still images, shading with light and dark
  • use JPEG when file size is more important than the quality of the image
  • optimising JPEG images; 60% - 75% is usually optimal for web publishing 16-bit data format
  • compatible across many platforms and image editors

PNG (Portable Network Graphics)

  • support transparency (alpha channel), allow a translucent look
  • lossless compression, no loss of data
  • manage high-contrast or detailed images better than JPEG
  • they can go down to very small file sizes when there are limited colours, use an 8-bit colour palette instead of a 24 colour palette
  • PNG images can be used in any colour background still maintain the original appearance

Vector graphic

Vector image format can produce results with high fidelity at every resolution setting. It is an ideal format for high-resolution screens. If you zoom into a vector graphic it will always remain the same quality.

SVG (Scalable Vector Graphics)

  • SVG is in vector format – it does not lose any data when compressed
  • SVG formats are supported by most contemporary browsers
  • the image file size is lightweight and compressible supports transparency

Editing visuals

  • don't apply effects, gradients, borders or filters. It can make the picture look manipulated
  • don't pick photos with frames, rounded corners or drop shadows
  • cropping. Pay attention to the copyright. In some cases you need prior consent from the author to alter the image
- + \ No newline at end of file diff --git a/docs/docs/webdev/Guidelines/intro/index.html b/docs/docs/webdev/Guidelines/intro/index.html index 9eb5d3a9a6..2e6c3d071c 100644 --- a/docs/docs/webdev/Guidelines/intro/index.html +++ b/docs/docs/webdev/Guidelines/intro/index.html @@ -5,14 +5,14 @@ Intro | EEA Design System - +

Intro

Guidelines

The DS v1 is the EEA's design system, created with a set of guiding principles that followed throughout the process. By following a user-centered design approach and best UX practices, the DS v1 is the result of in-depth research into the users' needs and goals, offering solutions that are assessed, tested and revised continuously. All components included in the DS v1 follow the Web Content Accessibility Guidelines (WCAG).

The main characteristics of our design system are:

  • Minimal use of drop shadows
  • Sharp edges and corners
  • Uncluttered, distraction-free design
  • High readability with clear typography
  • Easily adjusted for responsive design

We emphasize more on functionality rather than appearance and in parallel we try to offer a consistent appearance irrespective of the screen resolution and types of devices. Trying not to use unnecessary designing elements, we focus on faster site designing and minimum loading time.

- + \ No newline at end of file diff --git a/docs/docs/webdev/Guidelines/spacing/index.html b/docs/docs/webdev/Guidelines/spacing/index.html index 1d8202cc30..2538e006b4 100644 --- a/docs/docs/webdev/Guidelines/spacing/index.html +++ b/docs/docs/webdev/Guidelines/spacing/index.html @@ -5,7 +5,7 @@ Spacing | EEA Design System - + @@ -13,7 +13,7 @@

Spacing

To ensure that layouts are visually balanced, most measurements align to 8px, which corresponds to both spacing and the overall layout. Consistent spacing creates visual balance that makes the user interface (UI) easier for merchants to scan. Apply consistent spacing to improve the quality of the UI. Components are sized in 8px increments, ensuring a consistent visual rhythm across each screen. Smaller elements, such as icons, can align to a 4px grid, while typography can fall on a 4px baseline grid, meaning that each line’s typographic baseline is spaced in increments of 4px from its neighbor.

Principles

Create visual rhythm
We use incrementally measured spacing to create harmonious arrangements of components and text. This gives the elements a predictable rhythm, which makes the experience as a whole feel intentional and well designed.

Precise but flexible
Beyond mathematical precision, spacing also reacts to the objects it surrounds, giving more space to larger objects, less to small. Optical adjustments can also be made if an element looks off and the spacing needs a nudge to make things feel right.

Two types of spacing scale

Component Spacing
Controls the spacing inside the components.
For components use smaller increments. ( 4px, 8px, 12px, 16px, 20px, 24px, 32px, 36px, 40px, 48px)

Layout Spacing
Controls space between the components.
For layout scale use larger increments (16px, 24px, 32px, 48px, 64px, 96px )

Spacing Gaps in pixels

Token namePixelsTypically used
space-0251pxnot typically used
space-052pxnot typically used
space-14pxseparate related elements and for small padding
space-28pxonly for right and left padding of buttons, form elements and horizontal tabs
space-312pxto separate unrelated elements or groups and for normal padding
space-416pxto separate sub-sections of content
space-520pxto separate sub-sections of content
space-624pxto separate sub-sections of content
space-728pxto separate sections of content
space-832pxto separate sections of content
space-936pxto separate sections of content
space-1040px
space-1144px
space-1248px
space-1352px
space-1456px
space-1560px
space-1664px
space-1768px
space-1872px
space-1976px
space-2080px
space-2496px

Spacing Gaps in rem

Token nameRem
rem-space-0250.063rem
rem-space-050.125rem
rem-space-10.25rem
rem-space-20.5rem
rem-space-30.75rem
rem-space-41rem
rem-space-51.25rem
rem-space-61.5rem
rem-space-71.75rem
rem-space-82rem
rem-space-92.25rem
rem-space-102.5rem
rem-space-112.75rem
rem-space-123rem
rem-space-133.25rem
rem-space-143.5rem
rem-space-153.75rem
rem-space-164rem
rem-space-174.25rem
rem-space-184.5rem
rem-space-194.75rem
rem-space-205rem
rem-space-246rem

Spacing Gaps in em

Token nameRem
em-space-0250.063em
em-space-050.125em
em-space-10.25em
em-space-20.5em
em-space-30.75em
em-space-41em
em-space-51.25em
em-space-61.5em
em-space-71.75em
em-space-82em
em-space-92.25em
em-space-102.5em
em-space-112.75em
em-space-123em
em-space-133.25em
em-space-143.5em
em-space-153.75em
em-space-164em
em-space-174.25em
em-space-184.5em
em-space-194.75em
em-space-205em
em-space-246em
- + \ No newline at end of file diff --git a/docs/docs/webdev/Guidelines/typography/index.html b/docs/docs/webdev/Guidelines/typography/index.html index 77b3a3034f..321b7619b1 100644 --- a/docs/docs/webdev/Guidelines/typography/index.html +++ b/docs/docs/webdev/Guidelines/typography/index.html @@ -5,7 +5,7 @@ Typography | EEA Design System - + @@ -16,7 +16,7 @@ but 150% tends to be the most quoted sweet spot (and a WCAG recommendation). You should experiment to see what looks best with your text. The line-height value is always divisible by 4 to support the grid.

This is why for body text we use 150% line height, while for headers we use 120% due to the larger font size where using 150% would add too much space between the heading lines.


Letter spacing

Letter spacing (also known as character spacing or tracking ) is the adjustment of the horizontal white space between the letters in a block of text. Unlike kerning, which affects only designated pairs of letters, letterspacing affects every pair. By adjusting letter spacing to the environment you are working with you will help readers consume your information faster, and more efficiently. The fun part is that they won’t even notice it!

Headings -0.015em (-1.5%)

Body 0%

Caption and Small text 0.01em (1%)


Text color

Body text color is blue-grey-5 (#3D5265)

Color also plays a key role in an interface’s typographic hierarchy, often by established types like:

  • Brand colors and supplementary colors, for most interface text whether body or heading.
  • Interactive, not just for links but also flat buttons, tab labels, and more
  • Disabled, often resulting is especially lower contrast treatments
  • Error, usually red, for the highest contrast with its surroundings

Line length

Line-length is the number of characters displayed in a single line. Lines that are too long or too short can distract readers. For readability, limit to no more than 80 characters including spaces for desktop. Line length for mobile is recommended to use 40 to 60 characters including space per line.


Base Font Size

We set 16px (1rem) as the base font size for body text to ensure readability. It is the default font size for most browsers.


Desktop Styles

Heading 1

Font Size: 44px or 2.75rem
Letter spacing: -0.015em (-1.5%)
Line height: 1.2 (120%)

Heading 2

Font Size: 32px or 2rem
Letter spacing: -0.015em (-1.5%)
Line height: 1.2 (120%)

Heading 3

Font Size: 26px or 1.625rem
Letter spacing: -0.015em (-1.5%)
Line height: 1.2 (120%)

Heading 4

Font Size: 20px or 1.25rem
Letter spacing: -0.015em (-1.5%)
Line height: 1.2 (120%)
Heading 5
Font Size: 18px or 1.125rem
Letter spacing: -0.015em (-1.5%)
Line height: 1.2 (120%)

Body text

Font Size: 16px or 1rem
Letter spacing: 0 (0%)
Line height: 1.5 (150%)

Caption text

Font Size: 14px or 0.875rem
Letter spacing: 0.01 (1%)
Line height: 1.5 (150%)

Small text

Font Size: 12px or 0.75rem
Letter spacing: 0.01 (1%)
Line height: 1.5 (150%)

Mobile Styles

Heading 1

Font Size: 30px or 1.875rem
Letter spacing: -0.015em (-1.5%)
Line height: 1.2 (120%)

Heading 2

Font Size: 24px or 1.5rem
Letter spacing: -0.015em (-1.5%)
Line height: 1.2 (120%)

Heading 3

Font Size: 20px or 1.25rem
Letter spacing: -0.015em (-1.5%)
Line height: 1.2 (120%)

Heading 4

Font Size: 18px or 1.125rem
Letter spacing: -0.015em (-1.5%)
Line height: 1.2 (120%)

Body

Font Size: 16px or 1rem
Letter spacing: 0 (0%)
Line height: 1.5 (150%)

Caption

Font Size: 14px or 0.875rem
Letter spacing: 0.01em (1%)
Line height: 1.5 (150%)

Small text

Font Size: 12px or 0.75rem
Letter spacing: 0.01em (1%)
Line height: 1.5 (150%)

Typography tokens

Weight

Token nameValueStyle
font-weight-1100Thin
font-weight-2200Light
font-weight-3300Book
font-weight-4400Regular
font-weight-5500Medium
font-weight-6600SemiBold
font-weight-7700Bold
font-weight-8800ExtraBold
font-weight-9900Black

Line height

Token nameValue(no unit)
font-lineheight-00.95
font-lineheight-01.1
font-lineheight-11.2
font-lineheight-21.375
font-lineheight-31.5
font-lineheight-41.75
font-lineheight-52

Letter spacing

Token nameValue(em)
font-letterspacing-000-.02
font-letterspacing-00-.015
font-letterspacing-0-.01
font-letterspacing-1.01
font-letterspacing-2.015
font-letterspacing-3.02
font-letterspacing-4.075
font-letterspacing-5.15

Font size

Token nameValue(rem)Value(px)
font-size-00.7512
font-size-0.87514
font-size-1116
font-size-21.12518
font-size-31.2520
font-size-41.524
font-size-51.62526
font-size-61.87530
font-size-7232
font-size-82.2536
font-size-92.540
font-size-102.7544

Font size fluid

Token nameValue
font-size-fluid-0clamp(1.125rem, 2vw, 1.25rem)
font-size-fluid-1clamp(1.25rem, 4vw, 1.625rem)
font-size-fluid-2clamp(1.5rem, 6vw, 2rem)
font-size-fluid-3clamp(1.875rem, 9vw, 2.75rem)
- + \ No newline at end of file diff --git a/docs/docs/webdev/Resources/developer-guidelines/index.html b/docs/docs/webdev/Resources/developer-guidelines/index.html index 5cabc5871d..dce137493b 100644 --- a/docs/docs/webdev/Resources/developer-guidelines/index.html +++ b/docs/docs/webdev/Resources/developer-guidelines/index.html @@ -5,7 +5,7 @@ Developer Guidelines | EEA Design System - + @@ -71,7 +71,7 @@ guidelines as to what combinations of props and variations are allowed, to ensure a consistent look and feel. One place to document these constraints is in the control options we have in Storybook.

- + \ No newline at end of file diff --git a/docs/docs/webdev/Resources/theming-guidelines/index.html b/docs/docs/webdev/Resources/theming-guidelines/index.html index 1ed7b4e1bf..50037364d8 100644 --- a/docs/docs/webdev/Resources/theming-guidelines/index.html +++ b/docs/docs/webdev/Resources/theming-guidelines/index.html @@ -5,7 +5,7 @@ Theming Guidelines | EEA Design System - + @@ -28,7 +28,7 @@ it's simply a job of changing one global variable:

// site.variables
/* This adjusts the meta alignment across all elements */
@metaAlign: right;

The same is true with colors used in components, try to avoid custom values set on components only as they should be part of the site.variables color pallete.

Semantic UI global setting example

We see this rule played out in many places within site.variables:

// site.variables
/*--------------
Form Input
---------------*/
/* This adjusts the default form input across all elements */
@inputBackground : @white;

Then within form.variables we have several rules that make use of the global setting:

// form.variables
/* Text Area */
@textAreaBackground: @inputBackground;

/* Inverted */
@invertedInputBackground: @inputBackground;

Check components design when having odd numbers or images

As written down in the Card component issue, if your component accepts images consider how they would adapt in case there is a mix between portrait and landscapei images.

What about situations where you have an odd number of elements or the body of the components differ in size?

The components need to be checked for such situations and to ensure they are flexible to deal with these mix and match elements.

Ex:

If the card is flex based and the parent wrapper is flex as well, consider adding a max-height to the card body or image wrapper so that they all keep a standard size.

Code formatting

  • CSS and less files should be formatted using prettier. Indent space will be 2 spaces.
  • Files should be edited as Unix files, with LF line endings.
- + \ No newline at end of file diff --git a/docs/docs/webdev/Templates/Grid/index.html b/docs/docs/webdev/Templates/Grid/index.html index 40d725ea12..6ebf165166 100644 --- a/docs/docs/webdev/Templates/Grid/index.html +++ b/docs/docs/webdev/Templates/Grid/index.html @@ -5,7 +5,7 @@ Grid | EEA Design System - + @@ -16,7 +16,7 @@

Don’ts

Do not make gutters too large or the same width as the columns. Oversized gutters will not leave enough room for content and may prevent a layout from appearing unified.

Breakpoints

A breakpoint is the screen size threshold determined by specific layout requirements. At a given breakpoint range, the layout adjusts to suit the screen size and orientation. ΕΕΑ provides responsive layouts based on 4-column, 8-column, and 12-column grids, available for use across different screens, devices, and orientations. Each breakpoint range determines the number of columns, and recommended margins and gutters for each display size.

BreakpointsColumnsGuttersMargins
Mobile320-480px420px or 1.25rem30px or 1.875rem
Tablet481-835px8 20px or 1.25rem40px or 2.5rem
Desktop1025px and above1220px or 1.25rem140px or 8.75rem
- + \ No newline at end of file diff --git a/docs/docs/webdev/Templates/PageHeader/index.html b/docs/docs/webdev/Templates/PageHeader/index.html index 425d88f90c..1ec0db9b7a 100644 --- a/docs/docs/webdev/Templates/PageHeader/index.html +++ b/docs/docs/webdev/Templates/PageHeader/index.html @@ -5,13 +5,13 @@ Page Header | EEA Design System - +

Page Header

The page header component provides users with the context of the page. It is always placed just below the site header.

Anatomy

ComponentsMandatoryOptional
Page titleyesno
Meta (content type, published date, modified date, reading time)noyes
Download - Bookmark actionsnoyes
Breadcrumb
The Breadcrumb component provides information on the page and its relationship to the site's hierarchy and structure.
It is optional if your website's navigational structure has less than 3 levels.
noyes
Image copyrightsyesno

Do's

  • ensure the pages contain all the components and elements in the anatomy table above
  • always use a page header when building your internal pages
  • when choosing a background image, make sure it highlights the main object related to the content and is meaningful
  • choose image copyright text colors accordingly, use light font color on darker images and darker font color on lighter ones

Don'ts

  • don't use more than one-page header per page
  • do not use a background image unless there is a communication need, as it might be a distraction

When to use

  • to highlight the topic of the page, or to show important information about the page

When not to use

  • the page header is not used for the homepage of the website
- + \ No newline at end of file diff --git a/docs/docs/webdev/Templates/SiteFooter/index.html b/docs/docs/webdev/Templates/SiteFooter/index.html index 329a313e43..9789769fe3 100644 --- a/docs/docs/webdev/Templates/SiteFooter/index.html +++ b/docs/docs/webdev/Templates/SiteFooter/index.html @@ -5,13 +5,13 @@ Site Footer | EEA Design System - +
-

Site Footer

The core footer provides supplementary information such as copyright, legal, privacy, social media, contact information and links to other important sites within the EEA. It is always placed at the bottom of every page. Always use a footer when building your page

Anatomy

Νο.ComponentsMandatoryDescription
1EEA logoyesLogo of European Environment Agency (EEA)
2EIONET logoyesLogo of European Environment Information and Observation Network
3Contact information
yesLinks to the associated services available through the EEA site
4Social mediayesLinks to social EEA's social media
5Environmental information systemsyesEuropean Information Systems
6Legal navigationyesContains legal information links - consistent throughout the family sites
7Content owner detailsyesIndicates ownership over the site's content

Do's

  • make sure the footer contain all the elements in the anatomy table above

Don'ts

  • don't use more than one footer per page
- +

Site Footer

The core footer provides supplementary information such as copyright, legal, privacy, social media, contact information and links to other important sites within the EEA. It is always placed at the bottom of every page. Always use a footer when building your page

Anatomy

Νο.ComponentsMandatoryDescription
1EEA logoyesLogo of European Environment Agency (EEA)
2EIONET logoyesLogo of European Environment Information and Observation Network
3Contact information
yesLinks to the associated services available through the EEA site
4Social mediayesLinks to social EEA's social media
5Environmental information systemsyesEuropean Information Systems
6Legal navigationyesContains legal information links - consistent throughout the family sites
7Content owner detailsyesIndicates ownership over the site's content

Do's

  • make sure the footer contain all the elements in the anatomy table above

Don'ts

  • don't use more than one footer per page
+ \ No newline at end of file diff --git a/docs/docs/webdev/Templates/SiteHeader/index.html b/docs/docs/webdev/Templates/SiteHeader/index.html index 6250bb27df..5d6bc6a451 100644 --- a/docs/docs/webdev/Templates/SiteHeader/index.html +++ b/docs/docs/webdev/Templates/SiteHeader/index.html @@ -5,13 +5,13 @@ Site Header | EEA Design System - +

Site Header

The EEA header shows users that they are on EEA portal and which service they are using.

Anatomy

Νο.ComponentsMandatoryDescription
1Official EU website statementyesAll official European Union website addresses are in the europa.eu domain
2Environmental Information systemsyesComplete list of EEA's thematic websites
3Languages
yesLanguage select
4EEA IdentityyesLogo of European Environmental Agency
5MenuyesMain navigation of the website
6SearchyesEnables the user to search and retrieve related information from using keywords

Do’s

  • You must use the EEA header at the top of every page if your service is being hosted on one of these domains:
    • Eea.europa.eu
  • Make sure that contain all mandatory element from the Anatomy table

Dont’s

  • You must not use the EEA header if your service is not being hosted in one of the above domains.
- + \ No newline at end of file diff --git a/docs/docs/webdev/Utilities/intro/index.html b/docs/docs/webdev/Utilities/intro/index.html index fdb0306dfb..60e5d2a815 100644 --- a/docs/docs/webdev/Utilities/intro/index.html +++ b/docs/docs/webdev/Utilities/intro/index.html @@ -5,13 +5,13 @@ Utilities | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/whatsnew/index.html b/docs/docs/whatsnew/index.html index f17f464eb1..6f12ce25de 100644 --- a/docs/docs/whatsnew/index.html +++ b/docs/docs/whatsnew/index.html @@ -5,13 +5,13 @@ What's new | EEA Design System - +
-

What's new

EEA Design System (1.0)

Components ready to be used

The following components are ready to be used as Volto blocks, slate integration, or via the advanced block styler:

  • Accordion block
  • Call to Action block
  • Callout - part of the Description block, slate
  • Card - part of the Teaser block and Listing block, it includes several variations like round card e.g., used for Avatar
  • Divider block
  • Headings slate
  • Hero block
  • Item block - used for text with an icon (remixicon or custom SVG/image) on the left/right
  • List slate - ordered and unordered
  • Quote block
  • Statistic block
  • Tag block
  • Table block
  • Tabs block
  • Timeline block

Future releases

Below is a non-exhaustive list of the work-in-progress which is planned for future releases:

  • Navigation Portlet (used on the left/right hand of content)
  • Spacing/padding system. We want to add the ability for editors to consistently apply various spacing/padding on certain components in order to allow a better alignment when components are used together.
  • Improve docusaurus and storybook with more components, controls, and variations in order to better reflect what is possible in Volto.

Generated by auto-changelog.

Unreleased - 2023-03-30T19:12:41.039Z

💅 Enhancements

  • change(breadcrumbs,mega-menu): better screen readers support, see links instead of groups #309 from eea/firefox-accessibility-tab-issues d6b0b4a
  • refactor(megaMenu): align menu items with demo site for better testing 82a5c84
  • refactor(breadcrumbs): updates on structure and story for accessibility 770c8c0
  • refactor(megaMenu): Restructure Topics and Countries lists d816e7a
  • change(mega-menu): use lists for navigation, enhance voice over support for better accessibility d13137f
  • refactor(header): firefox accessibility errors fix c7d35b9
  • change(breadcrumbs): label modification for better screen reader output c967bef
  • refactor(megaMenu): clean up function after test 883eb73
  • change(mega-menu): added code to align countries left column subtitle with the right column 1aa33dd
  • change(mega-menu): sub-title padding tweaks for better spacing normalization e08668d
  • change(breadcrumbs): fixed sizing of breadcrumbs list items 1761e98

🏠 Internal changes

  • style(megaMenu): remove comments and unused properties fa5f8f8

1.0.6 - 2023-03-29

🚀 New Features

  • feat: add viewport-(width/height) less functions and fixed banner image url #329 from eea/develop e8e70bd
  • feat: add viewport-(width/height) less functions 68300a3

💅 Enhancements

  • change(docusaurus): set full class name for remix icons f435e10
  • refactor(Banner.jsx): use flattenToAppURL helper function to get image source URL 24b13d7

🏠 Internal changes

  • style(theme): update container width and margins in eea theme 3e4446a

🛠️ Others

  • horizontal overflow hidden in view mode f395f27

1.0.5 - 2023-03-28

🚀 New Features

  • feat: improve full-width class 70bba7e

🐛 Bug Fixes

  • fix(banner): Add missing divider for time tag #327 from eea/banner-metadata c46a583
  • fix(banner): Add missing divider for time tag 7d68c39

1.0.4 - 2023-03-27

🚀 New Features

  • feat(copyright): Add copyright prefix - Image - refs #250724 6a72772

🏠 Internal changes

  • style(copyright): Cleanup useless min-height - refs #250724 f2457df

🛠️ Others

1.0.3 - 2023-03-24

🐛 Bug Fixes

  • fix: improve full-width class 9322259
  • fix(header): Remove z-index from subsite logo #320 from eea/subsite-logo 5091100
  • fix(header): Remove z-index from subsite logo d433a97

💅 Enhancements

  • change(header): Add search popup customizations from eea-website-theme 43e5a78
  • change(popup): create custom popup for better accessibility 036aac9
  • change(popup): added most important popup properties from Semantic ui implementation 61f65bc
  • change(banner): use custom-made Popup for better accessibility 10d0fcf
  • change(banner): use custom-made Popup for better accessibility 9108bee
  • change(popup): added also the basic property a4497ac
  • change(colors): update gray-4 color value #321 from eea/update-gray-4 f458ff0
  • change(banner): MetadataField now uses proper time tag when value is datetime b4c4d34
  • refactor(tokens): updated gray-4 b890df7
  • change(footer): Fix error and empty div if no social links are present #319 from eea/footer-social 8922246
  • change(footer): Fix error and empty div if no social links are present 5d934a6

🛠️ Others

1.0.2 - 2023-03-14

🐛 Bug Fixes

  • fix(megamenu): topic menu title is now placed before content 6004bcb
  • fix(megamenu): removed in depth nav_title renaming that set title wrongly to a-z topics 899ca0e

💅 Enhancements

  • change(megamenu): removed special styling from at a glance mega menu section fd0c4c8
  • change(footer): renamed thematic information platforms to environmental information systems e7004a7
  • change(docusaurus): updated static image of footer sections 4ff3185

🏠 Documentation changes

  • docs(What's new): Update 'What's new' d7ed9d6

🛠️ Others

  • fixed accordion selector typo f4cabc8

1.0.1 - 2023-03-13

1.0.0 - 2023-03-13

🐛 Bug Fixes

  • fix(Footer): Open internal links within the same page 5b3e409

💅 Enhancements

  • change(banner): use huge scale instead of full image for better performance 381c58e

1.0.0-beta.6 - 2023-03-10

🚀 New Features

  • feat(site): serve Roboto fonts from eea design system package instead of google fonts #311 from eea/roboto-library f6a1b3e

🐛 Bug Fixes

  • fix: full-width is now properly sized 6e2e348
  • fix(storybook): add fontDisplay 078966a

💅 Enhancements

  • change(image): copyright position fixes, moved image floating to image-block-container 53422e0
  • change(colors:) update the design system colour palette #312 from eea/update-color-palette a5fb694
  • refactor(docusaurus): added roboto library 19de7b1
  • refactor(storybook): added roboto library e991621
  • refactor(tokens): update colours 3a2c1e1
  • refactor(storybook): restored site variables a48478b
  • change(copyright): implemented copyright hover design 6b12441

🏠 Internal changes

  • chore(storybook): switched google fonts to true 4a8cae4
  • chore(colours): changed back yellow 6 87c9bbc
  • chore(lint): lint 9b0f125
  • chore(storybook): lint 29bc809

🏠 Documentation changes

  • docs(colours): colours update 161007e
  • docs(colours): accessibility ee342aa

🛠️ Others

1.0.0-beta.5 - 2023-03-07

💅 Enhancements

  • change(carousel): tweak size of carousel dots for better touch interaction e1fb823
  • change(footer): removed min width and height from links ac33219

🏠 Internal changes

  • style(hiddenStructure): Add hiddenStructure utility to be used with h1 heading on frontpage - refs #158717 672cca2

🛠️ Others

  • fixed less build failure due to changes in footer.less 190bc8c
  • lazyload bg img on footer also ae07162
  • lazyload footer images a0633c9
  • Increase performance - mobile friendly 07d86c8
  • better useOnScreen hook c214b6b
  • role change for accessibility 5e758e0
  • minimum tap dimension for mobile a25e9a8
  • Release 1.0.0-beta.5 e4417e1
  • Add Sonarqube tag using eea-website-frontend addons list b227cf8
  • feature(mobile): increased performance by lazy loading footer images #303 from eea/increase_performance 80d1df1
  • useOnScreen default export 3e6cfdd
  • use aria-labels on dropdown 27e1443
  • prettier a7f8384

1.0.0-beta.4 - 2023-03-01

🚀 New Features

  • feat(footer): Add footer description 2ad0f71
  • feat(footer): Add footer description #306 from eea/footer-description bf655d1

🐛 Bug Fixes

  • fix(footer): Don't show empty row if description is not present 2ca7f7d
  • fix(footer): Add class for children 3c50d15
  • fix(search): Fix search links color #307 from eea/search-accessibility a76f48b
  • fix(search): Fix search links color 69c42ef

💅 Enhancements

  • change(carousel): tweak card width and padding for better arrow alignment e184f70
  • change(storybook): include footer description in storybook e904aa0

🛠️ Others

1.0.0-beta.3 - 2023-02-21

🚀 New Features

  • feat(accordion): storybook accessibility by using buttons for titles #297 from eea/accessibility-accordion 809d52b

🐛 Bug Fixes

  • fix(dropdown): remove close on blur so that we can navigate links using keyboard 5442715

💅 Enhancements

  • change(language): dropdown to use links for proper keyboard navigation 6a7de30
  • refactor(images): cleared unused/renamed images assets 821f5c1
  • refactor(Accessibility): add box-shadow on focus-visible components b1adcc3
  • refactor(images): remove unused docusaurus svgs c5ef14c
  • refactor(header): add escape key functionality, actions from div to button to have proper focus state 8081aa4
  • change(language): restore dropdown duplication in order to properly show and hide language dropdown cb28888
  • change(search): to reflect changes from eea-website-theme 2cc35e0
  • refactor(footer): update p with h3 heading tag for header ca1477b
  • refactor(footer images): removed unused/renamed 186de6b
  • refactor(Accordion): div titles to buttons, test in mobile mega menu accordions eaad4b4
  • refactor(docusaurus): cleanup decorative images fedc4d4
  • change(accessibility): style outline instead of box-shadow 53209f3
  • refactor(Footer): update mobile header size 01ab7f0
  • change(header): set the logo class directly on the link f8fba50
  • refactor(images): clear docusaurus unused pngs db5c611
  • refactor(header-images): removed unused 8250d94
  • change(language): hide language dropdown by default cc6064f
  • change(header): top dropdown menu keyboard navigation #293 from eea/accessibility-megamenu-searchbox 1e6fa65
  • change(button): set focus styling for buttons 33ebfca
  • change(footer): Avoid devtools warning in FooterActions #304 from eea/avoid_warning d774824
  • change(footer): Accessibility update p with h3 heading tag for theme sites title #302 from eea/footer-accessibility 5bf70de
  • change(documentation): Rename all image files to follow the agreed convention #301 from eea/refactor-image-filenames cfe44ef

🏠 Internal changes

  • style(header): react syntax fix 3add127
  • chore(docusaurus): ignore website/.yarn 0b33ffd

🏠 Documentation changes

  • docs(guidelines): add image name convention 290747c

🛠️ Others

1.0.0-beta.2 - 2023-02-13

🐛 Bug Fixes

  • fix(footer): action and copyright #300 from eea/develop 579f3e4
  • fix(footer): action or copyright links are simple a tags for external link 9af5070
  • fix(accessibility): added navigation and footer id's for skip link 48354b9

💅 Enhancements

  • change(footer): typos and modified footer links to be center aligned ac23f04
  • change(footer): added gap for actions and copyright 7d32ddd
  • change(footer): modified footer gap b8a820a
  • change(footer): removed extra text and date from copyright section af47bbe
  • change(navigation): raise z-index of go to top link 485ca72

🏠 Internal changes

  • chore(docs): Update eea.hbs template to beta - refs #158717 196538e

🛠️ Others

1.0.0-beta.1 - 2023-02-09

🚀 New Features

  • feat(search): Add search suggestions style 6b2b77b
  • feat(search): Add search suggestions style #296 from eea/search-suggestions 3b0c956

💅 Enhancements

  • change(search): Add proper margin for search popup 190c9f5

🛠️ Others

1.0.0-alpha.15 - 2023-02-08

🚀 New Features

  • feat(Card): add teaser card grid story 53cac0b
  • feat(utilities): Complete list of text-align utilities - refs #160747 224fab6
  • feat(small): CSS for small HTML tag - refs #160747 ad3c0ad
  • feat(fw-light): Add font weight light utility - refs #160747 c44cf57

🐛 Bug Fixes

  • fix(card): teaser card dimensions on tablet size #290 from eea/teaser-card-grid 013fdf5

💅 Enhancements

  • change(card): added extra content for teaser card story 30690ae
  • refactor(style-menu): add text-color to paragraphs styles #291 from eea/stylemenu-theme-colors 2d78307
  • change(header): Small fix in search popup #292 from eea/search-popup 86c1305
  • refactor(style-menu): add text-color to paragraphs styles 3446bc2
  • change(color): darkCyan is now replaced everywhere by the new green ef3791d
  • change(header): Small fix in search popup 3d622ea

🛠️ Others

1.0.0-alpha.14 - 2023-01-30

💅 Enhancements

  • change(mobile menu): integrate a-z topic with menu rendering logic #287 from eea/develop 05d4c04
  • change(mobile menu): integrate a-z topic with menu rendering logic 246d3d8

🛠️ Others

1.0.0-alpha.13.1 - 2023-01-30

💅 Enhancements

  • change(mobile menu): hardcode a-z topics to '/en/topics-in-depth' #286 from eea/develop 6436224
  • change(mobile menu): hardcode a-z topics to '/en/topics-in-depth' 5235b52

🛠️ Others

1.0.0-alpha.13 - 2023-01-27

🚀 New Features

  • feat(utilities): added has--bg--top center and bottom utility classes 051e6d7

🐛 Bug Fixes

  • fix(header): update green color used in page header #284 from eea/fix-banner-background 29d54db

💅 Enhancements

  • change(site): added fixes from customVolto.css to design package 51ba9b5
  • refactor(Banner): update banner background green color fd4a552
  • change(mobile menu): changed link for a-z topics to point to in depth 721bf23

🛠️ Others

  • 1.0.0-alpha.13 release #285 from eea/develop c966940
  • bump next version to alpha 13 897e906
  • Back to dev 5780dc7

1.0.0-alpha.12 - 2023-01-24

🚀 New Features

  • feat(card, colors): visited color change and title on image option for cards #283 from eea/develop e638ee6

🐛 Bug Fixes

  • fix(mobile menu): sub links when an accordion section is active bb3be81

💅 Enhancements

  • refactor(Card): create card template for stories 2fa77f3
  • refactor(Card): add image with title css 6e6e63e
  • change(card): implement title on image within image section ff6cc60
  • change(card): added image card section, tweaked mobile heading size 0f879e1
  • change(cards): moved image gradient overlay to a mixin.less file 8b4928a
  • refactor(card): Update titles value and size c35ad5c
  • refactor(docusaurus): applied image naming convention ee7bc29
  • change(cards): added image for all storybook card examples 3f19413
  • change(banner): restored label value of metadata field when type isn't date 571a4f2
  • change(card): title padding value for a more balance look 74b6556
  • change(card): removed uppercase transform from title on image 2948ae1
  • change(colors, Docusaurus): Visited link colour change and thematic logo replacement #278 from eea/refactor-visited-link f82d978
  • refactor(storybook): visited link variables b209b2f

🏠 Documentation changes

  • docs(colors): visited link update ece77fe

🛠️ Others

  • fix typos in footer gradient variables 4006640
  • change version to alpha 12 instead of 1 final 3225025
  • feature(card): new card variation with title on top of image #267 from eea/title-on-image-card 2c0ca95
  • Back to dev 477d997

1.0.0-alpha.11 - 2023-01-17

🚀 New Features

  • feat(docusaurus): Header and footer elements section #277 0df271c

🐛 Bug Fixes

  • fix(banner): storybook date input and simplified gradient opacity 7674d76
  • fix(banner): re-added title class on banner title 6d15799

💅 Enhancements

  • refactor(banner): sync storybook and Volto component c9087cc
  • change(banner): removed margin from title 17e592c
  • refactor(banner): sync storybook and Volto component #275 from eea/sync-page-banner-theme 4331fb4

🏠 Documentation changes

  • docs(footer): updates on header elements b41c550
  • docs(footer): add elements anatomy d9f0872

🛠️ Others

  • add(banner): banner title css d003247
  • Release 1.0.0-alpha.11 07e8f85
  • renamed image elements as requested in review 8541fb6
  • remove(banner-gradiant): image gradiant in favour of text 1b58520
  • update(gradient): use 8deg angle 6fd597d
  • update(gradiant): make it 0deg 1bb2696
  • remove(comment) referencing old verison of title 4226d42

1.0.0-alpha.10 - 2023-01-13

🐛 Bug Fixes

  • fix(subsite): Fix logo size on subsite section 65fff54
  • fix(subsite): Fix logo size on subsite section #279 from eea/subsite-fixes 8f6cf94
  • fix(mega-menu): show sub grid only if there are children ddfbd82

🛠️ Others

  • Add variable definitions 293fe65
  • Release 1.0.0-alpha.10 7014d08
  • Add Sonarqube tag using advisory-board-frontend addons list ef58a6f
  • Back to dev 31d4616

1.0.0-alpha.9 - 2022-12-28

💅 Enhancements

  • change(contextnav): Default title is text, custom title is link #273 from eea/context-nav-link-title ef7bdb7

🛠️ Others

  • Show document and folder content-type in Navigation listing 8471db3
  • Default title is text, custom title is link 1ae95b0
  • Context nav title link to # a27a6b7

1.0.0-alpha.8 - 2022-12-23

🚀 New Features

  • feat(copyright): Align copyright options with Volto integration - refs #158210 6bac7f6

💅 Enhancements

  • refactor(logo): import theme site logos to the story 2f29136
  • refactor(logo): update logo and mega search gradient e11f44d
  • refactor(logos): convert logo names to lowercase 07b8228
  • change(item): use default logic of setting align class on content 6b5b47c
  • refactor(logo): update logo 170efe5
  • refactor(logos): convert storybook logo names to lowercase c4b24ec
  • refactor(logo): add eea roboto font logo variations de1224a
  • refactor(logo): add container and segment to logo story 61eff16
  • change(item): removed requirement for aligned classes to be on content 30c0d5d
  • change(logos): cleanup eea logo reference to only eea-logo and eea-logo-white.svg 2796e05

🏠 Internal changes

  • chore(npmignore): Reduce npmjs package size 164c8a5
  • chore(npmignore): Reduce npmjs package size ade9d5b
  • chore(docs): renamed logo mdx to md 52e9d46

🏠 Documentation changes

  • docs(logos): svgs without classes 28a5833
  • docs(logos): add dark mode logos ccc1609
  • docs(logo): update eea logos and add logo wrapper 91cdd66
  • docs(logo): update logos on docusaurus 760e101
  • docs(logos): updated svgs dc224e1
  • docs(logos): add thematic logos 5a21a30
  • docs(logos): add zipped svgs for download 5855bf8
  • docs(logos): wisef logo update 8f90b59
  • docs(logos): move to static, add download 8c1fd5f
  • docs(logos): improve eea logo visibility 82188ab
  • docs(logos): change eea logo to svg f57b846

🛠️ Others

  • logo update or docusaurus thematic logo listing #274 from eea/develop dde90be
  • (feat): Add ability to disable the language select from website top menu - refs #158616 411c8e4
  • Proof reading page header section 230239e
  • bump package version b4628be
  • feature(docusaurus, storybook): logos selection for sites plus inverted options #253 from eea/doc-logo-page dbfc90d
  • Add Sonarqube tag using advisory-board-frontend addons list c4769e9
  • test(Jenkins): Run tests and cypress with latest canary @plone/volto 92feea0

1.0.0-alpha.7 - 2022-12-16

🚀 New Features

  • feat(item): normalized size for image or icon items #258 from eea/refactor-items 945170f

🐛 Bug Fixes

  • fix(card): rounded after removal of has--rounded--true style class d4727af
  • fix(item): removed margin set for description which pushed the text from icon d9d4031
  • fix(project): Proper paths if volto-eea-design-system package is not installed, but in development #270 from eea/correct_paths 0f8ee8d

💅 Enhancements

  • refactor(item): update icon variations and paddings 6a407b3
  • refactor(item): update spacing 2fd91c4
  • refactor(item): initial values for new sizes & add description class 3546296
  • refactor(item): add icon and more size options 1120bb6
  • refactor(item): update image and icon sizes b802573
  • change(item): set same height as width on item images 69cbd23
  • refactor(item): update item part 2 9812ae2
  • change(item): rename large to big class 24ff127
  • change(item): added tiny size that outputs 24px icon sizes 2ea9636
  • change(image): added preview image size default to 400px a0aa867
  • refactor(item): update operator for condition controls 149ccb2

🛠️ Others

  • Proper paths if the package is not installed, but in development 7a2655f
  • Update .project.eslintrc.js a2fd3f2
  • added back descriptionDistance variable until package release 3af811a
  • Release 1.0.0-alpha.7 7e66bcc
  • Add Sonarqube tag using cca-frontend addons list ce47e9b
  • Back to dev cb531c9

1.0.0-alpha.6 - 2022-12-07

🚀 New Features

  • feat(copyright): create copyright component and import it in banner 8fcde9d
  • feat(Header): add hideSearch prop 13ddfe5
  • feat(Docusaurus): Image copyright information #257 from eea/image-copyright-info 2119515

🐛 Bug Fixes

  • fix(tags): content gap when using tags-content wrapper c4eb9b8

💅 Enhancements

  • refactor(hero): add copyright component to hero 0fa88fa
  • change(copyright): implementation to add classes on content sections e10bde6
  • change(copyright): removed color variant 747b8a2
  • change(copyright): removed copyrightVariant from Banner and Hero stories ac62e07
  • change(tagList): modified implementation to align to volto-tags-block 7a57a3d
  • refactor(copyright): remove data section 52cb09d
  • change(copyright): line height to match page header implementation a56254e
  • change(copyright): now uses text color css variable with fallback to white ee7268b

🏠 Documentation changes

  • docs(copyright): copyright documentation a90ed76

🛠️ Others

  • Update usage_markdown.md f76d4a2
  • grammar fixes cb2a5a5
  • Release 1.0.0-alpha.6 6ca32f0
  • feature(copyright): image information #250 from eea/feature-copyright a8618c7
  • lint fix by introducing local variable tagsGap 7b6c0ae
  • Update 3-images.md 1b0ef03

1.0.0-alpha.5 - 2022-11-29

🚀 New Features

  • feat(Iconography): import and showcase remix icons 777112f

🐛 Bug Fixes

  • fix(docusaurus): right bar overflow fix 197c763
  • fix(lists): bullet position by using padding instead of margin 0ecae2e
  • fix(label): color for yellow variant as white isn't accessible on yellow color 91d8880
  • fix(contentBox): avoid text decoration for header-link added on cards 3ccb592
  • fix(label): margin value for ribbon image left and right margin f8e1129

💅 Enhancements

  • refactor(docusaurus): eea color palette in separate file 6c855df
  • refactor(docusaurus): classes for color boxes 80219d5
  • refactor(docusaurus): move supplementary, state and link colors to partials 2776be3
  • refactor(docusaurus): fix side menu / moved more content in palette partial f5b7077
  • change(tag): set gap on tags element for margin between tag elements 726bc6d

🏠 Internal changes

  • chore(colours): fix wrong class name 51ad0a8

🏠 Documentation changes

  • docs(docusaurus): Iconography updates, thematic platforms 2a0e596
  • docs(colors): thematic pages integration ea7a422
  • docs(docusaurus): color updates cc13b54
  • docs(colors): fix swatches accessibility 306cb74
  • docs(docusaurus): typography and colors fixes according to comments on PR ae20a72
  • docs(colours): adjust logos heights 854d4fb
  • docs(typography): merge designer and dev units 65c240e
  • docs(typography): readded extra font sizes, fixed fluid a4a5d89
  • docs(typography): changed em to percentages d417600
  • docs(colors): minors updates and instructions 84ac882
  • docs(colors): blue-grey-6 adjustment e7ab2d1
  • docs(colours): added active colour 574f7a9
  • docs(colors): switch FISE logo to png 335471f
  • docs(colors): updated visited 0248fd1
  • docs(FISE): replaced logo f7d8331

🛠️ Others

  • perf(docusaurus): added remixicon and roboto locally b67b1a7
  • feature(Docusaurus): Updates on color palette information including thematic websites #231 from eea/refactor-docusaurus ec7843d
  • Upgrade Jenkinsfile storybook to yarn 3 d20de8d
  • Back to dev 563fbc5

1.0.0-alpha.4 - 2022-11-22

🐛 Bug Fixes

  • fix(cards-storybook): load slick carousel css for arrow and pagination styles 1159b1b

💅 Enhancements

  • change(cards): refactor cards theming implementation d4e4542
  • change(cards): allow rounded, inverted and theme parameter to be set by has classes 4b4ad89
  • change(card): expect has classes on the card directly 6a9e38b
  • change(utilities): added has text classes to the text alignment utilities e6974c6
  • change(utilities): modified class name for text align using has naming 579a0cb
  • change(theme): ensure that only direct children of container have a default top and bottom margin 7f8b8dc
  • change(build): upgrade action to trigger workflow and wait to latest version c63ad3f
  • refactor(card): theming implementation to allow has theming classes #265 from eea/card-refactoring 24edc99
  • change(theme): add slick-carousel dependency f2eec7d

🛠️ Others

1.0.0-alpha.3 - 2022-11-16

🚀 New Features

  • feat(Header): Add subsite section styling #263 from eea/subsite 00398b8

🐛 Bug Fixes

  • fix(search): position now changed by default to absolute from relative 51b08fc
  • fix(megaMenu): remove paddings for buttons added by active class ec33ebf

💅 Enhancements

  • change(components): load overrides files for our defined semantic files adde7a9
  • change(container): fullwidth now take into account devices without hover 5a35a65
  • change(container): ensure only the top level elements behave like containers 98b85d1
  • change(container): modified column-block grid to remove margin and padding when using full width class 35c1cee
  • change(mega-menu): hide home link and accordion content from mobile menu 1a69172
  • change(container): width from min width 1280px to 1365px max width 66e551e
  • change(container): removed app extras and view setting of layout sizes f6dc1ee
  • change(views): customized DefaultView to pass class into page-document area 91123aa
  • refactor(megaMenu): desktop - use buttons for menu section titles and readjust content cb9315f
  • refactor(megaMenu): add nav_title and nav_description attributes 0d7a568
  • refactor(megaMenu): style sub-title and nav-description b2a48fd
  • refactor(sidemenu): add third level list and items & update active indication e2d87da
  • change(columns): implement narrow, container and wide width classes 9696b54
  • change(container): story to add classes that modify the max width of the containers 37948f8
  • change(container): affect only left and right margin of containers 183265b
  • change(containers): modified class names after layout checks 1dc3689
  • refactor(sidemenu): add is_in_path and is_current attributes for an active example a3fe7fd
  • change(container): story to avoid adding containerwidth property to container div c13d83c
  • refactor(megaMenu): mobile - use buttons for menu section titles a7b632f
  • refactor(megaMenu): update padding variables c5f2583
  • change(views): moved narrow style bellow the default container width styles 72fa58d
  • change(listing): removed container from default view page-document area 69f3d8f
  • change(views): rename classes names to width_view and added app extras layout component 745b772
  • change(container): use important flag for left and right margin a49c83a
  • change(container): add variables for edit and add section of containers f2e2c33
  • refactor(megaMenu): update sub-title paddings 992f919
  • change(site): add a 1rem margin top and bottom on all styled classes dabf6c1
  • change(homepage): removed hiding of staging banner from homepage 4ba2cd7
  • change(container): unset values of page-document on 1200+ browser width dd5bea3
  • change(megamenu): set children to be appended to the right of the menu title b69c23a
  • change(theme): modified wide width to point to 1320px as it's perfectly divisible by 4 8f82573
  • change(theme): modified wide width to point to 1368px as it's perfectly divisible by 4 2349fee
  • change(container): renamed content-text-width to container-text-width 6f788c2
  • change(listing): provide ui container fallback if no class is passed to default view af9e94d
  • change(narrow-view): re-added container class to page-document 56b44a6
  • change(view): set container width for view-viewview class as well 29dc324

🏠 Internal changes

  • style: load header/footer overrides e5b5e0f
  • style(megaMenu): restore item description color 8a19bbb
  • style(megaMenu): restore accordion content bottom padding 8e0c5a7

🛠️ Others

  • Add subsite styling e79c0ed
  • WIP settings column grid width when using full size class affc7ac
  • code cleanup 2cdc3e5
  • fix eslint 30c52e4
  • test(estlint): Fix .project.eslintrc.js aaeaa07
  • modified left value of full width classes with toolbars 70d82d4
  • Release 1.0.0-alpha.3 8fc86a7
  • feature(content): added NarrowView useful for modifying the containers from content-area d937df7
  • jslint fix 9846159
  • Feature(container): flexible container size #260 from eea/feature-flexible-container 8f84c5b
  • Add Sonarqube tag using circularity-frontend addons list 76a41c7
  • fix broken variable call for contentBox.variables introduced in previous commit by mistake d249c11
  • clean up 89f3cb3
  • removed console log from code fad86ae

1.0.0-alpha.2 - 2022-10-28

💅 Enhancements

  • change(documentation): grammarly proof-read suggestions 9f609be
  • refactor(volto-slate): Upgrade to @plone/volto-slate - refs #153447 853d9d1

🏠 Internal changes

🛠️ Others

  • test(cypress): Upgrade to Cypress 10 / Razzle 4 c1c1f4b
  • more explanations a8b2272
  • add announcement bar, showing that EEA DS is WIP e14aeac
  • Update dependencies ee30a2b

1.0.0-alpha.1 - 2022-10-20

💅 Enhancements

  • refactor(footer): update svg and tablet contact link sizes 6aba061
  • change(blockquote): renamed to Callout reflecting the correct naming from Storybook 61a518c
  • change(footer): Shadow removed from logo & tablet updates #252 from eea/fix-footer 6df783d
  • change(colors): updated theme classes for text to use css variable colors cb089fd

🏠 Internal changes

  • style(footer): reduce social icons margin f6a9cf7

🏠 Documentation changes

  • docs(alpha): Update included components in 1.0 alpha version - refs #154387 fcc5af9
  • docs(callout): Rename Blockqoute to Callout in docusaurus - refs #154387 8d733ac

🛠️ Others

0.9.6 - 2022-12-16

🛠️ Others

  • Release 0.9.6 ae19b83
  • feature(copyright): image information #250 from eea/feature-copyright 7b323ed
  • Release-it 1f5671d

0.9.5 - 2022-10-20

🐛 Bug Fixes

  • fix(statistic): margin and slate colors when using the inverted options f263dea

0.9.4 - 2022-10-19

🐛 Bug Fixes

  • fix(edit-interface): block chooser and power user menu item colors when inside content-box 7aee4f1
  • fix(header): hero text going over the logo and menu on mobile resolutions 1434508
  • fix(content-box): z-index of box-inner and added underline to slate links c8b7c7e
  • fix(content-box): adding of underline to links c2f5f0f

💅 Enhancements

  • change(banner,colors): content box theme aware colors banner changes#254 from eea/develop bcb9a8c
  • change(Banner): Add subtitle subcomponent bb67f4c
  • change(item): moved svg filter definitions to item.overrides de70366
  • change(accordion): accordion titles with themes colors can now be modified by css variables e2ac13e
  • change(colors): in lists and callouts to allow color changes 940d1b8
  • change(colors): added backgroundColorSupplementary color variable 1f5262a
  • change(list,bullet): color is no longer primary instead it's text color css variant 8c04670
  • change(statistics): use theme colors with css variable for easy color customization fb72a01
  • change(Banner): Show label in metadata field 1acda3c
  • change(tags, items): use text color with css variable for content color for easy customization 6660e2e
  • change(styling): modified naming of theme css variables a332961
  • change(colors): added backgroundColor color variable b7e6831
  • change(quote): use secondary css var for easier color replacement 7a32312
  • change(statistics): tweaked margin of statistics so that they don't overflow over context boxes b4a8e33
  • change(accordion): allow customization of accordion title background color 6590baf
  • change(colors): introduced css variables for primary colors #247 ac80825
  • change(content-box): override primary text color to white as well 28b43c7

🛠️ Others

  • Include changes in the storybook a4d9fa4

0.9.3 - 2022-10-04

🐛 Bug Fixes

  • fix(card, contentBox): meta font size, removed header override of cards a7f94b9
  • fix(List): Ordered list item story - refs #155248 c70a2bc
  • fix(OrderedList): li third level margin left - refs #155248 fba5cb9
  • fix(cards): inherit color of card description ceda799
  • fix(accordion): Fix content default padding - refs #153783 566adf7

💅 Enhancements

  • change(site): committed fixed from custom into eea design package 9b9a1fd
  • change(jenkins): added yarn policy for storybook building 3d1b844
  • change(docusaurus): typography updates 60a93a4
  • change(item): added item image coloring when applying theming classes 0403fe4
  • change(accordion, site): change text color to tertiary instead of black 4641058
  • change(accordion): allow customization of accordion title with css variables 15e7d27
  • change(content-box): added css variables that will set text color and background for children 86cac53
  • change(tabs): allow customization of tab active and hover color 4370f42
  • change(tabs): color for tabs-block section 6778c92
  • change(cards): by default date is set to appear on the right of the meta section b7b80e8
  • change(cards): carousel dots are now relative positioned daa40a4

🏠 Documentation changes

  • docs(typography): update, local fonts 39a32d9
  • docs(typography): token fix to match used values for heightheight and letterspacing 91693ec
  • docs(typography): token fix to match used values for lineheight ff41b56
  • docs(typography): remove semibold 6eb3e08

🛠️ Others

  • test(cypress): Fix md5 dependency 17f618e

0.9.2 - 2022-09-27

0.9.1 - 2022-09-27

💅 Enhancements

  • change(cards): added ability to change the text alignment using css variables ed532ac
  • change(styles): use flex-end values only instead of end to avoid babel warning 24244b2
  • change(rounded): image size, border radius to ensure more image are turned into rounded options 51e23c1

🛠️ Others

  • Merge pull request #243 from eea/develop 576564c
  • Add Sonarqube tag using eea-website-frontend addons list 4a5be6e
  • Back to dev b251255

0.9.0 - 2022-09-19

🚀 New Features

  • feat(countUp): intall countup package and import it in statistics 10ba7cf
  • feat(docusaurus): custom editUrl function for the components usage pages - taskman refs #154076 93c4240
  • feat(site): Styling scroll-to-text fragments #238 1883fcf
  • feat(docusaurus): added Edit this page link in footer of each page - taskman refs #154076 2cf8746

🐛 Bug Fixes

  • fix(header): Prevent dropdown closing when clicking inside content 838f340
  • fix(cards): position of bullets and arrow clicking on events page 148723 22ef828
  • fix(cards): rounded images show up now even when card parent is cards 48f5e81
  • fix(statistic): add a min-width to content so unwrapped statistics don't break 7c5d511
  • fix(sideNavigation): add role list to list item 58f322b
  • fix(sideNavigation): remove unused useState import f9ea677

💅 Enhancements

  • refactor(sideNavigation): implement the design to the initial navigation & make component dynamic b673d63
  • refactor(header): update top bar 626bdd5
  • refactor(statistic): create custom export and add links 9f9ed56
  • refactor(statistic): update inverted style and add background variations 7578dc6
  • refactor(statistic): remove horizontal display on mobiles & update columns control 58f00e1
  • refactor(header): minor fixes spotted in testing 0f0f3ab
  • refactor(header): update main section heights d669f01
  • refactor(sideNavigation): remove green border and divider 939cd9b
  • refactor(link): update colors for link states 3e9f599
  • change(cards): styles img tag outside of .image ee89274
  • refactor(sideNavigation): update controls a3e8430
  • refactor(statistic): fix firefox issue for fit content 87aa113
  • change(statistics): rearrange controls order b19ae70
  • refactor(statistic): add max width to wrap text for all content 758f8ce
  • refactor(statistic): add max width to label so it wraps the text 824a127
  • change(Side menu & in page navigation): styling according to figma design #221 b2df858
  • change(header): align header with latest figma changes #232 135cd68
  • change(cards): integration when cards also contain call to action buttons f0d8766
  • refactor(iconography): icon group headings b9ccd80
  • refactor(header): add variables for some sizes 8eae84e
  • refactor(Statisctic): Rename slateVariation to extraVariation a07c589
  • change(docusaurus): started example on how to add headings for iconography 53cf843
  • change(cards): remove center alignment of rounded cards body area, only the image is now centered fdfac48
  • change(color): updated link colors #234 feabfe7
  • change(mockup): Access to figma style tokens 0bb25be
  • refactor(statistic): update margin 5190f56
  • refactor(button): adjust vertical margin db6d441

🏠 Internal changes

  • style(statistic): update decimal point 7976aa4
  • style(link): update visited link color d3b18b3

🏠 Documentation changes

  • docs(iconography): added icons, guidelines 0073f1d

🛠️ Others

  • Delete 2-test-new-page.md 749eff9
  • Create 2-test-new-page ab623ff
  • Release 0.9.0 eb7e2e5
  • stylelint fix 114e3f9
  • Move text fragments style to site.overrides 8368cbe
  • Styling scroll-to-text fragments 1bb3914
  • Update Header.stories.js 9036c74
  • feature(Docusaurus): Reflect usage of remixicon in iconography page #239 0802b32
  • Update 1-design.md 146115a
  • Test workflow for contribution - taskman refs #154076 dcb924f
  • perf(figma): access to style tokens 27d8dbe
  • Rename 2-test-new-page to 2-test-new-page.md 4e3be10

0.8.1 - 2022-08-26

🐛 Bug Fixes

  • fix(message): fix size controls ee51e1d
  • fix(docusaurus): intro page hero title color now that headers are using tertiary color 618e3cb

💅 Enhancements

  • refactor(message): restore semantic variables 1c16621
  • refactor(messages): mix semantc and token colors for messages 12efa75
  • refactor(emotiveColors): temp update for tests 61a720c
  • change(footer): removed line between sections and moved actions back to the bottom of footer d9f33e4
  • change(storybook): headings storybook now uses tertiary color by default reflecting site options 1061e77
  • refactor(message): add container to story 1259ece
  • refactor(message): remove override with custom background color on error 9b40cd7
  • refactor(message): add header controls 960c2f7
  • change(message): use semantic colors for messages #204 from eea/refactor-message 22d2c43

🏠 Documentation changes

  • docs(figma): added figma files to repo 6bd4144

0.8.0 - 2022-08-20

🚀 New Features

  • feat(IconCard): card with icon instead of image a85a179

🐛 Bug Fixes

  • fix(docusaurus): typography guideline now has real font values for headings, body, caption and small text 9508db9
  • fix(card): fix content gaps, adjust new meta section and update text color for default f1a78e1
  • fix(item): remove duplicate argType dde0be5
  • fix(iconCard): add aria-label at links 44f64c7
  • fix(card): merge fix df440ec
  • fix(heroblock): color even on edit page by inheriting color instead of using the tertiary color ac53fb7
  • fix(tab): add tabindex for accessibility error ab512be
  • fix(carousel): restore missing variable 1728312
  • fix(carousel): restore flex grow for cards and opacity for arrows ce71305

💅 Enhancements

  • refactor(carousel) add links in carousel cards & update structure and variables of less files f99cb21
  • refactor(iconCard): add control for variations and link 5e1b6a1
  • change(docusaurus, fonts): documented font letter spacing modification 522712a
  • refactor(card): css updates for card variations and styling updates c8b4a43
  • refactor(publicationCard): add links and fix accessibily issue 80adf6c
  • refactor(card): add new section in meta and remove links bfb82ae
  • refactor(item): add stackable functionality 8d714fa
  • refactor(card): update meta section and controls 5e28e12
  • refactor(roundedCard): remove unnecessary code and controls and add all variations 6305c54
  • refactor(roundedCard): add optional link for image and header a6d3bf2
  • refactor(card): add tertiary hover and update css selectors ca06948
  • change(fonts): updated font sizes with values given in figma 4b0ae48
  • change(style): color, space and adjust line-height as described in docusaurus 3366da2
  • change(headings): only h2-h6 get tertiary color 7d81308
  • change(site): removed Archivo import as we should only use Roboto font a6af056
  • change(docusaurus): use tertiary color for headings and body color mirroring the design system styles 145fe73
  • change(fonts): modified headings font size as well as line height f0771ea
  • change(fonts): updated font sizes with values given in figma f16eef7
  • change(docusaurus): use Roboto font from google fonts also for docusaurus adca8e9
  • change(headers): added headerColor variable so that thematic sites can easily choose another heading color f09d2c5
  • change(fonts): typo fixes for typography section of docusaurus cae4b02
  • change(fonts): modified footer and header values afer global font size changes f160d35
  • refactor(iconCards): run prettier fe84e46
  • change(typography): inherit header colors with @headerColor variable 91d9357
  • change(breadcrumb): use tertiary color also for breadcrumb c5cbd44
  • change(heading): on homepage on the first hero set font size to h1 and inherit color 5711096
  • refactor(carousel): update card titles to display styling fix edd966b
  • change(docusaurus): use the tertiary color for body and heading colors 11c4ed4
  • change(typography): modified lineheight-0 after headers now use 1.2 instead of 1.25 04d78a8
  • refactor(card): add links to cards and replace description with title in carousel 0258737

🛠️ Others

  • feature(heading): and cards refactoring #227 from eea/develop 334fbda
  • Update package.json 3870cf3
  • Header refactor 153536 #226 from eea/header-refactor-153536 87a6fe7
  • feature(item): icon is now stackable moving the icon on top #220 b716acf

0.7.6 - 2022-08-15

💅 Enhancements

  • change(footer): Footer updates 147837 #225 fa9ae58
  • refactor(footer): initial redesign of main section 8e85617
  • refactor(footer): restructure theme sites logo columns dcba45a
  • change(footer): set actions before thematic section on mobile db25f96
  • change(footer): fix missing key warning from react dev 77f72d5
  • change(footer): Footer updates 147837 #222 32fed23

0.7.5 - 2022-08-11

💅 Enhancements

  • change(megamenu): mobile improvements with See all links, active elements and non accordion children #224 6767b99
  • change(megamenu): render accordion only if children have children be63ce2
  • change(megamenu): mobile menu design tweaks as seen in latest figma 26d74dc
  • change(megamenu): removed icon from at a change menu items and they are no longer bold as requested 043e772
  • change(megamenu): reset first level panels after each item pass 175351b
  • change(megamenu): mobile menu improvements #223 b3cabfe
  • change(megamenu): fixed key error warnings 075bf01
  • change(megamenu): handle default active sub accordion 6192a99
  • change(megamenu): enable active border only for items not titles fb0b869

🛠️ Others

0.7.3 - 2022-08-04

💅 Enhancements

  • change(megamenu): added icon on mega menu header section d0ad4d8

0.7.2 - 2022-08-03

🐛 Bug Fixes

  • fix(contentBox): z-index of content hidden by bg when using content-box-inner c5a7dac

🛠️ Others

  • Set focus on search input field in the popup on click d12c051
  • Make cypress tests work with both slate and draft selectors 4d8e5b1

0.7.1 - 2022-08-01

0.7.0 - 2022-08-01

🚀 New Features

  • feat(accordion,buttons): primary, secondary and tertiary variations #209 c34617f

🐛 Bug Fixes

  • fix(megamenu): key warning errors 4ecd279
  • fix(container): add padding also for block editors when we are on the add page not just edit b857aad
  • fix(header): bump opacity of gradient class to get rid of green hue of header text 2011b40
  • fix(header): remove console log 3a20023

💅 Enhancements

  • refactor(callToAction): add tertiary variant and restructure exports ac6695a
  • refactor(accordion): add color variations 3504c15
  • change(megamenu): WIP bringing back rendering of item with callback and path modification 6e43d43
  • refactor(megaMenu): add slide down transition and update targetRefs on close 9667157
  • change(megamenu): use renderMenuItem in order to render menu items 9ed5cbd
  • change(footer): replaced eionet logo with an svg variant and tweaked size of eionet to match size of eea logo 32ce462
  • refactor(callToAction): update tertiary state colors 159668a
  • change(accordion): style default accordion using the grey from semantic ui e24907d
  • refactor(accordion): add variations and create a default export 4a9c68f
  • refactor(colors): add tertiary shades for element states 1e24a7e
  • change(tests): try to modify tests to use slate instead of draft a2e2485
  • change(megamenu): set active class on storybook list items 112bff1
  • change(megamenu): add border for active element of menu 5e7dfa5
  • change(package): condition modification of navDepth settings dd21dad
  • change(mega menu): use non variable to fix build of volto-kitkat-frontend 3ecd652
  • change(header): prefix mega-menu active class for adding border 32898cb
  • change(tests): use data-slate-editor instead of contents that was found in draft js instead of slate 1e0413c
  • change(stories): hide variant control from button link story 43f8c41
  • change(stories): hide variant control from button link story aea7126

🛠️ Others

  • feature(theme): added context navigation component story and default style 5a6955f
  • feature(megamenu): open default accordions on mobile navigation based on pathname cc299c1
  • fix eslint warnings 3b30282
  • bump release version to 0.7.0 fa82cbd
  • Theme fixes, mega menu selected element both in desktop and mobile #211 b482729
  • feature(mega-menu): added menu slide down animation #208 4360d0e

0.6.5 - 2022-07-06

🐛 Bug Fixes

  • fix(header): double click to close dropdown is no longer required b8a2ed0
  • fix(header): menu generation when atAGlance isn't found d68b03c
  • fix(menu): removed minHeight that enlarged the global menu 133be1e
  • fix(hero): image dimensions when full width and height isn't enabled 4114f73
  • fix(contentBox): removed negative z-index that hid fullwidth bg color bd60faf

💅 Enhancements

  • change(hero): tweaked hero block height and padding 994b6f8
  • change(item): tweak size and padding of icon when used inside item dbdef19
  • change(typography): updated letterspacing values and clarified values used for certain type tokens 8a13bf8
  • change(item): enable theming for icon and text color and added tertiary option 6d4444f
  • change(header): top section chevron sizes and margin as requested in enhancements document b307c74
  • change(cards): add underline to links when applied to headers and use tertiary color by default 874f956
  • change(utilities): wrap in quotes h2 and h3 of quoted-wrapper 8aa4716
  • change(package): bump package version to 0.6.5 denoting bug fixes release 0585aeb

0.6.1 - 2022-07-01

🚀 New Features

  • feat(UnderlinedTitle): create story and necessary utilities 8beb56b
  • feat(headers): added underlined titles with theming support af67561

💅 Enhancements

  • refactor(heading): move underline story and update controls 2c9bfd2
  • refactor(underlineTitle): add content box for different variations 0878915
  • refactor(underlinedTitle): add control for changing heading size 211f515
  • refactor(underlinedTitle): Restore text variation dropdown control bd8c611
  • refactor(utilities): add color variation for headings and text 7e3a779
  • refactor(utilities): update border bottom utility and restore line height for headings 7fe4a7b
  • refactor(headings): update the line height of headers according to docusaurus instructions 9da19b3

🏠 Internal changes

  • chore(countup): package for statistics 26fcd09

0.6.0 - 2022-07-01

🐛 Bug Fixes

  • fix(item): adjust the container in stories a848c46
  • fix(tag): align start for tags on mobile, update path for Tag List and add containers b9de845
  • fix(item): update image width & height on mobiles and add 3 line clamp for description 0cd2c46
  • fix(pageheader): metadata font size on mobile to be readable 0a9b1fa
  • fix(breadcrumb): fixed variable name for breadcrumb item 2b547eb

💅 Enhancements

  • refactor(Item):create item story with custom default class 069ae02
  • refactor(pagination): add pastanage menu overrides and remove any eea theme css from default story 5080810
  • refactor(item): update variables from px to rem 30eed78
  • refactor(Item):add default item mobile padding 3518465
  • change(site): added fixes from custom 0fe4d80
  • refactor(Pagination): add default pagination stopry and rename previous as Secondary a5e3e13
  • refactor(pagination): comment out secondary pagination and its styling bcf4cff
  • refactor(tags): remove content class and add flex wrap d6333ca
  • change(logo): use a real svg logo for white eea logo 3b80dc7
  • change(header): show eea information systems on tablet as well ce82ceb
  • refactor(tokens): update letter spacing tokens 5f8753b
  • change(letterspacing): updated letter spacing positive values b31818f
  • change(pageheader): add bottom margin on mobile for sharing dropdown actions d3cda47
  • change(pageheader): removed blogger, reddit and stumbleupon sharing links e4acc4e
  • refactor(Item): add default item background color c978c8d
  • change(package): bump package version 1f01f72

🏠 Internal changes

  • style(item): update item image e585e9d

🏠 Documentation changes

  • docs(colors): token usage c433ec6
  • docs(Docusaurus): typography and spacing updates 48d1269
  • docs(Docusaurus): various fixes a972a31
  • docs(typography): updates 66d95e4

🛠️ Others

  • Tabs block custom border left/top ca4cce0
  • Fix sidebar tabs in Volto CSS c287db5

0.5.5 - 2022-06-23

🐛 Bug Fixes

  • fix(contentBox): color of cards when inside content-boxes 76a4520

💅 Enhancements

  • change(homepage): moved fixes of homepage to custom and colored carousel arrow 0a226ef

0.5.4 - 2022-06-16

🐛 Bug Fixes

  • fix(block-style): Content box preview in sidebar 6362766
  • fix(header): ensure transparency goes as high as the search icon 4470e13

💅 Enhancements

  • change(contentBox): add background as before element instead of using full-width 7e0a596
  • change(content-box): content box links are now underlined f7976f5
  • change(homepage): added fixes from custom c3e0333
  • change(hero): add margin top with the height of the top section on edit fefa6bb
  • change(cards): fix default card color when inside content-boxes 6fdf3aa
  • change(container): removed override of content-box-inner container 66fe7d4

0.5.3 - 2022-06-16

🐛 Bug Fixes

  • fix(homepage): hero and homepage fixes for #151156 #198 43d4efc
  • fix(header): fixed top section width on edit page ce5898b

💅 Enhancements

  • change(hero): added min height to hero-block-image-wrapper 3cc37c0
  • change(hero): spaced hero block has a 3rem margin top and bottom c463b03
  • change(hero): added extra top margin on hero-block-body from tablet and up within homepage 64142c3
  • change(hero): tweak min height of hero block e1271b4
  • change(card,contentBox): use inherit for text color to inherit black from body c1ba3b6
  • change(container): on section-edit modify only left and right padding values fe6e3ec
  • change(utilities): bump z-index of overlay class ede3209
  • change(hero): fixed variable reference for margin of body from homepage 092b90b

0.5.2 - 2022-06-14

🚀 New Features

  • feat(contentBox) : add new Content Box component 2ebbb47
  • feat(ContentBox): Add primary, secondary, tertiary themes 87cb2fe
  • feat(ContentBox): Update storybook with available themes 93b26b2

💅 Enhancements

  • refactor(contentBox): restructure the component to be more flexible f0d2de6

🏠 Internal changes

  • chore(contentBox) : add lint changes 5aaf740

🛠️ Others

0.5.1 - 2022-06-13

💅 Enhancements

  • change(header): changed homepage text color 64ce8b6
  • change(hero): added styles for adding dark overlay to hero bf1d292
  • change(homepage): hide stagingBanner on homepage fb6e319
  • change(header): use variable for homepage hero-block padding 89ff344
  • change(tokens): modified grey-4 color to point to a 10% shade from original color b406283
  • change(header): added min-height for mega menu needed for 1 items menus 18814f4
  • change(hero): hero section block integration #192 4ea2f40

🛠️ Others

0.5.0 - 2022-06-11

🚀 New Features

  • feat(hero): added storybook implementation of hero component #172 17b9d16
  • feat(hero): add hero block component and stories 6019fc8

🐛 Bug Fixes

  • fix(header): Internal links in mega menu d8ca135
  • fix(header): show active menu when clicking on children a54fa67
  • fix(header): accessibility and dropdown possition fixes 505ac36
  • fix(header): fix accessibility issue by David 783dcec
  • fix(header): dropdowns disappear on resize 52338fd
  • fix(header-topdropdown): dedupe html elements for topdropdowns cd8a2a7
  • fix(header): transparency class should apply on the current bg color or image f9a0033
  • fix(header): mobile dropdown now visible 34371b4
  • fix(header): dropdown disappears after window resize #116 fc7dd8b
  • fix(header-topdropdown): dedupe html dropdown elements for topdropdowns #115 f10a7a8

💅 Enhancements

  • refactor(megaMenu): update mega menu in header component 2d1ce45
  • refactor(header): update structure and variables of top bar af70909
  • change(header): renamed mega menu items href attribute to url 3ed8144
  • refactor(header): update main section and and add color variations f2f0fd1
  • refactor(header): minor updates on colors and widths a70129f
  • refactor(hero): add full-heigh control to adjust height a45cb7c
  • change(header): disable sticky setting until feature is more stable 1d7af95
  • refactor(hero):make button variant and inverted different button controls 7e182ca
  • refactor(header):main bar sticky on scroll up 9c9e7c6
  • refactor(headings): update heading sizes for mobile 19f3cca
  • change(header): hide first link(home) from header menu on site ae7f3b9
  • change(megamenu): typo correction and key setting on list.items 96d2c4f
  • change(header): use Link instead of a tag for menu items 9812b3f
  • refactor(header): add control for inverted logo 023ca45
  • refactor(hero): move quoted utility to h2 tag 7376676
  • refactor(header): add link for menu title inside desktop mega menu 24355d0
  • refactor(utilities): update hex with color token 8dc65ef
  • refactor(header): and mega menu to latest spec #114 44fcf68
  • refactor(header): update search input and file endings afab36f
  • refactor(header): add control that toggles transparency class on main section b8d4bdb
  • refactor(header): restore union dropdown after implementation 7e98bab
  • refactor(header): minor responsive fixes 16a0006
  • refactor(hero): align hero's text and meta seperately 4fa958f
  • refactor(hero):add button variant controls f362a7b
  • refactor(header): update search input 368962e
  • change(header): mark top level active menu item 665c449
  • refactor(hero):prettier & style changes d846884
  • refactor(header): add control for main section stickiness 2f07572
  • change(header): use viewport width for changing mobile text in header dropdowns b50fa58
  • refactor(header): add fluid font sizes 5f2743e
  • refactor(header) add position sticky & transparent for main section 29df772
  • refactor(hero): update variables with new design tokens 1d97922
  • refactor(Language List): render language dropdown as ul and li elements 3617442
  • change(header): introduced item class to the mega menu link content 00ca376
  • refactor(Language List): add less variables 7ccc1cc
  • change(header): disabled active menu when clicking on globalnav links 3f7b5ee
  • change(header): target link instead of span directly 9e865fb
  • refactor(header): remove unused imports 7e232db

🛠️ Others

  • Add item themes; override .block .ui.image width based on size 06010db
  • Move item icon themes to item.overrides 31e8921
  • Override only the width 8d49270
  • Override tile image in .block parrent 005655d
  • Update package.json 9dc3816
  • feature(item): added themes to item icons #190 a6a2907
  • update storybook header.topdropdown e58ac08
  • use volto-screen-helper width ea156aa
  • Add divider content for metadata field in Banner 327ad1c
  • rename to viewportWidth 32162e7
  • don't connect component to store 470b8ba
  • Add end of line 51639d8
  • behave as mobile under 480 only 11b99e1
  • make it account for all mobile-s,m,l 69e23ae

0.4.5 - 2022-06-08

💅 Enhancements

  • change(tabs): Add style for tabs accordion template #187 fb8adbf
  • change(footer): avoid react error by providing key prop to grid column ef0b193

🛠️ Others

0.4.4 - 2022-06-08

🚀 New Features

  • feat(divider): create story for divider b10a2e0

🐛 Bug Fixes

  • fix(divider): restore space between classes c595c15
  • fix(divider): Text colors and transform e524e10
  • fix(footer): story aria labels for social media links 254bdc7

💅 Enhancements

  • refactor(footer): update logos and less structure 66b8e0f
  • refactor(footer): first footer updates d18a2ee
  • refactor(footer): logo updates and adjustments 101bc9d
  • refactor(footer): use tokens and adjust spacing 2cb1669
  • change(footer): moved SubFooter logic to SubFooter.jsx from Footer story 902383a
  • refactor(Divider):add divider with content inside story e2d66dc
  • change(footer): added managed by section as properties 9328fc3
  • refactor(divider): remove custom divider d4870d2
  • refactor(Divider_:remove green color class & add tertiary 95f3018
  • refactor(footer): use remix icons for social links 5ef9aa2
  • refactor(Divider):remove clean class and use fitted prop 8d2be35
  • change(Divider): Rename color property to theme 0deffc8
  • refactor(footer): update links and logo align 7afbab9
  • change(footer): tweaked column sizes to the values before my changes fdf2718
  • refactor(footer): to latest figma design #182 3e0ba2b
  • refactor(footer): move subfooter logic to the proper component #185 3034577
  • refactor(footer): update controls b0b872b
  • refactor(testimonial): update divider 784450a
  • refactor(testimonial): changed divider color to secondary 84282f9
  • refactor(divider): remove custom divider from theme config a0409e8

🏠 Documentation changes

  • docs(divider): switch to secondary color 239844b
  • docs(divider): showcase path fix d5ea03f

🛠️ Others

0.4.3 - 2022-06-03

🐛 Bug Fixes

  • fix(edit): Fix columns/accordion inner toolbar padding fafbb52

💅 Enhancements

  • change(docusaurus): completed removal of description from guides 42424b9

0.4.2 - 2022-06-02

💅 Enhancements

  • change(docusaurus): moved color swatches around in the color guide 8a395fc
  • change(docusaurus): removed description from components and introduced category listing f220bf0
  • change(docusaurus): rename gap to space and added em spaces f5b042d
  • change(docusaurus): moved extra docs to webdev section 1ce0797
  • change(docusaurus): moved md_components files into webdev/md_components 73c1c08
  • change(docusaurus): added category yml for all sections 1740572
  • change(docusaurus): color guideline updates and spacing tokens documentation #148 c1154ba
  • change(docusaurus): modified story links to avoid broken usage tabs 78dc8d8
  • change(docusaurus): renamed several file id's so that they match the incremental naming sequence 11299c9

🏠 Documentation changes

  • docs(Docusaurus): timeline, testimonial, quote and tags aaa54ec
  • docs(spacing): add relative gap tokens 92abc8f
  • docs(colors): updated colors a28c99e
  • docs(tags/content): new page about tags and content 60be402
  • docs(Docusaurus): labeled icons f6a0f61
  • docs(typography): add font size and line height tokens 2ff65e4
  • docs(spacing): add spacing gap tokens 2d53727
  • docs(spacing): add missing gaps 442db46
  • docs(docusaurus): minor fix 6e66513
  • docs(spacing): aligned images e946fe5
  • docs(spacing): new image fcd3294

🛠️ Others

  • merge changes from develop into docusaurus token documentation a940138
  • perf(docs): restructuring order 8f4134d

0.4.1 - 2022-06-02

🚀 New Features

  • feat(languageLabeledIcon) : add new component 110558e
  • feat(LanguageLabeledIcon):add new component d00200c
  • feat(newTabLabeledIcon) : add new component 8f5cd31
  • feat(labeledIconGroup) : add new component 787d648
  • feat(DownLoadLabeledIcon) : add new component 6ea2fa1

🐛 Bug Fixes

  • fix(LabeledIcon) : fix lint errors 91b042f
  • fix(LabeledIconGroup) : fix links for tests daa1065
  • fix(LanguageLabeledIcon):bug fix & languages change 1436e2b
  • fix(LabeledIconGroup):fix based on Langauge & Download Labeled icon components changes 3015864
  • fix(newTabLabeledIcon) : add link item b1a9ada
  • fix(Labeled Icons):minor bug fix 00f3022

💅 Enhancements

  • refactor(labeledIcons): adjust new tab labeled icon to figma and replace px with rems 904615d
  • refactor(LanguageLabeledIcon):implement with pop up 0f3dd8f
  • refactor(labeledIcon): add group wrapper in labeled icon stories 4b7dd31
  • refactor(DownloadLabeledIcon):implement with pop up aa61f9b
  • refactor(labeledIcons): adjust language labeled icon to figma 5741e3d
  • refactor(labeledIcons): adjust download icon to figma and replace px with rems 4ae8530
  • refactor(LanguageLabeledIcons):minor storybook change 78f5544
  • refactor(LanguageLabeledIcon): set language code to uppercase and minor storybook change ac28693
  • refactor(labeledIcon): adjust paddings 9c1ecdd
  • refactor(labeledIcons): update margins for group labeled icons 5fa5ca9
  • refactor(labeledIcons): add variable for icon color 9f9d3cb
  • refactor(labeledIcons): update colors on download links c042642

🏠 Internal changes

  • chore(labeledIconGroup) : lint changes 535cee4
  • style(downloadLabeledIcon) : fix styling 6d8e3ac
  • style(downloadLabeledIcon) : fix alignment 4558017
  • chore(LabeledIconGroup) : lint changes ab36476

0.4.0 - 2022-06-01

🚀 New Features

  • feat(Carousel): create carousel for cards 2b0d737
  • feat(ItemwithIcons): Initial Item group with icons, new item variation 7f4ea47
  • feat(utilities): add file and basic utilities 05c88b2
  • feat(utilities): add file with basic utilities classes #173 855185f

🐛 Bug Fixes

  • fix(tokens): hsla function for shadows b8e5d37
  • fix(tokens): remove css var from less file a9c4224
  • fix(carousel):add storybook controls descriptions 269a603
  • fix(item): remove image width css from item.less 7b21cb2
  • fix(table): Set responsive breakpoint to @tabletBreakpoint 067e018

💅 Enhancements

  • refactor(item): import item.less in theme definitions c516374
  • refactor(Label):add corner,ribbon & basic label stories and styles e2bbbb9
  • refactor(Label):style changes based on label importance class ce4d5d1
  • change(tokens): rename gap to space and added em spaces 719efc4
  • refactor(item): add classes for size, set default to tile and add controls for grouped items d5a0405
  • refactor(tokens): add borders, shadows, shapes and z-index tokens 7069106
  • change(tokens): name spacing tokens gaps and added missing values up to 80px as documented 9fbd912
  • refactor(quote): Rename sourceInfo to extra info 76c2b40
  • refactor(item): WIP replacing unstackable with row e3a44de
  • refactor(tocens): add color design tokens 13bb165
  • refactor(item): adjust margins to match figma designs 6334581
  • refactor(carousel): remove title from story and color on card hover 12a1d7c
  • change(tokens): updated sizes with 4-8-16px increments 1f53d65
  • change(tokens): added size tokens to be used for width of elements cda5dea
  • change(utilities): values need important rule 96150d9
  • change(tokens): added also rem space values aedbbdd
  • change(tokens): updated z-index tokens with negative values 404efe4
  • refactor(tokens): add 14px font size token 8d8695d
  • refactor(docusaurus): restructured and improved sections navigation #174 b47b026
  • refactor(tokens): add 12 and 14px font size token #176 3681147
  • refactor(tokens): remove conditional border radius f0fe5ad

🏠 Documentation changes

  • docs(website): created new sections, improved website navigation 243f0be
  • docs(homepage): adding design system homepage with links for upcoming sections c9a9685
  • docs(docusaurus): copyedit, improved navigation 998762a
  • docs(website): restructuring, moved current DS docs to new folder 8bb612f
  • docs(homepage): copy editing ee37d6f

🛠️ Others

  • Release 0.4.0 f4bc509
  • feature(homepage): added Item group with icons #167 2ec99f5
  • feature(tokens): added borders, z-index, shadows tokens #171 74c1788
  • feature(tokens): added initial color design tokens #169 da3eae0
  • perf(carousel): added slick library ca9be51

0.3.1 - 2022-05-19

🐛 Bug Fixes

  • fix(input,segment): toggle inputs and padding fixes within Volto sidebar forms de030d6

💅 Enhancements

  • change(login): restored width of login container to 376px 0564293

0.3.0 - 2022-05-17

🚀 New Features

  • feat(Callout):create Callout component with Blockquote style 3d486b1
  • feat(callout): Align the Callout component with Volto slate component e9343ff

🐛 Bug Fixes

  • fix(testimonial): fix storybook arg names b9df52f
  • fix(table): tweak responsive table for extra long headers 7f9f9e2
  • fix(quote): fix color and padding issue 310d6b3
  • fix(accordion): Fix accordion active title color 57af165
  • fix(testimonial): remove info arguement 9593d95

💅 Enhancements

  • refactor(Table):add responsive mobile table story and styles aed69e6
  • refactor(testimonial): adjust to volto design | fix avatar image size 546070e
  • refactor(Quote):rename Pullquote component to Quote 9384a0c
  • refactor(Quote):rename Quote.Metadata to Quote.SourceInfo dfae8b1
  • refactor(Quote): rename Author to Source 6d400f6
  • refactor(Quote):move Testimonial component under Quote folder e2467c2
  • refactor(testimonial): readjust rounded card b419334
  • refactor(Table):wrap table with semantic ui container 24ac2bb
  • refactor(Testimonial):minor storybook bug fix 7b6d128
  • refactor(Callout): wrap story with semantic ui container ead362d
  • refactor(quote): update action name to match the functionality caf2e35
  • refactor(table): add borders to responsive table with celled attribute 8a71a67
  • change(table): make use of headerSortableWhiteSpace variable fd836fb
  • change(table): use the @mobileLandscapeBreakpoint for max 480px media query 90880ab
  • refactor(Quote):rename pullquote to Quote in Testimonial f54da19
  • refactor(Testimonial): change card class name e995c32
  • refactor(Testimonial): prettier changes 904594b

🛠️ Others

  • feature(tokens): added tokens folder for design tokens we can use in the system a542172
  • perf(lint): fix f2ef3ab
  • Release 0.3.0 8724b28

0.2.4 - 2022-05-13

💅 Enhancements

  • change(segment): brought back overrides from pastanaga into our theme 14efd02
  • change(container): removed padding from containers restoring thus the defaults c2ed813
  • change(grid-story): added container as grid width is influenced by container width 459f481
  • change(breadcrumb): removed padding from breadcrumb added by container c5df567
  • change(container): modified all outputted widths to align to grid 9f29cef
  • change(breakpoints): restore Semantic UI breakpoints, adding extra needed values e7f5b1e
  • change(container): restore maxWidth to 100% now that the last value is 1120px 8b55c58
  • change(header): wrap header globalnav links useful for editing section 10d4f56
  • change(breadcrumb): added vertical variant to the breadcrumbs like we do in Volto f405f84
  • change(breakpoints): added also contentBreakpoint for backward compatibility b6c9212

🛠️ Others

  • [JENKINSFILE] Add failure comment, no jenkins fail c325bf1
  • prettier changes 134da52
  • [JENKINSFILE] format PR comments 739438c
  • [JENKINSFILE] mention comment author in comment 39a26aa
  • [JENKINSFILE] remove debug, add error per stage 903eecd

0.2.3 - 2022-04-29

🚀 New Features

  • feat(CallToAction):add feat call to action ab53642

💅 Enhancements

  • refactor(button): add container to stories 6c02c19
  • refactor(tab): update vertical tab columns and content b473fab
  • refactor(call to action):render call to action with Button as="a" e7dfabf
  • refactor(button): update inverted button colors c822021
  • refactor(Tab):scrollbar change in mobile & vertical tab fix 0e34cbf
  • change(banner): added icon class to share icons 48e866e
  • refactor(Button): move button to forms folder 94996fc
  • refactor(Tab):minor change in secondary pointing menu variables 280b6c4

🏠 Documentation changes

  • docs(button): import call to action stories e4eed44

0.2.2 - 2022-04-22

🐛 Bug Fixes

  • fix(publicationCard): restore line endings 582859e
  • fix(form): added back overrides from Pastanaga theme a3f7ff8
  • fix(OrderedList) : add list only if sub list exists 8acbc8d
  • fix(label): update highlight label color d55bbb0
  • fix(publication card): run prettier 81a5bfc
  • fix(avatar) : fix naming convention for arg 84fc5fa
  • fix(tab): restore mobile font sizes 58f39be
  • fix(addForm): add min height to add form and fixed block chooser overflow ca4415d
  • fix(OrderedList): adjust margins to fourth sublists 663d384
  • fix(dropdown): being hidden because of third party css 7d353df
  • fix(modal): overflow hidden as clearfix of last child from modal b4923f5
  • fix(RelatedContent):fix merge conflict adc34bf
  • fix(button): labeled class needs to be placed after left or right keyword 53d1204

💅 Enhancements

  • refactor(card): prettier fixes e10e3d6
  • refactor(card): add card variations e16d05b
  • refactor(card): remove stories 0deb0ca
  • refactor(card):delete primary and secondary card stories 1f95d22
  • refactor(Avatar) : remake avatar as card variant ea77cdd
  • refactor(card): add styles for card variations 7407bd3
  • refactor(storybook): add story with related content inside of a tab dca008a
  • refactor(card): Rename variables from avatar to rounded be01316
  • refactor(avatar): update less variables and layer structure f965db1
  • refactor(PublicationCard):remake publication card to be a semantic card variation 5a0c6ab
  • change(button): simplified button styling fe892d6
  • change(button): simplified storybook naming and examples 9a7df4f
  • refactor(Avatar) : convert avatar component to card variation 2004a94
  • refactor(Related Content): change in grid and add see all button 955450e
  • change(button): added back button.overrides from pastanaga theme 3b55acb
  • refactor(card): add card class control 68c91a9
  • refactor(card):delete publication card variables & overrides files 6be8a03
  • refactor(OrderedList): rename TOC to Ordered List and add container to the story e00c4db
  • refactor(card): add card grid fluid story with no columns f38251c
  • refactor(list): remove horizontal control 1f5e576
  • refactor(avatarGrid): update less variables and layer structure db554a8
  • refactor(Related Content):show button when there are more hidden cards 57ff1c8
  • refactor(RelatedContent):change to use new card variant instead of publication card component 7cf424a
  • change(breadcrumb): brought back pastanaga overrides to breadcrumbs bca1c93
  • refactor(card):delete publication card folder & story 68bf773
  • change(buttons): modified basic and circular variant behavior c06fed9
  • refactor(card):tertiary variation minor story update 87b8dca
  • refactor(DescriptionList): add container to story d647c1a
  • refactor(List):render ordered list with ol,li tags 87813c1
  • refactor(OrderedList) : change table of contents story to ordered list cb6197c
  • refactor(publicationCard): update tag and name variables c109ad9
  • refactor(UnorderedList): update list as ul, list items as li and add container to strory 2c096e1
  • refactor(card):organize controls and minor bug fixes f3f6e35
  • refactor(less variables): publication card style changes c5a84e9
  • refactor(less variables): add less to related content e1a5543
  • refactor(RelatedContent):delete publication card component 2ed0ed4
  • change(button): basic button is again without padding, border and background 5a907c7
  • refactor(PublicationCard):remove link wrapper 5911a0d
  • refactor(less variables): change publication card height per viewport d7a5256
  • refactor(Timeline):change timeline icons b2fe0bf
  • refactor(publicationCard): replace px with rems 53bf8da
  • refactor(Related Content): change in related content grid bf856ce
  • refactor(List):render description list with dl,dt,dd tags ec669a7
  • change(button): show only labeled variant for buttons with icons bf49944
  • refactor(card): import image for rounded card ca5a47e
  • refactor(progress): add container to story dfb33bb
  • refactor(storybook): add publication card story with different description sizes 23af97b
  • refactor(List):render default list with dl & dt tags ece2280
  • refactor(storybook): add publication cards stories with longer description 37adefa
  • change(button): basic icon buttons no longer have box shadows c2f3ea3
  • refactor(card): remove story afc5f79
  • refactor(less variables): change card description line number per device 6946fda
  • refactor(card): update rounded card image path 8db3a85
  • refactor(DefaultList): add container to story f971193
  • change(button): bumped z-index of sidenav expand button 445ed8a
  • change(progress,label): color accessibility fixes #151 09cf6e3
  • change(button): text button now has an underline with a focus border like other buttons cdd9043
  • refactor(card): update card variation grids path 756589c
  • refactor(card): minor fixes 3a880d7
  • change(button): primary color is blue and secondary is green 53e0a0c
  • refactor(List):change styles to match with the tags lists are rendered 2673890
  • refactor(progress): update colors for accessibility ea2f454
  • refactor(card): move avatarGrid & relatedContent to Card folder 1959d52
  • refactor(Timeline): change storybook timeline colors to fix accessibility issues 79da8dc
  • change(segment): restore light grey background color for secondary segments 8716b08
  • refactor(relatedContent): adjust column paddings 8a1520d
  • refactor(storybook): clear up code 3ada154
  • refactor(card): use the rounded class for avatar grid 8c000f3
  • refactor(card) Update rounded card class 140b587
  • refactor(avatar): add variable for image border radius c23341c
  • refactor(label): add container to story 565101f
  • refactor(progress): update value color for accessibility error 6fc76f8
  • refactor(card):use jsx extension 413d328

🏠 Internal changes

  • chore(Avatar) : add container to stories 41b748c
  • style(OrderedList): prettier fixes ed95e4d

🛠️ Others

0.2.1 - 2022-04-08

🐛 Bug Fixes

  • fix(version): Switch to 2.0.0.alpha.1 83b8b8e

🛠️ Others

  • cleanup(loader): Remove useless HTML d1d180c

0.2.0 - 2022-04-04

🚀 New Features

  • feat(card) : add new default card color-schme 965adea
  • feat(label): Handle slate links and footnotes f382431

🐛 Bug Fixes

  • fix(buttons,toggles): border and background color when active 147629 #139 ea36f31
  • fix(checkboxes): background color when they are toggles 4b6ab67
  • fix(buttons): border set on basic buttons appearing on svg elements of Volto UI 69ca73f
  • fix(label): Zotero/Footnotes inside label 0ee4d58
  • fix(card) : add control for image url in storybook b28e530
  • fix(less variables):change font family e4bca9e
  • fix(storybook):minor bug fix 9fc53bc
  • fix(tag): fixes merged theme config eb30363
  • fix(Banner): prop types fix a270e5b

💅 Enhancements

  • refactor(tag): splits Tags component to TagList and tag, changes default tags style 78a5f8c
  • refactor(Banner):add banner share pop up in banner story c9688b2
  • refactor(tag): remove classes and actions that add background color ce9b6f9
  • refactor(Banner):change banner's image wrapper implementation 9153dd1
  • change(package): bump release version to 1.10.0 7e984c1
  • refactor(card): align cards and images, update less variables d47c978
  • refactor(card): add class inverted for default card 919a56e
  • refactor(tag): changes component name e1db068
  • refactor(tag): changes color metallicBlue to bottleGreen e4b68ac
  • refactor(less variables): change tag list mobile view fcded3d
  • refactor(tagList): update story to not use tag color classes 8b5b61b
  • refactor(Banner):minor bug fix ff8c352
  • refactor(Banner): add metadata field sub component 327b7e7
  • refactor(banner): add and adjust remix icon for banner action 1bf3ffa
  • refactor(banner): replace px with rem and adjust share popup padding a568329
  • refactor(Banner):add type class to metadata field and apply styles to it 86a2866
  • refactor(less variables):change tag list styles 8670087
  • refactor(banner): share items display flex on desktop 3ff8684
  • change(banner): added background gradient, share popup, metadata show and hide #136 2f5dcca
  • refactor(banner): update gradient 570ee1e
  • refactor(tags): removes hardcoded ':' ea58e86
  • refactor(card): remove card border bc77739

🏠 Internal changes

  • style(card) : add lint and prettier changes 9d9a773
  • style(tag): remove comments 501fcdf
  • style(tag): stylelint and prettier changes 08b6386

🛠️ Others

0.1.9 - 2022-03-25

🚀 New Features

  • feat(all): 1.9 release #124 0d3f6fb
  • feat(callout): Align volto-slate callout with blockquote style 9e0bb49

🐛 Bug Fixes

  • fix(inpageNavigation): restore hidden on top functionality c554e6e
  • fix(list): Fix TOC margin on 3rd level f17da79
  • fix(inpageNavigation) : add smooth scroll animation 42f6564

💅 Enhancements

  • refactor(footer): update visual and mobile margins 64f05af
  • refactor(header): restore union dropdown after implementation a7029c5
  • refactor(pullquote): adjust to the new figma design 78e4606
  • refactor(breadcrumb): adjust font sizes and import remix divider 5fcabaf
  • change(header): use viewport width for changing mobile text in header dropdowns 5a7868e
  • refactor(inpageNavigation): adjust to the new figma design 4073acf
  • refactor(tab): add max width for tab items 366d279
  • refactor(less variables):change pullquote styles 9ad94bb
  • refactor(Pullquote):change quote positions and add Pullquote.Metadata sub component 6bce35f
  • refactor(inpageNavigation): Update to remix icons 19a6061
  • refactor(inpageNavigation) : move icon & text to be in column 0953910
  • change(breadcrumbs): modified breadcrumbs template to behave like breadrumb template 490a559
  • change(package): bump release version to 1.9.0 43a6e4b
  • refactor(breadcrumb): adjust font sizes and import remix divider #120 09a3a01
  • change(menu): modified secondaryPointingItemMaxWidth to a value that equals to 250 ea138a1
  • refactor(pullquote): introduce meta section, use remix icons, integrate slate callouts #119 fd740c9
  • refactor(footer): updated visuals and gradients #117 e5c6d18
  • change(scrollToTop): feature inpage navigation revamp #121 3cf20a8
  • refactor(footer): update visual and gradient 764ec23
  • change(header): use 12px font size for mobile resolution dropdowns 6dad0fa
  • change(nav): added navDepth to 3 in order to enable mega menu integration c4f73fd

🏠 Internal changes

  • style(inpageNavigation) : lint changes 3641d78
  • style(inpageNavigation) : add less variables 0699c70
  • style(pullquote): create variable for icon font size fea9b0a
  • style(inpageNavigation) : add lint & prettier changes f8dd012
  • style(inpageNavigation): remove comment 1aee011

🛠️ Others

0.1.8 - 2022-03-18

🐛 Bug Fixes

  • fix(card): avoid long links from spilling outside of card body area 95b8951

💅 Enhancements

  • change(typography): set heading sizes as detailed in docusaurus typography section 189bf20
  • change(docusaurus): content tweaks, inpage navigation section #112 b62d1b1

🏠 Internal changes

  • chore(docusaurus): fixed grid tablet breakpoint value c7fbc09

🏠 Documentation changes

  • docs(docusaurus): capitalization remove bf8fa44
  • docs(docusaurus): update 1c04976
  • docs(docusaurus): comment address on pr 112 6e4fe3b
  • docs(docusaurus): color minor update 13f9fda
  • docs(docusaurus): tabs and breadcrump update d0547e5

🛠️ Others

  • doc(colours): add more content ec66248
  • Add divider content for metadata field in Banner f1e34bd
  • Release 1.8.0 fd6ba04

0.1.7 - 2022-03-15

🚀 New Features

  • feat(less): add global gap sizes 3c83f20
  • feat(icons): import remix css 29967fb

🐛 Bug Fixes

  • fix(menu): fix border overflow for tabs and pagination e88721f
  • fix(accordion): responsive and accessibility issues c225935

💅 Enhancements

  • refactor(menu): update paddings for tabs and pagination 533a509
  • refactor(accordion): import semantic icon for remix arrows 9aa77d8
  • refactor(all) icons, accordion, button and menu itml #108 52ed2ca
  • change(storybook): segment stories now contain several elements 98a7654
  • change(table): inherit header alignment instead of hard-coding values ebb5193
  • refactor(icons): add remix icons c4c1a92
  • refactor(container): restore mobile width to auto 2df184c
  • refactor(button): update action button hover color bb09d71

🏠 Internal changes

  • chore(docusaurus): docs delete 5f9d733

🏠 Documentation changes

  • docs(colors): corrections da64c4c
  • docs(list): default list showcase 8ded062

🛠️ Others

  • bug(form): input min-width more specific to not break volto interface 3f5b5d4
  • Update package.json 3dba28b

0.1.6 - 2022-03-11

🚀 New Features

  • feat(cards): add custom display for volto-block-image-cards 645096a
  • feat(PublicationCard):create publication card component & styles 3e5f9b7
  • feat(PublicationCard):create publication card component & styles 12cdd5d
  • feat(Related Content): create Related Content component 77eda95
  • feat(Related Content): create Related Content component 08d495b
  • feat(pagination,related) added several r3 components #105 08d47c1

🐛 Bug Fixes

  • fix(Related Content): limit publication card number to 4 e7df032
  • fix(less variables):rename publication card variables 55c6fb8
  • fix(Publication Card): add link to card and arg name fix 36a7c96
  • fix(radio): fix bullet scaling issue with firefox 5f02c95
  • fix(radio): fix bullet scaling issue with firefox dbb2e27

💅 Enhancements

  • refactor(form): remove custom classes and add container to form items 6b5442a
  • refactor(form): remove custom classes and add container to form items d1ec083
  • refactor(form): update form wrapper component a719576
  • refactor(form): update form wrapper component 0736ec7
  • refactor(form): adjust form items to volto theming 4213cfb
  • refactor(form): adjust form items to volto theming 374ffbc
  • refactor(breadcrumb): remove custom class anf and new variables b3cb83d
  • refactor(breadcrumb): remove custom class anf and new variables d5808ad
  • refactor(storybook): clear up unnecessary form elements controls f7e7d5b
  • refactor(storybook): small change in unordered list story 3ffd872
  • refactor(storybook): small change in unordered list story 6ce16e9
  • refactor(pagination): fix menu overrides for tabs that affects pagination fe8c4ca
  • refactor(pagination): fix menu overrides for tabs that affects pagination 3f4b726
  • refactor(Loader):remove image & add background image 70fe041
  • refactor(Loader):remove image & add background image ac38126
  • refactor(list): remove selection control a09b179
  • refactor(list): remove selection control 17bf710
  • refactor(storybook):unordered list minor change df2b727
  • refactor(storybook):unordered list minor change ef6db73
  • refactor(colors): remove metalic blue color b2f95b6
  • refactor(colors): remove metalic blue color 1eea33f
  • refactor(button): update variables b1774d8
  • refactor(button): update variables 061f3e3
  • change(blockquote): treat slate as a variation of blockquote component 19bd9a5
  • refactor(container): remove important from rules e984771
  • refactor(storybook):add textarea control to add/remove fluid class 475f540
  • refactor(container): remove important from rules 1cc6984
  • refactor(storybook): add required attribute to form fields fecee27
  • refactor(progressBar): update progress bar colors with vars c4ef1f0
  • refactor(progressBar): update progress bar colors with vars a44d73c
  • refactor(storybook): add required attribute to form fields 21da79e
  • refactor(list): adjust bullet size 2b29e4e
  • refactor(list): adjust bullet size 61c341c
  • refactor(statistic): add inverted background to global variables 1427e70
  • refactor(statistic): add inverted background to global variables ea25dfa
  • refactor(statistic): remove custom class 46cc560
  • refactor(container): update mobile width d548a44
  • refactor(grid): replace px with rem units e792f51
  • refactor(statistic): remove custom class b5c8e7c
  • change(docusaurus): updated template to change what's new title 3e15f4d
  • change(footer): added display variable for footer site logos d5b3c2f
  • refactor(grid): replace px with rem units f0331d0
  • change(github): auto deploy only on develop branch 11d6b4e
  • refactor(header): implementation in preparation for Volto integration #20 #89 95b136d
  • change(github): trigger autobuild when modifying templates contents 46094b1

🏠 Internal changes

  • style(list): prettier fixes f9e3b05
  • style(list): prettier fixes 8eb715b
  • chore(github): merge changes from develop to develop-itml 063bd6e
  • chore(github): build deployment only on develop branch a5a1b08
  • chore(github): build deployment only on develop branch bb455aa
  • chore(github): merge changes from develop to develop-itml 129c12f

🛠️ Others

  • Revert "chore(github): merge changes from develop to develop-itml" ca9520f
  • refactor breadcrumbs component, make it functional and customizable e902d69
  • rollback(cards): move custom display to volto-block-image-cards 2564b1e
  • bring back segment wrapper and make it attached 8458f03
  • no display: flex for blockquote added from slate 5595ce1
  • Add rule about code length a5f3652
  • Add indenting rule 15c44cb
  • fix warning related to proptype 946c6c6
  • fix profile section css overflow db5126f
  • Add rule about import sorting 804e188
  • don't use volto-slate 6a02976
  • remove segment custom width 1d3ea40
  • Add rule about naming vars 8f9020f
  • update style for accordion title 0b0d678
  • Release 1.6.0 e771e65
  • update bbcab87
  • add margin to <br> element to simulate gap as in design c6685c1
  • make breadcrumbs default size as tiny 589581f
  • remove uneeded style 82a8fb1
  • Add rule about hardcoded values e04e0df
  • Add file mode rule 65c9a93
  • Add DRY rule 66c9c3a
  • set profile section overflow to auto 71ab47f
  • Add Sonarqube tag using eea-website-frontend addons list 647a6e3
  • removed override already present in card.less 50d2ab2
  • update 7a1d482
  • Add functional components rule; add classnames rule 91a0b06
  • added comment about need for removal of this fix later 65b8166

0.1.5 - 2022-03-08

🚀 New Features

  • feat(cards): add custom display for volto-block-image-cards f49ffb6
  • feat(KeyContent): add new component 2534c54
  • feat(docusaurus): Updated developer guidelines ca146ff
  • feat(storybook): add testimonial component 55d9747
  • feat(storybook): add AvatarGrid component b668445
  • feat(storybook):add Loader component f675834

🐛 Bug Fixes

  • fix(breakpoints): fix largest screen breakpoint bug on scaling e4a11c8
  • fix(profile): section css overflow and padding issues #95 bb9eb0f
  • fix(storybook): lint auto changes for AvatarGrid b8e74f1
  • fix(components): add grid structure to various components cc33546
  • fix(header) re-added span tags removed in pull request #74 00702d7

💅 Enhancements

  • refactor(button): styling updates 37afda5
  • refactor(tab): updates on variables and overrides 54bf703
  • change(blockquote): treat slate as a variation of blockquote component 5e8a8b8
  • change(footer): added display variable for footer site logos 2f942b4
  • refactor(checkbox/radio): remove header from message and adjust top position of bullet 4a072b3
  • refactor(color): remove secondaryColorDarken variable 74c8ba0
  • change(docusaurus): updated template to change what's new title 58f58c8
  • change(github): auto deploy only on develop branch bfa35a3
  • refactor(header): implementation in preparation for Volto integration #20 #97 cddda20
  • refactor(breadcrumbs): component, make it functional and pluggable #32 #94 9f42e80
  • change(card): added styles for volto cards integration #92 a46ac21
  • refactor(grid): remove column count from example ac0e9cf
  • change(github): trigger autobuild when modifying templates contents 5f7d152
  • refactor(grid): remove custom grid 1d978a9
  • refactor(Form):change form field wrapper implementation 73cdd6d
  • refactor(message): update colors to match design 633ce31
  • refactor(checkbox/radio): update variables and remove important rules ad533b4
  • refactor(less variables): add variables to less for new components 47df026
  • refactor(Tab): fix vertical tab alignment 401bdf2
  • refactor(lint changes): add lint changes 6f6847f
  • refactor(inpageNavigation): adjust to volto theming 62f74ea
  • refactor(message): updates on styling b4cf850
  • refactor(banner): update class name ef0969b
  • change(github): use develop for auto pushing a32a723

🏠 Internal changes

  • style(design-system): unix eol 631fa90
  • style(checkbox/radio): prettier fixes a04939f
  • style(design-system): unix eol 3c753f0
  • style(message): stylelint fix 5b75057

🏠 Documentation changes

  • docs(docusaurus): visuals guidelines 544a950
  • docs(docusaurus): search guidelines 0fb229d
  • docs(docusaurus): loader page 892a25d

🛠️ Others

  • Reformat header.less 1f99dfc
  • Close menu when changing path 65daea9
  • refactor breadcrumbs component, make it functional and customizable 4ec374e
  • rollback(cards): move custom display to volto-block-image-cards 79d4c89
  • Open overlay menu on global menu click cc749bc
  • bring back segment wrapper and make it attached 9f413ff
  • Use renderMenuItem also in mobile menu 02de0bb
  • Fix clicking outside closes menu af52664
  • Cleanup args in header story 2bf6a30
  • fix warning related to proptype 824b9be
  • fix profile section css overflow 8fd2654
  • don't use volto-slate 70ca3d4
  • remove segment custom width 4a60d84
  • update 96f4af0
  • Fix TopDropdownMenu component rendering in mobile a4626de
  • Add usePrevious hook 797faba
  • make breadcrumbs default size as tiny 3c8e1c6
  • Update package.json fa020cb
  • Add rule about hardcoded values 0c6912c
  • set profile section overflow to auto 8db62bb
  • added comment about need for removal of this fix later 6fdbd71
  • Add Sonarqube tag using eea-website-frontend addons list 6051724
  • removed override already present in card.less 93c4e5a
  • Remove console.log calls 8a3a4cb
  • update 81bb7d4
  • Update comment ffa2400
  • merge develop into this branch ad5b388
  • WIP a8d97f1
  • Use header.less from develop branch 99edbc6
  • WIP 57b5783
  • WIP 785da36
  • WIP 5d1eba9
  • adds Tags e37fc19
  • Add useClickOutside hook 70364c8
  • Implement outside click handling fa6f818
  • Simplify overlay menu template 28b0478
  • fixes less variables, fixes tags positioning cc19b9b
  • WIP 15bc0f4
  • no display: flex for blockquote added from slate 312a893
  • Add rule about code length 318cd48
  • Add indenting rule d589685
  • Add rule about import sorting cd337c1
  • Add rule about naming vars b112de0
  • Bring back classNames from header subpopup e477a51
  • removes tags hashtag from jsx 6b8b3e9
  • WIP d481324
  • fixes undefined on empty classes 4b29080
  • stylelint changes a5ab830
  • Footer link color @white 578e4f7
  • add margin to <br> element to simulate gap as in design 9ab9a97
  • impors colors from site variables 6117267
  • small fix for the link in footer action 72df049
  • remove uneeded style 66e9064
  • use proper naming conventions for var naming 596e314
  • Add file mode rule 805baa7
  • use less variables b43ac8d
  • Add DRY rule 2f1584e
  • Add functional components rule; add classnames rule 1b2915e
  • fix z-index of header 7d2a5d6
  • Remove comment 7d120b1

0.1.4 - 2022-03-01

💅 Enhancements

  • refactor(pagination): adjust to volto theming 06cc3b6
  • refactor(Form):create form field wrapper file 95b9934
  • refactor(megaMenu): update margins for menu items 230e476
  • refactor(megaMenu): update gradient 47f2ea4

🏠 Documentation changes

  • docs(docusaurus): divider page c6bb238

🛠️ Others

0.1.4-beta.0 - 2022-02-25

🚀 New Features

  • feat(github): added feature and bug reports templates with our guidelines as checkboxes 1549093

0.1.3 - 2022-02-25

🐛 Bug Fixes

  • fix(all): change eol to unix 62e7224
  • fix(banner): separate url value f9c9140
  • fix(all): merge eol c68f6e0
  • fix(blockquote): align self property now uses a valid entry ec76163

💅 Enhancements

  • refactor(megaMenu): new implementation ff013af
  • change(volto): removed customizations made for ims theme from volto-eea-design-system bc8d514
  • refactor(Timeline): divide to sub components and change files to .jsx 3e2bd3b
  • refactor(header): update variables 4e5d08d
  • refactor(Header): link header's menu to mega menu 08406d8
  • refactor(Menu): change mega menu implementation 455a51b
  • refactor(Grid):minor changes and delete extra files 272585d
  • refactor(timeline): adjust to volto theming b98641a
  • refactor(megaMenu): fix link hover issue for tablet 564e972
  • refactor(header): add remix icons and minor updates c9c97dd
  • refactor(Header): change header buttons implementation 6608b8c
  • refactor(Header): add sub components and change existing Main 74c35a3
  • refactor(table): adjust to volto theming ab7a0e8
  • refactor(Footer): delete Actions & ThemeSites files and clear imports 7a78456
  • refactor(header): update variables 326655a
  • refactor(Breadcrumb): add react router link and minor bug fix 073a3a3
  • refactor(Header): show menu on search & minor bug fix 4d49a8a
  • refactor(List): add extra default list story 95665cd
  • change(docusaurus) change generation of what's new section and bump package version 6c35cff
  • refactor(Footer): minor code changes 67cb4bc
  • refactor(Menu): add class to mega menu items for styling 19baa34
  • change(accordion): modified default accordion stories titles with real accordion names cf11cc8
  • refactor(Header): accessibility image alt fix a7347a6
  • refactor(header): adjust to volto in progress 760beca
  • refactor(Header): header items as storybook arguments 388c752
  • refactor(banner): update less variables 35b0a98
  • refactor(banner): actions as buttons; don't hardcode url for banner image; subcomponentize Banner, add Banner.Action; add developer guidelines on inline styles and line endings; 6dd5a41
  • refactor(blockquote): fix responsive margins and sizes rems 209f94f
  • refactor(Input): label position and style change 970074a
  • refactor(header): update dropdown menu 32eb0fa
  • refactor(timeline): theming updates c80c9aa
  • refactor(Blockquote):remove image stories a6357ca
  • change(docusaurus) proofread blockquote usage section and removed unused api section 0bb29fd
  • change(infrastructure) cherry-pick fix 9639243 skipping jenkins on auto commits fc744cd
  • change(ci) build storybook and docusaurus only when pushing to develop-itml branch 4de0cbf
  • change(infrastructure): modify whats new doc when committing the auto deployment 39df33e
  • change(blockquote): introduce float argument for blockquote with image storybook 8fc7290
  • refactor(pullquote): add word break 2245e53
  • refactor(Banner): minor bug fix b9073b6
  • refactor(table): fix th font weight a96a0a7
  • refactor(comment): remove avatar border radius d42c37b
  • refactor(banner): adjust title size 7a24d9c
  • refactor(Image): change image path a580da6
  • change(infrastructure): specify that docs folder contains changes for deployment a1ca915

🏠 Internal changes

  • style(input) prettier fixes e83fa0c
  • chore(storybook): prettier fix 354c7b3
  • chore(design system): technical commit for edw integration tests 9f76035
  • style(storybook): prettier fixes 3c9ad34
  • chore(infrastructure) updated branch with changes from bitbucket 77866f8

🛠️ Others

  • doc(colours):fix color to better show primary ones 705b789
  • doc(colours):change font size to fit text in one line 4ad7516
  • bump package release to 1.3.0 f3cfe4f
  • Refactor banner into content subcomponent f8df238
  • lint fixes cda322d
  • rollback don'ts grammar change and disable unresolved import for Banner.stories.jsx a1bd715
  • Add space line in component d4d1a5f

0.1.2 - 2022-02-17

🚀 New Features

  • feat(blockquote) added blockquote styles as a custom module d30662e

🐛 Bug Fixes

  • fix(inpageNavigation): hide at the top of the page 97ef500
  • fix(footer):missing image ac91a29
  • fix(comment):fix broken image 8125dc1
  • fix(message): fix font loading fdc498e
  • fix(logo): logo change 5f8c8af

💅 Enhancements

  • refactor(storybook): multiple components fixes 4a3ff51
  • change(infrastructure) re-enable integration tests for auto release stack ce8daf8
  • refactor(storybook): global site files styling update f3770f1
  • refactor(storybook): multiple components 9277aac
  • refactor(footer) adjust to volto theming update a59f1c3
  • refactor(header): minor styling update dd6b55c
  • refactor(Header): change header mega menu 7559b57
  • refactor(banner): adjust to volto theming 451b949
  • refactor(accordion): minor styling update aeaf25f
  • refactor(footer): adjust to volto theming bdff176
  • refactor(footer):mobile responsiveness 14822be
  • refactor(storybook): main and custom less files update 1607760
  • refactor(timeline): update after removing timeline addon f54d380
  • refactor(Footer): replace with subcomponents 378c652
  • refactor(Header): header change 029e850
  • refactor(Header): change header bar 2b766fd
  • change(docusaurus) use itml branch for docusaurus deployment 6e286c5
  • refactor(accordion): adjust to volto theming 971fcb8
  • refactor(Header): add sub components 7f955db
  • change(docusaurus) tweak auto deployment to always commit changes from docs a2940da
  • refactor(banner): less and variables files created d5b1a8a
  • refactor(label): adjust to volto theming 3c945e1
  • refactor(message): adjust to volto theming 3e950fc
  • refactor(Footer): add sub components and props c3d1487
  • refactor(modal): modal and confirm adjust to volto theming 83b60e9
  • refactor(comment): adjust to volto theming 84348c3
  • refactor(storybook):adjust headings 32f64f9
  • refactor(Header): add comments to header menu c2c83b2
  • refactor(Accordion): clear up accordion stories code 4e59b8f
  • refactor(segmant): adjust to volto theming 3ab211e
  • refactor(button) minor styling update 8782bb2
  • refactor(banner): change image position cdd76d5
  • refactor(breadcrumbs): update less variables 640817e
  • refactor(list): adjust to volto theming 1079c73
  • refactor(timeline):adjust timeline module 213eb11
  • refactor(blockquote):adjust to volto theming 5eec87f
  • refactor(progress): add progress bar colors ccf3c98
  • refactor(pullquote):adjust to volto theming fee4466
  • refactor(Header): change mobile mega menu c7ecf18
  • refactor(statistic): adjust to volto theming b726e49
  • refactor(button) adjust to volto theming eb257f8
  • refactor(form): minor styling update 79934b2
  • refactor(Footer): create Actions & Sites sub components 446840b
  • refactor(inpageNavigation): adjust to volto theming 85c631a
  • refactor(Inpage Navigation): changed button's display 36e5b4f
  • enhancement(docusaurus) modified headings to be within release versions 19ace30
  • refactor(storybook): move components to ui folder cb91f88
  • refactor(Header): change mega menu de0fc6b
  • refactor(Pullquote): divide Pullquote to sub components 34413c4
  • enhancement(docusaurus) replace changelog when auto-building docs Refs #145331 da25c0e
  • refactor(popup): adjust to volto theming d0d192d
  • refactor(card):adjust to volto theming 2ab6f91
  • refactor(item): adjust to volto theming 89a16af
  • refactor(pullquotes) remove unnecessary variables e0d20a3
  • refactor(progress):adjust to volto theming d1ab950
  • refactor(blockquote) change variables names 36fd5be
  • refactor(comment): adjust font sizes 0311ed1
  • refactor(InpageNavigation): clear up code 1d7afdc
  • refactor(container): change variable name for computer padding 26d123f
  • refactor(inpageNavigation): remove imports 25c1d1c
  • refactor(storybook): update ui index components exports ce78d47
  • change(infrastructure) auto build storybook when pushing to develop-itml branch of volto-eea-design-system e9aa5bc
  • refactor(storybook): delete demo stories 8b58d02
  • change(docusaurus) align deployment steps for building docusaurus 37e4ce0
  • refactor(storybook): remove components from customizations folder 8930ede
  • refactor(tab): minor styling update 1252ad0
  • refactor(comment): change avatar src e5f9c4c
  • refactor(banner) : change file type and folder 878742b
  • refactor(form elements):changed text 919beea
  • refactor(Image): change image src b971084
  • refactor(Pullquote): add component propTypes d32c5e6
  • refactor(blockquote): adjust font sizes d71a3ce
  • refactor(footer): update font sizes 1c91c35
  • refactor(Blockquote): add component proTypes ea02649
  • refactor(logo): update image f611372
  • refactor(docusaurus): restore config f2c5239
  • refactor(blockquote): update component name 572e655
  • refactor(header): fix story header import ceda6c7
  • change(infrastructure) auto build docusaurus when pushing to develop-itml branch 7bebdf5
  • refactor(storybook): remove components from customization folder 4a9bb9b
  • refactor(banner):story rename 56ff603
  • change(testing) removed navigation from cypress tests until component is finished 5549f4c
  • refactor(Segment): change to .jsx extension 5cb35d8
  • refactor(Pullquote): change to .jsx extension 564cf7e
  • refactor(PopUp):change to .jsx extension dcb24ff
  • refactor(InpageNavigation): change to .jsx extension dfefce3
  • refactor(Blockquote): change to .jsx extension 44a1645
  • refactor(heading): story name update aa10f34

🏠 Internal changes

  • style(footer): prettier fix 902c257
  • style(storybook): prettier fixes 59f941d

🏠 Documentation changes

  • docs(docusaurus):multiple page updates 2aba73e
  • docs(docusaurus):update page content 565697f
  • docs(grid):update components grid 60eb083
  • docs(docusaurus): page adjustments 0641eac
  • docs(docusaurus):updated various pages f860176
  • docs(docusaurus): logo change 3af5e5c

🛠️ Others

  • added sortable table stories and descriptions 6d44dd7
  • Layout components theming 5861013
  • recovered files from origin a4ac04f
  • grid component & stories changes 4a5752e
  • Updated what's new section with actual commits from volto-eea-design-system repo fc5e3c3
  • Docusaurus title possible fix. db699e7
  • form elements stories added description & default values 6b4f6eb
  • removed API tabs 58aa928
  • Layout updates 854f388
  • Refs #142123 removed extra customization of semantic.less: ab9de81
  • added page-header,footer and grid in docusaurus 660c8e3
  • Manual docs build and commit 666eb6a
  • added svg & png files f1338d5
  • added missing components to docusaurus 934dfd8
  • Control descriptions updated 56581eb
  • Grid updates 700332d
  • Button theming update 0ec68b6
  • site variebales & overrides changes 7251162
  • Table and Tabs theming 49f0860
  • Responsiveness updates 48e1351
  • added various components to docusaurus 550d719
  • Checkbox and radio updates 24652a2
  • remove images from typography and colour docs 8493e92
  • added guidelines' text and finished all components 02d75fc
  • added more missing components in docusaurus 8be8263
  • Prettier changes on docusaurus 5f1e5eb
  • Grid updates ae09945
  • Minor fixes for tests 3bdf306
  • Layout updates 8b7a4dc
  • Footer and TOC theming bb3d3c4
  • Refs #145331 manually commit changelog until autobuild is stabilized 93168b0
  • label component changes df8c0ff
  • added several sections to the theming guidelines ff1a649
  • Updated removed files. 84f9b8c
  • added more docusaurus components 52a3b9e
  • Progress Bar 9f2efc9
  • Modal and Confirm updates 3b306c6
  • Add proper changes to whatsnew meant in previous commit 40f78e3
  • Form Descriptions de0dfbc
  • Prettier fixes 1337e6f
  • Deleted files b82f982
  • add new images for spacing 7b7b2c4
  • Messages Theming ad621a3
  • added new content to docusaurus 1c83452
  • Minor less updates a36a8bb
  • Tabs and lists updates e37eef1
  • Inpage nav and timeline components 76f0f82
  • Prettier updated files 679b9d2
  • dropdown initial d8aef26
  • Prettier changes f068af0
  • List initial 6d3b969
  • List story updated e96a6f6
  • Statistics updates 74bf639
  • styling c169cc0
  • timeline comp storybook changes 1f42686
  • feature(docusaurus) added theming guidelines ded1f04
  • Properly commented out integration tests. 48b3a15
  • Reattempting commented out integrations tests. 3dd8211
  • Button theming 4231e1c
  • Card initial 06dace5
  • form element storybook changes c4b06aa
  • Pagination theming 2a80175
  • Accordion theming 8061bf9
  • global var updates and radio story 9526ee2
  • created pullquote component & stories df35563
  • Item stories added description & default values 9d459f2
  • storybook clean up code bffd326
  • List updates 28f1b53
  • Button classes updates 788c289
  • Prettier fixes 678c9be
  • Removed header title from partial docusaurus components. ed7c45e
  • created banner component and stories 9be170f
  • Breadcrumb stories description & defaultValue -- clean up code 186ab65
  • Refs #142123 added customization of semantic.less: 1e02356
  • Card stories added description & default values f6b408f
  • Statistic and accordion updates 16064ce
  • breadcrumb component & stories changes 5bceb98
  • Container initial 3eb7155
  • doc(docusaurus):Fix text for various parts bfd3fa2
  • blockquote component & stories 879b640
  • Refs #143412 removed doc comments breaking doc building e6a6756
  • Popup updates ce2d641
  • Global variables for colors and borders added 6e5fbd6
  • Tab stories changes 5429cfb
  • Confirm stories added description & default value 85cda14
  • Kebab case class names b41cd07
  • Card and Comment class updates 3899465
  • Accordion updates c97ba39
  • item stories changes 772e41f
  • Accordion class updates 9cdde86
  • Comment stories added description & default value cb6f25b
  • Accrodion stories description & default value ab8fb88
  • Pullquotes updates c598421
  • Modal and confirm class updates 0ae47e6
  • Tab and paggination updates 96796ff
  • Form Updates e986a9f
  • Classes renamed 73c8c3d
  • List and item less updates ce0de17
  • Confirm theming 36e20ce
  • container overrides changes 4b3970b
  • Docusaurus theming fc4a8c5
  • refacto(headings): update mobile headings sizes b2e9f83
  • list stories and style changes c61db53
  • Tab theming e31e6c3
  • Message and pagination classes updates c230687
  • Segment initial d5724fe
  • Refs #143412 removed doc comments from api_markdown breaking doc building efeacba
  • Timeline and responsiveness updates 1ed1524
  • Refs #142123 use swap font-display for performance reasons 083738f
  • Breadcrumb stories minor changes 3d0d17c
  • Table component stories minor change 0bf4083
  • List stories changes a64b304
  • blockquote component minor changes cdf71a8
  • ckeckbox stories minor change 6d6e508
  • image component storybook changes 91290ec
  • button overrides changes d5b78dd
  • accordion overrides changes fdcf7d5
  • Accordion component and stories changes 5079247
  • Card theming 23bbb9d
  • statistic overrides changes 2b11cb5
  • Refs #143412 build docs only on pull request like we do with storybook 473bb87
  • Card component stories minor change | added link icon deb423a
  • comment component stories changes f1c5e75
  • Accordion component bug fixed 815e91d
  • Refs #145331 use iso date to release so that we see also time ceedf08
  • correct connfig for doco 93e1313
  • Item updates fae93d4
  • added layout grid 2e6be55
  • tab overrides changes 87aaf32
  • message overrides changes 6dccfca
  • segment storie changes 296371f
  • progress component stories changes df10c2e
  • message comp storybook changes c86b405
  • Accordion cmponent stories | minor bug fix 6de0d81
  • Refs #145331 add all changes when auto building docusaurus ce11cce
  • perf(timeline):removed semantic timeline package 0aeb34a
  • Tablet Breakpoint update b229c27
  • Refs #143412 set storyBook Url to eea.github.io b7fdecb
  • bump package version to signaling of a major release c835f1d
  • small commit to trigger deployment of storybook and docusaurus be46ea3
  • doc(accordion):revert previous change 3de02da
  • fix typo for caption @desktop line-height pixel number 1671552
  • Commented out integration tests. 574cfec
  • popup overrides changes a9555e3
  • container component stories fixes 692cfce
  • Added timeline to package json fixed f2e93e0
  • Refs #142123 modified import of volto-eea-design-system icon.less: a7fab7d
  • Refs #142123 reference icon.less from this package: 5616e6d
  • Menu component stories change 2797716
  • Image stories minor change ddb9f1d
  • card component stories changes 6ccba1e
  • Added timeline to package json 93031d6
  • table stories code clean up b7b2a56
  • Refs #143412 removed extra baseUrl from docusaurus config 79f36da
  • Accordion stories minor change ffe808a
  • Theme assets 3f4bea4
  • Merged with develop 167ec9f

0.1.2-beta.2 - 2022-01-03

0.1.2-beta.1 - 2021-12-22

🛠️ Others

  • Tab component stories minor changes 4690a6f
  • Comment component stories minor changes a87cb6a
  • Form stories changes fc30c90
  • Grid component stories minor changes 798fdd0
  • Image component stories minor changes be93385
  • Menu component stories minor changes cb1f9a8
  • Dropdown component stories minor changes 57cf954
  • Header component stories minor changes 264fd46
  • Confirn component minor changes 9a00bc1
  • Item component stories minor changes 6994fa0
  • Label component stories changes 5cc5843
  • Container component stories minor changes e6e40b3
  • Message component stories minor changes ba9d377
  • Breadcrumb component stories minor changes ff7a176
  • Modal component stories minor changes af1fe6a
  • List stories changes 0016042
  • Button component stories minor changes 690dfd2
  • Radio component stories minor changes 84eac30
  • Progress component stories minor changes e676357
  • Pagination component stories minor changes b1af226
  • Segment component stories minor changes 5f8c7ef
  • Refs #143412 eslint fixes for component stories badcb91
  • Table component stories minor changes 7c104b8
  • Refs #143412 more eslint fixes a88c091
  • Refs #143412 warn for broken links instead of throwing bd5821c
  • Refs #143412 merge changes from develop-itml to develop branch bca28b9
  • made tabs dynamic for api tab ea37ecb
  • Basic storybook/Docusaurus components 840ab60
  • created List directory & srories based on semantic-ui List component 51f1901
  • made tabs as component easy to call for other components 07bae49
  • Popup Component | minor fixes 2ff9908
  • created stories for Tab component 95e3a73
  • created Table directory and stories based on semantic-ui Table component e16115d
  • List component stories - minor changes de11343
  • created stories for Comment component a20f884
  • created stories for Grid component 360d2a8
  • created stories for Image component 3c1d2bc
  • created stories for Menu component 17e3b37
  • Added untracked files 75f0afd
  • created Dropdown stories d6a2538
  • created Header component stories b833979
  • created stories for semantic-ui Confirm component 6fddccc
  • created Statistic directory and stories with semantic-ui Statistic component cd62498
  • created Item component stories 90ec2be
  • created stories for Container component 41934f6
  • created Label component stories 71732f6
  • created Message component stories adcbeab
  • created Modal component stories c25409d
  • Breadcrumb component stories and minor changes 6264d92
  • created Pagination component stories 57cdad3
  • created Segment component stories d8d01d7
  • created stories for Radio component 1fd062d
  • Menu stories minor changes 6ba5e0d
  • Statistic component stories minor changes 3c874a5
  • Card component stories minor changes 290bda8
  • Accrordion stories minor changes 2ee3f59
  • renamed Demo folder to Layout b9f6d05
  • remove test exclusion 94dba3e
  • Accordion component stories minor changes e672d59
  • fix docusaurus url (removed trailing /) b6c59fc
  • Item component stories - minor changes f0a9902
  • eea logos and assets b435b51

0.1.2-beta.0 - 2021-12-18

🛠️ Others

  • Refs #140454 added github action to build docusaurus to the develop branch abe6a72

0.1.1 - 2021-12-16

🛠️ Others

  • Refs #140454 changed the following to volto-eea-design-system: 6791d41
  • Refs #140454 corrected base url for docusaurus website build 98271b3
  • Initial test changes on design system/docusaurus. 9dad612
  • After prettier check 9ec40b4
  • Refs #140454 restore SearchWidget.jsx content and removed dummy text from docs intro page 7505df8
  • Refs #140454 added references to eea and the storybook in the docusaurus footer 42bbfcd
  • Refs #140454 lint fixes 9502f2b
  • Add SonarQube badges a4e0a40
  • Refs #140454 brought changes from develop-itml and upgrades docusaurus 207c873
  • Refs #140454 removed extra content not needed by the docusaurus site bc68ebe
  • Refs #140454 updated docusaurus to latest beta d68ed8a

0.1.1-beta.0 - 2021-12-09

🛠️ Others

  • Refs #140454 moved header and footer templates from volto-ims-theme: e2d5e56
  • Refs #140454 added website folder with docusaurus site skeleton 6fd15f4
  • Refs #142794 added commented implementation of the header and footer area: 773ad87
  • Refs #140454 changed the following: 4137ec4
  • Refs #140454 removed storybook from volto-eea-design-system: a129ffb
  • Refs #140454 added storybook as a dev dependency: e04ae4e
  • Refs #140454 updated Breadcrumbs.jsx to latest version: 63fe507
  • Refs #140454 we should use jsx and not mdx for storybook tests 3668e66
  • Refs #140454 updated eea-design-system readme with extra info on package contents d2efc3d
  • Refs #142010 - Optimize Volto-addons gitflow pipelines 3af46d2
  • Refs #140454 Renamed folders of docusaurus website: 15bca74
  • Add demo story 757c409
  • Refs #142794 enabled minimum css so that header looks decent adbe233
  • Refs #140454 use the develop branch for the readme linking, it's always more up to date 23dcf16
  • Refs #140454 added missing themes reference for the eea theme e9ca244
  • Refs #140454 modified assets imports after move to volto-eea-design-system 2250cc7
  • Load footer in segment 80d38a9
  • Refs #140454 bump package version to 1.1.0 from 0.1.1 from develop branch: 1314039
  • Refs #142794 keep toolbalWidth variables in case design system runs in an older version of Volto 1a8b305
  • Refs #142794 changed the following: fbb80b1
  • Refs #140454 moved storybook scripts to the scripts section 705c4c3
  • Refs #140454 removed dangling comma 514f24d
  • Refs #140454 changed link to the start of the docs 0e16fdf
  • Refs #140454 add h1 to the list of elements that are max 800px and centered 7d3c30f
  • Add Sonarqube tag using ims-frontend addons list 8d657d0

0.1.0 - 2021-11-17

🛠️ Others

  • Refs #140454 changed the following to volto-eea-design-system: 40d2af6
  • Refs #141204 elements folder now has the variables and overrides from pastanaga theme 595b4e6
  • Refs #141204 use font awesome from SemanticUI instead of Pastanaga: 4e273ca
  • Refs #141204 removed the components customizations from volto-eea-design-system: c98c260
  • Refs #141204 added customizations folder from volto-ims-theme to volto-eea-design-system: ff4bf44
  • Refs #141204 modules folder now has the variables and overrides from pastanaga theme f2841b6
  • Refs #141204 customized Comments.jsx to remove unnecessary container b2e95d7
  • Refs #132149 added initial commit for volto-eea-design-system: 2934b91
  • Refs #141204 collection folder now has the variables and overrides from pastanaga: 213d496
  • Refs #141204 removed search widget customization, we can use volto-ims-theme for that file b7e8b0c
  • Refs #141204 stylelint quick fixes 5595925
  • Refs #141204 changed the following: 769f4f9
  • Refs #141204 changed the following to the eea theme: 06d8d86
  • Refs #141204 eea site.variables now use all values from pastanaga's site.variables 6535c0f
  • Refs #141204 simplified container overrides: 5125003
  • Release 1.0.0 177d0ce
  • Refs #141204 globals folder now has the variables and overrides from pastanaga theme 116a0c3
  • Refs #141204 changed the following: 2e7f423
  • Refs #141204 modules folder now has the variables and overrides from pastanaga theme: 27a201d
  • Refs #141204 text elements are now with a max width and centered within content-area: bbed7bb
  • Refs #141204 added main.variables entries from pastanaga to eea theme 1cbbc55
  • Refs #141204 modified theme image imports for component customizations ef3238a
  • Refs #141204 modified container width to be auto: 2e8d2e0
  • Refs #141204 modified several icons to use the \f values instead of \e: c397145
  • Refs #141204 changed the following: c518eda
  • Refs #141204 ensure that main column isn't enlarged over the sidebar section on edit f7a2868
  • Refs #141204 changed the following to the form styling: eb92e05
  • Refs #141204 modified path of theme folder location for image selection f8cca45
  • Refs #141204 added missing mobileScrollbarWidth variables introduced as part of the mobile navigation pull request 444c78d
  • Refs #140454 reference font and image path from ~volto-themes instead of relative ec93ed3
  • Refs #141204 ensure that Volto doesn't crash when site module is set to eea: 51f2f27
  • Refs #141204 added tiny size prop to Breadcrumbs in order to have it as 12px 56a12e2

0.0.1 - 2021-11-17

🛠️ Others

- +

What's new

EEA Design System (1.0)

Components ready to be used

The following components are ready to be used as Volto blocks, slate integration, or via the advanced block styler:

  • Accordion block
  • Call to Action block
  • Callout - part of the Description block, slate
  • Card - part of the Teaser block and Listing block, it includes several variations like round card e.g., used for Avatar
  • Divider block
  • Headings slate
  • Hero block
  • Item block - used for text with an icon (remixicon or custom SVG/image) on the left/right
  • List slate - ordered and unordered
  • Quote block
  • Statistic block
  • Tag block
  • Table block
  • Tabs block
  • Timeline block

Future releases

Below is a non-exhaustive list of the work-in-progress which is planned for future releases:

  • Navigation Portlet (used on the left/right hand of content)
  • Spacing/padding system. We want to add the ability for editors to consistently apply various spacing/padding on certain components in order to allow a better alignment when components are used together.
  • Improve docusaurus and storybook with more components, controls, and variations in order to better reflect what is possible in Volto.

Generated by auto-changelog.

Unreleased - 2023-04-03T14:53:04.159Z

💅 Enhancements

  • change(logos): updated eionet logo used in the site footer #318 from eea/footer-logo-update 70671d0
  • change(breadcrumbs,mega-menu): better screen readers support, see links instead of groups #309 from eea/firefox-accessibility-tab-issues d6b0b4a
  • refactor(megaMenu): align menu items with demo site for better testing 82a5c84
  • refactor(breadcrumbs): updates on structure and story for accessibility 770c8c0
  • change(logo): update eionet svg 3c87fc7
  • refactor(megaMenu): Restructure Topics and Countries lists d816e7a
  • change(mega-menu): use lists for navigation, enhance voice over support for better accessibility d13137f
  • refactor(header): firefox accessibility errors fix c7d35b9
  • change(breadcrumbs): label modification for better screen reader output c967bef
  • refactor(megaMenu): clean up function after test 883eb73
  • change(mega-menu): added code to align countries left column subtitle with the right column 1aa33dd
  • change(mega-menu): sub-title padding tweaks for better spacing normalization e08668d
  • change(breadcrumbs): fixed sizing of breadcrumbs list items 1761e98

🏠 Internal changes

  • style(megaMenu): remove comments and unused properties fa5f8f8

🏠 Documentation changes

1.0.6 - 2023-03-29

🚀 New Features

  • feat: add viewport-(width/height) less functions and fixed banner image url #329 from eea/develop e8e70bd
  • feat: add viewport-(width/height) less functions 68300a3

💅 Enhancements

  • change(docusaurus): set full class name for remix icons f435e10
  • refactor(Banner.jsx): use flattenToAppURL helper function to get image source URL 24b13d7

🏠 Internal changes

  • style(theme): update container width and margins in eea theme 3e4446a

🛠️ Others

  • horizontal overflow hidden in view mode f395f27

1.0.5 - 2023-03-28

🚀 New Features

  • feat: improve full-width class 70bba7e

🐛 Bug Fixes

  • fix(banner): Add missing divider for time tag #327 from eea/banner-metadata c46a583
  • fix(banner): Add missing divider for time tag 7d68c39

1.0.4 - 2023-03-27

🚀 New Features

  • feat(copyright): Add copyright prefix - Image - refs #250724 6a72772

🏠 Internal changes

  • style(copyright): Cleanup useless min-height - refs #250724 f2457df

🛠️ Others

1.0.3 - 2023-03-24

🐛 Bug Fixes

  • fix: improve full-width class 9322259
  • fix(header): Remove z-index from subsite logo #320 from eea/subsite-logo 5091100
  • fix(header): Remove z-index from subsite logo d433a97

💅 Enhancements

  • change(header): Add search popup customizations from eea-website-theme 43e5a78
  • change(popup): create custom popup for better accessibility 036aac9
  • change(popup): added most important popup properties from Semantic ui implementation 61f65bc
  • change(banner): use custom-made Popup for better accessibility 10d0fcf
  • change(banner): use custom-made Popup for better accessibility 9108bee
  • change(popup): added also the basic property a4497ac
  • change(colors): update gray-4 color value #321 from eea/update-gray-4 f458ff0
  • change(banner): MetadataField now uses proper time tag when value is datetime b4c4d34
  • refactor(tokens): updated gray-4 b890df7
  • change(footer): Fix error and empty div if no social links are present #319 from eea/footer-social 8922246
  • change(footer): Fix error and empty div if no social links are present 5d934a6

🛠️ Others

1.0.2 - 2023-03-14

🐛 Bug Fixes

  • fix(megamenu): topic menu title is now placed before content 6004bcb
  • fix(megamenu): removed in depth nav_title renaming that set title wrongly to a-z topics 899ca0e

💅 Enhancements

  • change(megamenu): removed special styling from at a glance mega menu section fd0c4c8
  • change(footer): renamed thematic information platforms to environmental information systems e7004a7
  • change(docusaurus): updated static image of footer sections 4ff3185

🏠 Documentation changes

  • docs(What's new): Update 'What's new' d7ed9d6

🛠️ Others

  • fixed accordion selector typo f4cabc8

1.0.1 - 2023-03-13

1.0.0 - 2023-03-13

🐛 Bug Fixes

  • fix(Footer): Open internal links within the same page 5b3e409

💅 Enhancements

  • change(banner): use huge scale instead of full image for better performance 381c58e

1.0.0-beta.6 - 2023-03-10

🚀 New Features

  • feat(site): serve Roboto fonts from eea design system package instead of google fonts #311 from eea/roboto-library f6a1b3e

🐛 Bug Fixes

  • fix: full-width is now properly sized 6e2e348
  • fix(storybook): add fontDisplay 078966a

💅 Enhancements

  • change(image): copyright position fixes, moved image floating to image-block-container 53422e0
  • change(colors:) update the design system colour palette #312 from eea/update-color-palette a5fb694
  • refactor(docusaurus): added roboto library 19de7b1
  • refactor(storybook): added roboto library e991621
  • refactor(tokens): update colours 3a2c1e1
  • refactor(storybook): restored site variables a48478b
  • change(copyright): implemented copyright hover design 6b12441

🏠 Internal changes

  • chore(storybook): switched google fonts to true 4a8cae4
  • chore(colours): changed back yellow 6 87c9bbc
  • chore(lint): lint 9b0f125
  • chore(storybook): lint 29bc809

🏠 Documentation changes

  • docs(colours): colours update 161007e
  • docs(colours): accessibility ee342aa

🛠️ Others

1.0.0-beta.5 - 2023-03-07

💅 Enhancements

  • change(carousel): tweak size of carousel dots for better touch interaction e1fb823
  • change(footer): removed min width and height from links ac33219

🏠 Internal changes

  • style(hiddenStructure): Add hiddenStructure utility to be used with h1 heading on frontpage - refs #158717 672cca2

🛠️ Others

  • fixed less build failure due to changes in footer.less 190bc8c
  • lazyload bg img on footer also ae07162
  • lazyload footer images a0633c9
  • Increase performance - mobile friendly 07d86c8
  • better useOnScreen hook c214b6b
  • role change for accessibility 5e758e0
  • minimum tap dimension for mobile a25e9a8
  • Release 1.0.0-beta.5 e4417e1
  • Add Sonarqube tag using eea-website-frontend addons list b227cf8
  • feature(mobile): increased performance by lazy loading footer images #303 from eea/increase_performance 80d1df1
  • useOnScreen default export 3e6cfdd
  • use aria-labels on dropdown 27e1443
  • prettier a7f8384

1.0.0-beta.4 - 2023-03-01

🚀 New Features

  • feat(footer): Add footer description 2ad0f71
  • feat(footer): Add footer description #306 from eea/footer-description bf655d1

🐛 Bug Fixes

  • fix(footer): Don't show empty row if description is not present 2ca7f7d
  • fix(footer): Add class for children 3c50d15
  • fix(search): Fix search links color #307 from eea/search-accessibility a76f48b
  • fix(search): Fix search links color 69c42ef

💅 Enhancements

  • change(carousel): tweak card width and padding for better arrow alignment e184f70
  • change(storybook): include footer description in storybook e904aa0

🛠️ Others

1.0.0-beta.3 - 2023-02-21

🚀 New Features

  • feat(accordion): storybook accessibility by using buttons for titles #297 from eea/accessibility-accordion 809d52b

🐛 Bug Fixes

  • fix(dropdown): remove close on blur so that we can navigate links using keyboard 5442715

💅 Enhancements

  • change(language): dropdown to use links for proper keyboard navigation 6a7de30
  • refactor(images): cleared unused/renamed images assets 821f5c1
  • refactor(Accessibility): add box-shadow on focus-visible components b1adcc3
  • refactor(images): remove unused docusaurus svgs c5ef14c
  • refactor(header): add escape key functionality, actions from div to button to have proper focus state 8081aa4
  • change(language): restore dropdown duplication in order to properly show and hide language dropdown cb28888
  • change(search): to reflect changes from eea-website-theme 2cc35e0
  • refactor(footer): update p with h3 heading tag for header ca1477b
  • refactor(footer images): removed unused/renamed 186de6b
  • refactor(Accordion): div titles to buttons, test in mobile mega menu accordions eaad4b4
  • refactor(docusaurus): cleanup decorative images fedc4d4
  • change(accessibility): style outline instead of box-shadow 53209f3
  • refactor(Footer): update mobile header size 01ab7f0
  • change(header): set the logo class directly on the link f8fba50
  • refactor(images): clear docusaurus unused pngs db5c611
  • refactor(header-images): removed unused 8250d94
  • change(language): hide language dropdown by default cc6064f
  • change(header): top dropdown menu keyboard navigation #293 from eea/accessibility-megamenu-searchbox 1e6fa65
  • change(button): set focus styling for buttons 33ebfca
  • change(footer): Avoid devtools warning in FooterActions #304 from eea/avoid_warning d774824
  • change(footer): Accessibility update p with h3 heading tag for theme sites title #302 from eea/footer-accessibility 5bf70de
  • change(documentation): Rename all image files to follow the agreed convention #301 from eea/refactor-image-filenames cfe44ef

🏠 Internal changes

  • style(header): react syntax fix 3add127
  • chore(docusaurus): ignore website/.yarn 0b33ffd

🏠 Documentation changes

  • docs(guidelines): add image name convention 290747c

🛠️ Others

1.0.0-beta.2 - 2023-02-13

🐛 Bug Fixes

  • fix(footer): action and copyright #300 from eea/develop 579f3e4
  • fix(footer): action or copyright links are simple a tags for external link 9af5070
  • fix(accessibility): added navigation and footer id's for skip link 48354b9

💅 Enhancements

  • change(footer): typos and modified footer links to be center aligned ac23f04
  • change(footer): added gap for actions and copyright 7d32ddd
  • change(footer): modified footer gap b8a820a
  • change(footer): removed extra text and date from copyright section af47bbe
  • change(navigation): raise z-index of go to top link 485ca72

🏠 Internal changes

  • chore(docs): Update eea.hbs template to beta - refs #158717 196538e

🛠️ Others

1.0.0-beta.1 - 2023-02-09

🚀 New Features

  • feat(search): Add search suggestions style 6b2b77b
  • feat(search): Add search suggestions style #296 from eea/search-suggestions 3b0c956

💅 Enhancements

  • change(search): Add proper margin for search popup 190c9f5

🛠️ Others

1.0.0-alpha.15 - 2023-02-08

🚀 New Features

  • feat(Card): add teaser card grid story 53cac0b
  • feat(utilities): Complete list of text-align utilities - refs #160747 224fab6
  • feat(small): CSS for small HTML tag - refs #160747 ad3c0ad
  • feat(fw-light): Add font weight light utility - refs #160747 c44cf57

🐛 Bug Fixes

  • fix(card): teaser card dimensions on tablet size #290 from eea/teaser-card-grid 013fdf5

💅 Enhancements

  • change(card): added extra content for teaser card story 30690ae
  • refactor(style-menu): add text-color to paragraphs styles #291 from eea/stylemenu-theme-colors 2d78307
  • change(header): Small fix in search popup #292 from eea/search-popup 86c1305
  • refactor(style-menu): add text-color to paragraphs styles 3446bc2
  • change(color): darkCyan is now replaced everywhere by the new green ef3791d
  • change(header): Small fix in search popup 3d622ea

🛠️ Others

1.0.0-alpha.14 - 2023-01-30

💅 Enhancements

  • change(mobile menu): integrate a-z topic with menu rendering logic #287 from eea/develop 05d4c04
  • change(mobile menu): integrate a-z topic with menu rendering logic 246d3d8

🛠️ Others

1.0.0-alpha.13.1 - 2023-01-30

💅 Enhancements

  • change(mobile menu): hardcode a-z topics to '/en/topics-in-depth' #286 from eea/develop 6436224
  • change(mobile menu): hardcode a-z topics to '/en/topics-in-depth' 5235b52

🛠️ Others

1.0.0-alpha.13 - 2023-01-27

🚀 New Features

  • feat(utilities): added has--bg--top center and bottom utility classes 051e6d7

🐛 Bug Fixes

  • fix(header): update green color used in page header #284 from eea/fix-banner-background 29d54db

💅 Enhancements

  • change(site): added fixes from customVolto.css to design package 51ba9b5
  • refactor(Banner): update banner background green color fd4a552
  • change(mobile menu): changed link for a-z topics to point to in depth 721bf23

🛠️ Others

  • 1.0.0-alpha.13 release #285 from eea/develop c966940
  • bump next version to alpha 13 897e906
  • Back to dev 5780dc7

1.0.0-alpha.12 - 2023-01-24

🚀 New Features

  • feat(card, colors): visited color change and title on image option for cards #283 from eea/develop e638ee6

🐛 Bug Fixes

  • fix(mobile menu): sub links when an accordion section is active bb3be81

💅 Enhancements

  • refactor(Card): create card template for stories 2fa77f3
  • refactor(Card): add image with title css 6e6e63e
  • change(card): implement title on image within image section ff6cc60
  • change(card): added image card section, tweaked mobile heading size 0f879e1
  • change(cards): moved image gradient overlay to a mixin.less file 8b4928a
  • refactor(card): Update titles value and size c35ad5c
  • refactor(docusaurus): applied image naming convention ee7bc29
  • change(cards): added image for all storybook card examples 3f19413
  • change(banner): restored label value of metadata field when type isn't date 571a4f2
  • change(card): title padding value for a more balance look 74b6556
  • change(card): removed uppercase transform from title on image 2948ae1
  • change(colors, Docusaurus): Visited link colour change and thematic logo replacement #278 from eea/refactor-visited-link f82d978
  • refactor(storybook): visited link variables b209b2f

🏠 Documentation changes

  • docs(colors): visited link update ece77fe

🛠️ Others

  • fix typos in footer gradient variables 4006640
  • change version to alpha 12 instead of 1 final 3225025
  • feature(card): new card variation with title on top of image #267 from eea/title-on-image-card 2c0ca95
  • Back to dev 477d997

1.0.0-alpha.11 - 2023-01-17

🚀 New Features

  • feat(docusaurus): Header and footer elements section #277 0df271c

🐛 Bug Fixes

  • fix(banner): storybook date input and simplified gradient opacity 7674d76
  • fix(banner): re-added title class on banner title 6d15799

💅 Enhancements

  • refactor(banner): sync storybook and Volto component c9087cc
  • change(banner): removed margin from title 17e592c
  • refactor(banner): sync storybook and Volto component #275 from eea/sync-page-banner-theme 4331fb4

🏠 Documentation changes

  • docs(footer): updates on header elements b41c550
  • docs(footer): add elements anatomy d9f0872

🛠️ Others

  • add(banner): banner title css d003247
  • Release 1.0.0-alpha.11 07e8f85
  • renamed image elements as requested in review 8541fb6
  • remove(banner-gradiant): image gradiant in favour of text 1b58520
  • update(gradient): use 8deg angle 6fd597d
  • update(gradiant): make it 0deg 1bb2696
  • remove(comment) referencing old verison of title 4226d42

1.0.0-alpha.10 - 2023-01-13

🐛 Bug Fixes

  • fix(subsite): Fix logo size on subsite section 65fff54
  • fix(subsite): Fix logo size on subsite section #279 from eea/subsite-fixes 8f6cf94
  • fix(mega-menu): show sub grid only if there are children ddfbd82

🛠️ Others

  • Add variable definitions 293fe65
  • Release 1.0.0-alpha.10 7014d08
  • Add Sonarqube tag using advisory-board-frontend addons list ef58a6f
  • Back to dev 31d4616

1.0.0-alpha.9 - 2022-12-28

💅 Enhancements

  • change(contextnav): Default title is text, custom title is link #273 from eea/context-nav-link-title ef7bdb7

🛠️ Others

  • Show document and folder content-type in Navigation listing 8471db3
  • Default title is text, custom title is link 1ae95b0
  • Context nav title link to # a27a6b7

1.0.0-alpha.8 - 2022-12-23

🚀 New Features

  • feat(copyright): Align copyright options with Volto integration - refs #158210 6bac7f6

💅 Enhancements

  • refactor(logo): import theme site logos to the story 2f29136
  • refactor(logo): update logo and mega search gradient e11f44d
  • refactor(logos): convert logo names to lowercase 07b8228
  • change(item): use default logic of setting align class on content 6b5b47c
  • refactor(logo): update logo 170efe5
  • refactor(logos): convert storybook logo names to lowercase c4b24ec
  • refactor(logo): add eea roboto font logo variations de1224a
  • refactor(logo): add container and segment to logo story 61eff16
  • change(item): removed requirement for aligned classes to be on content 30c0d5d
  • change(logos): cleanup eea logo reference to only eea-logo and eea-logo-white.svg 2796e05

🏠 Internal changes

  • chore(npmignore): Reduce npmjs package size 164c8a5
  • chore(npmignore): Reduce npmjs package size ade9d5b
  • chore(docs): renamed logo mdx to md 52e9d46

🏠 Documentation changes

  • docs(logos): svgs without classes 28a5833
  • docs(logos): add dark mode logos ccc1609
  • docs(logo): update eea logos and add logo wrapper 91cdd66
  • docs(logo): update logos on docusaurus 760e101
  • docs(logos): updated svgs dc224e1
  • docs(logos): add thematic logos 5a21a30
  • docs(logos): add zipped svgs for download 5855bf8
  • docs(logos): wisef logo update 8f90b59
  • docs(logos): move to static, add download 8c1fd5f
  • docs(logos): improve eea logo visibility 82188ab
  • docs(logos): change eea logo to svg f57b846

🛠️ Others

  • logo update or docusaurus thematic logo listing #274 from eea/develop dde90be
  • (feat): Add ability to disable the language select from website top menu - refs #158616 411c8e4
  • Proof reading page header section 230239e
  • bump package version b4628be
  • feature(docusaurus, storybook): logos selection for sites plus inverted options #253 from eea/doc-logo-page dbfc90d
  • Add Sonarqube tag using advisory-board-frontend addons list c4769e9
  • test(Jenkins): Run tests and cypress with latest canary @plone/volto 92feea0

1.0.0-alpha.7 - 2022-12-16

🚀 New Features

  • feat(item): normalized size for image or icon items #258 from eea/refactor-items 945170f

🐛 Bug Fixes

  • fix(card): rounded after removal of has--rounded--true style class d4727af
  • fix(item): removed margin set for description which pushed the text from icon d9d4031
  • fix(project): Proper paths if volto-eea-design-system package is not installed, but in development #270 from eea/correct_paths 0f8ee8d

💅 Enhancements

  • refactor(item): update icon variations and paddings 6a407b3
  • refactor(item): update spacing 2fd91c4
  • refactor(item): initial values for new sizes & add description class 3546296
  • refactor(item): add icon and more size options 1120bb6
  • refactor(item): update image and icon sizes b802573
  • change(item): set same height as width on item images 69cbd23
  • refactor(item): update item part 2 9812ae2
  • change(item): rename large to big class 24ff127
  • change(item): added tiny size that outputs 24px icon sizes 2ea9636
  • change(image): added preview image size default to 400px a0aa867
  • refactor(item): update operator for condition controls 149ccb2

🛠️ Others

  • Proper paths if the package is not installed, but in development 7a2655f
  • Update .project.eslintrc.js a2fd3f2
  • added back descriptionDistance variable until package release 3af811a
  • Release 1.0.0-alpha.7 7e66bcc
  • Add Sonarqube tag using cca-frontend addons list ce47e9b
  • Back to dev cb531c9

1.0.0-alpha.6 - 2022-12-07

🚀 New Features

  • feat(copyright): create copyright component and import it in banner 8fcde9d
  • feat(Header): add hideSearch prop 13ddfe5
  • feat(Docusaurus): Image copyright information #257 from eea/image-copyright-info 2119515

🐛 Bug Fixes

  • fix(tags): content gap when using tags-content wrapper c4eb9b8

💅 Enhancements

  • refactor(hero): add copyright component to hero 0fa88fa
  • change(copyright): implementation to add classes on content sections e10bde6
  • change(copyright): removed color variant 747b8a2
  • change(copyright): removed copyrightVariant from Banner and Hero stories ac62e07
  • change(tagList): modified implementation to align to volto-tags-block 7a57a3d
  • refactor(copyright): remove data section 52cb09d
  • change(copyright): line height to match page header implementation a56254e
  • change(copyright): now uses text color css variable with fallback to white ee7268b

🏠 Documentation changes

  • docs(copyright): copyright documentation a90ed76

🛠️ Others

  • Update usage_markdown.md f76d4a2
  • grammar fixes cb2a5a5
  • Release 1.0.0-alpha.6 6ca32f0
  • feature(copyright): image information #250 from eea/feature-copyright a8618c7
  • lint fix by introducing local variable tagsGap 7b6c0ae
  • Update 3-images.md 1b0ef03

1.0.0-alpha.5 - 2022-11-29

🚀 New Features

  • feat(Iconography): import and showcase remix icons 777112f

🐛 Bug Fixes

  • fix(docusaurus): right bar overflow fix 197c763
  • fix(lists): bullet position by using padding instead of margin 0ecae2e
  • fix(label): color for yellow variant as white isn't accessible on yellow color 91d8880
  • fix(contentBox): avoid text decoration for header-link added on cards 3ccb592
  • fix(label): margin value for ribbon image left and right margin f8e1129

💅 Enhancements

  • refactor(docusaurus): eea color palette in separate file 6c855df
  • refactor(docusaurus): classes for color boxes 80219d5
  • refactor(docusaurus): move supplementary, state and link colors to partials 2776be3
  • refactor(docusaurus): fix side menu / moved more content in palette partial f5b7077
  • change(tag): set gap on tags element for margin between tag elements 726bc6d

🏠 Internal changes

  • chore(colours): fix wrong class name 51ad0a8

🏠 Documentation changes

  • docs(docusaurus): Iconography updates, thematic platforms 2a0e596
  • docs(colors): thematic pages integration ea7a422
  • docs(docusaurus): color updates cc13b54
  • docs(colors): fix swatches accessibility 306cb74
  • docs(docusaurus): typography and colors fixes according to comments on PR ae20a72
  • docs(colours): adjust logos heights 854d4fb
  • docs(typography): merge designer and dev units 65c240e
  • docs(typography): readded extra font sizes, fixed fluid a4a5d89
  • docs(typography): changed em to percentages d417600
  • docs(colors): minors updates and instructions 84ac882
  • docs(colors): blue-grey-6 adjustment e7ab2d1
  • docs(colours): added active colour 574f7a9
  • docs(colors): switch FISE logo to png 335471f
  • docs(colors): updated visited 0248fd1
  • docs(FISE): replaced logo f7d8331

🛠️ Others

  • perf(docusaurus): added remixicon and roboto locally b67b1a7
  • feature(Docusaurus): Updates on color palette information including thematic websites #231 from eea/refactor-docusaurus ec7843d
  • Upgrade Jenkinsfile storybook to yarn 3 d20de8d
  • Back to dev 563fbc5

1.0.0-alpha.4 - 2022-11-22

🐛 Bug Fixes

  • fix(cards-storybook): load slick carousel css for arrow and pagination styles 1159b1b

💅 Enhancements

  • change(cards): refactor cards theming implementation d4e4542
  • change(cards): allow rounded, inverted and theme parameter to be set by has classes 4b4ad89
  • change(card): expect has classes on the card directly 6a9e38b
  • change(utilities): added has text classes to the text alignment utilities e6974c6
  • change(utilities): modified class name for text align using has naming 579a0cb
  • change(theme): ensure that only direct children of container have a default top and bottom margin 7f8b8dc
  • change(build): upgrade action to trigger workflow and wait to latest version c63ad3f
  • refactor(card): theming implementation to allow has theming classes #265 from eea/card-refactoring 24edc99
  • change(theme): add slick-carousel dependency f2eec7d

🛠️ Others

1.0.0-alpha.3 - 2022-11-16

🚀 New Features

  • feat(Header): Add subsite section styling #263 from eea/subsite 00398b8

🐛 Bug Fixes

  • fix(search): position now changed by default to absolute from relative 51b08fc
  • fix(megaMenu): remove paddings for buttons added by active class ec33ebf

💅 Enhancements

  • change(components): load overrides files for our defined semantic files adde7a9
  • change(container): fullwidth now take into account devices without hover 5a35a65
  • change(container): ensure only the top level elements behave like containers 98b85d1
  • change(container): modified column-block grid to remove margin and padding when using full width class 35c1cee
  • change(mega-menu): hide home link and accordion content from mobile menu 1a69172
  • change(container): width from min width 1280px to 1365px max width 66e551e
  • change(container): removed app extras and view setting of layout sizes f6dc1ee
  • change(views): customized DefaultView to pass class into page-document area 91123aa
  • refactor(megaMenu): desktop - use buttons for menu section titles and readjust content cb9315f
  • refactor(megaMenu): add nav_title and nav_description attributes 0d7a568
  • refactor(megaMenu): style sub-title and nav-description b2a48fd
  • refactor(sidemenu): add third level list and items & update active indication e2d87da
  • change(columns): implement narrow, container and wide width classes 9696b54
  • change(container): story to add classes that modify the max width of the containers 37948f8
  • change(container): affect only left and right margin of containers 183265b
  • change(containers): modified class names after layout checks 1dc3689
  • refactor(sidemenu): add is_in_path and is_current attributes for an active example a3fe7fd
  • change(container): story to avoid adding containerwidth property to container div c13d83c
  • refactor(megaMenu): mobile - use buttons for menu section titles a7b632f
  • refactor(megaMenu): update padding variables c5f2583
  • change(views): moved narrow style bellow the default container width styles 72fa58d
  • change(listing): removed container from default view page-document area 69f3d8f
  • change(views): rename classes names to width_view and added app extras layout component 745b772
  • change(container): use important flag for left and right margin a49c83a
  • change(container): add variables for edit and add section of containers f2e2c33
  • refactor(megaMenu): update sub-title paddings 992f919
  • change(site): add a 1rem margin top and bottom on all styled classes dabf6c1
  • change(homepage): removed hiding of staging banner from homepage 4ba2cd7
  • change(container): unset values of page-document on 1200+ browser width dd5bea3
  • change(megamenu): set children to be appended to the right of the menu title b69c23a
  • change(theme): modified wide width to point to 1320px as it's perfectly divisible by 4 8f82573
  • change(theme): modified wide width to point to 1368px as it's perfectly divisible by 4 2349fee
  • change(container): renamed content-text-width to container-text-width 6f788c2
  • change(listing): provide ui container fallback if no class is passed to default view af9e94d
  • change(narrow-view): re-added container class to page-document 56b44a6
  • change(view): set container width for view-viewview class as well 29dc324

🏠 Internal changes

  • style: load header/footer overrides e5b5e0f
  • style(megaMenu): restore item description color 8a19bbb
  • style(megaMenu): restore accordion content bottom padding 8e0c5a7

🛠️ Others

  • Add subsite styling e79c0ed
  • WIP settings column grid width when using full size class affc7ac
  • code cleanup 2cdc3e5
  • fix eslint 30c52e4
  • test(estlint): Fix .project.eslintrc.js aaeaa07
  • modified left value of full width classes with toolbars 70d82d4
  • Release 1.0.0-alpha.3 8fc86a7
  • feature(content): added NarrowView useful for modifying the containers from content-area d937df7
  • jslint fix 9846159
  • Feature(container): flexible container size #260 from eea/feature-flexible-container 8f84c5b
  • Add Sonarqube tag using circularity-frontend addons list 76a41c7
  • fix broken variable call for contentBox.variables introduced in previous commit by mistake d249c11
  • clean up 89f3cb3
  • removed console log from code fad86ae

1.0.0-alpha.2 - 2022-10-28

💅 Enhancements

  • change(documentation): grammarly proof-read suggestions 9f609be
  • refactor(volto-slate): Upgrade to @plone/volto-slate - refs #153447 853d9d1

🏠 Internal changes

🛠️ Others

  • test(cypress): Upgrade to Cypress 10 / Razzle 4 c1c1f4b
  • more explanations a8b2272
  • add announcement bar, showing that EEA DS is WIP e14aeac
  • Update dependencies ee30a2b

1.0.0-alpha.1 - 2022-10-20

💅 Enhancements

  • refactor(footer): update svg and tablet contact link sizes 6aba061
  • change(blockquote): renamed to Callout reflecting the correct naming from Storybook 61a518c
  • change(footer): Shadow removed from logo & tablet updates #252 from eea/fix-footer 6df783d
  • change(colors): updated theme classes for text to use css variable colors cb089fd

🏠 Internal changes

  • style(footer): reduce social icons margin f6a9cf7

🏠 Documentation changes

  • docs(alpha): Update included components in 1.0 alpha version - refs #154387 fcc5af9
  • docs(callout): Rename Blockqoute to Callout in docusaurus - refs #154387 8d733ac

🛠️ Others

0.9.6 - 2022-12-16

🛠️ Others

  • Release 0.9.6 ae19b83
  • feature(copyright): image information #250 from eea/feature-copyright 7b323ed
  • Release-it 1f5671d

0.9.5 - 2022-10-20

🐛 Bug Fixes

  • fix(statistic): margin and slate colors when using the inverted options f263dea

0.9.4 - 2022-10-19

🐛 Bug Fixes

  • fix(edit-interface): block chooser and power user menu item colors when inside content-box 7aee4f1
  • fix(header): hero text going over the logo and menu on mobile resolutions 1434508
  • fix(content-box): z-index of box-inner and added underline to slate links c8b7c7e
  • fix(content-box): adding of underline to links c2f5f0f

💅 Enhancements

  • change(banner,colors): content box theme aware colors banner changes#254 from eea/develop bcb9a8c
  • change(Banner): Add subtitle subcomponent bb67f4c
  • change(item): moved svg filter definitions to item.overrides de70366
  • change(accordion): accordion titles with themes colors can now be modified by css variables e2ac13e
  • change(colors): in lists and callouts to allow color changes 940d1b8
  • change(colors): added backgroundColorSupplementary color variable 1f5262a
  • change(list,bullet): color is no longer primary instead it's text color css variant 8c04670
  • change(statistics): use theme colors with css variable for easy color customization fb72a01
  • change(Banner): Show label in metadata field 1acda3c
  • change(tags, items): use text color with css variable for content color for easy customization 6660e2e
  • change(styling): modified naming of theme css variables a332961
  • change(colors): added backgroundColor color variable b7e6831
  • change(quote): use secondary css var for easier color replacement 7a32312
  • change(statistics): tweaked margin of statistics so that they don't overflow over context boxes b4a8e33
  • change(accordion): allow customization of accordion title background color 6590baf
  • change(colors): introduced css variables for primary colors #247 ac80825
  • change(content-box): override primary text color to white as well 28b43c7

🛠️ Others

  • Include changes in the storybook a4d9fa4

0.9.3 - 2022-10-04

🐛 Bug Fixes

  • fix(card, contentBox): meta font size, removed header override of cards a7f94b9
  • fix(List): Ordered list item story - refs #155248 c70a2bc
  • fix(OrderedList): li third level margin left - refs #155248 fba5cb9
  • fix(cards): inherit color of card description ceda799
  • fix(accordion): Fix content default padding - refs #153783 566adf7

💅 Enhancements

  • change(site): committed fixed from custom into eea design package 9b9a1fd
  • change(jenkins): added yarn policy for storybook building 3d1b844
  • change(docusaurus): typography updates 60a93a4
  • change(item): added item image coloring when applying theming classes 0403fe4
  • change(accordion, site): change text color to tertiary instead of black 4641058
  • change(accordion): allow customization of accordion title with css variables 15e7d27
  • change(content-box): added css variables that will set text color and background for children 86cac53
  • change(tabs): allow customization of tab active and hover color 4370f42
  • change(tabs): color for tabs-block section 6778c92
  • change(cards): by default date is set to appear on the right of the meta section b7b80e8
  • change(cards): carousel dots are now relative positioned daa40a4

🏠 Documentation changes

  • docs(typography): update, local fonts 39a32d9
  • docs(typography): token fix to match used values for heightheight and letterspacing 91693ec
  • docs(typography): token fix to match used values for lineheight ff41b56
  • docs(typography): remove semibold 6eb3e08

🛠️ Others

  • test(cypress): Fix md5 dependency 17f618e

0.9.2 - 2022-09-27

0.9.1 - 2022-09-27

💅 Enhancements

  • change(cards): added ability to change the text alignment using css variables ed532ac
  • change(styles): use flex-end values only instead of end to avoid babel warning 24244b2
  • change(rounded): image size, border radius to ensure more image are turned into rounded options 51e23c1

🛠️ Others

  • Merge pull request #243 from eea/develop 576564c
  • Add Sonarqube tag using eea-website-frontend addons list 4a5be6e
  • Back to dev b251255

0.9.0 - 2022-09-19

🚀 New Features

  • feat(countUp): intall countup package and import it in statistics 10ba7cf
  • feat(docusaurus): custom editUrl function for the components usage pages - taskman refs #154076 93c4240
  • feat(site): Styling scroll-to-text fragments #238 1883fcf
  • feat(docusaurus): added Edit this page link in footer of each page - taskman refs #154076 2cf8746

🐛 Bug Fixes

  • fix(header): Prevent dropdown closing when clicking inside content 838f340
  • fix(cards): position of bullets and arrow clicking on events page 148723 22ef828
  • fix(cards): rounded images show up now even when card parent is cards 48f5e81
  • fix(statistic): add a min-width to content so unwrapped statistics don't break 7c5d511
  • fix(sideNavigation): add role list to list item 58f322b
  • fix(sideNavigation): remove unused useState import f9ea677

💅 Enhancements

  • refactor(sideNavigation): implement the design to the initial navigation & make component dynamic b673d63
  • refactor(header): update top bar 626bdd5
  • refactor(statistic): create custom export and add links 9f9ed56
  • refactor(statistic): update inverted style and add background variations 7578dc6
  • refactor(statistic): remove horizontal display on mobiles & update columns control 58f00e1
  • refactor(header): minor fixes spotted in testing 0f0f3ab
  • refactor(header): update main section heights d669f01
  • refactor(sideNavigation): remove green border and divider 939cd9b
  • refactor(link): update colors for link states 3e9f599
  • change(cards): styles img tag outside of .image ee89274
  • refactor(sideNavigation): update controls a3e8430
  • refactor(statistic): fix firefox issue for fit content 87aa113
  • change(statistics): rearrange controls order b19ae70
  • refactor(statistic): add max width to wrap text for all content 758f8ce
  • refactor(statistic): add max width to label so it wraps the text 824a127
  • change(Side menu & in page navigation): styling according to figma design #221 b2df858
  • change(header): align header with latest figma changes #232 135cd68
  • change(cards): integration when cards also contain call to action buttons f0d8766
  • refactor(iconography): icon group headings b9ccd80
  • refactor(header): add variables for some sizes 8eae84e
  • refactor(Statisctic): Rename slateVariation to extraVariation a07c589
  • change(docusaurus): started example on how to add headings for iconography 53cf843
  • change(cards): remove center alignment of rounded cards body area, only the image is now centered fdfac48
  • change(color): updated link colors #234 feabfe7
  • change(mockup): Access to figma style tokens 0bb25be
  • refactor(statistic): update margin 5190f56
  • refactor(button): adjust vertical margin db6d441

🏠 Internal changes

  • style(statistic): update decimal point 7976aa4
  • style(link): update visited link color d3b18b3

🏠 Documentation changes

  • docs(iconography): added icons, guidelines 0073f1d

🛠️ Others

  • Delete 2-test-new-page.md 749eff9
  • Create 2-test-new-page ab623ff
  • Release 0.9.0 eb7e2e5
  • stylelint fix 114e3f9
  • Move text fragments style to site.overrides 8368cbe
  • Styling scroll-to-text fragments 1bb3914
  • Update Header.stories.js 9036c74
  • feature(Docusaurus): Reflect usage of remixicon in iconography page #239 0802b32
  • Update 1-design.md 146115a
  • Test workflow for contribution - taskman refs #154076 dcb924f
  • perf(figma): access to style tokens 27d8dbe
  • Rename 2-test-new-page to 2-test-new-page.md 4e3be10

0.8.1 - 2022-08-26

🐛 Bug Fixes

  • fix(message): fix size controls ee51e1d
  • fix(docusaurus): intro page hero title color now that headers are using tertiary color 618e3cb

💅 Enhancements

  • refactor(message): restore semantic variables 1c16621
  • refactor(messages): mix semantc and token colors for messages 12efa75
  • refactor(emotiveColors): temp update for tests 61a720c
  • change(footer): removed line between sections and moved actions back to the bottom of footer d9f33e4
  • change(storybook): headings storybook now uses tertiary color by default reflecting site options 1061e77
  • refactor(message): add container to story 1259ece
  • refactor(message): remove override with custom background color on error 9b40cd7
  • refactor(message): add header controls 960c2f7
  • change(message): use semantic colors for messages #204 from eea/refactor-message 22d2c43

🏠 Documentation changes

  • docs(figma): added figma files to repo 6bd4144

0.8.0 - 2022-08-20

🚀 New Features

  • feat(IconCard): card with icon instead of image a85a179

🐛 Bug Fixes

  • fix(docusaurus): typography guideline now has real font values for headings, body, caption and small text 9508db9
  • fix(card): fix content gaps, adjust new meta section and update text color for default f1a78e1
  • fix(item): remove duplicate argType dde0be5
  • fix(iconCard): add aria-label at links 44f64c7
  • fix(card): merge fix df440ec
  • fix(heroblock): color even on edit page by inheriting color instead of using the tertiary color ac53fb7
  • fix(tab): add tabindex for accessibility error ab512be
  • fix(carousel): restore missing variable 1728312
  • fix(carousel): restore flex grow for cards and opacity for arrows ce71305

💅 Enhancements

  • refactor(carousel) add links in carousel cards & update structure and variables of less files f99cb21
  • refactor(iconCard): add control for variations and link 5e1b6a1
  • change(docusaurus, fonts): documented font letter spacing modification 522712a
  • refactor(card): css updates for card variations and styling updates c8b4a43
  • refactor(publicationCard): add links and fix accessibily issue 80adf6c
  • refactor(card): add new section in meta and remove links bfb82ae
  • refactor(item): add stackable functionality 8d714fa
  • refactor(card): update meta section and controls 5e28e12
  • refactor(roundedCard): remove unnecessary code and controls and add all variations 6305c54
  • refactor(roundedCard): add optional link for image and header a6d3bf2
  • refactor(card): add tertiary hover and update css selectors ca06948
  • change(fonts): updated font sizes with values given in figma 4b0ae48
  • change(style): color, space and adjust line-height as described in docusaurus 3366da2
  • change(headings): only h2-h6 get tertiary color 7d81308
  • change(site): removed Archivo import as we should only use Roboto font a6af056
  • change(docusaurus): use tertiary color for headings and body color mirroring the design system styles 145fe73
  • change(fonts): modified headings font size as well as line height f0771ea
  • change(fonts): updated font sizes with values given in figma f16eef7
  • change(docusaurus): use Roboto font from google fonts also for docusaurus adca8e9
  • change(headers): added headerColor variable so that thematic sites can easily choose another heading color f09d2c5
  • change(fonts): typo fixes for typography section of docusaurus cae4b02
  • change(fonts): modified footer and header values afer global font size changes f160d35
  • refactor(iconCards): run prettier fe84e46
  • change(typography): inherit header colors with @headerColor variable 91d9357
  • change(breadcrumb): use tertiary color also for breadcrumb c5cbd44
  • change(heading): on homepage on the first hero set font size to h1 and inherit color 5711096
  • refactor(carousel): update card titles to display styling fix edd966b
  • change(docusaurus): use the tertiary color for body and heading colors 11c4ed4
  • change(typography): modified lineheight-0 after headers now use 1.2 instead of 1.25 04d78a8
  • refactor(card): add links to cards and replace description with title in carousel 0258737

🛠️ Others

  • feature(heading): and cards refactoring #227 from eea/develop 334fbda
  • Update package.json 3870cf3
  • Header refactor 153536 #226 from eea/header-refactor-153536 87a6fe7
  • feature(item): icon is now stackable moving the icon on top #220 b716acf

0.7.6 - 2022-08-15

💅 Enhancements

  • change(footer): Footer updates 147837 #225 fa9ae58
  • refactor(footer): initial redesign of main section 8e85617
  • refactor(footer): restructure theme sites logo columns dcba45a
  • change(footer): set actions before thematic section on mobile db25f96
  • change(footer): fix missing key warning from react dev 77f72d5
  • change(footer): Footer updates 147837 #222 32fed23

0.7.5 - 2022-08-11

💅 Enhancements

  • change(megamenu): mobile improvements with See all links, active elements and non accordion children #224 6767b99
  • change(megamenu): render accordion only if children have children be63ce2
  • change(megamenu): mobile menu design tweaks as seen in latest figma 26d74dc
  • change(megamenu): removed icon from at a change menu items and they are no longer bold as requested 043e772
  • change(megamenu): reset first level panels after each item pass 175351b
  • change(megamenu): mobile menu improvements #223 b3cabfe
  • change(megamenu): fixed key error warnings 075bf01
  • change(megamenu): handle default active sub accordion 6192a99
  • change(megamenu): enable active border only for items not titles fb0b869

🛠️ Others

0.7.3 - 2022-08-04

💅 Enhancements

  • change(megamenu): added icon on mega menu header section d0ad4d8

0.7.2 - 2022-08-03

🐛 Bug Fixes

  • fix(contentBox): z-index of content hidden by bg when using content-box-inner c5a7dac

🛠️ Others

  • Set focus on search input field in the popup on click d12c051
  • Make cypress tests work with both slate and draft selectors 4d8e5b1

0.7.1 - 2022-08-01

0.7.0 - 2022-08-01

🚀 New Features

  • feat(accordion,buttons): primary, secondary and tertiary variations #209 c34617f

🐛 Bug Fixes

  • fix(megamenu): key warning errors 4ecd279
  • fix(container): add padding also for block editors when we are on the add page not just edit b857aad
  • fix(header): bump opacity of gradient class to get rid of green hue of header text 2011b40
  • fix(header): remove console log 3a20023

💅 Enhancements

  • refactor(callToAction): add tertiary variant and restructure exports ac6695a
  • refactor(accordion): add color variations 3504c15
  • change(megamenu): WIP bringing back rendering of item with callback and path modification 6e43d43
  • refactor(megaMenu): add slide down transition and update targetRefs on close 9667157
  • change(megamenu): use renderMenuItem in order to render menu items 9ed5cbd
  • change(footer): replaced eionet logo with an svg variant and tweaked size of eionet to match size of eea logo 32ce462
  • refactor(callToAction): update tertiary state colors 159668a
  • change(accordion): style default accordion using the grey from semantic ui e24907d
  • refactor(accordion): add variations and create a default export 4a9c68f
  • refactor(colors): add tertiary shades for element states 1e24a7e
  • change(tests): try to modify tests to use slate instead of draft a2e2485
  • change(megamenu): set active class on storybook list items 112bff1
  • change(megamenu): add border for active element of menu 5e7dfa5
  • change(package): condition modification of navDepth settings dd21dad
  • change(mega menu): use non variable to fix build of volto-kitkat-frontend 3ecd652
  • change(header): prefix mega-menu active class for adding border 32898cb
  • change(tests): use data-slate-editor instead of contents that was found in draft js instead of slate 1e0413c
  • change(stories): hide variant control from button link story 43f8c41
  • change(stories): hide variant control from button link story aea7126

🛠️ Others

  • feature(theme): added context navigation component story and default style 5a6955f
  • feature(megamenu): open default accordions on mobile navigation based on pathname cc299c1
  • fix eslint warnings 3b30282
  • bump release version to 0.7.0 fa82cbd
  • Theme fixes, mega menu selected element both in desktop and mobile #211 b482729
  • feature(mega-menu): added menu slide down animation #208 4360d0e

0.6.5 - 2022-07-06

🐛 Bug Fixes

  • fix(header): double click to close dropdown is no longer required b8a2ed0
  • fix(header): menu generation when atAGlance isn't found d68b03c
  • fix(menu): removed minHeight that enlarged the global menu 133be1e
  • fix(hero): image dimensions when full width and height isn't enabled 4114f73
  • fix(contentBox): removed negative z-index that hid fullwidth bg color bd60faf

💅 Enhancements

  • change(hero): tweaked hero block height and padding 994b6f8
  • change(item): tweak size and padding of icon when used inside item dbdef19
  • change(typography): updated letterspacing values and clarified values used for certain type tokens 8a13bf8
  • change(item): enable theming for icon and text color and added tertiary option 6d4444f
  • change(header): top section chevron sizes and margin as requested in enhancements document b307c74
  • change(cards): add underline to links when applied to headers and use tertiary color by default 874f956
  • change(utilities): wrap in quotes h2 and h3 of quoted-wrapper 8aa4716
  • change(package): bump package version to 0.6.5 denoting bug fixes release 0585aeb

0.6.1 - 2022-07-01

🚀 New Features

  • feat(UnderlinedTitle): create story and necessary utilities 8beb56b
  • feat(headers): added underlined titles with theming support af67561

💅 Enhancements

  • refactor(heading): move underline story and update controls 2c9bfd2
  • refactor(underlineTitle): add content box for different variations 0878915
  • refactor(underlinedTitle): add control for changing heading size 211f515
  • refactor(underlinedTitle): Restore text variation dropdown control bd8c611
  • refactor(utilities): add color variation for headings and text 7e3a779
  • refactor(utilities): update border bottom utility and restore line height for headings 7fe4a7b
  • refactor(headings): update the line height of headers according to docusaurus instructions 9da19b3

🏠 Internal changes

  • chore(countup): package for statistics 26fcd09

0.6.0 - 2022-07-01

🐛 Bug Fixes

  • fix(item): adjust the container in stories a848c46
  • fix(tag): align start for tags on mobile, update path for Tag List and add containers b9de845
  • fix(item): update image width & height on mobiles and add 3 line clamp for description 0cd2c46
  • fix(pageheader): metadata font size on mobile to be readable 0a9b1fa
  • fix(breadcrumb): fixed variable name for breadcrumb item 2b547eb

💅 Enhancements

  • refactor(Item):create item story with custom default class 069ae02
  • refactor(pagination): add pastanage menu overrides and remove any eea theme css from default story 5080810
  • refactor(item): update variables from px to rem 30eed78
  • refactor(Item):add default item mobile padding 3518465
  • change(site): added fixes from custom 0fe4d80
  • refactor(Pagination): add default pagination stopry and rename previous as Secondary a5e3e13
  • refactor(pagination): comment out secondary pagination and its styling bcf4cff
  • refactor(tags): remove content class and add flex wrap d6333ca
  • change(logo): use a real svg logo for white eea logo 3b80dc7
  • change(header): show eea information systems on tablet as well ce82ceb
  • refactor(tokens): update letter spacing tokens 5f8753b
  • change(letterspacing): updated letter spacing positive values b31818f
  • change(pageheader): add bottom margin on mobile for sharing dropdown actions d3cda47
  • change(pageheader): removed blogger, reddit and stumbleupon sharing links e4acc4e
  • refactor(Item): add default item background color c978c8d
  • change(package): bump package version 1f01f72

🏠 Internal changes

  • style(item): update item image e585e9d

🏠 Documentation changes

  • docs(colors): token usage c433ec6
  • docs(Docusaurus): typography and spacing updates 48d1269
  • docs(Docusaurus): various fixes a972a31
  • docs(typography): updates 66d95e4

🛠️ Others

  • Tabs block custom border left/top ca4cce0
  • Fix sidebar tabs in Volto CSS c287db5

0.5.5 - 2022-06-23

🐛 Bug Fixes

  • fix(contentBox): color of cards when inside content-boxes 76a4520

💅 Enhancements

  • change(homepage): moved fixes of homepage to custom and colored carousel arrow 0a226ef

0.5.4 - 2022-06-16

🐛 Bug Fixes

  • fix(block-style): Content box preview in sidebar 6362766
  • fix(header): ensure transparency goes as high as the search icon 4470e13

💅 Enhancements

  • change(contentBox): add background as before element instead of using full-width 7e0a596
  • change(content-box): content box links are now underlined f7976f5
  • change(homepage): added fixes from custom c3e0333
  • change(hero): add margin top with the height of the top section on edit fefa6bb
  • change(cards): fix default card color when inside content-boxes 6fdf3aa
  • change(container): removed override of content-box-inner container 66fe7d4

0.5.3 - 2022-06-16

🐛 Bug Fixes

  • fix(homepage): hero and homepage fixes for #151156 #198 43d4efc
  • fix(header): fixed top section width on edit page ce5898b

💅 Enhancements

  • change(hero): added min height to hero-block-image-wrapper 3cc37c0
  • change(hero): spaced hero block has a 3rem margin top and bottom c463b03
  • change(hero): added extra top margin on hero-block-body from tablet and up within homepage 64142c3
  • change(hero): tweak min height of hero block e1271b4
  • change(card,contentBox): use inherit for text color to inherit black from body c1ba3b6
  • change(container): on section-edit modify only left and right padding values fe6e3ec
  • change(utilities): bump z-index of overlay class ede3209
  • change(hero): fixed variable reference for margin of body from homepage 092b90b

0.5.2 - 2022-06-14

🚀 New Features

  • feat(contentBox) : add new Content Box component 2ebbb47
  • feat(ContentBox): Add primary, secondary, tertiary themes 87cb2fe
  • feat(ContentBox): Update storybook with available themes 93b26b2

💅 Enhancements

  • refactor(contentBox): restructure the component to be more flexible f0d2de6

🏠 Internal changes

  • chore(contentBox) : add lint changes 5aaf740

🛠️ Others

0.5.1 - 2022-06-13

💅 Enhancements

  • change(header): changed homepage text color 64ce8b6
  • change(hero): added styles for adding dark overlay to hero bf1d292
  • change(homepage): hide stagingBanner on homepage fb6e319
  • change(header): use variable for homepage hero-block padding 89ff344
  • change(tokens): modified grey-4 color to point to a 10% shade from original color b406283
  • change(header): added min-height for mega menu needed for 1 items menus 18814f4
  • change(hero): hero section block integration #192 4ea2f40

🛠️ Others

0.5.0 - 2022-06-11

🚀 New Features

  • feat(hero): added storybook implementation of hero component #172 17b9d16
  • feat(hero): add hero block component and stories 6019fc8

🐛 Bug Fixes

  • fix(header): Internal links in mega menu d8ca135
  • fix(header): show active menu when clicking on children a54fa67
  • fix(header): accessibility and dropdown possition fixes 505ac36
  • fix(header): fix accessibility issue by David 783dcec
  • fix(header): dropdowns disappear on resize 52338fd
  • fix(header-topdropdown): dedupe html elements for topdropdowns cd8a2a7
  • fix(header): transparency class should apply on the current bg color or image f9a0033
  • fix(header): mobile dropdown now visible 34371b4
  • fix(header): dropdown disappears after window resize #116 fc7dd8b
  • fix(header-topdropdown): dedupe html dropdown elements for topdropdowns #115 f10a7a8

💅 Enhancements

  • refactor(megaMenu): update mega menu in header component 2d1ce45
  • refactor(header): update structure and variables of top bar af70909
  • change(header): renamed mega menu items href attribute to url 3ed8144
  • refactor(header): update main section and and add color variations f2f0fd1
  • refactor(header): minor updates on colors and widths a70129f
  • refactor(hero): add full-heigh control to adjust height a45cb7c
  • change(header): disable sticky setting until feature is more stable 1d7af95
  • refactor(hero):make button variant and inverted different button controls 7e182ca
  • refactor(header):main bar sticky on scroll up 9c9e7c6
  • refactor(headings): update heading sizes for mobile 19f3cca
  • change(header): hide first link(home) from header menu on site ae7f3b9
  • change(megamenu): typo correction and key setting on list.items 96d2c4f
  • change(header): use Link instead of a tag for menu items 9812b3f
  • refactor(header): add control for inverted logo 023ca45
  • refactor(hero): move quoted utility to h2 tag 7376676
  • refactor(header): add link for menu title inside desktop mega menu 24355d0
  • refactor(utilities): update hex with color token 8dc65ef
  • refactor(header): and mega menu to latest spec #114 44fcf68
  • refactor(header): update search input and file endings afab36f
  • refactor(header): add control that toggles transparency class on main section b8d4bdb
  • refactor(header): restore union dropdown after implementation 7e98bab
  • refactor(header): minor responsive fixes 16a0006
  • refactor(hero): align hero's text and meta seperately 4fa958f
  • refactor(hero):add button variant controls f362a7b
  • refactor(header): update search input 368962e
  • change(header): mark top level active menu item 665c449
  • refactor(hero):prettier & style changes d846884
  • refactor(header): add control for main section stickiness 2f07572
  • change(header): use viewport width for changing mobile text in header dropdowns b50fa58
  • refactor(header): add fluid font sizes 5f2743e
  • refactor(header) add position sticky & transparent for main section 29df772
  • refactor(hero): update variables with new design tokens 1d97922
  • refactor(Language List): render language dropdown as ul and li elements 3617442
  • change(header): introduced item class to the mega menu link content 00ca376
  • refactor(Language List): add less variables 7ccc1cc
  • change(header): disabled active menu when clicking on globalnav links 3f7b5ee
  • change(header): target link instead of span directly 9e865fb
  • refactor(header): remove unused imports 7e232db

🛠️ Others

  • Add item themes; override .block .ui.image width based on size 06010db
  • Move item icon themes to item.overrides 31e8921
  • Override only the width 8d49270
  • Override tile image in .block parrent 005655d
  • Update package.json 9dc3816
  • feature(item): added themes to item icons #190 a6a2907
  • update storybook header.topdropdown e58ac08
  • use volto-screen-helper width ea156aa
  • Add divider content for metadata field in Banner 327ad1c
  • rename to viewportWidth 32162e7
  • don't connect component to store 470b8ba
  • Add end of line 51639d8
  • behave as mobile under 480 only 11b99e1
  • make it account for all mobile-s,m,l 69e23ae

0.4.5 - 2022-06-08

💅 Enhancements

  • change(tabs): Add style for tabs accordion template #187 fb8adbf
  • change(footer): avoid react error by providing key prop to grid column ef0b193

🛠️ Others

0.4.4 - 2022-06-08

🚀 New Features

  • feat(divider): create story for divider b10a2e0

🐛 Bug Fixes

  • fix(divider): restore space between classes c595c15
  • fix(divider): Text colors and transform e524e10
  • fix(footer): story aria labels for social media links 254bdc7

💅 Enhancements

  • refactor(footer): update logos and less structure 66b8e0f
  • refactor(footer): first footer updates d18a2ee
  • refactor(footer): logo updates and adjustments 101bc9d
  • refactor(footer): use tokens and adjust spacing 2cb1669
  • change(footer): moved SubFooter logic to SubFooter.jsx from Footer story 902383a
  • refactor(Divider):add divider with content inside story e2d66dc
  • change(footer): added managed by section as properties 9328fc3
  • refactor(divider): remove custom divider d4870d2
  • refactor(Divider_:remove green color class & add tertiary 95f3018
  • refactor(footer): use remix icons for social links 5ef9aa2
  • refactor(Divider):remove clean class and use fitted prop 8d2be35
  • change(Divider): Rename color property to theme 0deffc8
  • refactor(footer): update links and logo align 7afbab9
  • change(footer): tweaked column sizes to the values before my changes fdf2718
  • refactor(footer): to latest figma design #182 3e0ba2b
  • refactor(footer): move subfooter logic to the proper component #185 3034577
  • refactor(footer): update controls b0b872b
  • refactor(testimonial): update divider 784450a
  • refactor(testimonial): changed divider color to secondary 84282f9
  • refactor(divider): remove custom divider from theme config a0409e8

🏠 Documentation changes

  • docs(divider): switch to secondary color 239844b
  • docs(divider): showcase path fix d5ea03f

🛠️ Others

0.4.3 - 2022-06-03

🐛 Bug Fixes

  • fix(edit): Fix columns/accordion inner toolbar padding fafbb52

💅 Enhancements

  • change(docusaurus): completed removal of description from guides 42424b9

0.4.2 - 2022-06-02

💅 Enhancements

  • change(docusaurus): moved color swatches around in the color guide 8a395fc
  • change(docusaurus): removed description from components and introduced category listing f220bf0
  • change(docusaurus): rename gap to space and added em spaces f5b042d
  • change(docusaurus): moved extra docs to webdev section 1ce0797
  • change(docusaurus): moved md_components files into webdev/md_components 73c1c08
  • change(docusaurus): added category yml for all sections 1740572
  • change(docusaurus): color guideline updates and spacing tokens documentation #148 c1154ba
  • change(docusaurus): modified story links to avoid broken usage tabs 78dc8d8
  • change(docusaurus): renamed several file id's so that they match the incremental naming sequence 11299c9

🏠 Documentation changes

  • docs(Docusaurus): timeline, testimonial, quote and tags aaa54ec
  • docs(spacing): add relative gap tokens 92abc8f
  • docs(colors): updated colors a28c99e
  • docs(tags/content): new page about tags and content 60be402
  • docs(Docusaurus): labeled icons f6a0f61
  • docs(typography): add font size and line height tokens 2ff65e4
  • docs(spacing): add spacing gap tokens 2d53727
  • docs(spacing): add missing gaps 442db46
  • docs(docusaurus): minor fix 6e66513
  • docs(spacing): aligned images e946fe5
  • docs(spacing): new image fcd3294

🛠️ Others

  • merge changes from develop into docusaurus token documentation a940138
  • perf(docs): restructuring order 8f4134d

0.4.1 - 2022-06-02

🚀 New Features

  • feat(languageLabeledIcon) : add new component 110558e
  • feat(LanguageLabeledIcon):add new component d00200c
  • feat(newTabLabeledIcon) : add new component 8f5cd31
  • feat(labeledIconGroup) : add new component 787d648
  • feat(DownLoadLabeledIcon) : add new component 6ea2fa1

🐛 Bug Fixes

  • fix(LabeledIcon) : fix lint errors 91b042f
  • fix(LabeledIconGroup) : fix links for tests daa1065
  • fix(LanguageLabeledIcon):bug fix & languages change 1436e2b
  • fix(LabeledIconGroup):fix based on Langauge & Download Labeled icon components changes 3015864
  • fix(newTabLabeledIcon) : add link item b1a9ada
  • fix(Labeled Icons):minor bug fix 00f3022

💅 Enhancements

  • refactor(labeledIcons): adjust new tab labeled icon to figma and replace px with rems 904615d
  • refactor(LanguageLabeledIcon):implement with pop up 0f3dd8f
  • refactor(labeledIcon): add group wrapper in labeled icon stories 4b7dd31
  • refactor(DownloadLabeledIcon):implement with pop up aa61f9b
  • refactor(labeledIcons): adjust language labeled icon to figma 5741e3d
  • refactor(labeledIcons): adjust download icon to figma and replace px with rems 4ae8530
  • refactor(LanguageLabeledIcons):minor storybook change 78f5544
  • refactor(LanguageLabeledIcon): set language code to uppercase and minor storybook change ac28693
  • refactor(labeledIcon): adjust paddings 9c1ecdd
  • refactor(labeledIcons): update margins for group labeled icons 5fa5ca9
  • refactor(labeledIcons): add variable for icon color 9f9d3cb
  • refactor(labeledIcons): update colors on download links c042642

🏠 Internal changes

  • chore(labeledIconGroup) : lint changes 535cee4
  • style(downloadLabeledIcon) : fix styling 6d8e3ac
  • style(downloadLabeledIcon) : fix alignment 4558017
  • chore(LabeledIconGroup) : lint changes ab36476

0.4.0 - 2022-06-01

🚀 New Features

  • feat(Carousel): create carousel for cards 2b0d737
  • feat(ItemwithIcons): Initial Item group with icons, new item variation 7f4ea47
  • feat(utilities): add file and basic utilities 05c88b2
  • feat(utilities): add file with basic utilities classes #173 855185f

🐛 Bug Fixes

  • fix(tokens): hsla function for shadows b8e5d37
  • fix(tokens): remove css var from less file a9c4224
  • fix(carousel):add storybook controls descriptions 269a603
  • fix(item): remove image width css from item.less 7b21cb2
  • fix(table): Set responsive breakpoint to @tabletBreakpoint 067e018

💅 Enhancements

  • refactor(item): import item.less in theme definitions c516374
  • refactor(Label):add corner,ribbon & basic label stories and styles e2bbbb9
  • refactor(Label):style changes based on label importance class ce4d5d1
  • change(tokens): rename gap to space and added em spaces 719efc4
  • refactor(item): add classes for size, set default to tile and add controls for grouped items d5a0405
  • refactor(tokens): add borders, shadows, shapes and z-index tokens 7069106
  • change(tokens): name spacing tokens gaps and added missing values up to 80px as documented 9fbd912
  • refactor(quote): Rename sourceInfo to extra info 76c2b40
  • refactor(item): WIP replacing unstackable with row e3a44de
  • refactor(tocens): add color design tokens 13bb165
  • refactor(item): adjust margins to match figma designs 6334581
  • refactor(carousel): remove title from story and color on card hover 12a1d7c
  • change(tokens): updated sizes with 4-8-16px increments 1f53d65
  • change(tokens): added size tokens to be used for width of elements cda5dea
  • change(utilities): values need important rule 96150d9
  • change(tokens): added also rem space values aedbbdd
  • change(tokens): updated z-index tokens with negative values 404efe4
  • refactor(tokens): add 14px font size token 8d8695d
  • refactor(docusaurus): restructured and improved sections navigation #174 b47b026
  • refactor(tokens): add 12 and 14px font size token #176 3681147
  • refactor(tokens): remove conditional border radius f0fe5ad

🏠 Documentation changes

  • docs(website): created new sections, improved website navigation 243f0be
  • docs(homepage): adding design system homepage with links for upcoming sections c9a9685
  • docs(docusaurus): copyedit, improved navigation 998762a
  • docs(website): restructuring, moved current DS docs to new folder 8bb612f
  • docs(homepage): copy editing ee37d6f

🛠️ Others

  • Release 0.4.0 f4bc509
  • feature(homepage): added Item group with icons #167 2ec99f5
  • feature(tokens): added borders, z-index, shadows tokens #171 74c1788
  • feature(tokens): added initial color design tokens #169 da3eae0
  • perf(carousel): added slick library ca9be51

0.3.1 - 2022-05-19

🐛 Bug Fixes

  • fix(input,segment): toggle inputs and padding fixes within Volto sidebar forms de030d6

💅 Enhancements

  • change(login): restored width of login container to 376px 0564293

0.3.0 - 2022-05-17

🚀 New Features

  • feat(Callout):create Callout component with Blockquote style 3d486b1
  • feat(callout): Align the Callout component with Volto slate component e9343ff

🐛 Bug Fixes

  • fix(testimonial): fix storybook arg names b9df52f
  • fix(table): tweak responsive table for extra long headers 7f9f9e2
  • fix(quote): fix color and padding issue 310d6b3
  • fix(accordion): Fix accordion active title color 57af165
  • fix(testimonial): remove info arguement 9593d95

💅 Enhancements

  • refactor(Table):add responsive mobile table story and styles aed69e6
  • refactor(testimonial): adjust to volto design | fix avatar image size 546070e
  • refactor(Quote):rename Pullquote component to Quote 9384a0c
  • refactor(Quote):rename Quote.Metadata to Quote.SourceInfo dfae8b1
  • refactor(Quote): rename Author to Source 6d400f6
  • refactor(Quote):move Testimonial component under Quote folder e2467c2
  • refactor(testimonial): readjust rounded card b419334
  • refactor(Table):wrap table with semantic ui container 24ac2bb
  • refactor(Testimonial):minor storybook bug fix 7b6d128
  • refactor(Callout): wrap story with semantic ui container ead362d
  • refactor(quote): update action name to match the functionality caf2e35
  • refactor(table): add borders to responsive table with celled attribute 8a71a67
  • change(table): make use of headerSortableWhiteSpace variable fd836fb
  • change(table): use the @mobileLandscapeBreakpoint for max 480px media query 90880ab
  • refactor(Quote):rename pullquote to Quote in Testimonial f54da19
  • refactor(Testimonial): change card class name e995c32
  • refactor(Testimonial): prettier changes 904594b

🛠️ Others

  • feature(tokens): added tokens folder for design tokens we can use in the system a542172
  • perf(lint): fix f2ef3ab
  • Release 0.3.0 8724b28

0.2.4 - 2022-05-13

💅 Enhancements

  • change(segment): brought back overrides from pastanaga into our theme 14efd02
  • change(container): removed padding from containers restoring thus the defaults c2ed813
  • change(grid-story): added container as grid width is influenced by container width 459f481
  • change(breadcrumb): removed padding from breadcrumb added by container c5df567
  • change(container): modified all outputted widths to align to grid 9f29cef
  • change(breakpoints): restore Semantic UI breakpoints, adding extra needed values e7f5b1e
  • change(container): restore maxWidth to 100% now that the last value is 1120px 8b55c58
  • change(header): wrap header globalnav links useful for editing section 10d4f56
  • change(breadcrumb): added vertical variant to the breadcrumbs like we do in Volto f405f84
  • change(breakpoints): added also contentBreakpoint for backward compatibility b6c9212

🛠️ Others

  • [JENKINSFILE] Add failure comment, no jenkins fail c325bf1
  • prettier changes 134da52
  • [JENKINSFILE] format PR comments 739438c
  • [JENKINSFILE] mention comment author in comment 39a26aa
  • [JENKINSFILE] remove debug, add error per stage 903eecd

0.2.3 - 2022-04-29

🚀 New Features

  • feat(CallToAction):add feat call to action ab53642

💅 Enhancements

  • refactor(button): add container to stories 6c02c19
  • refactor(tab): update vertical tab columns and content b473fab
  • refactor(call to action):render call to action with Button as="a" e7dfabf
  • refactor(button): update inverted button colors c822021
  • refactor(Tab):scrollbar change in mobile & vertical tab fix 0e34cbf
  • change(banner): added icon class to share icons 48e866e
  • refactor(Button): move button to forms folder 94996fc
  • refactor(Tab):minor change in secondary pointing menu variables 280b6c4

🏠 Documentation changes

  • docs(button): import call to action stories e4eed44

0.2.2 - 2022-04-22

🐛 Bug Fixes

  • fix(publicationCard): restore line endings 582859e
  • fix(form): added back overrides from Pastanaga theme a3f7ff8
  • fix(OrderedList) : add list only if sub list exists 8acbc8d
  • fix(label): update highlight label color d55bbb0
  • fix(publication card): run prettier 81a5bfc
  • fix(avatar) : fix naming convention for arg 84fc5fa
  • fix(tab): restore mobile font sizes 58f39be
  • fix(addForm): add min height to add form and fixed block chooser overflow ca4415d
  • fix(OrderedList): adjust margins to fourth sublists 663d384
  • fix(dropdown): being hidden because of third party css 7d353df
  • fix(modal): overflow hidden as clearfix of last child from modal b4923f5
  • fix(RelatedContent):fix merge conflict adc34bf
  • fix(button): labeled class needs to be placed after left or right keyword 53d1204

💅 Enhancements

  • refactor(card): prettier fixes e10e3d6
  • refactor(card): add card variations e16d05b
  • refactor(card): remove stories 0deb0ca
  • refactor(card):delete primary and secondary card stories 1f95d22
  • refactor(Avatar) : remake avatar as card variant ea77cdd
  • refactor(card): add styles for card variations 7407bd3
  • refactor(storybook): add story with related content inside of a tab dca008a
  • refactor(card): Rename variables from avatar to rounded be01316
  • refactor(avatar): update less variables and layer structure f965db1
  • refactor(PublicationCard):remake publication card to be a semantic card variation 5a0c6ab
  • change(button): simplified button styling fe892d6
  • change(button): simplified storybook naming and examples 9a7df4f
  • refactor(Avatar) : convert avatar component to card variation 2004a94
  • refactor(Related Content): change in grid and add see all button 955450e
  • change(button): added back button.overrides from pastanaga theme 3b55acb
  • refactor(card): add card class control 68c91a9
  • refactor(card):delete publication card variables & overrides files 6be8a03
  • refactor(OrderedList): rename TOC to Ordered List and add container to the story e00c4db
  • refactor(card): add card grid fluid story with no columns f38251c
  • refactor(list): remove horizontal control 1f5e576
  • refactor(avatarGrid): update less variables and layer structure db554a8
  • refactor(Related Content):show button when there are more hidden cards 57ff1c8
  • refactor(RelatedContent):change to use new card variant instead of publication card component 7cf424a
  • change(breadcrumb): brought back pastanaga overrides to breadcrumbs bca1c93
  • refactor(card):delete publication card folder & story 68bf773
  • change(buttons): modified basic and circular variant behavior c06fed9
  • refactor(card):tertiary variation minor story update 87b8dca
  • refactor(DescriptionList): add container to story d647c1a
  • refactor(List):render ordered list with ol,li tags 87813c1
  • refactor(OrderedList) : change table of contents story to ordered list cb6197c
  • refactor(publicationCard): update tag and name variables c109ad9
  • refactor(UnorderedList): update list as ul, list items as li and add container to strory 2c096e1
  • refactor(card):organize controls and minor bug fixes f3f6e35
  • refactor(less variables): publication card style changes c5a84e9
  • refactor(less variables): add less to related content e1a5543
  • refactor(RelatedContent):delete publication card component 2ed0ed4
  • change(button): basic button is again without padding, border and background 5a907c7
  • refactor(PublicationCard):remove link wrapper 5911a0d
  • refactor(less variables): change publication card height per viewport d7a5256
  • refactor(Timeline):change timeline icons b2fe0bf
  • refactor(publicationCard): replace px with rems 53bf8da
  • refactor(Related Content): change in related content grid bf856ce
  • refactor(List):render description list with dl,dt,dd tags ec669a7
  • change(button): show only labeled variant for buttons with icons bf49944
  • refactor(card): import image for rounded card ca5a47e
  • refactor(progress): add container to story dfb33bb
  • refactor(storybook): add publication card story with different description sizes 23af97b
  • refactor(List):render default list with dl & dt tags ece2280
  • refactor(storybook): add publication cards stories with longer description 37adefa
  • change(button): basic icon buttons no longer have box shadows c2f3ea3
  • refactor(card): remove story afc5f79
  • refactor(less variables): change card description line number per device 6946fda
  • refactor(card): update rounded card image path 8db3a85
  • refactor(DefaultList): add container to story f971193
  • change(button): bumped z-index of sidenav expand button 445ed8a
  • change(progress,label): color accessibility fixes #151 09cf6e3
  • change(button): text button now has an underline with a focus border like other buttons cdd9043
  • refactor(card): update card variation grids path 756589c
  • refactor(card): minor fixes 3a880d7
  • change(button): primary color is blue and secondary is green 53e0a0c
  • refactor(List):change styles to match with the tags lists are rendered 2673890
  • refactor(progress): update colors for accessibility ea2f454
  • refactor(card): move avatarGrid & relatedContent to Card folder 1959d52
  • refactor(Timeline): change storybook timeline colors to fix accessibility issues 79da8dc
  • change(segment): restore light grey background color for secondary segments 8716b08
  • refactor(relatedContent): adjust column paddings 8a1520d
  • refactor(storybook): clear up code 3ada154
  • refactor(card): use the rounded class for avatar grid 8c000f3
  • refactor(card) Update rounded card class 140b587
  • refactor(avatar): add variable for image border radius c23341c
  • refactor(label): add container to story 565101f
  • refactor(progress): update value color for accessibility error 6fc76f8
  • refactor(card):use jsx extension 413d328

🏠 Internal changes

  • chore(Avatar) : add container to stories 41b748c
  • style(OrderedList): prettier fixes ed95e4d

🛠️ Others

0.2.1 - 2022-04-08

🐛 Bug Fixes

  • fix(version): Switch to 2.0.0.alpha.1 83b8b8e

🛠️ Others

  • cleanup(loader): Remove useless HTML d1d180c

0.2.0 - 2022-04-04

🚀 New Features

  • feat(card) : add new default card color-schme 965adea
  • feat(label): Handle slate links and footnotes f382431

🐛 Bug Fixes

  • fix(buttons,toggles): border and background color when active 147629 #139 ea36f31
  • fix(checkboxes): background color when they are toggles 4b6ab67
  • fix(buttons): border set on basic buttons appearing on svg elements of Volto UI 69ca73f
  • fix(label): Zotero/Footnotes inside label 0ee4d58
  • fix(card) : add control for image url in storybook b28e530
  • fix(less variables):change font family e4bca9e
  • fix(storybook):minor bug fix 9fc53bc
  • fix(tag): fixes merged theme config eb30363
  • fix(Banner): prop types fix a270e5b

💅 Enhancements

  • refactor(tag): splits Tags component to TagList and tag, changes default tags style 78a5f8c
  • refactor(Banner):add banner share pop up in banner story c9688b2
  • refactor(tag): remove classes and actions that add background color ce9b6f9
  • refactor(Banner):change banner's image wrapper implementation 9153dd1
  • change(package): bump release version to 1.10.0 7e984c1
  • refactor(card): align cards and images, update less variables d47c978
  • refactor(card): add class inverted for default card 919a56e
  • refactor(tag): changes component name e1db068
  • refactor(tag): changes color metallicBlue to bottleGreen e4b68ac
  • refactor(less variables): change tag list mobile view fcded3d
  • refactor(tagList): update story to not use tag color classes 8b5b61b
  • refactor(Banner):minor bug fix ff8c352
  • refactor(Banner): add metadata field sub component 327b7e7
  • refactor(banner): add and adjust remix icon for banner action 1bf3ffa
  • refactor(banner): replace px with rem and adjust share popup padding a568329
  • refactor(Banner):add type class to metadata field and apply styles to it 86a2866
  • refactor(less variables):change tag list styles 8670087
  • refactor(banner): share items display flex on desktop 3ff8684
  • change(banner): added background gradient, share popup, metadata show and hide #136 2f5dcca
  • refactor(banner): update gradient 570ee1e
  • refactor(tags): removes hardcoded ':' ea58e86
  • refactor(card): remove card border bc77739

🏠 Internal changes

  • style(card) : add lint and prettier changes 9d9a773
  • style(tag): remove comments 501fcdf
  • style(tag): stylelint and prettier changes 08b6386

🛠️ Others

0.1.9 - 2022-03-25

🚀 New Features

  • feat(all): 1.9 release #124 0d3f6fb
  • feat(callout): Align volto-slate callout with blockquote style 9e0bb49

🐛 Bug Fixes

  • fix(inpageNavigation): restore hidden on top functionality c554e6e
  • fix(list): Fix TOC margin on 3rd level f17da79
  • fix(inpageNavigation) : add smooth scroll animation 42f6564

💅 Enhancements

  • refactor(footer): update visual and mobile margins 64f05af
  • refactor(header): restore union dropdown after implementation a7029c5
  • refactor(pullquote): adjust to the new figma design 78e4606
  • refactor(breadcrumb): adjust font sizes and import remix divider 5fcabaf
  • change(header): use viewport width for changing mobile text in header dropdowns 5a7868e
  • refactor(inpageNavigation): adjust to the new figma design 4073acf
  • refactor(tab): add max width for tab items 366d279
  • refactor(less variables):change pullquote styles 9ad94bb
  • refactor(Pullquote):change quote positions and add Pullquote.Metadata sub component 6bce35f
  • refactor(inpageNavigation): Update to remix icons 19a6061
  • refactor(inpageNavigation) : move icon & text to be in column 0953910
  • change(breadcrumbs): modified breadcrumbs template to behave like breadrumb template 490a559
  • change(package): bump release version to 1.9.0 43a6e4b
  • refactor(breadcrumb): adjust font sizes and import remix divider #120 09a3a01
  • change(menu): modified secondaryPointingItemMaxWidth to a value that equals to 250 ea138a1
  • refactor(pullquote): introduce meta section, use remix icons, integrate slate callouts #119 fd740c9
  • refactor(footer): updated visuals and gradients #117 e5c6d18
  • change(scrollToTop): feature inpage navigation revamp #121 3cf20a8
  • refactor(footer): update visual and gradient 764ec23
  • change(header): use 12px font size for mobile resolution dropdowns 6dad0fa
  • change(nav): added navDepth to 3 in order to enable mega menu integration c4f73fd

🏠 Internal changes

  • style(inpageNavigation) : lint changes 3641d78
  • style(inpageNavigation) : add less variables 0699c70
  • style(pullquote): create variable for icon font size fea9b0a
  • style(inpageNavigation) : add lint & prettier changes f8dd012
  • style(inpageNavigation): remove comment 1aee011

🛠️ Others

0.1.8 - 2022-03-18

🐛 Bug Fixes

  • fix(card): avoid long links from spilling outside of card body area 95b8951

💅 Enhancements

  • change(typography): set heading sizes as detailed in docusaurus typography section 189bf20
  • change(docusaurus): content tweaks, inpage navigation section #112 b62d1b1

🏠 Internal changes

  • chore(docusaurus): fixed grid tablet breakpoint value c7fbc09

🏠 Documentation changes

  • docs(docusaurus): capitalization remove bf8fa44
  • docs(docusaurus): update 1c04976
  • docs(docusaurus): comment address on pr 112 6e4fe3b
  • docs(docusaurus): color minor update 13f9fda
  • docs(docusaurus): tabs and breadcrump update d0547e5

🛠️ Others

  • doc(colours): add more content ec66248
  • Add divider content for metadata field in Banner f1e34bd
  • Release 1.8.0 fd6ba04

0.1.7 - 2022-03-15

🚀 New Features

  • feat(less): add global gap sizes 3c83f20
  • feat(icons): import remix css 29967fb

🐛 Bug Fixes

  • fix(menu): fix border overflow for tabs and pagination e88721f
  • fix(accordion): responsive and accessibility issues c225935

💅 Enhancements

  • refactor(menu): update paddings for tabs and pagination 533a509
  • refactor(accordion): import semantic icon for remix arrows 9aa77d8
  • refactor(all) icons, accordion, button and menu itml #108 52ed2ca
  • change(storybook): segment stories now contain several elements 98a7654
  • change(table): inherit header alignment instead of hard-coding values ebb5193
  • refactor(icons): add remix icons c4c1a92
  • refactor(container): restore mobile width to auto 2df184c
  • refactor(button): update action button hover color bb09d71

🏠 Internal changes

  • chore(docusaurus): docs delete 5f9d733

🏠 Documentation changes

  • docs(colors): corrections da64c4c
  • docs(list): default list showcase 8ded062

🛠️ Others

  • bug(form): input min-width more specific to not break volto interface 3f5b5d4
  • Update package.json 3dba28b

0.1.6 - 2022-03-11

🚀 New Features

  • feat(cards): add custom display for volto-block-image-cards 645096a
  • feat(PublicationCard):create publication card component & styles 3e5f9b7
  • feat(PublicationCard):create publication card component & styles 12cdd5d
  • feat(Related Content): create Related Content component 77eda95
  • feat(Related Content): create Related Content component 08d495b
  • feat(pagination,related) added several r3 components #105 08d47c1

🐛 Bug Fixes

  • fix(Related Content): limit publication card number to 4 e7df032
  • fix(less variables):rename publication card variables 55c6fb8
  • fix(Publication Card): add link to card and arg name fix 36a7c96
  • fix(radio): fix bullet scaling issue with firefox 5f02c95
  • fix(radio): fix bullet scaling issue with firefox dbb2e27

💅 Enhancements

  • refactor(form): remove custom classes and add container to form items 6b5442a
  • refactor(form): remove custom classes and add container to form items d1ec083
  • refactor(form): update form wrapper component a719576
  • refactor(form): update form wrapper component 0736ec7
  • refactor(form): adjust form items to volto theming 4213cfb
  • refactor(form): adjust form items to volto theming 374ffbc
  • refactor(breadcrumb): remove custom class anf and new variables b3cb83d
  • refactor(breadcrumb): remove custom class anf and new variables d5808ad
  • refactor(storybook): clear up unnecessary form elements controls f7e7d5b
  • refactor(storybook): small change in unordered list story 3ffd872
  • refactor(storybook): small change in unordered list story 6ce16e9
  • refactor(pagination): fix menu overrides for tabs that affects pagination fe8c4ca
  • refactor(pagination): fix menu overrides for tabs that affects pagination 3f4b726
  • refactor(Loader):remove image & add background image 70fe041
  • refactor(Loader):remove image & add background image ac38126
  • refactor(list): remove selection control a09b179
  • refactor(list): remove selection control 17bf710
  • refactor(storybook):unordered list minor change df2b727
  • refactor(storybook):unordered list minor change ef6db73
  • refactor(colors): remove metalic blue color b2f95b6
  • refactor(colors): remove metalic blue color 1eea33f
  • refactor(button): update variables b1774d8
  • refactor(button): update variables 061f3e3
  • change(blockquote): treat slate as a variation of blockquote component 19bd9a5
  • refactor(container): remove important from rules e984771
  • refactor(storybook):add textarea control to add/remove fluid class 475f540
  • refactor(container): remove important from rules 1cc6984
  • refactor(storybook): add required attribute to form fields fecee27
  • refactor(progressBar): update progress bar colors with vars c4ef1f0
  • refactor(progressBar): update progress bar colors with vars a44d73c
  • refactor(storybook): add required attribute to form fields 21da79e
  • refactor(list): adjust bullet size 2b29e4e
  • refactor(list): adjust bullet size 61c341c
  • refactor(statistic): add inverted background to global variables 1427e70
  • refactor(statistic): add inverted background to global variables ea25dfa
  • refactor(statistic): remove custom class 46cc560
  • refactor(container): update mobile width d548a44
  • refactor(grid): replace px with rem units e792f51
  • refactor(statistic): remove custom class b5c8e7c
  • change(docusaurus): updated template to change what's new title 3e15f4d
  • change(footer): added display variable for footer site logos d5b3c2f
  • refactor(grid): replace px with rem units f0331d0
  • change(github): auto deploy only on develop branch 11d6b4e
  • refactor(header): implementation in preparation for Volto integration #20 #89 95b136d
  • change(github): trigger autobuild when modifying templates contents 46094b1

🏠 Internal changes

  • style(list): prettier fixes f9e3b05
  • style(list): prettier fixes 8eb715b
  • chore(github): merge changes from develop to develop-itml 063bd6e
  • chore(github): build deployment only on develop branch a5a1b08
  • chore(github): build deployment only on develop branch bb455aa
  • chore(github): merge changes from develop to develop-itml 129c12f

🛠️ Others

  • Revert "chore(github): merge changes from develop to develop-itml" ca9520f
  • refactor breadcrumbs component, make it functional and customizable e902d69
  • rollback(cards): move custom display to volto-block-image-cards 2564b1e
  • bring back segment wrapper and make it attached 8458f03
  • no display: flex for blockquote added from slate 5595ce1
  • Add rule about code length a5f3652
  • Add indenting rule 15c44cb
  • fix warning related to proptype 946c6c6
  • fix profile section css overflow db5126f
  • Add rule about import sorting 804e188
  • don't use volto-slate 6a02976
  • remove segment custom width 1d3ea40
  • Add rule about naming vars 8f9020f
  • update style for accordion title 0b0d678
  • Release 1.6.0 e771e65
  • update bbcab87
  • add margin to <br> element to simulate gap as in design c6685c1
  • make breadcrumbs default size as tiny 589581f
  • remove uneeded style 82a8fb1
  • Add rule about hardcoded values e04e0df
  • Add file mode rule 65c9a93
  • Add DRY rule 66c9c3a
  • set profile section overflow to auto 71ab47f
  • Add Sonarqube tag using eea-website-frontend addons list 647a6e3
  • removed override already present in card.less 50d2ab2
  • update 7a1d482
  • Add functional components rule; add classnames rule 91a0b06
  • added comment about need for removal of this fix later 65b8166

0.1.5 - 2022-03-08

🚀 New Features

  • feat(cards): add custom display for volto-block-image-cards f49ffb6
  • feat(KeyContent): add new component 2534c54
  • feat(docusaurus): Updated developer guidelines ca146ff
  • feat(storybook): add testimonial component 55d9747
  • feat(storybook): add AvatarGrid component b668445
  • feat(storybook):add Loader component f675834

🐛 Bug Fixes

  • fix(breakpoints): fix largest screen breakpoint bug on scaling e4a11c8
  • fix(profile): section css overflow and padding issues #95 bb9eb0f
  • fix(storybook): lint auto changes for AvatarGrid b8e74f1
  • fix(components): add grid structure to various components cc33546
  • fix(header) re-added span tags removed in pull request #74 00702d7

💅 Enhancements

  • refactor(button): styling updates 37afda5
  • refactor(tab): updates on variables and overrides 54bf703
  • change(blockquote): treat slate as a variation of blockquote component 5e8a8b8
  • change(footer): added display variable for footer site logos 2f942b4
  • refactor(checkbox/radio): remove header from message and adjust top position of bullet 4a072b3
  • refactor(color): remove secondaryColorDarken variable 74c8ba0
  • change(docusaurus): updated template to change what's new title 58f58c8
  • change(github): auto deploy only on develop branch bfa35a3
  • refactor(header): implementation in preparation for Volto integration #20 #97 cddda20
  • refactor(breadcrumbs): component, make it functional and pluggable #32 #94 9f42e80
  • change(card): added styles for volto cards integration #92 a46ac21
  • refactor(grid): remove column count from example ac0e9cf
  • change(github): trigger autobuild when modifying templates contents 5f7d152
  • refactor(grid): remove custom grid 1d978a9
  • refactor(Form):change form field wrapper implementation 73cdd6d
  • refactor(message): update colors to match design 633ce31
  • refactor(checkbox/radio): update variables and remove important rules ad533b4
  • refactor(less variables): add variables to less for new components 47df026
  • refactor(Tab): fix vertical tab alignment 401bdf2
  • refactor(lint changes): add lint changes 6f6847f
  • refactor(inpageNavigation): adjust to volto theming 62f74ea
  • refactor(message): updates on styling b4cf850
  • refactor(banner): update class name ef0969b
  • change(github): use develop for auto pushing a32a723

🏠 Internal changes

  • style(design-system): unix eol 631fa90
  • style(checkbox/radio): prettier fixes a04939f
  • style(design-system): unix eol 3c753f0
  • style(message): stylelint fix 5b75057

🏠 Documentation changes

  • docs(docusaurus): visuals guidelines 544a950
  • docs(docusaurus): search guidelines 0fb229d
  • docs(docusaurus): loader page 892a25d

🛠️ Others

  • Reformat header.less 1f99dfc
  • Close menu when changing path 65daea9
  • refactor breadcrumbs component, make it functional and customizable 4ec374e
  • rollback(cards): move custom display to volto-block-image-cards 79d4c89
  • Open overlay menu on global menu click cc749bc
  • bring back segment wrapper and make it attached 9f413ff
  • Use renderMenuItem also in mobile menu 02de0bb
  • Fix clicking outside closes menu af52664
  • Cleanup args in header story 2bf6a30
  • fix warning related to proptype 824b9be
  • fix profile section css overflow 8fd2654
  • don't use volto-slate 70ca3d4
  • remove segment custom width 4a60d84
  • update 96f4af0
  • Fix TopDropdownMenu component rendering in mobile a4626de
  • Add usePrevious hook 797faba
  • make breadcrumbs default size as tiny 3c8e1c6
  • Update package.json fa020cb
  • Add rule about hardcoded values 0c6912c
  • set profile section overflow to auto 8db62bb
  • added comment about need for removal of this fix later 6fdbd71
  • Add Sonarqube tag using eea-website-frontend addons list 6051724
  • removed override already present in card.less 93c4e5a
  • Remove console.log calls 8a3a4cb
  • update 81bb7d4
  • Update comment ffa2400
  • merge develop into this branch ad5b388
  • WIP a8d97f1
  • Use header.less from develop branch 99edbc6
  • WIP 57b5783
  • WIP 785da36
  • WIP 5d1eba9
  • adds Tags e37fc19
  • Add useClickOutside hook 70364c8
  • Implement outside click handling fa6f818
  • Simplify overlay menu template 28b0478
  • fixes less variables, fixes tags positioning cc19b9b
  • WIP 15bc0f4
  • no display: flex for blockquote added from slate 312a893
  • Add rule about code length 318cd48
  • Add indenting rule d589685
  • Add rule about import sorting cd337c1
  • Add rule about naming vars b112de0
  • Bring back classNames from header subpopup e477a51
  • removes tags hashtag from jsx 6b8b3e9
  • WIP d481324
  • fixes undefined on empty classes 4b29080
  • stylelint changes a5ab830
  • Footer link color @white 578e4f7
  • add margin to <br> element to simulate gap as in design 9ab9a97
  • impors colors from site variables 6117267
  • small fix for the link in footer action 72df049
  • remove uneeded style 66e9064
  • use proper naming conventions for var naming 596e314
  • Add file mode rule 805baa7
  • use less variables b43ac8d
  • Add DRY rule 2f1584e
  • Add functional components rule; add classnames rule 1b2915e
  • fix z-index of header 7d2a5d6
  • Remove comment 7d120b1

0.1.4 - 2022-03-01

💅 Enhancements

  • refactor(pagination): adjust to volto theming 06cc3b6
  • refactor(Form):create form field wrapper file 95b9934
  • refactor(megaMenu): update margins for menu items 230e476
  • refactor(megaMenu): update gradient 47f2ea4

🏠 Documentation changes

  • docs(docusaurus): divider page c6bb238

🛠️ Others

0.1.4-beta.0 - 2022-02-25

🚀 New Features

  • feat(github): added feature and bug reports templates with our guidelines as checkboxes 1549093

0.1.3 - 2022-02-25

🐛 Bug Fixes

  • fix(all): change eol to unix 62e7224
  • fix(banner): separate url value f9c9140
  • fix(all): merge eol c68f6e0
  • fix(blockquote): align self property now uses a valid entry ec76163

💅 Enhancements

  • refactor(megaMenu): new implementation ff013af
  • change(volto): removed customizations made for ims theme from volto-eea-design-system bc8d514
  • refactor(Timeline): divide to sub components and change files to .jsx 3e2bd3b
  • refactor(header): update variables 4e5d08d
  • refactor(Header): link header's menu to mega menu 08406d8
  • refactor(Menu): change mega menu implementation 455a51b
  • refactor(Grid):minor changes and delete extra files 272585d
  • refactor(timeline): adjust to volto theming b98641a
  • refactor(megaMenu): fix link hover issue for tablet 564e972
  • refactor(header): add remix icons and minor updates c9c97dd
  • refactor(Header): change header buttons implementation 6608b8c
  • refactor(Header): add sub components and change existing Main 74c35a3
  • refactor(table): adjust to volto theming ab7a0e8
  • refactor(Footer): delete Actions & ThemeSites files and clear imports 7a78456
  • refactor(header): update variables 326655a
  • refactor(Breadcrumb): add react router link and minor bug fix 073a3a3
  • refactor(Header): show menu on search & minor bug fix 4d49a8a
  • refactor(List): add extra default list story 95665cd
  • change(docusaurus) change generation of what's new section and bump package version 6c35cff
  • refactor(Footer): minor code changes 67cb4bc
  • refactor(Menu): add class to mega menu items for styling 19baa34
  • change(accordion): modified default accordion stories titles with real accordion names cf11cc8
  • refactor(Header): accessibility image alt fix a7347a6
  • refactor(header): adjust to volto in progress 760beca
  • refactor(Header): header items as storybook arguments 388c752
  • refactor(banner): update less variables 35b0a98
  • refactor(banner): actions as buttons; don't hardcode url for banner image; subcomponentize Banner, add Banner.Action; add developer guidelines on inline styles and line endings; 6dd5a41
  • refactor(blockquote): fix responsive margins and sizes rems 209f94f
  • refactor(Input): label position and style change 970074a
  • refactor(header): update dropdown menu 32eb0fa
  • refactor(timeline): theming updates c80c9aa
  • refactor(Blockquote):remove image stories a6357ca
  • change(docusaurus) proofread blockquote usage section and removed unused api section 0bb29fd
  • change(infrastructure) cherry-pick fix 9639243 skipping jenkins on auto commits fc744cd
  • change(ci) build storybook and docusaurus only when pushing to develop-itml branch 4de0cbf
  • change(infrastructure): modify whats new doc when committing the auto deployment 39df33e
  • change(blockquote): introduce float argument for blockquote with image storybook 8fc7290
  • refactor(pullquote): add word break 2245e53
  • refactor(Banner): minor bug fix b9073b6
  • refactor(table): fix th font weight a96a0a7
  • refactor(comment): remove avatar border radius d42c37b
  • refactor(banner): adjust title size 7a24d9c
  • refactor(Image): change image path a580da6
  • change(infrastructure): specify that docs folder contains changes for deployment a1ca915

🏠 Internal changes

  • style(input) prettier fixes e83fa0c
  • chore(storybook): prettier fix 354c7b3
  • chore(design system): technical commit for edw integration tests 9f76035
  • style(storybook): prettier fixes 3c9ad34
  • chore(infrastructure) updated branch with changes from bitbucket 77866f8

🛠️ Others

  • doc(colours):fix color to better show primary ones 705b789
  • doc(colours):change font size to fit text in one line 4ad7516
  • bump package release to 1.3.0 f3cfe4f
  • Refactor banner into content subcomponent f8df238
  • lint fixes cda322d
  • rollback don'ts grammar change and disable unresolved import for Banner.stories.jsx a1bd715
  • Add space line in component d4d1a5f

0.1.2 - 2022-02-17

🚀 New Features

  • feat(blockquote) added blockquote styles as a custom module d30662e

🐛 Bug Fixes

  • fix(inpageNavigation): hide at the top of the page 97ef500
  • fix(footer):missing image ac91a29
  • fix(comment):fix broken image 8125dc1
  • fix(message): fix font loading fdc498e
  • fix(logo): logo change 5f8c8af

💅 Enhancements

  • refactor(storybook): multiple components fixes 4a3ff51
  • change(infrastructure) re-enable integration tests for auto release stack ce8daf8
  • refactor(storybook): global site files styling update f3770f1
  • refactor(storybook): multiple components 9277aac
  • refactor(footer) adjust to volto theming update a59f1c3
  • refactor(header): minor styling update dd6b55c
  • refactor(Header): change header mega menu 7559b57
  • refactor(banner): adjust to volto theming 451b949
  • refactor(accordion): minor styling update aeaf25f
  • refactor(footer): adjust to volto theming bdff176
  • refactor(footer):mobile responsiveness 14822be
  • refactor(storybook): main and custom less files update 1607760
  • refactor(timeline): update after removing timeline addon f54d380
  • refactor(Footer): replace with subcomponents 378c652
  • refactor(Header): header change 029e850
  • refactor(Header): change header bar 2b766fd
  • change(docusaurus) use itml branch for docusaurus deployment 6e286c5
  • refactor(accordion): adjust to volto theming 971fcb8
  • refactor(Header): add sub components 7f955db
  • change(docusaurus) tweak auto deployment to always commit changes from docs a2940da
  • refactor(banner): less and variables files created d5b1a8a
  • refactor(label): adjust to volto theming 3c945e1
  • refactor(message): adjust to volto theming 3e950fc
  • refactor(Footer): add sub components and props c3d1487
  • refactor(modal): modal and confirm adjust to volto theming 83b60e9
  • refactor(comment): adjust to volto theming 84348c3
  • refactor(storybook):adjust headings 32f64f9
  • refactor(Header): add comments to header menu c2c83b2
  • refactor(Accordion): clear up accordion stories code 4e59b8f
  • refactor(segmant): adjust to volto theming 3ab211e
  • refactor(button) minor styling update 8782bb2
  • refactor(banner): change image position cdd76d5
  • refactor(breadcrumbs): update less variables 640817e
  • refactor(list): adjust to volto theming 1079c73
  • refactor(timeline):adjust timeline module 213eb11
  • refactor(blockquote):adjust to volto theming 5eec87f
  • refactor(progress): add progress bar colors ccf3c98
  • refactor(pullquote):adjust to volto theming fee4466
  • refactor(Header): change mobile mega menu c7ecf18
  • refactor(statistic): adjust to volto theming b726e49
  • refactor(button) adjust to volto theming eb257f8
  • refactor(form): minor styling update 79934b2
  • refactor(Footer): create Actions & Sites sub components 446840b
  • refactor(inpageNavigation): adjust to volto theming 85c631a
  • refactor(Inpage Navigation): changed button's display 36e5b4f
  • enhancement(docusaurus) modified headings to be within release versions 19ace30
  • refactor(storybook): move components to ui folder cb91f88
  • refactor(Header): change mega menu de0fc6b
  • refactor(Pullquote): divide Pullquote to sub components 34413c4
  • enhancement(docusaurus) replace changelog when auto-building docs Refs #145331 da25c0e
  • refactor(popup): adjust to volto theming d0d192d
  • refactor(card):adjust to volto theming 2ab6f91
  • refactor(item): adjust to volto theming 89a16af
  • refactor(pullquotes) remove unnecessary variables e0d20a3
  • refactor(progress):adjust to volto theming d1ab950
  • refactor(blockquote) change variables names 36fd5be
  • refactor(comment): adjust font sizes 0311ed1
  • refactor(InpageNavigation): clear up code 1d7afdc
  • refactor(container): change variable name for computer padding 26d123f
  • refactor(inpageNavigation): remove imports 25c1d1c
  • refactor(storybook): update ui index components exports ce78d47
  • change(infrastructure) auto build storybook when pushing to develop-itml branch of volto-eea-design-system e9aa5bc
  • refactor(storybook): delete demo stories 8b58d02
  • change(docusaurus) align deployment steps for building docusaurus 37e4ce0
  • refactor(storybook): remove components from customizations folder 8930ede
  • refactor(tab): minor styling update 1252ad0
  • refactor(comment): change avatar src e5f9c4c
  • refactor(banner) : change file type and folder 878742b
  • refactor(form elements):changed text 919beea
  • refactor(Image): change image src b971084
  • refactor(Pullquote): add component propTypes d32c5e6
  • refactor(blockquote): adjust font sizes d71a3ce
  • refactor(footer): update font sizes 1c91c35
  • refactor(Blockquote): add component proTypes ea02649
  • refactor(logo): update image f611372
  • refactor(docusaurus): restore config f2c5239
  • refactor(blockquote): update component name 572e655
  • refactor(header): fix story header import ceda6c7
  • change(infrastructure) auto build docusaurus when pushing to develop-itml branch 7bebdf5
  • refactor(storybook): remove components from customization folder 4a9bb9b
  • refactor(banner):story rename 56ff603
  • change(testing) removed navigation from cypress tests until component is finished 5549f4c
  • refactor(Segment): change to .jsx extension 5cb35d8
  • refactor(Pullquote): change to .jsx extension 564cf7e
  • refactor(PopUp):change to .jsx extension dcb24ff
  • refactor(InpageNavigation): change to .jsx extension dfefce3
  • refactor(Blockquote): change to .jsx extension 44a1645
  • refactor(heading): story name update aa10f34

🏠 Internal changes

  • style(footer): prettier fix 902c257
  • style(storybook): prettier fixes 59f941d

🏠 Documentation changes

  • docs(docusaurus):multiple page updates 2aba73e
  • docs(docusaurus):update page content 565697f
  • docs(grid):update components grid 60eb083
  • docs(docusaurus): page adjustments 0641eac
  • docs(docusaurus):updated various pages f860176
  • docs(docusaurus): logo change 3af5e5c

🛠️ Others

  • added sortable table stories and descriptions 6d44dd7
  • Layout components theming 5861013
  • recovered files from origin a4ac04f
  • grid component & stories changes 4a5752e
  • Updated what's new section with actual commits from volto-eea-design-system repo fc5e3c3
  • Docusaurus title possible fix. db699e7
  • form elements stories added description & default values 6b4f6eb
  • removed API tabs 58aa928
  • Layout updates 854f388
  • Refs #142123 removed extra customization of semantic.less: ab9de81
  • added page-header,footer and grid in docusaurus 660c8e3
  • Manual docs build and commit 666eb6a
  • added svg & png files f1338d5
  • added missing components to docusaurus 934dfd8
  • Control descriptions updated 56581eb
  • Grid updates 700332d
  • Button theming update 0ec68b6
  • site variebales & overrides changes 7251162
  • Table and Tabs theming 49f0860
  • Responsiveness updates 48e1351
  • added various components to docusaurus 550d719
  • Checkbox and radio updates 24652a2
  • remove images from typography and colour docs 8493e92
  • added guidelines' text and finished all components 02d75fc
  • added more missing components in docusaurus 8be8263
  • Prettier changes on docusaurus 5f1e5eb
  • Grid updates ae09945
  • Minor fixes for tests 3bdf306
  • Layout updates 8b7a4dc
  • Footer and TOC theming bb3d3c4
  • Refs #145331 manually commit changelog until autobuild is stabilized 93168b0
  • label component changes df8c0ff
  • added several sections to the theming guidelines ff1a649
  • Updated removed files. 84f9b8c
  • added more docusaurus components 52a3b9e
  • Progress Bar 9f2efc9
  • Modal and Confirm updates 3b306c6
  • Add proper changes to whatsnew meant in previous commit 40f78e3
  • Form Descriptions de0dfbc
  • Prettier fixes 1337e6f
  • Deleted files b82f982
  • add new images for spacing 7b7b2c4
  • Messages Theming ad621a3
  • added new content to docusaurus 1c83452
  • Minor less updates a36a8bb
  • Tabs and lists updates e37eef1
  • Inpage nav and timeline components 76f0f82
  • Prettier updated files 679b9d2
  • dropdown initial d8aef26
  • Prettier changes f068af0
  • List initial 6d3b969
  • List story updated e96a6f6
  • Statistics updates 74bf639
  • styling c169cc0
  • timeline comp storybook changes 1f42686
  • feature(docusaurus) added theming guidelines ded1f04
  • Properly commented out integration tests. 48b3a15
  • Reattempting commented out integrations tests. 3dd8211
  • Button theming 4231e1c
  • Card initial 06dace5
  • form element storybook changes c4b06aa
  • Pagination theming 2a80175
  • Accordion theming 8061bf9
  • global var updates and radio story 9526ee2
  • created pullquote component & stories df35563
  • Item stories added description & default values 9d459f2
  • storybook clean up code bffd326
  • List updates 28f1b53
  • Button classes updates 788c289
  • Prettier fixes 678c9be
  • Removed header title from partial docusaurus components. ed7c45e
  • created banner component and stories 9be170f
  • Breadcrumb stories description & defaultValue -- clean up code 186ab65
  • Refs #142123 added customization of semantic.less: 1e02356
  • Card stories added description & default values f6b408f
  • Statistic and accordion updates 16064ce
  • breadcrumb component & stories changes 5bceb98
  • Container initial 3eb7155
  • doc(docusaurus):Fix text for various parts bfd3fa2
  • blockquote component & stories 879b640
  • Refs #143412 removed doc comments breaking doc building e6a6756
  • Popup updates ce2d641
  • Global variables for colors and borders added 6e5fbd6
  • Tab stories changes 5429cfb
  • Confirm stories added description & default value 85cda14
  • Kebab case class names b41cd07
  • Card and Comment class updates 3899465
  • Accordion updates c97ba39
  • item stories changes 772e41f
  • Accordion class updates 9cdde86
  • Comment stories added description & default value cb6f25b
  • Accrodion stories description & default value ab8fb88
  • Pullquotes updates c598421
  • Modal and confirm class updates 0ae47e6
  • Tab and paggination updates 96796ff
  • Form Updates e986a9f
  • Classes renamed 73c8c3d
  • List and item less updates ce0de17
  • Confirm theming 36e20ce
  • container overrides changes 4b3970b
  • Docusaurus theming fc4a8c5
  • refacto(headings): update mobile headings sizes b2e9f83
  • list stories and style changes c61db53
  • Tab theming e31e6c3
  • Message and pagination classes updates c230687
  • Segment initial d5724fe
  • Refs #143412 removed doc comments from api_markdown breaking doc building efeacba
  • Timeline and responsiveness updates 1ed1524
  • Refs #142123 use swap font-display for performance reasons 083738f
  • Breadcrumb stories minor changes 3d0d17c
  • Table component stories minor change 0bf4083
  • List stories changes a64b304
  • blockquote component minor changes cdf71a8
  • ckeckbox stories minor change 6d6e508
  • image component storybook changes 91290ec
  • button overrides changes d5b78dd
  • accordion overrides changes fdcf7d5
  • Accordion component and stories changes 5079247
  • Card theming 23bbb9d
  • statistic overrides changes 2b11cb5
  • Refs #143412 build docs only on pull request like we do with storybook 473bb87
  • Card component stories minor change | added link icon deb423a
  • comment component stories changes f1c5e75
  • Accordion component bug fixed 815e91d
  • Refs #145331 use iso date to release so that we see also time ceedf08
  • correct connfig for doco 93e1313
  • Item updates fae93d4
  • added layout grid 2e6be55
  • tab overrides changes 87aaf32
  • message overrides changes 6dccfca
  • segment storie changes 296371f
  • progress component stories changes df10c2e
  • message comp storybook changes c86b405
  • Accordion cmponent stories | minor bug fix 6de0d81
  • Refs #145331 add all changes when auto building docusaurus ce11cce
  • perf(timeline):removed semantic timeline package 0aeb34a
  • Tablet Breakpoint update b229c27
  • Refs #143412 set storyBook Url to eea.github.io b7fdecb
  • bump package version to signaling of a major release c835f1d
  • small commit to trigger deployment of storybook and docusaurus be46ea3
  • doc(accordion):revert previous change 3de02da
  • fix typo for caption @desktop line-height pixel number 1671552
  • Commented out integration tests. 574cfec
  • popup overrides changes a9555e3
  • container component stories fixes 692cfce
  • Added timeline to package json fixed f2e93e0
  • Refs #142123 modified import of volto-eea-design-system icon.less: a7fab7d
  • Refs #142123 reference icon.less from this package: 5616e6d
  • Menu component stories change 2797716
  • Image stories minor change ddb9f1d
  • card component stories changes 6ccba1e
  • Added timeline to package json 93031d6
  • table stories code clean up b7b2a56
  • Refs #143412 removed extra baseUrl from docusaurus config 79f36da
  • Accordion stories minor change ffe808a
  • Theme assets 3f4bea4
  • Merged with develop 167ec9f

0.1.2-beta.2 - 2022-01-03

0.1.2-beta.1 - 2021-12-22

🛠️ Others

  • Tab component stories minor changes 4690a6f
  • Comment component stories minor changes a87cb6a
  • Form stories changes fc30c90
  • Grid component stories minor changes 798fdd0
  • Image component stories minor changes be93385
  • Menu component stories minor changes cb1f9a8
  • Dropdown component stories minor changes 57cf954
  • Header component stories minor changes 264fd46
  • Confirn component minor changes 9a00bc1
  • Item component stories minor changes 6994fa0
  • Label component stories changes 5cc5843
  • Container component stories minor changes e6e40b3
  • Message component stories minor changes ba9d377
  • Breadcrumb component stories minor changes ff7a176
  • Modal component stories minor changes af1fe6a
  • List stories changes 0016042
  • Button component stories minor changes 690dfd2
  • Radio component stories minor changes 84eac30
  • Progress component stories minor changes e676357
  • Pagination component stories minor changes b1af226
  • Segment component stories minor changes 5f8c7ef
  • Refs #143412 eslint fixes for component stories badcb91
  • Table component stories minor changes 7c104b8
  • Refs #143412 more eslint fixes a88c091
  • Refs #143412 warn for broken links instead of throwing bd5821c
  • Refs #143412 merge changes from develop-itml to develop branch bca28b9
  • made tabs dynamic for api tab ea37ecb
  • Basic storybook/Docusaurus components 840ab60
  • created List directory & srories based on semantic-ui List component 51f1901
  • made tabs as component easy to call for other components 07bae49
  • Popup Component | minor fixes 2ff9908
  • created stories for Tab component 95e3a73
  • created Table directory and stories based on semantic-ui Table component e16115d
  • List component stories - minor changes de11343
  • created stories for Comment component a20f884
  • created stories for Grid component 360d2a8
  • created stories for Image component 3c1d2bc
  • created stories for Menu component 17e3b37
  • Added untracked files 75f0afd
  • created Dropdown stories d6a2538
  • created Header component stories b833979
  • created stories for semantic-ui Confirm component 6fddccc
  • created Statistic directory and stories with semantic-ui Statistic component cd62498
  • created Item component stories 90ec2be
  • created stories for Container component 41934f6
  • created Label component stories 71732f6
  • created Message component stories adcbeab
  • created Modal component stories c25409d
  • Breadcrumb component stories and minor changes 6264d92
  • created Pagination component stories 57cdad3
  • created Segment component stories d8d01d7
  • created stories for Radio component 1fd062d
  • Menu stories minor changes 6ba5e0d
  • Statistic component stories minor changes 3c874a5
  • Card component stories minor changes 290bda8
  • Accrordion stories minor changes 2ee3f59
  • renamed Demo folder to Layout b9f6d05
  • remove test exclusion 94dba3e
  • Accordion component stories minor changes e672d59
  • fix docusaurus url (removed trailing /) b6c59fc
  • Item component stories - minor changes f0a9902
  • eea logos and assets b435b51

0.1.2-beta.0 - 2021-12-18

🛠️ Others

  • Refs #140454 added github action to build docusaurus to the develop branch abe6a72

0.1.1 - 2021-12-16

🛠️ Others

  • Refs #140454 changed the following to volto-eea-design-system: 6791d41
  • Refs #140454 corrected base url for docusaurus website build 98271b3
  • Initial test changes on design system/docusaurus. 9dad612
  • After prettier check 9ec40b4
  • Refs #140454 restore SearchWidget.jsx content and removed dummy text from docs intro page 7505df8
  • Refs #140454 added references to eea and the storybook in the docusaurus footer 42bbfcd
  • Refs #140454 lint fixes 9502f2b
  • Add SonarQube badges a4e0a40
  • Refs #140454 brought changes from develop-itml and upgrades docusaurus 207c873
  • Refs #140454 removed extra content not needed by the docusaurus site bc68ebe
  • Refs #140454 updated docusaurus to latest beta d68ed8a

0.1.1-beta.0 - 2021-12-09

🛠️ Others

  • Refs #140454 moved header and footer templates from volto-ims-theme: e2d5e56
  • Refs #140454 added website folder with docusaurus site skeleton 6fd15f4
  • Refs #142794 added commented implementation of the header and footer area: 773ad87
  • Refs #140454 changed the following: 4137ec4
  • Refs #140454 removed storybook from volto-eea-design-system: a129ffb
  • Refs #140454 added storybook as a dev dependency: e04ae4e
  • Refs #140454 updated Breadcrumbs.jsx to latest version: 63fe507
  • Refs #140454 we should use jsx and not mdx for storybook tests 3668e66
  • Refs #140454 updated eea-design-system readme with extra info on package contents d2efc3d
  • Refs #142010 - Optimize Volto-addons gitflow pipelines 3af46d2
  • Refs #140454 Renamed folders of docusaurus website: 15bca74
  • Add demo story 757c409
  • Refs #142794 enabled minimum css so that header looks decent adbe233
  • Refs #140454 use the develop branch for the readme linking, it's always more up to date 23dcf16
  • Refs #140454 added missing themes reference for the eea theme e9ca244
  • Refs #140454 modified assets imports after move to volto-eea-design-system 2250cc7
  • Load footer in segment 80d38a9
  • Refs #140454 bump package version to 1.1.0 from 0.1.1 from develop branch: 1314039
  • Refs #142794 keep toolbalWidth variables in case design system runs in an older version of Volto 1a8b305
  • Refs #142794 changed the following: fbb80b1
  • Refs #140454 moved storybook scripts to the scripts section 705c4c3
  • Refs #140454 removed dangling comma 514f24d
  • Refs #140454 changed link to the start of the docs 0e16fdf
  • Refs #140454 add h1 to the list of elements that are max 800px and centered 7d3c30f
  • Add Sonarqube tag using ims-frontend addons list 8d657d0

0.1.0 - 2021-11-17

🛠️ Others

  • Refs #140454 changed the following to volto-eea-design-system: 40d2af6
  • Refs #141204 elements folder now has the variables and overrides from pastanaga theme 595b4e6
  • Refs #141204 use font awesome from SemanticUI instead of Pastanaga: 4e273ca
  • Refs #141204 removed the components customizations from volto-eea-design-system: c98c260
  • Refs #141204 added customizations folder from volto-ims-theme to volto-eea-design-system: ff4bf44
  • Refs #141204 modules folder now has the variables and overrides from pastanaga theme f2841b6
  • Refs #141204 customized Comments.jsx to remove unnecessary container b2e95d7
  • Refs #132149 added initial commit for volto-eea-design-system: 2934b91
  • Refs #141204 collection folder now has the variables and overrides from pastanaga: 213d496
  • Refs #141204 removed search widget customization, we can use volto-ims-theme for that file b7e8b0c
  • Refs #141204 stylelint quick fixes 5595925
  • Refs #141204 changed the following: 769f4f9
  • Refs #141204 changed the following to the eea theme: 06d8d86
  • Refs #141204 eea site.variables now use all values from pastanaga's site.variables 6535c0f
  • Refs #141204 simplified container overrides: 5125003
  • Release 1.0.0 177d0ce
  • Refs #141204 globals folder now has the variables and overrides from pastanaga theme 116a0c3
  • Refs #141204 changed the following: 2e7f423
  • Refs #141204 modules folder now has the variables and overrides from pastanaga theme: 27a201d
  • Refs #141204 text elements are now with a max width and centered within content-area: bbed7bb
  • Refs #141204 added main.variables entries from pastanaga to eea theme 1cbbc55
  • Refs #141204 modified theme image imports for component customizations ef3238a
  • Refs #141204 modified container width to be auto: 2e8d2e0
  • Refs #141204 modified several icons to use the \f values instead of \e: c397145
  • Refs #141204 changed the following: c518eda
  • Refs #141204 ensure that main column isn't enlarged over the sidebar section on edit f7a2868
  • Refs #141204 changed the following to the form styling: eb92e05
  • Refs #141204 modified path of theme folder location for image selection f8cca45
  • Refs #141204 added missing mobileScrollbarWidth variables introduced as part of the mobile navigation pull request 444c78d
  • Refs #140454 reference font and image path from ~volto-themes instead of relative ec93ed3
  • Refs #141204 ensure that Volto doesn't crash when site module is set to eea: 51f2f27
  • Refs #141204 added tiny size prop to Breadcrumbs in order to have it as 12px 56a12e2

0.0.1 - 2021-11-17

🛠️ Others

+ \ No newline at end of file diff --git a/docs/index.html b/docs/index.html index c99de2ef82..d54b9de2a0 100644 --- a/docs/index.html +++ b/docs/index.html @@ -5,13 +5,13 @@ Welcome to EEA Design System Homepage | EEA Design System - +

EEA Design System

Creating a consistent user experience for our digital products

I am a...

Web developer

Design system for web developers

Web designer

Design system for web designers

Web content creator

Tips and tricks for writing for the web

Publication writer

Writing manual for publications

Publication designer

Design system for publications

Data scientist

Design system for data scientists

- + \ No newline at end of file diff --git a/website/docs/2-whatsnew.md b/website/docs/2-whatsnew.md index 9bdf2751b5..07c4929b16 100644 --- a/website/docs/2-whatsnew.md +++ b/website/docs/2-whatsnew.md @@ -32,13 +32,15 @@ Below is a non-exhaustive list of the work-in-progress which is planned for futu Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). -### [Unreleased](https://github.com/eea/volto-eea-design-system/compare/1.0.6...HEAD) - 2023-03-30T19:12:41.039Z +### [Unreleased](https://github.com/eea/volto-eea-design-system/compare/1.0.6...HEAD) - 2023-04-03T14:53:04.159Z #### :nail_care: Enhancements +- change(logos): updated eionet logo used in the site footer #318 from eea/footer-logo-update [`70671d0`](https://github.com/eea/volto-eea-design-system/commit/70671d03bbc228e3013e382cb51e6764a83b01a8) - change(breadcrumbs,mega-menu): better screen readers support, see links instead of groups #309 from eea/firefox-accessibility-tab-issues [`d6b0b4a`](https://github.com/eea/volto-eea-design-system/commit/d6b0b4adba8f04799491025fb41ac97e875bcce0) - refactor(megaMenu): align menu items with demo site for better testing [`82a5c84`](https://github.com/eea/volto-eea-design-system/commit/82a5c84cfde81dd8243f3f9a2d1fcaa8ac4b1463) - refactor(breadcrumbs): updates on structure and story for accessibility [`770c8c0`](https://github.com/eea/volto-eea-design-system/commit/770c8c0bce88c5d9301ab0293a8e4865849bfeb2) +- change(logo): update eionet svg [`3c87fc7`](https://github.com/eea/volto-eea-design-system/commit/3c87fc750a3dc376205a643eefced410a41b22c6) - refactor(megaMenu): Restructure Topics and Countries lists [`d816e7a`](https://github.com/eea/volto-eea-design-system/commit/d816e7ab9cdf2f202ab994201c16241cfb26c33a) - change(mega-menu): use lists for navigation, enhance voice over support for better accessibility [`d13137f`](https://github.com/eea/volto-eea-design-system/commit/d13137f024d6357514b85f184d219eb81dd585f2) - refactor(header): firefox accessibility errors fix [`c7d35b9`](https://github.com/eea/volto-eea-design-system/commit/c7d35b92b90940b466ea016dbbb3f1c6dfa0c3ab) @@ -52,6 +54,10 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - style(megaMenu): remove comments and unused properties [`fa5f8f8`](https://github.com/eea/volto-eea-design-system/commit/fa5f8f878421d879026aacd86e5390112b8852a1) +#### :house: Documentation changes + +- docs(footer): logo update [`ad982d6`](https://github.com/eea/volto-eea-design-system/commit/ad982d63423442bc292cd7553ad3163b33b337bb) + ### [1.0.6](https://github.com/eea/volto-eea-design-system/compare/1.0.5...1.0.6) - 2023-03-29 #### :rocket: New Features From 9e3aea649ca6f9446324d5d351cdfcde08332f84 Mon Sep 17 00:00:00 2001 From: andreiggr Date: Wed, 5 Apr 2023 11:58:52 +0300 Subject: [PATCH 31/45] fix: external url in header --- src/ui/Header/Header.jsx | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/ui/Header/Header.jsx b/src/ui/Header/Header.jsx index d09d77ca6d..4cfe12b363 100644 --- a/src/ui/Header/Header.jsx +++ b/src/ui/Header/Header.jsx @@ -16,6 +16,8 @@ import HeaderSearchPopUp from './HeaderSearchPopUp'; import HeaderMenuPopUp from './HeaderMenuPopUp'; import PropTypes from 'prop-types'; +import { isInternalURL } from '@plone/volto/helpers'; + Header.propTypes = { transparency: PropTypes.bool, inverted: PropTypes.bool, @@ -203,7 +205,12 @@ const Main = ({ if (item.items.length) { setMenuIsActive(true); } else { - history.push(item.url); + if (isInternalURL(item.url)) { + history.push(item.url); + } + if (!isInternalURL(item.url) && __CLIENT__) { + window.location.replace(item.url); + } } }; From 7c53b83a54e4e7d3c5329c46de03cdf7aabedf13 Mon Sep 17 00:00:00 2001 From: andreiggr Date: Wed, 5 Apr 2023 13:35:05 +0300 Subject: [PATCH 32/45] fix: check if client method change --- src/ui/Header/Header.jsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/ui/Header/Header.jsx b/src/ui/Header/Header.jsx index 4cfe12b363..ca6c3cf42d 100644 --- a/src/ui/Header/Header.jsx +++ b/src/ui/Header/Header.jsx @@ -145,6 +145,9 @@ const Main = ({ const [searchIsActive, setSearchIsActive] = React.useState(false); const [burger, setBurger] = React.useState(''); const searchInputRef = React.useRef(null); + const [isClient, setIsClient] = React.useState(); + + React.useEffect(() => setIsClient(true), []); React.useEffect(() => { setMenuIsActive(false); @@ -208,7 +211,7 @@ const Main = ({ if (isInternalURL(item.url)) { history.push(item.url); } - if (!isInternalURL(item.url) && __CLIENT__) { + if (!isInternalURL(item.url) && isClient) { window.location.replace(item.url); } } From a48984e0cb224944aed3846447c416511d080779 Mon Sep 17 00:00:00 2001 From: Andrei Grigore <44702393+andreiggr@users.noreply.github.com> Date: Wed, 5 Apr 2023 15:24:01 +0300 Subject: [PATCH 33/45] fix: dont run isInternalURL twice --- src/ui/Header/Header.jsx | 79 ++++++++++++++++++++-------------------- 1 file changed, 39 insertions(+), 40 deletions(-) diff --git a/src/ui/Header/Header.jsx b/src/ui/Header/Header.jsx index ca6c3cf42d..0ad0be6c44 100644 --- a/src/ui/Header/Header.jsx +++ b/src/ui/Header/Header.jsx @@ -3,20 +3,20 @@ * @module components/theme/Header/Header */ -import React from 'react'; // , { Component } -import { useHistory } from 'react-router-dom'; -import cx from 'classnames'; -import { Container, Image, Menu, Grid, Dropdown } from 'semantic-ui-react'; // Dropdown, +import React from "react"; // , { Component } +import { useHistory } from "react-router-dom"; +import cx from "classnames"; +import { Container, Image, Menu, Grid, Dropdown } from "semantic-ui-react"; // Dropdown, -import closeIcon from '@eeacms/volto-eea-design-system/../theme/themes/eea/assets/images/Header/close-line.svg'; -import searchIcon from '@eeacms/volto-eea-design-system/../theme/themes/eea/assets/images/Header/search-line.svg'; -import burgerIcon from '@eeacms/volto-eea-design-system/../theme/themes/eea/assets/images/Header/menu-line.svg'; +import closeIcon from "@eeacms/volto-eea-design-system/../theme/themes/eea/assets/images/Header/close-line.svg"; +import searchIcon from "@eeacms/volto-eea-design-system/../theme/themes/eea/assets/images/Header/search-line.svg"; +import burgerIcon from "@eeacms/volto-eea-design-system/../theme/themes/eea/assets/images/Header/menu-line.svg"; -import HeaderSearchPopUp from './HeaderSearchPopUp'; -import HeaderMenuPopUp from './HeaderMenuPopUp'; -import PropTypes from 'prop-types'; +import HeaderSearchPopUp from "./HeaderSearchPopUp"; +import HeaderMenuPopUp from "./HeaderMenuPopUp"; +import PropTypes from "prop-types"; -import { isInternalURL } from '@plone/volto/helpers'; +import { isInternalURL } from "@plone/volto/helpers"; Header.propTypes = { transparency: PropTypes.bool, @@ -34,7 +34,7 @@ const TopHeader = ({ children }) => ( ); const TopItem = ({ children, className, id }) => ( -
+
{children}
); @@ -56,13 +56,13 @@ const TopDropdownMenu = ({ const Component = ({ mobileText }) => { return ( <> - {children.props['aria-label'] === 'language switcher' ? ( + {children.props["aria-label"] === "language switcher" ? ( hasLanguageDropdown && ( { setMenuIsActive(false); setSearchIsActive(false); - setBurger(''); + setBurger(""); // remove active menu when we have no pathname which means we hit logo to go home if (!pathname) { - setActiveItem(''); + setActiveItem(""); } }, [pathname]); @@ -167,9 +167,9 @@ const Main = ({ const searchOnClick = (e, x) => { if (menuIsActive === true) { - setBurger(''); + setBurger(""); setMenuIsActive(false); - setActiveItem(''); + setActiveItem(""); } setSearchIsActive(!searchIsActive); }; @@ -179,13 +179,13 @@ const Main = ({ setSearchIsActive(false); } - if (burger === '') { - setBurger('open'); + if (burger === "") { + setBurger("open"); setMenuIsActive(true); } else { - setBurger(''); + setBurger(""); setMenuIsActive(false); - setActiveItem(''); + setActiveItem(""); } }; @@ -196,7 +196,7 @@ const Main = ({ } // close mobile navigation when clicking outside if we have value for nav if (burger) { - setBurger(''); + setBurger(""); } // always close the menu setMenuIsActive(false); @@ -204,14 +204,13 @@ const Main = ({ const menuOnClick = (e, item) => { if (searchIsActive) setSearchIsActive(false); - setActiveItem(item['@id'] || item.url); + setActiveItem(item["@id"] || item.url); if (item.items.length) { setMenuIsActive(true); } else { if (isInternalURL(item.url)) { history.push(item.url); - } - if (!isInternalURL(item.url) && isClient) { + } else if (isClient) { window.location.replace(item.url); } } @@ -220,7 +219,7 @@ const Main = ({ // Listens for escape keydown event React.useEffect(() => { const escKeyPressed = (e) => { - if (e.key === 'Escape') { + if (e.key === "Escape") { // menuOnClickOutside(); // restore active element if nothing was selected from the menu dropdown if (pathname !== activeItem) { @@ -228,7 +227,7 @@ const Main = ({ } // close mobile navigation when clicking outside if we have value for nav if (burger) { - setBurger(''); + setBurger(""); } // always close the menu & search setMenuIsActive(false); @@ -236,10 +235,10 @@ const Main = ({ } }; - document.addEventListener('keydown', escKeyPressed); + document.addEventListener("keydown", escKeyPressed); return () => { - document.removeEventListener('keydown', escKeyPressed); + document.removeEventListener("keydown", escKeyPressed); }; }, [activeItem, burger, pathname]); @@ -265,7 +264,7 @@ const Main = ({ // > return (
@@ -274,20 +273,20 @@ const Main = ({ {logo} -
+
{menuItems && (
    {menuItems.map((item) => ( @@ -320,7 +319,7 @@ const Main = ({ ref={mobileMenuBurgerRef} > menu icon open/close From be9774981032759b3284a6fb93490a204a817c7a Mon Sep 17 00:00:00 2001 From: andreiggr Date: Wed, 5 Apr 2023 15:40:01 +0300 Subject: [PATCH 34/45] fix: github autoformat --- src/ui/Header/Header.jsx | 76 ++++++++++++++++++++-------------------- 1 file changed, 38 insertions(+), 38 deletions(-) diff --git a/src/ui/Header/Header.jsx b/src/ui/Header/Header.jsx index 0ad0be6c44..25cef72c51 100644 --- a/src/ui/Header/Header.jsx +++ b/src/ui/Header/Header.jsx @@ -3,20 +3,20 @@ * @module components/theme/Header/Header */ -import React from "react"; // , { Component } -import { useHistory } from "react-router-dom"; -import cx from "classnames"; -import { Container, Image, Menu, Grid, Dropdown } from "semantic-ui-react"; // Dropdown, +import React from 'react'; // , { Component } +import { useHistory } from 'react-router-dom'; +import cx from 'classnames'; +import { Container, Image, Menu, Grid, Dropdown } from 'semantic-ui-react'; // Dropdown, -import closeIcon from "@eeacms/volto-eea-design-system/../theme/themes/eea/assets/images/Header/close-line.svg"; -import searchIcon from "@eeacms/volto-eea-design-system/../theme/themes/eea/assets/images/Header/search-line.svg"; -import burgerIcon from "@eeacms/volto-eea-design-system/../theme/themes/eea/assets/images/Header/menu-line.svg"; +import closeIcon from '@eeacms/volto-eea-design-system/../theme/themes/eea/assets/images/Header/close-line.svg'; +import searchIcon from '@eeacms/volto-eea-design-system/../theme/themes/eea/assets/images/Header/search-line.svg'; +import burgerIcon from '@eeacms/volto-eea-design-system/../theme/themes/eea/assets/images/Header/menu-line.svg'; -import HeaderSearchPopUp from "./HeaderSearchPopUp"; -import HeaderMenuPopUp from "./HeaderMenuPopUp"; -import PropTypes from "prop-types"; +import HeaderSearchPopUp from './HeaderSearchPopUp'; +import HeaderMenuPopUp from './HeaderMenuPopUp'; +import PropTypes from 'prop-types'; -import { isInternalURL } from "@plone/volto/helpers"; +import { isInternalURL } from '@plone/volto/helpers'; Header.propTypes = { transparency: PropTypes.bool, @@ -34,7 +34,7 @@ const TopHeader = ({ children }) => ( ); const TopItem = ({ children, className, id }) => ( -
    +
    {children}
    ); @@ -56,13 +56,13 @@ const TopDropdownMenu = ({ const Component = ({ mobileText }) => { return ( <> - {children.props["aria-label"] === "language switcher" ? ( + {children.props['aria-label'] === 'language switcher' ? ( hasLanguageDropdown && ( { setMenuIsActive(false); setSearchIsActive(false); - setBurger(""); + setBurger(''); // remove active menu when we have no pathname which means we hit logo to go home if (!pathname) { - setActiveItem(""); + setActiveItem(''); } }, [pathname]); @@ -167,9 +167,9 @@ const Main = ({ const searchOnClick = (e, x) => { if (menuIsActive === true) { - setBurger(""); + setBurger(''); setMenuIsActive(false); - setActiveItem(""); + setActiveItem(''); } setSearchIsActive(!searchIsActive); }; @@ -179,13 +179,13 @@ const Main = ({ setSearchIsActive(false); } - if (burger === "") { - setBurger("open"); + if (burger === '') { + setBurger('open'); setMenuIsActive(true); } else { - setBurger(""); + setBurger(''); setMenuIsActive(false); - setActiveItem(""); + setActiveItem(''); } }; @@ -196,7 +196,7 @@ const Main = ({ } // close mobile navigation when clicking outside if we have value for nav if (burger) { - setBurger(""); + setBurger(''); } // always close the menu setMenuIsActive(false); @@ -204,7 +204,7 @@ const Main = ({ const menuOnClick = (e, item) => { if (searchIsActive) setSearchIsActive(false); - setActiveItem(item["@id"] || item.url); + setActiveItem(item['@id'] || item.url); if (item.items.length) { setMenuIsActive(true); } else { @@ -219,7 +219,7 @@ const Main = ({ // Listens for escape keydown event React.useEffect(() => { const escKeyPressed = (e) => { - if (e.key === "Escape") { + if (e.key === 'Escape') { // menuOnClickOutside(); // restore active element if nothing was selected from the menu dropdown if (pathname !== activeItem) { @@ -227,7 +227,7 @@ const Main = ({ } // close mobile navigation when clicking outside if we have value for nav if (burger) { - setBurger(""); + setBurger(''); } // always close the menu & search setMenuIsActive(false); @@ -235,10 +235,10 @@ const Main = ({ } }; - document.addEventListener("keydown", escKeyPressed); + document.addEventListener('keydown', escKeyPressed); return () => { - document.removeEventListener("keydown", escKeyPressed); + document.removeEventListener('keydown', escKeyPressed); }; }, [activeItem, burger, pathname]); @@ -264,7 +264,7 @@ const Main = ({ // > return (
    @@ -273,20 +273,20 @@ const Main = ({ {logo} -
    +
    {menuItems && (
      {menuItems.map((item) => ( @@ -319,7 +319,7 @@ const Main = ({ ref={mobileMenuBurgerRef} > menu icon open/close From ad4ca3725c595c8dbeaff69f730928313c1779ec Mon Sep 17 00:00:00 2001 From: nileshgulia1 Date: Thu, 6 Apr 2023 13:57:58 +0530 Subject: [PATCH 35/45] fix(item): use child selector instead of descendent as it interferes with blockchooser refs #157040 --- theme/themes/eea/views/item.overrides | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/theme/themes/eea/views/item.overrides b/theme/themes/eea/views/item.overrides index a3fbf0b2e0..e3b53d69f9 100644 --- a/theme/themes/eea/views/item.overrides +++ b/theme/themes/eea/views/item.overrides @@ -208,7 +208,7 @@ } // Flex wrapper for list of items - .ui.items.flex-items-wrapper .item { + .ui.items.flex-items-wrapper > .item { width: @tabletFlexItemWidth; } } @@ -237,7 +237,7 @@ } // Flex wrapper for list of items - .ui.items.flex-items-wrapper .item { + .ui.items.flex-items-wrapper > .item { width: @desktopFlexItemWidth; } } From 3fdd9d9a11f852b41c43e70ec609f86f8f27144e Mon Sep 17 00:00:00 2001 From: github-actions Date: Thu, 6 Apr 2023 13:44:46 +0000 Subject: [PATCH 36/45] Autobuild of docusaurus docs --- docs/404.html | 4 ++-- docs/assets/js/41d5c757.0d9cade4.js | 1 - docs/assets/js/41d5c757.5c8c3dc5.js | 1 + ...time~main.4df05331.js => runtime~main.17fc11c4.js} | 2 +- docs/blog/archive/index.html | 4 ++-- docs/docs/category/components/index.html | 4 ++-- docs/docs/category/forms/index.html | 4 ++-- docs/docs/category/guidelines/index.html | 4 ++-- docs/docs/category/maps-and-charts/index.html | 4 ++-- docs/docs/category/publications/index.html | 4 ++-- docs/docs/category/quotes/index.html | 4 ++-- docs/docs/category/resources/index.html | 4 ++-- docs/docs/category/search/index.html | 4 ++-- docs/docs/category/templates/index.html | 4 ++-- docs/docs/category/utilities/index.html | 4 ++-- docs/docs/category/visuals/index.html | 4 ++-- docs/docs/category/web-content/index.html | 4 ++-- docs/docs/category/web-development/index.html | 4 ++-- docs/docs/dataguide/intro/index.html | 4 ++-- docs/docs/intro/index.html | 4 ++-- docs/docs/pubguide/design/index.html | 4 ++-- docs/docs/pubguide/writing/index.html | 4 ++-- docs/docs/webcontent/intro/index.html | 4 ++-- docs/docs/webdev/Components/Accordion/index.html | 4 ++-- docs/docs/webdev/Components/Breadcrumb/index.html | 4 ++-- docs/docs/webdev/Components/Buttons/index.html | 4 ++-- docs/docs/webdev/Components/Callout/index.html | 4 ++-- docs/docs/webdev/Components/Cards/index.html | 4 ++-- docs/docs/webdev/Components/Comment/index.html | 4 ++-- docs/docs/webdev/Components/Confirm/index.html | 4 ++-- docs/docs/webdev/Components/Content/index.html | 4 ++-- docs/docs/webdev/Components/Divider/index.html | 4 ++-- docs/docs/webdev/Components/Forms/Checkbox/index.html | 4 ++-- docs/docs/webdev/Components/Forms/Dropdown/index.html | 4 ++-- docs/docs/webdev/Components/Forms/Radio/index.html | 4 ++-- docs/docs/webdev/Components/Forms/TextArea/index.html | 4 ++-- .../docs/webdev/Components/Forms/TextInput/index.html | 4 ++-- docs/docs/webdev/Components/Headings/index.html | 4 ++-- docs/docs/webdev/Components/Image/index.html | 4 ++-- .../webdev/Components/Inpage-Navigation/index.html | 4 ++-- docs/docs/webdev/Components/Item/index.html | 4 ++-- docs/docs/webdev/Components/Labeled-icons/index.html | 4 ++-- docs/docs/webdev/Components/Labels/index.html | 4 ++-- docs/docs/webdev/Components/Lists/index.html | 4 ++-- docs/docs/webdev/Components/Loader/index.html | 4 ++-- docs/docs/webdev/Components/Logo/index.html | 4 ++-- docs/docs/webdev/Components/Messages/index.html | 4 ++-- docs/docs/webdev/Components/Modal/index.html | 4 ++-- docs/docs/webdev/Components/Pagination/index.html | 4 ++-- docs/docs/webdev/Components/Popup/index.html | 4 ++-- docs/docs/webdev/Components/Progress/index.html | 4 ++-- docs/docs/webdev/Components/Quote/Quote/index.html | 4 ++-- .../webdev/Components/Quote/Testimonial/index.html | 4 ++-- docs/docs/webdev/Components/Search/Filters/index.html | 4 ++-- .../webdev/Components/Search/Searchbox/index.html | 4 ++-- .../webdev/Components/Search/Suggestions/index.html | 4 ++-- docs/docs/webdev/Components/Segment/index.html | 4 ++-- docs/docs/webdev/Components/Statistic/index.html | 4 ++-- docs/docs/webdev/Components/Tab/index.html | 4 ++-- docs/docs/webdev/Components/Table/index.html | 4 ++-- docs/docs/webdev/Components/Tags/index.html | 4 ++-- docs/docs/webdev/Components/Timeline/index.html | 4 ++-- docs/docs/webdev/Components/Visuals/Charts/index.html | 4 ++-- .../webdev/Components/Visuals/Dashboard/index.html | 4 ++-- docs/docs/webdev/Components/Visuals/Maps/index.html | 4 ++-- docs/docs/webdev/Guidelines/colours/index.html | 4 ++-- docs/docs/webdev/Guidelines/iconography/index.html | 4 ++-- docs/docs/webdev/Guidelines/images/index.html | 4 ++-- docs/docs/webdev/Guidelines/intro/index.html | 4 ++-- docs/docs/webdev/Guidelines/spacing/index.html | 4 ++-- docs/docs/webdev/Guidelines/typography/index.html | 4 ++-- .../webdev/Resources/developer-guidelines/index.html | 4 ++-- .../webdev/Resources/theming-guidelines/index.html | 4 ++-- docs/docs/webdev/Templates/Grid/index.html | 4 ++-- docs/docs/webdev/Templates/PageHeader/index.html | 4 ++-- docs/docs/webdev/Templates/SiteFooter/index.html | 4 ++-- docs/docs/webdev/Templates/SiteHeader/index.html | 4 ++-- docs/docs/webdev/Utilities/intro/index.html | 4 ++-- docs/docs/whatsnew/index.html | 6 +++--- docs/index.html | 4 ++-- website/docs/2-whatsnew.md | 11 ++++++++--- 81 files changed, 165 insertions(+), 160 deletions(-) delete mode 100644 docs/assets/js/41d5c757.0d9cade4.js create mode 100644 docs/assets/js/41d5c757.5c8c3dc5.js rename docs/assets/js/{runtime~main.4df05331.js => runtime~main.17fc11c4.js} (99%) diff --git a/docs/404.html b/docs/404.html index 5101c27e85..4d6128de85 100644 --- a/docs/404.html +++ b/docs/404.html @@ -5,13 +5,13 @@ Page Not Found | EEA Design System - +

      Page Not Found

      We could not find what you were looking for.

      Please contact the owner of the site that linked you to the original URL and let them know their link is broken.

      - + \ No newline at end of file diff --git a/docs/assets/js/41d5c757.0d9cade4.js b/docs/assets/js/41d5c757.0d9cade4.js deleted file mode 100644 index e3f505b14d..0000000000 --- a/docs/assets/js/41d5c757.0d9cade4.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";(self.webpackChunkwebsite=self.webpackChunkwebsite||[]).push([[6245],{3905:(e,a,t)=>{t.d(a,{Zo:()=>c,kt:()=>h});var i=t(7294);function n(e,a,t){return a in e?Object.defineProperty(e,a,{value:t,enumerable:!0,configurable:!0,writable:!0}):e[a]=t,e}function o(e,a){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);a&&(i=i.filter((function(a){return Object.getOwnPropertyDescriptor(e,a).enumerable}))),t.push.apply(t,i)}return t}function m(e){for(var a=1;a=0||(n[t]=e[t]);return n}(e,a);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(i=0;i=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(n[t]=e[t])}return n}var d=i.createContext({}),r=function(e){var a=i.useContext(d),t=a;return e&&(t="function"==typeof e?e(a):m(m({},a),e)),t},c=function(e){var a=r(e.components);return i.createElement(d.Provider,{value:a},e.children)},s="mdxType",f={inlineCode:"code",wrapper:function(e){var a=e.children;return i.createElement(i.Fragment,{},a)}},p=i.forwardRef((function(e,a){var t=e.components,n=e.mdxType,o=e.originalType,d=e.parentName,c=l(e,["components","mdxType","originalType","parentName"]),s=r(t),p=n,h=s["".concat(d,".").concat(p)]||s[p]||f[p]||o;return t?i.createElement(h,m(m({ref:a},c),{},{components:t})):i.createElement(h,m({ref:a},c))}));function h(e,a){var t=arguments,n=a&&a.mdxType;if("string"==typeof e||n){var o=t.length,m=new Array(o);m[0]=p;var l={};for(var d in a)hasOwnProperty.call(a,d)&&(l[d]=a[d]);l.originalType=e,l[s]="string"==typeof e?e:n,m[1]=l;for(var r=2;r{t.r(a),t.d(a,{contentTitle:()=>m,default:()=>s,frontMatter:()=>o,metadata:()=>l,toc:()=>d});var i=t(7462),n=(t(7294),t(3905));const o={title:"What's new"},m=void 0,l={unversionedId:"whatsnew",id:"whatsnew",title:"What's new",description:"EEA Design System (1.0)",source:"@site/docs/2-whatsnew.md",sourceDirName:".",slug:"/whatsnew",permalink:"/volto-eea-design-system/docs/whatsnew",editUrl:"https://github.com/eea/volto-eea-design-system/edit/contribute-documentation/website/docs/2-whatsnew.md",tags:[],version:"current",sidebarPosition:2,frontMatter:{title:"What's new"},sidebar:"sidebar",previous:{title:"Introduction",permalink:"/volto-eea-design-system/docs/intro"},next:{title:"Web development",permalink:"/volto-eea-design-system/docs/category/web-development"}},d=[{value:"EEA Design System (1.0)",id:"eea-design-system-10",children:[{value:"Components ready to be used",id:"components-ready-to-be-used",children:[],level:4},{value:"Future releases",id:"future-releases",children:[],level:4}],level:3},{value:"Unreleased - 2023-04-03T14:53:04.159Z",id:"unreleased---2023-04-03t145304159z",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes",children:[],level:4}],level:3},{value:"1.0.6 - 2023-03-29",id:"106---2023-03-29",children:[{value:"\ud83d\ude80 New Features",id:"-new-features",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-1",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-1",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others",children:[],level:4}],level:3},{value:"1.0.5 - 2023-03-28",id:"105---2023-03-28",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-1",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes",children:[],level:4}],level:3},{value:"1.0.4 - 2023-03-27",id:"104---2023-03-27",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-2",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-2",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-1",children:[],level:4}],level:3},{value:"1.0.3 - 2023-03-24",id:"103---2023-03-24",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-1",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-2",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-2",children:[],level:4}],level:3},{value:"1.0.2 - 2023-03-14",id:"102---2023-03-14",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-2",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-3",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-1",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-3",children:[],level:4}],level:3},{value:"1.0.1 - 2023-03-13",id:"101---2023-03-13",children:[],level:3},{value:"1.0.0 - 2023-03-13",id:"100---2023-03-13",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-3",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-4",children:[],level:4}],level:3},{value:"1.0.0-beta.6 - 2023-03-10",id:"100-beta6---2023-03-10",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-3",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-4",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-5",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-3",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-2",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-4",children:[],level:4}],level:3},{value:"1.0.0-beta.5 - 2023-03-07",id:"100-beta5---2023-03-07",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-6",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-4",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-5",children:[],level:4}],level:3},{value:"1.0.0-beta.4 - 2023-03-01",id:"100-beta4---2023-03-01",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-4",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-5",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-7",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-6",children:[],level:4}],level:3},{value:"1.0.0-beta.3 - 2023-02-21",id:"100-beta3---2023-02-21",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-5",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-6",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-8",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-5",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-3",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-7",children:[],level:4}],level:3},{value:"1.0.0-beta.2 - 2023-02-13",id:"100-beta2---2023-02-13",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-7",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-9",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-6",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-8",children:[],level:4}],level:3},{value:"1.0.0-beta.1 - 2023-02-09",id:"100-beta1---2023-02-09",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-6",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-10",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-9",children:[],level:4}],level:3},{value:"1.0.0-alpha.15 - 2023-02-08",id:"100-alpha15---2023-02-08",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-7",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-8",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-11",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-10",children:[],level:4}],level:3},{value:"1.0.0-alpha.14 - 2023-01-30",id:"100-alpha14---2023-01-30",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-12",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-11",children:[],level:4}],level:3},{value:"1.0.0-alpha.13.1 - 2023-01-30",id:"100-alpha131---2023-01-30",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-13",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-12",children:[],level:4}],level:3},{value:"1.0.0-alpha.13 - 2023-01-27",id:"100-alpha13---2023-01-27",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-8",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-9",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-14",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-13",children:[],level:4}],level:3},{value:"1.0.0-alpha.12 - 2023-01-24",id:"100-alpha12---2023-01-24",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-9",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-10",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-15",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-4",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-14",children:[],level:4}],level:3},{value:"1.0.0-alpha.11 - 2023-01-17",id:"100-alpha11---2023-01-17",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-10",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-11",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-16",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-5",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-15",children:[],level:4}],level:3},{value:"1.0.0-alpha.10 - 2023-01-13",id:"100-alpha10---2023-01-13",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-12",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-16",children:[],level:4}],level:3},{value:"1.0.0-alpha.9 - 2022-12-28",id:"100-alpha9---2022-12-28",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-17",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-17",children:[],level:4}],level:3},{value:"1.0.0-alpha.8 - 2022-12-23",id:"100-alpha8---2022-12-23",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-11",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-18",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-7",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-6",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-18",children:[],level:4}],level:3},{value:"1.0.0-alpha.7 - 2022-12-16",id:"100-alpha7---2022-12-16",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-12",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-13",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-19",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-19",children:[],level:4}],level:3},{value:"1.0.0-alpha.6 - 2022-12-07",id:"100-alpha6---2022-12-07",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-13",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-14",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-20",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-7",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-20",children:[],level:4}],level:3},{value:"1.0.0-alpha.5 - 2022-11-29",id:"100-alpha5---2022-11-29",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-14",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-15",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-21",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-8",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-8",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-21",children:[],level:4}],level:3},{value:"1.0.0-alpha.4 - 2022-11-22",id:"100-alpha4---2022-11-22",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-16",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-22",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-22",children:[],level:4}],level:3},{value:"1.0.0-alpha.3 - 2022-11-16",id:"100-alpha3---2022-11-16",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-15",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-17",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-23",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-9",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-23",children:[],level:4}],level:3},{value:"1.0.0-alpha.2 - 2022-10-28",id:"100-alpha2---2022-10-28",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-24",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-10",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-24",children:[],level:4}],level:3},{value:"1.0.0-alpha.1 - 2022-10-20",id:"100-alpha1---2022-10-20",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-25",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-11",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-9",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-25",children:[],level:4}],level:3},{value:"0.9.6 - 2022-12-16",id:"096---2022-12-16",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-26",children:[],level:4}],level:3},{value:"0.9.5 - 2022-10-20",id:"095---2022-10-20",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-18",children:[],level:4}],level:3},{value:"0.9.4 - 2022-10-19",id:"094---2022-10-19",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-19",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-26",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-27",children:[],level:4}],level:3},{value:"0.9.3 - 2022-10-04",id:"093---2022-10-04",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-20",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-27",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-10",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-28",children:[],level:4}],level:3},{value:"0.9.2 - 2022-09-27",id:"092---2022-09-27",children:[],level:3},{value:"0.9.1 - 2022-09-27",id:"091---2022-09-27",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-28",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-29",children:[],level:4}],level:3},{value:"0.9.0 - 2022-09-19",id:"090---2022-09-19",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-16",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-21",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-29",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-12",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-11",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-30",children:[],level:4}],level:3},{value:"0.8.1 - 2022-08-26",id:"081---2022-08-26",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-22",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-30",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-12",children:[],level:4}],level:3},{value:"0.8.0 - 2022-08-20",id:"080---2022-08-20",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-17",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-23",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-31",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-31",children:[],level:4}],level:3},{value:"0.7.6 - 2022-08-15",id:"076---2022-08-15",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-32",children:[],level:4}],level:3},{value:"0.7.5 - 2022-08-11",id:"075---2022-08-11",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-33",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-32",children:[],level:4}],level:3},{value:"0.7.3 - 2022-08-04",id:"073---2022-08-04",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-34",children:[],level:4}],level:3},{value:"0.7.2 - 2022-08-03",id:"072---2022-08-03",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-24",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-33",children:[],level:4}],level:3},{value:"0.7.1 - 2022-08-01",id:"071---2022-08-01",children:[],level:3},{value:"0.7.0 - 2022-08-01",id:"070---2022-08-01",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-18",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-25",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-35",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-34",children:[],level:4}],level:3},{value:"0.6.5 - 2022-07-06",id:"065---2022-07-06",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-26",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-36",children:[],level:4}],level:3},{value:"0.6.1 - 2022-07-01",id:"061---2022-07-01",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-19",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-37",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-13",children:[],level:4}],level:3},{value:"0.6.0 - 2022-07-01",id:"060---2022-07-01",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-27",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-38",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-14",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-13",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-35",children:[],level:4}],level:3},{value:"0.5.5 - 2022-06-23",id:"055---2022-06-23",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-28",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-39",children:[],level:4}],level:3},{value:"0.5.4 - 2022-06-16",id:"054---2022-06-16",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-29",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-40",children:[],level:4}],level:3},{value:"0.5.3 - 2022-06-16",id:"053---2022-06-16",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-30",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-41",children:[],level:4}],level:3},{value:"0.5.2 - 2022-06-14",id:"052---2022-06-14",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-20",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-42",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-15",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-36",children:[],level:4}],level:3},{value:"0.5.1 - 2022-06-13",id:"051---2022-06-13",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-43",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-37",children:[],level:4}],level:3},{value:"0.5.0 - 2022-06-11",id:"050---2022-06-11",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-21",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-31",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-44",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-38",children:[],level:4}],level:3},{value:"0.4.5 - 2022-06-08",id:"045---2022-06-08",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-45",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-39",children:[],level:4}],level:3},{value:"0.4.4 - 2022-06-08",id:"044---2022-06-08",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-22",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-32",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-46",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-14",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-40",children:[],level:4}],level:3},{value:"0.4.3 - 2022-06-03",id:"043---2022-06-03",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-33",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-47",children:[],level:4}],level:3},{value:"0.4.2 - 2022-06-02",id:"042---2022-06-02",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-48",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-15",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-41",children:[],level:4}],level:3},{value:"0.4.1 - 2022-06-02",id:"041---2022-06-02",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-23",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-34",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-49",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-16",children:[],level:4}],level:3},{value:"0.4.0 - 2022-06-01",id:"040---2022-06-01",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-24",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-35",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-50",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-16",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-42",children:[],level:4}],level:3},{value:"0.3.1 - 2022-05-19",id:"031---2022-05-19",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-36",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-51",children:[],level:4}],level:3},{value:"0.3.0 - 2022-05-17",id:"030---2022-05-17",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-25",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-37",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-52",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-43",children:[],level:4}],level:3},{value:"0.2.4 - 2022-05-13",id:"024---2022-05-13",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-53",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-44",children:[],level:4}],level:3},{value:"0.2.3 - 2022-04-29",id:"023---2022-04-29",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-26",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-54",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-17",children:[],level:4}],level:3},{value:"0.2.2 - 2022-04-22",id:"022---2022-04-22",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-38",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-55",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-17",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-45",children:[],level:4}],level:3},{value:"0.2.1 - 2022-04-08",id:"021---2022-04-08",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-39",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-46",children:[],level:4}],level:3},{value:"0.2.0 - 2022-04-04",id:"020---2022-04-04",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-27",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-40",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-56",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-18",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-47",children:[],level:4}],level:3},{value:"0.1.9 - 2022-03-25",id:"019---2022-03-25",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-28",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-41",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-57",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-19",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-48",children:[],level:4}],level:3},{value:"0.1.8 - 2022-03-18",id:"018---2022-03-18",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-42",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-58",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-20",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-18",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-49",children:[],level:4}],level:3},{value:"0.1.7 - 2022-03-15",id:"017---2022-03-15",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-29",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-43",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-59",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-21",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-19",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-50",children:[],level:4}],level:3},{value:"0.1.6 - 2022-03-11",id:"016---2022-03-11",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-30",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-44",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-60",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-22",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-51",children:[],level:4}],level:3},{value:"0.1.5 - 2022-03-08",id:"015---2022-03-08",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-31",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-45",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-61",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-23",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-20",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-52",children:[],level:4}],level:3},{value:"0.1.4 - 2022-03-01",id:"014---2022-03-01",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-62",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-21",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-53",children:[],level:4}],level:3},{value:"0.1.4-beta.0 - 2022-02-25",id:"014-beta0---2022-02-25",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-32",children:[],level:4}],level:3},{value:"0.1.3 - 2022-02-25",id:"013---2022-02-25",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-46",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-63",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-24",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-54",children:[],level:4}],level:3},{value:"0.1.2 - 2022-02-17",id:"012---2022-02-17",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-33",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-47",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-64",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-25",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-22",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-55",children:[],level:4}],level:3},{value:"0.1.2-beta.2 - 2022-01-03",id:"012-beta2---2022-01-03",children:[],level:3},{value:"0.1.2-beta.1 - 2021-12-22",id:"012-beta1---2021-12-22",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-56",children:[],level:4}],level:3},{value:"0.1.2-beta.0 - 2021-12-18",id:"012-beta0---2021-12-18",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-57",children:[],level:4}],level:3},{value:"0.1.1 - 2021-12-16",id:"011---2021-12-16",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-58",children:[],level:4}],level:3},{value:"0.1.1-beta.0 - 2021-12-09",id:"011-beta0---2021-12-09",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-59",children:[],level:4}],level:3},{value:"0.1.0 - 2021-11-17",id:"010---2021-11-17",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-60",children:[],level:4}],level:3},{value:"0.0.1 - 2021-11-17",id:"001---2021-11-17",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-61",children:[],level:4}],level:3}],r={toc:d},c="wrapper";function s(e){let{components:a,...t}=e;return(0,n.kt)(c,(0,i.Z)({},r,t,{components:a,mdxType:"MDXLayout"}),(0,n.kt)("h3",{id:"eea-design-system-10"},"EEA Design System (1.0)"),(0,n.kt)("h4",{id:"components-ready-to-be-used"},"Components ready to be used"),(0,n.kt)("p",null,"The following components are ready to be used as Volto ",(0,n.kt)("inlineCode",{parentName:"p"},"blocks"),", ",(0,n.kt)("inlineCode",{parentName:"p"},"slate")," integration, or via the advanced ",(0,n.kt)("inlineCode",{parentName:"p"},"block styler"),":"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Accordion ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Call to Action ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Callout - part of the Description ",(0,n.kt)("inlineCode",{parentName:"li"},"block"),", ",(0,n.kt)("inlineCode",{parentName:"li"},"slate")),(0,n.kt)("li",{parentName:"ul"},"Card - part of the Teaser ",(0,n.kt)("inlineCode",{parentName:"li"},"block")," and Listing ",(0,n.kt)("inlineCode",{parentName:"li"},"block"),", it includes several variations like round card e.g., used for Avatar"),(0,n.kt)("li",{parentName:"ul"},"Divider ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Headings ",(0,n.kt)("inlineCode",{parentName:"li"},"slate")),(0,n.kt)("li",{parentName:"ul"},"Hero ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Item ",(0,n.kt)("inlineCode",{parentName:"li"},"block")," - used for text with an icon (remixicon or custom SVG/image) on the left/right"),(0,n.kt)("li",{parentName:"ul"},"List ",(0,n.kt)("inlineCode",{parentName:"li"},"slate")," - ordered and unordered"),(0,n.kt)("li",{parentName:"ul"},"Quote ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Statistic ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Tag ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Table ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Tabs ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Timeline ",(0,n.kt)("inlineCode",{parentName:"li"},"block"))),(0,n.kt)("h4",{id:"future-releases"},"Future releases"),(0,n.kt)("p",null,"Below is a non-exhaustive list of the work-in-progress which is planned for future releases:"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Navigation Portlet (used on the left/right hand of content)"),(0,n.kt)("li",{parentName:"ul"},"Spacing/padding system. We want to add the ability for editors to consistently apply various spacing/padding on certain components in order to allow a better alignment when components are used together."),(0,n.kt)("li",{parentName:"ul"},"Improve docusaurus and storybook with more components, controls, and variations in order to better reflect what is possible in Volto.")),(0,n.kt)("p",null,"Generated by ",(0,n.kt)("a",{parentName:"p",href:"https://github.com/CookPete/auto-changelog"},(0,n.kt)("inlineCode",{parentName:"a"},"auto-changelog")),"."),(0,n.kt)("h3",{id:"unreleased---2023-04-03t145304159z"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.6...HEAD"},"Unreleased")," - 2023-04-03T14:53:04.159Z"),(0,n.kt)("h4",{id:"-enhancements"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(logos): updated eionet logo used in the site footer #318 from eea/footer-logo-update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70671d03bbc228e3013e382cb51e6764a83b01a8"},(0,n.kt)("inlineCode",{parentName:"a"},"70671d0"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumbs,mega-menu): better screen readers support, see links instead of groups #309 from eea/firefox-accessibility-tab-issues ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d6b0b4adba8f04799491025fb41ac97e875bcce0"},(0,n.kt)("inlineCode",{parentName:"a"},"d6b0b4a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): align menu items with demo site for better testing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/82a5c84cfde81dd8243f3f9a2d1fcaa8ac4b1463"},(0,n.kt)("inlineCode",{parentName:"a"},"82a5c84"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumbs): updates on structure and story for accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/770c8c0bce88c5d9301ab0293a8e4865849bfeb2"},(0,n.kt)("inlineCode",{parentName:"a"},"770c8c0"))),(0,n.kt)("li",{parentName:"ul"},"change(logo): update eionet svg ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c87fc750a3dc376205a643eefced410a41b22c6"},(0,n.kt)("inlineCode",{parentName:"a"},"3c87fc7"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): Restructure Topics and Countries lists ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d816e7ab9cdf2f202ab994201c16241cfb26c33a"},(0,n.kt)("inlineCode",{parentName:"a"},"d816e7a"))),(0,n.kt)("li",{parentName:"ul"},"change(mega-menu): use lists for navigation, enhance voice over support for better accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d13137f024d6357514b85f184d219eb81dd585f2"},(0,n.kt)("inlineCode",{parentName:"a"},"d13137f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): firefox accessibility errors fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c7d35b92b90940b466ea016dbbb3f1c6dfa0c3ab"},(0,n.kt)("inlineCode",{parentName:"a"},"c7d35b9"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumbs): label modification for better screen reader output ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c967bef63ac6f622f5936235dd5590831a674d15"},(0,n.kt)("inlineCode",{parentName:"a"},"c967bef"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): clean up function after test ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/883eb73cbc3db6a1fadd0200118eafdce91b7aab"},(0,n.kt)("inlineCode",{parentName:"a"},"883eb73"))),(0,n.kt)("li",{parentName:"ul"},"change(mega-menu): added code to align countries left column subtitle with the right column ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1aa33dd7ac7154a91515eef688f276d664d5d7f3"},(0,n.kt)("inlineCode",{parentName:"a"},"1aa33dd"))),(0,n.kt)("li",{parentName:"ul"},"change(mega-menu): sub-title padding tweaks for better spacing normalization ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e08668dd9fd948e57628e5582e7a4a7f08d96451"},(0,n.kt)("inlineCode",{parentName:"a"},"e08668d"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumbs): fixed sizing of breadcrumbs list items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1761e984a6ffebbcca0c7b88128a01235fc6b903"},(0,n.kt)("inlineCode",{parentName:"a"},"1761e98")))),(0,n.kt)("h4",{id:"-internal-changes"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(megaMenu): remove comments and unused properties ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fa5f8f878421d879026aacd86e5390112b8852a1"},(0,n.kt)("inlineCode",{parentName:"a"},"fa5f8f8")))),(0,n.kt)("h4",{id:"-documentation-changes"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(footer): logo update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ad982d63423442bc292cd7553ad3163b33b337bb"},(0,n.kt)("inlineCode",{parentName:"a"},"ad982d6")))),(0,n.kt)("h3",{id:"106---2023-03-29"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.5...1.0.6"},"1.0.6")," - 2023-03-29"),(0,n.kt)("h4",{id:"-new-features"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat: add viewport-(width/height) less functions and fixed banner image url #329 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e8e70bdc81f4f301a9dce370867a873e55563048"},(0,n.kt)("inlineCode",{parentName:"a"},"e8e70bd"))),(0,n.kt)("li",{parentName:"ul"},"feat: add viewport-(width/height) less functions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/68300a3c34e66954c7ef3a6e52baa37431fbfa9e"},(0,n.kt)("inlineCode",{parentName:"a"},"68300a3")))),(0,n.kt)("h4",{id:"-enhancements-1"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): set full class name for remix icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f435e10034b04cab4aeb301d8521559f98be299e"},(0,n.kt)("inlineCode",{parentName:"a"},"f435e10"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner.jsx): use flattenToAppURL helper function to get image source URL ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24b13d7c09a498ca889d413135c9abc4e6cab9ad"},(0,n.kt)("inlineCode",{parentName:"a"},"24b13d7")))),(0,n.kt)("h4",{id:"-internal-changes-1"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(theme): update container width and margins in eea theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e4446a3af641ddca03f1f2833dd6e79535feb98"},(0,n.kt)("inlineCode",{parentName:"a"},"3e4446a")))),(0,n.kt)("h4",{id:"\ufe0f-others"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"horizontal overflow hidden in view mode ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f395f276df003480a219bae639f87bebcf35799f"},(0,n.kt)("inlineCode",{parentName:"a"},"f395f27")))),(0,n.kt)("h3",{id:"105---2023-03-28"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.4...1.0.5"},"1.0.5")," - 2023-03-28"),(0,n.kt)("h4",{id:"-new-features-1"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat: improve full-width class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70bba7e295dd237e7c579ef0446ff05e0c8529d8"},(0,n.kt)("inlineCode",{parentName:"a"},"70bba7e")))),(0,n.kt)("h4",{id:"-bug-fixes"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(banner): Add missing divider for time tag #327 from eea/banner-metadata ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c46a58336ec9eb2ce75d2637f3197f417e8ca326"},(0,n.kt)("inlineCode",{parentName:"a"},"c46a583"))),(0,n.kt)("li",{parentName:"ul"},"fix(banner): Add missing divider for time tag ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d68c395d368a267baef4422df6e72f63d099b75"},(0,n.kt)("inlineCode",{parentName:"a"},"7d68c39")))),(0,n.kt)("h3",{id:"104---2023-03-27"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.3...1.0.4"},"1.0.4")," - 2023-03-27"),(0,n.kt)("h4",{id:"-new-features-2"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(copyright): Add copyright prefix - Image - refs #250724 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6a727723c15aee499ed7cedc9f364c5e2c8014bb"},(0,n.kt)("inlineCode",{parentName:"a"},"6a72772")))),(0,n.kt)("h4",{id:"-internal-changes-2"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(copyright): Cleanup useless min-height - refs #250724 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2457df6376ac1a4d00f87eee90e61f66f7ffebb"},(0,n.kt)("inlineCode",{parentName:"a"},"f2457df")))),(0,n.kt)("h4",{id:"\ufe0f-others-1"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cfd6eba8b01eceff4e28ab7ab51b2457672ac172"},(0,n.kt)("inlineCode",{parentName:"a"},"cfd6eba")))),(0,n.kt)("h3",{id:"103---2023-03-24"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.2...1.0.3"},"1.0.3")," - 2023-03-24"),(0,n.kt)("h4",{id:"-bug-fixes-1"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix: improve full-width class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93222590a630b27f3dfccb7df0a50070c9c9901c"},(0,n.kt)("inlineCode",{parentName:"a"},"9322259"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): Remove z-index from subsite logo #320 from eea/subsite-logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/50911009918faf7d3064d97ea7b685ad71970521"},(0,n.kt)("inlineCode",{parentName:"a"},"5091100"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): Remove z-index from subsite logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d433a9788d76db0f1c08ef6bb2313f479c2bb19b"},(0,n.kt)("inlineCode",{parentName:"a"},"d433a97")))),(0,n.kt)("h4",{id:"-enhancements-2"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(header): Add search popup customizations from eea-website-theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/43e5a78be8efa1098ea0fc87f43f40f2b5d482c1"},(0,n.kt)("inlineCode",{parentName:"a"},"43e5a78"))),(0,n.kt)("li",{parentName:"ul"},"change(popup): create custom popup for better accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/036aac95509b6d78b2d3b251578a7de878e28371"},(0,n.kt)("inlineCode",{parentName:"a"},"036aac9"))),(0,n.kt)("li",{parentName:"ul"},"change(popup): added most important popup properties from Semantic ui implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/61f65bc0e5806aaac33b54db36d5360fd05a48cc"},(0,n.kt)("inlineCode",{parentName:"a"},"61f65bc"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): use custom-made Popup for better accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/10d0fcfb28ca97efe9fa5c0f6c9c350b76a73140"},(0,n.kt)("inlineCode",{parentName:"a"},"10d0fcf"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): use custom-made Popup for better accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9108bee5f671505be5199e72a4749bb0af0c0cb9"},(0,n.kt)("inlineCode",{parentName:"a"},"9108bee"))),(0,n.kt)("li",{parentName:"ul"},"change(popup): added also the basic property ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4497acddde258ed31cda09f4d905e003a1e4611"},(0,n.kt)("inlineCode",{parentName:"a"},"a4497ac"))),(0,n.kt)("li",{parentName:"ul"},"change(colors): update gray-4 color value #321 from eea/update-gray-4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f458ff0965debd3629cdd78362244836d0d42687"},(0,n.kt)("inlineCode",{parentName:"a"},"f458ff0"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): MetadataField now uses proper time tag when value is datetime ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4c4d34d5905a6771a281fc3db1174b4998c8fa8"},(0,n.kt)("inlineCode",{parentName:"a"},"b4c4d34"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): updated gray-4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b890df7693880fb965e41752eda64df992a1cdc4"},(0,n.kt)("inlineCode",{parentName:"a"},"b890df7"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): Fix error and empty div if no social links are present #319 from eea/footer-social ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/89222466b76a4720af73c0d516074efec0757c34"},(0,n.kt)("inlineCode",{parentName:"a"},"8922246"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): Fix error and empty div if no social links are present ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5d934a6545ae783ff41dc9e3eda389c571d1369b"},(0,n.kt)("inlineCode",{parentName:"a"},"5d934a6")))),(0,n.kt)("h4",{id:"\ufe0f-others-2"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"lint ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca41def7a3743a8328f26cec868bd20395b62446"},(0,n.kt)("inlineCode",{parentName:"a"},"ca41def"))),(0,n.kt)("li",{parentName:"ul"},"refactor ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9789201c7966cd711bfa85fe448f6f6df2583eaf"},(0,n.kt)("inlineCode",{parentName:"a"},"9789201"))),(0,n.kt)("li",{parentName:"ul"},"lint ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/646dfaa729b51367ce7545ea928837a481a5485a"},(0,n.kt)("inlineCode",{parentName:"a"},"646dfaa"))),(0,n.kt)("li",{parentName:"ul"},"(feat):Page Header Banner accessibility #316 from eea/accesibility-banner ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e587f4657de137273053480a3536a066ab032a29"},(0,n.kt)("inlineCode",{parentName:"a"},"e587f46"))),(0,n.kt)("li",{parentName:"ul"},"storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c8c77de372060328d535b190f30747797db0d23a"},(0,n.kt)("inlineCode",{parentName:"a"},"c8c77de"))),(0,n.kt)("li",{parentName:"ul"},"banner accesibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5e2f23bae30b5bb14d3f607e0cfeb85d0cfe4a9f"},(0,n.kt)("inlineCode",{parentName:"a"},"5e2f23b"))),(0,n.kt)("li",{parentName:"ul"},"prettier ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6ed78e50ee68accca10b06b0790c231ddeb1a1fa"},(0,n.kt)("inlineCode",{parentName:"a"},"6ed78e5"))),(0,n.kt)("li",{parentName:"ul"},"cleaning ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4391aa6c6611d1a15f5977eb150416909ad83bc1"},(0,n.kt)("inlineCode",{parentName:"a"},"4391aa6"))),(0,n.kt)("li",{parentName:"ul"},"lint 3 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2e0bed19a24d8abfa230212cd8c09f8313dc00f2"},(0,n.kt)("inlineCode",{parentName:"a"},"2e0bed1"))),(0,n.kt)("li",{parentName:"ul"},"lint 1 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4c958034870a9861c542359144e3c56f9157994"},(0,n.kt)("inlineCode",{parentName:"a"},"b4c9580")))),(0,n.kt)("h3",{id:"102---2023-03-14"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.1...1.0.2"},"1.0.2")," - 2023-03-14"),(0,n.kt)("h4",{id:"-bug-fixes-2"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(megamenu): topic menu title is now placed before content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6004bcb2683dedf6d6e18e61f33fde84a54c38d5"},(0,n.kt)("inlineCode",{parentName:"a"},"6004bcb"))),(0,n.kt)("li",{parentName:"ul"},"fix(megamenu): removed in depth nav_title renaming that set title wrongly to a-z topics ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/899ca0e2ba5f8f9eb61e4280d786f74a17c186b7"},(0,n.kt)("inlineCode",{parentName:"a"},"899ca0e")))),(0,n.kt)("h4",{id:"-enhancements-3"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(megamenu): removed special styling from at a glance mega menu section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fd0c4c8a06bb4c4aa26f57c453132d13d30bc691"},(0,n.kt)("inlineCode",{parentName:"a"},"fd0c4c8"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): renamed thematic information platforms to environmental information systems ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e7004a7ea39451dbf97e1faed222b0cc5a12d6ce"},(0,n.kt)("inlineCode",{parentName:"a"},"e7004a7"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): updated static image of footer sections ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ff3185edf9257c790d2a124d3f937f61d84e147"},(0,n.kt)("inlineCode",{parentName:"a"},"4ff3185")))),(0,n.kt)("h4",{id:"-documentation-changes-1"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(What's new): Update 'What's new' ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d7ed9d619aa60d087c3821a972ebe5bf5766521a"},(0,n.kt)("inlineCode",{parentName:"a"},"d7ed9d6")))),(0,n.kt)("h4",{id:"\ufe0f-others-3"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fixed accordion selector typo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f4cabc8f2222cf587af9e04b0ea196799b84202f"},(0,n.kt)("inlineCode",{parentName:"a"},"f4cabc8")))),(0,n.kt)("h3",{id:"101---2023-03-13"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0...1.0.1"},"1.0.1")," - 2023-03-13"),(0,n.kt)("h3",{id:"100---2023-03-13"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-beta.6...1.0.0"},"1.0.0")," - 2023-03-13"),(0,n.kt)("h4",{id:"-bug-fixes-3"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(Footer): Open internal links within the same page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5b3e409c71281800bb0fd137a1bac256efaca2b5"},(0,n.kt)("inlineCode",{parentName:"a"},"5b3e409")))),(0,n.kt)("h4",{id:"-enhancements-4"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(banner): use huge scale instead of full image for better performance ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/381c58e3521436f562d9e1727428a18435e2c0f3"},(0,n.kt)("inlineCode",{parentName:"a"},"381c58e")))),(0,n.kt)("h3",{id:"100-beta6---2023-03-10"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-beta.5...1.0.0-beta.6"},"1.0.0-beta.6")," - 2023-03-10"),(0,n.kt)("h4",{id:"-new-features-3"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(site): serve Roboto fonts from eea design system package instead of google fonts #311 from eea/roboto-library ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6a1b3e3864a0bc8602e9c434ff70746bba59f44"},(0,n.kt)("inlineCode",{parentName:"a"},"f6a1b3e")))),(0,n.kt)("h4",{id:"-bug-fixes-4"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix: full-width is now properly sized ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e2e3482d658febbd692112608df14279bed05e7"},(0,n.kt)("inlineCode",{parentName:"a"},"6e2e348"))),(0,n.kt)("li",{parentName:"ul"},"fix(storybook): add fontDisplay ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/078966a6a5c7277d36fcd31bb4c0704bcc43e523"},(0,n.kt)("inlineCode",{parentName:"a"},"078966a")))),(0,n.kt)("h4",{id:"-enhancements-5"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(image): copyright position fixes, moved image floating to image-block-container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53422e0ea345a7cb6e8cb07bf9006b48d86ded58"},(0,n.kt)("inlineCode",{parentName:"a"},"53422e0"))),(0,n.kt)("li",{parentName:"ul"},"change(colors:) update the design system colour palette #312 from eea/update-color-palette ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a5fb69465717dbdc0fe8091640a0e46f66199b65"},(0,n.kt)("inlineCode",{parentName:"a"},"a5fb694"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): added roboto library ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19de7b19fe795870102000bfebbf452d88b3a7b1"},(0,n.kt)("inlineCode",{parentName:"a"},"19de7b1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): added roboto library ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e9916215728dda0ff423f8196e7442588058042e"},(0,n.kt)("inlineCode",{parentName:"a"},"e991621"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): update colours ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3a2c1e1da8f0224e08f9f8afac3f0a74f7ce91d3"},(0,n.kt)("inlineCode",{parentName:"a"},"3a2c1e1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): restored site variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a48478bae9bdf1d9275be999e1ec8382f10a2fec"},(0,n.kt)("inlineCode",{parentName:"a"},"a48478b"))),(0,n.kt)("li",{parentName:"ul"},"change(copyright): implemented copyright hover design ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6b1244163de7ff58d1529fdd791502c862ee48ec"},(0,n.kt)("inlineCode",{parentName:"a"},"6b12441")))),(0,n.kt)("h4",{id:"-internal-changes-3"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(storybook): switched google fonts to true ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a8cae46582356cc24ec3cd7ec47e692bc67a6a5"},(0,n.kt)("inlineCode",{parentName:"a"},"4a8cae4"))),(0,n.kt)("li",{parentName:"ul"},"chore(colours): changed back yellow 6 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87c9bbc0ec9a2a0f4bf8eeb03525d43ce6f502be"},(0,n.kt)("inlineCode",{parentName:"a"},"87c9bbc"))),(0,n.kt)("li",{parentName:"ul"},"chore(lint): lint ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9b0f1256a8b0a583ac7724a8d88259c615d7e0c7"},(0,n.kt)("inlineCode",{parentName:"a"},"9b0f125"))),(0,n.kt)("li",{parentName:"ul"},"chore(storybook): lint ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/29bc809ab2e9fa4207b8b067785e6b17e91db3b4"},(0,n.kt)("inlineCode",{parentName:"a"},"29bc809")))),(0,n.kt)("h4",{id:"-documentation-changes-2"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(colours): colours update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/161007e2480aa79517c4ca772364a12a0756f1af"},(0,n.kt)("inlineCode",{parentName:"a"},"161007e"))),(0,n.kt)("li",{parentName:"ul"},"docs(colours): accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee342aa6af3863d243222eaa89709be2ba61f988"},(0,n.kt)("inlineCode",{parentName:"a"},"ee342aa")))),(0,n.kt)("h4",{id:"\ufe0f-others-4"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"test(cypress): Use latest stable Volto for testing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/20516617ae045f48c37a7ac7ad05c3d1090339b3"},(0,n.kt)("inlineCode",{parentName:"a"},"2051661"))),(0,n.kt)("li",{parentName:"ul"},"Update What's new section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/caa4b5d93affa7b63a332eaed9e73ea161a508cf"},(0,n.kt)("inlineCode",{parentName:"a"},"caa4b5d"))),(0,n.kt)("li",{parentName:"ul"},"Prepare final release 1.0.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef4383d05b295cbbb377f877522b9f83cd0873ef"},(0,n.kt)("inlineCode",{parentName:"a"},"ef4383d"))),(0,n.kt)("li",{parentName:"ul"},"lint fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/599f5098904f607bd694dd5d2e642c8820f11b3c"},(0,n.kt)("inlineCode",{parentName:"a"},"599f509"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/80cd3df3534e46e52ba246256c3d990a52753bbd"},(0,n.kt)("inlineCode",{parentName:"a"},"80cd3df")))),(0,n.kt)("h3",{id:"100-beta5---2023-03-07"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-beta.4...1.0.0-beta.5"},"1.0.0-beta.5")," - 2023-03-07"),(0,n.kt)("h4",{id:"-enhancements-6"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(carousel): tweak size of carousel dots for better touch interaction ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e1fb8230806de2e157a9a5ea87e63765769565b4"},(0,n.kt)("inlineCode",{parentName:"a"},"e1fb823"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): removed min width and height from links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac33219fb77f23bb5148355551a7aad9f453d2e7"},(0,n.kt)("inlineCode",{parentName:"a"},"ac33219")))),(0,n.kt)("h4",{id:"-internal-changes-4"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(hiddenStructure): Add hiddenStructure utility to be used with h1 heading on frontpage - refs #158717 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/672cca2401003f56e5ea104f18103ea090e38fd7"},(0,n.kt)("inlineCode",{parentName:"a"},"672cca2")))),(0,n.kt)("h4",{id:"\ufe0f-others-5"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fixed less build failure due to changes in footer.less ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/190bc8cfa88191b45808f1e27c6e2737ee3d15b1"},(0,n.kt)("inlineCode",{parentName:"a"},"190bc8c"))),(0,n.kt)("li",{parentName:"ul"},"lazyload bg img on footer also ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ae07162ba1b27bff58fed70eaabc28c78c5f45a3"},(0,n.kt)("inlineCode",{parentName:"a"},"ae07162"))),(0,n.kt)("li",{parentName:"ul"},"lazyload footer images ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a0633c9ec4ccfb63a48eb4e4c4a63c90daac1a37"},(0,n.kt)("inlineCode",{parentName:"a"},"a0633c9"))),(0,n.kt)("li",{parentName:"ul"},"Increase performance - mobile friendly ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/07d86c8e77568f91d50b3a45248de9427140a295"},(0,n.kt)("inlineCode",{parentName:"a"},"07d86c8"))),(0,n.kt)("li",{parentName:"ul"},"better useOnScreen hook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c214b6b76443f81c795ce2f3aa457562ec088b30"},(0,n.kt)("inlineCode",{parentName:"a"},"c214b6b"))),(0,n.kt)("li",{parentName:"ul"},"role change for accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5e758e0a7fa8c56ba688d0a43de5890686f14ea3"},(0,n.kt)("inlineCode",{parentName:"a"},"5e758e0"))),(0,n.kt)("li",{parentName:"ul"},"minimum tap dimension for mobile ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a25e9a8ba8a8a0f24d287ed7513e549ae2caab0f"},(0,n.kt)("inlineCode",{parentName:"a"},"a25e9a8"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-beta.5 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e4417e121477511c350ae3fbe4e70aadb445ed86"},(0,n.kt)("inlineCode",{parentName:"a"},"e4417e1"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using eea-website-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b227cf8a8c44b9d91e9fda8a7999fb0a42bacdca"},(0,n.kt)("inlineCode",{parentName:"a"},"b227cf8"))),(0,n.kt)("li",{parentName:"ul"},"feature(mobile): increased performance by lazy loading footer images #303 from eea/increase_performance ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/80d1df1c459680331d486f9e8e6a95c9db0adbf6"},(0,n.kt)("inlineCode",{parentName:"a"},"80d1df1"))),(0,n.kt)("li",{parentName:"ul"},"useOnScreen default export ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e6cfdd4dcb814aad328f97be7af41af071ccba6"},(0,n.kt)("inlineCode",{parentName:"a"},"3e6cfdd"))),(0,n.kt)("li",{parentName:"ul"},"use aria-labels on dropdown ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/27e144315416ceace0f01def03b5b24640f5c7da"},(0,n.kt)("inlineCode",{parentName:"a"},"27e1443"))),(0,n.kt)("li",{parentName:"ul"},"prettier ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7f838470c1bcc4e2be115d514d92a1b686a5e9b"},(0,n.kt)("inlineCode",{parentName:"a"},"a7f8384")))),(0,n.kt)("h3",{id:"100-beta4---2023-03-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-beta.3...1.0.0-beta.4"},"1.0.0-beta.4")," - 2023-03-01"),(0,n.kt)("h4",{id:"-new-features-4"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(footer): Add footer description ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ad0f714556c5b8c2fd95a2caea5c3a1e82c75d1"},(0,n.kt)("inlineCode",{parentName:"a"},"2ad0f71"))),(0,n.kt)("li",{parentName:"ul"},"feat(footer): Add footer description #306 from eea/footer-description ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bf655d133dd75b217c34b3d4303ad450a59f2c51"},(0,n.kt)("inlineCode",{parentName:"a"},"bf655d1")))),(0,n.kt)("h4",{id:"-bug-fixes-5"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(footer): Don't show empty row if description is not present ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ca7f7d3247668ae8583b8cd629856aac82eb07d"},(0,n.kt)("inlineCode",{parentName:"a"},"2ca7f7d"))),(0,n.kt)("li",{parentName:"ul"},"fix(footer): Add class for children ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c50d15cd6ed46d78ef10d48fd851ed7c4b5ddea"},(0,n.kt)("inlineCode",{parentName:"a"},"3c50d15"))),(0,n.kt)("li",{parentName:"ul"},"fix(search): Fix search links color #307 from eea/search-accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a76f48bab3a7d3f6b748eaa85b33266401372e40"},(0,n.kt)("inlineCode",{parentName:"a"},"a76f48b"))),(0,n.kt)("li",{parentName:"ul"},"fix(search): Fix search links color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/69c42effc5bdc3d31f18de74d77a3b7cc0018dc5"},(0,n.kt)("inlineCode",{parentName:"a"},"69c42ef")))),(0,n.kt)("h4",{id:"-enhancements-7"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(carousel): tweak card width and padding for better arrow alignment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e184f70062d622e1ec53e8e1e2b012c080e62d77"},(0,n.kt)("inlineCode",{parentName:"a"},"e184f70"))),(0,n.kt)("li",{parentName:"ul"},"change(storybook): include footer description in storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e904aa0850e101d736e8d045e822d9a58b75ff6a"},(0,n.kt)("inlineCode",{parentName:"a"},"e904aa0")))),(0,n.kt)("h4",{id:"\ufe0f-others-6"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-beta.4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8c335c56c5a2a76ea87f9da318055770f904e649"},(0,n.kt)("inlineCode",{parentName:"a"},"8c335c5"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/38b03333066416915b056f8ac45da4de87ed7184"},(0,n.kt)("inlineCode",{parentName:"a"},"38b0333")))),(0,n.kt)("h3",{id:"100-beta3---2023-02-21"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-beta.2...1.0.0-beta.3"},"1.0.0-beta.3")," - 2023-02-21"),(0,n.kt)("h4",{id:"-new-features-5"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(accordion): storybook accessibility by using buttons for titles #297 from eea/accessibility-accordion ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/809d52b203ef40fab735006b3b8358d68682f7cf"},(0,n.kt)("inlineCode",{parentName:"a"},"809d52b")))),(0,n.kt)("h4",{id:"-bug-fixes-6"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(dropdown): remove close on blur so that we can navigate links using keyboard ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5442715e022b3eb2eeb709ff597f815947ac45bd"},(0,n.kt)("inlineCode",{parentName:"a"},"5442715")))),(0,n.kt)("h4",{id:"-enhancements-8"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(language): dropdown to use links for proper keyboard navigation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6a7de30d9d229443d6d2070d9649129e6d35badf"},(0,n.kt)("inlineCode",{parentName:"a"},"6a7de30"))),(0,n.kt)("li",{parentName:"ul"},"refactor(images): cleared unused/renamed images assets ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/821f5c1da5c1e2350818cd9b8b82bc0b1893370d"},(0,n.kt)("inlineCode",{parentName:"a"},"821f5c1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Accessibility): add box-shadow on focus-visible components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b1adcc315a89c7d3431e542e8d1b6ec479a346e2"},(0,n.kt)("inlineCode",{parentName:"a"},"b1adcc3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(images): remove unused docusaurus svgs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5ef14cdb1923d803feb673559d41b3064211653"},(0,n.kt)("inlineCode",{parentName:"a"},"c5ef14c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add escape key functionality, actions from div to button to have proper focus state ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8081aa4e3b77f8a3dc89aa358408d75e3dca5579"},(0,n.kt)("inlineCode",{parentName:"a"},"8081aa4"))),(0,n.kt)("li",{parentName:"ul"},"change(language): restore dropdown duplication in order to properly show and hide language dropdown ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb28888ff19bd9894b58403e674f69de42ad8d09"},(0,n.kt)("inlineCode",{parentName:"a"},"cb28888"))),(0,n.kt)("li",{parentName:"ul"},"change(search): to reflect changes from eea-website-theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2cc35e0da6e6eac1473724293fcf6cd6b0a914b5"},(0,n.kt)("inlineCode",{parentName:"a"},"2cc35e0"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update p with h3 heading tag for header ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca1477b554f56423d40a33d8ee788c3f3bd3e341"},(0,n.kt)("inlineCode",{parentName:"a"},"ca1477b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer images): removed unused/renamed ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/186de6b23906e05ec700c3db5180a4d7f7e5ed68"},(0,n.kt)("inlineCode",{parentName:"a"},"186de6b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Accordion): div titles to buttons, test in mobile mega menu accordions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/eaad4b479e37ebf5ac004cfc5759e0be603000a7"},(0,n.kt)("inlineCode",{parentName:"a"},"eaad4b4"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): cleanup decorative images ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fedc4d4dc156f9c1394fcedcebece4fb87dc70b6"},(0,n.kt)("inlineCode",{parentName:"a"},"fedc4d4"))),(0,n.kt)("li",{parentName:"ul"},"change(accessibility): style outline instead of box-shadow ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53209f3b28c9a1dd54a8a86ab418b8bc2a8e01b3"},(0,n.kt)("inlineCode",{parentName:"a"},"53209f3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Footer): update mobile header size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/01ab7f0d9abe688b3d96aaec018838e1abefec73"},(0,n.kt)("inlineCode",{parentName:"a"},"01ab7f0"))),(0,n.kt)("li",{parentName:"ul"},"change(header): set the logo class directly on the link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f8fba508f925d9e6b86720fcb2c7dcfffee4ab5e"},(0,n.kt)("inlineCode",{parentName:"a"},"f8fba50"))),(0,n.kt)("li",{parentName:"ul"},"refactor(images): clear docusaurus unused pngs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/db5c61124182e3030f753f6baa294fbdecaa3798"},(0,n.kt)("inlineCode",{parentName:"a"},"db5c611"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header-images): removed unused ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8250d94421d9d1ee13144e71bc0938af2b7309f5"},(0,n.kt)("inlineCode",{parentName:"a"},"8250d94"))),(0,n.kt)("li",{parentName:"ul"},"change(language): hide language dropdown by default ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cc6064f72dcb4dbf96e9b05205cc796775d75205"},(0,n.kt)("inlineCode",{parentName:"a"},"cc6064f"))),(0,n.kt)("li",{parentName:"ul"},"change(header): top dropdown menu keyboard navigation #293 from eea/accessibility-megamenu-searchbox ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1e6fa658e52b9d5e6cc38f065b5707b592005241"},(0,n.kt)("inlineCode",{parentName:"a"},"1e6fa65"))),(0,n.kt)("li",{parentName:"ul"},"change(button): set focus styling for buttons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/33ebfcacb014fca365ae58079bfa5429d9007e54"},(0,n.kt)("inlineCode",{parentName:"a"},"33ebfca"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): Avoid devtools warning in FooterActions #304 from eea/avoid_warning ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d774824c5d3d0998b3440ac83152428cfa821087"},(0,n.kt)("inlineCode",{parentName:"a"},"d774824"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): Accessibility update p with h3 heading tag for theme sites title #302 from eea/footer-accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5bf70de97aee216a0b88f5843a290c6bcb5da6f2"},(0,n.kt)("inlineCode",{parentName:"a"},"5bf70de"))),(0,n.kt)("li",{parentName:"ul"},"change(documentation): Rename all image files to follow the agreed convention #301 from eea/refactor-image-filenames ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cfe44ef79943af9b9179df1b8ec5f8c743e8bb39"},(0,n.kt)("inlineCode",{parentName:"a"},"cfe44ef")))),(0,n.kt)("h4",{id:"-internal-changes-5"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(header): react syntax fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3add1271c785a92bea0ef925d7bc562cef1e0d92"},(0,n.kt)("inlineCode",{parentName:"a"},"3add127"))),(0,n.kt)("li",{parentName:"ul"},"chore(docusaurus): ignore website/.yarn ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0b33ffd1dda61b126e3cc5ff48888124d6aee41b"},(0,n.kt)("inlineCode",{parentName:"a"},"0b33ffd")))),(0,n.kt)("h4",{id:"-documentation-changes-3"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(guidelines): add image name convention ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/290747c8df6919199577bc7fce6a0e337cb57853"},(0,n.kt)("inlineCode",{parentName:"a"},"290747c")))),(0,n.kt)("h4",{id:"\ufe0f-others-7"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Avoid warning in FooterActions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0fe73d70e44e32be73049f3b5cf826de42115942"},(0,n.kt)("inlineCode",{parentName:"a"},"0fe73d7"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-beta.3 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/386c9032d39317b0bb95191bd59e3b7a99bded69"},(0,n.kt)("inlineCode",{parentName:"a"},"386c903")))),(0,n.kt)("h3",{id:"100-beta2---2023-02-13"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-beta.1...1.0.0-beta.2"},"1.0.0-beta.2")," - 2023-02-13"),(0,n.kt)("h4",{id:"-bug-fixes-7"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(footer): action and copyright #300 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/579f3e436e9608b38a2407a16c070345462bfccc"},(0,n.kt)("inlineCode",{parentName:"a"},"579f3e4"))),(0,n.kt)("li",{parentName:"ul"},"fix(footer): action or copyright links are simple a tags for external link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9af5070187ec975e58387f133afedcf1bbc47a50"},(0,n.kt)("inlineCode",{parentName:"a"},"9af5070"))),(0,n.kt)("li",{parentName:"ul"},"fix(accessibility): added navigation and footer id's for skip link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48354b908e7d1a87b4e1a965d225e8f1b3e0ac59"},(0,n.kt)("inlineCode",{parentName:"a"},"48354b9")))),(0,n.kt)("h4",{id:"-enhancements-9"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(footer): typos and modified footer links to be center aligned ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac23f046bcac06525985dff7520bb2766dec44ec"},(0,n.kt)("inlineCode",{parentName:"a"},"ac23f04"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): added gap for actions and copyright ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d32ddd3c28a48c6c2fb73dea373bb5873b6f76b"},(0,n.kt)("inlineCode",{parentName:"a"},"7d32ddd"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): modified footer gap ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8a820ac90c7d6664e4d4655c2c06edfa976c64e"},(0,n.kt)("inlineCode",{parentName:"a"},"b8a820a"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): removed extra text and date from copyright section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af47bbec298678fece6f879fbc18fe2e01ab0894"},(0,n.kt)("inlineCode",{parentName:"a"},"af47bbe"))),(0,n.kt)("li",{parentName:"ul"},"change(navigation): raise z-index of go to top link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/485ca7291da7a156b6b580c42e46d4f3602211bb"},(0,n.kt)("inlineCode",{parentName:"a"},"485ca72")))),(0,n.kt)("h4",{id:"-internal-changes-6"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(docs): Update eea.hbs template to beta - refs #158717 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/196538ed7bb9dab36a0efb4cef84e96dd3038ff8"},(0,n.kt)("inlineCode",{parentName:"a"},"196538e")))),(0,n.kt)("h4",{id:"\ufe0f-others-8"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change version to beta 2 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cbb07981454b28de840561eca281888e8bc29f9e"},(0,n.kt)("inlineCode",{parentName:"a"},"cbb0798"))),(0,n.kt)("li",{parentName:"ul"},"Beta release ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ad51b3c2bbb75f19af14fa56afdbddf57b6c95e"},(0,n.kt)("inlineCode",{parentName:"a"},"4ad51b3")))),(0,n.kt)("h3",{id:"100-beta1---2023-02-09"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.15...1.0.0-beta.1"},"1.0.0-beta.1")," - 2023-02-09"),(0,n.kt)("h4",{id:"-new-features-6"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(search): Add search suggestions style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6b2b77bbaba11541606ae2bc1f4e8ffc823f470d"},(0,n.kt)("inlineCode",{parentName:"a"},"6b2b77b"))),(0,n.kt)("li",{parentName:"ul"},"feat(search): Add search suggestions style #296 from eea/search-suggestions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3b0c956f569ebdc8400b88249c45067a1f881264"},(0,n.kt)("inlineCode",{parentName:"a"},"3b0c956")))),(0,n.kt)("h4",{id:"-enhancements-10"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(search): Add proper margin for search popup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/190c9f5be570215586086f42aebc7e36d6a26ea2"},(0,n.kt)("inlineCode",{parentName:"a"},"190c9f5")))),(0,n.kt)("h4",{id:"\ufe0f-others-9"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Extra bottom padding for header menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4f38c7a96d93fbcd47de4ec60176de2a667c5643"},(0,n.kt)("inlineCode",{parentName:"a"},"4f38c7a"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-beta.1 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4384ae28597c725f66ab0f1361ffd5167ee5e3a1"},(0,n.kt)("inlineCode",{parentName:"a"},"4384ae2"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c2ee90c1754f17a304897839adf482bc2a111212"},(0,n.kt)("inlineCode",{parentName:"a"},"c2ee90c")))),(0,n.kt)("h3",{id:"100-alpha15---2023-02-08"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.14...1.0.0-alpha.15"},"1.0.0-alpha.15")," - 2023-02-08"),(0,n.kt)("h4",{id:"-new-features-7"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(Card): add teaser card grid story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53cac0b0d1c40ad6ad8c9dc91c5d24bfb160f98e"},(0,n.kt)("inlineCode",{parentName:"a"},"53cac0b"))),(0,n.kt)("li",{parentName:"ul"},"feat(utilities): Complete list of text-align utilities - refs #160747 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/224fab602184b8974f588c91a7412e3d03e4e2f7"},(0,n.kt)("inlineCode",{parentName:"a"},"224fab6"))),(0,n.kt)("li",{parentName:"ul"},"feat(small): CSS for small HTML tag - refs #160747 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ad3c0adec4efa7cead69153d399c6452131c94cc"},(0,n.kt)("inlineCode",{parentName:"a"},"ad3c0ad"))),(0,n.kt)("li",{parentName:"ul"},"feat(fw-light): Add font weight light utility - refs #160747 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c44cf57db5845fbb9c07233aeedab79e1438f80f"},(0,n.kt)("inlineCode",{parentName:"a"},"c44cf57")))),(0,n.kt)("h4",{id:"-bug-fixes-8"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(card): teaser card dimensions on tablet size #290 from eea/teaser-card-grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/013fdf5cad347aee14bdc51553dbd95d972a7c66"},(0,n.kt)("inlineCode",{parentName:"a"},"013fdf5")))),(0,n.kt)("h4",{id:"-enhancements-11"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(card): added extra content for teaser card story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/30690ae6c499682853cb19db10b0cdc13c6f9508"},(0,n.kt)("inlineCode",{parentName:"a"},"30690ae"))),(0,n.kt)("li",{parentName:"ul"},"refactor(style-menu): add text-color to paragraphs styles #291 from eea/stylemenu-theme-colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2d783075b8089184e50b1763226af0d60ed11786"},(0,n.kt)("inlineCode",{parentName:"a"},"2d78307"))),(0,n.kt)("li",{parentName:"ul"},"change(header): Small fix in search popup #292 from eea/search-popup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/86c130539455b9a00b4b088b1871a98b9756df79"},(0,n.kt)("inlineCode",{parentName:"a"},"86c1305"))),(0,n.kt)("li",{parentName:"ul"},"refactor(style-menu): add text-color to paragraphs styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3446bc2704603bbfead7ff6c72d4e3a1ce81c7d4"},(0,n.kt)("inlineCode",{parentName:"a"},"3446bc2"))),(0,n.kt)("li",{parentName:"ul"},"change(color): darkCyan is now replaced everywhere by the new green ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef3791de6e2ea23487791c717eefc575e21fd283"},(0,n.kt)("inlineCode",{parentName:"a"},"ef3791d"))),(0,n.kt)("li",{parentName:"ul"},"change(header): Small fix in search popup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3d622ea99df5a1f1088f70998e38fd5bf43997cf"},(0,n.kt)("inlineCode",{parentName:"a"},"3d622ea")))),(0,n.kt)("h4",{id:"\ufe0f-others-10"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Release alpha 15 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3b72b29aaf9b3e1bfb7015808aafbd73a7167895"},(0,n.kt)("inlineCode",{parentName:"a"},"3b72b29")))),(0,n.kt)("h3",{id:"100-alpha14---2023-01-30"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.13.1...1.0.0-alpha.14"},"1.0.0-alpha.14")," - 2023-01-30"),(0,n.kt)("h4",{id:"-enhancements-12"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(mobile menu): integrate a-z topic with menu rendering logic #287 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/05d4c04603e6572cd6f9b255faa03c4636d8efdb"},(0,n.kt)("inlineCode",{parentName:"a"},"05d4c04"))),(0,n.kt)("li",{parentName:"ul"},"change(mobile menu): integrate a-z topic with menu rendering logic ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/246d3d839b773e2f6e1fff7fed5f9aa7a4968daa"},(0,n.kt)("inlineCode",{parentName:"a"},"246d3d8")))),(0,n.kt)("h4",{id:"\ufe0f-others-11"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"bump release to alpha 14 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/92f01975a809553ed122824c8407c74da9132c23"},(0,n.kt)("inlineCode",{parentName:"a"},"92f0197"))),(0,n.kt)("li",{parentName:"ul"},"link fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e1c12a132a1a99d773af359ebce071fb37c7e661"},(0,n.kt)("inlineCode",{parentName:"a"},"e1c12a1")))),(0,n.kt)("h3",{id:"100-alpha131---2023-01-30"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.13...1.0.0-alpha.13.1"},"1.0.0-alpha.13.1")," - 2023-01-30"),(0,n.kt)("h4",{id:"-enhancements-13"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(mobile menu): hardcode a-z topics to '/en/topics-in-depth' #286 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6436224e1922fb5d4b4053c874cebe5c57b2a6b9"},(0,n.kt)("inlineCode",{parentName:"a"},"6436224"))),(0,n.kt)("li",{parentName:"ul"},"change(mobile menu): hardcode a-z topics to '/en/topics-in-depth' ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5235b52047a80a8b626aa5ef3ef304c4d9a82003"},(0,n.kt)("inlineCode",{parentName:"a"},"5235b52")))),(0,n.kt)("h4",{id:"\ufe0f-others-12"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change release to 13.1 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70aa5648e7d9e14796445323b6ebaf7733cc7fd8"},(0,n.kt)("inlineCode",{parentName:"a"},"70aa564")))),(0,n.kt)("h3",{id:"100-alpha13---2023-01-27"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.12...1.0.0-alpha.13"},"1.0.0-alpha.13")," - 2023-01-27"),(0,n.kt)("h4",{id:"-new-features-8"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(utilities): added has--bg--top center and bottom utility classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/051e6d7c33aca7947802ddaa9fe68ac41ed7fe11"},(0,n.kt)("inlineCode",{parentName:"a"},"051e6d7")))),(0,n.kt)("h4",{id:"-bug-fixes-9"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(header): update green color used in page header #284 from eea/fix-banner-background ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/29d54db06487d18a367202725e525ac26e5b7c58"},(0,n.kt)("inlineCode",{parentName:"a"},"29d54db")))),(0,n.kt)("h4",{id:"-enhancements-14"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(site): added fixes from customVolto.css to design package ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51ba9b5df0186bdf075d803dea6032bac52e540f"},(0,n.kt)("inlineCode",{parentName:"a"},"51ba9b5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner): update banner background green color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fd4a552d9ff7a2973ebd6d18b6fbfd9bba5d98c6"},(0,n.kt)("inlineCode",{parentName:"a"},"fd4a552"))),(0,n.kt)("li",{parentName:"ul"},"change(mobile menu): changed link for a-z topics to point to in depth ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/721bf237d23d2a8e47fc2132912646c4ce182c9d"},(0,n.kt)("inlineCode",{parentName:"a"},"721bf23")))),(0,n.kt)("h4",{id:"\ufe0f-others-13"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"1.0.0-alpha.13 release #285 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c96694005e2d4160876f6a900db13940d42266d5"},(0,n.kt)("inlineCode",{parentName:"a"},"c966940"))),(0,n.kt)("li",{parentName:"ul"},"bump next version to alpha 13 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/897e9069062282f1b5cd8d86a02b8e54c40a4690"},(0,n.kt)("inlineCode",{parentName:"a"},"897e906"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5780dc7abeb24da5e77b043a34593ff7a44f350d"},(0,n.kt)("inlineCode",{parentName:"a"},"5780dc7")))),(0,n.kt)("h3",{id:"100-alpha12---2023-01-24"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.11...1.0.0-alpha.12"},"1.0.0-alpha.12")," - 2023-01-24"),(0,n.kt)("h4",{id:"-new-features-9"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(card, colors): visited color change and title on image option for cards #283 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e638ee6b77885fd5989179aa9e6532e46e475247"},(0,n.kt)("inlineCode",{parentName:"a"},"e638ee6")))),(0,n.kt)("h4",{id:"-bug-fixes-10"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(mobile menu): sub links when an accordion section is active ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bb3be81416340ad0e3e992cd4e75642fc50f8ad3"},(0,n.kt)("inlineCode",{parentName:"a"},"bb3be81")))),(0,n.kt)("h4",{id:"-enhancements-15"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(Card): create card template for stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2fa77f3f93935dd01cd5e3d77437fe8dc03721da"},(0,n.kt)("inlineCode",{parentName:"a"},"2fa77f3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Card): add image with title css ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e6e63e2362a27b0bbf4b8dd968f11a0dc87da2a"},(0,n.kt)("inlineCode",{parentName:"a"},"6e6e63e"))),(0,n.kt)("li",{parentName:"ul"},"change(card): implement title on image within image section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff6cc600978355e04dde704d014d2cbe27df1298"},(0,n.kt)("inlineCode",{parentName:"a"},"ff6cc60"))),(0,n.kt)("li",{parentName:"ul"},"change(card): added image card section, tweaked mobile heading size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0f879e15d22ae066f020d8188ef3e355c27d016c"},(0,n.kt)("inlineCode",{parentName:"a"},"0f879e1"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): moved image gradient overlay to a mixin.less file ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8b4928a87bfe5fae6f64c93d7c8f1f7a3045816c"},(0,n.kt)("inlineCode",{parentName:"a"},"8b4928a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): Update titles value and size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c35ad5c76caa00556f8a501d2e7d516464790dc4"},(0,n.kt)("inlineCode",{parentName:"a"},"c35ad5c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): applied image naming convention ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee7bc290084e198f9f94e40fbf44c6d9cb19d1ba"},(0,n.kt)("inlineCode",{parentName:"a"},"ee7bc29"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): added image for all storybook card examples ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3f194130bb6fb7b9ab04a7e1305f26fa135c23d2"},(0,n.kt)("inlineCode",{parentName:"a"},"3f19413"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): restored label value of metadata field when type isn't date ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/571a4f27fe73d0465b6482f70dd70b2dc47dffe8"},(0,n.kt)("inlineCode",{parentName:"a"},"571a4f2"))),(0,n.kt)("li",{parentName:"ul"},"change(card): title padding value for a more balance look ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/74b65563d973eb9c6afc534935e253f2705fe9ee"},(0,n.kt)("inlineCode",{parentName:"a"},"74b6556"))),(0,n.kt)("li",{parentName:"ul"},"change(card): removed uppercase transform from title on image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2948ae16f748911929910ac53d1e0acf96952317"},(0,n.kt)("inlineCode",{parentName:"a"},"2948ae1"))),(0,n.kt)("li",{parentName:"ul"},"change(colors, Docusaurus): Visited link colour change and thematic logo replacement #278 from eea/refactor-visited-link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f82d9781cc3b34443f181565c2ec1892d534f8e2"},(0,n.kt)("inlineCode",{parentName:"a"},"f82d978"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): visited link variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b209b2f7703641926c6d4b1f7162eef39b2a1ad8"},(0,n.kt)("inlineCode",{parentName:"a"},"b209b2f")))),(0,n.kt)("h4",{id:"-documentation-changes-4"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(colors): visited link update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ece77fec130de1d9d8014d40e7da975bf57061ee"},(0,n.kt)("inlineCode",{parentName:"a"},"ece77fe")))),(0,n.kt)("h4",{id:"\ufe0f-others-14"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix typos in footer gradient variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/40066405d97af838e986370101371a8162029e02"},(0,n.kt)("inlineCode",{parentName:"a"},"4006640"))),(0,n.kt)("li",{parentName:"ul"},"change version to alpha 12 instead of 1 final ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32250253f5d7fe9f01126136ad86b8a4f2f5c700"},(0,n.kt)("inlineCode",{parentName:"a"},"3225025"))),(0,n.kt)("li",{parentName:"ul"},"feature(card): new card variation with title on top of image #267 from eea/title-on-image-card ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2c0ca95700bb162bc1273c83f2fc4f591de8dcf0"},(0,n.kt)("inlineCode",{parentName:"a"},"2c0ca95"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/477d997513ef5152ab98e080ad07f927b5869705"},(0,n.kt)("inlineCode",{parentName:"a"},"477d997")))),(0,n.kt)("h3",{id:"100-alpha11---2023-01-17"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.10...1.0.0-alpha.11"},"1.0.0-alpha.11")," - 2023-01-17"),(0,n.kt)("h4",{id:"-new-features-10"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(docusaurus): Header and footer elements section #277 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0df271c4c79bd8a24750cfe44d69f32cb04a1b63"},(0,n.kt)("inlineCode",{parentName:"a"},"0df271c")))),(0,n.kt)("h4",{id:"-bug-fixes-11"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(banner): storybook date input and simplified gradient opacity ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7674d767bb770342828d6bea6953ce45b823943f"},(0,n.kt)("inlineCode",{parentName:"a"},"7674d76"))),(0,n.kt)("li",{parentName:"ul"},"fix(banner): re-added title class on banner title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d157994934c3da9af4e3dd37844f910bddf8377"},(0,n.kt)("inlineCode",{parentName:"a"},"6d15799")))),(0,n.kt)("h4",{id:"-enhancements-16"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(banner): sync storybook and Volto component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c9087cc8edc3fb27e0b96b509354861ec306f22a"},(0,n.kt)("inlineCode",{parentName:"a"},"c9087cc"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): removed margin from title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/17e592c4f3fd16a78069af50574e2ac608166a0f"},(0,n.kt)("inlineCode",{parentName:"a"},"17e592c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): sync storybook and Volto component #275 from eea/sync-page-banner-theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4331fb4a6d5744e7d7d6a001bca91265a22587fd"},(0,n.kt)("inlineCode",{parentName:"a"},"4331fb4")))),(0,n.kt)("h4",{id:"-documentation-changes-5"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(footer): updates on header elements ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b41c550475dc5a2eefcad5d75439601d079613e2"},(0,n.kt)("inlineCode",{parentName:"a"},"b41c550"))),(0,n.kt)("li",{parentName:"ul"},"docs(footer): add elements anatomy ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d9f0872f93a6f7572f798b2c001d3af00eb282e3"},(0,n.kt)("inlineCode",{parentName:"a"},"d9f0872")))),(0,n.kt)("h4",{id:"\ufe0f-others-15"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"add(banner): banner title css ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d0032474d2b57eb63a4b50a882ced2ee743a48e6"},(0,n.kt)("inlineCode",{parentName:"a"},"d003247"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-alpha.11 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/07e8f858b0bdeaa6a348c0bfc2b785f26017e1ea"},(0,n.kt)("inlineCode",{parentName:"a"},"07e8f85"))),(0,n.kt)("li",{parentName:"ul"},"renamed image elements as requested in review ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8541fb6739d3c935ed8d44a220114546b2aef682"},(0,n.kt)("inlineCode",{parentName:"a"},"8541fb6"))),(0,n.kt)("li",{parentName:"ul"},"remove(banner-gradiant): image gradiant in favour of text ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1b58520490be5e17ea4ce6fc98329d467dad3960"},(0,n.kt)("inlineCode",{parentName:"a"},"1b58520"))),(0,n.kt)("li",{parentName:"ul"},"update(gradient): use 8deg angle ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6fd597d8d7a83fdf8a27939e4c69dfc3975b6a81"},(0,n.kt)("inlineCode",{parentName:"a"},"6fd597d"))),(0,n.kt)("li",{parentName:"ul"},"update(gradiant): make it 0deg ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1bb2696375eef233b509e27d9d464b8343421430"},(0,n.kt)("inlineCode",{parentName:"a"},"1bb2696"))),(0,n.kt)("li",{parentName:"ul"},"remove(comment) referencing old verison of title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4226d42e34b119e057cf4e9878b6a99172cb976a"},(0,n.kt)("inlineCode",{parentName:"a"},"4226d42")))),(0,n.kt)("h3",{id:"100-alpha10---2023-01-13"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.9...1.0.0-alpha.10"},"1.0.0-alpha.10")," - 2023-01-13"),(0,n.kt)("h4",{id:"-bug-fixes-12"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(subsite): Fix logo size on subsite section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/65fff54503a9ace573dc7198f6bedb372e65d211"},(0,n.kt)("inlineCode",{parentName:"a"},"65fff54"))),(0,n.kt)("li",{parentName:"ul"},"fix(subsite): Fix logo size on subsite section #279 from eea/subsite-fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f6cf94811dbebc2081c0ca812570a72dd977b06"},(0,n.kt)("inlineCode",{parentName:"a"},"8f6cf94"))),(0,n.kt)("li",{parentName:"ul"},"fix(mega-menu): show sub grid only if there are children ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ddfbd82aab2be723ae230d703f72a8cd489f17d8"},(0,n.kt)("inlineCode",{parentName:"a"},"ddfbd82")))),(0,n.kt)("h4",{id:"\ufe0f-others-16"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Add variable definitions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/293fe65e2f24e6290e1286229169a77f9be4750e"},(0,n.kt)("inlineCode",{parentName:"a"},"293fe65"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-alpha.10 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7014d080ce114bd0bc039abeecbd7229333b0971"},(0,n.kt)("inlineCode",{parentName:"a"},"7014d08"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using advisory-board-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef58a6f5ad8deea26b1395a86778fe1159b7617b"},(0,n.kt)("inlineCode",{parentName:"a"},"ef58a6f"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/31d461662b9184a7bbe190e86f3c47fab39229fe"},(0,n.kt)("inlineCode",{parentName:"a"},"31d4616")))),(0,n.kt)("h3",{id:"100-alpha9---2022-12-28"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.8...1.0.0-alpha.9"},"1.0.0-alpha.9")," - 2022-12-28"),(0,n.kt)("h4",{id:"-enhancements-17"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(contextnav): Default title is text, custom title is link #273 from eea/context-nav-link-title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef7bdb7c40cd12c3d7e059074aa5797b8cb3378c"},(0,n.kt)("inlineCode",{parentName:"a"},"ef7bdb7")))),(0,n.kt)("h4",{id:"\ufe0f-others-17"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Show document and folder content-type in Navigation listing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8471db3b3d555e8602f1076d0f96a2ba38a12247"},(0,n.kt)("inlineCode",{parentName:"a"},"8471db3"))),(0,n.kt)("li",{parentName:"ul"},"Default title is text, custom title is link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1ae95b05b67423121566448c6b0cededca4b2b1d"},(0,n.kt)("inlineCode",{parentName:"a"},"1ae95b0"))),(0,n.kt)("li",{parentName:"ul"},"Context nav title link to # ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a27a6b78bcda0eb6037f73f1d36b06e00e3ffc52"},(0,n.kt)("inlineCode",{parentName:"a"},"a27a6b7")))),(0,n.kt)("h3",{id:"100-alpha8---2022-12-23"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.7...1.0.0-alpha.8"},"1.0.0-alpha.8")," - 2022-12-23"),(0,n.kt)("h4",{id:"-new-features-11"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(copyright): Align copyright options with Volto integration - refs #158210 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6bac7f6a9ad969af4be1c8c08a18a1144d5bad63"},(0,n.kt)("inlineCode",{parentName:"a"},"6bac7f6")))),(0,n.kt)("h4",{id:"-enhancements-18"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(logo): import theme site logos to the story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2f29136ca457f2419ca25a5292a036b2cd0fc402"},(0,n.kt)("inlineCode",{parentName:"a"},"2f29136"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logo): update logo and mega search gradient ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e11f44d59334fc02e3833a133b20e7b2240a2022"},(0,n.kt)("inlineCode",{parentName:"a"},"e11f44d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logos): convert logo names to lowercase ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/07b822864490b4cc63bef94f3306466ba5933e16"},(0,n.kt)("inlineCode",{parentName:"a"},"07b8228"))),(0,n.kt)("li",{parentName:"ul"},"change(item): use default logic of setting align class on content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6b5b47c10ce5a6d3710bedd492aa3d362d62d225"},(0,n.kt)("inlineCode",{parentName:"a"},"6b5b47c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logo): update logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/170efe5bfc7fd4988f4a4d4aac18ace32c360cd6"},(0,n.kt)("inlineCode",{parentName:"a"},"170efe5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logos): convert storybook logo names to lowercase ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4b24ec8796f8fffd87158a55f4ac19624ebe04c"},(0,n.kt)("inlineCode",{parentName:"a"},"c4b24ec"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logo): add eea roboto font logo variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/de1224a97568c0b48b509c65170a6080d8a058d4"},(0,n.kt)("inlineCode",{parentName:"a"},"de1224a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logo): add container and segment to logo story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/61eff16fcd080194fe1187656d67ef73a7dd4d6c"},(0,n.kt)("inlineCode",{parentName:"a"},"61eff16"))),(0,n.kt)("li",{parentName:"ul"},"change(item): removed requirement for aligned classes to be on content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/30c0d5d2de7ac05172cfb726b60a8bd763de7b31"},(0,n.kt)("inlineCode",{parentName:"a"},"30c0d5d"))),(0,n.kt)("li",{parentName:"ul"},"change(logos): cleanup eea logo reference to only eea-logo and eea-logo-white.svg ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2796e054a21a9025036c8b2882afe23a6984cd37"},(0,n.kt)("inlineCode",{parentName:"a"},"2796e05")))),(0,n.kt)("h4",{id:"-internal-changes-7"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(npmignore): Reduce npmjs package size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/164c8a5ad0f7241eb8e30c53eccfdff9cec1fb93"},(0,n.kt)("inlineCode",{parentName:"a"},"164c8a5"))),(0,n.kt)("li",{parentName:"ul"},"chore(npmignore): Reduce npmjs package size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ade9d5ba3411efc47cdd3b461fd60b2b7389f9be"},(0,n.kt)("inlineCode",{parentName:"a"},"ade9d5b"))),(0,n.kt)("li",{parentName:"ul"},"chore(docs): renamed logo mdx to md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/52e9d46bb2decabdc935eeee84dacc3e063e3616"},(0,n.kt)("inlineCode",{parentName:"a"},"52e9d46")))),(0,n.kt)("h4",{id:"-documentation-changes-6"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(logos): svgs without classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/28a58336ac57deb3eec7287b6fbf5cd58ada8a7e"},(0,n.kt)("inlineCode",{parentName:"a"},"28a5833"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): add dark mode logos ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ccc1609643cff5f851942ab95198d44252ddb22e"},(0,n.kt)("inlineCode",{parentName:"a"},"ccc1609"))),(0,n.kt)("li",{parentName:"ul"},"docs(logo): update eea logos and add logo wrapper ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91cdd6636dfb102e4712177ad5fa7e952eb6ea45"},(0,n.kt)("inlineCode",{parentName:"a"},"91cdd66"))),(0,n.kt)("li",{parentName:"ul"},"docs(logo): update logos on docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/760e1012892ab28b25e8d9b0de50cfa0ba07addf"},(0,n.kt)("inlineCode",{parentName:"a"},"760e101"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): updated svgs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dc224e1dbcf46a29b0639afde694d44221affe27"},(0,n.kt)("inlineCode",{parentName:"a"},"dc224e1"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): add thematic logos ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5a21a3076e506e6bd7f82fa97697f81825e87255"},(0,n.kt)("inlineCode",{parentName:"a"},"5a21a30"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): add zipped svgs for download ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5855bf83b471a9849ee71370d7eee4f6a1d12a44"},(0,n.kt)("inlineCode",{parentName:"a"},"5855bf8"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): wisef logo update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f90b59d03c1c4eaa760dd981e082f237c09e96f"},(0,n.kt)("inlineCode",{parentName:"a"},"8f90b59"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): move to static, add download ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8c1fd5f9a64bd8fb976687fe5ed96bc515b95393"},(0,n.kt)("inlineCode",{parentName:"a"},"8c1fd5f"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): improve eea logo visibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/82188abb99aa080d7bea15975497e03c653d311c"},(0,n.kt)("inlineCode",{parentName:"a"},"82188ab"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): change eea logo to svg ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f57b846ca9d635f5af4d1adeee280a5adcaf7b5f"},(0,n.kt)("inlineCode",{parentName:"a"},"f57b846")))),(0,n.kt)("h4",{id:"\ufe0f-others-18"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"logo update or docusaurus thematic logo listing #274 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dde90beb68ac129e476ece22e7ced4640786f094"},(0,n.kt)("inlineCode",{parentName:"a"},"dde90be"))),(0,n.kt)("li",{parentName:"ul"},"(feat): Add ability to disable the language select from website top menu - refs #158616 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/411c8e4afaf0b2b9edfdeeecdca22aa4cc41f329"},(0,n.kt)("inlineCode",{parentName:"a"},"411c8e4"))),(0,n.kt)("li",{parentName:"ul"},"Proof reading page header section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/230239e1b22734fb8606656985bc5e513731e244"},(0,n.kt)("inlineCode",{parentName:"a"},"230239e"))),(0,n.kt)("li",{parentName:"ul"},"bump package version ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4628bed134abc76e38a243d4e98143e19cef989"},(0,n.kt)("inlineCode",{parentName:"a"},"b4628be"))),(0,n.kt)("li",{parentName:"ul"},"feature(docusaurus, storybook): logos selection for sites plus inverted options #253 from eea/doc-logo-page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dbfc90d035dc40e9d4054347f00fde4de486d63d"},(0,n.kt)("inlineCode",{parentName:"a"},"dbfc90d"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using advisory-board-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4769e987d525f5dcafac8e6cf8a89fd8111667d"},(0,n.kt)("inlineCode",{parentName:"a"},"c4769e9"))),(0,n.kt)("li",{parentName:"ul"},"test(Jenkins): Run tests and cypress with latest canary @plone/volto ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/92feea09796c9ef0530f65fa1d34139905133215"},(0,n.kt)("inlineCode",{parentName:"a"},"92feea0")))),(0,n.kt)("h3",{id:"100-alpha7---2022-12-16"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.6...1.0.0-alpha.7"},"1.0.0-alpha.7")," - 2022-12-16"),(0,n.kt)("h4",{id:"-new-features-12"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(item): normalized size for image or icon items #258 from eea/refactor-items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/945170f1503be68aa3fc1bd950a97eeebfd81037"},(0,n.kt)("inlineCode",{parentName:"a"},"945170f")))),(0,n.kt)("h4",{id:"-bug-fixes-13"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(card): rounded after removal of has--rounded--true style class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4727afdecf3d25e3e5bc98d472b976d60154183"},(0,n.kt)("inlineCode",{parentName:"a"},"d4727af"))),(0,n.kt)("li",{parentName:"ul"},"fix(item): removed margin set for description which pushed the text from icon ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d9d40310fcfb1bd214bd901b79dcbac41e9a8518"},(0,n.kt)("inlineCode",{parentName:"a"},"d9d4031"))),(0,n.kt)("li",{parentName:"ul"},"fix(project): Proper paths if volto-eea-design-system package is not installed, but in development #270 from eea/correct_paths ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0f8ee8d770f1b26d4315be8f615d58a61acbafc8"},(0,n.kt)("inlineCode",{parentName:"a"},"0f8ee8d")))),(0,n.kt)("h4",{id:"-enhancements-19"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(item): update icon variations and paddings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6a407b3e7f743eb7b73247bcc5d489685d567bc6"},(0,n.kt)("inlineCode",{parentName:"a"},"6a407b3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): update spacing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2fd91c4aa1a76dd2f7099d3f24f94067e95e06a1"},(0,n.kt)("inlineCode",{parentName:"a"},"2fd91c4"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): initial values for new sizes & add description class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3546296f0cacb96411c8c67b98e9763e2b843b05"},(0,n.kt)("inlineCode",{parentName:"a"},"3546296"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): add icon and more size options ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1120bb62d9ab908c5c97a4871a66e3c08c5c7ece"},(0,n.kt)("inlineCode",{parentName:"a"},"1120bb6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): update image and icon sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8025735121aaa0024a5783afbde0f6be3715618"},(0,n.kt)("inlineCode",{parentName:"a"},"b802573"))),(0,n.kt)("li",{parentName:"ul"},"change(item): set same height as width on item images ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/69cbd23ca53dd68ae9f7c00a69ed2d8820746305"},(0,n.kt)("inlineCode",{parentName:"a"},"69cbd23"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): update item part 2 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9812ae2e41ac86cfd4c56e13af8af570b752966f"},(0,n.kt)("inlineCode",{parentName:"a"},"9812ae2"))),(0,n.kt)("li",{parentName:"ul"},"change(item): rename large to big class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24ff1275b9a0556b85ab86757bc0c84f50357e7d"},(0,n.kt)("inlineCode",{parentName:"a"},"24ff127"))),(0,n.kt)("li",{parentName:"ul"},"change(item): added tiny size that outputs 24px icon sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ea96363a957f9033cb5bfe2d7fd311e92377493"},(0,n.kt)("inlineCode",{parentName:"a"},"2ea9636"))),(0,n.kt)("li",{parentName:"ul"},"change(image): added preview image size default to 400px ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a0aa867e932d1b3c0bf449553726d6feb645853e"},(0,n.kt)("inlineCode",{parentName:"a"},"a0aa867"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): update operator for condition controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/149ccb2f1e498c27e5550214cdee25eb808ab27e"},(0,n.kt)("inlineCode",{parentName:"a"},"149ccb2")))),(0,n.kt)("h4",{id:"\ufe0f-others-19"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Proper paths if the package is not installed, but in development ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7a2655f7cf9d3c687f172eefcf2b4cff4b12f832"},(0,n.kt)("inlineCode",{parentName:"a"},"7a2655f"))),(0,n.kt)("li",{parentName:"ul"},"Update .project.eslintrc.js ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a2fd3f23473325976c2b146e066eeb538d140dce"},(0,n.kt)("inlineCode",{parentName:"a"},"a2fd3f2"))),(0,n.kt)("li",{parentName:"ul"},"added back descriptionDistance variable until package release ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3af811a8d86a132e16de118697ba5a4302a8a4da"},(0,n.kt)("inlineCode",{parentName:"a"},"3af811a"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-alpha.7 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e66bcc296b389bc55073e7f99681534977dce3a"},(0,n.kt)("inlineCode",{parentName:"a"},"7e66bcc"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using cca-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce47e9b163bcb4eda988e3a87718b54ffbd3f99f"},(0,n.kt)("inlineCode",{parentName:"a"},"ce47e9b"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb531c933c907bdbb88c9de0f1df2eb7ce899a4c"},(0,n.kt)("inlineCode",{parentName:"a"},"cb531c9")))),(0,n.kt)("h3",{id:"100-alpha6---2022-12-07"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.5...1.0.0-alpha.6"},"1.0.0-alpha.6")," - 2022-12-07"),(0,n.kt)("h4",{id:"-new-features-13"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(copyright): create copyright component and import it in banner ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8fcde9df2915585e2336024436cef76642820d75"},(0,n.kt)("inlineCode",{parentName:"a"},"8fcde9d"))),(0,n.kt)("li",{parentName:"ul"},"feat(Header): add hideSearch prop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/13ddfe59a6bd7fe2050b70ac4524a6f6c5c169ea"},(0,n.kt)("inlineCode",{parentName:"a"},"13ddfe5"))),(0,n.kt)("li",{parentName:"ul"},"feat(Docusaurus): Image copyright information #257 from eea/image-copyright-info ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/21195153240da052acb7171f7904449ed7854cb3"},(0,n.kt)("inlineCode",{parentName:"a"},"2119515")))),(0,n.kt)("h4",{id:"-bug-fixes-14"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(tags): content gap when using tags-content wrapper ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4eb9b89d4ea09f936b7fcdc22a84105fd8639af"},(0,n.kt)("inlineCode",{parentName:"a"},"c4eb9b8")))),(0,n.kt)("h4",{id:"-enhancements-20"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(hero): add copyright component to hero ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0fa88fad3e7b48789dc6d0462b9f78dd359b8949"},(0,n.kt)("inlineCode",{parentName:"a"},"0fa88fa"))),(0,n.kt)("li",{parentName:"ul"},"change(copyright): implementation to add classes on content sections ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e10bde674f2b1f722ec6c70734e4a72c018f4afe"},(0,n.kt)("inlineCode",{parentName:"a"},"e10bde6"))),(0,n.kt)("li",{parentName:"ul"},"change(copyright): removed color variant ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/747b8a27155569247d4975837587e3320327fce9"},(0,n.kt)("inlineCode",{parentName:"a"},"747b8a2"))),(0,n.kt)("li",{parentName:"ul"},"change(copyright): removed copyrightVariant from Banner and Hero stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac62e079d4eafb818f9cae25880a04d9e069d107"},(0,n.kt)("inlineCode",{parentName:"a"},"ac62e07"))),(0,n.kt)("li",{parentName:"ul"},"change(tagList): modified implementation to align to volto-tags-block ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7a57a3d4bf7ede4b5ab5f3ef045d664aaaf67f2c"},(0,n.kt)("inlineCode",{parentName:"a"},"7a57a3d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(copyright): remove data section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/52cb09dc363bb0a2e363ec86dcefb4c57e07a14d"},(0,n.kt)("inlineCode",{parentName:"a"},"52cb09d"))),(0,n.kt)("li",{parentName:"ul"},"change(copyright): line height to match page header implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a56254e7588cfc6aca999f550084d79dca6e9a6c"},(0,n.kt)("inlineCode",{parentName:"a"},"a56254e"))),(0,n.kt)("li",{parentName:"ul"},"change(copyright): now uses text color css variable with fallback to white ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee7268ba359f079dfce45fd0fe91f75ae5c37e94"},(0,n.kt)("inlineCode",{parentName:"a"},"ee7268b")))),(0,n.kt)("h4",{id:"-documentation-changes-7"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(copyright): copyright documentation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a90ed766e60b5eb5b027beb36d2b1967d2c41fa3"},(0,n.kt)("inlineCode",{parentName:"a"},"a90ed76")))),(0,n.kt)("h4",{id:"\ufe0f-others-20"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Update usage_markdown.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f76d4a242f795451d64ef2d192d0006a0ed5eac1"},(0,n.kt)("inlineCode",{parentName:"a"},"f76d4a2"))),(0,n.kt)("li",{parentName:"ul"},"grammar fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb2a5a5fd9dfc01eccc179721b06988742f5b2e2"},(0,n.kt)("inlineCode",{parentName:"a"},"cb2a5a5"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-alpha.6 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6ca32f03c1860781d3c1c4ff9558713ad8acac95"},(0,n.kt)("inlineCode",{parentName:"a"},"6ca32f0"))),(0,n.kt)("li",{parentName:"ul"},"feature(copyright): image information #250 from eea/feature-copyright ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a8618c7f0230a19b6c973aa2c9646463de9eeffb"},(0,n.kt)("inlineCode",{parentName:"a"},"a8618c7"))),(0,n.kt)("li",{parentName:"ul"},"lint fix by introducing local variable tagsGap ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7b6c0ae2ebfed06221700faf9a0d0c2bdeb60d99"},(0,n.kt)("inlineCode",{parentName:"a"},"7b6c0ae"))),(0,n.kt)("li",{parentName:"ul"},"Update 3-images.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1b0ef033f9c8a36aaa739f268263f24a6d0fb473"},(0,n.kt)("inlineCode",{parentName:"a"},"1b0ef03")))),(0,n.kt)("h3",{id:"100-alpha5---2022-11-29"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.4...1.0.0-alpha.5"},"1.0.0-alpha.5")," - 2022-11-29"),(0,n.kt)("h4",{id:"-new-features-14"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(Iconography): import and showcase remix icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/777112f7e77ce8c74c3fd4384bff6ec9694aba04"},(0,n.kt)("inlineCode",{parentName:"a"},"777112f")))),(0,n.kt)("h4",{id:"-bug-fixes-15"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(docusaurus): right bar overflow fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/197c763624f70556c62379bc0751763725d0fed3"},(0,n.kt)("inlineCode",{parentName:"a"},"197c763"))),(0,n.kt)("li",{parentName:"ul"},"fix(lists): bullet position by using padding instead of margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0ecae2e7fe61b98d8795f876a525fbbc873bf799"},(0,n.kt)("inlineCode",{parentName:"a"},"0ecae2e"))),(0,n.kt)("li",{parentName:"ul"},"fix(label): color for yellow variant as white isn't accessible on yellow color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91d8880a829d2728c49a1953f6d2d8c2c812990c"},(0,n.kt)("inlineCode",{parentName:"a"},"91d8880"))),(0,n.kt)("li",{parentName:"ul"},"fix(contentBox): avoid text decoration for header-link added on cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ccb592db6f465cec59124b94fb6918b513bb761"},(0,n.kt)("inlineCode",{parentName:"a"},"3ccb592"))),(0,n.kt)("li",{parentName:"ul"},"fix(label): margin value for ribbon image left and right margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f8e1129734709d6034539a6522105af9d43fef20"},(0,n.kt)("inlineCode",{parentName:"a"},"f8e1129")))),(0,n.kt)("h4",{id:"-enhancements-21"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): eea color palette in separate file ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6c855df9c2238f8d21860ade4578aa969b68448e"},(0,n.kt)("inlineCode",{parentName:"a"},"6c855df"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): classes for color boxes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/80219d52bc63842d8e6382dbbe7d43cdc8a29b9c"},(0,n.kt)("inlineCode",{parentName:"a"},"80219d5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): move supplementary, state and link colors to partials ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2776be32615d7a6bdd8561a523fb9cfb1a85e38b"},(0,n.kt)("inlineCode",{parentName:"a"},"2776be3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): fix side menu / moved more content in palette partial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f5b70775471369ca8f3193784b9bc66caa8fb76f"},(0,n.kt)("inlineCode",{parentName:"a"},"f5b7077"))),(0,n.kt)("li",{parentName:"ul"},"change(tag): set gap on tags element for margin between tag elements ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/726bc6da821a366a5afa03659e614cc73ed02c0b"},(0,n.kt)("inlineCode",{parentName:"a"},"726bc6d")))),(0,n.kt)("h4",{id:"-internal-changes-8"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(colours): fix wrong class name ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51ad0a8232f7f35cae05f5861d7822db852b3f8d"},(0,n.kt)("inlineCode",{parentName:"a"},"51ad0a8")))),(0,n.kt)("h4",{id:"-documentation-changes-8"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): Iconography updates, thematic platforms ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2a0e596bd002290e0759d8c5e568da4d318f7d59"},(0,n.kt)("inlineCode",{parentName:"a"},"2a0e596"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): thematic pages integration ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea7a4220a93d3fd2f437b51462f7f19d99f52595"},(0,n.kt)("inlineCode",{parentName:"a"},"ea7a422"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): color updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cc13b5499a9ae13bb45925a057f8ff4d6a2e4643"},(0,n.kt)("inlineCode",{parentName:"a"},"cc13b54"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): fix swatches accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/306cb74d3e06390a9c15da9b8b29c9d3c8f0f6c5"},(0,n.kt)("inlineCode",{parentName:"a"},"306cb74"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): typography and colors fixes according to comments on PR ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ae20a7258cc88465fa0937895c2999952736f456"},(0,n.kt)("inlineCode",{parentName:"a"},"ae20a72"))),(0,n.kt)("li",{parentName:"ul"},"docs(colours): adjust logos heights ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/854d4fb761be7307e83e5dd2eb0fe5a0117727c5"},(0,n.kt)("inlineCode",{parentName:"a"},"854d4fb"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): merge designer and dev units ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/65c240eddbf20b3fc870d301b96837f49ad9caca"},(0,n.kt)("inlineCode",{parentName:"a"},"65c240e"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): readded extra font sizes, fixed fluid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4a5d892538a9713d14ac718b1bf2c771be09810"},(0,n.kt)("inlineCode",{parentName:"a"},"a4a5d89"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): changed em to percentages ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4176007ff4b421bc988b618488e0ba6b550f9fe"},(0,n.kt)("inlineCode",{parentName:"a"},"d417600"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): minors updates and instructions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/84ac8828e430b4af2b461534b4e2f81189080145"},(0,n.kt)("inlineCode",{parentName:"a"},"84ac882"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): blue-grey-6 adjustment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e7ab2d15d3a617bc5b3713897f3e3521d9e2720a"},(0,n.kt)("inlineCode",{parentName:"a"},"e7ab2d1"))),(0,n.kt)("li",{parentName:"ul"},"docs(colours): added active colour ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/574f7a95ea8a9510d03a104ad72fafafcae5d738"},(0,n.kt)("inlineCode",{parentName:"a"},"574f7a9"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): switch FISE logo to png ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/335471fd95bbd78cd7bd80b960272baa0a32e1c5"},(0,n.kt)("inlineCode",{parentName:"a"},"335471f"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): updated visited ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0248fd164cbf85168945797244977c305c67608d"},(0,n.kt)("inlineCode",{parentName:"a"},"0248fd1"))),(0,n.kt)("li",{parentName:"ul"},"docs(FISE): replaced logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f7d833127f769d79f099618b98789c6929b4ba08"},(0,n.kt)("inlineCode",{parentName:"a"},"f7d8331")))),(0,n.kt)("h4",{id:"\ufe0f-others-21"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"perf(docusaurus): added remixicon and roboto locally ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b67b1a72bc9cdc7c62a25967e81b430f8b62d558"},(0,n.kt)("inlineCode",{parentName:"a"},"b67b1a7"))),(0,n.kt)("li",{parentName:"ul"},"feature(Docusaurus): Updates on color palette information including thematic websites #231 from eea/refactor-docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ec7843dea07f626dc1c71ae1baa8bb5b0caa52f3"},(0,n.kt)("inlineCode",{parentName:"a"},"ec7843d"))),(0,n.kt)("li",{parentName:"ul"},"Upgrade Jenkinsfile storybook to yarn 3 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d20de8d6e21a14660b7b5125a80218a8a6f19e62"},(0,n.kt)("inlineCode",{parentName:"a"},"d20de8d"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/563fbc5fac0d4b0295690d0a3a4e04271753f18a"},(0,n.kt)("inlineCode",{parentName:"a"},"563fbc5")))),(0,n.kt)("h3",{id:"100-alpha4---2022-11-22"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.3...1.0.0-alpha.4"},"1.0.0-alpha.4")," - 2022-11-22"),(0,n.kt)("h4",{id:"-bug-fixes-16"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(cards-storybook): load slick carousel css for arrow and pagination styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1159b1beea0d7f7e026f1f1181fea91b7ac38ffa"},(0,n.kt)("inlineCode",{parentName:"a"},"1159b1b")))),(0,n.kt)("h4",{id:"-enhancements-22"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(cards): refactor cards theming implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4e454238d540ef306f4c1a4f8e9a94c7aa10189"},(0,n.kt)("inlineCode",{parentName:"a"},"d4e4542"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): allow rounded, inverted and theme parameter to be set by has classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4b4ad893fc5d39629b4e8d874327f31ea2e7d885"},(0,n.kt)("inlineCode",{parentName:"a"},"4b4ad89"))),(0,n.kt)("li",{parentName:"ul"},"change(card): expect has classes on the card directly ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6a9e38bcae0656685a99b47800d556813663d2ee"},(0,n.kt)("inlineCode",{parentName:"a"},"6a9e38b"))),(0,n.kt)("li",{parentName:"ul"},"change(utilities): added has text classes to the text alignment utilities ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e6974c634551fe0d19a9c9da269f5c6fbaefab7a"},(0,n.kt)("inlineCode",{parentName:"a"},"e6974c6"))),(0,n.kt)("li",{parentName:"ul"},"change(utilities): modified class name for text align using has naming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/579a0cbe0f704eb9305119fdd162f4f29c8086d5"},(0,n.kt)("inlineCode",{parentName:"a"},"579a0cb"))),(0,n.kt)("li",{parentName:"ul"},"change(theme): ensure that only direct children of container have a default top and bottom margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7f8b8dcc72827004d366e1c531311cf8734053fc"},(0,n.kt)("inlineCode",{parentName:"a"},"7f8b8dc"))),(0,n.kt)("li",{parentName:"ul"},"change(build): upgrade action to trigger workflow and wait to latest version ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c63ad3fdae7972bb2c722dea3d046861fa0ac086"},(0,n.kt)("inlineCode",{parentName:"a"},"c63ad3f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): theming implementation to allow has theming classes #265 from eea/card-refactoring ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24edc99d85c0c619fc763a8774a96f7208f529a5"},(0,n.kt)("inlineCode",{parentName:"a"},"24edc99"))),(0,n.kt)("li",{parentName:"ul"},"change(theme): add slick-carousel dependency ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2eec7d7233adf86b9c4f61670eb87d9754ff94c"},(0,n.kt)("inlineCode",{parentName:"a"},"f2eec7d")))),(0,n.kt)("h4",{id:"\ufe0f-others-22"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Update eea.github.io on all commits in develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3d0b8d745138bd2e0219560c8c895ce2c56dbf04"},(0,n.kt)("inlineCode",{parentName:"a"},"3d0b8d7"))),(0,n.kt)("li",{parentName:"ul"},"Exclude mockups from npm package ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/634af8e3ddabec36a18597d8d7638888269875fc"},(0,n.kt)("inlineCode",{parentName:"a"},"634af8e"))),(0,n.kt)("li",{parentName:"ul"},"fix rounded selector ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1fa15442f03d3f3d9ef59afa14075b061483cf3a"},(0,n.kt)("inlineCode",{parentName:"a"},"1fa1544"))),(0,n.kt)("li",{parentName:"ul"},"Trigger re-build ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3566dd2b4d2cd12496e05b792c85a78de550dd50"},(0,n.kt)("inlineCode",{parentName:"a"},"3566dd2"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea47f6f10097f23f635d98f0c5483bebf8378fc4"},(0,n.kt)("inlineCode",{parentName:"a"},"ea47f6f")))),(0,n.kt)("h3",{id:"100-alpha3---2022-11-16"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.2...1.0.0-alpha.3"},"1.0.0-alpha.3")," - 2022-11-16"),(0,n.kt)("h4",{id:"-new-features-15"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(Header): Add subsite section styling #263 from eea/subsite ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/00398b8a6c5d83241c30d0ba85d95c115edf2480"},(0,n.kt)("inlineCode",{parentName:"a"},"00398b8")))),(0,n.kt)("h4",{id:"-bug-fixes-17"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(search): position now changed by default to absolute from relative ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51b08fc217e25c1391a2bac0b42a8c3f7ae091c7"},(0,n.kt)("inlineCode",{parentName:"a"},"51b08fc"))),(0,n.kt)("li",{parentName:"ul"},"fix(megaMenu): remove paddings for buttons added by active class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ec33ebfe23a6064c88383ab465bd45edee2dba9b"},(0,n.kt)("inlineCode",{parentName:"a"},"ec33ebf")))),(0,n.kt)("h4",{id:"-enhancements-23"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(components): load overrides files for our defined semantic files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/adde7a9519f38fa779d8d038f3b6817281f0b4a2"},(0,n.kt)("inlineCode",{parentName:"a"},"adde7a9"))),(0,n.kt)("li",{parentName:"ul"},"change(container): fullwidth now take into account devices without hover ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5a35a65ce4928972027325bd01265db3f046f0e8"},(0,n.kt)("inlineCode",{parentName:"a"},"5a35a65"))),(0,n.kt)("li",{parentName:"ul"},"change(container): ensure only the top level elements behave like containers ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/98b85d1fb285919a8851454fa3007131b2a0ffc3"},(0,n.kt)("inlineCode",{parentName:"a"},"98b85d1"))),(0,n.kt)("li",{parentName:"ul"},"change(container): modified column-block grid to remove margin and padding when using full width class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/35c1cee7b3b35e7c361562ab7a430240f0117cc3"},(0,n.kt)("inlineCode",{parentName:"a"},"35c1cee"))),(0,n.kt)("li",{parentName:"ul"},"change(mega-menu): hide home link and accordion content from mobile menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1a691729b6d61c0daf46c5de035c1c55b0fda0d9"},(0,n.kt)("inlineCode",{parentName:"a"},"1a69172"))),(0,n.kt)("li",{parentName:"ul"},"change(container): width from min width 1280px to 1365px max width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/66e551e532da2cc5e9716e5179f943f172663be4"},(0,n.kt)("inlineCode",{parentName:"a"},"66e551e"))),(0,n.kt)("li",{parentName:"ul"},"change(container): removed app extras and view setting of layout sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6dc1ee602634df85140f6db75e41293b72eacf1"},(0,n.kt)("inlineCode",{parentName:"a"},"f6dc1ee"))),(0,n.kt)("li",{parentName:"ul"},"change(views): customized DefaultView to pass class into page-document area ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91123aad429f4bb086110b4997e43e9809a97581"},(0,n.kt)("inlineCode",{parentName:"a"},"91123aa"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): desktop - use buttons for menu section titles and readjust content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb9315f2b999193b7b64cec27c49fc8dda306899"},(0,n.kt)("inlineCode",{parentName:"a"},"cb9315f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): add nav_title and nav_description attributes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0d7a5686daab2ecec87d78728437d8f994606448"},(0,n.kt)("inlineCode",{parentName:"a"},"0d7a568"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): style sub-title and nav-description ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b2a48fd3588ffdc75f61f0b8d52284d13edf2d92"},(0,n.kt)("inlineCode",{parentName:"a"},"b2a48fd"))),(0,n.kt)("li",{parentName:"ul"},"refactor(sidemenu): add third level list and items & update active indication ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2d87da9fddca2b867f3d065a007c0b921587a61"},(0,n.kt)("inlineCode",{parentName:"a"},"e2d87da"))),(0,n.kt)("li",{parentName:"ul"},"change(columns): implement narrow, container and wide width classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9696b5457e50ba3186406a584da16f5248c14439"},(0,n.kt)("inlineCode",{parentName:"a"},"9696b54"))),(0,n.kt)("li",{parentName:"ul"},"change(container): story to add classes that modify the max width of the containers ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/37948f89ee797738bd8bbb0023bc5dca018d7331"},(0,n.kt)("inlineCode",{parentName:"a"},"37948f8"))),(0,n.kt)("li",{parentName:"ul"},"change(container): affect only left and right margin of containers ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/183265b7dd8d20359b6c3956ea05b62df6e70f75"},(0,n.kt)("inlineCode",{parentName:"a"},"183265b"))),(0,n.kt)("li",{parentName:"ul"},"change(containers): modified class names after layout checks ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1dc3689509001031f0afd30422f517de5316e47a"},(0,n.kt)("inlineCode",{parentName:"a"},"1dc3689"))),(0,n.kt)("li",{parentName:"ul"},"refactor(sidemenu): add is_in_path and is_current attributes for an active example ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a3fe7fd8da93db0a065d4408ce154c9d8c26b568"},(0,n.kt)("inlineCode",{parentName:"a"},"a3fe7fd"))),(0,n.kt)("li",{parentName:"ul"},"change(container): story to avoid adding containerwidth property to container div ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c13d83cdbc8741bf4075cdfcd884f39f3f71d73c"},(0,n.kt)("inlineCode",{parentName:"a"},"c13d83c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): mobile - use buttons for menu section titles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7b632fd29a8ac815d2e590509baa51f1279e659"},(0,n.kt)("inlineCode",{parentName:"a"},"a7b632f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): update padding variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5f25838ba9ec367a58c98c929921ebf09cd8ad8"},(0,n.kt)("inlineCode",{parentName:"a"},"c5f2583"))),(0,n.kt)("li",{parentName:"ul"},"change(views): moved narrow style bellow the default container width styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/72fa58dce9ea03a1e4f409a9f9aab21b01efbfc8"},(0,n.kt)("inlineCode",{parentName:"a"},"72fa58d"))),(0,n.kt)("li",{parentName:"ul"},"change(listing): removed container from default view page-document area ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/69f3d8f422e3cb95e89937929aaef48b5569bcdf"},(0,n.kt)("inlineCode",{parentName:"a"},"69f3d8f"))),(0,n.kt)("li",{parentName:"ul"},"change(views): rename classes names to width_view and added app extras layout component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/745b7720839754d1e248795cb1263f8c02f5f3c2"},(0,n.kt)("inlineCode",{parentName:"a"},"745b772"))),(0,n.kt)("li",{parentName:"ul"},"change(container): use important flag for left and right margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a49c83abe9a045d28118a680558de5416a0516a3"},(0,n.kt)("inlineCode",{parentName:"a"},"a49c83a"))),(0,n.kt)("li",{parentName:"ul"},"change(container): add variables for edit and add section of containers ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2e2c335dc82c120d15d4c536c400ae742f68fe7"},(0,n.kt)("inlineCode",{parentName:"a"},"f2e2c33"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): update sub-title paddings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/992f919bb5155c8e6fc169e43adf00dcae41f400"},(0,n.kt)("inlineCode",{parentName:"a"},"992f919"))),(0,n.kt)("li",{parentName:"ul"},"change(site): add a 1rem margin top and bottom on all styled classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dabf6c1162fe23cef61a2053eefd7e687f649a56"},(0,n.kt)("inlineCode",{parentName:"a"},"dabf6c1"))),(0,n.kt)("li",{parentName:"ul"},"change(homepage): removed hiding of staging banner from homepage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ba2cd7fc17cdf1bf58381aa58e05acad0ac77ba"},(0,n.kt)("inlineCode",{parentName:"a"},"4ba2cd7"))),(0,n.kt)("li",{parentName:"ul"},"change(container): unset values of page-document on 1200+ browser width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dd5bea37d414e2a8689eaf6cc99c7b3a3d4b0e08"},(0,n.kt)("inlineCode",{parentName:"a"},"dd5bea3"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): set children to be appended to the right of the menu title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b69c23a20ef2ded1f0382650ff8e85d1bead6941"},(0,n.kt)("inlineCode",{parentName:"a"},"b69c23a"))),(0,n.kt)("li",{parentName:"ul"},"change(theme): modified wide width to point to 1320px as it's perfectly divisible by 4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f825737d6dafd595024bb4537eab624a47a9ad0"},(0,n.kt)("inlineCode",{parentName:"a"},"8f82573"))),(0,n.kt)("li",{parentName:"ul"},"change(theme): modified wide width to point to 1368px as it's perfectly divisible by 4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2349fee36ee72783665a0b101d684389f1fdf834"},(0,n.kt)("inlineCode",{parentName:"a"},"2349fee"))),(0,n.kt)("li",{parentName:"ul"},"change(container): renamed content-text-width to container-text-width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6f788c282348292dd4b5deb47ffe83ca4573e5c8"},(0,n.kt)("inlineCode",{parentName:"a"},"6f788c2"))),(0,n.kt)("li",{parentName:"ul"},"change(listing): provide ui container fallback if no class is passed to default view ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af9e94ded1e301f4c811749badbcc1f59e6d0de5"},(0,n.kt)("inlineCode",{parentName:"a"},"af9e94d"))),(0,n.kt)("li",{parentName:"ul"},"change(narrow-view): re-added container class to page-document ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/56b44a6e09d45f96c106dc471bb2e1cde58ef10f"},(0,n.kt)("inlineCode",{parentName:"a"},"56b44a6"))),(0,n.kt)("li",{parentName:"ul"},"change(view): set container width for view-viewview class as well ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/29dc324319d6dc2450dd0e906c1b4c93fd65ed56"},(0,n.kt)("inlineCode",{parentName:"a"},"29dc324")))),(0,n.kt)("h4",{id:"-internal-changes-9"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style: load header/footer overrides ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e5b5e0fc00c61d81f45c12f119bd2f06a91b1b5c"},(0,n.kt)("inlineCode",{parentName:"a"},"e5b5e0f"))),(0,n.kt)("li",{parentName:"ul"},"style(megaMenu): restore item description color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8a19bbb4866cdeb31d87b782587c499e621055b7"},(0,n.kt)("inlineCode",{parentName:"a"},"8a19bbb"))),(0,n.kt)("li",{parentName:"ul"},"style(megaMenu): restore accordion content bottom padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8e0c5a79f06247d353511b412b0122c6f614f5ec"},(0,n.kt)("inlineCode",{parentName:"a"},"8e0c5a7")))),(0,n.kt)("h4",{id:"\ufe0f-others-23"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Add subsite styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e79c0ed7931d6287dbeb3bab1e9155b8707481a3"},(0,n.kt)("inlineCode",{parentName:"a"},"e79c0ed"))),(0,n.kt)("li",{parentName:"ul"},"WIP settings column grid width when using full size class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/affc7ac99527aa92d5a192d90dc8c9ec46a66404"},(0,n.kt)("inlineCode",{parentName:"a"},"affc7ac"))),(0,n.kt)("li",{parentName:"ul"},"code cleanup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2cdc3e590b6d36865f16890c45ce56d32963e1d0"},(0,n.kt)("inlineCode",{parentName:"a"},"2cdc3e5"))),(0,n.kt)("li",{parentName:"ul"},"fix eslint ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/30c52e4eb443555ca44c1b35df064e73d52c0a8b"},(0,n.kt)("inlineCode",{parentName:"a"},"30c52e4"))),(0,n.kt)("li",{parentName:"ul"},"test(estlint): Fix .project.eslintrc.js ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aaeaa07b27491551daba29bbfdd7cab4a54b6bec"},(0,n.kt)("inlineCode",{parentName:"a"},"aaeaa07"))),(0,n.kt)("li",{parentName:"ul"},"modified left value of full width classes with toolbars ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70d82d47fbc2c00a3a709de0d5c087c8443a1eae"},(0,n.kt)("inlineCode",{parentName:"a"},"70d82d4"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-alpha.3 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8fc86a7d0bf4ad06ab339b3066ff56ea61d48878"},(0,n.kt)("inlineCode",{parentName:"a"},"8fc86a7"))),(0,n.kt)("li",{parentName:"ul"},"feature(content): added NarrowView useful for modifying the containers from content-area ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d937df7c262e8d8cc6e78eebec736e28263fc657"},(0,n.kt)("inlineCode",{parentName:"a"},"d937df7"))),(0,n.kt)("li",{parentName:"ul"},"jslint fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/98461593605344d0b6d8cba81f91d1cafc2653cd"},(0,n.kt)("inlineCode",{parentName:"a"},"9846159"))),(0,n.kt)("li",{parentName:"ul"},"Feature(container): flexible container size #260 from eea/feature-flexible-container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f84c5b67afe9cbe01b2a44a8f92a9a554e1036a"},(0,n.kt)("inlineCode",{parentName:"a"},"8f84c5b"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using circularity-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/76a41c786995fd54afe4d1c345de939f683ffa70"},(0,n.kt)("inlineCode",{parentName:"a"},"76a41c7"))),(0,n.kt)("li",{parentName:"ul"},"fix broken variable call for contentBox.variables introduced in previous commit by mistake ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d249c1160d19bedb174a2fde3fdab48d9ce297d4"},(0,n.kt)("inlineCode",{parentName:"a"},"d249c11"))),(0,n.kt)("li",{parentName:"ul"},"clean up ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/89f3cb33d70a14806a953f0acd1807e94169ee5c"},(0,n.kt)("inlineCode",{parentName:"a"},"89f3cb3"))),(0,n.kt)("li",{parentName:"ul"},"removed console log from code ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fad86ae581dd81d0c29fc03d8528e57cadadd3fb"},(0,n.kt)("inlineCode",{parentName:"a"},"fad86ae")))),(0,n.kt)("h3",{id:"100-alpha2---2022-10-28"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.1...1.0.0-alpha.2"},"1.0.0-alpha.2")," - 2022-10-28"),(0,n.kt)("h4",{id:"-enhancements-24"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(documentation): grammarly proof-read suggestions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f609be3758673b0d479d99baee69e7238a5b7f9"},(0,n.kt)("inlineCode",{parentName:"a"},"9f609be"))),(0,n.kt)("li",{parentName:"ul"},"refactor(volto-slate): Upgrade to @plone/volto-slate - refs #153447 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/853d9d189dd17859e3999fbf53507df7083eefb4"},(0,n.kt)("inlineCode",{parentName:"a"},"853d9d1")))),(0,n.kt)("h4",{id:"-internal-changes-10"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(docs): Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e33113a0541d082d93f61c7494bcce2ac5f79a8c"},(0,n.kt)("inlineCode",{parentName:"a"},"e33113a")))),(0,n.kt)("h4",{id:"\ufe0f-others-24"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"test(cypress): Upgrade to Cypress 10 / Razzle 4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c1c1f4b280945a9f0b77eb0b59de003c1360bac9"},(0,n.kt)("inlineCode",{parentName:"a"},"c1c1f4b"))),(0,n.kt)("li",{parentName:"ul"},"more explanations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a8b22728659125ba6ea6fb41f29571a8f1b9953b"},(0,n.kt)("inlineCode",{parentName:"a"},"a8b2272"))),(0,n.kt)("li",{parentName:"ul"},"add announcement bar, showing that EEA DS is WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e14aeac02cf922493aff4f83c8d80af95cc63eb9"},(0,n.kt)("inlineCode",{parentName:"a"},"e14aeac"))),(0,n.kt)("li",{parentName:"ul"},"Update dependencies ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee30a2bad3769163d3ab4d996c0a7be8fcb4bc6e"},(0,n.kt)("inlineCode",{parentName:"a"},"ee30a2b")))),(0,n.kt)("h3",{id:"100-alpha1---2022-10-20"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.6...1.0.0-alpha.1"},"1.0.0-alpha.1")," - 2022-10-20"),(0,n.kt)("h4",{id:"-enhancements-25"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update svg and tablet contact link sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6aba061a5d37e84da706e94a2ce1140ffca81d43"},(0,n.kt)("inlineCode",{parentName:"a"},"6aba061"))),(0,n.kt)("li",{parentName:"ul"},"change(blockquote): renamed to Callout reflecting the correct naming from Storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/61a518c84f08b03d29b99aafce3d9108ae56b3a7"},(0,n.kt)("inlineCode",{parentName:"a"},"61a518c"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): Shadow removed from logo & tablet updates #252 from eea/fix-footer ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6df783d6571cb1b477202bf1d503763d98db66bf"},(0,n.kt)("inlineCode",{parentName:"a"},"6df783d"))),(0,n.kt)("li",{parentName:"ul"},"change(colors): updated theme classes for text to use css variable colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb089fd9a40b67430e0d4efaa2cb51902a46de4f"},(0,n.kt)("inlineCode",{parentName:"a"},"cb089fd")))),(0,n.kt)("h4",{id:"-internal-changes-11"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(footer): reduce social icons margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6a9cf7a6da4a46d9b85a63fbdfc8d421ae4c0d8"},(0,n.kt)("inlineCode",{parentName:"a"},"f6a9cf7")))),(0,n.kt)("h4",{id:"-documentation-changes-9"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(alpha): Update included components in 1.0 alpha version - refs #154387 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fcc5af9bb9163d158ccd6ce452d7f80ac26f7ac0"},(0,n.kt)("inlineCode",{parentName:"a"},"fcc5af9"))),(0,n.kt)("li",{parentName:"ul"},"docs(callout): Rename Blockqoute to Callout in docusaurus - refs #154387 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8d733ac7b00273581575ceddd1a4480ba67fa498"},(0,n.kt)("inlineCode",{parentName:"a"},"8d733ac")))),(0,n.kt)("h4",{id:"\ufe0f-others-25"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-alpha.1 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70e4d97c6a2b13f3b98efe1e2ba93174be2df476"},(0,n.kt)("inlineCode",{parentName:"a"},"70e4d97")))),(0,n.kt)("h3",{id:"096---2022-12-16"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.5...0.9.6"},"0.9.6")," - 2022-12-16"),(0,n.kt)("h4",{id:"\ufe0f-others-26"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Release 0.9.6 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ae19b837678ef5a6a26ebe7c69577e446b13ed50"},(0,n.kt)("inlineCode",{parentName:"a"},"ae19b83"))),(0,n.kt)("li",{parentName:"ul"},"feature(copyright): image information #250 from eea/feature-copyright ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7b323ed27e15f9b4265618099089526c97aa89a1"},(0,n.kt)("inlineCode",{parentName:"a"},"7b323ed"))),(0,n.kt)("li",{parentName:"ul"},"Release-it ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f5671de5a36a721f86a2f8ae4077fd2e0ffafb5"},(0,n.kt)("inlineCode",{parentName:"a"},"1f5671d")))),(0,n.kt)("h3",{id:"095---2022-10-20"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.4...0.9.5"},"0.9.5")," - 2022-10-20"),(0,n.kt)("h4",{id:"-bug-fixes-18"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(statistic): margin and slate colors when using the inverted options ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f263dea1940594ad00b3548c8640ca378fee5563"},(0,n.kt)("inlineCode",{parentName:"a"},"f263dea")))),(0,n.kt)("h3",{id:"094---2022-10-19"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.3...0.9.4"},"0.9.4")," - 2022-10-19"),(0,n.kt)("h4",{id:"-bug-fixes-19"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(edit-interface): block chooser and power user menu item colors when inside content-box ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7aee4f1619a0d798b5fd8d90844a780c25aca019"},(0,n.kt)("inlineCode",{parentName:"a"},"7aee4f1"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): hero text going over the logo and menu on mobile resolutions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1434508f5995d4316dfb2fd18fdc7926a4ece6ee"},(0,n.kt)("inlineCode",{parentName:"a"},"1434508"))),(0,n.kt)("li",{parentName:"ul"},"fix(content-box): z-index of box-inner and added underline to slate links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c8b7c7e41df39e1bf6377401a7aad4220287d454"},(0,n.kt)("inlineCode",{parentName:"a"},"c8b7c7e"))),(0,n.kt)("li",{parentName:"ul"},"fix(content-box): adding of underline to links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c2f5f0f45963e48342edb0046d84b945ffe4b6a8"},(0,n.kt)("inlineCode",{parentName:"a"},"c2f5f0f")))),(0,n.kt)("h4",{id:"-enhancements-26"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(banner,colors): content box theme aware colors banner changes#254 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bcb9a8cde0cb0f927a68c0872e590e5ab853f824"},(0,n.kt)("inlineCode",{parentName:"a"},"bcb9a8c"))),(0,n.kt)("li",{parentName:"ul"},"change(Banner): Add subtitle subcomponent ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bb67f4c83a2ff0e17958116fc4a52a426ba64a70"},(0,n.kt)("inlineCode",{parentName:"a"},"bb67f4c"))),(0,n.kt)("li",{parentName:"ul"},"change(item): moved svg filter definitions to item.overrides ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/de703661065648968903bb6b46efc13d19c51d2b"},(0,n.kt)("inlineCode",{parentName:"a"},"de70366"))),(0,n.kt)("li",{parentName:"ul"},"change(accordion): accordion titles with themes colors can now be modified by css variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2ac13ea56a74b2f7a22abc274bc94c770fbe3a2"},(0,n.kt)("inlineCode",{parentName:"a"},"e2ac13e"))),(0,n.kt)("li",{parentName:"ul"},"change(colors): in lists and callouts to allow color changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/940d1b8ed815b1a38f78d7602f0b221b48fe21f9"},(0,n.kt)("inlineCode",{parentName:"a"},"940d1b8"))),(0,n.kt)("li",{parentName:"ul"},"change(colors): added backgroundColorSupplementary color variable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f5262af2b90d2ffd9dd5560232f3bf47bcc85e3"},(0,n.kt)("inlineCode",{parentName:"a"},"1f5262a"))),(0,n.kt)("li",{parentName:"ul"},"change(list,bullet): color is no longer primary instead it's text color css variant ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8c046704871c7202406ff71b280a8a34e195e54d"},(0,n.kt)("inlineCode",{parentName:"a"},"8c04670"))),(0,n.kt)("li",{parentName:"ul"},"change(statistics): use theme colors with css variable for easy color customization ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fb72a012e81eba73fbace58317a52b5cdda31ee5"},(0,n.kt)("inlineCode",{parentName:"a"},"fb72a01"))),(0,n.kt)("li",{parentName:"ul"},"change(Banner): Show label in metadata field ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1acda3c53739b610b501a53baf10226769929d2d"},(0,n.kt)("inlineCode",{parentName:"a"},"1acda3c"))),(0,n.kt)("li",{parentName:"ul"},"change(tags, items): use text color with css variable for content color for easy customization ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6660e2e49c6e732a13283ad7c922c5a5091bffc1"},(0,n.kt)("inlineCode",{parentName:"a"},"6660e2e"))),(0,n.kt)("li",{parentName:"ul"},"change(styling): modified naming of theme css variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a332961e1c4d55cdee3a8bcdf652f53cf03e251b"},(0,n.kt)("inlineCode",{parentName:"a"},"a332961"))),(0,n.kt)("li",{parentName:"ul"},"change(colors): added backgroundColor color variable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b7e68311f77a724c49a3cf858a76239ca5f6876c"},(0,n.kt)("inlineCode",{parentName:"a"},"b7e6831"))),(0,n.kt)("li",{parentName:"ul"},"change(quote): use secondary css var for easier color replacement ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7a3231228c2eb9b420cc7b59a4a07fba96643e5e"},(0,n.kt)("inlineCode",{parentName:"a"},"7a32312"))),(0,n.kt)("li",{parentName:"ul"},"change(statistics): tweaked margin of statistics so that they don't overflow over context boxes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4a8e33dfaa716f38ac9ce5448d400c74ef9ba62"},(0,n.kt)("inlineCode",{parentName:"a"},"b4a8e33"))),(0,n.kt)("li",{parentName:"ul"},"change(accordion): allow customization of accordion title background color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6590baf1716867eabe897e765ae1924122ba2333"},(0,n.kt)("inlineCode",{parentName:"a"},"6590baf"))),(0,n.kt)("li",{parentName:"ul"},"change(colors): introduced css variables for primary colors #247 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac8082590f978ab953ece70082e06b124c292ddf"},(0,n.kt)("inlineCode",{parentName:"a"},"ac80825"))),(0,n.kt)("li",{parentName:"ul"},"change(content-box): override primary text color to white as well ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/28b43c72b9fcfeb153ac7e734bbbca67f2e42111"},(0,n.kt)("inlineCode",{parentName:"a"},"28b43c7")))),(0,n.kt)("h4",{id:"\ufe0f-others-27"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Include changes in the storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4d9fa4c631a6a1ec0d7d525721fd32c5ff01d9c"},(0,n.kt)("inlineCode",{parentName:"a"},"a4d9fa4")))),(0,n.kt)("h3",{id:"093---2022-10-04"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.2...0.9.3"},"0.9.3")," - 2022-10-04"),(0,n.kt)("h4",{id:"-bug-fixes-20"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(card, contentBox): meta font size, removed header override of cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7f94b9ca8c65a887ced5c4812563a2226fca869"},(0,n.kt)("inlineCode",{parentName:"a"},"a7f94b9"))),(0,n.kt)("li",{parentName:"ul"},"fix(List): Ordered list item story - refs #155248 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c70a2bceecf4ce9497cbe0e9cdb30944fff2287d"},(0,n.kt)("inlineCode",{parentName:"a"},"c70a2bc"))),(0,n.kt)("li",{parentName:"ul"},"fix(OrderedList): li third level margin left - refs #155248 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fba5cb9d3897d2827951cd218405b1ae7c8e818a"},(0,n.kt)("inlineCode",{parentName:"a"},"fba5cb9"))),(0,n.kt)("li",{parentName:"ul"},"fix(cards): inherit color of card description ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ceda79971663785c81292b85ae07b7f9f922213c"},(0,n.kt)("inlineCode",{parentName:"a"},"ceda799"))),(0,n.kt)("li",{parentName:"ul"},"fix(accordion): Fix content default padding - refs #153783 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/566adf7a53c48fb24044eeba1d159d5ce715ecc6"},(0,n.kt)("inlineCode",{parentName:"a"},"566adf7")))),(0,n.kt)("h4",{id:"-enhancements-27"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(site): committed fixed from custom into eea design package ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9b9a1fd3648796a502ca4eb3abd08b61b33bdff2"},(0,n.kt)("inlineCode",{parentName:"a"},"9b9a1fd"))),(0,n.kt)("li",{parentName:"ul"},"change(jenkins): added yarn policy for storybook building ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3d1b844efeea40b99c00c9aa97089e0a0be58a57"},(0,n.kt)("inlineCode",{parentName:"a"},"3d1b844"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): typography updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/60a93a4aece4e478ae13c2dfe697fd3703aa178a"},(0,n.kt)("inlineCode",{parentName:"a"},"60a93a4"))),(0,n.kt)("li",{parentName:"ul"},"change(item): added item image coloring when applying theming classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0403fe4974f37a46ec7418d9b8492ad74d7c5688"},(0,n.kt)("inlineCode",{parentName:"a"},"0403fe4"))),(0,n.kt)("li",{parentName:"ul"},"change(accordion, site): change text color to tertiary instead of black ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/464105842508a62216aa0a3f28e9565af1b93232"},(0,n.kt)("inlineCode",{parentName:"a"},"4641058"))),(0,n.kt)("li",{parentName:"ul"},"change(accordion): allow customization of accordion title with css variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/15e7d27f02c640df582f51a51ef36e645723f842"},(0,n.kt)("inlineCode",{parentName:"a"},"15e7d27"))),(0,n.kt)("li",{parentName:"ul"},"change(content-box): added css variables that will set text color and background for children ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/86cac531cc94386b6022e1be80dba826b39f2443"},(0,n.kt)("inlineCode",{parentName:"a"},"86cac53"))),(0,n.kt)("li",{parentName:"ul"},"change(tabs): allow customization of tab active and hover color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4370f4270dcaa29b1193fc2347567b748f6d5d82"},(0,n.kt)("inlineCode",{parentName:"a"},"4370f42"))),(0,n.kt)("li",{parentName:"ul"},"change(tabs): color for tabs-block section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6778c923618e725194120d7f35e2ee7d66e1be8e"},(0,n.kt)("inlineCode",{parentName:"a"},"6778c92"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): by default date is set to appear on the right of the meta section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b7b80e86b69a0179f1e48748bef909bbd2a98d58"},(0,n.kt)("inlineCode",{parentName:"a"},"b7b80e8"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): carousel dots are now relative positioned ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/daa40a4ab6532497830d5f7536bf0a7f20d9cd00"},(0,n.kt)("inlineCode",{parentName:"a"},"daa40a4")))),(0,n.kt)("h4",{id:"-documentation-changes-10"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(typography): update, local fonts ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/39a32d9aa4dec21c0e7df32aa5798432fc6bd403"},(0,n.kt)("inlineCode",{parentName:"a"},"39a32d9"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): token fix to match used values for heightheight and letterspacing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91693ecd2dd367cd83fa2752756557d463e214a7"},(0,n.kt)("inlineCode",{parentName:"a"},"91693ec"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): token fix to match used values for lineheight ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff41b56b4365a3e70ac20e548c7c74671e7c584c"},(0,n.kt)("inlineCode",{parentName:"a"},"ff41b56"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): remove semibold ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6eb3e0856f01aacf6d294f68e7d845f74f752685"},(0,n.kt)("inlineCode",{parentName:"a"},"6eb3e08")))),(0,n.kt)("h4",{id:"\ufe0f-others-28"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"test(cypress): Fix md5 dependency ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/17f618e7c5eef01759494e787a8c9cb96449fbca"},(0,n.kt)("inlineCode",{parentName:"a"},"17f618e")))),(0,n.kt)("h3",{id:"092---2022-09-27"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.1...0.9.2"},"0.9.2")," - 2022-09-27"),(0,n.kt)("h3",{id:"091---2022-09-27"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.0...0.9.1"},"0.9.1")," - 2022-09-27"),(0,n.kt)("h4",{id:"-enhancements-28"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(cards): added ability to change the text alignment using css variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ed532ac20c82a6933c4f12613c80ce92eec78405"},(0,n.kt)("inlineCode",{parentName:"a"},"ed532ac"))),(0,n.kt)("li",{parentName:"ul"},"change(styles): use flex-end values only instead of end to avoid babel warning ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24244b22ea69b9f4dc3006597c7836f814b74cf2"},(0,n.kt)("inlineCode",{parentName:"a"},"24244b2"))),(0,n.kt)("li",{parentName:"ul"},"change(rounded): image size, border radius to ensure more image are turned into rounded options ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51e23c1bb38f277b2bfbad5d814925eb61d17668"},(0,n.kt)("inlineCode",{parentName:"a"},"51e23c1")))),(0,n.kt)("h4",{id:"\ufe0f-others-29"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Merge pull request #243 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/576564ce395ee6ac9e74bcb19d5c4f0b4cd3c33b"},(0,n.kt)("inlineCode",{parentName:"a"},"576564c"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using eea-website-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a5be6eec78dae230626e61ea2c77e7f3c62510d"},(0,n.kt)("inlineCode",{parentName:"a"},"4a5be6e"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b251255a7ed14d8290717726d86eaf54b87aa2d4"},(0,n.kt)("inlineCode",{parentName:"a"},"b251255")))),(0,n.kt)("h3",{id:"090---2022-09-19"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.8.1...0.9.0"},"0.9.0")," - 2022-09-19"),(0,n.kt)("h4",{id:"-new-features-16"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(countUp): intall countup package and import it in statistics ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/10ba7cf2975ffc33cc8e6965998b7ab7ec58b1ab"},(0,n.kt)("inlineCode",{parentName:"a"},"10ba7cf"))),(0,n.kt)("li",{parentName:"ul"},"feat(docusaurus): custom editUrl function for the components usage pages - taskman refs #154076 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93c4240f269d72e4e353665dacd57d079a31afac"},(0,n.kt)("inlineCode",{parentName:"a"},"93c4240"))),(0,n.kt)("li",{parentName:"ul"},"feat(site): Styling scroll-to-text fragments #238 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1883fcf4e80055f68bdff4d66fc6db3ccad4614a"},(0,n.kt)("inlineCode",{parentName:"a"},"1883fcf"))),(0,n.kt)("li",{parentName:"ul"},"feat(docusaurus): added Edit this page link in footer of each page - taskman refs #154076 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2cf8746e42631ea2e214223e208bdbfb76ffafa7"},(0,n.kt)("inlineCode",{parentName:"a"},"2cf8746")))),(0,n.kt)("h4",{id:"-bug-fixes-21"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(header): Prevent dropdown closing when clicking inside content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/838f34006260ce7c331fd933a595e95d78e1a927"},(0,n.kt)("inlineCode",{parentName:"a"},"838f340"))),(0,n.kt)("li",{parentName:"ul"},"fix(cards): position of bullets and arrow clicking on events page 148723 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/22ef8282247401b0f8cf5a44f2e65f0b469cc6fa"},(0,n.kt)("inlineCode",{parentName:"a"},"22ef828"))),(0,n.kt)("li",{parentName:"ul"},"fix(cards): rounded images show up now even when card parent is cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48f5e81a5b76168435537d92aec35ab3a184b4d2"},(0,n.kt)("inlineCode",{parentName:"a"},"48f5e81"))),(0,n.kt)("li",{parentName:"ul"},"fix(statistic): add a min-width to content so unwrapped statistics don't break ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7c5d511c35d50f3afabf77f14b27e5760c49051f"},(0,n.kt)("inlineCode",{parentName:"a"},"7c5d511"))),(0,n.kt)("li",{parentName:"ul"},"fix(sideNavigation): add role list to list item ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/58f322b732c995349ba588db3bac6a1ffea40f89"},(0,n.kt)("inlineCode",{parentName:"a"},"58f322b"))),(0,n.kt)("li",{parentName:"ul"},"fix(sideNavigation): remove unused useState import ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f9ea6779d2c584203b77f11b3127f39aba7799f3"},(0,n.kt)("inlineCode",{parentName:"a"},"f9ea677")))),(0,n.kt)("h4",{id:"-enhancements-29"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(sideNavigation): implement the design to the initial navigation & make component dynamic ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b673d63a45e56e1d05354d8675c01b15ec9543f5"},(0,n.kt)("inlineCode",{parentName:"a"},"b673d63"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update top bar ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/626bdd5805bde1e97b91d83dae7adc1d39c62234"},(0,n.kt)("inlineCode",{parentName:"a"},"626bdd5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): create custom export and add links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f9ed560a68d261e9e6a9b6fa3c44944a252e596"},(0,n.kt)("inlineCode",{parentName:"a"},"9f9ed56"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): update inverted style and add background variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7578dc6a408094fbc215218b3ffe21a878841568"},(0,n.kt)("inlineCode",{parentName:"a"},"7578dc6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): remove horizontal display on mobiles & update columns control ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/58f00e12851c4a1af1bb200d0577d76f6222df3c"},(0,n.kt)("inlineCode",{parentName:"a"},"58f00e1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): minor fixes spotted in testing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0f0f3aba7ea282c4ecc4f602f9ff3144c04e2146"},(0,n.kt)("inlineCode",{parentName:"a"},"0f0f3ab"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update main section heights ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d669f012f1b831952dbb73b7d40134b1243ba7e4"},(0,n.kt)("inlineCode",{parentName:"a"},"d669f01"))),(0,n.kt)("li",{parentName:"ul"},"refactor(sideNavigation): remove green border and divider ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/939cd9bf2a9a7338fd770550a8396586c5f610b3"},(0,n.kt)("inlineCode",{parentName:"a"},"939cd9b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(link): update colors for link states ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e9f59950838f9119131797550945963c2965dcf"},(0,n.kt)("inlineCode",{parentName:"a"},"3e9f599"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): styles img tag outside of .image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee892745a4748da12007ba5cedab16c1810c1dd9"},(0,n.kt)("inlineCode",{parentName:"a"},"ee89274"))),(0,n.kt)("li",{parentName:"ul"},"refactor(sideNavigation): update controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a3e8430d88ee52fd92f4f8c2d6f5e01ea82dd9eb"},(0,n.kt)("inlineCode",{parentName:"a"},"a3e8430"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): fix firefox issue for fit content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87aa113667ea53d83d479cd52347e7298e60e9b0"},(0,n.kt)("inlineCode",{parentName:"a"},"87aa113"))),(0,n.kt)("li",{parentName:"ul"},"change(statistics): rearrange controls order ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b19ae70568f18873732ff62ee82251c9256a214d"},(0,n.kt)("inlineCode",{parentName:"a"},"b19ae70"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): add max width to wrap text for all content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/758f8ce09f78a6343ac0226e5d332c0216dea95b"},(0,n.kt)("inlineCode",{parentName:"a"},"758f8ce"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): add max width to label so it wraps the text ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/824a12702f133485a1c254e267d9e75c1b22048c"},(0,n.kt)("inlineCode",{parentName:"a"},"824a127"))),(0,n.kt)("li",{parentName:"ul"},"change(Side menu & in page navigation): styling according to figma design #221 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b2df858a2dc88f61d686ad0991e711dc763f4cc6"},(0,n.kt)("inlineCode",{parentName:"a"},"b2df858"))),(0,n.kt)("li",{parentName:"ul"},"change(header): align header with latest figma changes #232 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/135cd68307c6ebdc5d48b361d1696457c6f99b4c"},(0,n.kt)("inlineCode",{parentName:"a"},"135cd68"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): integration when cards also contain call to action buttons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f0d876616b211c79dde5b18c1fe862ff019073a1"},(0,n.kt)("inlineCode",{parentName:"a"},"f0d8766"))),(0,n.kt)("li",{parentName:"ul"},"refactor(iconography): icon group headings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b9ccd8031049d6b91c5676930ea3e44d9587435d"},(0,n.kt)("inlineCode",{parentName:"a"},"b9ccd80"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add variables for some sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8eae84ef665d7b3331090a8a8ac6b714ecdacbb3"},(0,n.kt)("inlineCode",{parentName:"a"},"8eae84e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Statisctic): Rename slateVariation to extraVariation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a07c5896c8c4b8f3179622f335e3f02e68dadfbd"},(0,n.kt)("inlineCode",{parentName:"a"},"a07c589"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): started example on how to add headings for iconography ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53cf8431446954eee6c5d27be31e15c075ffe16d"},(0,n.kt)("inlineCode",{parentName:"a"},"53cf843"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): remove center alignment of rounded cards body area, only the image is now centered ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fdfac4876903272b437c7dcf0e65f7cfe66bbf66"},(0,n.kt)("inlineCode",{parentName:"a"},"fdfac48"))),(0,n.kt)("li",{parentName:"ul"},"change(color): updated link colors #234 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/feabfe7a3b6d6b89bfd4065a32bae8148ddc5a4c"},(0,n.kt)("inlineCode",{parentName:"a"},"feabfe7"))),(0,n.kt)("li",{parentName:"ul"},"change(mockup): Access to figma style tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0bb25bec495f9046a15924ee92f4f17152148ba8"},(0,n.kt)("inlineCode",{parentName:"a"},"0bb25be"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): update margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5190f56e134d672ccb9d5d1a8efacac4d41530d3"},(0,n.kt)("inlineCode",{parentName:"a"},"5190f56"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button): adjust vertical margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/db6d44102171738907b4b03fcc5f526463f59389"},(0,n.kt)("inlineCode",{parentName:"a"},"db6d441")))),(0,n.kt)("h4",{id:"-internal-changes-12"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(statistic): update decimal point ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7976aa4cac4c56e70e196eb62791a2b3f2aba749"},(0,n.kt)("inlineCode",{parentName:"a"},"7976aa4"))),(0,n.kt)("li",{parentName:"ul"},"style(link): update visited link color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d3b18b305bb2bd2f20bb2509584a6bc86b0e252c"},(0,n.kt)("inlineCode",{parentName:"a"},"d3b18b3")))),(0,n.kt)("h4",{id:"-documentation-changes-11"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(iconography): added icons, guidelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0073f1d42600be1d14bff406083b112014a2061f"},(0,n.kt)("inlineCode",{parentName:"a"},"0073f1d")))),(0,n.kt)("h4",{id:"\ufe0f-others-30"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Delete 2-test-new-page.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/749eff9b81e1c08068650cff1aba6cd574ea403b"},(0,n.kt)("inlineCode",{parentName:"a"},"749eff9"))),(0,n.kt)("li",{parentName:"ul"},"Create 2-test-new-page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab623ffc27f65e3e5fdcfe627009df1799582325"},(0,n.kt)("inlineCode",{parentName:"a"},"ab623ff"))),(0,n.kt)("li",{parentName:"ul"},"Release 0.9.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/eb7e2e57b5f2778e709b67deee3624f6e9f9e716"},(0,n.kt)("inlineCode",{parentName:"a"},"eb7e2e5"))),(0,n.kt)("li",{parentName:"ul"},"stylelint fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/114e3f97c6209f100aae2d6e24c595b7ba0a6500"},(0,n.kt)("inlineCode",{parentName:"a"},"114e3f9"))),(0,n.kt)("li",{parentName:"ul"},"Move text fragments style to site.overrides ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8368cbe2cecfc296a2fc81dd0bb49cb9e9a9314c"},(0,n.kt)("inlineCode",{parentName:"a"},"8368cbe"))),(0,n.kt)("li",{parentName:"ul"},"Styling scroll-to-text fragments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1bb39148717cdac922c403a0cdbfa3681a65dd9f"},(0,n.kt)("inlineCode",{parentName:"a"},"1bb3914"))),(0,n.kt)("li",{parentName:"ul"},"Update Header.stories.js ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9036c74d54640df2ccfcfdea9ddcdb29787d8ae2"},(0,n.kt)("inlineCode",{parentName:"a"},"9036c74"))),(0,n.kt)("li",{parentName:"ul"},"feature(Docusaurus): Reflect usage of remixicon in iconography page #239 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0802b32c13d978e380960befb78647dadb2d7e53"},(0,n.kt)("inlineCode",{parentName:"a"},"0802b32"))),(0,n.kt)("li",{parentName:"ul"},"Update 1-design.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/146115a13ac7a1943b6878df42f0b8e7f1fcd3f1"},(0,n.kt)("inlineCode",{parentName:"a"},"146115a"))),(0,n.kt)("li",{parentName:"ul"},"Test workflow for contribution - taskman refs #154076 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dcb924f79306ba26bb5168ac0a12d82c0c354caa"},(0,n.kt)("inlineCode",{parentName:"a"},"dcb924f"))),(0,n.kt)("li",{parentName:"ul"},"perf(figma): access to style tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/27d8dbe3c282e187f93bc4d93a0c9aa5c8162b00"},(0,n.kt)("inlineCode",{parentName:"a"},"27d8dbe"))),(0,n.kt)("li",{parentName:"ul"},"Rename 2-test-new-page to 2-test-new-page.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4e3be106cc4739e60ee5038901dbb626cf17f2e7"},(0,n.kt)("inlineCode",{parentName:"a"},"4e3be10")))),(0,n.kt)("h3",{id:"081---2022-08-26"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.8.0...0.8.1"},"0.8.1")," - 2022-08-26"),(0,n.kt)("h4",{id:"-bug-fixes-22"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(message): fix size controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee51e1dca4f84aeb9e39be525016f751acc147de"},(0,n.kt)("inlineCode",{parentName:"a"},"ee51e1d"))),(0,n.kt)("li",{parentName:"ul"},"fix(docusaurus): intro page hero title color now that headers are using tertiary color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/618e3cb7ac5533b1c087aea10452947c8676ab4e"},(0,n.kt)("inlineCode",{parentName:"a"},"618e3cb")))),(0,n.kt)("h4",{id:"-enhancements-30"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(message): restore semantic variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1c16621b4862efc64d82d475798ed40938c65f5e"},(0,n.kt)("inlineCode",{parentName:"a"},"1c16621"))),(0,n.kt)("li",{parentName:"ul"},"refactor(messages): mix semantc and token colors for messages ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/12efa75c30956df9958058242be4b8732819a5a1"},(0,n.kt)("inlineCode",{parentName:"a"},"12efa75"))),(0,n.kt)("li",{parentName:"ul"},"refactor(emotiveColors): temp update for tests ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/61a720c1ddbbad2c5bab17c8b2f890618f2a747c"},(0,n.kt)("inlineCode",{parentName:"a"},"61a720c"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): removed line between sections and moved actions back to the bottom of footer ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d9f33e4cf5a517acfbae497d6cb2fdccb048c281"},(0,n.kt)("inlineCode",{parentName:"a"},"d9f33e4"))),(0,n.kt)("li",{parentName:"ul"},"change(storybook): headings storybook now uses tertiary color by default reflecting site options ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1061e7749de2d4fe1233ccdc7f6f835ad491504a"},(0,n.kt)("inlineCode",{parentName:"a"},"1061e77"))),(0,n.kt)("li",{parentName:"ul"},"refactor(message): add container to story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1259ecead7162d2a46f5e802ba07e7e0dcb72e42"},(0,n.kt)("inlineCode",{parentName:"a"},"1259ece"))),(0,n.kt)("li",{parentName:"ul"},"refactor(message): remove override with custom background color on error ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9b40cd7ef2cca901e65a812585943c2e2d867b5f"},(0,n.kt)("inlineCode",{parentName:"a"},"9b40cd7"))),(0,n.kt)("li",{parentName:"ul"},"refactor(message): add header controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/960c2f7b524b1f049bb2f666e3e8278feca506da"},(0,n.kt)("inlineCode",{parentName:"a"},"960c2f7"))),(0,n.kt)("li",{parentName:"ul"},"change(message): use semantic colors for messages #204 from eea/refactor-message ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/22d2c43cd55a82621f2da3103652677b4b45db1a"},(0,n.kt)("inlineCode",{parentName:"a"},"22d2c43")))),(0,n.kt)("h4",{id:"-documentation-changes-12"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(figma): added figma files to repo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6bd4144ffc9c563ce224a07fe942fc4f2615c53f"},(0,n.kt)("inlineCode",{parentName:"a"},"6bd4144")))),(0,n.kt)("h3",{id:"080---2022-08-20"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.7.6...0.8.0"},"0.8.0")," - 2022-08-20"),(0,n.kt)("h4",{id:"-new-features-17"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(IconCard): card with icon instead of image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a85a1791e3a1245474dcafc4fd833350156dccb4"},(0,n.kt)("inlineCode",{parentName:"a"},"a85a179")))),(0,n.kt)("h4",{id:"-bug-fixes-23"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(docusaurus): typography guideline now has real font values for headings, body, caption and small text ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9508db918687b524c4d464539b9a4667399abb43"},(0,n.kt)("inlineCode",{parentName:"a"},"9508db9"))),(0,n.kt)("li",{parentName:"ul"},"fix(card): fix content gaps, adjust new meta section and update text color for default ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f1a78e14fc9a4b809572bd5d4d45bd10711c6eaa"},(0,n.kt)("inlineCode",{parentName:"a"},"f1a78e1"))),(0,n.kt)("li",{parentName:"ul"},"fix(item): remove duplicate argType ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dde0be5f7fe362143e248f7e53aa1d2e5df1fda0"},(0,n.kt)("inlineCode",{parentName:"a"},"dde0be5"))),(0,n.kt)("li",{parentName:"ul"},"fix(iconCard): add aria-label at links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/44f64c7127c0ccabbbf81eb5a838ee0f63284cea"},(0,n.kt)("inlineCode",{parentName:"a"},"44f64c7"))),(0,n.kt)("li",{parentName:"ul"},"fix(card): merge fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/df440ecd89eeb228f6f28df9109b84460cdfd523"},(0,n.kt)("inlineCode",{parentName:"a"},"df440ec"))),(0,n.kt)("li",{parentName:"ul"},"fix(heroblock): color even on edit page by inheriting color instead of using the tertiary color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac53fb74dedafcce231d1ca72843eff8a589c530"},(0,n.kt)("inlineCode",{parentName:"a"},"ac53fb7"))),(0,n.kt)("li",{parentName:"ul"},"fix(tab): add tabindex for accessibility error ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab512be71b86a3b696a228840e34d297928485ab"},(0,n.kt)("inlineCode",{parentName:"a"},"ab512be"))),(0,n.kt)("li",{parentName:"ul"},"fix(carousel): restore missing variable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1728312162d102aa2812eb3c7a55dac83bca8a04"},(0,n.kt)("inlineCode",{parentName:"a"},"1728312"))),(0,n.kt)("li",{parentName:"ul"},"fix(carousel): restore flex grow for cards and opacity for arrows ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce71305ab3fed5ff5c09b577e970050d3b29a2cb"},(0,n.kt)("inlineCode",{parentName:"a"},"ce71305")))),(0,n.kt)("h4",{id:"-enhancements-31"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(carousel) add links in carousel cards & update structure and variables of less files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f99cb219f3a95f5aab49a180434a4f5e0db14462"},(0,n.kt)("inlineCode",{parentName:"a"},"f99cb21"))),(0,n.kt)("li",{parentName:"ul"},"refactor(iconCard): add control for variations and link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5e1b6a1c7ab9fdce138c5643bc01763a02bed287"},(0,n.kt)("inlineCode",{parentName:"a"},"5e1b6a1"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus, fonts): documented font letter spacing modification ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/522712aeddb55f4ff96fdf4e8bea26f4575504ec"},(0,n.kt)("inlineCode",{parentName:"a"},"522712a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): css updates for card variations and styling updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c8b4a43dd25c50e77e8c71fa8fbc45cd70bde94e"},(0,n.kt)("inlineCode",{parentName:"a"},"c8b4a43"))),(0,n.kt)("li",{parentName:"ul"},"refactor(publicationCard): add links and fix accessibily issue ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/80adf6ce0f01e577c34ddba8b345a1fc562f6711"},(0,n.kt)("inlineCode",{parentName:"a"},"80adf6c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add new section in meta and remove links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bfb82ae9635d26ef478db3d63b39f67b25d11fd5"},(0,n.kt)("inlineCode",{parentName:"a"},"bfb82ae"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): add stackable functionality ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8d714fad0465cc71650dcb41236d5667ccc3e789"},(0,n.kt)("inlineCode",{parentName:"a"},"8d714fa"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): update meta section and controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5e28e12bacec6a226659553b8244aeb0165378c9"},(0,n.kt)("inlineCode",{parentName:"a"},"5e28e12"))),(0,n.kt)("li",{parentName:"ul"},"refactor(roundedCard): remove unnecessary code and controls and add all variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6305c54df14faada4058c602af2e33dbc4fad39d"},(0,n.kt)("inlineCode",{parentName:"a"},"6305c54"))),(0,n.kt)("li",{parentName:"ul"},"refactor(roundedCard): add optional link for image and header ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a6d3bf27031d189c403c4a099b09a9066a1620a2"},(0,n.kt)("inlineCode",{parentName:"a"},"a6d3bf2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add tertiary hover and update css selectors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca069484da914520c92f7d67ac92c476ff2ee4a2"},(0,n.kt)("inlineCode",{parentName:"a"},"ca06948"))),(0,n.kt)("li",{parentName:"ul"},"change(fonts): updated font sizes with values given in figma ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4b0ae48ab140d8bbbf6ccbf46eda8d957195ca50"},(0,n.kt)("inlineCode",{parentName:"a"},"4b0ae48"))),(0,n.kt)("li",{parentName:"ul"},"change(style): color, space and adjust line-height as described in docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3366da262ba2dc1c34f57964accf4d6ef6ed37e1"},(0,n.kt)("inlineCode",{parentName:"a"},"3366da2"))),(0,n.kt)("li",{parentName:"ul"},"change(headings): only h2-h6 get tertiary color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d81308c4c0d52d5610a922146f5b426d9eaf323"},(0,n.kt)("inlineCode",{parentName:"a"},"7d81308"))),(0,n.kt)("li",{parentName:"ul"},"change(site): removed Archivo import as we should only use Roboto font ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a6af0564667075d2012c114acb2ad8e1f39b926f"},(0,n.kt)("inlineCode",{parentName:"a"},"a6af056"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): use tertiary color for headings and body color mirroring the design system styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/145fe7348a19b51784a2879225d1b71a642eed45"},(0,n.kt)("inlineCode",{parentName:"a"},"145fe73"))),(0,n.kt)("li",{parentName:"ul"},"change(fonts): modified headings font size as well as line height ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f0771ea1942b6ef436a03c256491a690a52d7413"},(0,n.kt)("inlineCode",{parentName:"a"},"f0771ea"))),(0,n.kt)("li",{parentName:"ul"},"change(fonts): updated font sizes with values given in figma ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f16eef7128ed4f2e7fe97b1ec77f651dc062b771"},(0,n.kt)("inlineCode",{parentName:"a"},"f16eef7"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): use Roboto font from google fonts also for docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/adca8e911faac2d541eb2b9fecf1d9db5b8f9b4c"},(0,n.kt)("inlineCode",{parentName:"a"},"adca8e9"))),(0,n.kt)("li",{parentName:"ul"},"change(headers): added headerColor variable so that thematic sites can easily choose another heading color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f09d2c5e95e82077cc7dfef43a5c56fc73d435c3"},(0,n.kt)("inlineCode",{parentName:"a"},"f09d2c5"))),(0,n.kt)("li",{parentName:"ul"},"change(fonts): typo fixes for typography section of docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cae4b02b20ff578f5cad7c4238c36baa3cae545a"},(0,n.kt)("inlineCode",{parentName:"a"},"cae4b02"))),(0,n.kt)("li",{parentName:"ul"},"change(fonts): modified footer and header values afer global font size changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f160d354b36dc2bee0707b6d63097d5f08408abe"},(0,n.kt)("inlineCode",{parentName:"a"},"f160d35"))),(0,n.kt)("li",{parentName:"ul"},"refactor(iconCards): run prettier ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fe84e46adbc385098385120d14e7583b890db027"},(0,n.kt)("inlineCode",{parentName:"a"},"fe84e46"))),(0,n.kt)("li",{parentName:"ul"},"change(typography): inherit header colors with @headerColor variable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91d93577772534f67bb74df0c9ed260bbaccdd4c"},(0,n.kt)("inlineCode",{parentName:"a"},"91d9357"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumb): use tertiary color also for breadcrumb ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5cbd44bcabae36bcb99a1e987d701e2ea75434b"},(0,n.kt)("inlineCode",{parentName:"a"},"c5cbd44"))),(0,n.kt)("li",{parentName:"ul"},"change(heading): on homepage on the first hero set font size to h1 and inherit color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5711096e45c57b0c3c871f8dcf870c05405d217d"},(0,n.kt)("inlineCode",{parentName:"a"},"5711096"))),(0,n.kt)("li",{parentName:"ul"},"refactor(carousel): update card titles to display styling fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/edd966b5648be51f2d4056c68489648574506656"},(0,n.kt)("inlineCode",{parentName:"a"},"edd966b"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): use the tertiary color for body and heading colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/11c4ed4683df4527ce79155bc65424789e3864af"},(0,n.kt)("inlineCode",{parentName:"a"},"11c4ed4"))),(0,n.kt)("li",{parentName:"ul"},"change(typography): modified lineheight-0 after headers now use 1.2 instead of 1.25 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/04d78a8b0094d9187548e1e3b16d6fbf2248821c"},(0,n.kt)("inlineCode",{parentName:"a"},"04d78a8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add links to cards and replace description with title in carousel ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0258737d26bbb3015ee6222ec878e0477001f615"},(0,n.kt)("inlineCode",{parentName:"a"},"0258737")))),(0,n.kt)("h4",{id:"\ufe0f-others-31"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feature(heading): and cards refactoring #227 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/334fbda2d5b751858d4cc8cae832ca7f5c1ad6c2"},(0,n.kt)("inlineCode",{parentName:"a"},"334fbda"))),(0,n.kt)("li",{parentName:"ul"},"Update package.json ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3870cf3265f0dab4e181c94a6657b9fa408bf186"},(0,n.kt)("inlineCode",{parentName:"a"},"3870cf3"))),(0,n.kt)("li",{parentName:"ul"},"Header refactor 153536 #226 from eea/header-refactor-153536 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87a6fe73211eb028861e099a67e90d365c5111ea"},(0,n.kt)("inlineCode",{parentName:"a"},"87a6fe7"))),(0,n.kt)("li",{parentName:"ul"},"feature(item): icon is now stackable moving the icon on top #220 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b716acfc850345d666d99840445798cdae201a63"},(0,n.kt)("inlineCode",{parentName:"a"},"b716acf")))),(0,n.kt)("h3",{id:"076---2022-08-15"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.7.5...0.7.6"},"0.7.6")," - 2022-08-15"),(0,n.kt)("h4",{id:"-enhancements-32"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(footer): Footer updates 147837 #225 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fa9ae580c7fd45fb4983672167cb5b0b33cc6279"},(0,n.kt)("inlineCode",{parentName:"a"},"fa9ae58"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): initial redesign of main section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8e85617157cdc31a7470acfcd72b85d8fadd1bce"},(0,n.kt)("inlineCode",{parentName:"a"},"8e85617"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): restructure theme sites logo columns ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dcba45a0bfd832c7d5d1e092db8ea4040eceda57"},(0,n.kt)("inlineCode",{parentName:"a"},"dcba45a"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): set actions before thematic section on mobile ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/db25f966a214c94677192215181453e9d59ca957"},(0,n.kt)("inlineCode",{parentName:"a"},"db25f96"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): fix missing key warning from react dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/77f72d5bdc719805a6314058c741387ee7155d28"},(0,n.kt)("inlineCode",{parentName:"a"},"77f72d5"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): Footer updates 147837 #222 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32fed231f1209caeddb18e0bb75d670f20bafb88"},(0,n.kt)("inlineCode",{parentName:"a"},"32fed23")))),(0,n.kt)("h3",{id:"075---2022-08-11"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.7.3...0.7.5"},"0.7.5")," - 2022-08-11"),(0,n.kt)("h4",{id:"-enhancements-33"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(megamenu): mobile improvements with See all links, active elements and non accordion children #224 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6767b99fea3925b35e9dede0a67ea90242e5e730"},(0,n.kt)("inlineCode",{parentName:"a"},"6767b99"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): render accordion only if children have children ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/be63ce2a8e240eac26eedeff0ca104813afbc6b3"},(0,n.kt)("inlineCode",{parentName:"a"},"be63ce2"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): mobile menu design tweaks as seen in latest figma ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/26d74dc063f0b3f8d541c714a10038d79145047e"},(0,n.kt)("inlineCode",{parentName:"a"},"26d74dc"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): removed icon from at a change menu items and they are no longer bold as requested ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/043e77219979711d2f25845c6811b546e791fbf7"},(0,n.kt)("inlineCode",{parentName:"a"},"043e772"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): reset first level panels after each item pass ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/175351bdc9bab5c2d02b2717c24071ba62d4b924"},(0,n.kt)("inlineCode",{parentName:"a"},"175351b"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): mobile menu improvements #223 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b3cabfe3ddc42c2ea39ae20d01bb6fd0db478ecc"},(0,n.kt)("inlineCode",{parentName:"a"},"b3cabfe"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): fixed key error warnings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/075bf0167554869e9fc2f4938c972112e4afa2f7"},(0,n.kt)("inlineCode",{parentName:"a"},"075bf01"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): handle default active sub accordion ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6192a9938b53522682953cb73d7ccfc6ef9c1aec"},(0,n.kt)("inlineCode",{parentName:"a"},"6192a99"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): enable active border only for items not titles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fb0b8696dd73cbf3083c3006a7cff5a1901a6bac"},(0,n.kt)("inlineCode",{parentName:"a"},"fb0b869")))),(0,n.kt)("h4",{id:"\ufe0f-others-32"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Update package.json ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e21e00dc1e0b54daef2c71311a9da709bc1f7e6d"},(0,n.kt)("inlineCode",{parentName:"a"},"e21e00d")))),(0,n.kt)("h3",{id:"073---2022-08-04"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.7.2...0.7.3"},"0.7.3")," - 2022-08-04"),(0,n.kt)("h4",{id:"-enhancements-34"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(megamenu): added icon on mega menu header section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d0ad4d80fc4941e0cdbd8a2d81415387f86efc1c"},(0,n.kt)("inlineCode",{parentName:"a"},"d0ad4d8")))),(0,n.kt)("h3",{id:"072---2022-08-03"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.7.1...0.7.2"},"0.7.2")," - 2022-08-03"),(0,n.kt)("h4",{id:"-bug-fixes-24"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(contentBox): z-index of content hidden by bg when using content-box-inner ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5a7dac923d648d8fe9c9a9cbb8001969d32aea2"},(0,n.kt)("inlineCode",{parentName:"a"},"c5a7dac")))),(0,n.kt)("h4",{id:"\ufe0f-others-33"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Set focus on search input field in the popup on click ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d12c05106d9b95df1885ffa12cb284a0e50e0dfd"},(0,n.kt)("inlineCode",{parentName:"a"},"d12c051"))),(0,n.kt)("li",{parentName:"ul"},"Make cypress tests work with both slate and draft selectors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4d8e5b1d7719637a46eac8232891fc5ed1f51b6f"},(0,n.kt)("inlineCode",{parentName:"a"},"4d8e5b1")))),(0,n.kt)("h3",{id:"071---2022-08-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.7.0...0.7.1"},"0.7.1")," - 2022-08-01"),(0,n.kt)("h3",{id:"070---2022-08-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.6.5...0.7.0"},"0.7.0")," - 2022-08-01"),(0,n.kt)("h4",{id:"-new-features-18"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(accordion,buttons): primary, secondary and tertiary variations #209 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c34617f7a7d7b6b7568c3127f4ae0f52bd57cf8a"},(0,n.kt)("inlineCode",{parentName:"a"},"c34617f")))),(0,n.kt)("h4",{id:"-bug-fixes-25"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(megamenu): key warning errors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ecd27921546204dfa4aa23d25188876e52cda7a"},(0,n.kt)("inlineCode",{parentName:"a"},"4ecd279"))),(0,n.kt)("li",{parentName:"ul"},"fix(container): add padding also for block editors when we are on the add page not just edit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b857aad7855c30c5059b0f0f7c0f720826a71aa7"},(0,n.kt)("inlineCode",{parentName:"a"},"b857aad"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): bump opacity of gradient class to get rid of green hue of header text ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2011b40d384ae5b54a0525e6d9afc88c02f6ca90"},(0,n.kt)("inlineCode",{parentName:"a"},"2011b40"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): remove console log ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3a200233609bbcea39d8e519dc292a132a98aaa3"},(0,n.kt)("inlineCode",{parentName:"a"},"3a20023")))),(0,n.kt)("h4",{id:"-enhancements-35"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(callToAction): add tertiary variant and restructure exports ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac6695ab3066c41739ec4852f0ec3c3bb6cea346"},(0,n.kt)("inlineCode",{parentName:"a"},"ac6695a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(accordion): add color variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3504c15cc861803dc263fb2ad3b6a478043ced33"},(0,n.kt)("inlineCode",{parentName:"a"},"3504c15"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): WIP bringing back rendering of item with callback and path modification ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e43d4340ea82afde950e5fee44a76119060fc28"},(0,n.kt)("inlineCode",{parentName:"a"},"6e43d43"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): add slide down transition and update targetRefs on close ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/96671574f5f7dd992269c42e509598f62bba516d"},(0,n.kt)("inlineCode",{parentName:"a"},"9667157"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): use renderMenuItem in order to render menu items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9ed5cbdf120ee2c92e5f14c09e5289a5abe3f8b0"},(0,n.kt)("inlineCode",{parentName:"a"},"9ed5cbd"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): replaced eionet logo with an svg variant and tweaked size of eionet to match size of eea logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32ce4623ad454edec864ad6c8b45cbf99465bede"},(0,n.kt)("inlineCode",{parentName:"a"},"32ce462"))),(0,n.kt)("li",{parentName:"ul"},"refactor(callToAction): update tertiary state colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/159668ac526a98032392bcbd2c115dc448193152"},(0,n.kt)("inlineCode",{parentName:"a"},"159668a"))),(0,n.kt)("li",{parentName:"ul"},"change(accordion): style default accordion using the grey from semantic ui ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e24907df397457bd9704905aa29ea5d7e1d396cd"},(0,n.kt)("inlineCode",{parentName:"a"},"e24907d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(accordion): add variations and create a default export ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a9c68ffe933c9d700e46db3e0cbbd9e3820c7c7"},(0,n.kt)("inlineCode",{parentName:"a"},"4a9c68f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(colors): add tertiary shades for element states ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1e24a7e13b50f1ee7bd9bd44f3b2eb8e4460c691"},(0,n.kt)("inlineCode",{parentName:"a"},"1e24a7e"))),(0,n.kt)("li",{parentName:"ul"},"change(tests): try to modify tests to use slate instead of draft ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a2e248593433a7a8bf612008c12a3a20a0049d86"},(0,n.kt)("inlineCode",{parentName:"a"},"a2e2485"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): set active class on storybook list items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/112bff195cd07e789b352ae239a148a168b4d877"},(0,n.kt)("inlineCode",{parentName:"a"},"112bff1"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): add border for active element of menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5e7dfa539dc0d126dfb057ac2d293c94b31561bb"},(0,n.kt)("inlineCode",{parentName:"a"},"5e7dfa5"))),(0,n.kt)("li",{parentName:"ul"},"change(package): condition modification of navDepth settings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dd21dadf34f87f08223be3b98c06e7a2f0714326"},(0,n.kt)("inlineCode",{parentName:"a"},"dd21dad"))),(0,n.kt)("li",{parentName:"ul"},"change(mega menu): use non variable to fix build of volto-kitkat-frontend ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ecd652405ba616c9defc86fd793f8c066c0af1e"},(0,n.kt)("inlineCode",{parentName:"a"},"3ecd652"))),(0,n.kt)("li",{parentName:"ul"},"change(header): prefix mega-menu active class for adding border ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32898cb19c20ee7696c51b99cd9df25a333ae6e9"},(0,n.kt)("inlineCode",{parentName:"a"},"32898cb"))),(0,n.kt)("li",{parentName:"ul"},"change(tests): use data-slate-editor instead of contents that was found in draft js instead of slate ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1e0413cf117c098b188e00249c323f2f718b9299"},(0,n.kt)("inlineCode",{parentName:"a"},"1e0413c"))),(0,n.kt)("li",{parentName:"ul"},"change(stories): hide variant control from button link story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/43f8c412f6762edbed9c60e613736d5b60677cd1"},(0,n.kt)("inlineCode",{parentName:"a"},"43f8c41"))),(0,n.kt)("li",{parentName:"ul"},"change(stories): hide variant control from button link story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aea712668331f5681028d961b42a05655f1113d3"},(0,n.kt)("inlineCode",{parentName:"a"},"aea7126")))),(0,n.kt)("h4",{id:"\ufe0f-others-34"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feature(theme): added context navigation component story and default style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5a6955fe935cf6a07f6593164014ed4c9e77d88f"},(0,n.kt)("inlineCode",{parentName:"a"},"5a6955f"))),(0,n.kt)("li",{parentName:"ul"},"feature(megamenu): open default accordions on mobile navigation based on pathname ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cc299c1047f96aa5f85cdc4bb8bb9b3b4fb9ca5e"},(0,n.kt)("inlineCode",{parentName:"a"},"cc299c1"))),(0,n.kt)("li",{parentName:"ul"},"fix eslint warnings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3b30282ea4df59f2d05644cae5c1d703b4dc48b3"},(0,n.kt)("inlineCode",{parentName:"a"},"3b30282"))),(0,n.kt)("li",{parentName:"ul"},"bump release version to 0.7.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fa82cbd7d50765c322bc5c7c58abb5675e0aadad"},(0,n.kt)("inlineCode",{parentName:"a"},"fa82cbd"))),(0,n.kt)("li",{parentName:"ul"},"Theme fixes, mega menu selected element both in desktop and mobile #211 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4827292a9badb02f178b7431cc63e11070784ea"},(0,n.kt)("inlineCode",{parentName:"a"},"b482729"))),(0,n.kt)("li",{parentName:"ul"},"feature(mega-menu): added menu slide down animation #208 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4360d0ef570fbfcc9989170219f7826e5ed780cf"},(0,n.kt)("inlineCode",{parentName:"a"},"4360d0e")))),(0,n.kt)("h3",{id:"065---2022-07-06"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.6.1...0.6.5"},"0.6.5")," - 2022-07-06"),(0,n.kt)("h4",{id:"-bug-fixes-26"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(header): double click to close dropdown is no longer required ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8a2ed0d1e671d12239ecaf250e68b3187c12a53"},(0,n.kt)("inlineCode",{parentName:"a"},"b8a2ed0"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): menu generation when atAGlance isn't found ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d68b03c05f7671e7ea154efe0199c29a3734fbcf"},(0,n.kt)("inlineCode",{parentName:"a"},"d68b03c"))),(0,n.kt)("li",{parentName:"ul"},"fix(menu): removed minHeight that enlarged the global menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/133be1e43d9b7778fd94388629400c5f2b707ff4"},(0,n.kt)("inlineCode",{parentName:"a"},"133be1e"))),(0,n.kt)("li",{parentName:"ul"},"fix(hero): image dimensions when full width and height isn't enabled ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4114f731cce63dc520bfd00cd487943181cec2ee"},(0,n.kt)("inlineCode",{parentName:"a"},"4114f73"))),(0,n.kt)("li",{parentName:"ul"},"fix(contentBox): removed negative z-index that hid fullwidth bg color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bd60faff53205da95d94930517f2ac830ec523d1"},(0,n.kt)("inlineCode",{parentName:"a"},"bd60faf")))),(0,n.kt)("h4",{id:"-enhancements-36"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(hero): tweaked hero block height and padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/994b6f8943c061657792df8adcbdee5da487ce43"},(0,n.kt)("inlineCode",{parentName:"a"},"994b6f8"))),(0,n.kt)("li",{parentName:"ul"},"change(item): tweak size and padding of icon when used inside item ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dbdef191e70bf59dcfddf63c8f9f9a1343266a59"},(0,n.kt)("inlineCode",{parentName:"a"},"dbdef19"))),(0,n.kt)("li",{parentName:"ul"},"change(typography): updated letterspacing values and clarified values used for certain type tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8a13bf8b3691d288209532842fb2c80962d652c0"},(0,n.kt)("inlineCode",{parentName:"a"},"8a13bf8"))),(0,n.kt)("li",{parentName:"ul"},"change(item): enable theming for icon and text color and added tertiary option ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d4444feedd1cd7e6e8f8da630b4b53a19050d1b"},(0,n.kt)("inlineCode",{parentName:"a"},"6d4444f"))),(0,n.kt)("li",{parentName:"ul"},"change(header): top section chevron sizes and margin as requested in enhancements document ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b307c74a671c10a5a6703dcb2126c3c36679c6f5"},(0,n.kt)("inlineCode",{parentName:"a"},"b307c74"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): add underline to links when applied to headers and use tertiary color by default ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/874f956c61e65ddbb6a240865f3946bb84247712"},(0,n.kt)("inlineCode",{parentName:"a"},"874f956"))),(0,n.kt)("li",{parentName:"ul"},"change(utilities): wrap in quotes h2 and h3 of quoted-wrapper ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8aa471604fb127cfa535373bb90a44b4204dd0f4"},(0,n.kt)("inlineCode",{parentName:"a"},"8aa4716"))),(0,n.kt)("li",{parentName:"ul"},"change(package): bump package version to 0.6.5 denoting bug fixes release ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0585aebaeb9e3483ba230110d99a1a875590ad66"},(0,n.kt)("inlineCode",{parentName:"a"},"0585aeb")))),(0,n.kt)("h3",{id:"061---2022-07-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.6.0...0.6.1"},"0.6.1")," - 2022-07-01"),(0,n.kt)("h4",{id:"-new-features-19"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(UnderlinedTitle): create story and necessary utilities ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8beb56b64ca76fb9f0f6df0f3554e64449a64868"},(0,n.kt)("inlineCode",{parentName:"a"},"8beb56b"))),(0,n.kt)("li",{parentName:"ul"},"feat(headers): added underlined titles with theming support ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af675616f9e002458501cf8b90742514153a298f"},(0,n.kt)("inlineCode",{parentName:"a"},"af67561")))),(0,n.kt)("h4",{id:"-enhancements-37"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(heading): move underline story and update controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2c9bfd279eafc44435d223be326f9496856c2154"},(0,n.kt)("inlineCode",{parentName:"a"},"2c9bfd2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(underlineTitle): add content box for different variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/087891535059d6c2d7d2c2accded20f6ba601bb5"},(0,n.kt)("inlineCode",{parentName:"a"},"0878915"))),(0,n.kt)("li",{parentName:"ul"},"refactor(underlinedTitle): add control for changing heading size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/211f5158bff2b437aac60f26ba63f9adb6be540a"},(0,n.kt)("inlineCode",{parentName:"a"},"211f515"))),(0,n.kt)("li",{parentName:"ul"},"refactor(underlinedTitle): Restore text variation dropdown control ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bd8c61129d2c80475af8d0e9310412d5c3a82169"},(0,n.kt)("inlineCode",{parentName:"a"},"bd8c611"))),(0,n.kt)("li",{parentName:"ul"},"refactor(utilities): add color variation for headings and text ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e3a779ec4fa3b712fcd32124f6f83ab784d2223"},(0,n.kt)("inlineCode",{parentName:"a"},"7e3a779"))),(0,n.kt)("li",{parentName:"ul"},"refactor(utilities): update border bottom utility and restore line height for headings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7fe4a7b9fee579d213fe3945a4e548ff089784bd"},(0,n.kt)("inlineCode",{parentName:"a"},"7fe4a7b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(headings): update the line height of headers according to docusaurus instructions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9da19b3e1ea1fd93431e00edf3dc9a443e94f27a"},(0,n.kt)("inlineCode",{parentName:"a"},"9da19b3")))),(0,n.kt)("h4",{id:"-internal-changes-13"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(countup): package for statistics ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/26fcd09bbd8d44119d5ca957542863be8c64836b"},(0,n.kt)("inlineCode",{parentName:"a"},"26fcd09")))),(0,n.kt)("h3",{id:"060---2022-07-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.5.5...0.6.0"},"0.6.0")," - 2022-07-01"),(0,n.kt)("h4",{id:"-bug-fixes-27"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(item): adjust the container in stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a848c46b5bf3153ec993a21a530e120bae872407"},(0,n.kt)("inlineCode",{parentName:"a"},"a848c46"))),(0,n.kt)("li",{parentName:"ul"},"fix(tag): align start for tags on mobile, update path for Tag List and add containers ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b9de8452c42ed6d16028ce147f2d7a062b895d67"},(0,n.kt)("inlineCode",{parentName:"a"},"b9de845"))),(0,n.kt)("li",{parentName:"ul"},"fix(item): update image width & height on mobiles and add 3 line clamp for description ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0cd2c46c945ff85b55183994990fae9cf450f3d1"},(0,n.kt)("inlineCode",{parentName:"a"},"0cd2c46"))),(0,n.kt)("li",{parentName:"ul"},"fix(pageheader): metadata font size on mobile to be readable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0a9b1fa7db6f0b11265f9eb4d28f25b23bedc79a"},(0,n.kt)("inlineCode",{parentName:"a"},"0a9b1fa"))),(0,n.kt)("li",{parentName:"ul"},"fix(breadcrumb): fixed variable name for breadcrumb item ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2b547eb43e0db4aa9bb63b4e4ba7f541f357fbd0"},(0,n.kt)("inlineCode",{parentName:"a"},"2b547eb")))),(0,n.kt)("h4",{id:"-enhancements-38"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(Item):create item story with custom default class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/069ae02a7cc2b15b7e6732e46f52d07eaa4502b1"},(0,n.kt)("inlineCode",{parentName:"a"},"069ae02"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pagination): add pastanage menu overrides and remove any eea theme css from default story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/508081090baaeb455130c760c6c0e7e23972d84a"},(0,n.kt)("inlineCode",{parentName:"a"},"5080810"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): update variables from px to rem ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/30eed78c170e5719ba4fb85c3a171db3f97d63c8"},(0,n.kt)("inlineCode",{parentName:"a"},"30eed78"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Item):add default item mobile padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/35184655e3225b8ad63626c8e521b5dcf59eaa3b"},(0,n.kt)("inlineCode",{parentName:"a"},"3518465"))),(0,n.kt)("li",{parentName:"ul"},"change(site): added fixes from custom ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0fe4d80586c8877d58905ec40aa7df19c2f4e32f"},(0,n.kt)("inlineCode",{parentName:"a"},"0fe4d80"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Pagination): add default pagination stopry and rename previous as Secondary ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a5e3e13b40d4d1d0c96f1efaa3a0c326d60c6d93"},(0,n.kt)("inlineCode",{parentName:"a"},"a5e3e13"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pagination): comment out secondary pagination and its styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bcf4cff1cff490718751475354b8fb32da174383"},(0,n.kt)("inlineCode",{parentName:"a"},"bcf4cff"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tags): remove content class and add flex wrap ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d6333ca7e61a588d8ffe4d0d2e02005c0aa12379"},(0,n.kt)("inlineCode",{parentName:"a"},"d6333ca"))),(0,n.kt)("li",{parentName:"ul"},"change(logo): use a real svg logo for white eea logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3b80dc7698c3dbab5d3834cc62f5102c2ace0166"},(0,n.kt)("inlineCode",{parentName:"a"},"3b80dc7"))),(0,n.kt)("li",{parentName:"ul"},"change(header): show eea information systems on tablet as well ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce82cebb554eb11a35ea2b3ee0c62bc645716476"},(0,n.kt)("inlineCode",{parentName:"a"},"ce82ceb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): update letter spacing tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f8753b7527b1bf7271102666a8662a74b2b1775"},(0,n.kt)("inlineCode",{parentName:"a"},"5f8753b"))),(0,n.kt)("li",{parentName:"ul"},"change(letterspacing): updated letter spacing positive values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b31818f292ce7ce8711084116a7b4df78cca33f0"},(0,n.kt)("inlineCode",{parentName:"a"},"b31818f"))),(0,n.kt)("li",{parentName:"ul"},"change(pageheader): add bottom margin on mobile for sharing dropdown actions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d3cda4732ec94dac91b36ef10014fbbe08a0a470"},(0,n.kt)("inlineCode",{parentName:"a"},"d3cda47"))),(0,n.kt)("li",{parentName:"ul"},"change(pageheader): removed blogger, reddit and stumbleupon sharing links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e4acc4e83c120cda59d94f04867a53e21bf322ab"},(0,n.kt)("inlineCode",{parentName:"a"},"e4acc4e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Item): add default item background color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c978c8d05355065466a8a661844237a9df103b94"},(0,n.kt)("inlineCode",{parentName:"a"},"c978c8d"))),(0,n.kt)("li",{parentName:"ul"},"change(package): bump package version ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f01f72ba6b09b6aae00c54e446bafddb48c4cd1"},(0,n.kt)("inlineCode",{parentName:"a"},"1f01f72")))),(0,n.kt)("h4",{id:"-internal-changes-14"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(item): update item image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e585e9d8c85a3627696b55c0505e29e8a8c33f7f"},(0,n.kt)("inlineCode",{parentName:"a"},"e585e9d")))),(0,n.kt)("h4",{id:"-documentation-changes-13"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(colors): token usage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c433ec6fcf190f85ab1dd81ea3e63eeb381d0c28"},(0,n.kt)("inlineCode",{parentName:"a"},"c433ec6"))),(0,n.kt)("li",{parentName:"ul"},"docs(Docusaurus): typography and spacing updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48d1269dce396aec26db1d1e2f777851a26eaa81"},(0,n.kt)("inlineCode",{parentName:"a"},"48d1269"))),(0,n.kt)("li",{parentName:"ul"},"docs(Docusaurus): various fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a972a31f7932d29d61a46da251c0c98994516365"},(0,n.kt)("inlineCode",{parentName:"a"},"a972a31"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/66d95e4fee695a20de47f5476712034f9f07f4a8"},(0,n.kt)("inlineCode",{parentName:"a"},"66d95e4")))),(0,n.kt)("h4",{id:"\ufe0f-others-35"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Tabs block custom border left/top ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca4cce05ddb603a26d729dfe31f0f11fda7563fb"},(0,n.kt)("inlineCode",{parentName:"a"},"ca4cce0"))),(0,n.kt)("li",{parentName:"ul"},"Fix sidebar tabs in Volto CSS ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c287db5abbfe068d4b255c41fd58d0433d2640c4"},(0,n.kt)("inlineCode",{parentName:"a"},"c287db5")))),(0,n.kt)("h3",{id:"055---2022-06-23"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.5.4...0.5.5"},"0.5.5")," - 2022-06-23"),(0,n.kt)("h4",{id:"-bug-fixes-28"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(contentBox): color of cards when inside content-boxes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/76a452031473f43928dee1d3ee705d06101e6a21"},(0,n.kt)("inlineCode",{parentName:"a"},"76a4520")))),(0,n.kt)("h4",{id:"-enhancements-39"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(homepage): moved fixes of homepage to custom and colored carousel arrow ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0a226ef3f5d328d45513764bec02d58241417db0"},(0,n.kt)("inlineCode",{parentName:"a"},"0a226ef")))),(0,n.kt)("h3",{id:"054---2022-06-16"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.5.3...0.5.4"},"0.5.4")," - 2022-06-16"),(0,n.kt)("h4",{id:"-bug-fixes-29"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(block-style): Content box preview in sidebar ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6362766f5e8dabf778e3864d2bb08966a55fc078"},(0,n.kt)("inlineCode",{parentName:"a"},"6362766"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): ensure transparency goes as high as the search icon ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4470e132e1e70fba3fdfb33fc63a1cc9d62700e8"},(0,n.kt)("inlineCode",{parentName:"a"},"4470e13")))),(0,n.kt)("h4",{id:"-enhancements-40"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(contentBox): add background as before element instead of using full-width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e0a5962c1b9cb0d3ef9a8d7b7208eded34eb3ce"},(0,n.kt)("inlineCode",{parentName:"a"},"7e0a596"))),(0,n.kt)("li",{parentName:"ul"},"change(content-box): content box links are now underlined ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f7976f50f5807a884522d6dba871a2757a1c5a98"},(0,n.kt)("inlineCode",{parentName:"a"},"f7976f5"))),(0,n.kt)("li",{parentName:"ul"},"change(homepage): added fixes from custom ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c3e03331d328f4fd7c6689f93bc1f1156013b8a9"},(0,n.kt)("inlineCode",{parentName:"a"},"c3e0333"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): add margin top with the height of the top section on edit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fefa6bb0f513e221ddb587f081c0e7d0c3067dfd"},(0,n.kt)("inlineCode",{parentName:"a"},"fefa6bb"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): fix default card color when inside content-boxes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6fdf3aabf9515289b36a5822e21edc5d282c4536"},(0,n.kt)("inlineCode",{parentName:"a"},"6fdf3aa"))),(0,n.kt)("li",{parentName:"ul"},"change(container): removed override of content-box-inner container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/66fe7d45adc631c3ebf0e8dd11de19d7ff60b894"},(0,n.kt)("inlineCode",{parentName:"a"},"66fe7d4")))),(0,n.kt)("h3",{id:"053---2022-06-16"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.5.2...0.5.3"},"0.5.3")," - 2022-06-16"),(0,n.kt)("h4",{id:"-bug-fixes-30"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(homepage): hero and homepage fixes for #151156 #198 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/43d4efc508750e0e9cbb93b9bffc3721be452c5a"},(0,n.kt)("inlineCode",{parentName:"a"},"43d4efc"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): fixed top section width on edit page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce5898b5ee41ea6959a2c454b3fb98216d71feb3"},(0,n.kt)("inlineCode",{parentName:"a"},"ce5898b")))),(0,n.kt)("h4",{id:"-enhancements-41"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(hero): added min height to hero-block-image-wrapper ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3cc37c027597573281710c9db98c687057d261dd"},(0,n.kt)("inlineCode",{parentName:"a"},"3cc37c0"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): spaced hero block has a 3rem margin top and bottom ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c463b033dda601bfd475b282bc0003200a053d45"},(0,n.kt)("inlineCode",{parentName:"a"},"c463b03"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): added extra top margin on hero-block-body from tablet and up within homepage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/64142c3c45f6a8ea6502842055a2341dcf16088c"},(0,n.kt)("inlineCode",{parentName:"a"},"64142c3"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): tweak min height of hero block ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e1271b4b5fdcd8205f0bec8b88ab9ae31f62251f"},(0,n.kt)("inlineCode",{parentName:"a"},"e1271b4"))),(0,n.kt)("li",{parentName:"ul"},"change(card,contentBox): use inherit for text color to inherit black from body ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c1ba3b6ddc16ddc7394aba8d78cad73b5a8c34cb"},(0,n.kt)("inlineCode",{parentName:"a"},"c1ba3b6"))),(0,n.kt)("li",{parentName:"ul"},"change(container): on section-edit modify only left and right padding values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fe6e3ec764643ec01e20ae9dbdde921774ef04cd"},(0,n.kt)("inlineCode",{parentName:"a"},"fe6e3ec"))),(0,n.kt)("li",{parentName:"ul"},"change(utilities): bump z-index of overlay class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ede3209556b620d2252bb03d4c994a92b6708fd2"},(0,n.kt)("inlineCode",{parentName:"a"},"ede3209"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): fixed variable reference for margin of body from homepage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/092b90b2a902b71cc96132ca3c96108edda56342"},(0,n.kt)("inlineCode",{parentName:"a"},"092b90b")))),(0,n.kt)("h3",{id:"052---2022-06-14"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.5.1...0.5.2"},"0.5.2")," - 2022-06-14"),(0,n.kt)("h4",{id:"-new-features-20"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(contentBox) : add new Content Box component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ebbb47fe685f9809aa3572263be376d9688371e"},(0,n.kt)("inlineCode",{parentName:"a"},"2ebbb47"))),(0,n.kt)("li",{parentName:"ul"},"feat(ContentBox): Add primary, secondary, tertiary themes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87cb2fe7e4cd5c2872299756f493e371abcbb05f"},(0,n.kt)("inlineCode",{parentName:"a"},"87cb2fe"))),(0,n.kt)("li",{parentName:"ul"},"feat(ContentBox): Update storybook with available themes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93b26b2f5f1d627aa8049df61257499e4798dd79"},(0,n.kt)("inlineCode",{parentName:"a"},"93b26b2")))),(0,n.kt)("h4",{id:"-enhancements-42"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(contentBox): restructure the component to be more flexible ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f0d2de67e43fafa10052871f99ac841c83cf8157"},(0,n.kt)("inlineCode",{parentName:"a"},"f0d2de6")))),(0,n.kt)("h4",{id:"-internal-changes-15"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(contentBox) : add lint changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5aaf740594f0001b1672bb6dc18d973f55c881f0"},(0,n.kt)("inlineCode",{parentName:"a"},"5aaf740")))),(0,n.kt)("h4",{id:"\ufe0f-others-36"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"perf(eol): change to lf ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/78b2955ff73d9436134d1a6399040b2d7c7f5714"},(0,n.kt)("inlineCode",{parentName:"a"},"78b2955"))),(0,n.kt)("li",{parentName:"ul"},"Cleanup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2b128dface95b560588a343f1ddf7bbaf3efb320"},(0,n.kt)("inlineCode",{parentName:"a"},"2b128df")))),(0,n.kt)("h3",{id:"051---2022-06-13"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.5.0...0.5.1"},"0.5.1")," - 2022-06-13"),(0,n.kt)("h4",{id:"-enhancements-43"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(header): changed homepage text color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/64ce8b61f8f2150513e09bf2926b48aa2ae1071c"},(0,n.kt)("inlineCode",{parentName:"a"},"64ce8b6"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): added styles for adding dark overlay to hero ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bf1d292fecfa8a6b222558f0d93f48e19bf6b8ea"},(0,n.kt)("inlineCode",{parentName:"a"},"bf1d292"))),(0,n.kt)("li",{parentName:"ul"},"change(homepage): hide stagingBanner on homepage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fb6e319dd10f4d148cc8f3b33dafc43280a0254f"},(0,n.kt)("inlineCode",{parentName:"a"},"fb6e319"))),(0,n.kt)("li",{parentName:"ul"},"change(header): use variable for homepage hero-block padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/89ff3441f269281ffb3da32cd3e5c64715b3204b"},(0,n.kt)("inlineCode",{parentName:"a"},"89ff344"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): modified grey-4 color to point to a 10% shade from original color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b406283e61c7356bec9d453567cd1ccde496880d"},(0,n.kt)("inlineCode",{parentName:"a"},"b406283"))),(0,n.kt)("li",{parentName:"ul"},"change(header): added min-height for mega menu needed for 1 items menus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/18814f48fb743c88d05554e9a1773f8d85dec86c"},(0,n.kt)("inlineCode",{parentName:"a"},"18814f4"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): hero section block integration #192 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ea2f40583951016c164c9abdf22d8e809d207fe"},(0,n.kt)("inlineCode",{parentName:"a"},"4ea2f40")))),(0,n.kt)("h4",{id:"\ufe0f-others-37"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Add hero block style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fa39656fd661d8af95f483a6f33a08e4c93c42f1"},(0,n.kt)("inlineCode",{parentName:"a"},"fa39656"))),(0,n.kt)("li",{parentName:"ul"},"Add padding if hero block is not full-width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/808b83957d6a866cc31c928f414fa8fa5da517a1"},(0,n.kt)("inlineCode",{parentName:"a"},"808b839"))),(0,n.kt)("li",{parentName:"ul"},"Cleanup available languages ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0c490512a6a6524efe9a37b4b61ab0061a240abb"},(0,n.kt)("inlineCode",{parentName:"a"},"0c49051"))),(0,n.kt)("li",{parentName:"ul"},"Use 1.5 rem ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1125cd7c65332fc5961ffbbbd2d2ab6bcc8b1b5b"},(0,n.kt)("inlineCode",{parentName:"a"},"1125cd7")))),(0,n.kt)("h3",{id:"050---2022-06-11"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.4.5...0.5.0"},"0.5.0")," - 2022-06-11"),(0,n.kt)("h4",{id:"-new-features-21"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(hero): added storybook implementation of hero component #172 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/17b9d1693e31bf7b3b41ca84be7bd21f07065674"},(0,n.kt)("inlineCode",{parentName:"a"},"17b9d16"))),(0,n.kt)("li",{parentName:"ul"},"feat(hero): add hero block component and stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6019fc843ec14a8afc7558e92c2d4b4bb14ee199"},(0,n.kt)("inlineCode",{parentName:"a"},"6019fc8")))),(0,n.kt)("h4",{id:"-bug-fixes-31"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(header): Internal links in mega menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d8ca13558c3e8c336800791f2fea8a8d33a2b602"},(0,n.kt)("inlineCode",{parentName:"a"},"d8ca135"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): show active menu when clicking on children ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a54fa67a1a92e2ab4216e6d149f66e1ee53aab89"},(0,n.kt)("inlineCode",{parentName:"a"},"a54fa67"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): accessibility and dropdown possition fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/505ac36a27d86e620fb5af515a0b8b5979610f0a"},(0,n.kt)("inlineCode",{parentName:"a"},"505ac36"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): fix accessibility issue by David ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/783dcec0d140e6e6e568d0f82833dcbf8a5c7d3d"},(0,n.kt)("inlineCode",{parentName:"a"},"783dcec"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): dropdowns disappear on resize ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/52338fd3e711f4918612e052dc2034a8d9bd40bd"},(0,n.kt)("inlineCode",{parentName:"a"},"52338fd"))),(0,n.kt)("li",{parentName:"ul"},"fix(header-topdropdown): dedupe html elements for topdropdowns ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cd8a2a7ea091e81b736438f7c2a87c254af1b092"},(0,n.kt)("inlineCode",{parentName:"a"},"cd8a2a7"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): transparency class should apply on the current bg color or image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f9a0033c5538cb19f08f26cf28d47954cc52607d"},(0,n.kt)("inlineCode",{parentName:"a"},"f9a0033"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): mobile dropdown now visible ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/34371b436f2ec100f3920f78de49983ba16679b0"},(0,n.kt)("inlineCode",{parentName:"a"},"34371b4"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): dropdown disappears after window resize #116 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fc7dd8bd7911421fb734a696a2dd5d3ad3b652b0"},(0,n.kt)("inlineCode",{parentName:"a"},"fc7dd8b"))),(0,n.kt)("li",{parentName:"ul"},"fix(header-topdropdown): dedupe html dropdown elements for topdropdowns #115 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f10a7a8743a5fb2cecd0c3374ec9d894e914143f"},(0,n.kt)("inlineCode",{parentName:"a"},"f10a7a8")))),(0,n.kt)("h4",{id:"-enhancements-44"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): update mega menu in header component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2d1ce454553d116efa96288079b8b77649e10abb"},(0,n.kt)("inlineCode",{parentName:"a"},"2d1ce45"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update structure and variables of top bar ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af709094f94f0cc2e2309b1aedb376e45dc7f136"},(0,n.kt)("inlineCode",{parentName:"a"},"af70909"))),(0,n.kt)("li",{parentName:"ul"},"change(header): renamed mega menu items href attribute to url ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ed8144589f87a9ad219c97193863c999a72cb6d"},(0,n.kt)("inlineCode",{parentName:"a"},"3ed8144"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update main section and and add color variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2f0fd1de7c04eff4b2a9b62d03dd13a1b0d69bc"},(0,n.kt)("inlineCode",{parentName:"a"},"f2f0fd1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): minor updates on colors and widths ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a70129fd929fedb344a47e049cca94274e84a3b1"},(0,n.kt)("inlineCode",{parentName:"a"},"a70129f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero): add full-heigh control to adjust height ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a45cb7c599cdc11426207001e67d8f7d727233fe"},(0,n.kt)("inlineCode",{parentName:"a"},"a45cb7c"))),(0,n.kt)("li",{parentName:"ul"},"change(header): disable sticky setting until feature is more stable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1d7af954c85cb6a8a657c1625e4ae863e562346a"},(0,n.kt)("inlineCode",{parentName:"a"},"1d7af95"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero):make button variant and inverted different button controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e182ca9ecdb76507205d84f83cad6a79dd74a03"},(0,n.kt)("inlineCode",{parentName:"a"},"7e182ca"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header):main bar sticky on scroll up ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9c9e7c6f9651c0663a1eab1856d7324a73afb2de"},(0,n.kt)("inlineCode",{parentName:"a"},"9c9e7c6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(headings): update heading sizes for mobile ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19f3ccacaf2c744b5f5c2ec8635773de7ef0016b"},(0,n.kt)("inlineCode",{parentName:"a"},"19f3cca"))),(0,n.kt)("li",{parentName:"ul"},"change(header): hide first link(home) from header menu on site ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ae7f3b9385620eb3d840dd90f512e37cd8556a6d"},(0,n.kt)("inlineCode",{parentName:"a"},"ae7f3b9"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): typo correction and key setting on list.items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/96d2c4fbfa722d22a215e8d27f1400e65fe9476e"},(0,n.kt)("inlineCode",{parentName:"a"},"96d2c4f"))),(0,n.kt)("li",{parentName:"ul"},"change(header): use Link instead of a tag for menu items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9812b3fba7b8305399d6972daf135b8a2d88e876"},(0,n.kt)("inlineCode",{parentName:"a"},"9812b3f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add control for inverted logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/023ca45e6f263166211cbea0d63b1938d11221da"},(0,n.kt)("inlineCode",{parentName:"a"},"023ca45"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero): move quoted utility to h2 tag ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7376676b4875494f16c49945f6b5dac19c6b8009"},(0,n.kt)("inlineCode",{parentName:"a"},"7376676"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add link for menu title inside desktop mega menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24355d000b2bd808b2031cd2b78e60cafb9ad5b1"},(0,n.kt)("inlineCode",{parentName:"a"},"24355d0"))),(0,n.kt)("li",{parentName:"ul"},"refactor(utilities): update hex with color token ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8dc65ef55a62dcb32b6eb8a684524a8dc1fa6ba6"},(0,n.kt)("inlineCode",{parentName:"a"},"8dc65ef"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): and mega menu to latest spec #114 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/44fcf68be242f97ced852b28ac3ab820dc0e1045"},(0,n.kt)("inlineCode",{parentName:"a"},"44fcf68"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update search input and file endings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/afab36f96f245e197eff528cb1d9e6fea45bc7ba"},(0,n.kt)("inlineCode",{parentName:"a"},"afab36f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add control that toggles transparency class on main section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8d4bdb9c527f102ffd3718f32bf1a43309a9bb4"},(0,n.kt)("inlineCode",{parentName:"a"},"b8d4bdb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): restore union dropdown after implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e98bab497ee10ad89d2dfed76c7117b633206fe"},(0,n.kt)("inlineCode",{parentName:"a"},"7e98bab"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): minor responsive fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/16a000634505c9e8f8b310860a30b62798a0fb87"},(0,n.kt)("inlineCode",{parentName:"a"},"16a0006"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero): align hero's text and meta seperately ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4fa958f7c7cc6d331a8eb7aaf25dc44d6cd3632a"},(0,n.kt)("inlineCode",{parentName:"a"},"4fa958f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero):add button variant controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f362a7b2ec273131fa0876f23b74c740c7217b3a"},(0,n.kt)("inlineCode",{parentName:"a"},"f362a7b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update search input ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/368962eabb668e2ec1bdcd18ae81658e7b1d911b"},(0,n.kt)("inlineCode",{parentName:"a"},"368962e"))),(0,n.kt)("li",{parentName:"ul"},"change(header): mark top level active menu item ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/665c449bc2667cc1471a4b97923c897ad3506792"},(0,n.kt)("inlineCode",{parentName:"a"},"665c449"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero):prettier & style changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d84688440417a430afd9fd24f4c8cfeef0121203"},(0,n.kt)("inlineCode",{parentName:"a"},"d846884"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add control for main section stickiness ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2f07572f78074137e7e6a49585273210ed5cedcb"},(0,n.kt)("inlineCode",{parentName:"a"},"2f07572"))),(0,n.kt)("li",{parentName:"ul"},"change(header): use viewport width for changing mobile text in header dropdowns ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b50fa585c0abeedc04a46395f08e50a9e112c430"},(0,n.kt)("inlineCode",{parentName:"a"},"b50fa58"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add fluid font sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f2743e39107fd1bd00a54e03bf92963eb9853f2"},(0,n.kt)("inlineCode",{parentName:"a"},"5f2743e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header) add position sticky & transparent for main section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/29df772edfe23b1752aa3d184659eea90c3c9221"},(0,n.kt)("inlineCode",{parentName:"a"},"29df772"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero): update variables with new design tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1d9792231c50f12fd68364e201054f6ab0926665"},(0,n.kt)("inlineCode",{parentName:"a"},"1d97922"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Language List): render language dropdown as ul and li elements ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3617442da78af07d3f473d0c43c47dd48c9b2ac3"},(0,n.kt)("inlineCode",{parentName:"a"},"3617442"))),(0,n.kt)("li",{parentName:"ul"},"change(header): introduced item class to the mega menu link content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/00ca376ea4cf1de4851e84567b97c374ee7f66e3"},(0,n.kt)("inlineCode",{parentName:"a"},"00ca376"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Language List): add less variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7ccc1ccf57419b6eecbf71d479db72b84428d43a"},(0,n.kt)("inlineCode",{parentName:"a"},"7ccc1cc"))),(0,n.kt)("li",{parentName:"ul"},"change(header): disabled active menu when clicking on globalnav links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3f7b5eedb038b51fbae8a14a683dc6adc919549b"},(0,n.kt)("inlineCode",{parentName:"a"},"3f7b5ee"))),(0,n.kt)("li",{parentName:"ul"},"change(header): target link instead of span directly ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9e865fbb5b256196756c3d84de397296ac0b447a"},(0,n.kt)("inlineCode",{parentName:"a"},"9e865fb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): remove unused imports ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e232db6ce0b2553be79d98d8497fa06f548b772"},(0,n.kt)("inlineCode",{parentName:"a"},"7e232db")))),(0,n.kt)("h4",{id:"\ufe0f-others-38"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Add item themes; override .block .ui.image width based on size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/06010db21398638d46d2e007317d72a7aff7e7d9"},(0,n.kt)("inlineCode",{parentName:"a"},"06010db"))),(0,n.kt)("li",{parentName:"ul"},"Move item icon themes to item.overrides ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/31e8921f4ee4d92ba3a9c58275b41dd3101cffd2"},(0,n.kt)("inlineCode",{parentName:"a"},"31e8921"))),(0,n.kt)("li",{parentName:"ul"},"Override only the width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8d4927084e5daedcb69e6f3a57cab73a9016a55f"},(0,n.kt)("inlineCode",{parentName:"a"},"8d49270"))),(0,n.kt)("li",{parentName:"ul"},"Override tile image in .block parrent ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/005655ddff6f45e211f1ff8156b0b7efa1e47a2e"},(0,n.kt)("inlineCode",{parentName:"a"},"005655d"))),(0,n.kt)("li",{parentName:"ul"},"Update package.json ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9dc38165a95deca1faf2dfccdc03fd6cab3d8c54"},(0,n.kt)("inlineCode",{parentName:"a"},"9dc3816"))),(0,n.kt)("li",{parentName:"ul"},"feature(item): added themes to item icons #190 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a6a2907df09575a18fb6e81dc52e8d6651eff118"},(0,n.kt)("inlineCode",{parentName:"a"},"a6a2907"))),(0,n.kt)("li",{parentName:"ul"},"update storybook header.topdropdown ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e58ac0821af56c06272e3373383647cbbff20978"},(0,n.kt)("inlineCode",{parentName:"a"},"e58ac08"))),(0,n.kt)("li",{parentName:"ul"},"use volto-screen-helper width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea156aad1100166ba78635163cfacdcfb913c1d4"},(0,n.kt)("inlineCode",{parentName:"a"},"ea156aa"))),(0,n.kt)("li",{parentName:"ul"},"Add divider content for metadata field in Banner ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/327ad1c5fdca0d376d04fd36084b940e5dd016ab"},(0,n.kt)("inlineCode",{parentName:"a"},"327ad1c"))),(0,n.kt)("li",{parentName:"ul"},"rename to viewportWidth ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32162e7c695774bbb68ac63a0008e8b148f1e9f5"},(0,n.kt)("inlineCode",{parentName:"a"},"32162e7"))),(0,n.kt)("li",{parentName:"ul"},"don't connect component to store ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/470b8bade5e8f2eaabb20a7bb02c8e82ca42f8a0"},(0,n.kt)("inlineCode",{parentName:"a"},"470b8ba"))),(0,n.kt)("li",{parentName:"ul"},"Add end of line ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51639d804a2b84f66373fb77c569bcc43b22e303"},(0,n.kt)("inlineCode",{parentName:"a"},"51639d8"))),(0,n.kt)("li",{parentName:"ul"},"behave as mobile under 480 only ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/11b99e15cb83245a32bb04f3937f5b95a60b1e95"},(0,n.kt)("inlineCode",{parentName:"a"},"11b99e1"))),(0,n.kt)("li",{parentName:"ul"},"make it account for all mobile-s,m,l ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/69e23ae8d12042f241dc53c9e296c340d5b17089"},(0,n.kt)("inlineCode",{parentName:"a"},"69e23ae")))),(0,n.kt)("h3",{id:"045---2022-06-08"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.4.4...0.4.5"},"0.4.5")," - 2022-06-08"),(0,n.kt)("h4",{id:"-enhancements-45"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(tabs): Add style for tabs accordion template #187 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fb8adbf84ac564a14d45bb6e8f4e1661811672d5"},(0,n.kt)("inlineCode",{parentName:"a"},"fb8adbf"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): avoid react error by providing key prop to grid column ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef0b1937d614a889a0c2117e483a834ed1aec1e3"},(0,n.kt)("inlineCode",{parentName:"a"},"ef0b193")))),(0,n.kt)("h4",{id:"\ufe0f-others-39"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Cleanup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4b9637ebd2d6c015f8d4323551c6cbc4b7506df"},(0,n.kt)("inlineCode",{parentName:"a"},"d4b9637"))),(0,n.kt)("li",{parentName:"ul"},"Add style for tabs accordion template ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a10998372a268b99991f7dda55103149f29d00cb"},(0,n.kt)("inlineCode",{parentName:"a"},"a109983")))),(0,n.kt)("h3",{id:"044---2022-06-08"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.4.3...0.4.4"},"0.4.4")," - 2022-06-08"),(0,n.kt)("h4",{id:"-new-features-22"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(divider): create story for divider ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b10a2e08b14962bed9f13317754f4124ee60d313"},(0,n.kt)("inlineCode",{parentName:"a"},"b10a2e0")))),(0,n.kt)("h4",{id:"-bug-fixes-32"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(divider): restore space between classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c595c152c144463f33757157ed7d6797ae31ceed"},(0,n.kt)("inlineCode",{parentName:"a"},"c595c15"))),(0,n.kt)("li",{parentName:"ul"},"fix(divider): Text colors and transform ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e524e1002bb0700ea69782cf5a95c6073ab383d2"},(0,n.kt)("inlineCode",{parentName:"a"},"e524e10"))),(0,n.kt)("li",{parentName:"ul"},"fix(footer): story aria labels for social media links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/254bdc7ba944943f5d08a71f9d0a3a31bdc06044"},(0,n.kt)("inlineCode",{parentName:"a"},"254bdc7")))),(0,n.kt)("h4",{id:"-enhancements-46"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update logos and less structure ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/66b8e0f12825968d94f7d572f2823d9a8a3a239b"},(0,n.kt)("inlineCode",{parentName:"a"},"66b8e0f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): first footer updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d18a2ee59d0deb143075d8dfeb949898ad1f6399"},(0,n.kt)("inlineCode",{parentName:"a"},"d18a2ee"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): logo updates and adjustments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/101bc9dfe4136240457f335de867a83c28d59339"},(0,n.kt)("inlineCode",{parentName:"a"},"101bc9d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): use tokens and adjust spacing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2cb166949913f725271050e863b38e7630748135"},(0,n.kt)("inlineCode",{parentName:"a"},"2cb1669"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): moved SubFooter logic to SubFooter.jsx from Footer story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/902383a0bb3446dc69237099bd429ead5e30a6c1"},(0,n.kt)("inlineCode",{parentName:"a"},"902383a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Divider):add divider with content inside story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2d66dca901fa189d69b65239dc34b1969097be8"},(0,n.kt)("inlineCode",{parentName:"a"},"e2d66dc"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): added managed by section as properties ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9328fc3084baf22439e1892d256d9a167b911849"},(0,n.kt)("inlineCode",{parentName:"a"},"9328fc3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(divider): remove custom divider ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4870d2252ad216e82213fa1f94cc39609ae676d"},(0,n.kt)("inlineCode",{parentName:"a"},"d4870d2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Divider_:remove green color class & add tertiary ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/95f30186bc1768e08f00ad7d5ffa2a70402ac553"},(0,n.kt)("inlineCode",{parentName:"a"},"95f3018"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): use remix icons for social links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5ef9aa2cebb6f96857a1920cefbf7e367b4d7c28"},(0,n.kt)("inlineCode",{parentName:"a"},"5ef9aa2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Divider):remove clean class and use fitted prop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8d2be350dcc44fd56b5fbfb791fb6b2a45bd8a52"},(0,n.kt)("inlineCode",{parentName:"a"},"8d2be35"))),(0,n.kt)("li",{parentName:"ul"},"change(Divider): Rename color property to theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0deffc823609d23131a85bc180e4a3f5a67a64aa"},(0,n.kt)("inlineCode",{parentName:"a"},"0deffc8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update links and logo align ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7afbab9b37982a557ac8bfa4430205ce912c3b8b"},(0,n.kt)("inlineCode",{parentName:"a"},"7afbab9"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): tweaked column sizes to the values before my changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fdf271868e44bce2904cc28c6fa924ee4c9ba759"},(0,n.kt)("inlineCode",{parentName:"a"},"fdf2718"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): to latest figma design #182 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e0ba2b659db9dc1b140d853840a06bd3ce31cab"},(0,n.kt)("inlineCode",{parentName:"a"},"3e0ba2b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): move subfooter logic to the proper component #185 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/303457719128c9699dd34939bd8db2b647977667"},(0,n.kt)("inlineCode",{parentName:"a"},"3034577"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b0b872b1415c9792a5886f619195f9c0471ea564"},(0,n.kt)("inlineCode",{parentName:"a"},"b0b872b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(testimonial): update divider ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/784450abdf395318fe89d8d3d0a1e398393cc93c"},(0,n.kt)("inlineCode",{parentName:"a"},"784450a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(testimonial): changed divider color to secondary ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/84282f960ab22ccb8403e975c055c61d1023193a"},(0,n.kt)("inlineCode",{parentName:"a"},"84282f9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(divider): remove custom divider from theme config ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a0409e8df3c9ba043717140455369a3630f0da85"},(0,n.kt)("inlineCode",{parentName:"a"},"a0409e8")))),(0,n.kt)("h4",{id:"-documentation-changes-14"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(divider): switch to secondary color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/239844be374a2f6bc4667e7ab3d2f52bfdc181ad"},(0,n.kt)("inlineCode",{parentName:"a"},"239844b"))),(0,n.kt)("li",{parentName:"ul"},"docs(divider): showcase path fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5ea03f60034edc918054aa273e44b84b2537716"},(0,n.kt)("inlineCode",{parentName:"a"},"d5ea03f")))),(0,n.kt)("h4",{id:"\ufe0f-others-40"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Remove unnecessary spaces ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d137981430809345bfb3ad494e7ab981c93c3e51"},(0,n.kt)("inlineCode",{parentName:"a"},"d137981"))),(0,n.kt)("li",{parentName:"ul"},"lint fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/657cf4ed917c4ff992aa033c3d9f4884a949d86d"},(0,n.kt)("inlineCode",{parentName:"a"},"657cf4e"))),(0,n.kt)("li",{parentName:"ul"},"perf(storybook): added storybook favicon ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/38eabc3124c85dd56bf5c68c0fb1e967c39055ec"},(0,n.kt)("inlineCode",{parentName:"a"},"38eabc3")))),(0,n.kt)("h3",{id:"043---2022-06-03"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.4.2...0.4.3"},"0.4.3")," - 2022-06-03"),(0,n.kt)("h4",{id:"-bug-fixes-33"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(edit): Fix columns/accordion inner toolbar padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fafbb525baa60c339906dc6a33d2f9418d050be6"},(0,n.kt)("inlineCode",{parentName:"a"},"fafbb52")))),(0,n.kt)("h4",{id:"-enhancements-47"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): completed removal of description from guides ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/42424b9213ece8d8df84d40f1b73e142cb0ffc6b"},(0,n.kt)("inlineCode",{parentName:"a"},"42424b9")))),(0,n.kt)("h3",{id:"042---2022-06-02"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.4.1...0.4.2"},"0.4.2")," - 2022-06-02"),(0,n.kt)("h4",{id:"-enhancements-48"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): moved color swatches around in the color guide ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8a395fce52a32cf92449a24d3d4cce5abf25a284"},(0,n.kt)("inlineCode",{parentName:"a"},"8a395fc"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): removed description from components and introduced category listing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f220bf0785f5aaede8c25c4164120b09de67b018"},(0,n.kt)("inlineCode",{parentName:"a"},"f220bf0"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): rename gap to space and added em spaces ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f5b042d311518ec3fb32c7f259c39ff62d4547f8"},(0,n.kt)("inlineCode",{parentName:"a"},"f5b042d"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): moved extra docs to webdev section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1ce0797b91418272e4e405467cd1468292620005"},(0,n.kt)("inlineCode",{parentName:"a"},"1ce0797"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): moved md_components files into webdev/md_components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/73c1c08a270d504fa6f2ba2579bcb3e6e25fb112"},(0,n.kt)("inlineCode",{parentName:"a"},"73c1c08"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): added category yml for all sections ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/17405728e3f44828da50890b9fc0f4e8a07f8bf2"},(0,n.kt)("inlineCode",{parentName:"a"},"1740572"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): color guideline updates and spacing tokens documentation #148 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c1154ba172c3b3b40b565c2bcb590f1a5e6b25a4"},(0,n.kt)("inlineCode",{parentName:"a"},"c1154ba"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): modified story links to avoid broken usage tabs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/78dc8d8f4e7cade3ab0e911e6dc002eefc1e7986"},(0,n.kt)("inlineCode",{parentName:"a"},"78dc8d8"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): renamed several file id's so that they match the incremental naming sequence ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/11299c9a4c41ca901926f852227dbca0bc1aee17"},(0,n.kt)("inlineCode",{parentName:"a"},"11299c9")))),(0,n.kt)("h4",{id:"-documentation-changes-15"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(Docusaurus): timeline, testimonial, quote and tags ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aaa54ecbe182872ffc7fff275d5065ebe790d348"},(0,n.kt)("inlineCode",{parentName:"a"},"aaa54ec"))),(0,n.kt)("li",{parentName:"ul"},"docs(spacing): add relative gap tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/92abc8fff2c7006e2c64684048e7783216a230bb"},(0,n.kt)("inlineCode",{parentName:"a"},"92abc8f"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): updated colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a28c99e60867c1eaa1b7b68d4154ccaa8c9ef958"},(0,n.kt)("inlineCode",{parentName:"a"},"a28c99e"))),(0,n.kt)("li",{parentName:"ul"},"docs(tags/content): new page about tags and content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/60be40268a77606c53fc45641bc22166b50b75e7"},(0,n.kt)("inlineCode",{parentName:"a"},"60be402"))),(0,n.kt)("li",{parentName:"ul"},"docs(Docusaurus): labeled icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6a0f61ede3a36c7d66d9b3091b93b0b5ff9a445"},(0,n.kt)("inlineCode",{parentName:"a"},"f6a0f61"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): add font size and line height tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ff65e47cfe56eb3efe976300b764ba13f8685ce"},(0,n.kt)("inlineCode",{parentName:"a"},"2ff65e4"))),(0,n.kt)("li",{parentName:"ul"},"docs(spacing): add spacing gap tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2d53727f8e817588421efea464e849c9f9e16dce"},(0,n.kt)("inlineCode",{parentName:"a"},"2d53727"))),(0,n.kt)("li",{parentName:"ul"},"docs(spacing): add missing gaps ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/442db468830150c8e4ad5f91775fc5b3c47dd655"},(0,n.kt)("inlineCode",{parentName:"a"},"442db46"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): minor fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e66513f08cff598881ce1051b482ddadf8e0593"},(0,n.kt)("inlineCode",{parentName:"a"},"6e66513"))),(0,n.kt)("li",{parentName:"ul"},"docs(spacing): aligned images ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e946fe59457b861a31939e99adf4b380777e01e0"},(0,n.kt)("inlineCode",{parentName:"a"},"e946fe5"))),(0,n.kt)("li",{parentName:"ul"},"docs(spacing): new image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fcd3294d53db76580b8bffc9678a09fd65b33113"},(0,n.kt)("inlineCode",{parentName:"a"},"fcd3294")))),(0,n.kt)("h4",{id:"\ufe0f-others-41"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"merge changes from develop into docusaurus token documentation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a9401384ddf5fcfbf29e50d34f3d7851be85f19a"},(0,n.kt)("inlineCode",{parentName:"a"},"a940138"))),(0,n.kt)("li",{parentName:"ul"},"perf(docs): restructuring order ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f4134d81d1cc59b8ba0d8669415b5eb31c0513d"},(0,n.kt)("inlineCode",{parentName:"a"},"8f4134d")))),(0,n.kt)("h3",{id:"041---2022-06-02"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.4.0...0.4.1"},"0.4.1")," - 2022-06-02"),(0,n.kt)("h4",{id:"-new-features-23"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(languageLabeledIcon) : add new component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/110558eeec37d5b5f616a95298a313ba230dd6f4"},(0,n.kt)("inlineCode",{parentName:"a"},"110558e"))),(0,n.kt)("li",{parentName:"ul"},"feat(LanguageLabeledIcon):add new component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d00200c278e1dab02b449b460a325e0f2e7b8ccd"},(0,n.kt)("inlineCode",{parentName:"a"},"d00200c"))),(0,n.kt)("li",{parentName:"ul"},"feat(newTabLabeledIcon) : add new component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f5cd31257a306a58c1d9cdbf7cb428701412369"},(0,n.kt)("inlineCode",{parentName:"a"},"8f5cd31"))),(0,n.kt)("li",{parentName:"ul"},"feat(labeledIconGroup) : add new component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/787d648342d78c4f9d28fde9d08e83089ef7b08f"},(0,n.kt)("inlineCode",{parentName:"a"},"787d648"))),(0,n.kt)("li",{parentName:"ul"},"feat(DownLoadLabeledIcon) : add new component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6ea2fa1ec17ce235401a8ac741afa8fede920d26"},(0,n.kt)("inlineCode",{parentName:"a"},"6ea2fa1")))),(0,n.kt)("h4",{id:"-bug-fixes-34"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(LabeledIcon) : fix lint errors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91b042f8c16bd3e99659c1c24a5f2a946c72b03f"},(0,n.kt)("inlineCode",{parentName:"a"},"91b042f"))),(0,n.kt)("li",{parentName:"ul"},"fix(LabeledIconGroup) : fix links for tests ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/daa10653ca37f3e83302e2ebcc566b5f5ec4c4d9"},(0,n.kt)("inlineCode",{parentName:"a"},"daa1065"))),(0,n.kt)("li",{parentName:"ul"},"fix(LanguageLabeledIcon):bug fix & languages change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1436e2bc270f8f079f07b7909254bd2e6e087084"},(0,n.kt)("inlineCode",{parentName:"a"},"1436e2b"))),(0,n.kt)("li",{parentName:"ul"},"fix(LabeledIconGroup):fix based on Langauge & Download Labeled icon components changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3015864ce740f534aa204402f85a9f392e342513"},(0,n.kt)("inlineCode",{parentName:"a"},"3015864"))),(0,n.kt)("li",{parentName:"ul"},"fix(newTabLabeledIcon) : add link item ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b1a9ada3dd7dae9e1841cfde5319a6ab37b15de2"},(0,n.kt)("inlineCode",{parentName:"a"},"b1a9ada"))),(0,n.kt)("li",{parentName:"ul"},"fix(Labeled Icons):minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/00f3022cdc2bfad634707f0d6d05768868f599be"},(0,n.kt)("inlineCode",{parentName:"a"},"00f3022")))),(0,n.kt)("h4",{id:"-enhancements-49"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcons): adjust new tab labeled icon to figma and replace px with rems ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/904615d789ea711678f43ce9f9d02a450289031f"},(0,n.kt)("inlineCode",{parentName:"a"},"904615d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(LanguageLabeledIcon):implement with pop up ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0f3dd8f0388484f94351a0ab0798ab53e84c9229"},(0,n.kt)("inlineCode",{parentName:"a"},"0f3dd8f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcon): add group wrapper in labeled icon stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4b7dd314230145b6239fd800d41f546ab5d9eebb"},(0,n.kt)("inlineCode",{parentName:"a"},"4b7dd31"))),(0,n.kt)("li",{parentName:"ul"},"refactor(DownloadLabeledIcon):implement with pop up ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aa61f9b7d449c08c08bc4c004da6a0458598c828"},(0,n.kt)("inlineCode",{parentName:"a"},"aa61f9b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcons): adjust language labeled icon to figma ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5741e3d2e95665ef12670335b12d29cfbf998fdc"},(0,n.kt)("inlineCode",{parentName:"a"},"5741e3d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcons): adjust download icon to figma and replace px with rems ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ae85307a62526fed75ef0b1d37ad59076370b5a"},(0,n.kt)("inlineCode",{parentName:"a"},"4ae8530"))),(0,n.kt)("li",{parentName:"ul"},"refactor(LanguageLabeledIcons):minor storybook change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/78f55442a80cbc2f716ba81274ed08204e3c502a"},(0,n.kt)("inlineCode",{parentName:"a"},"78f5544"))),(0,n.kt)("li",{parentName:"ul"},"refactor(LanguageLabeledIcon): set language code to uppercase and minor storybook change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac286931282c0a69bc6d7803e96cbe302db8994f"},(0,n.kt)("inlineCode",{parentName:"a"},"ac28693"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcon): adjust paddings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9c1ecddc52c81be1d952d0af67862a284eba9eec"},(0,n.kt)("inlineCode",{parentName:"a"},"9c1ecdd"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcons): update margins for group labeled icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5fa5ca9103a5d8ad1510c90cc8c46d0c82abcc63"},(0,n.kt)("inlineCode",{parentName:"a"},"5fa5ca9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcons): add variable for icon color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f9d3cba5115c5c91aaaca49c1f834950400673a"},(0,n.kt)("inlineCode",{parentName:"a"},"9f9d3cb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcons): update colors on download links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c04264229c91bfdea927fd22f4ee1e8ddbcebd5c"},(0,n.kt)("inlineCode",{parentName:"a"},"c042642")))),(0,n.kt)("h4",{id:"-internal-changes-16"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(labeledIconGroup) : lint changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/535cee4795dff75b35856cb4406a9bd33ee07ca4"},(0,n.kt)("inlineCode",{parentName:"a"},"535cee4"))),(0,n.kt)("li",{parentName:"ul"},"style(downloadLabeledIcon) : fix styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d8e3acb3bac1a4174d4bb526d6188cb5e5f8faa"},(0,n.kt)("inlineCode",{parentName:"a"},"6d8e3ac"))),(0,n.kt)("li",{parentName:"ul"},"style(downloadLabeledIcon) : fix alignment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/455801701d2958515885ba2c398312f0c56057b0"},(0,n.kt)("inlineCode",{parentName:"a"},"4558017"))),(0,n.kt)("li",{parentName:"ul"},"chore(LabeledIconGroup) : lint changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab364763bb2526adbbb7fc3c656a16b497568940"},(0,n.kt)("inlineCode",{parentName:"a"},"ab36476")))),(0,n.kt)("h3",{id:"040---2022-06-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.3.1...0.4.0"},"0.4.0")," - 2022-06-01"),(0,n.kt)("h4",{id:"-new-features-24"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(Carousel): create carousel for cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2b0d73798b4fcbf2897d7a8167d9b4d3b3374fb2"},(0,n.kt)("inlineCode",{parentName:"a"},"2b0d737"))),(0,n.kt)("li",{parentName:"ul"},"feat(ItemwithIcons): Initial Item group with icons, new item variation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7f4ea476264856845a07cd24be6ec86ccd21ed8d"},(0,n.kt)("inlineCode",{parentName:"a"},"7f4ea47"))),(0,n.kt)("li",{parentName:"ul"},"feat(utilities): add file and basic utilities ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/05c88b294a49590e3fb355fb6e113f5020442915"},(0,n.kt)("inlineCode",{parentName:"a"},"05c88b2"))),(0,n.kt)("li",{parentName:"ul"},"feat(utilities): add file with basic utilities classes #173 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/855185ff22c77efb75cc5c7850d181254b4c4927"},(0,n.kt)("inlineCode",{parentName:"a"},"855185f")))),(0,n.kt)("h4",{id:"-bug-fixes-35"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(tokens): hsla function for shadows ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8e5d37a6e88321b1e2daf995b407c4ddd6e866e"},(0,n.kt)("inlineCode",{parentName:"a"},"b8e5d37"))),(0,n.kt)("li",{parentName:"ul"},"fix(tokens): remove css var from less file ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a9c422476b412287713a6b475406615c3aed2aca"},(0,n.kt)("inlineCode",{parentName:"a"},"a9c4224"))),(0,n.kt)("li",{parentName:"ul"},"fix(carousel):add storybook controls descriptions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/269a60383ed1e54fc57e26d4eed6b37d1da32236"},(0,n.kt)("inlineCode",{parentName:"a"},"269a603"))),(0,n.kt)("li",{parentName:"ul"},"fix(item): remove image width css from item.less ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7b21cb2d5ddf6a6f72646f47fd268a0bd7af757d"},(0,n.kt)("inlineCode",{parentName:"a"},"7b21cb2"))),(0,n.kt)("li",{parentName:"ul"},"fix(table): Set responsive breakpoint to @tabletBreakpoint ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/067e01842030bfa5639e2a55cb8af5047bb2996f"},(0,n.kt)("inlineCode",{parentName:"a"},"067e018")))),(0,n.kt)("h4",{id:"-enhancements-50"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(item): import item.less in theme definitions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c51637480192dbece828616010174648ac865e2e"},(0,n.kt)("inlineCode",{parentName:"a"},"c516374"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Label):add corner,ribbon & basic label stories and styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2bbbb947113a59127f91b86917ef0edbf36ab16"},(0,n.kt)("inlineCode",{parentName:"a"},"e2bbbb9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Label):style changes based on label importance class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce4d5d1a5bf1b1183242a253e37c509d61f82b8c"},(0,n.kt)("inlineCode",{parentName:"a"},"ce4d5d1"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): rename gap to space and added em spaces ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/719efc44070ef87f049a92e4da96bb111e9fc8ff"},(0,n.kt)("inlineCode",{parentName:"a"},"719efc4"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): add classes for size, set default to tile and add controls for grouped items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5a0405abba4e5f5d36f899dc9e47f43a96d5e49"},(0,n.kt)("inlineCode",{parentName:"a"},"d5a0405"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): add borders, shadows, shapes and z-index tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7069106c2b0ada9cdbad63249b4ada7fde72e05f"},(0,n.kt)("inlineCode",{parentName:"a"},"7069106"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): name spacing tokens gaps and added missing values up to 80px as documented ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9fbd912a6f027150149d82678f88885a939120b0"},(0,n.kt)("inlineCode",{parentName:"a"},"9fbd912"))),(0,n.kt)("li",{parentName:"ul"},"refactor(quote): Rename sourceInfo to extra info ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/76c2b400de4814fe79f303bfd2a82842c848231c"},(0,n.kt)("inlineCode",{parentName:"a"},"76c2b40"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): WIP replacing unstackable with row ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e3a44de4b2dd26667e80e0d131c55b08f3c527d9"},(0,n.kt)("inlineCode",{parentName:"a"},"e3a44de"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tocens): add color design tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/13bb165e103a25aadb9da6414773dc0d35081d88"},(0,n.kt)("inlineCode",{parentName:"a"},"13bb165"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): adjust margins to match figma designs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6334581b336a2f486e85199f371126beea47b92f"},(0,n.kt)("inlineCode",{parentName:"a"},"6334581"))),(0,n.kt)("li",{parentName:"ul"},"refactor(carousel): remove title from story and color on card hover ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/12a1d7c3bd5e7ba6edf4eb20a2d7a6f8f22955f9"},(0,n.kt)("inlineCode",{parentName:"a"},"12a1d7c"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): updated sizes with 4-8-16px increments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f53d655df2b24053a5d331c56dfd14bd3602dfd"},(0,n.kt)("inlineCode",{parentName:"a"},"1f53d65"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): added size tokens to be used for width of elements ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cda5dea1f6ad1ae980c89999d323d7b385894025"},(0,n.kt)("inlineCode",{parentName:"a"},"cda5dea"))),(0,n.kt)("li",{parentName:"ul"},"change(utilities): values need important rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/96150d9a22cb6be6f338f1e9d052cbd65e3602fc"},(0,n.kt)("inlineCode",{parentName:"a"},"96150d9"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): added also rem space values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aedbbddaf7f8be88ed2f8a2b8c21b60752896c53"},(0,n.kt)("inlineCode",{parentName:"a"},"aedbbdd"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): updated z-index tokens with negative values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/404efe4244d67276b435e60a1d7a69aaa90e3d8a"},(0,n.kt)("inlineCode",{parentName:"a"},"404efe4"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): add 14px font size token ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8d8695dce62e7f29af01447308460e4fe3f72b21"},(0,n.kt)("inlineCode",{parentName:"a"},"8d8695d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): restructured and improved sections navigation #174 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b47b0266ffd6baeaf1a5aea1a7ab22c909976de1"},(0,n.kt)("inlineCode",{parentName:"a"},"b47b026"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): add 12 and 14px font size token #176 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/368114729536f03dd85c2d3565b984c3bdfe3a72"},(0,n.kt)("inlineCode",{parentName:"a"},"3681147"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): remove conditional border radius ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f0fe5ada7b74e9c87623dd2b2774283dd89b9a58"},(0,n.kt)("inlineCode",{parentName:"a"},"f0fe5ad")))),(0,n.kt)("h4",{id:"-documentation-changes-16"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(website): created new sections, improved website navigation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/243f0be4d7fa6e988da0ca0f586f5ea478573eef"},(0,n.kt)("inlineCode",{parentName:"a"},"243f0be"))),(0,n.kt)("li",{parentName:"ul"},"docs(homepage): adding design system homepage with links for upcoming sections ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c9a968508acff74d1182e68cf049046dafd564c5"},(0,n.kt)("inlineCode",{parentName:"a"},"c9a9685"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): copyedit, improved navigation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/998762a5bd40d08f619c00743b66d82b43aed653"},(0,n.kt)("inlineCode",{parentName:"a"},"998762a"))),(0,n.kt)("li",{parentName:"ul"},"docs(website): restructuring, moved current DS docs to new folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8bb612f1313dfc739d7912aa2e3252f468e1122f"},(0,n.kt)("inlineCode",{parentName:"a"},"8bb612f"))),(0,n.kt)("li",{parentName:"ul"},"docs(homepage): copy editing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee37d6f1d282b973af744f4305c0eb94c0993113"},(0,n.kt)("inlineCode",{parentName:"a"},"ee37d6f")))),(0,n.kt)("h4",{id:"\ufe0f-others-42"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Release 0.4.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f4bc50928ab877f3670b181dbe6e8cfff7fa2daa"},(0,n.kt)("inlineCode",{parentName:"a"},"f4bc509"))),(0,n.kt)("li",{parentName:"ul"},"feature(homepage): added Item group with icons #167 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ec99f53aeb183b24073be4014a9c2ec30d5235c"},(0,n.kt)("inlineCode",{parentName:"a"},"2ec99f5"))),(0,n.kt)("li",{parentName:"ul"},"feature(tokens): added borders, z-index, shadows tokens #171 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/74c178837cedc7ee9fc55effde1096dc03245574"},(0,n.kt)("inlineCode",{parentName:"a"},"74c1788"))),(0,n.kt)("li",{parentName:"ul"},"feature(tokens): added initial color design tokens #169 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/da3eae05d07783aa5eadaed5d508ee3be8acc47d"},(0,n.kt)("inlineCode",{parentName:"a"},"da3eae0"))),(0,n.kt)("li",{parentName:"ul"},"perf(carousel): added slick library ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca9be5125efa864bc30a0178274d744c5b2bc500"},(0,n.kt)("inlineCode",{parentName:"a"},"ca9be51")))),(0,n.kt)("h3",{id:"031---2022-05-19"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.3.0...0.3.1"},"0.3.1")," - 2022-05-19"),(0,n.kt)("h4",{id:"-bug-fixes-36"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(input,segment): toggle inputs and padding fixes within Volto sidebar forms ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/de030d617325a8f9d028a5c1615faa160fcdd763"},(0,n.kt)("inlineCode",{parentName:"a"},"de030d6")))),(0,n.kt)("h4",{id:"-enhancements-51"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(login): restored width of login container to 376px ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0564293346b2402c3c86009b61066da4200662b8"},(0,n.kt)("inlineCode",{parentName:"a"},"0564293")))),(0,n.kt)("h3",{id:"030---2022-05-17"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.2.4...0.3.0"},"0.3.0")," - 2022-05-17"),(0,n.kt)("h4",{id:"-new-features-25"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(Callout):create Callout component with Blockquote style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3d486b1c2c7f74ee8bc4b3a5e1bf3993ac98f6dd"},(0,n.kt)("inlineCode",{parentName:"a"},"3d486b1"))),(0,n.kt)("li",{parentName:"ul"},"feat(callout): Align the Callout component with Volto slate component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e9343ff7008cd3d60700929e8861c7bdd06df4d3"},(0,n.kt)("inlineCode",{parentName:"a"},"e9343ff")))),(0,n.kt)("h4",{id:"-bug-fixes-37"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(testimonial): fix storybook arg names ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b9df52f7151ef759fd672d365b2d74f6db535ad0"},(0,n.kt)("inlineCode",{parentName:"a"},"b9df52f"))),(0,n.kt)("li",{parentName:"ul"},"fix(table): tweak responsive table for extra long headers ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7f9f9e25f7c57d4bf7edd2546a7579b892867b5c"},(0,n.kt)("inlineCode",{parentName:"a"},"7f9f9e2"))),(0,n.kt)("li",{parentName:"ul"},"fix(quote): fix color and padding issue ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/310d6b37bdf5df3da2d2103eab8f4fa5020c95ab"},(0,n.kt)("inlineCode",{parentName:"a"},"310d6b3"))),(0,n.kt)("li",{parentName:"ul"},"fix(accordion): Fix accordion active title color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/57af1650a0b830e01c79e21b130784190defbcc0"},(0,n.kt)("inlineCode",{parentName:"a"},"57af165"))),(0,n.kt)("li",{parentName:"ul"},"fix(testimonial): remove info arguement ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9593d95f6352fb5aea48c3611b27b4bc6a9ae7e4"},(0,n.kt)("inlineCode",{parentName:"a"},"9593d95")))),(0,n.kt)("h4",{id:"-enhancements-52"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(Table):add responsive mobile table story and styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aed69e698e5b89e33a4c331570755934267492af"},(0,n.kt)("inlineCode",{parentName:"a"},"aed69e6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(testimonial): adjust to volto design | fix avatar image size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/546070e494ad187c50913b5742dab49ce5475a84"},(0,n.kt)("inlineCode",{parentName:"a"},"546070e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Quote):rename Pullquote component to Quote ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9384a0c129b8e4eed637e51a9669c41d8ade69d4"},(0,n.kt)("inlineCode",{parentName:"a"},"9384a0c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Quote):rename Quote.Metadata to Quote.SourceInfo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dfae8b1c147659d24dfd1a13fb4c3098e5865a12"},(0,n.kt)("inlineCode",{parentName:"a"},"dfae8b1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Quote): rename Author to Source ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d400f6a0ec0062f58782b4e170f4a1a9a31c56c"},(0,n.kt)("inlineCode",{parentName:"a"},"6d400f6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Quote):move Testimonial component under Quote folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2467c2089577d67ef5689a2507cb860a837f6a0"},(0,n.kt)("inlineCode",{parentName:"a"},"e2467c2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(testimonial): readjust rounded card ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b41933417a44dabcf829a3346d91c142dd6472d3"},(0,n.kt)("inlineCode",{parentName:"a"},"b419334"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Table):wrap table with semantic ui container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24ac2bb4813df33547f684220e1e12af5ca6df7e"},(0,n.kt)("inlineCode",{parentName:"a"},"24ac2bb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Testimonial):minor storybook bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7b6d128c6be3b2481d4765cebca82af6cafbea05"},(0,n.kt)("inlineCode",{parentName:"a"},"7b6d128"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Callout): wrap story with semantic ui container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ead362d88f43fa1380e8be5481cbc38c055060f8"},(0,n.kt)("inlineCode",{parentName:"a"},"ead362d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(quote): update action name to match the functionality ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/caf2e359cada8056f280d2cd137776d64f82a2af"},(0,n.kt)("inlineCode",{parentName:"a"},"caf2e35"))),(0,n.kt)("li",{parentName:"ul"},"refactor(table): add borders to responsive table with celled attribute ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8a71a670fb34a11fbe4cef7365b91c6be84b5b54"},(0,n.kt)("inlineCode",{parentName:"a"},"8a71a67"))),(0,n.kt)("li",{parentName:"ul"},"change(table): make use of headerSortableWhiteSpace variable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fd836fbe82e92864a628bf4d9d3093674890f722"},(0,n.kt)("inlineCode",{parentName:"a"},"fd836fb"))),(0,n.kt)("li",{parentName:"ul"},"change(table): use the @mobileLandscapeBreakpoint for max 480px media query ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/90880ab324b6a66c7741819dd0d913504751454f"},(0,n.kt)("inlineCode",{parentName:"a"},"90880ab"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Quote):rename pullquote to Quote in Testimonial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f54da192ab3b0823b0d6c77254f8954ab94506c8"},(0,n.kt)("inlineCode",{parentName:"a"},"f54da19"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Testimonial): change card class name ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e995c32bc70780e4315c4dc02d6b6fa9a0c5b29d"},(0,n.kt)("inlineCode",{parentName:"a"},"e995c32"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Testimonial): prettier changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/904594b9814c3d8900656f0e4c8d3a99481efe94"},(0,n.kt)("inlineCode",{parentName:"a"},"904594b")))),(0,n.kt)("h4",{id:"\ufe0f-others-43"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feature(tokens): added tokens folder for design tokens we can use in the system ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a542172cfd84dde0286b4332e66a617a1f3d13bf"},(0,n.kt)("inlineCode",{parentName:"a"},"a542172"))),(0,n.kt)("li",{parentName:"ul"},"perf(lint): fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2ef3abb9daa8fee3dd103adc14246c412951427"},(0,n.kt)("inlineCode",{parentName:"a"},"f2ef3ab"))),(0,n.kt)("li",{parentName:"ul"},"Release 0.3.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8724b2809027b2e359dcd64e418a33cade4ad487"},(0,n.kt)("inlineCode",{parentName:"a"},"8724b28")))),(0,n.kt)("h3",{id:"024---2022-05-13"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.2.3...0.2.4"},"0.2.4")," - 2022-05-13"),(0,n.kt)("h4",{id:"-enhancements-53"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(segment): brought back overrides from pastanaga into our theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/14efd021f81898bb0f2d3f1a2e8677445420591a"},(0,n.kt)("inlineCode",{parentName:"a"},"14efd02"))),(0,n.kt)("li",{parentName:"ul"},"change(container): removed padding from containers restoring thus the defaults ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c2ed813cf2f7ce284e33f2e94e02ff16678c2d05"},(0,n.kt)("inlineCode",{parentName:"a"},"c2ed813"))),(0,n.kt)("li",{parentName:"ul"},"change(grid-story): added container as grid width is influenced by container width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/459f4813ee3c5325a3db22d417ac5f23063bd4d2"},(0,n.kt)("inlineCode",{parentName:"a"},"459f481"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumb): removed padding from breadcrumb added by container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5df5675a519085badc030416e5bb784a9f73321"},(0,n.kt)("inlineCode",{parentName:"a"},"c5df567"))),(0,n.kt)("li",{parentName:"ul"},"change(container): modified all outputted widths to align to grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f29cefa4bfee1fe50844c8450de39ef4b0915d4"},(0,n.kt)("inlineCode",{parentName:"a"},"9f29cef"))),(0,n.kt)("li",{parentName:"ul"},"change(breakpoints): restore Semantic UI breakpoints, adding extra needed values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e7f5b1e4fac6453458078bb02cdc66c328843b59"},(0,n.kt)("inlineCode",{parentName:"a"},"e7f5b1e"))),(0,n.kt)("li",{parentName:"ul"},"change(container): restore maxWidth to 100% now that the last value is 1120px ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8b55c58d3bbc8967b20de19a828aedd2f1473ee5"},(0,n.kt)("inlineCode",{parentName:"a"},"8b55c58"))),(0,n.kt)("li",{parentName:"ul"},"change(header): wrap header globalnav links useful for editing section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/10d4f56624510eb63155ab330dcf0475b0728ed4"},(0,n.kt)("inlineCode",{parentName:"a"},"10d4f56"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumb): added vertical variant to the breadcrumbs like we do in Volto ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f405f8437be6be221b055a41c5d391f4cc94385d"},(0,n.kt)("inlineCode",{parentName:"a"},"f405f84"))),(0,n.kt)("li",{parentName:"ul"},"change(breakpoints): added also contentBreakpoint for backward compatibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b6c9212378a37639e6154d8d8e837169bcbac8b5"},(0,n.kt)("inlineCode",{parentName:"a"},"b6c9212")))),(0,n.kt)("h4",{id:"\ufe0f-others-44"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"[JENKINSFILE]"," Add failure comment, no jenkins fail ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c325bf14f3fb0da150f2a56cda0a9f03d8d8a628"},(0,n.kt)("inlineCode",{parentName:"a"},"c325bf1"))),(0,n.kt)("li",{parentName:"ul"},"prettier changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/134da52549b9d5eac5a12b7ad3005073500ac2c4"},(0,n.kt)("inlineCode",{parentName:"a"},"134da52"))),(0,n.kt)("li",{parentName:"ul"},"[JENKINSFILE]"," format PR comments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/739438c64950c745d630d1998314a2bed595b23a"},(0,n.kt)("inlineCode",{parentName:"a"},"739438c"))),(0,n.kt)("li",{parentName:"ul"},"[JENKINSFILE]"," mention comment author in comment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/39a26aa1ff0f35e93e8df9f442c29c5ab79ff493"},(0,n.kt)("inlineCode",{parentName:"a"},"39a26aa"))),(0,n.kt)("li",{parentName:"ul"},"[JENKINSFILE]"," remove debug, add error per stage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/903eecdb6bcbb8d73cff5e447d80c85e2a2c906d"},(0,n.kt)("inlineCode",{parentName:"a"},"903eecd")))),(0,n.kt)("h3",{id:"023---2022-04-29"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.2.2...0.2.3"},"0.2.3")," - 2022-04-29"),(0,n.kt)("h4",{id:"-new-features-26"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(CallToAction):add feat call to action ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab53642f27c996f929ff871d0794add39bab6c23"},(0,n.kt)("inlineCode",{parentName:"a"},"ab53642")))),(0,n.kt)("h4",{id:"-enhancements-54"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(button): add container to stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6c02c1953e102f2d90ab23023d6b4dfc738ced2e"},(0,n.kt)("inlineCode",{parentName:"a"},"6c02c19"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tab): update vertical tab columns and content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b473fabee196a3ec420e29160448d2be3d1685cc"},(0,n.kt)("inlineCode",{parentName:"a"},"b473fab"))),(0,n.kt)("li",{parentName:"ul"},'refactor(call to action):render call to action with Button as="a" ',(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e7dfabfc2f006505b0f1c802dc6fb48611518bcb"},(0,n.kt)("inlineCode",{parentName:"a"},"e7dfabf"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button): update inverted button colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c822021ab37939632416ce74c0cc88a64b98a3c1"},(0,n.kt)("inlineCode",{parentName:"a"},"c822021"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Tab):scrollbar change in mobile & vertical tab fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0e34cbf459e67b6910217f30a44a1e81f33df622"},(0,n.kt)("inlineCode",{parentName:"a"},"0e34cbf"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): added icon class to share icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48e866e4251dd517c0477cd5a42cec1a98e2f16d"},(0,n.kt)("inlineCode",{parentName:"a"},"48e866e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Button): move button to forms folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/94996fcdf1ea7e55c63dd44e10edf1b44b9bdef5"},(0,n.kt)("inlineCode",{parentName:"a"},"94996fc"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Tab):minor change in secondary pointing menu variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/280b6c41a2107bccb38500f54eb5663ef62c7ae3"},(0,n.kt)("inlineCode",{parentName:"a"},"280b6c4")))),(0,n.kt)("h4",{id:"-documentation-changes-17"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(button): import call to action stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e4eed44e3519ae3dba7d16e252271a964fcb7a4b"},(0,n.kt)("inlineCode",{parentName:"a"},"e4eed44")))),(0,n.kt)("h3",{id:"022---2022-04-22"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.2.1...0.2.2"},"0.2.2")," - 2022-04-22"),(0,n.kt)("h4",{id:"-bug-fixes-38"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(publicationCard): restore line endings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/582859e0ab4fa969662d4cf3e60fe75b160f052a"},(0,n.kt)("inlineCode",{parentName:"a"},"582859e"))),(0,n.kt)("li",{parentName:"ul"},"fix(form): added back overrides from Pastanaga theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a3f7ff810cdeb55b009c2dadc6753d01bbd10d8c"},(0,n.kt)("inlineCode",{parentName:"a"},"a3f7ff8"))),(0,n.kt)("li",{parentName:"ul"},"fix(OrderedList) : add list only if sub list exists ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8acbc8d5a492b411b169b106ab64bb78563f891f"},(0,n.kt)("inlineCode",{parentName:"a"},"8acbc8d"))),(0,n.kt)("li",{parentName:"ul"},"fix(label): update highlight label color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d55bbb03a5d28b2f269c1a1ca447c67dcdc7a748"},(0,n.kt)("inlineCode",{parentName:"a"},"d55bbb0"))),(0,n.kt)("li",{parentName:"ul"},"fix(publication card): run prettier ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/81a5bfc123ce69c44562a5585e41a630fe0bbf5a"},(0,n.kt)("inlineCode",{parentName:"a"},"81a5bfc"))),(0,n.kt)("li",{parentName:"ul"},"fix(avatar) : fix naming convention for arg ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/84fc5fa8faa7887f45cd52e58aa6fa6f8b951d26"},(0,n.kt)("inlineCode",{parentName:"a"},"84fc5fa"))),(0,n.kt)("li",{parentName:"ul"},"fix(tab): restore mobile font sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/58f39be02a45ade92873b86597c33763379e0f44"},(0,n.kt)("inlineCode",{parentName:"a"},"58f39be"))),(0,n.kt)("li",{parentName:"ul"},"fix(addForm): add min height to add form and fixed block chooser overflow ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca4415d49b973378894ec9270501beafbefff776"},(0,n.kt)("inlineCode",{parentName:"a"},"ca4415d"))),(0,n.kt)("li",{parentName:"ul"},"fix(OrderedList): adjust margins to fourth sublists ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/663d384790920f164d51edb304c411275972fbb7"},(0,n.kt)("inlineCode",{parentName:"a"},"663d384"))),(0,n.kt)("li",{parentName:"ul"},"fix(dropdown): being hidden because of third party css ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d353dfd65e93d08a3c8584adeeebea50bf7efe8"},(0,n.kt)("inlineCode",{parentName:"a"},"7d353df"))),(0,n.kt)("li",{parentName:"ul"},"fix(modal): overflow hidden as clearfix of last child from modal ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4923f5165a0a7e8d2dd33ea4c35f9f951372909"},(0,n.kt)("inlineCode",{parentName:"a"},"b4923f5"))),(0,n.kt)("li",{parentName:"ul"},"fix(RelatedContent):fix merge conflict ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/adc34bfdac7d668aa27578eb2a4844c136e0360f"},(0,n.kt)("inlineCode",{parentName:"a"},"adc34bf"))),(0,n.kt)("li",{parentName:"ul"},"fix(button): labeled class needs to be placed after left or right keyword ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53d1204fe52665fe1023747da359d3100d45e58f"},(0,n.kt)("inlineCode",{parentName:"a"},"53d1204")))),(0,n.kt)("h4",{id:"-enhancements-55"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(card): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e10e3d610a313c4e1995676130e2677f0ebab070"},(0,n.kt)("inlineCode",{parentName:"a"},"e10e3d6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add card variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e16d05b4afa678b9089987b42a8257323a78093f"},(0,n.kt)("inlineCode",{parentName:"a"},"e16d05b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): remove stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0deb0cab6d7fd73957b149325960c266c33cdc6f"},(0,n.kt)("inlineCode",{parentName:"a"},"0deb0ca"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):delete primary and secondary card stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f95d227a026ecc34b29cc3e4938c3d13906cfd8"},(0,n.kt)("inlineCode",{parentName:"a"},"1f95d22"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Avatar) : remake avatar as card variant ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea77cdd1acafd2ea288f11074423705e5d6b7412"},(0,n.kt)("inlineCode",{parentName:"a"},"ea77cdd"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add styles for card variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7407bd30e722f2d7b1a9d75a8c7cf155bf1c4996"},(0,n.kt)("inlineCode",{parentName:"a"},"7407bd3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): add story with related content inside of a tab ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dca008a35b27e4a75c13ef965ab8764df0d3b357"},(0,n.kt)("inlineCode",{parentName:"a"},"dca008a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): Rename variables from avatar to rounded ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/be0131631cf8e303f4077fe93b6685fd6b34bf46"},(0,n.kt)("inlineCode",{parentName:"a"},"be01316"))),(0,n.kt)("li",{parentName:"ul"},"refactor(avatar): update less variables and layer structure ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f965db1dd17d90e7165f66d39fdda9016c2eae91"},(0,n.kt)("inlineCode",{parentName:"a"},"f965db1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(PublicationCard):remake publication card to be a semantic card variation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5a0c6ab21c22a53aa6e34fafecfae15a3d435391"},(0,n.kt)("inlineCode",{parentName:"a"},"5a0c6ab"))),(0,n.kt)("li",{parentName:"ul"},"change(button): simplified button styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fe892d6f2f59aecf3f9e8b04f18b55fb0d384021"},(0,n.kt)("inlineCode",{parentName:"a"},"fe892d6"))),(0,n.kt)("li",{parentName:"ul"},"change(button): simplified storybook naming and examples ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9a7df4f46c24a234dd8bb290336ac8e7d5c7422b"},(0,n.kt)("inlineCode",{parentName:"a"},"9a7df4f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Avatar) : convert avatar component to card variation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2004a941c18f8fe21f96f88d3288446fd5e283e8"},(0,n.kt)("inlineCode",{parentName:"a"},"2004a94"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Related Content): change in grid and add see all button ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/955450e974c89aa2297eaa28d278e5098fea7705"},(0,n.kt)("inlineCode",{parentName:"a"},"955450e"))),(0,n.kt)("li",{parentName:"ul"},"change(button): added back button.overrides from pastanaga theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3b55acbf8b8df0e3daa475ab12e4db44693a4053"},(0,n.kt)("inlineCode",{parentName:"a"},"3b55acb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add card class control ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/68c91a9bf7e78874e12e868a0c466f12715a0698"},(0,n.kt)("inlineCode",{parentName:"a"},"68c91a9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):delete publication card variables & overrides files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6be8a037118762cf2280fbe44ba097a0cb7a79e0"},(0,n.kt)("inlineCode",{parentName:"a"},"6be8a03"))),(0,n.kt)("li",{parentName:"ul"},"refactor(OrderedList): rename TOC to Ordered List and add container to the story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e00c4db8e623651eb2ec9ad45de6e3d8c2693b2b"},(0,n.kt)("inlineCode",{parentName:"a"},"e00c4db"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add card grid fluid story with no columns ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f38251ca3fa04a9b586468ead44bbfe8ae110fbb"},(0,n.kt)("inlineCode",{parentName:"a"},"f38251c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(list): remove horizontal control ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f5e576a37452ed368d6f9cf4d55960e737d48ad"},(0,n.kt)("inlineCode",{parentName:"a"},"1f5e576"))),(0,n.kt)("li",{parentName:"ul"},"refactor(avatarGrid): update less variables and layer structure ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/db554a894ca10ba50ff425883000177854ea2455"},(0,n.kt)("inlineCode",{parentName:"a"},"db554a8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Related Content):show button when there are more hidden cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/57ff1c8d485d16c34002da22bd765069e6eb3df0"},(0,n.kt)("inlineCode",{parentName:"a"},"57ff1c8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(RelatedContent):change to use new card variant instead of publication card component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7cf424ae885d9b657a7635fc67a74a8af4c4e905"},(0,n.kt)("inlineCode",{parentName:"a"},"7cf424a"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumb): brought back pastanaga overrides to breadcrumbs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bca1c939c1d49dab1d4b8e72c0999d78383fd643"},(0,n.kt)("inlineCode",{parentName:"a"},"bca1c93"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):delete publication card folder & story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/68bf77306d710651bb2177d429f42b8efc127db2"},(0,n.kt)("inlineCode",{parentName:"a"},"68bf773"))),(0,n.kt)("li",{parentName:"ul"},"change(buttons): modified basic and circular variant behavior ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c06fed9fa74216cf76971b7789dad231a5125ce8"},(0,n.kt)("inlineCode",{parentName:"a"},"c06fed9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):tertiary variation minor story update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87b8dca0b8ef6c6f0fbf1ea6bc71b7b8b6ee9205"},(0,n.kt)("inlineCode",{parentName:"a"},"87b8dca"))),(0,n.kt)("li",{parentName:"ul"},"refactor(DescriptionList): add container to story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d647c1a17097eae9bdfaf8eb8068f6d1d0b13972"},(0,n.kt)("inlineCode",{parentName:"a"},"d647c1a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(List):render ordered list with ol,li tags ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87813c1a942ce498f89b51fe79a59b117afd28b0"},(0,n.kt)("inlineCode",{parentName:"a"},"87813c1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(OrderedList) : change table of contents story to ordered list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb6197c872a97f1b990c675554b1da9b0a8f7959"},(0,n.kt)("inlineCode",{parentName:"a"},"cb6197c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(publicationCard): update tag and name variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c109ad98f257fea233f31d767c4a037a2758be2d"},(0,n.kt)("inlineCode",{parentName:"a"},"c109ad9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(UnorderedList): update list as ul, list items as li and add container to strory ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2c096e117125a7fb943a5d2e665c0077761b271c"},(0,n.kt)("inlineCode",{parentName:"a"},"2c096e1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):organize controls and minor bug fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f3f6e35df077e348ea1e0c2e5c5bd73d4af5aef9"},(0,n.kt)("inlineCode",{parentName:"a"},"f3f6e35"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables): publication card style changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5a84e99ebea6345e45fac3b7ffc077ec42dfb45"},(0,n.kt)("inlineCode",{parentName:"a"},"c5a84e9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables): add less to related content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e1a55438a9fc9dd141a9515c5363d834732a0c4d"},(0,n.kt)("inlineCode",{parentName:"a"},"e1a5543"))),(0,n.kt)("li",{parentName:"ul"},"refactor(RelatedContent):delete publication card component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ed0ed4a1497224b669386f6d0942a79d00555ea"},(0,n.kt)("inlineCode",{parentName:"a"},"2ed0ed4"))),(0,n.kt)("li",{parentName:"ul"},"change(button): basic button is again without padding, border and background ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5a907c721bda1d065153b108d6c9dc0ee20a886d"},(0,n.kt)("inlineCode",{parentName:"a"},"5a907c7"))),(0,n.kt)("li",{parentName:"ul"},"refactor(PublicationCard):remove link wrapper ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5911a0db1967c58311a6776864f92bc0692052fa"},(0,n.kt)("inlineCode",{parentName:"a"},"5911a0d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables): change publication card height per viewport ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d7a525615672f387a2c8a0457bcde5c08aec45dd"},(0,n.kt)("inlineCode",{parentName:"a"},"d7a5256"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Timeline):change timeline icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b2fe0bf9a7a4583f1f10765a9f8c3c989412d472"},(0,n.kt)("inlineCode",{parentName:"a"},"b2fe0bf"))),(0,n.kt)("li",{parentName:"ul"},"refactor(publicationCard): replace px with rems ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53bf8da5e42343de7f7f940c266beb5e530dd63a"},(0,n.kt)("inlineCode",{parentName:"a"},"53bf8da"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Related Content): change in related content grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bf856ce66f9a74cb440cf8a7c93f62cd0d3965e9"},(0,n.kt)("inlineCode",{parentName:"a"},"bf856ce"))),(0,n.kt)("li",{parentName:"ul"},"refactor(List):render description list with dl,dt,dd tags ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ec669a74da08f7a82bb4a1a0a2d752b6ee5ba4bb"},(0,n.kt)("inlineCode",{parentName:"a"},"ec669a7"))),(0,n.kt)("li",{parentName:"ul"},"change(button): show only labeled variant for buttons with icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bf499446dc02e4be8d6452a3e0cba5797b8a005e"},(0,n.kt)("inlineCode",{parentName:"a"},"bf49944"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): import image for rounded card ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca5a47ea2cd713336c7c8ecdebebbdacd681282f"},(0,n.kt)("inlineCode",{parentName:"a"},"ca5a47e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progress): add container to story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dfb33bb8f3560d43e3e7300560bb557591c0a6ba"},(0,n.kt)("inlineCode",{parentName:"a"},"dfb33bb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): add publication card story with different description sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/23af97bc708ac70d70b92efe9a782548c65aabc5"},(0,n.kt)("inlineCode",{parentName:"a"},"23af97b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(List):render default list with dl & dt tags ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ece2280eb06481b3fd42e7a1ffec5c71c08e736f"},(0,n.kt)("inlineCode",{parentName:"a"},"ece2280"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): add publication cards stories with longer description ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/37adefa500c8a85a5b0b86e5b17c687828ea21fc"},(0,n.kt)("inlineCode",{parentName:"a"},"37adefa"))),(0,n.kt)("li",{parentName:"ul"},"change(button): basic icon buttons no longer have box shadows ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c2f3ea38ec3c62dce37612ac1e666a0b064309f7"},(0,n.kt)("inlineCode",{parentName:"a"},"c2f3ea3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): remove story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/afc5f7903a0049563355e3c9292fdd89fa532740"},(0,n.kt)("inlineCode",{parentName:"a"},"afc5f79"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables): change card description line number per device ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6946fdae2a1ede28a0e5971736817b3ae19bf290"},(0,n.kt)("inlineCode",{parentName:"a"},"6946fda"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): update rounded card image path ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8db3a85a45e8e05a3fe86ab824e7550d437222c3"},(0,n.kt)("inlineCode",{parentName:"a"},"8db3a85"))),(0,n.kt)("li",{parentName:"ul"},"refactor(DefaultList): add container to story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f971193369007a45fea7d517cdf0fc2314ebda69"},(0,n.kt)("inlineCode",{parentName:"a"},"f971193"))),(0,n.kt)("li",{parentName:"ul"},"change(button): bumped z-index of sidenav expand button ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/445ed8a8ede4e458814f380bee0600dbb8ff42f6"},(0,n.kt)("inlineCode",{parentName:"a"},"445ed8a"))),(0,n.kt)("li",{parentName:"ul"},"change(progress,label): color accessibility fixes #151 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/09cf6e34ed5a57bfbfc8fe95787591387776df86"},(0,n.kt)("inlineCode",{parentName:"a"},"09cf6e3"))),(0,n.kt)("li",{parentName:"ul"},"change(button): text button now has an underline with a focus border like other buttons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cdd90436bf0c4f8acaca8bf27afef672fb0f3a89"},(0,n.kt)("inlineCode",{parentName:"a"},"cdd9043"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): update card variation grids path ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/756589cff5d3607994d6cf092cb5dd0e36d51903"},(0,n.kt)("inlineCode",{parentName:"a"},"756589c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): minor fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3a880d7d14c89137b2a33342aed1a31c1b2b3939"},(0,n.kt)("inlineCode",{parentName:"a"},"3a880d7"))),(0,n.kt)("li",{parentName:"ul"},"change(button): primary color is blue and secondary is green ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53e0a0c6d32a04c52d089914a224b010b04a8846"},(0,n.kt)("inlineCode",{parentName:"a"},"53e0a0c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(List):change styles to match with the tags lists are rendered ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2673890449579a0421d8ac1c89ad4c5e850322d7"},(0,n.kt)("inlineCode",{parentName:"a"},"2673890"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progress): update colors for accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea2f454f73c859ac21c4fe6e415a2442a6c3d64c"},(0,n.kt)("inlineCode",{parentName:"a"},"ea2f454"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): move avatarGrid & relatedContent to Card folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1959d521de222c95aa13d9b3db249d133f879ccd"},(0,n.kt)("inlineCode",{parentName:"a"},"1959d52"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Timeline): change storybook timeline colors to fix accessibility issues ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/79da8dca48c709fd1df83b858296126f5e5c5753"},(0,n.kt)("inlineCode",{parentName:"a"},"79da8dc"))),(0,n.kt)("li",{parentName:"ul"},"change(segment): restore light grey background color for secondary segments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8716b08a977cacf5dbdab8ab23c714bb03066b0c"},(0,n.kt)("inlineCode",{parentName:"a"},"8716b08"))),(0,n.kt)("li",{parentName:"ul"},"refactor(relatedContent): adjust column paddings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8a1520d1b958b65e968bffdba22c3484916a475e"},(0,n.kt)("inlineCode",{parentName:"a"},"8a1520d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): clear up code ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ada154b5ab562dc7605604de8002a9d3461e594"},(0,n.kt)("inlineCode",{parentName:"a"},"3ada154"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): use the rounded class for avatar grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8c000f3c37103e0068b6d6554783da8188603442"},(0,n.kt)("inlineCode",{parentName:"a"},"8c000f3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card) Update rounded card class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/140b58746673a864d7ea218c4f8a02dc70207af4"},(0,n.kt)("inlineCode",{parentName:"a"},"140b587"))),(0,n.kt)("li",{parentName:"ul"},"refactor(avatar): add variable for image border radius ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c23341c66d34a9dfa572be4df24f1faf4325d58e"},(0,n.kt)("inlineCode",{parentName:"a"},"c23341c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(label): add container to story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/565101fff2c8860deedd599b7b0cff0660c663f6"},(0,n.kt)("inlineCode",{parentName:"a"},"565101f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progress): update value color for accessibility error ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6fc76f8ff3df4bf2b83863687e5ab6bd5e4cd1ef"},(0,n.kt)("inlineCode",{parentName:"a"},"6fc76f8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):use jsx extension ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/413d3284869a35f39f886df7862db6a52e8cc18e"},(0,n.kt)("inlineCode",{parentName:"a"},"413d328")))),(0,n.kt)("h4",{id:"-internal-changes-17"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(Avatar) : add container to stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/41b748cd23002d597d9b6fbb7947a443ef40f9b2"},(0,n.kt)("inlineCode",{parentName:"a"},"41b748c"))),(0,n.kt)("li",{parentName:"ul"},"style(OrderedList): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ed95e4dea2f33d46ca604e1b2c30d63b5596c03d"},(0,n.kt)("inlineCode",{parentName:"a"},"ed95e4d")))),(0,n.kt)("h4",{id:"\ufe0f-others-45"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"perf(eol): change to LF ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c71e42e4a8cf49c4a3b943bfdc8a94c9a9cc4940"},(0,n.kt)("inlineCode",{parentName:"a"},"c71e42e"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): linux eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e0bb30132904f92b9755356f6b5ccbf72075425"},(0,n.kt)("inlineCode",{parentName:"a"},"6e0bb30"))),(0,n.kt)("li",{parentName:"ul"},"lint fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a68866d4058f7412a2635371adebc370b6445281"},(0,n.kt)("inlineCode",{parentName:"a"},"a68866d"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): lf fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7054b2067b0802c5bd04e185cba76e2577ccfdd1"},(0,n.kt)("inlineCode",{parentName:"a"},"7054b20"))),(0,n.kt)("li",{parentName:"ul"},"doco(list): update Ordered List showcase ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/75e40bf4487ea334c9ebc2dd6c2a392d82e662f3"},(0,n.kt)("inlineCode",{parentName:"a"},"75e40bf"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): lf fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19235e585ac50c3669f654a93798b8998894f900"},(0,n.kt)("inlineCode",{parentName:"a"},"19235e5"))),(0,n.kt)("li",{parentName:"ul"},"fixed js syntax error from previous commit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/37dc1f5c1506040c1f155afdea76c4ed739ddda2"},(0,n.kt)("inlineCode",{parentName:"a"},"37dc1f5"))),(0,n.kt)("li",{parentName:"ul"},"Next relese: 0.2.2 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b3fb40ff5e46d7519b6356fdaf7326780bd89d9e"},(0,n.kt)("inlineCode",{parentName:"a"},"b3fb40f")))),(0,n.kt)("h3",{id:"021---2022-04-08"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.2.0...0.2.1"},"0.2.1")," - 2022-04-08"),(0,n.kt)("h4",{id:"-bug-fixes-39"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(version): Switch to 2.0.0.alpha.1 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/83b8b8ebba4f1eb31514b16476ac23a5d2b03ea9"},(0,n.kt)("inlineCode",{parentName:"a"},"83b8b8e")))),(0,n.kt)("h4",{id:"\ufe0f-others-46"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"cleanup(loader): Remove useless HTML ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d1d180c714ea225c1ad269360413a5e5e4b39f22"},(0,n.kt)("inlineCode",{parentName:"a"},"d1d180c")))),(0,n.kt)("h3",{id:"020---2022-04-04"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.9...0.2.0"},"0.2.0")," - 2022-04-04"),(0,n.kt)("h4",{id:"-new-features-27"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(card) : add new default card color-schme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/965adea8eef6d8729790f6d2bd5e71daeee15d75"},(0,n.kt)("inlineCode",{parentName:"a"},"965adea"))),(0,n.kt)("li",{parentName:"ul"},"feat(label): Handle slate links and footnotes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f382431219df29be498fe5063f3d579f0b918068"},(0,n.kt)("inlineCode",{parentName:"a"},"f382431")))),(0,n.kt)("h4",{id:"-bug-fixes-40"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(buttons,toggles): border and background color when active 147629 #139 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea36f31e986110d6c28c104d01666104ac38e2ba"},(0,n.kt)("inlineCode",{parentName:"a"},"ea36f31"))),(0,n.kt)("li",{parentName:"ul"},"fix(checkboxes): background color when they are toggles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4b6ab67085b7514c4f0ab2322e8f45de8bc09449"},(0,n.kt)("inlineCode",{parentName:"a"},"4b6ab67"))),(0,n.kt)("li",{parentName:"ul"},"fix(buttons): border set on basic buttons appearing on svg elements of Volto UI ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/69ca73f33b562b3f87bf11ce43a52ac01f83b951"},(0,n.kt)("inlineCode",{parentName:"a"},"69ca73f"))),(0,n.kt)("li",{parentName:"ul"},"fix(label): Zotero/Footnotes inside label ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0ee4d584f2771b739ed5f2332cb33aad61391786"},(0,n.kt)("inlineCode",{parentName:"a"},"0ee4d58"))),(0,n.kt)("li",{parentName:"ul"},"fix(card) : add control for image url in storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b28e5303ba04c6aee673f1d7f98ce42037c672e1"},(0,n.kt)("inlineCode",{parentName:"a"},"b28e530"))),(0,n.kt)("li",{parentName:"ul"},"fix(less variables):change font family ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e4bca9e0cb7ab9f1fd86e9f4c558382ec129e5a1"},(0,n.kt)("inlineCode",{parentName:"a"},"e4bca9e"))),(0,n.kt)("li",{parentName:"ul"},"fix(storybook):minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9fc53bcad61bbe0561d7a986dbba567d53777a8c"},(0,n.kt)("inlineCode",{parentName:"a"},"9fc53bc"))),(0,n.kt)("li",{parentName:"ul"},"fix(tag): fixes merged theme config ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/eb30363fda8a8a88155ee05268c4d7660fe99df1"},(0,n.kt)("inlineCode",{parentName:"a"},"eb30363"))),(0,n.kt)("li",{parentName:"ul"},"fix(Banner): prop types fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a270e5b4d6e571f219b5da31ca8f883f74da05e3"},(0,n.kt)("inlineCode",{parentName:"a"},"a270e5b")))),(0,n.kt)("h4",{id:"-enhancements-56"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(tag): splits Tags component to TagList and tag, changes default tags style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/78a5f8c245149706a1f7b825ef3e02da5ba86445"},(0,n.kt)("inlineCode",{parentName:"a"},"78a5f8c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner):add banner share pop up in banner story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c9688b2b697c879bbaed3cb3a688a0af7fc71234"},(0,n.kt)("inlineCode",{parentName:"a"},"c9688b2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tag): remove classes and actions that add background color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce9b6f92589618f6cb1e839a2cddc44381ef7406"},(0,n.kt)("inlineCode",{parentName:"a"},"ce9b6f9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner):change banner's image wrapper implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9153dd1073999e67c105b5ba90538bc963e17abc"},(0,n.kt)("inlineCode",{parentName:"a"},"9153dd1"))),(0,n.kt)("li",{parentName:"ul"},"change(package): bump release version to 1.10.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e984c1e1a6ea481a58a5b7a783d077b5769a621"},(0,n.kt)("inlineCode",{parentName:"a"},"7e984c1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): align cards and images, update less variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d47c9780bfbc23d1cba3578f181864074db97e98"},(0,n.kt)("inlineCode",{parentName:"a"},"d47c978"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add class inverted for default card ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/919a56e79c0243fa567144fadd4b842f75f1cf8f"},(0,n.kt)("inlineCode",{parentName:"a"},"919a56e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tag): changes component name ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e1db068bd7ac336a451a4514c61fe44557e14cc2"},(0,n.kt)("inlineCode",{parentName:"a"},"e1db068"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tag): changes color metallicBlue to bottleGreen ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e4b68acf95bb3e192914aab89b2122e0434bf72c"},(0,n.kt)("inlineCode",{parentName:"a"},"e4b68ac"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables): change tag list mobile view ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fcded3dbc67465eec6ef7f72d3fd599ec5cd3c13"},(0,n.kt)("inlineCode",{parentName:"a"},"fcded3d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tagList): update story to not use tag color classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8b5b61bfad9225c0538b713937ed39bbd0bd14e9"},(0,n.kt)("inlineCode",{parentName:"a"},"8b5b61b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner):minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff8c352b899b78528897547df0b20c357fd153cd"},(0,n.kt)("inlineCode",{parentName:"a"},"ff8c352"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner): add metadata field sub component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/327b7e77626c18ae783aea9efae0c7589f63d4f5"},(0,n.kt)("inlineCode",{parentName:"a"},"327b7e7"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): add and adjust remix icon for banner action ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1bf3ffaa16432746c5e5577f0b1643f6659b3f56"},(0,n.kt)("inlineCode",{parentName:"a"},"1bf3ffa"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): replace px with rem and adjust share popup padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a5683294570227d0b25a99e410eb824b2c6d643c"},(0,n.kt)("inlineCode",{parentName:"a"},"a568329"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner):add type class to metadata field and apply styles to it ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/86a286699146c7dda9e288e2183ec8cc86f35a23"},(0,n.kt)("inlineCode",{parentName:"a"},"86a2866"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables):change tag list styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/867008791545769aa003ef7a8a820a7e5a873e4b"},(0,n.kt)("inlineCode",{parentName:"a"},"8670087"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): share items display flex on desktop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ff86840e548f47cd597a0c76b23f996d4a9d74b"},(0,n.kt)("inlineCode",{parentName:"a"},"3ff8684"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): added background gradient, share popup, metadata show and hide #136 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2f5dccacf1e23f45f351b0be58c9bbda04da1518"},(0,n.kt)("inlineCode",{parentName:"a"},"2f5dcca"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): update gradient ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/570ee1e1e9778cb98757804fbd8ad7d9dee9ad13"},(0,n.kt)("inlineCode",{parentName:"a"},"570ee1e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tags): removes hardcoded ':' ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea58e86a79b46b5150d84ff2fbb6a7b8ba47876c"},(0,n.kt)("inlineCode",{parentName:"a"},"ea58e86"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): remove card border ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bc777397026f0efe8e569c8fd0e90d98b585b0eb"},(0,n.kt)("inlineCode",{parentName:"a"},"bc77739")))),(0,n.kt)("h4",{id:"-internal-changes-18"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(card) : add lint and prettier changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9d9a77363f7e4f7ec2ea4db5fa777dc97e086156"},(0,n.kt)("inlineCode",{parentName:"a"},"9d9a773"))),(0,n.kt)("li",{parentName:"ul"},"style(tag): remove comments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/501fcdfb8271f4a3558dadb96c546e71cfdef286"},(0,n.kt)("inlineCode",{parentName:"a"},"501fcdf"))),(0,n.kt)("li",{parentName:"ul"},"style(tag): stylelint and prettier changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/08b63864e8394fd86ada78df0b441cda52cd8063"},(0,n.kt)("inlineCode",{parentName:"a"},"08b6386")))),(0,n.kt)("h4",{id:"\ufe0f-others-47"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"1.10 release #140 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/88d33396845f00830789867663a9cd66ad88920f"},(0,n.kt)("inlineCode",{parentName:"a"},"88d3339"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/328ef2cda2d3470b5cb5ae2ef9854323f6b0f3c7"},(0,n.kt)("inlineCode",{parentName:"a"},"328ef2c"))),(0,n.kt)("li",{parentName:"ul"},"undo changes to Header.jsx committed wrongly in 4b6ab ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bfc4c51d39cf9c5151c39b099071174897de10b0"},(0,n.kt)("inlineCode",{parentName:"a"},"bfc4c51"))),(0,n.kt)("li",{parentName:"ul"},"Update 0-intro.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af75f81a84ddb9b78a77a96450976c6cd1223924"},(0,n.kt)("inlineCode",{parentName:"a"},"af75f81"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): lf fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ecf474ffbaab6796434d49c30fb09deafe9d1125"},(0,n.kt)("inlineCode",{parentName:"a"},"ecf474f"))),(0,n.kt)("li",{parentName:"ul"},"Update 0-intro.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93a073242693fa3c24c39532c2c462f58071e5c4"},(0,n.kt)("inlineCode",{parentName:"a"},"93a0732"))),(0,n.kt)("li",{parentName:"ul"},"modifies tags title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/33c3714660aa6cfbca7e362fd7baa8c396b60a0e"},(0,n.kt)("inlineCode",{parentName:"a"},"33c3714"))),(0,n.kt)("li",{parentName:"ul"},"reafactor(taglist): fixes tags root class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d09959f85d2d21cdc890a71457ed5840b5b2c53"},(0,n.kt)("inlineCode",{parentName:"a"},"7d09959")))),(0,n.kt)("h3",{id:"019---2022-03-25"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.8...0.1.9"},"0.1.9")," - 2022-03-25"),(0,n.kt)("h4",{id:"-new-features-28"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(all): 1.9 release #124 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0d3f6fbf32a4948e00410d9d0943a077863cb869"},(0,n.kt)("inlineCode",{parentName:"a"},"0d3f6fb"))),(0,n.kt)("li",{parentName:"ul"},"feat(callout): Align volto-slate callout with blockquote style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9e0bb49ffe66ebb8b8173af411873ab887b91058"},(0,n.kt)("inlineCode",{parentName:"a"},"9e0bb49")))),(0,n.kt)("h4",{id:"-bug-fixes-41"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(inpageNavigation): restore hidden on top functionality ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c554e6e02e0c82b74653498e2f3fd32a982002a4"},(0,n.kt)("inlineCode",{parentName:"a"},"c554e6e"))),(0,n.kt)("li",{parentName:"ul"},"fix(list): Fix TOC margin on 3rd level ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f17da79394e29baf62bae1247dd954cdd0362108"},(0,n.kt)("inlineCode",{parentName:"a"},"f17da79"))),(0,n.kt)("li",{parentName:"ul"},"fix(inpageNavigation) : add smooth scroll animation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/42f6564276b9214257e2dbc1e2a8f7e501625aee"},(0,n.kt)("inlineCode",{parentName:"a"},"42f6564")))),(0,n.kt)("h4",{id:"-enhancements-57"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update visual and mobile margins ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/64f05af91638d91d2c07217b8edc2fb70a5e7347"},(0,n.kt)("inlineCode",{parentName:"a"},"64f05af"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): restore union dropdown after implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7029c556a9adc1ab9b0269de666e0ed0530f67e"},(0,n.kt)("inlineCode",{parentName:"a"},"a7029c5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pullquote): adjust to the new figma design ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/78e4606ac299938021f9e525898ae7f5cede311f"},(0,n.kt)("inlineCode",{parentName:"a"},"78e4606"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumb): adjust font sizes and import remix divider ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5fcabaf589074716b34fb5d0904e14549d7f4ef2"},(0,n.kt)("inlineCode",{parentName:"a"},"5fcabaf"))),(0,n.kt)("li",{parentName:"ul"},"change(header): use viewport width for changing mobile text in header dropdowns ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5a7868e1725f8766ae1be68d3c27b1313f79196b"},(0,n.kt)("inlineCode",{parentName:"a"},"5a7868e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(inpageNavigation): adjust to the new figma design ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4073acfb87378224d071079467bcfa195b1fc6ac"},(0,n.kt)("inlineCode",{parentName:"a"},"4073acf"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tab): add max width for tab items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/366d279a94d5f388c6167e7afb72d108c77c4085"},(0,n.kt)("inlineCode",{parentName:"a"},"366d279"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables):change pullquote styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9ad94bb424a14713ffa605c7497c95bdefeb6e5f"},(0,n.kt)("inlineCode",{parentName:"a"},"9ad94bb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Pullquote):change quote positions and add Pullquote.Metadata sub component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6bce35fa3cc158d9d18a07d0faf812c5c38bae0b"},(0,n.kt)("inlineCode",{parentName:"a"},"6bce35f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(inpageNavigation): Update to remix icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19a606170b4163cf4f751a419ca36a4c163b566d"},(0,n.kt)("inlineCode",{parentName:"a"},"19a6061"))),(0,n.kt)("li",{parentName:"ul"},"refactor(inpageNavigation) : move icon & text to be in column ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/09539102489ec511cb2b6cd047d316ab8b87ed55"},(0,n.kt)("inlineCode",{parentName:"a"},"0953910"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumbs): modified breadcrumbs template to behave like breadrumb template ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/490a559bc99f3a9d174a344cf0be85086293578e"},(0,n.kt)("inlineCode",{parentName:"a"},"490a559"))),(0,n.kt)("li",{parentName:"ul"},"change(package): bump release version to 1.9.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/43a6e4b92fd05ca272fb140922213834ee426938"},(0,n.kt)("inlineCode",{parentName:"a"},"43a6e4b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumb): adjust font sizes and import remix divider #120 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/09a3a01910ed898b62a9535fe5d2a41cfdb3a91b"},(0,n.kt)("inlineCode",{parentName:"a"},"09a3a01"))),(0,n.kt)("li",{parentName:"ul"},"change(menu): modified secondaryPointingItemMaxWidth to a value that equals to 250 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea138a10257206fae32c4e9a30233a3ddfd424b6"},(0,n.kt)("inlineCode",{parentName:"a"},"ea138a1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pullquote): introduce meta section, use remix icons, integrate slate callouts #119 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fd740c9e72b2defa5cc858ac020f0cb051aa527c"},(0,n.kt)("inlineCode",{parentName:"a"},"fd740c9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): updated visuals and gradients #117 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e5c6d18dc3fb33e5dfa654ecebdc12c6f5f0cf32"},(0,n.kt)("inlineCode",{parentName:"a"},"e5c6d18"))),(0,n.kt)("li",{parentName:"ul"},"change(scrollToTop): feature inpage navigation revamp #121 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3cf20a82b723b8df0b53f16c737e5c8990f891f1"},(0,n.kt)("inlineCode",{parentName:"a"},"3cf20a8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update visual and gradient ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/764ec23a456397b478456f7d628baa4e6c0b4713"},(0,n.kt)("inlineCode",{parentName:"a"},"764ec23"))),(0,n.kt)("li",{parentName:"ul"},"change(header): use 12px font size for mobile resolution dropdowns ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6dad0fab24f37f87696bb50f5a592e88510d053e"},(0,n.kt)("inlineCode",{parentName:"a"},"6dad0fa"))),(0,n.kt)("li",{parentName:"ul"},"change(nav): added navDepth to 3 in order to enable mega menu integration ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4f73fdd0dfadcd63b2f4be7a691bf12dcd9bb76"},(0,n.kt)("inlineCode",{parentName:"a"},"c4f73fd")))),(0,n.kt)("h4",{id:"-internal-changes-19"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(inpageNavigation) : lint changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3641d78374063904c00f1ba19f2f234f7a43892b"},(0,n.kt)("inlineCode",{parentName:"a"},"3641d78"))),(0,n.kt)("li",{parentName:"ul"},"style(inpageNavigation) : add less variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0699c70c66403ff75bf41ba252a74e9f4379671c"},(0,n.kt)("inlineCode",{parentName:"a"},"0699c70"))),(0,n.kt)("li",{parentName:"ul"},"style(pullquote): create variable for icon font size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fea9b0a7c33237ad036522b4dde567718d640210"},(0,n.kt)("inlineCode",{parentName:"a"},"fea9b0a"))),(0,n.kt)("li",{parentName:"ul"},"style(inpageNavigation) : add lint & prettier changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f8dd012a964e0c1f0bc22c36826a4a94bd052759"},(0,n.kt)("inlineCode",{parentName:"a"},"f8dd012"))),(0,n.kt)("li",{parentName:"ul"},"style(inpageNavigation): remove comment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1aee011d032c1a2b7fe564a40688bc39ca457c18"},(0,n.kt)("inlineCode",{parentName:"a"},"1aee011")))),(0,n.kt)("h4",{id:"\ufe0f-others-48"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"perf(eol): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/85a3dc55c7676c0feb8dd5b39fe0cbb9d66a9370"},(0,n.kt)("inlineCode",{parentName:"a"},"85a3dc5"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/00776211ccfa1cb90d9fa0e5269f47f5b3845741"},(0,n.kt)("inlineCode",{parentName:"a"},"0077621"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f1bb1c630edb669b03929a978cc116bae012255"},(0,n.kt)("inlineCode",{parentName:"a"},"9f1bb1c"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2b19fec30d6086f486bdca631a9114d8369fe43"},(0,n.kt)("inlineCode",{parentName:"a"},"e2b19fe"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/03dbc9b027578934f89d9480d981e1bc28f38aa3"},(0,n.kt)("inlineCode",{parentName:"a"},"03dbc9b"))),(0,n.kt)("li",{parentName:"ul"},"Hide breadcrumbs on homepage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e2f609df8d4b6bdb826e539fc0c613406d357a5"},(0,n.kt)("inlineCode",{parentName:"a"},"3e2f609"))),(0,n.kt)("li",{parentName:"ul"},"bug(inpageNavigation): less layers structure fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8d34fbdd5130ed36157db1ff70e8b039faa9f81"},(0,n.kt)("inlineCode",{parentName:"a"},"b8d34fb"))),(0,n.kt)("li",{parentName:"ul"},"prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4b1c572411cbc58dec51d5eeefe9847675c2e41"},(0,n.kt)("inlineCode",{parentName:"a"},"d4b1c57"))),(0,n.kt)("li",{parentName:"ul"},"fefactor(tab): add max width for tab items #118 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/716c408fa4c73f3feb8e36e35fb1f6bb50ac264c"},(0,n.kt)("inlineCode",{parentName:"a"},"716c408"))),(0,n.kt)("li",{parentName:"ul"},"Add reversed option to Timeline grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7c9023245f2fc943380f79743b5f10c6b6f65264"},(0,n.kt)("inlineCode",{parentName:"a"},"7c90232"))),(0,n.kt)("li",{parentName:"ul"},"doc(grid): update grid showcases ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/83671a382e39a2736c2c1353098d5f4fc2a0e67e"},(0,n.kt)("inlineCode",{parentName:"a"},"83671a3"))),(0,n.kt)("li",{parentName:"ul"},"End of line ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7f46fb752ec8918325ebadd386ee88248e02566c"},(0,n.kt)("inlineCode",{parentName:"a"},"7f46fb7")))),(0,n.kt)("h3",{id:"018---2022-03-18"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.7...0.1.8"},"0.1.8")," - 2022-03-18"),(0,n.kt)("h4",{id:"-bug-fixes-42"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(card): avoid long links from spilling outside of card body area ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/95b8951ab87bfab7a68cc20b89b25aa15113aa9d"},(0,n.kt)("inlineCode",{parentName:"a"},"95b8951")))),(0,n.kt)("h4",{id:"-enhancements-58"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(typography): set heading sizes as detailed in docusaurus typography section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/189bf20409581587061ffa30ff2bf04d97f284cf"},(0,n.kt)("inlineCode",{parentName:"a"},"189bf20"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): content tweaks, inpage navigation section #112 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b62d1b1def7c3d8890ffbba30950e8e422e9ed89"},(0,n.kt)("inlineCode",{parentName:"a"},"b62d1b1")))),(0,n.kt)("h4",{id:"-internal-changes-20"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(docusaurus): fixed grid tablet breakpoint value ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c7fbc0912131396e3a1e35803968eda1eff77d40"},(0,n.kt)("inlineCode",{parentName:"a"},"c7fbc09")))),(0,n.kt)("h4",{id:"-documentation-changes-18"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): capitalization remove ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bf8fa4407e7110da1c6a911506d56800bd5c32d7"},(0,n.kt)("inlineCode",{parentName:"a"},"bf8fa44"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1c04976a141324f0dde01b139a77f611e6f51840"},(0,n.kt)("inlineCode",{parentName:"a"},"1c04976"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): comment address on pr 112 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e4fe3bed285eae8b2cff03b1ef558debc0b4edb"},(0,n.kt)("inlineCode",{parentName:"a"},"6e4fe3b"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): color minor update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/13f9fda09287da5b8733d17f9c7567b6b7df750a"},(0,n.kt)("inlineCode",{parentName:"a"},"13f9fda"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): tabs and breadcrump update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d0547e5ad09a8608335b1e77e24c891e49213694"},(0,n.kt)("inlineCode",{parentName:"a"},"d0547e5")))),(0,n.kt)("h4",{id:"\ufe0f-others-49"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"doc(colours): add more content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ec66248f1290369dcf63ee12f7b71a1630df887b"},(0,n.kt)("inlineCode",{parentName:"a"},"ec66248"))),(0,n.kt)("li",{parentName:"ul"},"Add divider content for metadata field in Banner ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f1e34bd6a199f6418fba909e9dfdf50b0100e860"},(0,n.kt)("inlineCode",{parentName:"a"},"f1e34bd"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.8.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fd6ba047e8f8b257c3c75d07a6caefad376f888a"},(0,n.kt)("inlineCode",{parentName:"a"},"fd6ba04")))),(0,n.kt)("h3",{id:"017---2022-03-15"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.6...0.1.7"},"0.1.7")," - 2022-03-15"),(0,n.kt)("h4",{id:"-new-features-29"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(less): add global gap sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c83f20280b8a7ab0b5c78e3df7646beebe08709"},(0,n.kt)("inlineCode",{parentName:"a"},"3c83f20"))),(0,n.kt)("li",{parentName:"ul"},"feat(icons): import remix css ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/29967fb39034910dce286880f347a670f77421b3"},(0,n.kt)("inlineCode",{parentName:"a"},"29967fb")))),(0,n.kt)("h4",{id:"-bug-fixes-43"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(menu): fix border overflow for tabs and pagination ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e88721f916affa2a6d2f03930eb4266f9a2b0fb9"},(0,n.kt)("inlineCode",{parentName:"a"},"e88721f"))),(0,n.kt)("li",{parentName:"ul"},"fix(accordion): responsive and accessibility issues ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c225935ceb9fdba45c6f94086a35e177495fe584"},(0,n.kt)("inlineCode",{parentName:"a"},"c225935")))),(0,n.kt)("h4",{id:"-enhancements-59"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(menu): update paddings for tabs and pagination ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/533a5093e6c306034cb16e0a88e045019677951e"},(0,n.kt)("inlineCode",{parentName:"a"},"533a509"))),(0,n.kt)("li",{parentName:"ul"},"refactor(accordion): import semantic icon for remix arrows ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9aa77d856d1e43f4ec3daaab37f06fa91ebd1eaf"},(0,n.kt)("inlineCode",{parentName:"a"},"9aa77d8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(all) icons, accordion, button and menu itml #108 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/52ed2ca19b5e8dea60f1ee7bfd9c3b6b49a49f7d"},(0,n.kt)("inlineCode",{parentName:"a"},"52ed2ca"))),(0,n.kt)("li",{parentName:"ul"},"change(storybook): segment stories now contain several elements ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/98a7654b0d4a7c30c7a2df35103ddb2740f3ca2d"},(0,n.kt)("inlineCode",{parentName:"a"},"98a7654"))),(0,n.kt)("li",{parentName:"ul"},"change(table): inherit header alignment instead of hard-coding values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ebb5193babfe8b99094db6778afdaf2d91b2c4dd"},(0,n.kt)("inlineCode",{parentName:"a"},"ebb5193"))),(0,n.kt)("li",{parentName:"ul"},"refactor(icons): add remix icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4c1a92b671b52c509386addc02e8919c93391fb"},(0,n.kt)("inlineCode",{parentName:"a"},"c4c1a92"))),(0,n.kt)("li",{parentName:"ul"},"refactor(container): restore mobile width to auto ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2df184c19a8685c69e6b9a55b147a97853cc6b74"},(0,n.kt)("inlineCode",{parentName:"a"},"2df184c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button): update action button hover color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bb09d718433f93091ca1b325471d48741825ca96"},(0,n.kt)("inlineCode",{parentName:"a"},"bb09d71")))),(0,n.kt)("h4",{id:"-internal-changes-21"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(docusaurus): docs delete ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f9d733287902ccb096f5a976a2928e43a43a8e7"},(0,n.kt)("inlineCode",{parentName:"a"},"5f9d733")))),(0,n.kt)("h4",{id:"-documentation-changes-19"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(colors): corrections ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/da64c4c6b58e8840ea98be75d442b90911197e28"},(0,n.kt)("inlineCode",{parentName:"a"},"da64c4c"))),(0,n.kt)("li",{parentName:"ul"},"docs(list): default list showcase ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8ded06231c14d1394f77559aeb2d5a7e3a0c1bf1"},(0,n.kt)("inlineCode",{parentName:"a"},"8ded062")))),(0,n.kt)("h4",{id:"\ufe0f-others-50"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"bug(form): input min-width more specific to not break volto interface ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3f5b5d498ea1a0e3bb6fd62af5930f6579029b11"},(0,n.kt)("inlineCode",{parentName:"a"},"3f5b5d4"))),(0,n.kt)("li",{parentName:"ul"},"Update package.json ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3dba28b5a3d28adbf946a8df3d9cc9b8ef4c68e0"},(0,n.kt)("inlineCode",{parentName:"a"},"3dba28b")))),(0,n.kt)("h3",{id:"016---2022-03-11"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.5...0.1.6"},"0.1.6")," - 2022-03-11"),(0,n.kt)("h4",{id:"-new-features-30"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(cards): add custom display for volto-block-image-cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/645096ac5a0aa3326834191f56ee8a77db0464f5"},(0,n.kt)("inlineCode",{parentName:"a"},"645096a"))),(0,n.kt)("li",{parentName:"ul"},"feat(PublicationCard):create publication card component & styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e5f9b7a9bb301f446b232b99f7db54e6a7470ae"},(0,n.kt)("inlineCode",{parentName:"a"},"3e5f9b7"))),(0,n.kt)("li",{parentName:"ul"},"feat(PublicationCard):create publication card component & styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/12cdd5d50dc4c05f2c2b83586df90c7b91c11a75"},(0,n.kt)("inlineCode",{parentName:"a"},"12cdd5d"))),(0,n.kt)("li",{parentName:"ul"},"feat(Related Content): create Related Content component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/77eda953196f9e686d4ec2c996d6902a614af4a0"},(0,n.kt)("inlineCode",{parentName:"a"},"77eda95"))),(0,n.kt)("li",{parentName:"ul"},"feat(Related Content): create Related Content component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/08d495baeae575a07813056176ac940d7edc91eb"},(0,n.kt)("inlineCode",{parentName:"a"},"08d495b"))),(0,n.kt)("li",{parentName:"ul"},"feat(pagination,related) added several r3 components #105 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/08d47c199286402c31a0ff0de38fd08533d2cd91"},(0,n.kt)("inlineCode",{parentName:"a"},"08d47c1")))),(0,n.kt)("h4",{id:"-bug-fixes-44"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(Related Content): limit publication card number to 4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e7df03214824a85911c26499c8975f88ffa9fe4d"},(0,n.kt)("inlineCode",{parentName:"a"},"e7df032"))),(0,n.kt)("li",{parentName:"ul"},"fix(less variables):rename publication card variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/55c6fb8e5e9660352ce1bf2bd38c4ef8834ce184"},(0,n.kt)("inlineCode",{parentName:"a"},"55c6fb8"))),(0,n.kt)("li",{parentName:"ul"},"fix(Publication Card): add link to card and arg name fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/36a7c961639b2ff07acd455ccf277dd0a93f753c"},(0,n.kt)("inlineCode",{parentName:"a"},"36a7c96"))),(0,n.kt)("li",{parentName:"ul"},"fix(radio): fix bullet scaling issue with firefox ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f02c95f18c77527f949f115471cf24302df4d49"},(0,n.kt)("inlineCode",{parentName:"a"},"5f02c95"))),(0,n.kt)("li",{parentName:"ul"},"fix(radio): fix bullet scaling issue with firefox ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dbb2e27b43e6d267a436a8475107ad01e940ec93"},(0,n.kt)("inlineCode",{parentName:"a"},"dbb2e27")))),(0,n.kt)("h4",{id:"-enhancements-60"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(form): remove custom classes and add container to form items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6b5442a3c56854bf30269f235099d8507ba588f7"},(0,n.kt)("inlineCode",{parentName:"a"},"6b5442a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form): remove custom classes and add container to form items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d1ec083647f854c09d8a64dffa6a5c829321049e"},(0,n.kt)("inlineCode",{parentName:"a"},"d1ec083"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form): update form wrapper component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7195768bbe86121fc82bebca29abfb20b50d77a"},(0,n.kt)("inlineCode",{parentName:"a"},"a719576"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form): update form wrapper component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0736ec7d671d756c13a69bd8bf93488805da27e2"},(0,n.kt)("inlineCode",{parentName:"a"},"0736ec7"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form): adjust form items to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4213cfb79430273e637b06a76af28c9cd660aa74"},(0,n.kt)("inlineCode",{parentName:"a"},"4213cfb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form): adjust form items to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/374ffbc1c380df1b1a5f9939fc658d9ecca4ae1b"},(0,n.kt)("inlineCode",{parentName:"a"},"374ffbc"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumb): remove custom class anf and new variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b3cb83d90e0be7f8a80f619d57bc90cae4f8f207"},(0,n.kt)("inlineCode",{parentName:"a"},"b3cb83d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumb): remove custom class anf and new variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5808ad3576439df010bebfb8fd423858ffc4e66"},(0,n.kt)("inlineCode",{parentName:"a"},"d5808ad"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): clear up unnecessary form elements controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f7e7d5bc285ea5115bc8770c7471729f06da891e"},(0,n.kt)("inlineCode",{parentName:"a"},"f7e7d5b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): small change in unordered list story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ffd87246df9dffcc064683e93d6f3aff35b3931"},(0,n.kt)("inlineCode",{parentName:"a"},"3ffd872"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): small change in unordered list story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6ce16e990f15ef8c61493359815405517756c32c"},(0,n.kt)("inlineCode",{parentName:"a"},"6ce16e9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pagination): fix menu overrides for tabs that affects pagination ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fe8c4ca32072518820ad38f8b334b38f52ef2df5"},(0,n.kt)("inlineCode",{parentName:"a"},"fe8c4ca"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pagination): fix menu overrides for tabs that affects pagination ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3f4b726c2a2047f6f9a65375074dd7ea38717f5c"},(0,n.kt)("inlineCode",{parentName:"a"},"3f4b726"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Loader):remove image & add background image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70fe041e06cfee946bb9557f9fcb5ff49d08c287"},(0,n.kt)("inlineCode",{parentName:"a"},"70fe041"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Loader):remove image & add background image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac3812684ee4377914801cd770890c78bdeecedf"},(0,n.kt)("inlineCode",{parentName:"a"},"ac38126"))),(0,n.kt)("li",{parentName:"ul"},"refactor(list): remove selection control ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a09b1798a62a6e192deb1d217d0c44b4b881ce6a"},(0,n.kt)("inlineCode",{parentName:"a"},"a09b179"))),(0,n.kt)("li",{parentName:"ul"},"refactor(list): remove selection control ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/17bf710d00a91acd35356dbaa9d5093ca80a8987"},(0,n.kt)("inlineCode",{parentName:"a"},"17bf710"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook):unordered list minor change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/df2b72730500aee5d0bbc82185222edacad38b2b"},(0,n.kt)("inlineCode",{parentName:"a"},"df2b727"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook):unordered list minor change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef6db73ce2236d0f653212d2f57c336f1f8d806e"},(0,n.kt)("inlineCode",{parentName:"a"},"ef6db73"))),(0,n.kt)("li",{parentName:"ul"},"refactor(colors): remove metalic blue color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b2f95b6dc3b1d8314827d56e88efa0dfc719aca2"},(0,n.kt)("inlineCode",{parentName:"a"},"b2f95b6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(colors): remove metalic blue color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1eea33f71fdde5834f82d244224c185fde3ab8ba"},(0,n.kt)("inlineCode",{parentName:"a"},"1eea33f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button): update variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b1774d8c7f32ded2eff654b0d16e45d944fe5690"},(0,n.kt)("inlineCode",{parentName:"a"},"b1774d8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button): update variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/061f3e3042f28575dbb1a70f09a62bda728815be"},(0,n.kt)("inlineCode",{parentName:"a"},"061f3e3"))),(0,n.kt)("li",{parentName:"ul"},"change(blockquote): treat slate as a variation of blockquote component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19bd9a5f67e573b71531fe34b29d2e08e0856eae"},(0,n.kt)("inlineCode",{parentName:"a"},"19bd9a5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(container): remove important from rules ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e984771ed59fe849246ae8a01d9d84f3f2f232c5"},(0,n.kt)("inlineCode",{parentName:"a"},"e984771"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook):add textarea control to add/remove fluid class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/475f540efa76d0993c3f7bd72d4c646385f4c909"},(0,n.kt)("inlineCode",{parentName:"a"},"475f540"))),(0,n.kt)("li",{parentName:"ul"},"refactor(container): remove important from rules ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1cc69848705d3d592221bf7fa7d43c8b0eb37f09"},(0,n.kt)("inlineCode",{parentName:"a"},"1cc6984"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): add required attribute to form fields ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fecee278b920c44dd0dd34ace81f9606258c8f7c"},(0,n.kt)("inlineCode",{parentName:"a"},"fecee27"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progressBar): update progress bar colors with vars ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4ef1f0f6eba9792901bc9e0ec5b01877e9da96e"},(0,n.kt)("inlineCode",{parentName:"a"},"c4ef1f0"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progressBar): update progress bar colors with vars ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a44d73c48b6ccc988508fed5c3fb585353fe0958"},(0,n.kt)("inlineCode",{parentName:"a"},"a44d73c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): add required attribute to form fields ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/21da79eafa9f23dcf01cac7e096da7fab2187450"},(0,n.kt)("inlineCode",{parentName:"a"},"21da79e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(list): adjust bullet size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2b29e4e429f939500bc7d7ebd5836b8bc24090ec"},(0,n.kt)("inlineCode",{parentName:"a"},"2b29e4e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(list): adjust bullet size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/61c341cfdad3fccdd7499f6957f91ab99159ea16"},(0,n.kt)("inlineCode",{parentName:"a"},"61c341c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): add inverted background to global variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1427e70f2b208531bbb91ab1a708430f1c03ea3a"},(0,n.kt)("inlineCode",{parentName:"a"},"1427e70"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): add inverted background to global variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea25dfa5589181b7d23bef153bae3ab279e70167"},(0,n.kt)("inlineCode",{parentName:"a"},"ea25dfa"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): remove custom class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/46cc5601e378c7bfcf927b7c25dae2a2d3f795fd"},(0,n.kt)("inlineCode",{parentName:"a"},"46cc560"))),(0,n.kt)("li",{parentName:"ul"},"refactor(container): update mobile width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d548a44d86745270778134028be597f559d7a0b4"},(0,n.kt)("inlineCode",{parentName:"a"},"d548a44"))),(0,n.kt)("li",{parentName:"ul"},"refactor(grid): replace px with rem units ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e792f51e4f41b8f3f53e297b9e5a01d5e2d9bfb1"},(0,n.kt)("inlineCode",{parentName:"a"},"e792f51"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): remove custom class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b5c8e7c2aeb2751d4b981eacc51e3dda58a922dc"},(0,n.kt)("inlineCode",{parentName:"a"},"b5c8e7c"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): updated template to change what's new title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e15f4d3c3e5d4199886bb4cfeda8dce6a4bf041"},(0,n.kt)("inlineCode",{parentName:"a"},"3e15f4d"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): added display variable for footer site logos ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5b3c2f6d85b3a42eefa8521a074a7581bfbd8fb"},(0,n.kt)("inlineCode",{parentName:"a"},"d5b3c2f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(grid): replace px with rem units ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f0331d00f537cf41ca184796386f60a88bfe6c86"},(0,n.kt)("inlineCode",{parentName:"a"},"f0331d0"))),(0,n.kt)("li",{parentName:"ul"},"change(github): auto deploy only on develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/11d6b4e9059674b6dd1fe655995231be03a910fb"},(0,n.kt)("inlineCode",{parentName:"a"},"11d6b4e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): implementation in preparation for Volto integration #20 #89 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/95b136d51ddbc5632c0fa1cc696c2297a8c4695c"},(0,n.kt)("inlineCode",{parentName:"a"},"95b136d"))),(0,n.kt)("li",{parentName:"ul"},"change(github): trigger autobuild when modifying templates contents ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/46094b1427793cd88da6f615b16b70e6cfaee9af"},(0,n.kt)("inlineCode",{parentName:"a"},"46094b1")))),(0,n.kt)("h4",{id:"-internal-changes-22"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(list): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f9e3b05effc0afeddc234b491bc86f2ec82a764f"},(0,n.kt)("inlineCode",{parentName:"a"},"f9e3b05"))),(0,n.kt)("li",{parentName:"ul"},"style(list): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8eb715b05b3bef2795d2485084386c6e910392cf"},(0,n.kt)("inlineCode",{parentName:"a"},"8eb715b"))),(0,n.kt)("li",{parentName:"ul"},"chore(github): merge changes from develop to develop-itml ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/063bd6ecc5e47321854ca4994a91bf0a43ab3e3e"},(0,n.kt)("inlineCode",{parentName:"a"},"063bd6e"))),(0,n.kt)("li",{parentName:"ul"},"chore(github): build deployment only on develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a5a1b0802b46d674d04ae099afc8510e3cb62222"},(0,n.kt)("inlineCode",{parentName:"a"},"a5a1b08"))),(0,n.kt)("li",{parentName:"ul"},"chore(github): build deployment only on develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bb455aa4308e6593c45bcb3a62b8058709d74f83"},(0,n.kt)("inlineCode",{parentName:"a"},"bb455aa"))),(0,n.kt)("li",{parentName:"ul"},"chore(github): merge changes from develop to develop-itml ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/129c12f60025db50bac5b2d3dd36e04a97d49499"},(0,n.kt)("inlineCode",{parentName:"a"},"129c12f")))),(0,n.kt)("h4",{id:"\ufe0f-others-51"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},'Revert "chore(github): merge changes from develop to develop-itml" ',(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca9520fe8d91f8924ea203eb32001e3e6518e472"},(0,n.kt)("inlineCode",{parentName:"a"},"ca9520f"))),(0,n.kt)("li",{parentName:"ul"},"refactor breadcrumbs component, make it functional and customizable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e902d6931060c5676d67842f95391379fcb3cccf"},(0,n.kt)("inlineCode",{parentName:"a"},"e902d69"))),(0,n.kt)("li",{parentName:"ul"},"rollback(cards): move custom display to volto-block-image-cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2564b1ec2cc52670c0f2abc92c49161f5cd1b006"},(0,n.kt)("inlineCode",{parentName:"a"},"2564b1e"))),(0,n.kt)("li",{parentName:"ul"},"bring back segment wrapper and make it attached ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8458f0321f44f22a605e7179485d97f41a0afa38"},(0,n.kt)("inlineCode",{parentName:"a"},"8458f03"))),(0,n.kt)("li",{parentName:"ul"},"no ",(0,n.kt)("inlineCode",{parentName:"li"},"display: flex")," for blockquote added from slate ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5595ce1b8173e6952ab3926dc5f3c988279a42dc"},(0,n.kt)("inlineCode",{parentName:"a"},"5595ce1"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about code length ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a5f36523682dde8d1e16f416a07cd0c8c615a386"},(0,n.kt)("inlineCode",{parentName:"a"},"a5f3652"))),(0,n.kt)("li",{parentName:"ul"},"Add indenting rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/15c44cbcb6a52d0fd0438ff9b5d0e5963a4b53a0"},(0,n.kt)("inlineCode",{parentName:"a"},"15c44cb"))),(0,n.kt)("li",{parentName:"ul"},"fix warning related to proptype ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/946c6c6bc9dece0985ae4b9f9cad6ece2be0ff2c"},(0,n.kt)("inlineCode",{parentName:"a"},"946c6c6"))),(0,n.kt)("li",{parentName:"ul"},"fix profile section css overflow ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/db5126fc902e191d1e18fb7e4c54877c8d8786e6"},(0,n.kt)("inlineCode",{parentName:"a"},"db5126f"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about import sorting ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/804e188eea30427053111310ad2d3edf6a4ec78b"},(0,n.kt)("inlineCode",{parentName:"a"},"804e188"))),(0,n.kt)("li",{parentName:"ul"},"don't use volto-slate ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6a029765d3a59ac65b3b5dd18c1a9624bae1d52a"},(0,n.kt)("inlineCode",{parentName:"a"},"6a02976"))),(0,n.kt)("li",{parentName:"ul"},"remove segment custom width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1d3ea40f98bbdc1eab95b4da739a659b5e29ec16"},(0,n.kt)("inlineCode",{parentName:"a"},"1d3ea40"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about naming vars ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f9020fa3073190681de36cf1dcdf62e69ac2c74"},(0,n.kt)("inlineCode",{parentName:"a"},"8f9020f"))),(0,n.kt)("li",{parentName:"ul"},"update style for accordion title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0b0d678c69d8b0765ff015b0355c01d57c643192"},(0,n.kt)("inlineCode",{parentName:"a"},"0b0d678"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.6.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e771e657e5bedca3630d05cda643c45da5369d4c"},(0,n.kt)("inlineCode",{parentName:"a"},"e771e65"))),(0,n.kt)("li",{parentName:"ul"},"update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bbcab87ef4c8475f347f0daf4ab7e428e69c2316"},(0,n.kt)("inlineCode",{parentName:"a"},"bbcab87"))),(0,n.kt)("li",{parentName:"ul"},"add margin to ","<","br",">"," element to simulate gap as in design ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c6685c11a14febfc9b6c592a9adc9a25a0b80458"},(0,n.kt)("inlineCode",{parentName:"a"},"c6685c1"))),(0,n.kt)("li",{parentName:"ul"},"make breadcrumbs default size as tiny ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/589581fa29a7e249e59393bebe9dfe284090db6f"},(0,n.kt)("inlineCode",{parentName:"a"},"589581f"))),(0,n.kt)("li",{parentName:"ul"},"remove uneeded style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/82a8fb1eb3a359d54bc59234e498eb122d07223c"},(0,n.kt)("inlineCode",{parentName:"a"},"82a8fb1"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about hardcoded values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e04e0df7cd47d575e649d1995ea5c64b2a431b05"},(0,n.kt)("inlineCode",{parentName:"a"},"e04e0df"))),(0,n.kt)("li",{parentName:"ul"},"Add file mode rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/65c9a9357a82a39bf54862eff9231264a6277ab5"},(0,n.kt)("inlineCode",{parentName:"a"},"65c9a93"))),(0,n.kt)("li",{parentName:"ul"},"Add DRY rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/66c9c3a6b05bf3395f5bda1a7c5af26a9962e66c"},(0,n.kt)("inlineCode",{parentName:"a"},"66c9c3a"))),(0,n.kt)("li",{parentName:"ul"},"set profile section overflow to auto ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/71ab47f89a433233c14b394c3824e607dd18a393"},(0,n.kt)("inlineCode",{parentName:"a"},"71ab47f"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using eea-website-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/647a6e3e2093f2c4884c356eb148453551c8f33f"},(0,n.kt)("inlineCode",{parentName:"a"},"647a6e3"))),(0,n.kt)("li",{parentName:"ul"},"removed override already present in card.less ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/50d2ab26f85c8f409da02ec128cc1df34848ca69"},(0,n.kt)("inlineCode",{parentName:"a"},"50d2ab2"))),(0,n.kt)("li",{parentName:"ul"},"update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7a1d482aa875ab2669ed688663228d79ce9b7bea"},(0,n.kt)("inlineCode",{parentName:"a"},"7a1d482"))),(0,n.kt)("li",{parentName:"ul"},"Add functional components rule; add classnames rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91a0b067c7a36002a6d49c5c0238f593b5a6ac6e"},(0,n.kt)("inlineCode",{parentName:"a"},"91a0b06"))),(0,n.kt)("li",{parentName:"ul"},"added comment about need for removal of this fix later ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/65b81665c1cc41991b4903bb44a5eb7fb8ec5f3b"},(0,n.kt)("inlineCode",{parentName:"a"},"65b8166")))),(0,n.kt)("h3",{id:"015---2022-03-08"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.4...0.1.5"},"0.1.5")," - 2022-03-08"),(0,n.kt)("h4",{id:"-new-features-31"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(cards): add custom display for volto-block-image-cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f49ffb65f41c78499f56251c2de267ce5617b4c5"},(0,n.kt)("inlineCode",{parentName:"a"},"f49ffb6"))),(0,n.kt)("li",{parentName:"ul"},"feat(KeyContent): add new component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2534c542c2fd729b31a9064a21dae2bd3cacb2e4"},(0,n.kt)("inlineCode",{parentName:"a"},"2534c54"))),(0,n.kt)("li",{parentName:"ul"},"feat(docusaurus): Updated developer guidelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca146ffd42cb31286a5c49fa09390d0a93270cfa"},(0,n.kt)("inlineCode",{parentName:"a"},"ca146ff"))),(0,n.kt)("li",{parentName:"ul"},"feat(storybook): add testimonial component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/55d97472d82f3819674e78f684e197625c9f854c"},(0,n.kt)("inlineCode",{parentName:"a"},"55d9747"))),(0,n.kt)("li",{parentName:"ul"},"feat(storybook): add AvatarGrid component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b6684456ea6fa17695734b5179b39be77644da93"},(0,n.kt)("inlineCode",{parentName:"a"},"b668445"))),(0,n.kt)("li",{parentName:"ul"},"feat(storybook):add Loader component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6758346a516f7c4be5d66dfdf198dbe2ffe3f01"},(0,n.kt)("inlineCode",{parentName:"a"},"f675834")))),(0,n.kt)("h4",{id:"-bug-fixes-45"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(breakpoints): fix largest screen breakpoint bug on scaling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e4a11c876c20187351fa9454b4fbf0de3e502bff"},(0,n.kt)("inlineCode",{parentName:"a"},"e4a11c8"))),(0,n.kt)("li",{parentName:"ul"},"fix(profile): section css overflow and padding issues #95 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bb9eb0f83307524bda5cf86aa0dfd678c65da653"},(0,n.kt)("inlineCode",{parentName:"a"},"bb9eb0f"))),(0,n.kt)("li",{parentName:"ul"},"fix(storybook): lint auto changes for AvatarGrid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8e74f17df77f8f9f96bf442dc178417bbfc04c6"},(0,n.kt)("inlineCode",{parentName:"a"},"b8e74f1"))),(0,n.kt)("li",{parentName:"ul"},"fix(components): add grid structure to various components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cc33546deda634cee6031bd6cde6eef3eaacb76a"},(0,n.kt)("inlineCode",{parentName:"a"},"cc33546"))),(0,n.kt)("li",{parentName:"ul"},"fix(header) re-added span tags removed in pull request #74 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/00702d7831b84aad52f10368dbef740baf581ab8"},(0,n.kt)("inlineCode",{parentName:"a"},"00702d7")))),(0,n.kt)("h4",{id:"-enhancements-61"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(button): styling updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/37afda5b00797d456e303fb585dad145b575b2ed"},(0,n.kt)("inlineCode",{parentName:"a"},"37afda5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tab): updates on variables and overrides ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/54bf703f9f34f2f945f4635cd4bc4728174c7d47"},(0,n.kt)("inlineCode",{parentName:"a"},"54bf703"))),(0,n.kt)("li",{parentName:"ul"},"change(blockquote): treat slate as a variation of blockquote component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5e8a8b8220c7c25a266f045442aae44303eb8701"},(0,n.kt)("inlineCode",{parentName:"a"},"5e8a8b8"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): added display variable for footer site logos ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2f942b4a80c3ed9eb94e8b71299f4ebf33501eea"},(0,n.kt)("inlineCode",{parentName:"a"},"2f942b4"))),(0,n.kt)("li",{parentName:"ul"},"refactor(checkbox/radio): remove header from message and adjust top position of bullet ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a072b30bb01cf59339960cfd3254584cfae57c6"},(0,n.kt)("inlineCode",{parentName:"a"},"4a072b3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(color): remove secondaryColorDarken variable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/74c8ba073cc92af3987d81d484768235b95fcffb"},(0,n.kt)("inlineCode",{parentName:"a"},"74c8ba0"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): updated template to change what's new title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/58f58c887560e707ced47ccbac6897d8ebcf45d2"},(0,n.kt)("inlineCode",{parentName:"a"},"58f58c8"))),(0,n.kt)("li",{parentName:"ul"},"change(github): auto deploy only on develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bfa35a32bf0fefd4433aec4f7f8ee2cfe53eaae5"},(0,n.kt)("inlineCode",{parentName:"a"},"bfa35a3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): implementation in preparation for Volto integration #20 #97 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cddda2090d3d17c086dfd0cdb8a4dab3f886bfcd"},(0,n.kt)("inlineCode",{parentName:"a"},"cddda20"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumbs): component, make it functional and pluggable #32 #94 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f42e802bdf29d02c76131379b168c8c2119864b"},(0,n.kt)("inlineCode",{parentName:"a"},"9f42e80"))),(0,n.kt)("li",{parentName:"ul"},"change(card): added styles for volto cards integration #92 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a46ac21e6229059fb982174610a733c44000a2b6"},(0,n.kt)("inlineCode",{parentName:"a"},"a46ac21"))),(0,n.kt)("li",{parentName:"ul"},"refactor(grid): remove column count from example ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac0e9cf8e9f6ea99ddf8d5a92e49903999cde262"},(0,n.kt)("inlineCode",{parentName:"a"},"ac0e9cf"))),(0,n.kt)("li",{parentName:"ul"},"change(github): trigger autobuild when modifying templates contents ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f7d1523e92c1c4b3e6285a48d5f8c776aecfa9c"},(0,n.kt)("inlineCode",{parentName:"a"},"5f7d152"))),(0,n.kt)("li",{parentName:"ul"},"refactor(grid): remove custom grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1d978a96a464b3285961d54cb1cbc7c9eaf35faf"},(0,n.kt)("inlineCode",{parentName:"a"},"1d978a9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Form):change form field wrapper implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/73cdd6daba19aefce091552a62a528a42b323228"},(0,n.kt)("inlineCode",{parentName:"a"},"73cdd6d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(message): update colors to match design ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/633ce311dc5a6a141ee514a9108753531aa661e4"},(0,n.kt)("inlineCode",{parentName:"a"},"633ce31"))),(0,n.kt)("li",{parentName:"ul"},"refactor(checkbox/radio): update variables and remove important rules ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ad533b4e3e821c126f62b558523057720d2573c8"},(0,n.kt)("inlineCode",{parentName:"a"},"ad533b4"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables): add variables to less for new components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/47df026655748865bc7af8f44d51e5a9fcf7ee34"},(0,n.kt)("inlineCode",{parentName:"a"},"47df026"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Tab): fix vertical tab alignment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/401bdf2868e8c8305ad2c3cefa3188b730348574"},(0,n.kt)("inlineCode",{parentName:"a"},"401bdf2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(lint changes): add lint changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6f6847fc19db7922c93cb5f52e50db845d053e04"},(0,n.kt)("inlineCode",{parentName:"a"},"6f6847f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(inpageNavigation): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/62f74ea3c08069da8615516a52df8415d50048d5"},(0,n.kt)("inlineCode",{parentName:"a"},"62f74ea"))),(0,n.kt)("li",{parentName:"ul"},"refactor(message): updates on styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4cf8501de961794baf5a8ecec99e4bcddc2d71b"},(0,n.kt)("inlineCode",{parentName:"a"},"b4cf850"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): update class name ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef0969bd873e9fdd0eb32593f7c3f995270ef44c"},(0,n.kt)("inlineCode",{parentName:"a"},"ef0969b"))),(0,n.kt)("li",{parentName:"ul"},"change(github): use develop for auto pushing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a32a723f8126292f62a71cb4c4f94a2c7dec7605"},(0,n.kt)("inlineCode",{parentName:"a"},"a32a723")))),(0,n.kt)("h4",{id:"-internal-changes-23"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(design-system): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/631fa90e2ec5352c01e2ee0824de4a45cc33de34"},(0,n.kt)("inlineCode",{parentName:"a"},"631fa90"))),(0,n.kt)("li",{parentName:"ul"},"style(checkbox/radio): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a04939fdb530ed998a40aeb5b85a748d5dace0cd"},(0,n.kt)("inlineCode",{parentName:"a"},"a04939f"))),(0,n.kt)("li",{parentName:"ul"},"style(design-system): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c753f0b378384150597283c97f657eafbfff296"},(0,n.kt)("inlineCode",{parentName:"a"},"3c753f0"))),(0,n.kt)("li",{parentName:"ul"},"style(message): stylelint fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5b75057cb3a7b366a940ca9d1ba577cd09dc7225"},(0,n.kt)("inlineCode",{parentName:"a"},"5b75057")))),(0,n.kt)("h4",{id:"-documentation-changes-20"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): visuals guidelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/544a9502dc046d7e8bc635c19480a8deb2b31379"},(0,n.kt)("inlineCode",{parentName:"a"},"544a950"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): search guidelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0fb229d8b6a042bd716a093faaf8a1461b70cdb8"},(0,n.kt)("inlineCode",{parentName:"a"},"0fb229d"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): loader page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/892a25dba66f3557af22f8f0f96db695ddf1b402"},(0,n.kt)("inlineCode",{parentName:"a"},"892a25d")))),(0,n.kt)("h4",{id:"\ufe0f-others-52"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Reformat header.less ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f99dfc82c165304ca5600ce5138c1233615ab69"},(0,n.kt)("inlineCode",{parentName:"a"},"1f99dfc"))),(0,n.kt)("li",{parentName:"ul"},"Close menu when changing path ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/65daea9ee34c64bd5e51104077bc745b68169cd2"},(0,n.kt)("inlineCode",{parentName:"a"},"65daea9"))),(0,n.kt)("li",{parentName:"ul"},"refactor breadcrumbs component, make it functional and customizable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ec374e20565eb0a5aed0ff67a02cd6f77eba1f0"},(0,n.kt)("inlineCode",{parentName:"a"},"4ec374e"))),(0,n.kt)("li",{parentName:"ul"},"rollback(cards): move custom display to volto-block-image-cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/79d4c8914b7184d559465135f046b60ee96301e1"},(0,n.kt)("inlineCode",{parentName:"a"},"79d4c89"))),(0,n.kt)("li",{parentName:"ul"},"Open overlay menu on global menu click ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cc749bc4266aae793b85d72c43c8a08b0c2fec48"},(0,n.kt)("inlineCode",{parentName:"a"},"cc749bc"))),(0,n.kt)("li",{parentName:"ul"},"bring back segment wrapper and make it attached ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f413ffaf641c161e8ff0f8010759cffd7e30238"},(0,n.kt)("inlineCode",{parentName:"a"},"9f413ff"))),(0,n.kt)("li",{parentName:"ul"},"Use renderMenuItem also in mobile menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/02de0bb4750062a310109256b6c6d29120287fd4"},(0,n.kt)("inlineCode",{parentName:"a"},"02de0bb"))),(0,n.kt)("li",{parentName:"ul"},"Fix clicking outside closes menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af526646559d1a00ade04dc24def26e5665a5a8c"},(0,n.kt)("inlineCode",{parentName:"a"},"af52664"))),(0,n.kt)("li",{parentName:"ul"},"Cleanup args in header story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2bf6a304b1149ec1204f08f318248ed52ad8fa3d"},(0,n.kt)("inlineCode",{parentName:"a"},"2bf6a30"))),(0,n.kt)("li",{parentName:"ul"},"fix warning related to proptype ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/824b9beff77aae139882cd50a1d670a02ec6f723"},(0,n.kt)("inlineCode",{parentName:"a"},"824b9be"))),(0,n.kt)("li",{parentName:"ul"},"fix profile section css overflow ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8fd265413149f1b5e033dffa0fbcb5ef5ecad15f"},(0,n.kt)("inlineCode",{parentName:"a"},"8fd2654"))),(0,n.kt)("li",{parentName:"ul"},"don't use volto-slate ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70ca3d4ec4e8e4dc633e957b842d94b708af8b82"},(0,n.kt)("inlineCode",{parentName:"a"},"70ca3d4"))),(0,n.kt)("li",{parentName:"ul"},"remove segment custom width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a60d84d5fe76578b7760aa1dad6eef9a20916a7"},(0,n.kt)("inlineCode",{parentName:"a"},"4a60d84"))),(0,n.kt)("li",{parentName:"ul"},"update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/96f4af0fb22605fd294472eb18f7f62e4bd7b0fb"},(0,n.kt)("inlineCode",{parentName:"a"},"96f4af0"))),(0,n.kt)("li",{parentName:"ul"},"Fix TopDropdownMenu component rendering in mobile ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4626def4e1f97f323f3fef130f5d531925ba15b"},(0,n.kt)("inlineCode",{parentName:"a"},"a4626de"))),(0,n.kt)("li",{parentName:"ul"},"Add usePrevious hook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/797faba3cad73288755f6c6e685448d780905189"},(0,n.kt)("inlineCode",{parentName:"a"},"797faba"))),(0,n.kt)("li",{parentName:"ul"},"make breadcrumbs default size as tiny ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c8e1c64f27596421e78927f11616093667b04c6"},(0,n.kt)("inlineCode",{parentName:"a"},"3c8e1c6"))),(0,n.kt)("li",{parentName:"ul"},"Update package.json ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fa020cb5dd85e28d0713b3e8a11aff5b2c1060af"},(0,n.kt)("inlineCode",{parentName:"a"},"fa020cb"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about hardcoded values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0c6912c82625c2e389fd75f0d0a051348781d407"},(0,n.kt)("inlineCode",{parentName:"a"},"0c6912c"))),(0,n.kt)("li",{parentName:"ul"},"set profile section overflow to auto ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8db62bbcd0258fee16411e94888c732a29b1949d"},(0,n.kt)("inlineCode",{parentName:"a"},"8db62bb"))),(0,n.kt)("li",{parentName:"ul"},"added comment about need for removal of this fix later ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6fdbd713dbfe795e7e81cfa37398774fad71c054"},(0,n.kt)("inlineCode",{parentName:"a"},"6fdbd71"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using eea-website-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6051724437a38675e659c797bb5586ef81286ec0"},(0,n.kt)("inlineCode",{parentName:"a"},"6051724"))),(0,n.kt)("li",{parentName:"ul"},"removed override already present in card.less ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93c4e5aac9cc85ff2cc6c04180f6655d5f5616dc"},(0,n.kt)("inlineCode",{parentName:"a"},"93c4e5a"))),(0,n.kt)("li",{parentName:"ul"},"Remove console.log calls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8a3a4cb32bfed2daa86339b15c0301eb01e19f23"},(0,n.kt)("inlineCode",{parentName:"a"},"8a3a4cb"))),(0,n.kt)("li",{parentName:"ul"},"update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/81bb7d4a02576887b80e978c32724580b772d57a"},(0,n.kt)("inlineCode",{parentName:"a"},"81bb7d4"))),(0,n.kt)("li",{parentName:"ul"},"Update comment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ffa24001728f824b8e7154c93c5aad8196bd92ea"},(0,n.kt)("inlineCode",{parentName:"a"},"ffa2400"))),(0,n.kt)("li",{parentName:"ul"},"merge develop into this branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ad5b388957b7d67f1b7ae06f2b80b1c30868d72a"},(0,n.kt)("inlineCode",{parentName:"a"},"ad5b388"))),(0,n.kt)("li",{parentName:"ul"},"WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a8d97f10b9768894a135549e9dc8f938b663f905"},(0,n.kt)("inlineCode",{parentName:"a"},"a8d97f1"))),(0,n.kt)("li",{parentName:"ul"},"Use header.less from develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/99edbc6ccd6023162dcce75b36d6b9451b06f6dc"},(0,n.kt)("inlineCode",{parentName:"a"},"99edbc6"))),(0,n.kt)("li",{parentName:"ul"},"WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/57b5783e2b03859f89c5926951ea232547b455cc"},(0,n.kt)("inlineCode",{parentName:"a"},"57b5783"))),(0,n.kt)("li",{parentName:"ul"},"WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/785da36b725bf14bff28a67da799c51bc5b4f20f"},(0,n.kt)("inlineCode",{parentName:"a"},"785da36"))),(0,n.kt)("li",{parentName:"ul"},"WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5d1eba9a1df2d2bb078f119ee99b0627ac55ae1d"},(0,n.kt)("inlineCode",{parentName:"a"},"5d1eba9"))),(0,n.kt)("li",{parentName:"ul"},"adds Tags ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e37fc1957ed8357bc2190239da4440bb98b0dabe"},(0,n.kt)("inlineCode",{parentName:"a"},"e37fc19"))),(0,n.kt)("li",{parentName:"ul"},"Add useClickOutside hook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70364c88631cbfa6e6854a99dde42ea2ad73221f"},(0,n.kt)("inlineCode",{parentName:"a"},"70364c8"))),(0,n.kt)("li",{parentName:"ul"},"Implement outside click handling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fa6f81823c47ca32209f3f1c8b1810b5447f97ec"},(0,n.kt)("inlineCode",{parentName:"a"},"fa6f818"))),(0,n.kt)("li",{parentName:"ul"},"Simplify overlay menu template ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/28b04784cf32ed4393e452c56680bffda411d526"},(0,n.kt)("inlineCode",{parentName:"a"},"28b0478"))),(0,n.kt)("li",{parentName:"ul"},"fixes less variables, fixes tags positioning ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cc19b9b537b5f21ceaba986bbd0182bb3b867ac7"},(0,n.kt)("inlineCode",{parentName:"a"},"cc19b9b"))),(0,n.kt)("li",{parentName:"ul"},"WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/15bc0f4287b705839f6fd5ac8835f03e2e99f1f1"},(0,n.kt)("inlineCode",{parentName:"a"},"15bc0f4"))),(0,n.kt)("li",{parentName:"ul"},"no ",(0,n.kt)("inlineCode",{parentName:"li"},"display: flex")," for blockquote added from slate ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/312a893e924dea4e7aed182be4a615bc3c4f04f8"},(0,n.kt)("inlineCode",{parentName:"a"},"312a893"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about code length ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/318cd48f8116a49897590137eebe2ce35285b813"},(0,n.kt)("inlineCode",{parentName:"a"},"318cd48"))),(0,n.kt)("li",{parentName:"ul"},"Add indenting rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d58968522ef82a7d5381fc4958ae2049562b7103"},(0,n.kt)("inlineCode",{parentName:"a"},"d589685"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about import sorting ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cd337c16650ae169e4b634b034f40f3cd887ceb8"},(0,n.kt)("inlineCode",{parentName:"a"},"cd337c1"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about naming vars ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b112de0dcaa4209cfe143dcd26ba929b4cbe0a42"},(0,n.kt)("inlineCode",{parentName:"a"},"b112de0"))),(0,n.kt)("li",{parentName:"ul"},"Bring back classNames from header subpopup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e477a5150bee569fadca300a3ccc3586e7d7ef4a"},(0,n.kt)("inlineCode",{parentName:"a"},"e477a51"))),(0,n.kt)("li",{parentName:"ul"},"removes tags hashtag from jsx ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6b8b3e94a6a1060304c1e5b228806985343ef6a0"},(0,n.kt)("inlineCode",{parentName:"a"},"6b8b3e9"))),(0,n.kt)("li",{parentName:"ul"},"WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d481324ff7a63e3cb0847b89fa188cc8781de4dc"},(0,n.kt)("inlineCode",{parentName:"a"},"d481324"))),(0,n.kt)("li",{parentName:"ul"},"fixes undefined on empty classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4b29080d646c44b02a28c4619f5285227fa2bf78"},(0,n.kt)("inlineCode",{parentName:"a"},"4b29080"))),(0,n.kt)("li",{parentName:"ul"},"stylelint changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a5ab83018bccd8fbfcf2160fe9c6c4fc24abe83a"},(0,n.kt)("inlineCode",{parentName:"a"},"a5ab830"))),(0,n.kt)("li",{parentName:"ul"},"Footer link color @white ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/578e4f7bb174cd46d50a8b5c5a97f8bbff510f11"},(0,n.kt)("inlineCode",{parentName:"a"},"578e4f7"))),(0,n.kt)("li",{parentName:"ul"},"add margin to ","<","br",">"," element to simulate gap as in design ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9ab9a97dc231fd3b704fedd99c742f425be4578c"},(0,n.kt)("inlineCode",{parentName:"a"},"9ab9a97"))),(0,n.kt)("li",{parentName:"ul"},"impors colors from site variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6117267716b76b17379ae989911c5d5f00e63259"},(0,n.kt)("inlineCode",{parentName:"a"},"6117267"))),(0,n.kt)("li",{parentName:"ul"},"small fix for the link in footer action ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/72df049aa644ac2a675057bf3a96440144acabfb"},(0,n.kt)("inlineCode",{parentName:"a"},"72df049"))),(0,n.kt)("li",{parentName:"ul"},"remove uneeded style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/66e9064de395b37caef1436aaee3a164b53ae406"},(0,n.kt)("inlineCode",{parentName:"a"},"66e9064"))),(0,n.kt)("li",{parentName:"ul"},"use proper naming conventions for var naming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/596e3143e28f23e60f20becd97276831c89d9684"},(0,n.kt)("inlineCode",{parentName:"a"},"596e314"))),(0,n.kt)("li",{parentName:"ul"},"Add file mode rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/805baa7db5ae1863bc85687f8f872c74a26647c8"},(0,n.kt)("inlineCode",{parentName:"a"},"805baa7"))),(0,n.kt)("li",{parentName:"ul"},"use less variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b43ac8d3bfc0231313f3d8bc719e373a127c6329"},(0,n.kt)("inlineCode",{parentName:"a"},"b43ac8d"))),(0,n.kt)("li",{parentName:"ul"},"Add DRY rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2f1584e769d0462c0385847630e3bbfe48a52339"},(0,n.kt)("inlineCode",{parentName:"a"},"2f1584e"))),(0,n.kt)("li",{parentName:"ul"},"Add functional components rule; add classnames rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1b2915ed3a4a3446e11058ac7de8937cf5755630"},(0,n.kt)("inlineCode",{parentName:"a"},"1b2915e"))),(0,n.kt)("li",{parentName:"ul"},"fix z-index of header ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d2a5d6bb822a298367ce58d867939318171a300"},(0,n.kt)("inlineCode",{parentName:"a"},"7d2a5d6"))),(0,n.kt)("li",{parentName:"ul"},"Remove comment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d120b16491406ea7cc26428dcf13ec2565868d0"},(0,n.kt)("inlineCode",{parentName:"a"},"7d120b1")))),(0,n.kt)("h3",{id:"014---2022-03-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.4-beta.0...0.1.4"},"0.1.4")," - 2022-03-01"),(0,n.kt)("h4",{id:"-enhancements-62"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(pagination): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/06cc3b6db6f56040264e4c70fe2e39ace14499d7"},(0,n.kt)("inlineCode",{parentName:"a"},"06cc3b6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Form):create form field wrapper file ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/95b9934a75ffd6b254b7bb9c119b8087c7565c13"},(0,n.kt)("inlineCode",{parentName:"a"},"95b9934"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): update margins for menu items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/230e476d133b3f7853a73f3f2ee372c6306bd43f"},(0,n.kt)("inlineCode",{parentName:"a"},"230e476"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): update gradient ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/47f2ea40c4f214a41af58ceb90839a05932b0b55"},(0,n.kt)("inlineCode",{parentName:"a"},"47f2ea4")))),(0,n.kt)("h4",{id:"-documentation-changes-21"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): divider page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c6bb2389f819a9ebd8e34db0e825f3e5f62130d4"},(0,n.kt)("inlineCode",{parentName:"a"},"c6bb238")))),(0,n.kt)("h4",{id:"\ufe0f-others-53"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"add footer links,align footer image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b039564e8cd3a0319ebe07f434f20bb7d7827fe1"},(0,n.kt)("inlineCode",{parentName:"a"},"b039564"))),(0,n.kt)("li",{parentName:"ul"},"cosmetics: remove formatting ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e02b08dc2adc8b89a5b9117b5a572c7080248c29"},(0,n.kt)("inlineCode",{parentName:"a"},"e02b08d"))),(0,n.kt)("li",{parentName:"ul"},"refactor Footer component to consume children and prop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/faafcffe07383ba55f5746cb971cdf706d988f78"},(0,n.kt)("inlineCode",{parentName:"a"},"faafcff"))),(0,n.kt)("li",{parentName:"ul"},"update footer stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4e5742872f21d9737f3de443fa0e9d1b6ba02637"},(0,n.kt)("inlineCode",{parentName:"a"},"4e57428"))),(0,n.kt)("li",{parentName:"ul"},"update stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/81973cac96ee48e9b294c45e32c0ec3d2956fe67"},(0,n.kt)("inlineCode",{parentName:"a"},"81973ca"))),(0,n.kt)("li",{parentName:"ul"},"Small improvements to footer ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6d1fdc000ab83932df62244142068f097aeeb85"},(0,n.kt)("inlineCode",{parentName:"a"},"f6d1fdc"))),(0,n.kt)("li",{parentName:"ul"},"fix header urls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e5908916823a1f5771ddbeb51b3e8af026425c49"},(0,n.kt)("inlineCode",{parentName:"a"},"e590891"))),(0,n.kt)("li",{parentName:"ul"},"Rename files in footer story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3de0c19d1ddeb69d8567026e1532fceb9221049a"},(0,n.kt)("inlineCode",{parentName:"a"},"3de0c19"))),(0,n.kt)("li",{parentName:"ul"},"add style for accordion title input on edit mode ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/598aa129f2dff0a2cb2ec57f551fa72481aa911e"},(0,n.kt)("inlineCode",{parentName:"a"},"598aa12"))),(0,n.kt)("li",{parentName:"ul"},"remove comments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2db0d2c2bbebe8bab8cf9801c5ea2650dde96b87"},(0,n.kt)("inlineCode",{parentName:"a"},"2db0d2c"))),(0,n.kt)("li",{parentName:"ul"},"Apply slate customization if volto-slate addon is used ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c066701dc359c6daf01703dac8fa61c2314c11cf"},(0,n.kt)("inlineCode",{parentName:"a"},"c066701"))),(0,n.kt)("li",{parentName:"ul"},"use relative links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af91a203bb30f5c9aa1335bfa8cdaa7857d577e2"},(0,n.kt)("inlineCode",{parentName:"a"},"af91a20"))),(0,n.kt)("li",{parentName:"ul"},"make footer anchor links white ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0c671e1bf52268505a5dc58196c285c04da33b10"},(0,n.kt)("inlineCode",{parentName:"a"},"0c671e1"))),(0,n.kt)("li",{parentName:"ul"},"use custom var for line-height ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f7f6c7ea605014741b9426b19008a4e6eda6704c"},(0,n.kt)("inlineCode",{parentName:"a"},"f7f6c7e"))),(0,n.kt)("li",{parentName:"ul"},"Update semantic.less ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4a90aed030a8927fa2ea949e4f44d23638c751a"},(0,n.kt)("inlineCode",{parentName:"a"},"a4a90ae"))),(0,n.kt)("li",{parentName:"ul"},"Bump release version ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c41a42bc2fd8174a2554e6dce1a1090eff4f3bd1"},(0,n.kt)("inlineCode",{parentName:"a"},"c41a42b"))),(0,n.kt)("li",{parentName:"ul"},"Update style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/89686990b2481f339c9bec7e7f9d35d9caab94c5"},(0,n.kt)("inlineCode",{parentName:"a"},"8968699"))),(0,n.kt)("li",{parentName:"ul"},"remove styling on header popups ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/86c499be61c0d2df46cb3469a47f0afae2e46c49"},(0,n.kt)("inlineCode",{parentName:"a"},"86c499b"))),(0,n.kt)("li",{parentName:"ul"},"remove search icon styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aca80fdc78859461cfee1d902b1d122d4a189b31"},(0,n.kt)("inlineCode",{parentName:"a"},"aca80fd"))),(0,n.kt)("li",{parentName:"ul"},"adjust popup height for computer screens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/47c5edb06c8d8cdb9af8ac64f68be0e0360eccaf"},(0,n.kt)("inlineCode",{parentName:"a"},"47c5edb"))),(0,n.kt)("li",{parentName:"ul"},"fix login container width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9a887e3b15aa63aab9be8738f599febcfe245b81"},(0,n.kt)("inlineCode",{parentName:"a"},"9a887e3"))),(0,n.kt)("li",{parentName:"ul"},"Typo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/90da95c67e965124da7f431e464bcbc15fa67894"},(0,n.kt)("inlineCode",{parentName:"a"},"90da95c"))),(0,n.kt)("li",{parentName:"ul"},"fix search-input icon line-height ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b087ff86d7753f3ee0bf90a9b07c4ee7ef5e336c"},(0,n.kt)("inlineCode",{parentName:"a"},"b087ff8"))),(0,n.kt)("li",{parentName:"ul"},"lint fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e9790ca72b8d3caf114c1b80b9c5837fb6a1a56e"},(0,n.kt)("inlineCode",{parentName:"a"},"e9790ca"))),(0,n.kt)("li",{parentName:"ul"},"Rename, reorganize logos ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1ef8d22df5a757258d8610818f44362046bc828d"},(0,n.kt)("inlineCode",{parentName:"a"},"1ef8d22")))),(0,n.kt)("h3",{id:"014-beta0---2022-02-25"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.3...0.1.4-beta.0"},"0.1.4-beta.0")," - 2022-02-25"),(0,n.kt)("h4",{id:"-new-features-32"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(github): added feature and bug reports templates with our guidelines as checkboxes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/15490937382ced93f5ac69cc1939256c0a468823"},(0,n.kt)("inlineCode",{parentName:"a"},"1549093")))),(0,n.kt)("h3",{id:"013---2022-02-25"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.2...0.1.3"},"0.1.3")," - 2022-02-25"),(0,n.kt)("h4",{id:"-bug-fixes-46"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(all): change eol to unix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/62e72244f78d43ce1c7b1a5ceb8405e4a617c88a"},(0,n.kt)("inlineCode",{parentName:"a"},"62e7224"))),(0,n.kt)("li",{parentName:"ul"},"fix(banner): separate url value ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f9c9140a6f8640bbb83a08f9c5c268f31ff7b6a8"},(0,n.kt)("inlineCode",{parentName:"a"},"f9c9140"))),(0,n.kt)("li",{parentName:"ul"},"fix(all): merge eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c68f6e0e7ab11d7451c8aabf194f62da0b6adb28"},(0,n.kt)("inlineCode",{parentName:"a"},"c68f6e0"))),(0,n.kt)("li",{parentName:"ul"},"fix(blockquote): align self property now uses a valid entry ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ec761634765105694386ce48153fb95c09339273"},(0,n.kt)("inlineCode",{parentName:"a"},"ec76163")))),(0,n.kt)("h4",{id:"-enhancements-63"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): new implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff013afc68fed97d085e3930f6d728b266786dc1"},(0,n.kt)("inlineCode",{parentName:"a"},"ff013af"))),(0,n.kt)("li",{parentName:"ul"},"change(volto): removed customizations made for ims theme from volto-eea-design-system ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bc8d514d82da0811c10eefe6dde16e0846497a4a"},(0,n.kt)("inlineCode",{parentName:"a"},"bc8d514"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Timeline): divide to sub components and change files to .jsx ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e2bd3b6c8dd064e7269819ce465b961a0cee849"},(0,n.kt)("inlineCode",{parentName:"a"},"3e2bd3b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4e5d08d565ef08e4e390ede4a611145a16ca2fa9"},(0,n.kt)("inlineCode",{parentName:"a"},"4e5d08d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): link header's menu to mega menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/08406d84e5bc1c7eb1358baff19ff6731f124b32"},(0,n.kt)("inlineCode",{parentName:"a"},"08406d8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Menu): change mega menu implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/455a51b9a9fbb00c6a89c42de226787c143176f7"},(0,n.kt)("inlineCode",{parentName:"a"},"455a51b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Grid):minor changes and delete extra files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/272585dfed0c0e82b26c1e6843484ad0981ba75f"},(0,n.kt)("inlineCode",{parentName:"a"},"272585d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(timeline): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b98641af00f23302b728094ed00a4563b6813387"},(0,n.kt)("inlineCode",{parentName:"a"},"b98641a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): fix link hover issue for tablet ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/564e9721aea7d4ed998d88764e37454bc3154d3d"},(0,n.kt)("inlineCode",{parentName:"a"},"564e972"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add remix icons and minor updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c9c97dd719187e996efabaee28ccbf23d43f03af"},(0,n.kt)("inlineCode",{parentName:"a"},"c9c97dd"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): change header buttons implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6608b8cfffb75dda90b01728dc4fe657cbd84069"},(0,n.kt)("inlineCode",{parentName:"a"},"6608b8c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): add sub components and change existing Main ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/74c35a3fe462bdad7b9b2a5a6e969043439fdf5b"},(0,n.kt)("inlineCode",{parentName:"a"},"74c35a3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(table): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab7a0e8d9e83edb3035d57285a5f85557bcd7576"},(0,n.kt)("inlineCode",{parentName:"a"},"ab7a0e8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Footer): delete Actions & ThemeSites files and clear imports ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7a78456f55742a1b356070303218342876641e52"},(0,n.kt)("inlineCode",{parentName:"a"},"7a78456"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/326655a48aeac65b32beadb48707d0193c952702"},(0,n.kt)("inlineCode",{parentName:"a"},"326655a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Breadcrumb): add react router link and minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/073a3a36215427dce274a533b10d2d0bb3526de9"},(0,n.kt)("inlineCode",{parentName:"a"},"073a3a3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): show menu on search & minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4d49a8ae6958b84bd2dbaf7bd5f62310037eb288"},(0,n.kt)("inlineCode",{parentName:"a"},"4d49a8a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(List): add extra default list story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/95665cdca945cba104a25d5efcbc56436dffbd7f"},(0,n.kt)("inlineCode",{parentName:"a"},"95665cd"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus) change generation of what's new section and bump package version ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6c35cff4d65bb44755376c85ff4de8c6b39af00b"},(0,n.kt)("inlineCode",{parentName:"a"},"6c35cff"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Footer): minor code changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/67cb4bc5f9d341da78e7816ed89f219d8ac2836e"},(0,n.kt)("inlineCode",{parentName:"a"},"67cb4bc"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Menu): add class to mega menu items for styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19baa342c29322d11371303dc0092f472da1eeee"},(0,n.kt)("inlineCode",{parentName:"a"},"19baa34"))),(0,n.kt)("li",{parentName:"ul"},"change(accordion): modified default accordion stories titles with real accordion names ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cf11cc81d7096d338c565180597822e51fcaa8b7"},(0,n.kt)("inlineCode",{parentName:"a"},"cf11cc8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): accessibility image alt fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7347a688c2f37f08390b189f8bfa990c26c7f75"},(0,n.kt)("inlineCode",{parentName:"a"},"a7347a6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): adjust to volto in progress ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/760becabf40dbbaed36dac6c37275c7e31aa2509"},(0,n.kt)("inlineCode",{parentName:"a"},"760beca"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): header items as storybook arguments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/388c752aa0694e78f5306c2b2efa4a34df4b9ca6"},(0,n.kt)("inlineCode",{parentName:"a"},"388c752"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): update less variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/35b0a98eced49212bb08c3c7d2ac6987a16ec6be"},(0,n.kt)("inlineCode",{parentName:"a"},"35b0a98"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): actions as buttons; don't hardcode url for banner image; subcomponentize Banner, add Banner.Action; add developer guidelines on inline styles and line endings; ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6dd5a41248e8bf4095744bd89217707f3ad820a1"},(0,n.kt)("inlineCode",{parentName:"a"},"6dd5a41"))),(0,n.kt)("li",{parentName:"ul"},"refactor(blockquote): fix responsive margins and sizes rems ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/209f94f5535d83678af5fd650dcc3892a94c8a34"},(0,n.kt)("inlineCode",{parentName:"a"},"209f94f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Input): label position and style change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/970074aacae0c1ffabe88be58779b332993a37fd"},(0,n.kt)("inlineCode",{parentName:"a"},"970074a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update dropdown menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32eb0fa5dbb431c5d8e74e4c3e28b0555dab8aea"},(0,n.kt)("inlineCode",{parentName:"a"},"32eb0fa"))),(0,n.kt)("li",{parentName:"ul"},"refactor(timeline): theming updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c80c9aa5eb08c3b58199c6f6faca06445640f9f8"},(0,n.kt)("inlineCode",{parentName:"a"},"c80c9aa"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Blockquote):remove image stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a6357caa641e18e7a19b834cd907ba8c7117367f"},(0,n.kt)("inlineCode",{parentName:"a"},"a6357ca"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus) proofread blockquote usage section and removed unused api section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0bb29fdb73bce90f842748abd978a388fff93932"},(0,n.kt)("inlineCode",{parentName:"a"},"0bb29fd"))),(0,n.kt)("li",{parentName:"ul"},"change(infrastructure) cherry-pick fix 9639243 skipping jenkins on auto commits ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fc744cda5a4e6d9da0ab6e7f92868d53f28f53c1"},(0,n.kt)("inlineCode",{parentName:"a"},"fc744cd"))),(0,n.kt)("li",{parentName:"ul"},"change(ci) build storybook and docusaurus only when pushing to develop-itml branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4de0cbf9bfc4ecb46605dca1048a38db844880e7"},(0,n.kt)("inlineCode",{parentName:"a"},"4de0cbf"))),(0,n.kt)("li",{parentName:"ul"},"change(infrastructure): modify whats new doc when committing the auto deployment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/39df33ed946a8167e4954cffb676144700e0ec38"},(0,n.kt)("inlineCode",{parentName:"a"},"39df33e"))),(0,n.kt)("li",{parentName:"ul"},"change(blockquote): introduce float argument for blockquote with image storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8fc72906c264b5e96702f8518e81d5724b494a5c"},(0,n.kt)("inlineCode",{parentName:"a"},"8fc7290"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pullquote): add word break ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2245e53dde6dd8abf437afa94e92bbedc60c9f8c"},(0,n.kt)("inlineCode",{parentName:"a"},"2245e53"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner): minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b9073b60e337eab40a992283b5b9e75d5cffe895"},(0,n.kt)("inlineCode",{parentName:"a"},"b9073b6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(table): fix th font weight ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a96a0a7a4cb450b5f947bc397495a2a41c605c87"},(0,n.kt)("inlineCode",{parentName:"a"},"a96a0a7"))),(0,n.kt)("li",{parentName:"ul"},"refactor(comment): remove avatar border radius ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d42c37bb8f71e20e1d0ec438c14e3c7ac00cf0ae"},(0,n.kt)("inlineCode",{parentName:"a"},"d42c37b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): adjust title size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7a24d9c07a5994fa46c39fdf1e827e0d1ae5e504"},(0,n.kt)("inlineCode",{parentName:"a"},"7a24d9c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Image): change image path ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a580da68a45bbe68d314f60e9495fc321489caf5"},(0,n.kt)("inlineCode",{parentName:"a"},"a580da6"))),(0,n.kt)("li",{parentName:"ul"},"change(infrastructure): specify that docs folder contains changes for deployment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a1ca9153b70e3525cd73423d059a8607f63fc2b9"},(0,n.kt)("inlineCode",{parentName:"a"},"a1ca915")))),(0,n.kt)("h4",{id:"-internal-changes-24"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(input) prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e83fa0c3e95e33d89ab668de38e6b0b12d9fb0d9"},(0,n.kt)("inlineCode",{parentName:"a"},"e83fa0c"))),(0,n.kt)("li",{parentName:"ul"},"chore(storybook): prettier fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/354c7b33c92a9f48ca9cbb0b96b6cec213e465c8"},(0,n.kt)("inlineCode",{parentName:"a"},"354c7b3"))),(0,n.kt)("li",{parentName:"ul"},"chore(design system): technical commit for edw integration tests ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f76035122d647e14b5151af3b39f0ab3e199af2"},(0,n.kt)("inlineCode",{parentName:"a"},"9f76035"))),(0,n.kt)("li",{parentName:"ul"},"style(storybook): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c9ad345268335c42e41d13b35c0da93e9770847"},(0,n.kt)("inlineCode",{parentName:"a"},"3c9ad34"))),(0,n.kt)("li",{parentName:"ul"},"chore(infrastructure) updated branch with changes from bitbucket ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/77866f8c7ac203db0645a74b7a7456b5c4de5dd7"},(0,n.kt)("inlineCode",{parentName:"a"},"77866f8")))),(0,n.kt)("h4",{id:"\ufe0f-others-54"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"doc(colours):fix color to better show primary ones ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/705b7899f9d687747d2deb27ac4d8b4429878de0"},(0,n.kt)("inlineCode",{parentName:"a"},"705b789"))),(0,n.kt)("li",{parentName:"ul"},"doc(colours):change font size to fit text in one line ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ad751660ec832e67a0c858e75685259b9ef8d82"},(0,n.kt)("inlineCode",{parentName:"a"},"4ad7516"))),(0,n.kt)("li",{parentName:"ul"},"bump package release to 1.3.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f3cfe4f5232ff96a9845d12da72008cf838c1010"},(0,n.kt)("inlineCode",{parentName:"a"},"f3cfe4f"))),(0,n.kt)("li",{parentName:"ul"},"Refactor banner into content subcomponent ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f8df238b4db90fdb841cdd5436a644e582f73b82"},(0,n.kt)("inlineCode",{parentName:"a"},"f8df238"))),(0,n.kt)("li",{parentName:"ul"},"lint fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cda322d8c013ef303b93b4b8d29594aa3bbd0bc1"},(0,n.kt)("inlineCode",{parentName:"a"},"cda322d"))),(0,n.kt)("li",{parentName:"ul"},"rollback don'ts grammar change and disable unresolved import for Banner.stories.jsx ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a1bd7154fa64451b6a521743955a57405dc7fb67"},(0,n.kt)("inlineCode",{parentName:"a"},"a1bd715"))),(0,n.kt)("li",{parentName:"ul"},"Add space line in component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4d1a5fbe9a9ea53701702d7ce33622795f5ab00"},(0,n.kt)("inlineCode",{parentName:"a"},"d4d1a5f")))),(0,n.kt)("h3",{id:"012---2022-02-17"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.2-beta.2...0.1.2"},"0.1.2")," - 2022-02-17"),(0,n.kt)("h4",{id:"-new-features-33"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(blockquote) added blockquote styles as a custom module ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d30662e23176cf7a5ab64aa322acd5a09a0c4130"},(0,n.kt)("inlineCode",{parentName:"a"},"d30662e")))),(0,n.kt)("h4",{id:"-bug-fixes-47"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(inpageNavigation): hide at the top of the page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/97ef50069cd9b29345fb68ce8b557a47577669a4"},(0,n.kt)("inlineCode",{parentName:"a"},"97ef500"))),(0,n.kt)("li",{parentName:"ul"},"fix(footer):missing image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac91a29a134c97af842c6be4987c60c44c4c96d8"},(0,n.kt)("inlineCode",{parentName:"a"},"ac91a29"))),(0,n.kt)("li",{parentName:"ul"},"fix(comment):fix broken image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8125dc179923f652ecd25003df8ecb4fb0aeffb9"},(0,n.kt)("inlineCode",{parentName:"a"},"8125dc1"))),(0,n.kt)("li",{parentName:"ul"},"fix(message): fix font loading ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fdc498e178a04315c88e005fbc1371ba954ff402"},(0,n.kt)("inlineCode",{parentName:"a"},"fdc498e"))),(0,n.kt)("li",{parentName:"ul"},"fix(logo): logo change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f8c8af4453774386d5d0432a078b049416d034b"},(0,n.kt)("inlineCode",{parentName:"a"},"5f8c8af")))),(0,n.kt)("h4",{id:"-enhancements-64"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): multiple components fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a3ff518323a3eab18edc5057c6f1233e5422a22"},(0,n.kt)("inlineCode",{parentName:"a"},"4a3ff51"))),(0,n.kt)("li",{parentName:"ul"},"change(infrastructure) re-enable integration tests for auto release stack ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce8daf8abc6eb9a6b7fd8579904a3e5642896e3a"},(0,n.kt)("inlineCode",{parentName:"a"},"ce8daf8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): global site files styling update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f3770f1756bca3898e2a67fa532a9d97b0fd1ef2"},(0,n.kt)("inlineCode",{parentName:"a"},"f3770f1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): multiple components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9277aaccb09aa03575b95851d55fc69b1f530e23"},(0,n.kt)("inlineCode",{parentName:"a"},"9277aac"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer) adjust to volto theming update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a59f1c354ceea661c60faabfdb6226c9f4ba1209"},(0,n.kt)("inlineCode",{parentName:"a"},"a59f1c3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): minor styling update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dd6b55c6c5331383a42f6865bd9bd0641feb9a3b"},(0,n.kt)("inlineCode",{parentName:"a"},"dd6b55c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): change header mega menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7559b57a08c2f0e9f3eb95167479ca041b998bc5"},(0,n.kt)("inlineCode",{parentName:"a"},"7559b57"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/451b9493b100dae80bed4b6629da725195dddff1"},(0,n.kt)("inlineCode",{parentName:"a"},"451b949"))),(0,n.kt)("li",{parentName:"ul"},"refactor(accordion): minor styling update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aeaf25f585c1379a2bd40de1c1bf03fee00ef76e"},(0,n.kt)("inlineCode",{parentName:"a"},"aeaf25f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bdff1768096443f2f453d76bf9958adabd309cb7"},(0,n.kt)("inlineCode",{parentName:"a"},"bdff176"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer):mobile responsiveness ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/14822bec78feebc2b06fc26d6992a481be2e3609"},(0,n.kt)("inlineCode",{parentName:"a"},"14822be"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): main and custom less files update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1607760bb1582c63ab1a6b978ac13bb0ca51b0c2"},(0,n.kt)("inlineCode",{parentName:"a"},"1607760"))),(0,n.kt)("li",{parentName:"ul"},"refactor(timeline): update after removing timeline addon ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f54d3806eb0a60379b46b03a04a6602ed465cd15"},(0,n.kt)("inlineCode",{parentName:"a"},"f54d380"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Footer): replace with subcomponents ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/378c652265213bafac9de1d946cb328fa2fe90cb"},(0,n.kt)("inlineCode",{parentName:"a"},"378c652"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): header change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/029e85039bb3f35a6ba4ff2870d98e1faa23661b"},(0,n.kt)("inlineCode",{parentName:"a"},"029e850"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): change header bar ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2b766fd62c86d22f01278c54d3a1dbfb696b095b"},(0,n.kt)("inlineCode",{parentName:"a"},"2b766fd"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus) use itml branch for docusaurus deployment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e286c50056aa6d0d5735cb330789b4e48a1f927"},(0,n.kt)("inlineCode",{parentName:"a"},"6e286c5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(accordion): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/971fcb824f6aa55ac28b4b275927b202d2c08ca6"},(0,n.kt)("inlineCode",{parentName:"a"},"971fcb8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): add sub components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7f955dbafa94c13e71ff587af70aa84d18da8da0"},(0,n.kt)("inlineCode",{parentName:"a"},"7f955db"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus) tweak auto deployment to always commit changes from docs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a2940daef1cf281bac87dec3cec68337053cc52d"},(0,n.kt)("inlineCode",{parentName:"a"},"a2940da"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): less and variables files created ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5b1a8aaf7f678dd60fb88149284058fcab617fd"},(0,n.kt)("inlineCode",{parentName:"a"},"d5b1a8a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(label): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c945e1600b4beb3667b389542adade317d285c6"},(0,n.kt)("inlineCode",{parentName:"a"},"3c945e1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(message): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e950fc56461540be24d9e5b2ff3c0bf8ad53738"},(0,n.kt)("inlineCode",{parentName:"a"},"3e950fc"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Footer): add sub components and props ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c3d14871887a83fb91792fbc8977c0439bcb16f2"},(0,n.kt)("inlineCode",{parentName:"a"},"c3d1487"))),(0,n.kt)("li",{parentName:"ul"},"refactor(modal): modal and confirm adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/83b60e94bdd3203a92a1b9038f9cc45011ba72a5"},(0,n.kt)("inlineCode",{parentName:"a"},"83b60e9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(comment): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/84348c36b5b750c324c89b5e3c462319bb9ebf46"},(0,n.kt)("inlineCode",{parentName:"a"},"84348c3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook):adjust headings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32f64f9b71d1cb8c96c9c37ba1850a2278f95287"},(0,n.kt)("inlineCode",{parentName:"a"},"32f64f9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): add comments to header menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c2c83b202e5117d8e0013101d8e922e9d93d21de"},(0,n.kt)("inlineCode",{parentName:"a"},"c2c83b2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Accordion): clear up accordion stories code ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4e59b8fa961b878591e9806e1ebbfdb841523077"},(0,n.kt)("inlineCode",{parentName:"a"},"4e59b8f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(segmant): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ab211e868296f377fddba203847549f0e5e07df"},(0,n.kt)("inlineCode",{parentName:"a"},"3ab211e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button) minor styling update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8782bb27c789a4aac97b380d718f4de129fdf682"},(0,n.kt)("inlineCode",{parentName:"a"},"8782bb2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): change image position ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cdd76d59ade86f3f989bf7d94e45e4d9b439115f"},(0,n.kt)("inlineCode",{parentName:"a"},"cdd76d5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumbs): update less variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/640817ee904f88a04f0e8f11b258f95b8db97039"},(0,n.kt)("inlineCode",{parentName:"a"},"640817e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(list): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1079c733e6ec634fedaab5b4630888a52b28e482"},(0,n.kt)("inlineCode",{parentName:"a"},"1079c73"))),(0,n.kt)("li",{parentName:"ul"},"refactor(timeline):adjust timeline module ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/213eb11e8e87940c18d81738609b4684329a5ce4"},(0,n.kt)("inlineCode",{parentName:"a"},"213eb11"))),(0,n.kt)("li",{parentName:"ul"},"refactor(blockquote):adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5eec87fc1b3017011266241c20b31217ac27c12d"},(0,n.kt)("inlineCode",{parentName:"a"},"5eec87f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progress): add progress bar colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ccf3c9823b2583fc70183554df7c4588fbf9ca13"},(0,n.kt)("inlineCode",{parentName:"a"},"ccf3c98"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pullquote):adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fee446668a8d65a717b42667af825cb5cec836b2"},(0,n.kt)("inlineCode",{parentName:"a"},"fee4466"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): change mobile mega menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c7ecf18a81024121218d580f201f324cf990829e"},(0,n.kt)("inlineCode",{parentName:"a"},"c7ecf18"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b726e49519914b02766bcd993b94ce9ff164e1df"},(0,n.kt)("inlineCode",{parentName:"a"},"b726e49"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button) adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/eb257f83541871ccc635842664722b914661770c"},(0,n.kt)("inlineCode",{parentName:"a"},"eb257f8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form): minor styling update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/79934b2cde2e806418a6422df2914321181f7a22"},(0,n.kt)("inlineCode",{parentName:"a"},"79934b2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Footer): create Actions & Sites sub components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/446840b99abd6897c1b59a9462d72b1f06f1dd4e"},(0,n.kt)("inlineCode",{parentName:"a"},"446840b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(inpageNavigation): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/85c631a9e9c1454f1f2530e4f1851089663dd610"},(0,n.kt)("inlineCode",{parentName:"a"},"85c631a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Inpage Navigation): changed button's display ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/36e5b4f107ce3535b607f7ed169c723a66ce6ac2"},(0,n.kt)("inlineCode",{parentName:"a"},"36e5b4f"))),(0,n.kt)("li",{parentName:"ul"},"enhancement(docusaurus) modified headings to be within release versions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19ace3038d6b4535b29634209e4d506e7dca2c2c"},(0,n.kt)("inlineCode",{parentName:"a"},"19ace30"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): move components to ui folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb91f88f628580f565eb01ea8627763bc2243dfb"},(0,n.kt)("inlineCode",{parentName:"a"},"cb91f88"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): change mega menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/de0fc6b3862a88ac04058b56020af23c1946ce41"},(0,n.kt)("inlineCode",{parentName:"a"},"de0fc6b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Pullquote): divide Pullquote to sub components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/34413c44ab9e318d67408f7497782b7de693deeb"},(0,n.kt)("inlineCode",{parentName:"a"},"34413c4"))),(0,n.kt)("li",{parentName:"ul"},"enhancement(docusaurus) replace changelog when auto-building docs Refs #145331 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/da25c0e25ffa80131ab4b5503b28e43385d9f827"},(0,n.kt)("inlineCode",{parentName:"a"},"da25c0e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(popup): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d0d192dc2b2a5edd422cf6a7b359c384ec4b1d55"},(0,n.kt)("inlineCode",{parentName:"a"},"d0d192d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ab6f914f487bea0df299de7da0bbd917733ee00"},(0,n.kt)("inlineCode",{parentName:"a"},"2ab6f91"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/89a16af86a165d7798b68b95ff3de215a92f0569"},(0,n.kt)("inlineCode",{parentName:"a"},"89a16af"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pullquotes) remove unnecessary variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e0d20a3febec060ac24c5498846e768d7068e8b9"},(0,n.kt)("inlineCode",{parentName:"a"},"e0d20a3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progress):adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d1ab950ee9cc14bbe95869d4f143fc428aad5a8d"},(0,n.kt)("inlineCode",{parentName:"a"},"d1ab950"))),(0,n.kt)("li",{parentName:"ul"},"refactor(blockquote) change variables names ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/36fd5be9bde1a3ceb8390639414f254fc26b8e76"},(0,n.kt)("inlineCode",{parentName:"a"},"36fd5be"))),(0,n.kt)("li",{parentName:"ul"},"refactor(comment): adjust font sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0311ed14c951eb9cba18a58f6f954c19601d838b"},(0,n.kt)("inlineCode",{parentName:"a"},"0311ed1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(InpageNavigation): clear up code ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1d7afdc8d751e61c3eef75360555807fdbef8619"},(0,n.kt)("inlineCode",{parentName:"a"},"1d7afdc"))),(0,n.kt)("li",{parentName:"ul"},"refactor(container): change variable name for computer padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/26d123f3e7e30a706b09efc10773694af79377f9"},(0,n.kt)("inlineCode",{parentName:"a"},"26d123f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(inpageNavigation): remove imports ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/25c1d1c3016695d92d104a12b22a6a9254f41b20"},(0,n.kt)("inlineCode",{parentName:"a"},"25c1d1c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): update ui index components exports ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce78d47880cab5849f4c01785cdd97a9b26771ec"},(0,n.kt)("inlineCode",{parentName:"a"},"ce78d47"))),(0,n.kt)("li",{parentName:"ul"},"change(infrastructure) auto build storybook when pushing to develop-itml branch of volto-eea-design-system ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e9aa5bc3de9c2e1c5dc55b5d317679bc14dd1cbd"},(0,n.kt)("inlineCode",{parentName:"a"},"e9aa5bc"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): delete demo stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8b58d0245f5bda7e2022a2ef9ace11015f13da01"},(0,n.kt)("inlineCode",{parentName:"a"},"8b58d02"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus) align deployment steps for building docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/37e4ce05d2772ac320a7ad561536189c5ea0a582"},(0,n.kt)("inlineCode",{parentName:"a"},"37e4ce0"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): remove components from customizations folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8930edeaf064ec316f1d086e1301a7e5269bfe4b"},(0,n.kt)("inlineCode",{parentName:"a"},"8930ede"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tab): minor styling update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1252ad0317ecf7e583dbb975b29a4c8e4c75330e"},(0,n.kt)("inlineCode",{parentName:"a"},"1252ad0"))),(0,n.kt)("li",{parentName:"ul"},"refactor(comment): change avatar src ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e5f9c4c02f5de5ae6480eedb45730bb76efbf7b4"},(0,n.kt)("inlineCode",{parentName:"a"},"e5f9c4c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner) : change file type and folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/878742ba0f95440ffbb5aec33f2cc4201dfacd43"},(0,n.kt)("inlineCode",{parentName:"a"},"878742b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form elements):changed text ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/919beea9deccec68ac0cdbbc1249ef4ab4c12230"},(0,n.kt)("inlineCode",{parentName:"a"},"919beea"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Image): change image src ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b9710849adf0cf4f10815186b6293bcc3881d68d"},(0,n.kt)("inlineCode",{parentName:"a"},"b971084"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Pullquote): add component propTypes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d32c5e69e76d7f369a286d29e49d767125550ebc"},(0,n.kt)("inlineCode",{parentName:"a"},"d32c5e6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(blockquote): adjust font sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d71a3cef7bfd4109c56b7fe8c07271c60a4bd19e"},(0,n.kt)("inlineCode",{parentName:"a"},"d71a3ce"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update font sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1c91c357a59669df0da0f4fc70d3aa420db27a14"},(0,n.kt)("inlineCode",{parentName:"a"},"1c91c35"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Blockquote): add component proTypes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea02649f92b0e41b1eb62a771330c2e53b3960e8"},(0,n.kt)("inlineCode",{parentName:"a"},"ea02649"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logo): update image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6113728e248c3e0fd0a467bb34406aa4403399e"},(0,n.kt)("inlineCode",{parentName:"a"},"f611372"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): restore config ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2c5239d92abe6be70b092e7e43f195308800f87"},(0,n.kt)("inlineCode",{parentName:"a"},"f2c5239"))),(0,n.kt)("li",{parentName:"ul"},"refactor(blockquote): update component name ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/572e655c033d93b32a48a61b1bf6383f6c993b26"},(0,n.kt)("inlineCode",{parentName:"a"},"572e655"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): fix story header import ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ceda6c7790964b150b95daf161d10364d6b67427"},(0,n.kt)("inlineCode",{parentName:"a"},"ceda6c7"))),(0,n.kt)("li",{parentName:"ul"},"change(infrastructure) auto build docusaurus when pushing to develop-itml branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7bebdf5e58f37400a8ae3d5f816c64c6b9ca3a5b"},(0,n.kt)("inlineCode",{parentName:"a"},"7bebdf5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): remove components from customization folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a9bb9b34e6961eaf16e54ed6f6ca4942944e8a0"},(0,n.kt)("inlineCode",{parentName:"a"},"4a9bb9b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner):story rename ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/56ff603d6c9cec7c22483a088624f5bd7911f717"},(0,n.kt)("inlineCode",{parentName:"a"},"56ff603"))),(0,n.kt)("li",{parentName:"ul"},"change(testing) removed navigation from cypress tests until component is finished ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5549f4c07cb0ffd725342f365aae07745d7e25f7"},(0,n.kt)("inlineCode",{parentName:"a"},"5549f4c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Segment): change to .jsx extension ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5cb35d81e8628832bab2e6ad50de6892e7e4370e"},(0,n.kt)("inlineCode",{parentName:"a"},"5cb35d8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Pullquote): change to .jsx extension ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/564cf7ea379703315f179ab922b4e0a02df63e47"},(0,n.kt)("inlineCode",{parentName:"a"},"564cf7e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(PopUp):change to .jsx extension ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dcb24ff252665a79fda2fec645e6f2a48ff71fd0"},(0,n.kt)("inlineCode",{parentName:"a"},"dcb24ff"))),(0,n.kt)("li",{parentName:"ul"},"refactor(InpageNavigation): change to .jsx extension ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dfefce3ebe55f8eb6f67974ccc33b0cb0bb13d9f"},(0,n.kt)("inlineCode",{parentName:"a"},"dfefce3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Blockquote): change to .jsx extension ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/44a164532c1ae969e4411e0cfb68b705ff2bfc1e"},(0,n.kt)("inlineCode",{parentName:"a"},"44a1645"))),(0,n.kt)("li",{parentName:"ul"},"refactor(heading): story name update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aa10f3412323321650e20401038d44b9bfdb507a"},(0,n.kt)("inlineCode",{parentName:"a"},"aa10f34")))),(0,n.kt)("h4",{id:"-internal-changes-25"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(footer): prettier fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/902c25712c88330db841240c9f1d6004e3e2674f"},(0,n.kt)("inlineCode",{parentName:"a"},"902c257"))),(0,n.kt)("li",{parentName:"ul"},"style(storybook): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/59f941dea9bf05f31257230f1a871c6eb0e98aae"},(0,n.kt)("inlineCode",{parentName:"a"},"59f941d")))),(0,n.kt)("h4",{id:"-documentation-changes-22"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus):multiple page updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2aba73ea6ff86c5a94789c707d98699fc1397e01"},(0,n.kt)("inlineCode",{parentName:"a"},"2aba73e"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus):update page content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/565697fecb4528cc5b4a6a43ca3ab9b026a2779e"},(0,n.kt)("inlineCode",{parentName:"a"},"565697f"))),(0,n.kt)("li",{parentName:"ul"},"docs(grid):update components grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/60eb083aa5d00840642caf73f6e0bb86b814aed5"},(0,n.kt)("inlineCode",{parentName:"a"},"60eb083"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): page adjustments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0641eacf9f4715acd4baaa651335ff84ac418009"},(0,n.kt)("inlineCode",{parentName:"a"},"0641eac"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus):updated various pages ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f860176a5f755d75d7b9558661e675fc678fe7ac"},(0,n.kt)("inlineCode",{parentName:"a"},"f860176"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): logo change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3af5e5c3acbf7ba4e152ca6944c500dbb0cf10ee"},(0,n.kt)("inlineCode",{parentName:"a"},"3af5e5c")))),(0,n.kt)("h4",{id:"\ufe0f-others-55"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"added sortable table stories and descriptions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d44dd7c651abe46c380b62efd3258c92223e99c"},(0,n.kt)("inlineCode",{parentName:"a"},"6d44dd7"))),(0,n.kt)("li",{parentName:"ul"},"Layout components theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/586101341f713bb072f2753d8df6e8b2ad6e4938"},(0,n.kt)("inlineCode",{parentName:"a"},"5861013"))),(0,n.kt)("li",{parentName:"ul"},"recovered files from origin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4ac04fde9c4297b09c834385f772e955b7f3b4a"},(0,n.kt)("inlineCode",{parentName:"a"},"a4ac04f"))),(0,n.kt)("li",{parentName:"ul"},"grid component & stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a5752e49aac05251905f7355234c3f9bc6b798f"},(0,n.kt)("inlineCode",{parentName:"a"},"4a5752e"))),(0,n.kt)("li",{parentName:"ul"},"Updated what's new section with actual commits from volto-eea-design-system repo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fc5e3c385d82ff7eccbd5841736f3ce292b2b7fd"},(0,n.kt)("inlineCode",{parentName:"a"},"fc5e3c3"))),(0,n.kt)("li",{parentName:"ul"},"Docusaurus title possible fix. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/db699e771b13bbd7e75c3bd84bb91ecf5d0459d8"},(0,n.kt)("inlineCode",{parentName:"a"},"db699e7"))),(0,n.kt)("li",{parentName:"ul"},"form elements stories added description & default values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6b4f6ebeed275a86f5ef6dafb13219db0c0fbbc6"},(0,n.kt)("inlineCode",{parentName:"a"},"6b4f6eb"))),(0,n.kt)("li",{parentName:"ul"},"removed API tabs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/58aa9286eb5d8cc520239aa6ee424ee5cd5446c3"},(0,n.kt)("inlineCode",{parentName:"a"},"58aa928"))),(0,n.kt)("li",{parentName:"ul"},"Layout updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/854f388c5b049e41217ddb444bc7bd0f2c61cdf6"},(0,n.kt)("inlineCode",{parentName:"a"},"854f388"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142123 removed extra customization of semantic.less: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab9de811b20b20a9f91ddc8b45b4de2eb9c47f6c"},(0,n.kt)("inlineCode",{parentName:"a"},"ab9de81"))),(0,n.kt)("li",{parentName:"ul"},"added page-header,footer and grid in docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/660c8e382068c179ca66831ae23588a4fb67cde6"},(0,n.kt)("inlineCode",{parentName:"a"},"660c8e3"))),(0,n.kt)("li",{parentName:"ul"},"Manual docs build and commit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/666eb6aff8535bb586a49579152fcf8a88961f35"},(0,n.kt)("inlineCode",{parentName:"a"},"666eb6a"))),(0,n.kt)("li",{parentName:"ul"},"added svg & png files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f1338d5bb02e17e402cea4b1584c7d01896097f9"},(0,n.kt)("inlineCode",{parentName:"a"},"f1338d5"))),(0,n.kt)("li",{parentName:"ul"},"added missing components to docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/934dfd8a98942c247deb2b5b8693604ad77cafa3"},(0,n.kt)("inlineCode",{parentName:"a"},"934dfd8"))),(0,n.kt)("li",{parentName:"ul"},"Control descriptions updated ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/56581ebc86a91fd012a98984b20f6daad25900fe"},(0,n.kt)("inlineCode",{parentName:"a"},"56581eb"))),(0,n.kt)("li",{parentName:"ul"},"Grid updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/700332d354aea84526ff22acf3bc2f8903c0f584"},(0,n.kt)("inlineCode",{parentName:"a"},"700332d"))),(0,n.kt)("li",{parentName:"ul"},"Button theming update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0ec68b6bd1ab060ac224a859180b9f750834c0b8"},(0,n.kt)("inlineCode",{parentName:"a"},"0ec68b6"))),(0,n.kt)("li",{parentName:"ul"},"site variebales & overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7251162f182f1528d72070aae8a5a14e9ec5ee93"},(0,n.kt)("inlineCode",{parentName:"a"},"7251162"))),(0,n.kt)("li",{parentName:"ul"},"Table and Tabs theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/49f08608e8be8475d561e1ce5c1bfbcfd21001f9"},(0,n.kt)("inlineCode",{parentName:"a"},"49f0860"))),(0,n.kt)("li",{parentName:"ul"},"Responsiveness updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48e1351104249fea610941793ff8ec3bf35d0699"},(0,n.kt)("inlineCode",{parentName:"a"},"48e1351"))),(0,n.kt)("li",{parentName:"ul"},"added various components to docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/550d71963b0957b1c5597bbdb2c699c411c649bd"},(0,n.kt)("inlineCode",{parentName:"a"},"550d719"))),(0,n.kt)("li",{parentName:"ul"},"Checkbox and radio updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24652a238f2c98fe5d8e8032e3320e0b3b4753e5"},(0,n.kt)("inlineCode",{parentName:"a"},"24652a2"))),(0,n.kt)("li",{parentName:"ul"},"remove images from typography and colour docs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8493e924f5af4ba7c2ed478d7bae6992b4ef6ed6"},(0,n.kt)("inlineCode",{parentName:"a"},"8493e92"))),(0,n.kt)("li",{parentName:"ul"},"added guidelines' text and finished all components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/02d75fcdc5a98633e4d563c7ec2863a9588b5506"},(0,n.kt)("inlineCode",{parentName:"a"},"02d75fc"))),(0,n.kt)("li",{parentName:"ul"},"added more missing components in docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8be82634c681a073b13a5a90ee2b699bd25b422a"},(0,n.kt)("inlineCode",{parentName:"a"},"8be8263"))),(0,n.kt)("li",{parentName:"ul"},"Prettier changes on docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f1e5eb796f2072e3b816a39a35cf48523405167"},(0,n.kt)("inlineCode",{parentName:"a"},"5f1e5eb"))),(0,n.kt)("li",{parentName:"ul"},"Grid updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ae099453e280de800a5a06c6fcbe074acc1f7bfd"},(0,n.kt)("inlineCode",{parentName:"a"},"ae09945"))),(0,n.kt)("li",{parentName:"ul"},"Minor fixes for tests ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3bdf3063d9bbc101f4b83c6aa4fc5fef5e87c776"},(0,n.kt)("inlineCode",{parentName:"a"},"3bdf306"))),(0,n.kt)("li",{parentName:"ul"},"Layout updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8b7a4dc8731cb02946e604a0dd73d2a45f61cd8b"},(0,n.kt)("inlineCode",{parentName:"a"},"8b7a4dc"))),(0,n.kt)("li",{parentName:"ul"},"Footer and TOC theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bb3d3c486f64e123b9009a76c6f054a8e2973230"},(0,n.kt)("inlineCode",{parentName:"a"},"bb3d3c4"))),(0,n.kt)("li",{parentName:"ul"},"Refs #145331 manually commit changelog until autobuild is stabilized ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93168b096b60fc6a208b20d1cbe610384be62f42"},(0,n.kt)("inlineCode",{parentName:"a"},"93168b0"))),(0,n.kt)("li",{parentName:"ul"},"label component changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/df8c0ff2d9646e4dcc7ed1a25a80712ca9ea2c9b"},(0,n.kt)("inlineCode",{parentName:"a"},"df8c0ff"))),(0,n.kt)("li",{parentName:"ul"},"added several sections to the theming guidelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff1a649d9c83794024e2db4f6349b3cac4fe79a0"},(0,n.kt)("inlineCode",{parentName:"a"},"ff1a649"))),(0,n.kt)("li",{parentName:"ul"},"Updated removed files. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/84f9b8cf7c469525367764909fa0d322532a13be"},(0,n.kt)("inlineCode",{parentName:"a"},"84f9b8c"))),(0,n.kt)("li",{parentName:"ul"},"added more docusaurus components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/52a3b9edd4c751225609dcaf2d16f08688e9cfeb"},(0,n.kt)("inlineCode",{parentName:"a"},"52a3b9e"))),(0,n.kt)("li",{parentName:"ul"},"Progress Bar ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f2efc9ded5a766df0c611a15f6a93f27bd14a37"},(0,n.kt)("inlineCode",{parentName:"a"},"9f2efc9"))),(0,n.kt)("li",{parentName:"ul"},"Modal and Confirm updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3b306c6fa5631e1e4e37456d483a69bc8cc3b234"},(0,n.kt)("inlineCode",{parentName:"a"},"3b306c6"))),(0,n.kt)("li",{parentName:"ul"},"Add proper changes to whatsnew meant in previous commit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/40f78e362ca607ef3893fff3d03c8ed1b4447c11"},(0,n.kt)("inlineCode",{parentName:"a"},"40f78e3"))),(0,n.kt)("li",{parentName:"ul"},"Form Descriptions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/de0dfbcb3a0a9610f1cbf7337f598b0c5338f2a3"},(0,n.kt)("inlineCode",{parentName:"a"},"de0dfbc"))),(0,n.kt)("li",{parentName:"ul"},"Prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1337e6fffb13fa8447488129d5dcd5af9e35e46a"},(0,n.kt)("inlineCode",{parentName:"a"},"1337e6f"))),(0,n.kt)("li",{parentName:"ul"},"Deleted files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b82f982fbfbaff4e74e35424c6122410e3830faf"},(0,n.kt)("inlineCode",{parentName:"a"},"b82f982"))),(0,n.kt)("li",{parentName:"ul"},"add new images for spacing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7b7b2c48317c45e3ff89162d703434f615c840e9"},(0,n.kt)("inlineCode",{parentName:"a"},"7b7b2c4"))),(0,n.kt)("li",{parentName:"ul"},"Messages Theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ad621a38c121f585125d5934c1939ba6a7198b33"},(0,n.kt)("inlineCode",{parentName:"a"},"ad621a3"))),(0,n.kt)("li",{parentName:"ul"},"added new content to docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1c83452be983d46f4128c33c25e69afef333f82a"},(0,n.kt)("inlineCode",{parentName:"a"},"1c83452"))),(0,n.kt)("li",{parentName:"ul"},"Minor less updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a36a8bbfeb201049fa13987894a5ec2ec167ed03"},(0,n.kt)("inlineCode",{parentName:"a"},"a36a8bb"))),(0,n.kt)("li",{parentName:"ul"},"Tabs and lists updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e37eef19e67c3c5720d5a9565e9884dc5c19f127"},(0,n.kt)("inlineCode",{parentName:"a"},"e37eef1"))),(0,n.kt)("li",{parentName:"ul"},"Inpage nav and timeline components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/76f0f82dc3a8f683268a4df7580b8f73a0cc1cb4"},(0,n.kt)("inlineCode",{parentName:"a"},"76f0f82"))),(0,n.kt)("li",{parentName:"ul"},"Prettier updated files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/679b9d2026091685d6982ab68e5088544ea0941e"},(0,n.kt)("inlineCode",{parentName:"a"},"679b9d2"))),(0,n.kt)("li",{parentName:"ul"},"dropdown initial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d8aef26dc905adbb0fb72c73d6188b50944931c9"},(0,n.kt)("inlineCode",{parentName:"a"},"d8aef26"))),(0,n.kt)("li",{parentName:"ul"},"Prettier changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f068af0b307d85146e1d8a529947c98988c506f7"},(0,n.kt)("inlineCode",{parentName:"a"},"f068af0"))),(0,n.kt)("li",{parentName:"ul"},"List initial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d3b96974bc35ad958b8cfc7921c1fbe345e5ebf"},(0,n.kt)("inlineCode",{parentName:"a"},"6d3b969"))),(0,n.kt)("li",{parentName:"ul"},"List story updated ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e96a6f6cff9a4db994df7cbf584842b18ca1c432"},(0,n.kt)("inlineCode",{parentName:"a"},"e96a6f6"))),(0,n.kt)("li",{parentName:"ul"},"Statistics updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/74bf63999cfeb0791b9475d3895a49a245be2cd3"},(0,n.kt)("inlineCode",{parentName:"a"},"74bf639"))),(0,n.kt)("li",{parentName:"ul"},"styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c169cc026189ca71e6e9cad17bde9d65d93ffbde"},(0,n.kt)("inlineCode",{parentName:"a"},"c169cc0"))),(0,n.kt)("li",{parentName:"ul"},"timeline comp storybook changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f42686ae19b619fa659730567bdceb369ecd4b0"},(0,n.kt)("inlineCode",{parentName:"a"},"1f42686"))),(0,n.kt)("li",{parentName:"ul"},"feature(docusaurus) added theming guidelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ded1f04a3197ac34640f98bcfe363c75a0a3745f"},(0,n.kt)("inlineCode",{parentName:"a"},"ded1f04"))),(0,n.kt)("li",{parentName:"ul"},"Properly commented out integration tests. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48b3a15f426db52b9fa27f6d7792c424b4939867"},(0,n.kt)("inlineCode",{parentName:"a"},"48b3a15"))),(0,n.kt)("li",{parentName:"ul"},"Reattempting commented out integrations tests. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3dd8211ecfca6c7891ef6851d0dc82899ab50f05"},(0,n.kt)("inlineCode",{parentName:"a"},"3dd8211"))),(0,n.kt)("li",{parentName:"ul"},"Button theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4231e1c264165ef6f7e2f2cd6fbd7c51159330b6"},(0,n.kt)("inlineCode",{parentName:"a"},"4231e1c"))),(0,n.kt)("li",{parentName:"ul"},"Card initial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/06dace5c4aa54d90ec4bcdc0b3fbc0883f825947"},(0,n.kt)("inlineCode",{parentName:"a"},"06dace5"))),(0,n.kt)("li",{parentName:"ul"},"form element storybook changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4b06aabddedbc281f23fc75a1e56476c4d1c1af"},(0,n.kt)("inlineCode",{parentName:"a"},"c4b06aa"))),(0,n.kt)("li",{parentName:"ul"},"Pagination theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2a80175762fbab23691d52f89cd38eb6f7740c4e"},(0,n.kt)("inlineCode",{parentName:"a"},"2a80175"))),(0,n.kt)("li",{parentName:"ul"},"Accordion theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8061bf90823a9172cfccb0ea1ed544ceda1c3fe9"},(0,n.kt)("inlineCode",{parentName:"a"},"8061bf9"))),(0,n.kt)("li",{parentName:"ul"},"global var updates and radio story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9526ee2fc8269db60ce912bfd4edfadbb55fed3a"},(0,n.kt)("inlineCode",{parentName:"a"},"9526ee2"))),(0,n.kt)("li",{parentName:"ul"},"created pullquote component & stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/df35563fb7ba2be403461c120b32ebffaa391736"},(0,n.kt)("inlineCode",{parentName:"a"},"df35563"))),(0,n.kt)("li",{parentName:"ul"},"Item stories added description & default values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9d459f2cd92e419813e7edf0f28dec4c750a5940"},(0,n.kt)("inlineCode",{parentName:"a"},"9d459f2"))),(0,n.kt)("li",{parentName:"ul"},"storybook clean up code ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bffd32603a70cf6cafa4874937f3fe218ba5de9d"},(0,n.kt)("inlineCode",{parentName:"a"},"bffd326"))),(0,n.kt)("li",{parentName:"ul"},"List updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/28f1b5352d83e144acdaae694cf20755a3b04106"},(0,n.kt)("inlineCode",{parentName:"a"},"28f1b53"))),(0,n.kt)("li",{parentName:"ul"},"Button classes updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/788c289549490d9ac5f1c40f1e39124349e1dbcd"},(0,n.kt)("inlineCode",{parentName:"a"},"788c289"))),(0,n.kt)("li",{parentName:"ul"},"Prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/678c9be717468fd2c8c425bec5999e81a66dabf6"},(0,n.kt)("inlineCode",{parentName:"a"},"678c9be"))),(0,n.kt)("li",{parentName:"ul"},"Removed header title from partial docusaurus components. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ed7c45e458504fa76ad500ab26f59a442b3c6952"},(0,n.kt)("inlineCode",{parentName:"a"},"ed7c45e"))),(0,n.kt)("li",{parentName:"ul"},"created banner component and stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9be170f2ccb20218a7bdae48c85f77acd69427ff"},(0,n.kt)("inlineCode",{parentName:"a"},"9be170f"))),(0,n.kt)("li",{parentName:"ul"},"Breadcrumb stories description & defaultValue -- clean up code ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/186ab65ca8635c853c919fc645c1ef0486e22a43"},(0,n.kt)("inlineCode",{parentName:"a"},"186ab65"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142123 added customization of semantic.less: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1e02356722fcb7528883b6dc3bf71279343fd1f7"},(0,n.kt)("inlineCode",{parentName:"a"},"1e02356"))),(0,n.kt)("li",{parentName:"ul"},"Card stories added description & default values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6b408f1ed24ee69ad8faacc6b36cf06e9917478"},(0,n.kt)("inlineCode",{parentName:"a"},"f6b408f"))),(0,n.kt)("li",{parentName:"ul"},"Statistic and accordion updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/16064ceeb6e1a7f097979365473c6a86ced4056f"},(0,n.kt)("inlineCode",{parentName:"a"},"16064ce"))),(0,n.kt)("li",{parentName:"ul"},"breadcrumb component & stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5bceb980502828c182a3998943ab086159c3fcb6"},(0,n.kt)("inlineCode",{parentName:"a"},"5bceb98"))),(0,n.kt)("li",{parentName:"ul"},"Container initial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3eb7155332f83bb8896a831e24cbae028413aba2"},(0,n.kt)("inlineCode",{parentName:"a"},"3eb7155"))),(0,n.kt)("li",{parentName:"ul"},"doc(docusaurus):Fix text for various parts ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bfd3fa2584a6e7aa2c26f3502b1ede912682905e"},(0,n.kt)("inlineCode",{parentName:"a"},"bfd3fa2"))),(0,n.kt)("li",{parentName:"ul"},"blockquote component & stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/879b6402f08112fedfffe6d66e72c37750593bb8"},(0,n.kt)("inlineCode",{parentName:"a"},"879b640"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 removed doc comments breaking doc building ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e6a6756b0533e6dbfdb636f9a9e6485e30187cad"},(0,n.kt)("inlineCode",{parentName:"a"},"e6a6756"))),(0,n.kt)("li",{parentName:"ul"},"Popup updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce2d641d8f5d940cbb93deefdabbbfb85ad20ad7"},(0,n.kt)("inlineCode",{parentName:"a"},"ce2d641"))),(0,n.kt)("li",{parentName:"ul"},"Global variables for colors and borders added ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e5fbd619d163acae03d3d1bb26e082390f90c21"},(0,n.kt)("inlineCode",{parentName:"a"},"6e5fbd6"))),(0,n.kt)("li",{parentName:"ul"},"Tab stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5429cfb7751d6ad31231f9cc19d8bd7e8d24d0b8"},(0,n.kt)("inlineCode",{parentName:"a"},"5429cfb"))),(0,n.kt)("li",{parentName:"ul"},"Confirm stories added description & default value ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/85cda14b1338dc986bbab5aa7846b4ef3ec8d0bd"},(0,n.kt)("inlineCode",{parentName:"a"},"85cda14"))),(0,n.kt)("li",{parentName:"ul"},"Kebab case class names ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b41cd078ab5b349dc1d15769832913dcc8e6786f"},(0,n.kt)("inlineCode",{parentName:"a"},"b41cd07"))),(0,n.kt)("li",{parentName:"ul"},"Card and Comment class updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/389946540d3def2ea81c5c7c489e79dc24d4efb3"},(0,n.kt)("inlineCode",{parentName:"a"},"3899465"))),(0,n.kt)("li",{parentName:"ul"},"Accordion updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c97ba39cc7823cb72180a858c0b8a69cc9434927"},(0,n.kt)("inlineCode",{parentName:"a"},"c97ba39"))),(0,n.kt)("li",{parentName:"ul"},"item stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/772e41f3d90034827afcb118c38ab075d3bb7bb9"},(0,n.kt)("inlineCode",{parentName:"a"},"772e41f"))),(0,n.kt)("li",{parentName:"ul"},"Accordion class updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9cdde86f14a17701d66b3d2850980251094934b5"},(0,n.kt)("inlineCode",{parentName:"a"},"9cdde86"))),(0,n.kt)("li",{parentName:"ul"},"Comment stories added description & default value ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb6f25bc1452330f4155ccf6a64df491740ed8da"},(0,n.kt)("inlineCode",{parentName:"a"},"cb6f25b"))),(0,n.kt)("li",{parentName:"ul"},"Accrodion stories description & default value ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab8fb883c3cbfeea1807bf1aaf72f5d8424933f4"},(0,n.kt)("inlineCode",{parentName:"a"},"ab8fb88"))),(0,n.kt)("li",{parentName:"ul"},"Pullquotes updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5984213ba9397ddb4c1932394a5cc368336cf0a"},(0,n.kt)("inlineCode",{parentName:"a"},"c598421"))),(0,n.kt)("li",{parentName:"ul"},"Modal and confirm class updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0ae47e6f55645c0d6318123a5783648326c16852"},(0,n.kt)("inlineCode",{parentName:"a"},"0ae47e6"))),(0,n.kt)("li",{parentName:"ul"},"Tab and paggination updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/96796fffb189d2fa3628423280f3622dcacb449f"},(0,n.kt)("inlineCode",{parentName:"a"},"96796ff"))),(0,n.kt)("li",{parentName:"ul"},"Form Updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e986a9f0fc48ddcbc17488a8bbbaec82cee92232"},(0,n.kt)("inlineCode",{parentName:"a"},"e986a9f"))),(0,n.kt)("li",{parentName:"ul"},"Classes renamed ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/73c8c3d622bb3b9c0b5cf09e340de4df6606a14c"},(0,n.kt)("inlineCode",{parentName:"a"},"73c8c3d"))),(0,n.kt)("li",{parentName:"ul"},"List and item less updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce0de1708ca410c7839f3ce9b5b3cfbdb6979939"},(0,n.kt)("inlineCode",{parentName:"a"},"ce0de17"))),(0,n.kt)("li",{parentName:"ul"},"Confirm theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/36e20ce0dd6cd159e9f8e519d22ab696a622efd9"},(0,n.kt)("inlineCode",{parentName:"a"},"36e20ce"))),(0,n.kt)("li",{parentName:"ul"},"container overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4b3970bd28df5939fd438f7fc58b5d1dfbe33719"},(0,n.kt)("inlineCode",{parentName:"a"},"4b3970b"))),(0,n.kt)("li",{parentName:"ul"},"Docusaurus theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fc4a8c5534b6eb85192a687890846b3a4bed9401"},(0,n.kt)("inlineCode",{parentName:"a"},"fc4a8c5"))),(0,n.kt)("li",{parentName:"ul"},"refacto(headings): update mobile headings sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b2e9f838766ffd73095ecf7eccc71629c09d6bc0"},(0,n.kt)("inlineCode",{parentName:"a"},"b2e9f83"))),(0,n.kt)("li",{parentName:"ul"},"list stories and style changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c61db53b153f8f0e51eddd6a6c82dd38e6278c82"},(0,n.kt)("inlineCode",{parentName:"a"},"c61db53"))),(0,n.kt)("li",{parentName:"ul"},"Tab theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e31e6c3b1f0d6b4dbd63425a1846914d8dfa318d"},(0,n.kt)("inlineCode",{parentName:"a"},"e31e6c3"))),(0,n.kt)("li",{parentName:"ul"},"Message and pagination classes updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c230687c48953208461aa92376588246d49dadaa"},(0,n.kt)("inlineCode",{parentName:"a"},"c230687"))),(0,n.kt)("li",{parentName:"ul"},"Segment initial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5724fe639e0f2aecbb1c633fe7e69b742ddfaf5"},(0,n.kt)("inlineCode",{parentName:"a"},"d5724fe"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 removed doc comments from api_markdown breaking doc building ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/efeacba82875c6b36ee1ef76792e86ca03ee6f35"},(0,n.kt)("inlineCode",{parentName:"a"},"efeacba"))),(0,n.kt)("li",{parentName:"ul"},"Timeline and responsiveness updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1ed152476e33bc41fdf9d89a6bc80f83af538373"},(0,n.kt)("inlineCode",{parentName:"a"},"1ed1524"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142123 use swap font-display for performance reasons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/083738f0834982b5684d67d75c080dc50b1c74ef"},(0,n.kt)("inlineCode",{parentName:"a"},"083738f"))),(0,n.kt)("li",{parentName:"ul"},"Breadcrumb stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3d0d17ca4f04123d55fda64c516b8f867ee1bd13"},(0,n.kt)("inlineCode",{parentName:"a"},"3d0d17c"))),(0,n.kt)("li",{parentName:"ul"},"Table component stories minor change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0bf40835204f57ab300e2c325309fddf5279d76b"},(0,n.kt)("inlineCode",{parentName:"a"},"0bf4083"))),(0,n.kt)("li",{parentName:"ul"},"List stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a64b304a3aa025873643d592de03cbfbc0d02d81"},(0,n.kt)("inlineCode",{parentName:"a"},"a64b304"))),(0,n.kt)("li",{parentName:"ul"},"blockquote component minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cdf71a883d3778e1bde25ec0b4a2f3e370b98b09"},(0,n.kt)("inlineCode",{parentName:"a"},"cdf71a8"))),(0,n.kt)("li",{parentName:"ul"},"ckeckbox stories minor change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d6e508f73a18d7ce9fcdb779026113659ce8950"},(0,n.kt)("inlineCode",{parentName:"a"},"6d6e508"))),(0,n.kt)("li",{parentName:"ul"},"image component storybook changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91290ec540ae913fff76f0dbed6c310668a2eeb3"},(0,n.kt)("inlineCode",{parentName:"a"},"91290ec"))),(0,n.kt)("li",{parentName:"ul"},"button overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5b78dd7b794e2e0ece2d5af9eb171e73b77ee93"},(0,n.kt)("inlineCode",{parentName:"a"},"d5b78dd"))),(0,n.kt)("li",{parentName:"ul"},"accordion overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fdcf7d58eea3ce9e68c49649fb4a788c8a801b49"},(0,n.kt)("inlineCode",{parentName:"a"},"fdcf7d5"))),(0,n.kt)("li",{parentName:"ul"},"Accordion component and stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5079247b2d4b96b2a7252692ea538ca620cbec38"},(0,n.kt)("inlineCode",{parentName:"a"},"5079247"))),(0,n.kt)("li",{parentName:"ul"},"Card theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/23bbb9d1b5751bc4877d02ae1c676ea28463ec39"},(0,n.kt)("inlineCode",{parentName:"a"},"23bbb9d"))),(0,n.kt)("li",{parentName:"ul"},"statistic overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2b11cb5ffb9c907563b37a3db8fea3b1ef3584bc"},(0,n.kt)("inlineCode",{parentName:"a"},"2b11cb5"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 build docs only on pull request like we do with storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/473bb87be53610a654d35c9b399de14824301385"},(0,n.kt)("inlineCode",{parentName:"a"},"473bb87"))),(0,n.kt)("li",{parentName:"ul"},"Card component stories minor change | added link icon ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/deb423af02643697c3781212b177487174d341f7"},(0,n.kt)("inlineCode",{parentName:"a"},"deb423a"))),(0,n.kt)("li",{parentName:"ul"},"comment component stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f1c5e75f1af24c5b39a2e61cf07c773abfa96f66"},(0,n.kt)("inlineCode",{parentName:"a"},"f1c5e75"))),(0,n.kt)("li",{parentName:"ul"},"Accordion component bug fixed ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/815e91df66ed738f3d91cadc8df151782829f545"},(0,n.kt)("inlineCode",{parentName:"a"},"815e91d"))),(0,n.kt)("li",{parentName:"ul"},"Refs #145331 use iso date to release so that we see also time ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ceedf08937ab683c3e624cd3c909bf4a4788f883"},(0,n.kt)("inlineCode",{parentName:"a"},"ceedf08"))),(0,n.kt)("li",{parentName:"ul"},"correct connfig for doco ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93e13135e7f00fe32f4db2d720db4159970da021"},(0,n.kt)("inlineCode",{parentName:"a"},"93e1313"))),(0,n.kt)("li",{parentName:"ul"},"Item updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fae93d43a0ad56c4c9b8ce7bf436ad4f47421744"},(0,n.kt)("inlineCode",{parentName:"a"},"fae93d4"))),(0,n.kt)("li",{parentName:"ul"},"added layout grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2e6be557bcd3bef836338380ef68acade1c6b3e3"},(0,n.kt)("inlineCode",{parentName:"a"},"2e6be55"))),(0,n.kt)("li",{parentName:"ul"},"tab overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87aaf32cac5a0dee0da5833217de68da62327f5a"},(0,n.kt)("inlineCode",{parentName:"a"},"87aaf32"))),(0,n.kt)("li",{parentName:"ul"},"message overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6dccfca52d9673f394d81bd40da0af1b1504af0c"},(0,n.kt)("inlineCode",{parentName:"a"},"6dccfca"))),(0,n.kt)("li",{parentName:"ul"},"segment storie changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/296371fa71e43c2341bee8069f66d5cd1f7aa5f8"},(0,n.kt)("inlineCode",{parentName:"a"},"296371f"))),(0,n.kt)("li",{parentName:"ul"},"progress component stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/df10c2ed1289ae770008c71e1545c1ac0a223fc5"},(0,n.kt)("inlineCode",{parentName:"a"},"df10c2e"))),(0,n.kt)("li",{parentName:"ul"},"message comp storybook changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c86b40563f655fd5833dd05119f04d0e4256e75f"},(0,n.kt)("inlineCode",{parentName:"a"},"c86b405"))),(0,n.kt)("li",{parentName:"ul"},"Accordion cmponent stories | minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6de0d816287a9beeb9e8a5a890a2e14f3457a792"},(0,n.kt)("inlineCode",{parentName:"a"},"6de0d81"))),(0,n.kt)("li",{parentName:"ul"},"Refs #145331 add all changes when auto building docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce11cce4fe3dadc16a0da56c36bc5db480e4ff91"},(0,n.kt)("inlineCode",{parentName:"a"},"ce11cce"))),(0,n.kt)("li",{parentName:"ul"},"perf(timeline):removed semantic timeline package ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0aeb34a189eb53a5fc0fc45d716da515b7ed0301"},(0,n.kt)("inlineCode",{parentName:"a"},"0aeb34a"))),(0,n.kt)("li",{parentName:"ul"},"Tablet Breakpoint update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b229c2739e75a00e403dd07c31eb0dac7700baac"},(0,n.kt)("inlineCode",{parentName:"a"},"b229c27"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 set storyBook Url to eea.github.io ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b7fdecbb5e9e6e7db0b128ab7fd3a98dd1dbbc74"},(0,n.kt)("inlineCode",{parentName:"a"},"b7fdecb"))),(0,n.kt)("li",{parentName:"ul"},"bump package version to signaling of a major release ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c835f1d8193685153b8a9b54edbc2e8d3d095321"},(0,n.kt)("inlineCode",{parentName:"a"},"c835f1d"))),(0,n.kt)("li",{parentName:"ul"},"small commit to trigger deployment of storybook and docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/be46ea3b581cccc82369c9cf6d4e29b02822cd71"},(0,n.kt)("inlineCode",{parentName:"a"},"be46ea3"))),(0,n.kt)("li",{parentName:"ul"},"doc(accordion):revert previous change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3de02da26472c17389366d933f3293f658fd783a"},(0,n.kt)("inlineCode",{parentName:"a"},"3de02da"))),(0,n.kt)("li",{parentName:"ul"},"fix typo for caption @desktop line-height pixel number ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/167155234a897334a03a4f3eadc71701185bb924"},(0,n.kt)("inlineCode",{parentName:"a"},"1671552"))),(0,n.kt)("li",{parentName:"ul"},"Commented out integration tests. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/574cfec852f39bdd30430d2ca3a466aec417180d"},(0,n.kt)("inlineCode",{parentName:"a"},"574cfec"))),(0,n.kt)("li",{parentName:"ul"},"popup overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a9555e3128bd0c92691410c202d9b26dd5a5e0c5"},(0,n.kt)("inlineCode",{parentName:"a"},"a9555e3"))),(0,n.kt)("li",{parentName:"ul"},"container component stories fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/692cfce5e795ac718855349424e7e8eb9c7518ec"},(0,n.kt)("inlineCode",{parentName:"a"},"692cfce"))),(0,n.kt)("li",{parentName:"ul"},"Added timeline to package json fixed ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2e93e0478a1502cccb8d7f866cef337a2546b6c"},(0,n.kt)("inlineCode",{parentName:"a"},"f2e93e0"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142123 modified import of volto-eea-design-system icon.less: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7fab7d2871f153c2db139e3258da071ace7c09d"},(0,n.kt)("inlineCode",{parentName:"a"},"a7fab7d"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142123 reference icon.less from this package: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5616e6d730f1a8cbc04784230c35f3490fd0f921"},(0,n.kt)("inlineCode",{parentName:"a"},"5616e6d"))),(0,n.kt)("li",{parentName:"ul"},"Menu component stories change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2797716aa050a8f70d2b6f0f19b7d01e5cd035be"},(0,n.kt)("inlineCode",{parentName:"a"},"2797716"))),(0,n.kt)("li",{parentName:"ul"},"Image stories minor change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ddb9f1dd56fe42e17df1eac5bfd93ee6eaac3179"},(0,n.kt)("inlineCode",{parentName:"a"},"ddb9f1d"))),(0,n.kt)("li",{parentName:"ul"},"card component stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6ccba1ec4a388ced5a3671bf88d4f18aefc8cff3"},(0,n.kt)("inlineCode",{parentName:"a"},"6ccba1e"))),(0,n.kt)("li",{parentName:"ul"},"Added timeline to package json ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93031d6b6b3215e98074700554d7546f9f17f320"},(0,n.kt)("inlineCode",{parentName:"a"},"93031d6"))),(0,n.kt)("li",{parentName:"ul"},"table stories code clean up ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b7b2a56e37b847a3a3fc3d78f2099aba052826c3"},(0,n.kt)("inlineCode",{parentName:"a"},"b7b2a56"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 removed extra baseUrl from docusaurus config ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/79f36da6a38866765025cedd4f5eeb63e273785c"},(0,n.kt)("inlineCode",{parentName:"a"},"79f36da"))),(0,n.kt)("li",{parentName:"ul"},"Accordion stories minor change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ffe808aabc77c6cb324e8fe097a97bb82c291c29"},(0,n.kt)("inlineCode",{parentName:"a"},"ffe808a"))),(0,n.kt)("li",{parentName:"ul"},"Theme assets ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3f4bea4b53e393bc3d926b63683265c0b5df32c2"},(0,n.kt)("inlineCode",{parentName:"a"},"3f4bea4"))),(0,n.kt)("li",{parentName:"ul"},"Merged with develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/167ec9f7847162965ad045259989cc31abaad7f1"},(0,n.kt)("inlineCode",{parentName:"a"},"167ec9f")))),(0,n.kt)("h3",{id:"012-beta2---2022-01-03"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.2-beta.1...0.1.2-beta.2"},"0.1.2-beta.2")," - 2022-01-03"),(0,n.kt)("h3",{id:"012-beta1---2021-12-22"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.2-beta.0...0.1.2-beta.1"},"0.1.2-beta.1")," - 2021-12-22"),(0,n.kt)("h4",{id:"\ufe0f-others-56"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Tab component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4690a6fc1e739eeeeaa3dc90ee35e05a22875bf8"},(0,n.kt)("inlineCode",{parentName:"a"},"4690a6f"))),(0,n.kt)("li",{parentName:"ul"},"Comment component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a87cb6ad7959ce939c9decbfaa08026d4f00a10e"},(0,n.kt)("inlineCode",{parentName:"a"},"a87cb6a"))),(0,n.kt)("li",{parentName:"ul"},"Form stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fc30c900e5adf5a27930aa64a79a632e2b7d84ae"},(0,n.kt)("inlineCode",{parentName:"a"},"fc30c90"))),(0,n.kt)("li",{parentName:"ul"},"Grid component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/798fdd0d0fecb7980308c831fc9dc111a36c5d9f"},(0,n.kt)("inlineCode",{parentName:"a"},"798fdd0"))),(0,n.kt)("li",{parentName:"ul"},"Image component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/be93385f1ea29846512eb7762d69bb98f33be7f2"},(0,n.kt)("inlineCode",{parentName:"a"},"be93385"))),(0,n.kt)("li",{parentName:"ul"},"Menu component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb1f9a82843bb4e3011be9813ae692c94d986495"},(0,n.kt)("inlineCode",{parentName:"a"},"cb1f9a8"))),(0,n.kt)("li",{parentName:"ul"},"Dropdown component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/57cf954599292e6a2f8a1644c6b6d61706ecaf60"},(0,n.kt)("inlineCode",{parentName:"a"},"57cf954"))),(0,n.kt)("li",{parentName:"ul"},"Header component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/264fd463734c9587e3a820f4d14527af89274e12"},(0,n.kt)("inlineCode",{parentName:"a"},"264fd46"))),(0,n.kt)("li",{parentName:"ul"},"Confirn component minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9a00bc174fb676e626d6cc93fac225e8a6165790"},(0,n.kt)("inlineCode",{parentName:"a"},"9a00bc1"))),(0,n.kt)("li",{parentName:"ul"},"Item component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6994fa00c0f91550f64d7345503df7f562480d32"},(0,n.kt)("inlineCode",{parentName:"a"},"6994fa0"))),(0,n.kt)("li",{parentName:"ul"},"Label component stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5cc5843327deeaa5ae2cedc03e6f0c314be6586a"},(0,n.kt)("inlineCode",{parentName:"a"},"5cc5843"))),(0,n.kt)("li",{parentName:"ul"},"Container component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e6e40b3a505c2e2fe88a36d74ea4e9728e3491f6"},(0,n.kt)("inlineCode",{parentName:"a"},"e6e40b3"))),(0,n.kt)("li",{parentName:"ul"},"Message component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ba9d377fd5b04274f1d42065eafa2401a1b0bbca"},(0,n.kt)("inlineCode",{parentName:"a"},"ba9d377"))),(0,n.kt)("li",{parentName:"ul"},"Breadcrumb component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff7a176141c3a59d71df98a0ed0b23b8c08787df"},(0,n.kt)("inlineCode",{parentName:"a"},"ff7a176"))),(0,n.kt)("li",{parentName:"ul"},"Modal component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af1fe6a84d058fb937b555f4dc3e0efceebefa04"},(0,n.kt)("inlineCode",{parentName:"a"},"af1fe6a"))),(0,n.kt)("li",{parentName:"ul"},"List stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0016042856fa2275aed373eebd6f996b837619a2"},(0,n.kt)("inlineCode",{parentName:"a"},"0016042"))),(0,n.kt)("li",{parentName:"ul"},"Button component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/690dfd234bee017c1f1cda7077265e6cf4a870e9"},(0,n.kt)("inlineCode",{parentName:"a"},"690dfd2"))),(0,n.kt)("li",{parentName:"ul"},"Radio component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/84eac30ab5b523ed09c56b9cca41b058cee3e5d2"},(0,n.kt)("inlineCode",{parentName:"a"},"84eac30"))),(0,n.kt)("li",{parentName:"ul"},"Progress component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e6763571afe637375e8260babd9f2219f29b432a"},(0,n.kt)("inlineCode",{parentName:"a"},"e676357"))),(0,n.kt)("li",{parentName:"ul"},"Pagination component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b1af226b9bd42097dc3c74be3d9ca3fab29b80f6"},(0,n.kt)("inlineCode",{parentName:"a"},"b1af226"))),(0,n.kt)("li",{parentName:"ul"},"Segment component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f8c7efcb9b1de209ff146dd315ea9d43b16f4db"},(0,n.kt)("inlineCode",{parentName:"a"},"5f8c7ef"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 eslint fixes for component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/badcb9158cb4a847380f66592b22c78b5117626a"},(0,n.kt)("inlineCode",{parentName:"a"},"badcb91"))),(0,n.kt)("li",{parentName:"ul"},"Table component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7c104b8e89272b0e2505d165184093ee2680c6f3"},(0,n.kt)("inlineCode",{parentName:"a"},"7c104b8"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 more eslint fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a88c091723af0b87cfa85c83307d9510d2bae65c"},(0,n.kt)("inlineCode",{parentName:"a"},"a88c091"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 warn for broken links instead of throwing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bd5821cb78e030aaf69de73dc4d3bdadbe320195"},(0,n.kt)("inlineCode",{parentName:"a"},"bd5821c"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 merge changes from develop-itml to develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bca28b968bc88720aff9e29e1a94a597a7375666"},(0,n.kt)("inlineCode",{parentName:"a"},"bca28b9"))),(0,n.kt)("li",{parentName:"ul"},"made tabs dynamic for api tab ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea37ecb3ec9fe0ace41d7650d59e209929d8e95f"},(0,n.kt)("inlineCode",{parentName:"a"},"ea37ecb"))),(0,n.kt)("li",{parentName:"ul"},"Basic storybook/Docusaurus components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/840ab60f22f7b73d8742fa7452f198d486c6ec5b"},(0,n.kt)("inlineCode",{parentName:"a"},"840ab60"))),(0,n.kt)("li",{parentName:"ul"},"created List directory & srories based on semantic-ui List component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51f19016b27228a4d391c88b7eee27357d6fdc0d"},(0,n.kt)("inlineCode",{parentName:"a"},"51f1901"))),(0,n.kt)("li",{parentName:"ul"},"made tabs as component easy to call for other components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/07bae4900a4076f3429d3a26978b92aabf6b23ba"},(0,n.kt)("inlineCode",{parentName:"a"},"07bae49"))),(0,n.kt)("li",{parentName:"ul"},"Popup Component | minor fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ff9908a9374f93b9eaf4d8ee8de24acdf5be3ec"},(0,n.kt)("inlineCode",{parentName:"a"},"2ff9908"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Tab component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/95e3a733921b42fbe2540fa39548284abff9fdc0"},(0,n.kt)("inlineCode",{parentName:"a"},"95e3a73"))),(0,n.kt)("li",{parentName:"ul"},"created Table directory and stories based on semantic-ui Table component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e16115daa000962ccd8d141e3c11fd099446a388"},(0,n.kt)("inlineCode",{parentName:"a"},"e16115d"))),(0,n.kt)("li",{parentName:"ul"},"List component stories - minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/de113430b487297417c4697178f9ee37412a5389"},(0,n.kt)("inlineCode",{parentName:"a"},"de11343"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Comment component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a20f8842e8cb5c937dfc450030ac9afcf78ffe11"},(0,n.kt)("inlineCode",{parentName:"a"},"a20f884"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Grid component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/360d2a897f36e86c58b0ba6ac3d4fc852d10287d"},(0,n.kt)("inlineCode",{parentName:"a"},"360d2a8"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Image component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c1d2bcaf886c96052af45fcce98243ea56c98a5"},(0,n.kt)("inlineCode",{parentName:"a"},"3c1d2bc"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Menu component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/17e3b37ae447d8cc86228fa6c0c48a8fd8be9d03"},(0,n.kt)("inlineCode",{parentName:"a"},"17e3b37"))),(0,n.kt)("li",{parentName:"ul"},"Added untracked files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/75f0afda10114e70348e23d480f8f74528531674"},(0,n.kt)("inlineCode",{parentName:"a"},"75f0afd"))),(0,n.kt)("li",{parentName:"ul"},"created Dropdown stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d6a25381078e0b3cabdb9270d5224b3886ab6af9"},(0,n.kt)("inlineCode",{parentName:"a"},"d6a2538"))),(0,n.kt)("li",{parentName:"ul"},"created Header component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8339798f3e7d40f1b5a033bf4d7303c756c38d3"},(0,n.kt)("inlineCode",{parentName:"a"},"b833979"))),(0,n.kt)("li",{parentName:"ul"},"created stories for semantic-ui Confirm component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6fddccc6cf97f9929da52064ceb379f9fc427b42"},(0,n.kt)("inlineCode",{parentName:"a"},"6fddccc"))),(0,n.kt)("li",{parentName:"ul"},"created Statistic directory and stories with semantic-ui Statistic component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cd62498dbd75d5dff0adf849ff95d22bb9dc3b34"},(0,n.kt)("inlineCode",{parentName:"a"},"cd62498"))),(0,n.kt)("li",{parentName:"ul"},"created Item component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/90ec2be7eede347352e318c70615c30e7d422073"},(0,n.kt)("inlineCode",{parentName:"a"},"90ec2be"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Container component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/41934f6c5961ae0ac034a496ac169a191c7a5288"},(0,n.kt)("inlineCode",{parentName:"a"},"41934f6"))),(0,n.kt)("li",{parentName:"ul"},"created Label component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/71732f68b3153320710fbf7fb78dac460b8a084f"},(0,n.kt)("inlineCode",{parentName:"a"},"71732f6"))),(0,n.kt)("li",{parentName:"ul"},"created Message component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/adcbeabe6d4e8c1bbd7bd925c5f7fd3109fb407c"},(0,n.kt)("inlineCode",{parentName:"a"},"adcbeab"))),(0,n.kt)("li",{parentName:"ul"},"created Modal component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c25409d8901ad4eba66fa66a9f5c34b0353569b9"},(0,n.kt)("inlineCode",{parentName:"a"},"c25409d"))),(0,n.kt)("li",{parentName:"ul"},"Breadcrumb component stories and minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6264d92bcf6565e284ae9dc0c7a918652bb3959e"},(0,n.kt)("inlineCode",{parentName:"a"},"6264d92"))),(0,n.kt)("li",{parentName:"ul"},"created Pagination component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/57cdad35e21fdacf303e407abcb8988e97e87242"},(0,n.kt)("inlineCode",{parentName:"a"},"57cdad3"))),(0,n.kt)("li",{parentName:"ul"},"created Segment component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d8d01d70dab9359be46eb1629b3198f871091c7a"},(0,n.kt)("inlineCode",{parentName:"a"},"d8d01d7"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Radio component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1fd062d8a08cbe8507f5154201632ea96f765a2c"},(0,n.kt)("inlineCode",{parentName:"a"},"1fd062d"))),(0,n.kt)("li",{parentName:"ul"},"Menu stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6ba5e0d00a26ffd4625fb51f759af3764cef28de"},(0,n.kt)("inlineCode",{parentName:"a"},"6ba5e0d"))),(0,n.kt)("li",{parentName:"ul"},"Statistic component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c874a520c9959b7673b5c86f63e53e90f006f22"},(0,n.kt)("inlineCode",{parentName:"a"},"3c874a5"))),(0,n.kt)("li",{parentName:"ul"},"Card component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/290bda8dac4c9bb4476108c2e4969fa283f935e2"},(0,n.kt)("inlineCode",{parentName:"a"},"290bda8"))),(0,n.kt)("li",{parentName:"ul"},"Accrordion stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ee3f592fbfaead01506fb6a4dbfb36d06269564"},(0,n.kt)("inlineCode",{parentName:"a"},"2ee3f59"))),(0,n.kt)("li",{parentName:"ul"},"renamed Demo folder to Layout ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b9f6d05708310889dd018961bf5df9d5edd66e12"},(0,n.kt)("inlineCode",{parentName:"a"},"b9f6d05"))),(0,n.kt)("li",{parentName:"ul"},"remove test exclusion ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/94dba3eaa864e25d34bcc33ab19494f83ecabb25"},(0,n.kt)("inlineCode",{parentName:"a"},"94dba3e"))),(0,n.kt)("li",{parentName:"ul"},"Accordion component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e672d59f86a79e69f15b5212e2953aa7c5fea1d1"},(0,n.kt)("inlineCode",{parentName:"a"},"e672d59"))),(0,n.kt)("li",{parentName:"ul"},"fix docusaurus url (removed trailing /) ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b6c59fc7733b3df47dca797906e8f7e40a2f4ada"},(0,n.kt)("inlineCode",{parentName:"a"},"b6c59fc"))),(0,n.kt)("li",{parentName:"ul"},"Item component stories - minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f0a99025b9093ecf2eb25fd4b4e401b5b532a481"},(0,n.kt)("inlineCode",{parentName:"a"},"f0a9902"))),(0,n.kt)("li",{parentName:"ul"},"eea logos and assets ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b435b511d64b0ca99bfd310d66bdbfd5985390cc"},(0,n.kt)("inlineCode",{parentName:"a"},"b435b51")))),(0,n.kt)("h3",{id:"012-beta0---2021-12-18"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.1...0.1.2-beta.0"},"0.1.2-beta.0")," - 2021-12-18"),(0,n.kt)("h4",{id:"\ufe0f-others-57"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Refs #140454 added github action to build docusaurus to the develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/abe6a72882a41c9bca3649a3a6697619038e1677"},(0,n.kt)("inlineCode",{parentName:"a"},"abe6a72")))),(0,n.kt)("h3",{id:"011---2021-12-16"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.1-beta.0...0.1.1"},"0.1.1")," - 2021-12-16"),(0,n.kt)("h4",{id:"\ufe0f-others-58"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Refs #140454 changed the following to volto-eea-design-system: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6791d413cf1b9e434970564d9e59ed56b41907f0"},(0,n.kt)("inlineCode",{parentName:"a"},"6791d41"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 corrected base url for docusaurus website build ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/98271b3d39e2e21dfb4a0e31c334dc9e87811e4a"},(0,n.kt)("inlineCode",{parentName:"a"},"98271b3"))),(0,n.kt)("li",{parentName:"ul"},"Initial test changes on design system/docusaurus. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9dad612f385cc9fde712809f07dbe2b7111432cf"},(0,n.kt)("inlineCode",{parentName:"a"},"9dad612"))),(0,n.kt)("li",{parentName:"ul"},"After prettier check ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9ec40b4fe9d8a18e99f774e1a96a55b286a9733a"},(0,n.kt)("inlineCode",{parentName:"a"},"9ec40b4"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 restore SearchWidget.jsx content and removed dummy text from docs intro page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7505df89d93ac99156834a0c50a8e2b174c506f8"},(0,n.kt)("inlineCode",{parentName:"a"},"7505df8"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 added references to eea and the storybook in the docusaurus footer ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/42bbfcdd67888c3a7a55875d67acae9f7eb753bb"},(0,n.kt)("inlineCode",{parentName:"a"},"42bbfcd"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 lint fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9502f2bdbd45262b38926def5b7b55efabf4c32c"},(0,n.kt)("inlineCode",{parentName:"a"},"9502f2b"))),(0,n.kt)("li",{parentName:"ul"},"Add SonarQube badges ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4e0a4053ff2313fc3939caab80d874470aca062"},(0,n.kt)("inlineCode",{parentName:"a"},"a4e0a40"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 brought changes from develop-itml and upgrades docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/207c873532e38fb7909cdc32a02bf50e575b66fa"},(0,n.kt)("inlineCode",{parentName:"a"},"207c873"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 removed extra content not needed by the docusaurus site ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bc68ebe8259c9b8ed6bc73df8102885554bbc4ed"},(0,n.kt)("inlineCode",{parentName:"a"},"bc68ebe"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 updated docusaurus to latest beta ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d68ed8a1660910067a09550626a5f0e8fbbeeac9"},(0,n.kt)("inlineCode",{parentName:"a"},"d68ed8a")))),(0,n.kt)("h3",{id:"011-beta0---2021-12-09"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.0...0.1.1-beta.0"},"0.1.1-beta.0")," - 2021-12-09"),(0,n.kt)("h4",{id:"\ufe0f-others-59"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Refs #140454 moved header and footer templates from volto-ims-theme: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2d5e56045c0b7d917153d95492dd340668b6222"},(0,n.kt)("inlineCode",{parentName:"a"},"e2d5e56"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 added website folder with docusaurus site skeleton ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6fd15f4365a207308c068fe7eb197c0717e93954"},(0,n.kt)("inlineCode",{parentName:"a"},"6fd15f4"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142794 added commented implementation of the header and footer area: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/773ad8784f4a03e4b600406999d3a274a3984d39"},(0,n.kt)("inlineCode",{parentName:"a"},"773ad87"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 changed the following: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4137ec42270c28cbe036ba11e9475f00a7a5cba3"},(0,n.kt)("inlineCode",{parentName:"a"},"4137ec4"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 removed storybook from volto-eea-design-system: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a129ffb485c4c55f19129a209d920da8f8f52418"},(0,n.kt)("inlineCode",{parentName:"a"},"a129ffb"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 added storybook as a dev dependency: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e04ae4e0294fbb4a09f367d1693a158d5a1e8f2f"},(0,n.kt)("inlineCode",{parentName:"a"},"e04ae4e"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 updated Breadcrumbs.jsx to latest version: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/63fe5076781f3cf2ce5c79641a5f1b45f298b476"},(0,n.kt)("inlineCode",{parentName:"a"},"63fe507"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 we should use jsx and not mdx for storybook tests ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3668e667f857cb3052b9d63cf27ec629fe1c8394"},(0,n.kt)("inlineCode",{parentName:"a"},"3668e66"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 updated eea-design-system readme with extra info on package contents ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d2efc3ddae7b91efc82cf3bce8fb8e42d696a780"},(0,n.kt)("inlineCode",{parentName:"a"},"d2efc3d"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142010 - Optimize Volto-addons gitflow pipelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3af46d2b14fa0b1ef44736f25b0f9ac93b23d18d"},(0,n.kt)("inlineCode",{parentName:"a"},"3af46d2"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 Renamed folders of docusaurus website: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/15bca7462ba1b3c626e2bf76597f6436aa5e9092"},(0,n.kt)("inlineCode",{parentName:"a"},"15bca74"))),(0,n.kt)("li",{parentName:"ul"},"Add demo story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/757c409271eb70baa54bff8bd7c71ba29aaa4f66"},(0,n.kt)("inlineCode",{parentName:"a"},"757c409"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142794 enabled minimum css so that header looks decent ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/adbe2335bacf5ae09541c3679a246a5ec28376a4"},(0,n.kt)("inlineCode",{parentName:"a"},"adbe233"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 use the develop branch for the readme linking, it's always more up to date ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/23dcf166d5d633df2a63ab6fa5bac4be086e99a3"},(0,n.kt)("inlineCode",{parentName:"a"},"23dcf16"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 added missing themes reference for the eea theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e9ca244fcedf0be420748b3e5347e98309b5d996"},(0,n.kt)("inlineCode",{parentName:"a"},"e9ca244"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 modified assets imports after move to volto-eea-design-system ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2250cc7ba4155c328837cea09e2e7d94afc984f8"},(0,n.kt)("inlineCode",{parentName:"a"},"2250cc7"))),(0,n.kt)("li",{parentName:"ul"},"Load footer in segment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/80d38a96284e7fa9416ba327a43e29eb94bebe55"},(0,n.kt)("inlineCode",{parentName:"a"},"80d38a9"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 bump package version to 1.1.0 from 0.1.1 from develop branch: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1314039ceb45d405af6bc4698b489bbd6562c6ae"},(0,n.kt)("inlineCode",{parentName:"a"},"1314039"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142794 keep toolbalWidth variables in case design system runs in an older version of Volto ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1a8b30562e4167fe36b095877db0b215d10cb620"},(0,n.kt)("inlineCode",{parentName:"a"},"1a8b305"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142794 changed the following: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fbb80b1dbd0e3078777b8b3496d4b207ba25639a"},(0,n.kt)("inlineCode",{parentName:"a"},"fbb80b1"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 moved storybook scripts to the scripts section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/705c4c365d26152d917c62991f3f8202bc75287d"},(0,n.kt)("inlineCode",{parentName:"a"},"705c4c3"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 removed dangling comma ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/514f24d503a1f05497696c22c7fdbf7bc19d4e54"},(0,n.kt)("inlineCode",{parentName:"a"},"514f24d"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 changed link to the start of the docs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0e16fdfc77e119da4e1f15183d9cb95ef9b4b6cf"},(0,n.kt)("inlineCode",{parentName:"a"},"0e16fdf"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 add h1 to the list of elements that are max 800px and centered ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d3c30f409aa4cb43810839f8960589456cc1b2e"},(0,n.kt)("inlineCode",{parentName:"a"},"7d3c30f"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using ims-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8d657d056cde5163cfe90ac66bc973f55d82e5e9"},(0,n.kt)("inlineCode",{parentName:"a"},"8d657d0")))),(0,n.kt)("h3",{id:"010---2021-11-17"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.0.1...0.1.0"},"0.1.0")," - 2021-11-17"),(0,n.kt)("h4",{id:"\ufe0f-others-60"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Refs #140454 changed the following to volto-eea-design-system: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/40d2af693e35abdda3ededc7aabcb17e9a12e781"},(0,n.kt)("inlineCode",{parentName:"a"},"40d2af6"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 elements folder now has the variables and overrides from pastanaga theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/595b4e60816d3e24950ede3afea6e5f2aa2d7008"},(0,n.kt)("inlineCode",{parentName:"a"},"595b4e6"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 use font awesome from SemanticUI instead of Pastanaga: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4e273ca1b9a2be1f169d12258ac2335c3ebeefff"},(0,n.kt)("inlineCode",{parentName:"a"},"4e273ca"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 removed the components customizations from volto-eea-design-system: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c98c260b549cd1db48bfe556e994692a4855b95d"},(0,n.kt)("inlineCode",{parentName:"a"},"c98c260"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 added customizations folder from volto-ims-theme to volto-eea-design-system: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff4bf44bd648ff179bd7c82d0cf80da968b291b0"},(0,n.kt)("inlineCode",{parentName:"a"},"ff4bf44"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 modules folder now has the variables and overrides from pastanaga theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2841b62c87e3242423bca1117c7e1793baa7974"},(0,n.kt)("inlineCode",{parentName:"a"},"f2841b6"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 customized Comments.jsx to remove unnecessary container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b2e95d7ae875a7fc85366c76ef35ce215dd7b5ff"},(0,n.kt)("inlineCode",{parentName:"a"},"b2e95d7"))),(0,n.kt)("li",{parentName:"ul"},"Refs #132149 added initial commit for volto-eea-design-system: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2934b911d589fde126f70363a61cbdd2e3dcf7c9"},(0,n.kt)("inlineCode",{parentName:"a"},"2934b91"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 collection folder now has the variables and overrides from pastanaga: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/213d4968e4efa380a389fb7ab40ec3196f030050"},(0,n.kt)("inlineCode",{parentName:"a"},"213d496"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 removed search widget customization, we can use volto-ims-theme for that file ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b7e8b0c4821584a84f940d8f780057122321aae7"},(0,n.kt)("inlineCode",{parentName:"a"},"b7e8b0c"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 stylelint quick fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5595925f68871135a07d703c8ba009b0172c7ccd"},(0,n.kt)("inlineCode",{parentName:"a"},"5595925"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 changed the following: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/769f4f9eca0ed9fffe0c8c49c56bcb123a203f3c"},(0,n.kt)("inlineCode",{parentName:"a"},"769f4f9"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 changed the following to the eea theme: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/06d8d86a7be81fd3feadf034eacfa61eb69743ab"},(0,n.kt)("inlineCode",{parentName:"a"},"06d8d86"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 eea site.variables now use all values from pastanaga's site.variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6535c0f4e1968822a232b017a55babd280716d88"},(0,n.kt)("inlineCode",{parentName:"a"},"6535c0f"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 simplified container overrides: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51250038527f2e4b1135a2b5bfc6adccc3f77a06"},(0,n.kt)("inlineCode",{parentName:"a"},"5125003"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/177d0ce854a8a963faa2aae9481cbcc7e340e0fa"},(0,n.kt)("inlineCode",{parentName:"a"},"177d0ce"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 globals folder now has the variables and overrides from pastanaga theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/116a0c338bd92dd14636a649476b4f00951e3734"},(0,n.kt)("inlineCode",{parentName:"a"},"116a0c3"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 changed the following: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2e7f42381b63e65bafac3b754d49b65daca9663d"},(0,n.kt)("inlineCode",{parentName:"a"},"2e7f423"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 modules folder now has the variables and overrides from pastanaga theme: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/27a201d57024a7c621f4943b8eb59a3247b6c89d"},(0,n.kt)("inlineCode",{parentName:"a"},"27a201d"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 text elements are now with a max width and centered within content-area: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bbed7bbfb3e79a371b7bf7dea2206cdbdcdfe76d"},(0,n.kt)("inlineCode",{parentName:"a"},"bbed7bb"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 added main.variables entries from pastanaga to eea theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1cbbc550436c889d1b297ae9e6880167fce28fe1"},(0,n.kt)("inlineCode",{parentName:"a"},"1cbbc55"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 modified theme image imports for component customizations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef3238a4d615fa1b496e83f4e6c4c0d27f3d68f4"},(0,n.kt)("inlineCode",{parentName:"a"},"ef3238a"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 modified container width to be auto: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2e8d2e0ebb3e4a55b7cf1b66c3dff222ef12aa18"},(0,n.kt)("inlineCode",{parentName:"a"},"2e8d2e0"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 modified several icons to use the \\f values instead of \\e: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c397145bc1e76916ae72a94faaf33f49bd9ca5a6"},(0,n.kt)("inlineCode",{parentName:"a"},"c397145"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 changed the following: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c518edacad9b8bed61ea50d318d8d43bf7f483a0"},(0,n.kt)("inlineCode",{parentName:"a"},"c518eda"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 ensure that main column isn't enlarged over the sidebar section on edit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f7a28684223494933bcd8ec1f6d86b1b3da17e10"},(0,n.kt)("inlineCode",{parentName:"a"},"f7a2868"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 changed the following to the form styling: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/eb92e054fe330730c1a44737cbbdf33985216cbb"},(0,n.kt)("inlineCode",{parentName:"a"},"eb92e05"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 modified path of theme folder location for image selection ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f8cca4594857ab4afd654f35e4ec97e4d3e04be4"},(0,n.kt)("inlineCode",{parentName:"a"},"f8cca45"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 added missing mobileScrollbarWidth variables introduced as part of the mobile navigation pull request ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/444c78d998199e703d7ecde01b3feb0d44c60977"},(0,n.kt)("inlineCode",{parentName:"a"},"444c78d"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 reference font and image path from ~volto-themes instead of relative ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ec93ed3a496673eed7d7ec07a2f76aaa6a29d7ca"},(0,n.kt)("inlineCode",{parentName:"a"},"ec93ed3"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 ensure that Volto doesn't crash when site module is set to eea: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51f2f27f5ba947b49b4b69fcf9b8890676cd1d7e"},(0,n.kt)("inlineCode",{parentName:"a"},"51f2f27"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 added tiny size prop to Breadcrumbs in order to have it as 12px ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/56a12e200c27c3a1826fa3088c34f762ed74dff7"},(0,n.kt)("inlineCode",{parentName:"a"},"56a12e2")))),(0,n.kt)("h3",{id:"001---2021-11-17"},"0.0.1 - 2021-11-17"),(0,n.kt)("h4",{id:"\ufe0f-others-61"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Initial commit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b0bdd445c95a20d088e00469f81028c16482640a"},(0,n.kt)("inlineCode",{parentName:"a"},"b0bdd44")))))}s.isMDXComponent=!0}}]); \ No newline at end of file diff --git a/docs/assets/js/41d5c757.5c8c3dc5.js b/docs/assets/js/41d5c757.5c8c3dc5.js new file mode 100644 index 0000000000..d6097e019c --- /dev/null +++ b/docs/assets/js/41d5c757.5c8c3dc5.js @@ -0,0 +1 @@ +"use strict";(self.webpackChunkwebsite=self.webpackChunkwebsite||[]).push([[6245],{3905:(e,a,t)=>{t.d(a,{Zo:()=>c,kt:()=>h});var i=t(7294);function n(e,a,t){return a in e?Object.defineProperty(e,a,{value:t,enumerable:!0,configurable:!0,writable:!0}):e[a]=t,e}function o(e,a){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);a&&(i=i.filter((function(a){return Object.getOwnPropertyDescriptor(e,a).enumerable}))),t.push.apply(t,i)}return t}function m(e){for(var a=1;a=0||(n[t]=e[t]);return n}(e,a);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(i=0;i=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(n[t]=e[t])}return n}var d=i.createContext({}),r=function(e){var a=i.useContext(d),t=a;return e&&(t="function"==typeof e?e(a):m(m({},a),e)),t},c=function(e){var a=r(e.components);return i.createElement(d.Provider,{value:a},e.children)},s="mdxType",f={inlineCode:"code",wrapper:function(e){var a=e.children;return i.createElement(i.Fragment,{},a)}},p=i.forwardRef((function(e,a){var t=e.components,n=e.mdxType,o=e.originalType,d=e.parentName,c=l(e,["components","mdxType","originalType","parentName"]),s=r(t),p=n,h=s["".concat(d,".").concat(p)]||s[p]||f[p]||o;return t?i.createElement(h,m(m({ref:a},c),{},{components:t})):i.createElement(h,m({ref:a},c))}));function h(e,a){var t=arguments,n=a&&a.mdxType;if("string"==typeof e||n){var o=t.length,m=new Array(o);m[0]=p;var l={};for(var d in a)hasOwnProperty.call(a,d)&&(l[d]=a[d]);l.originalType=e,l[s]="string"==typeof e?e:n,m[1]=l;for(var r=2;r{t.r(a),t.d(a,{contentTitle:()=>m,default:()=>s,frontMatter:()=>o,metadata:()=>l,toc:()=>d});var i=t(7462),n=(t(7294),t(3905));const o={title:"What's new"},m=void 0,l={unversionedId:"whatsnew",id:"whatsnew",title:"What's new",description:"EEA Design System (1.0)",source:"@site/docs/2-whatsnew.md",sourceDirName:".",slug:"/whatsnew",permalink:"/volto-eea-design-system/docs/whatsnew",editUrl:"https://github.com/eea/volto-eea-design-system/edit/contribute-documentation/website/docs/2-whatsnew.md",tags:[],version:"current",sidebarPosition:2,frontMatter:{title:"What's new"},sidebar:"sidebar",previous:{title:"Introduction",permalink:"/volto-eea-design-system/docs/intro"},next:{title:"Web development",permalink:"/volto-eea-design-system/docs/category/web-development"}},d=[{value:"EEA Design System (1.0)",id:"eea-design-system-10",children:[{value:"Components ready to be used",id:"components-ready-to-be-used",children:[],level:4},{value:"Future releases",id:"future-releases",children:[],level:4}],level:3},{value:"Unreleased - 2023-04-06T13:42:14.276Z",id:"unreleased---2023-04-06t134214276z",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes",children:[],level:4}],level:3},{value:"1.0.6 - 2023-03-29",id:"106---2023-03-29",children:[{value:"\ud83d\ude80 New Features",id:"-new-features",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-1",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-1",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others",children:[],level:4}],level:3},{value:"1.0.5 - 2023-03-28",id:"105---2023-03-28",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-1",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-1",children:[],level:4}],level:3},{value:"1.0.4 - 2023-03-27",id:"104---2023-03-27",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-2",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-2",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-1",children:[],level:4}],level:3},{value:"1.0.3 - 2023-03-24",id:"103---2023-03-24",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-2",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-2",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-2",children:[],level:4}],level:3},{value:"1.0.2 - 2023-03-14",id:"102---2023-03-14",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-3",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-3",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-1",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-3",children:[],level:4}],level:3},{value:"1.0.1 - 2023-03-13",id:"101---2023-03-13",children:[],level:3},{value:"1.0.0 - 2023-03-13",id:"100---2023-03-13",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-4",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-4",children:[],level:4}],level:3},{value:"1.0.0-beta.6 - 2023-03-10",id:"100-beta6---2023-03-10",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-3",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-5",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-5",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-3",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-2",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-4",children:[],level:4}],level:3},{value:"1.0.0-beta.5 - 2023-03-07",id:"100-beta5---2023-03-07",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-6",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-4",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-5",children:[],level:4}],level:3},{value:"1.0.0-beta.4 - 2023-03-01",id:"100-beta4---2023-03-01",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-4",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-6",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-7",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-6",children:[],level:4}],level:3},{value:"1.0.0-beta.3 - 2023-02-21",id:"100-beta3---2023-02-21",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-5",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-7",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-8",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-5",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-3",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-7",children:[],level:4}],level:3},{value:"1.0.0-beta.2 - 2023-02-13",id:"100-beta2---2023-02-13",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-8",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-9",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-6",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-8",children:[],level:4}],level:3},{value:"1.0.0-beta.1 - 2023-02-09",id:"100-beta1---2023-02-09",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-6",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-10",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-9",children:[],level:4}],level:3},{value:"1.0.0-alpha.15 - 2023-02-08",id:"100-alpha15---2023-02-08",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-7",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-9",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-11",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-10",children:[],level:4}],level:3},{value:"1.0.0-alpha.14 - 2023-01-30",id:"100-alpha14---2023-01-30",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-12",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-11",children:[],level:4}],level:3},{value:"1.0.0-alpha.13.1 - 2023-01-30",id:"100-alpha131---2023-01-30",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-13",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-12",children:[],level:4}],level:3},{value:"1.0.0-alpha.13 - 2023-01-27",id:"100-alpha13---2023-01-27",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-8",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-10",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-14",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-13",children:[],level:4}],level:3},{value:"1.0.0-alpha.12 - 2023-01-24",id:"100-alpha12---2023-01-24",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-9",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-11",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-15",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-4",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-14",children:[],level:4}],level:3},{value:"1.0.0-alpha.11 - 2023-01-17",id:"100-alpha11---2023-01-17",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-10",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-12",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-16",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-5",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-15",children:[],level:4}],level:3},{value:"1.0.0-alpha.10 - 2023-01-13",id:"100-alpha10---2023-01-13",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-13",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-16",children:[],level:4}],level:3},{value:"1.0.0-alpha.9 - 2022-12-28",id:"100-alpha9---2022-12-28",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-17",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-17",children:[],level:4}],level:3},{value:"1.0.0-alpha.8 - 2022-12-23",id:"100-alpha8---2022-12-23",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-11",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-18",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-7",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-6",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-18",children:[],level:4}],level:3},{value:"1.0.0-alpha.7 - 2022-12-16",id:"100-alpha7---2022-12-16",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-12",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-14",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-19",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-19",children:[],level:4}],level:3},{value:"1.0.0-alpha.6 - 2022-12-07",id:"100-alpha6---2022-12-07",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-13",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-15",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-20",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-7",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-20",children:[],level:4}],level:3},{value:"1.0.0-alpha.5 - 2022-11-29",id:"100-alpha5---2022-11-29",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-14",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-16",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-21",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-8",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-8",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-21",children:[],level:4}],level:3},{value:"1.0.0-alpha.4 - 2022-11-22",id:"100-alpha4---2022-11-22",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-17",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-22",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-22",children:[],level:4}],level:3},{value:"1.0.0-alpha.3 - 2022-11-16",id:"100-alpha3---2022-11-16",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-15",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-18",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-23",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-9",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-23",children:[],level:4}],level:3},{value:"1.0.0-alpha.2 - 2022-10-28",id:"100-alpha2---2022-10-28",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-24",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-10",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-24",children:[],level:4}],level:3},{value:"1.0.0-alpha.1 - 2022-10-20",id:"100-alpha1---2022-10-20",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-25",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-11",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-9",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-25",children:[],level:4}],level:3},{value:"0.9.6 - 2022-12-16",id:"096---2022-12-16",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-26",children:[],level:4}],level:3},{value:"0.9.5 - 2022-10-20",id:"095---2022-10-20",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-19",children:[],level:4}],level:3},{value:"0.9.4 - 2022-10-19",id:"094---2022-10-19",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-20",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-26",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-27",children:[],level:4}],level:3},{value:"0.9.3 - 2022-10-04",id:"093---2022-10-04",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-21",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-27",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-10",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-28",children:[],level:4}],level:3},{value:"0.9.2 - 2022-09-27",id:"092---2022-09-27",children:[],level:3},{value:"0.9.1 - 2022-09-27",id:"091---2022-09-27",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-28",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-29",children:[],level:4}],level:3},{value:"0.9.0 - 2022-09-19",id:"090---2022-09-19",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-16",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-22",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-29",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-12",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-11",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-30",children:[],level:4}],level:3},{value:"0.8.1 - 2022-08-26",id:"081---2022-08-26",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-23",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-30",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-12",children:[],level:4}],level:3},{value:"0.8.0 - 2022-08-20",id:"080---2022-08-20",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-17",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-24",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-31",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-31",children:[],level:4}],level:3},{value:"0.7.6 - 2022-08-15",id:"076---2022-08-15",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-32",children:[],level:4}],level:3},{value:"0.7.5 - 2022-08-11",id:"075---2022-08-11",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-33",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-32",children:[],level:4}],level:3},{value:"0.7.3 - 2022-08-04",id:"073---2022-08-04",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-34",children:[],level:4}],level:3},{value:"0.7.2 - 2022-08-03",id:"072---2022-08-03",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-25",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-33",children:[],level:4}],level:3},{value:"0.7.1 - 2022-08-01",id:"071---2022-08-01",children:[],level:3},{value:"0.7.0 - 2022-08-01",id:"070---2022-08-01",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-18",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-26",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-35",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-34",children:[],level:4}],level:3},{value:"0.6.5 - 2022-07-06",id:"065---2022-07-06",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-27",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-36",children:[],level:4}],level:3},{value:"0.6.1 - 2022-07-01",id:"061---2022-07-01",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-19",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-37",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-13",children:[],level:4}],level:3},{value:"0.6.0 - 2022-07-01",id:"060---2022-07-01",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-28",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-38",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-14",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-13",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-35",children:[],level:4}],level:3},{value:"0.5.5 - 2022-06-23",id:"055---2022-06-23",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-29",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-39",children:[],level:4}],level:3},{value:"0.5.4 - 2022-06-16",id:"054---2022-06-16",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-30",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-40",children:[],level:4}],level:3},{value:"0.5.3 - 2022-06-16",id:"053---2022-06-16",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-31",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-41",children:[],level:4}],level:3},{value:"0.5.2 - 2022-06-14",id:"052---2022-06-14",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-20",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-42",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-15",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-36",children:[],level:4}],level:3},{value:"0.5.1 - 2022-06-13",id:"051---2022-06-13",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-43",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-37",children:[],level:4}],level:3},{value:"0.5.0 - 2022-06-11",id:"050---2022-06-11",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-21",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-32",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-44",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-38",children:[],level:4}],level:3},{value:"0.4.5 - 2022-06-08",id:"045---2022-06-08",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-45",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-39",children:[],level:4}],level:3},{value:"0.4.4 - 2022-06-08",id:"044---2022-06-08",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-22",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-33",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-46",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-14",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-40",children:[],level:4}],level:3},{value:"0.4.3 - 2022-06-03",id:"043---2022-06-03",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-34",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-47",children:[],level:4}],level:3},{value:"0.4.2 - 2022-06-02",id:"042---2022-06-02",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-48",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-15",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-41",children:[],level:4}],level:3},{value:"0.4.1 - 2022-06-02",id:"041---2022-06-02",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-23",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-35",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-49",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-16",children:[],level:4}],level:3},{value:"0.4.0 - 2022-06-01",id:"040---2022-06-01",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-24",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-36",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-50",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-16",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-42",children:[],level:4}],level:3},{value:"0.3.1 - 2022-05-19",id:"031---2022-05-19",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-37",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-51",children:[],level:4}],level:3},{value:"0.3.0 - 2022-05-17",id:"030---2022-05-17",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-25",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-38",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-52",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-43",children:[],level:4}],level:3},{value:"0.2.4 - 2022-05-13",id:"024---2022-05-13",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-53",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-44",children:[],level:4}],level:3},{value:"0.2.3 - 2022-04-29",id:"023---2022-04-29",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-26",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-54",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-17",children:[],level:4}],level:3},{value:"0.2.2 - 2022-04-22",id:"022---2022-04-22",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-39",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-55",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-17",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-45",children:[],level:4}],level:3},{value:"0.2.1 - 2022-04-08",id:"021---2022-04-08",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-40",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-46",children:[],level:4}],level:3},{value:"0.2.0 - 2022-04-04",id:"020---2022-04-04",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-27",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-41",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-56",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-18",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-47",children:[],level:4}],level:3},{value:"0.1.9 - 2022-03-25",id:"019---2022-03-25",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-28",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-42",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-57",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-19",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-48",children:[],level:4}],level:3},{value:"0.1.8 - 2022-03-18",id:"018---2022-03-18",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-43",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-58",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-20",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-18",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-49",children:[],level:4}],level:3},{value:"0.1.7 - 2022-03-15",id:"017---2022-03-15",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-29",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-44",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-59",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-21",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-19",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-50",children:[],level:4}],level:3},{value:"0.1.6 - 2022-03-11",id:"016---2022-03-11",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-30",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-45",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-60",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-22",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-51",children:[],level:4}],level:3},{value:"0.1.5 - 2022-03-08",id:"015---2022-03-08",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-31",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-46",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-61",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-23",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-20",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-52",children:[],level:4}],level:3},{value:"0.1.4 - 2022-03-01",id:"014---2022-03-01",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-62",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-21",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-53",children:[],level:4}],level:3},{value:"0.1.4-beta.0 - 2022-02-25",id:"014-beta0---2022-02-25",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-32",children:[],level:4}],level:3},{value:"0.1.3 - 2022-02-25",id:"013---2022-02-25",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-47",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-63",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-24",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-54",children:[],level:4}],level:3},{value:"0.1.2 - 2022-02-17",id:"012---2022-02-17",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-33",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-48",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-64",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-25",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-22",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-55",children:[],level:4}],level:3},{value:"0.1.2-beta.2 - 2022-01-03",id:"012-beta2---2022-01-03",children:[],level:3},{value:"0.1.2-beta.1 - 2021-12-22",id:"012-beta1---2021-12-22",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-56",children:[],level:4}],level:3},{value:"0.1.2-beta.0 - 2021-12-18",id:"012-beta0---2021-12-18",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-57",children:[],level:4}],level:3},{value:"0.1.1 - 2021-12-16",id:"011---2021-12-16",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-58",children:[],level:4}],level:3},{value:"0.1.1-beta.0 - 2021-12-09",id:"011-beta0---2021-12-09",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-59",children:[],level:4}],level:3},{value:"0.1.0 - 2021-11-17",id:"010---2021-11-17",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-60",children:[],level:4}],level:3},{value:"0.0.1 - 2021-11-17",id:"001---2021-11-17",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-61",children:[],level:4}],level:3}],r={toc:d},c="wrapper";function s(e){let{components:a,...t}=e;return(0,n.kt)(c,(0,i.Z)({},r,t,{components:a,mdxType:"MDXLayout"}),(0,n.kt)("h3",{id:"eea-design-system-10"},"EEA Design System (1.0)"),(0,n.kt)("h4",{id:"components-ready-to-be-used"},"Components ready to be used"),(0,n.kt)("p",null,"The following components are ready to be used as Volto ",(0,n.kt)("inlineCode",{parentName:"p"},"blocks"),", ",(0,n.kt)("inlineCode",{parentName:"p"},"slate")," integration, or via the advanced ",(0,n.kt)("inlineCode",{parentName:"p"},"block styler"),":"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Accordion ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Call to Action ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Callout - part of the Description ",(0,n.kt)("inlineCode",{parentName:"li"},"block"),", ",(0,n.kt)("inlineCode",{parentName:"li"},"slate")),(0,n.kt)("li",{parentName:"ul"},"Card - part of the Teaser ",(0,n.kt)("inlineCode",{parentName:"li"},"block")," and Listing ",(0,n.kt)("inlineCode",{parentName:"li"},"block"),", it includes several variations like round card e.g., used for Avatar"),(0,n.kt)("li",{parentName:"ul"},"Divider ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Headings ",(0,n.kt)("inlineCode",{parentName:"li"},"slate")),(0,n.kt)("li",{parentName:"ul"},"Hero ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Item ",(0,n.kt)("inlineCode",{parentName:"li"},"block")," - used for text with an icon (remixicon or custom SVG/image) on the left/right"),(0,n.kt)("li",{parentName:"ul"},"List ",(0,n.kt)("inlineCode",{parentName:"li"},"slate")," - ordered and unordered"),(0,n.kt)("li",{parentName:"ul"},"Quote ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Statistic ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Tag ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Table ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Tabs ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Timeline ",(0,n.kt)("inlineCode",{parentName:"li"},"block"))),(0,n.kt)("h4",{id:"future-releases"},"Future releases"),(0,n.kt)("p",null,"Below is a non-exhaustive list of the work-in-progress which is planned for future releases:"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Navigation Portlet (used on the left/right hand of content)"),(0,n.kt)("li",{parentName:"ul"},"Spacing/padding system. We want to add the ability for editors to consistently apply various spacing/padding on certain components in order to allow a better alignment when components are used together."),(0,n.kt)("li",{parentName:"ul"},"Improve docusaurus and storybook with more components, controls, and variations in order to better reflect what is possible in Volto.")),(0,n.kt)("p",null,"Generated by ",(0,n.kt)("a",{parentName:"p",href:"https://github.com/CookPete/auto-changelog"},(0,n.kt)("inlineCode",{parentName:"a"},"auto-changelog")),"."),(0,n.kt)("h3",{id:"unreleased---2023-04-06t134214276z"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.6...HEAD"},"Unreleased")," - 2023-04-06T13:42:14.276Z"),(0,n.kt)("h4",{id:"-bug-fixes"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(item): flex variant on edit when inside blockchooser #333 from eea/fix-item-csss ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/65b9099779180feeb7d10384928bb0a3224b947d"},(0,n.kt)("inlineCode",{parentName:"a"},"65b9099"))),(0,n.kt)("li",{parentName:"ul"},"fix(item): use child selector instead of descendent as it interferes with blockchooser refs #157040 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ad4ca3725c595c8dbeaff69f730928313c1779ec"},(0,n.kt)("inlineCode",{parentName:"a"},"ad4ca37")))),(0,n.kt)("h4",{id:"-enhancements"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): align menu items with demo site for better testing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/82a5c84cfde81dd8243f3f9a2d1fcaa8ac4b1463"},(0,n.kt)("inlineCode",{parentName:"a"},"82a5c84"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumbs): updates on structure and story for accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/770c8c0bce88c5d9301ab0293a8e4865849bfeb2"},(0,n.kt)("inlineCode",{parentName:"a"},"770c8c0"))),(0,n.kt)("li",{parentName:"ul"},"change(logo): update eionet svg ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c87fc750a3dc376205a643eefced410a41b22c6"},(0,n.kt)("inlineCode",{parentName:"a"},"3c87fc7"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): Restructure Topics and Countries lists ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d816e7ab9cdf2f202ab994201c16241cfb26c33a"},(0,n.kt)("inlineCode",{parentName:"a"},"d816e7a"))),(0,n.kt)("li",{parentName:"ul"},"change(mega-menu): use lists for navigation, enhance voice over support for better accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d13137f024d6357514b85f184d219eb81dd585f2"},(0,n.kt)("inlineCode",{parentName:"a"},"d13137f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): firefox accessibility errors fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c7d35b92b90940b466ea016dbbb3f1c6dfa0c3ab"},(0,n.kt)("inlineCode",{parentName:"a"},"c7d35b9"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumbs): label modification for better screen reader output ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c967bef63ac6f622f5936235dd5590831a674d15"},(0,n.kt)("inlineCode",{parentName:"a"},"c967bef"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): clean up function after test ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/883eb73cbc3db6a1fadd0200118eafdce91b7aab"},(0,n.kt)("inlineCode",{parentName:"a"},"883eb73"))),(0,n.kt)("li",{parentName:"ul"},"change(mega-menu): added code to align countries left column subtitle with the right column ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1aa33dd7ac7154a91515eef688f276d664d5d7f3"},(0,n.kt)("inlineCode",{parentName:"a"},"1aa33dd"))),(0,n.kt)("li",{parentName:"ul"},"change(logos): updated eionet logo used in the site footer #318 from eea/footer-logo-update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70671d03bbc228e3013e382cb51e6764a83b01a8"},(0,n.kt)("inlineCode",{parentName:"a"},"70671d0"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumbs,mega-menu): better screen readers support, see links instead of groups #309 from eea/firefox-accessibility-tab-issues ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d6b0b4adba8f04799491025fb41ac97e875bcce0"},(0,n.kt)("inlineCode",{parentName:"a"},"d6b0b4a"))),(0,n.kt)("li",{parentName:"ul"},"change(mega-menu): sub-title padding tweaks for better spacing normalization ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e08668dd9fd948e57628e5582e7a4a7f08d96451"},(0,n.kt)("inlineCode",{parentName:"a"},"e08668d"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumbs): fixed sizing of breadcrumbs list items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1761e984a6ffebbcca0c7b88128a01235fc6b903"},(0,n.kt)("inlineCode",{parentName:"a"},"1761e98")))),(0,n.kt)("h4",{id:"-internal-changes"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(megaMenu): remove comments and unused properties ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fa5f8f878421d879026aacd86e5390112b8852a1"},(0,n.kt)("inlineCode",{parentName:"a"},"fa5f8f8")))),(0,n.kt)("h4",{id:"-documentation-changes"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(footer): logo update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ad982d63423442bc292cd7553ad3163b33b337bb"},(0,n.kt)("inlineCode",{parentName:"a"},"ad982d6")))),(0,n.kt)("h3",{id:"106---2023-03-29"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.5...1.0.6"},"1.0.6")," - 2023-03-29"),(0,n.kt)("h4",{id:"-new-features"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat: add viewport-(width/height) less functions and fixed banner image url #329 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e8e70bdc81f4f301a9dce370867a873e55563048"},(0,n.kt)("inlineCode",{parentName:"a"},"e8e70bd"))),(0,n.kt)("li",{parentName:"ul"},"feat: add viewport-(width/height) less functions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/68300a3c34e66954c7ef3a6e52baa37431fbfa9e"},(0,n.kt)("inlineCode",{parentName:"a"},"68300a3")))),(0,n.kt)("h4",{id:"-enhancements-1"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): set full class name for remix icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f435e10034b04cab4aeb301d8521559f98be299e"},(0,n.kt)("inlineCode",{parentName:"a"},"f435e10"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner.jsx): use flattenToAppURL helper function to get image source URL ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24b13d7c09a498ca889d413135c9abc4e6cab9ad"},(0,n.kt)("inlineCode",{parentName:"a"},"24b13d7")))),(0,n.kt)("h4",{id:"-internal-changes-1"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(theme): update container width and margins in eea theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e4446a3af641ddca03f1f2833dd6e79535feb98"},(0,n.kt)("inlineCode",{parentName:"a"},"3e4446a")))),(0,n.kt)("h4",{id:"\ufe0f-others"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"horizontal overflow hidden in view mode ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f395f276df003480a219bae639f87bebcf35799f"},(0,n.kt)("inlineCode",{parentName:"a"},"f395f27")))),(0,n.kt)("h3",{id:"105---2023-03-28"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.4...1.0.5"},"1.0.5")," - 2023-03-28"),(0,n.kt)("h4",{id:"-new-features-1"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat: improve full-width class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70bba7e295dd237e7c579ef0446ff05e0c8529d8"},(0,n.kt)("inlineCode",{parentName:"a"},"70bba7e")))),(0,n.kt)("h4",{id:"-bug-fixes-1"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(banner): Add missing divider for time tag #327 from eea/banner-metadata ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c46a58336ec9eb2ce75d2637f3197f417e8ca326"},(0,n.kt)("inlineCode",{parentName:"a"},"c46a583"))),(0,n.kt)("li",{parentName:"ul"},"fix(banner): Add missing divider for time tag ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d68c395d368a267baef4422df6e72f63d099b75"},(0,n.kt)("inlineCode",{parentName:"a"},"7d68c39")))),(0,n.kt)("h3",{id:"104---2023-03-27"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.3...1.0.4"},"1.0.4")," - 2023-03-27"),(0,n.kt)("h4",{id:"-new-features-2"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(copyright): Add copyright prefix - Image - refs #250724 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6a727723c15aee499ed7cedc9f364c5e2c8014bb"},(0,n.kt)("inlineCode",{parentName:"a"},"6a72772")))),(0,n.kt)("h4",{id:"-internal-changes-2"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(copyright): Cleanup useless min-height - refs #250724 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2457df6376ac1a4d00f87eee90e61f66f7ffebb"},(0,n.kt)("inlineCode",{parentName:"a"},"f2457df")))),(0,n.kt)("h4",{id:"\ufe0f-others-1"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cfd6eba8b01eceff4e28ab7ab51b2457672ac172"},(0,n.kt)("inlineCode",{parentName:"a"},"cfd6eba")))),(0,n.kt)("h3",{id:"103---2023-03-24"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.2...1.0.3"},"1.0.3")," - 2023-03-24"),(0,n.kt)("h4",{id:"-bug-fixes-2"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix: improve full-width class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93222590a630b27f3dfccb7df0a50070c9c9901c"},(0,n.kt)("inlineCode",{parentName:"a"},"9322259"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): Remove z-index from subsite logo #320 from eea/subsite-logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/50911009918faf7d3064d97ea7b685ad71970521"},(0,n.kt)("inlineCode",{parentName:"a"},"5091100"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): Remove z-index from subsite logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d433a9788d76db0f1c08ef6bb2313f479c2bb19b"},(0,n.kt)("inlineCode",{parentName:"a"},"d433a97")))),(0,n.kt)("h4",{id:"-enhancements-2"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(header): Add search popup customizations from eea-website-theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/43e5a78be8efa1098ea0fc87f43f40f2b5d482c1"},(0,n.kt)("inlineCode",{parentName:"a"},"43e5a78"))),(0,n.kt)("li",{parentName:"ul"},"change(popup): create custom popup for better accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/036aac95509b6d78b2d3b251578a7de878e28371"},(0,n.kt)("inlineCode",{parentName:"a"},"036aac9"))),(0,n.kt)("li",{parentName:"ul"},"change(popup): added most important popup properties from Semantic ui implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/61f65bc0e5806aaac33b54db36d5360fd05a48cc"},(0,n.kt)("inlineCode",{parentName:"a"},"61f65bc"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): use custom-made Popup for better accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/10d0fcfb28ca97efe9fa5c0f6c9c350b76a73140"},(0,n.kt)("inlineCode",{parentName:"a"},"10d0fcf"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): use custom-made Popup for better accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9108bee5f671505be5199e72a4749bb0af0c0cb9"},(0,n.kt)("inlineCode",{parentName:"a"},"9108bee"))),(0,n.kt)("li",{parentName:"ul"},"change(popup): added also the basic property ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4497acddde258ed31cda09f4d905e003a1e4611"},(0,n.kt)("inlineCode",{parentName:"a"},"a4497ac"))),(0,n.kt)("li",{parentName:"ul"},"change(colors): update gray-4 color value #321 from eea/update-gray-4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f458ff0965debd3629cdd78362244836d0d42687"},(0,n.kt)("inlineCode",{parentName:"a"},"f458ff0"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): MetadataField now uses proper time tag when value is datetime ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4c4d34d5905a6771a281fc3db1174b4998c8fa8"},(0,n.kt)("inlineCode",{parentName:"a"},"b4c4d34"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): updated gray-4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b890df7693880fb965e41752eda64df992a1cdc4"},(0,n.kt)("inlineCode",{parentName:"a"},"b890df7"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): Fix error and empty div if no social links are present #319 from eea/footer-social ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/89222466b76a4720af73c0d516074efec0757c34"},(0,n.kt)("inlineCode",{parentName:"a"},"8922246"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): Fix error and empty div if no social links are present ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5d934a6545ae783ff41dc9e3eda389c571d1369b"},(0,n.kt)("inlineCode",{parentName:"a"},"5d934a6")))),(0,n.kt)("h4",{id:"\ufe0f-others-2"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"lint ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca41def7a3743a8328f26cec868bd20395b62446"},(0,n.kt)("inlineCode",{parentName:"a"},"ca41def"))),(0,n.kt)("li",{parentName:"ul"},"refactor ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9789201c7966cd711bfa85fe448f6f6df2583eaf"},(0,n.kt)("inlineCode",{parentName:"a"},"9789201"))),(0,n.kt)("li",{parentName:"ul"},"lint ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/646dfaa729b51367ce7545ea928837a481a5485a"},(0,n.kt)("inlineCode",{parentName:"a"},"646dfaa"))),(0,n.kt)("li",{parentName:"ul"},"(feat):Page Header Banner accessibility #316 from eea/accesibility-banner ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e587f4657de137273053480a3536a066ab032a29"},(0,n.kt)("inlineCode",{parentName:"a"},"e587f46"))),(0,n.kt)("li",{parentName:"ul"},"storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c8c77de372060328d535b190f30747797db0d23a"},(0,n.kt)("inlineCode",{parentName:"a"},"c8c77de"))),(0,n.kt)("li",{parentName:"ul"},"banner accesibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5e2f23bae30b5bb14d3f607e0cfeb85d0cfe4a9f"},(0,n.kt)("inlineCode",{parentName:"a"},"5e2f23b"))),(0,n.kt)("li",{parentName:"ul"},"prettier ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6ed78e50ee68accca10b06b0790c231ddeb1a1fa"},(0,n.kt)("inlineCode",{parentName:"a"},"6ed78e5"))),(0,n.kt)("li",{parentName:"ul"},"cleaning ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4391aa6c6611d1a15f5977eb150416909ad83bc1"},(0,n.kt)("inlineCode",{parentName:"a"},"4391aa6"))),(0,n.kt)("li",{parentName:"ul"},"lint 3 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2e0bed19a24d8abfa230212cd8c09f8313dc00f2"},(0,n.kt)("inlineCode",{parentName:"a"},"2e0bed1"))),(0,n.kt)("li",{parentName:"ul"},"lint 1 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4c958034870a9861c542359144e3c56f9157994"},(0,n.kt)("inlineCode",{parentName:"a"},"b4c9580")))),(0,n.kt)("h3",{id:"102---2023-03-14"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.1...1.0.2"},"1.0.2")," - 2023-03-14"),(0,n.kt)("h4",{id:"-bug-fixes-3"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(megamenu): topic menu title is now placed before content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6004bcb2683dedf6d6e18e61f33fde84a54c38d5"},(0,n.kt)("inlineCode",{parentName:"a"},"6004bcb"))),(0,n.kt)("li",{parentName:"ul"},"fix(megamenu): removed in depth nav_title renaming that set title wrongly to a-z topics ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/899ca0e2ba5f8f9eb61e4280d786f74a17c186b7"},(0,n.kt)("inlineCode",{parentName:"a"},"899ca0e")))),(0,n.kt)("h4",{id:"-enhancements-3"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(megamenu): removed special styling from at a glance mega menu section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fd0c4c8a06bb4c4aa26f57c453132d13d30bc691"},(0,n.kt)("inlineCode",{parentName:"a"},"fd0c4c8"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): renamed thematic information platforms to environmental information systems ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e7004a7ea39451dbf97e1faed222b0cc5a12d6ce"},(0,n.kt)("inlineCode",{parentName:"a"},"e7004a7"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): updated static image of footer sections ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ff3185edf9257c790d2a124d3f937f61d84e147"},(0,n.kt)("inlineCode",{parentName:"a"},"4ff3185")))),(0,n.kt)("h4",{id:"-documentation-changes-1"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(What's new): Update 'What's new' ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d7ed9d619aa60d087c3821a972ebe5bf5766521a"},(0,n.kt)("inlineCode",{parentName:"a"},"d7ed9d6")))),(0,n.kt)("h4",{id:"\ufe0f-others-3"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fixed accordion selector typo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f4cabc8f2222cf587af9e04b0ea196799b84202f"},(0,n.kt)("inlineCode",{parentName:"a"},"f4cabc8")))),(0,n.kt)("h3",{id:"101---2023-03-13"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0...1.0.1"},"1.0.1")," - 2023-03-13"),(0,n.kt)("h3",{id:"100---2023-03-13"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-beta.6...1.0.0"},"1.0.0")," - 2023-03-13"),(0,n.kt)("h4",{id:"-bug-fixes-4"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(Footer): Open internal links within the same page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5b3e409c71281800bb0fd137a1bac256efaca2b5"},(0,n.kt)("inlineCode",{parentName:"a"},"5b3e409")))),(0,n.kt)("h4",{id:"-enhancements-4"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(banner): use huge scale instead of full image for better performance ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/381c58e3521436f562d9e1727428a18435e2c0f3"},(0,n.kt)("inlineCode",{parentName:"a"},"381c58e")))),(0,n.kt)("h3",{id:"100-beta6---2023-03-10"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-beta.5...1.0.0-beta.6"},"1.0.0-beta.6")," - 2023-03-10"),(0,n.kt)("h4",{id:"-new-features-3"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(site): serve Roboto fonts from eea design system package instead of google fonts #311 from eea/roboto-library ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6a1b3e3864a0bc8602e9c434ff70746bba59f44"},(0,n.kt)("inlineCode",{parentName:"a"},"f6a1b3e")))),(0,n.kt)("h4",{id:"-bug-fixes-5"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix: full-width is now properly sized ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e2e3482d658febbd692112608df14279bed05e7"},(0,n.kt)("inlineCode",{parentName:"a"},"6e2e348"))),(0,n.kt)("li",{parentName:"ul"},"fix(storybook): add fontDisplay ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/078966a6a5c7277d36fcd31bb4c0704bcc43e523"},(0,n.kt)("inlineCode",{parentName:"a"},"078966a")))),(0,n.kt)("h4",{id:"-enhancements-5"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(image): copyright position fixes, moved image floating to image-block-container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53422e0ea345a7cb6e8cb07bf9006b48d86ded58"},(0,n.kt)("inlineCode",{parentName:"a"},"53422e0"))),(0,n.kt)("li",{parentName:"ul"},"change(colors:) update the design system colour palette #312 from eea/update-color-palette ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a5fb69465717dbdc0fe8091640a0e46f66199b65"},(0,n.kt)("inlineCode",{parentName:"a"},"a5fb694"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): added roboto library ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19de7b19fe795870102000bfebbf452d88b3a7b1"},(0,n.kt)("inlineCode",{parentName:"a"},"19de7b1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): added roboto library ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e9916215728dda0ff423f8196e7442588058042e"},(0,n.kt)("inlineCode",{parentName:"a"},"e991621"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): update colours ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3a2c1e1da8f0224e08f9f8afac3f0a74f7ce91d3"},(0,n.kt)("inlineCode",{parentName:"a"},"3a2c1e1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): restored site variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a48478bae9bdf1d9275be999e1ec8382f10a2fec"},(0,n.kt)("inlineCode",{parentName:"a"},"a48478b"))),(0,n.kt)("li",{parentName:"ul"},"change(copyright): implemented copyright hover design ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6b1244163de7ff58d1529fdd791502c862ee48ec"},(0,n.kt)("inlineCode",{parentName:"a"},"6b12441")))),(0,n.kt)("h4",{id:"-internal-changes-3"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(storybook): switched google fonts to true ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a8cae46582356cc24ec3cd7ec47e692bc67a6a5"},(0,n.kt)("inlineCode",{parentName:"a"},"4a8cae4"))),(0,n.kt)("li",{parentName:"ul"},"chore(colours): changed back yellow 6 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87c9bbc0ec9a2a0f4bf8eeb03525d43ce6f502be"},(0,n.kt)("inlineCode",{parentName:"a"},"87c9bbc"))),(0,n.kt)("li",{parentName:"ul"},"chore(lint): lint ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9b0f1256a8b0a583ac7724a8d88259c615d7e0c7"},(0,n.kt)("inlineCode",{parentName:"a"},"9b0f125"))),(0,n.kt)("li",{parentName:"ul"},"chore(storybook): lint ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/29bc809ab2e9fa4207b8b067785e6b17e91db3b4"},(0,n.kt)("inlineCode",{parentName:"a"},"29bc809")))),(0,n.kt)("h4",{id:"-documentation-changes-2"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(colours): colours update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/161007e2480aa79517c4ca772364a12a0756f1af"},(0,n.kt)("inlineCode",{parentName:"a"},"161007e"))),(0,n.kt)("li",{parentName:"ul"},"docs(colours): accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee342aa6af3863d243222eaa89709be2ba61f988"},(0,n.kt)("inlineCode",{parentName:"a"},"ee342aa")))),(0,n.kt)("h4",{id:"\ufe0f-others-4"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"test(cypress): Use latest stable Volto for testing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/20516617ae045f48c37a7ac7ad05c3d1090339b3"},(0,n.kt)("inlineCode",{parentName:"a"},"2051661"))),(0,n.kt)("li",{parentName:"ul"},"Update What's new section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/caa4b5d93affa7b63a332eaed9e73ea161a508cf"},(0,n.kt)("inlineCode",{parentName:"a"},"caa4b5d"))),(0,n.kt)("li",{parentName:"ul"},"Prepare final release 1.0.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef4383d05b295cbbb377f877522b9f83cd0873ef"},(0,n.kt)("inlineCode",{parentName:"a"},"ef4383d"))),(0,n.kt)("li",{parentName:"ul"},"lint fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/599f5098904f607bd694dd5d2e642c8820f11b3c"},(0,n.kt)("inlineCode",{parentName:"a"},"599f509"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/80cd3df3534e46e52ba246256c3d990a52753bbd"},(0,n.kt)("inlineCode",{parentName:"a"},"80cd3df")))),(0,n.kt)("h3",{id:"100-beta5---2023-03-07"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-beta.4...1.0.0-beta.5"},"1.0.0-beta.5")," - 2023-03-07"),(0,n.kt)("h4",{id:"-enhancements-6"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(carousel): tweak size of carousel dots for better touch interaction ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e1fb8230806de2e157a9a5ea87e63765769565b4"},(0,n.kt)("inlineCode",{parentName:"a"},"e1fb823"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): removed min width and height from links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac33219fb77f23bb5148355551a7aad9f453d2e7"},(0,n.kt)("inlineCode",{parentName:"a"},"ac33219")))),(0,n.kt)("h4",{id:"-internal-changes-4"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(hiddenStructure): Add hiddenStructure utility to be used with h1 heading on frontpage - refs #158717 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/672cca2401003f56e5ea104f18103ea090e38fd7"},(0,n.kt)("inlineCode",{parentName:"a"},"672cca2")))),(0,n.kt)("h4",{id:"\ufe0f-others-5"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fixed less build failure due to changes in footer.less ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/190bc8cfa88191b45808f1e27c6e2737ee3d15b1"},(0,n.kt)("inlineCode",{parentName:"a"},"190bc8c"))),(0,n.kt)("li",{parentName:"ul"},"lazyload bg img on footer also ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ae07162ba1b27bff58fed70eaabc28c78c5f45a3"},(0,n.kt)("inlineCode",{parentName:"a"},"ae07162"))),(0,n.kt)("li",{parentName:"ul"},"lazyload footer images ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a0633c9ec4ccfb63a48eb4e4c4a63c90daac1a37"},(0,n.kt)("inlineCode",{parentName:"a"},"a0633c9"))),(0,n.kt)("li",{parentName:"ul"},"Increase performance - mobile friendly ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/07d86c8e77568f91d50b3a45248de9427140a295"},(0,n.kt)("inlineCode",{parentName:"a"},"07d86c8"))),(0,n.kt)("li",{parentName:"ul"},"better useOnScreen hook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c214b6b76443f81c795ce2f3aa457562ec088b30"},(0,n.kt)("inlineCode",{parentName:"a"},"c214b6b"))),(0,n.kt)("li",{parentName:"ul"},"role change for accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5e758e0a7fa8c56ba688d0a43de5890686f14ea3"},(0,n.kt)("inlineCode",{parentName:"a"},"5e758e0"))),(0,n.kt)("li",{parentName:"ul"},"minimum tap dimension for mobile ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a25e9a8ba8a8a0f24d287ed7513e549ae2caab0f"},(0,n.kt)("inlineCode",{parentName:"a"},"a25e9a8"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-beta.5 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e4417e121477511c350ae3fbe4e70aadb445ed86"},(0,n.kt)("inlineCode",{parentName:"a"},"e4417e1"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using eea-website-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b227cf8a8c44b9d91e9fda8a7999fb0a42bacdca"},(0,n.kt)("inlineCode",{parentName:"a"},"b227cf8"))),(0,n.kt)("li",{parentName:"ul"},"feature(mobile): increased performance by lazy loading footer images #303 from eea/increase_performance ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/80d1df1c459680331d486f9e8e6a95c9db0adbf6"},(0,n.kt)("inlineCode",{parentName:"a"},"80d1df1"))),(0,n.kt)("li",{parentName:"ul"},"useOnScreen default export ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e6cfdd4dcb814aad328f97be7af41af071ccba6"},(0,n.kt)("inlineCode",{parentName:"a"},"3e6cfdd"))),(0,n.kt)("li",{parentName:"ul"},"use aria-labels on dropdown ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/27e144315416ceace0f01def03b5b24640f5c7da"},(0,n.kt)("inlineCode",{parentName:"a"},"27e1443"))),(0,n.kt)("li",{parentName:"ul"},"prettier ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7f838470c1bcc4e2be115d514d92a1b686a5e9b"},(0,n.kt)("inlineCode",{parentName:"a"},"a7f8384")))),(0,n.kt)("h3",{id:"100-beta4---2023-03-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-beta.3...1.0.0-beta.4"},"1.0.0-beta.4")," - 2023-03-01"),(0,n.kt)("h4",{id:"-new-features-4"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(footer): Add footer description ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ad0f714556c5b8c2fd95a2caea5c3a1e82c75d1"},(0,n.kt)("inlineCode",{parentName:"a"},"2ad0f71"))),(0,n.kt)("li",{parentName:"ul"},"feat(footer): Add footer description #306 from eea/footer-description ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bf655d133dd75b217c34b3d4303ad450a59f2c51"},(0,n.kt)("inlineCode",{parentName:"a"},"bf655d1")))),(0,n.kt)("h4",{id:"-bug-fixes-6"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(footer): Don't show empty row if description is not present ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ca7f7d3247668ae8583b8cd629856aac82eb07d"},(0,n.kt)("inlineCode",{parentName:"a"},"2ca7f7d"))),(0,n.kt)("li",{parentName:"ul"},"fix(footer): Add class for children ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c50d15cd6ed46d78ef10d48fd851ed7c4b5ddea"},(0,n.kt)("inlineCode",{parentName:"a"},"3c50d15"))),(0,n.kt)("li",{parentName:"ul"},"fix(search): Fix search links color #307 from eea/search-accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a76f48bab3a7d3f6b748eaa85b33266401372e40"},(0,n.kt)("inlineCode",{parentName:"a"},"a76f48b"))),(0,n.kt)("li",{parentName:"ul"},"fix(search): Fix search links color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/69c42effc5bdc3d31f18de74d77a3b7cc0018dc5"},(0,n.kt)("inlineCode",{parentName:"a"},"69c42ef")))),(0,n.kt)("h4",{id:"-enhancements-7"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(carousel): tweak card width and padding for better arrow alignment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e184f70062d622e1ec53e8e1e2b012c080e62d77"},(0,n.kt)("inlineCode",{parentName:"a"},"e184f70"))),(0,n.kt)("li",{parentName:"ul"},"change(storybook): include footer description in storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e904aa0850e101d736e8d045e822d9a58b75ff6a"},(0,n.kt)("inlineCode",{parentName:"a"},"e904aa0")))),(0,n.kt)("h4",{id:"\ufe0f-others-6"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-beta.4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8c335c56c5a2a76ea87f9da318055770f904e649"},(0,n.kt)("inlineCode",{parentName:"a"},"8c335c5"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/38b03333066416915b056f8ac45da4de87ed7184"},(0,n.kt)("inlineCode",{parentName:"a"},"38b0333")))),(0,n.kt)("h3",{id:"100-beta3---2023-02-21"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-beta.2...1.0.0-beta.3"},"1.0.0-beta.3")," - 2023-02-21"),(0,n.kt)("h4",{id:"-new-features-5"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(accordion): storybook accessibility by using buttons for titles #297 from eea/accessibility-accordion ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/809d52b203ef40fab735006b3b8358d68682f7cf"},(0,n.kt)("inlineCode",{parentName:"a"},"809d52b")))),(0,n.kt)("h4",{id:"-bug-fixes-7"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(dropdown): remove close on blur so that we can navigate links using keyboard ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5442715e022b3eb2eeb709ff597f815947ac45bd"},(0,n.kt)("inlineCode",{parentName:"a"},"5442715")))),(0,n.kt)("h4",{id:"-enhancements-8"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(language): dropdown to use links for proper keyboard navigation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6a7de30d9d229443d6d2070d9649129e6d35badf"},(0,n.kt)("inlineCode",{parentName:"a"},"6a7de30"))),(0,n.kt)("li",{parentName:"ul"},"refactor(images): cleared unused/renamed images assets ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/821f5c1da5c1e2350818cd9b8b82bc0b1893370d"},(0,n.kt)("inlineCode",{parentName:"a"},"821f5c1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Accessibility): add box-shadow on focus-visible components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b1adcc315a89c7d3431e542e8d1b6ec479a346e2"},(0,n.kt)("inlineCode",{parentName:"a"},"b1adcc3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(images): remove unused docusaurus svgs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5ef14cdb1923d803feb673559d41b3064211653"},(0,n.kt)("inlineCode",{parentName:"a"},"c5ef14c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add escape key functionality, actions from div to button to have proper focus state ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8081aa4e3b77f8a3dc89aa358408d75e3dca5579"},(0,n.kt)("inlineCode",{parentName:"a"},"8081aa4"))),(0,n.kt)("li",{parentName:"ul"},"change(language): restore dropdown duplication in order to properly show and hide language dropdown ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb28888ff19bd9894b58403e674f69de42ad8d09"},(0,n.kt)("inlineCode",{parentName:"a"},"cb28888"))),(0,n.kt)("li",{parentName:"ul"},"change(search): to reflect changes from eea-website-theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2cc35e0da6e6eac1473724293fcf6cd6b0a914b5"},(0,n.kt)("inlineCode",{parentName:"a"},"2cc35e0"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update p with h3 heading tag for header ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca1477b554f56423d40a33d8ee788c3f3bd3e341"},(0,n.kt)("inlineCode",{parentName:"a"},"ca1477b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer images): removed unused/renamed ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/186de6b23906e05ec700c3db5180a4d7f7e5ed68"},(0,n.kt)("inlineCode",{parentName:"a"},"186de6b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Accordion): div titles to buttons, test in mobile mega menu accordions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/eaad4b479e37ebf5ac004cfc5759e0be603000a7"},(0,n.kt)("inlineCode",{parentName:"a"},"eaad4b4"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): cleanup decorative images ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fedc4d4dc156f9c1394fcedcebece4fb87dc70b6"},(0,n.kt)("inlineCode",{parentName:"a"},"fedc4d4"))),(0,n.kt)("li",{parentName:"ul"},"change(accessibility): style outline instead of box-shadow ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53209f3b28c9a1dd54a8a86ab418b8bc2a8e01b3"},(0,n.kt)("inlineCode",{parentName:"a"},"53209f3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Footer): update mobile header size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/01ab7f0d9abe688b3d96aaec018838e1abefec73"},(0,n.kt)("inlineCode",{parentName:"a"},"01ab7f0"))),(0,n.kt)("li",{parentName:"ul"},"change(header): set the logo class directly on the link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f8fba508f925d9e6b86720fcb2c7dcfffee4ab5e"},(0,n.kt)("inlineCode",{parentName:"a"},"f8fba50"))),(0,n.kt)("li",{parentName:"ul"},"refactor(images): clear docusaurus unused pngs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/db5c61124182e3030f753f6baa294fbdecaa3798"},(0,n.kt)("inlineCode",{parentName:"a"},"db5c611"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header-images): removed unused ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8250d94421d9d1ee13144e71bc0938af2b7309f5"},(0,n.kt)("inlineCode",{parentName:"a"},"8250d94"))),(0,n.kt)("li",{parentName:"ul"},"change(language): hide language dropdown by default ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cc6064f72dcb4dbf96e9b05205cc796775d75205"},(0,n.kt)("inlineCode",{parentName:"a"},"cc6064f"))),(0,n.kt)("li",{parentName:"ul"},"change(header): top dropdown menu keyboard navigation #293 from eea/accessibility-megamenu-searchbox ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1e6fa658e52b9d5e6cc38f065b5707b592005241"},(0,n.kt)("inlineCode",{parentName:"a"},"1e6fa65"))),(0,n.kt)("li",{parentName:"ul"},"change(button): set focus styling for buttons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/33ebfcacb014fca365ae58079bfa5429d9007e54"},(0,n.kt)("inlineCode",{parentName:"a"},"33ebfca"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): Avoid devtools warning in FooterActions #304 from eea/avoid_warning ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d774824c5d3d0998b3440ac83152428cfa821087"},(0,n.kt)("inlineCode",{parentName:"a"},"d774824"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): Accessibility update p with h3 heading tag for theme sites title #302 from eea/footer-accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5bf70de97aee216a0b88f5843a290c6bcb5da6f2"},(0,n.kt)("inlineCode",{parentName:"a"},"5bf70de"))),(0,n.kt)("li",{parentName:"ul"},"change(documentation): Rename all image files to follow the agreed convention #301 from eea/refactor-image-filenames ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cfe44ef79943af9b9179df1b8ec5f8c743e8bb39"},(0,n.kt)("inlineCode",{parentName:"a"},"cfe44ef")))),(0,n.kt)("h4",{id:"-internal-changes-5"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(header): react syntax fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3add1271c785a92bea0ef925d7bc562cef1e0d92"},(0,n.kt)("inlineCode",{parentName:"a"},"3add127"))),(0,n.kt)("li",{parentName:"ul"},"chore(docusaurus): ignore website/.yarn ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0b33ffd1dda61b126e3cc5ff48888124d6aee41b"},(0,n.kt)("inlineCode",{parentName:"a"},"0b33ffd")))),(0,n.kt)("h4",{id:"-documentation-changes-3"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(guidelines): add image name convention ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/290747c8df6919199577bc7fce6a0e337cb57853"},(0,n.kt)("inlineCode",{parentName:"a"},"290747c")))),(0,n.kt)("h4",{id:"\ufe0f-others-7"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Avoid warning in FooterActions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0fe73d70e44e32be73049f3b5cf826de42115942"},(0,n.kt)("inlineCode",{parentName:"a"},"0fe73d7"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-beta.3 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/386c9032d39317b0bb95191bd59e3b7a99bded69"},(0,n.kt)("inlineCode",{parentName:"a"},"386c903")))),(0,n.kt)("h3",{id:"100-beta2---2023-02-13"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-beta.1...1.0.0-beta.2"},"1.0.0-beta.2")," - 2023-02-13"),(0,n.kt)("h4",{id:"-bug-fixes-8"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(footer): action and copyright #300 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/579f3e436e9608b38a2407a16c070345462bfccc"},(0,n.kt)("inlineCode",{parentName:"a"},"579f3e4"))),(0,n.kt)("li",{parentName:"ul"},"fix(footer): action or copyright links are simple a tags for external link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9af5070187ec975e58387f133afedcf1bbc47a50"},(0,n.kt)("inlineCode",{parentName:"a"},"9af5070"))),(0,n.kt)("li",{parentName:"ul"},"fix(accessibility): added navigation and footer id's for skip link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48354b908e7d1a87b4e1a965d225e8f1b3e0ac59"},(0,n.kt)("inlineCode",{parentName:"a"},"48354b9")))),(0,n.kt)("h4",{id:"-enhancements-9"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(footer): typos and modified footer links to be center aligned ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac23f046bcac06525985dff7520bb2766dec44ec"},(0,n.kt)("inlineCode",{parentName:"a"},"ac23f04"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): added gap for actions and copyright ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d32ddd3c28a48c6c2fb73dea373bb5873b6f76b"},(0,n.kt)("inlineCode",{parentName:"a"},"7d32ddd"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): modified footer gap ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8a820ac90c7d6664e4d4655c2c06edfa976c64e"},(0,n.kt)("inlineCode",{parentName:"a"},"b8a820a"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): removed extra text and date from copyright section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af47bbec298678fece6f879fbc18fe2e01ab0894"},(0,n.kt)("inlineCode",{parentName:"a"},"af47bbe"))),(0,n.kt)("li",{parentName:"ul"},"change(navigation): raise z-index of go to top link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/485ca7291da7a156b6b580c42e46d4f3602211bb"},(0,n.kt)("inlineCode",{parentName:"a"},"485ca72")))),(0,n.kt)("h4",{id:"-internal-changes-6"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(docs): Update eea.hbs template to beta - refs #158717 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/196538ed7bb9dab36a0efb4cef84e96dd3038ff8"},(0,n.kt)("inlineCode",{parentName:"a"},"196538e")))),(0,n.kt)("h4",{id:"\ufe0f-others-8"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change version to beta 2 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cbb07981454b28de840561eca281888e8bc29f9e"},(0,n.kt)("inlineCode",{parentName:"a"},"cbb0798"))),(0,n.kt)("li",{parentName:"ul"},"Beta release ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ad51b3c2bbb75f19af14fa56afdbddf57b6c95e"},(0,n.kt)("inlineCode",{parentName:"a"},"4ad51b3")))),(0,n.kt)("h3",{id:"100-beta1---2023-02-09"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.15...1.0.0-beta.1"},"1.0.0-beta.1")," - 2023-02-09"),(0,n.kt)("h4",{id:"-new-features-6"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(search): Add search suggestions style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6b2b77bbaba11541606ae2bc1f4e8ffc823f470d"},(0,n.kt)("inlineCode",{parentName:"a"},"6b2b77b"))),(0,n.kt)("li",{parentName:"ul"},"feat(search): Add search suggestions style #296 from eea/search-suggestions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3b0c956f569ebdc8400b88249c45067a1f881264"},(0,n.kt)("inlineCode",{parentName:"a"},"3b0c956")))),(0,n.kt)("h4",{id:"-enhancements-10"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(search): Add proper margin for search popup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/190c9f5be570215586086f42aebc7e36d6a26ea2"},(0,n.kt)("inlineCode",{parentName:"a"},"190c9f5")))),(0,n.kt)("h4",{id:"\ufe0f-others-9"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Extra bottom padding for header menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4f38c7a96d93fbcd47de4ec60176de2a667c5643"},(0,n.kt)("inlineCode",{parentName:"a"},"4f38c7a"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-beta.1 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4384ae28597c725f66ab0f1361ffd5167ee5e3a1"},(0,n.kt)("inlineCode",{parentName:"a"},"4384ae2"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c2ee90c1754f17a304897839adf482bc2a111212"},(0,n.kt)("inlineCode",{parentName:"a"},"c2ee90c")))),(0,n.kt)("h3",{id:"100-alpha15---2023-02-08"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.14...1.0.0-alpha.15"},"1.0.0-alpha.15")," - 2023-02-08"),(0,n.kt)("h4",{id:"-new-features-7"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(Card): add teaser card grid story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53cac0b0d1c40ad6ad8c9dc91c5d24bfb160f98e"},(0,n.kt)("inlineCode",{parentName:"a"},"53cac0b"))),(0,n.kt)("li",{parentName:"ul"},"feat(utilities): Complete list of text-align utilities - refs #160747 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/224fab602184b8974f588c91a7412e3d03e4e2f7"},(0,n.kt)("inlineCode",{parentName:"a"},"224fab6"))),(0,n.kt)("li",{parentName:"ul"},"feat(small): CSS for small HTML tag - refs #160747 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ad3c0adec4efa7cead69153d399c6452131c94cc"},(0,n.kt)("inlineCode",{parentName:"a"},"ad3c0ad"))),(0,n.kt)("li",{parentName:"ul"},"feat(fw-light): Add font weight light utility - refs #160747 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c44cf57db5845fbb9c07233aeedab79e1438f80f"},(0,n.kt)("inlineCode",{parentName:"a"},"c44cf57")))),(0,n.kt)("h4",{id:"-bug-fixes-9"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(card): teaser card dimensions on tablet size #290 from eea/teaser-card-grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/013fdf5cad347aee14bdc51553dbd95d972a7c66"},(0,n.kt)("inlineCode",{parentName:"a"},"013fdf5")))),(0,n.kt)("h4",{id:"-enhancements-11"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(card): added extra content for teaser card story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/30690ae6c499682853cb19db10b0cdc13c6f9508"},(0,n.kt)("inlineCode",{parentName:"a"},"30690ae"))),(0,n.kt)("li",{parentName:"ul"},"refactor(style-menu): add text-color to paragraphs styles #291 from eea/stylemenu-theme-colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2d783075b8089184e50b1763226af0d60ed11786"},(0,n.kt)("inlineCode",{parentName:"a"},"2d78307"))),(0,n.kt)("li",{parentName:"ul"},"change(header): Small fix in search popup #292 from eea/search-popup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/86c130539455b9a00b4b088b1871a98b9756df79"},(0,n.kt)("inlineCode",{parentName:"a"},"86c1305"))),(0,n.kt)("li",{parentName:"ul"},"refactor(style-menu): add text-color to paragraphs styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3446bc2704603bbfead7ff6c72d4e3a1ce81c7d4"},(0,n.kt)("inlineCode",{parentName:"a"},"3446bc2"))),(0,n.kt)("li",{parentName:"ul"},"change(color): darkCyan is now replaced everywhere by the new green ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef3791de6e2ea23487791c717eefc575e21fd283"},(0,n.kt)("inlineCode",{parentName:"a"},"ef3791d"))),(0,n.kt)("li",{parentName:"ul"},"change(header): Small fix in search popup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3d622ea99df5a1f1088f70998e38fd5bf43997cf"},(0,n.kt)("inlineCode",{parentName:"a"},"3d622ea")))),(0,n.kt)("h4",{id:"\ufe0f-others-10"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Release alpha 15 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3b72b29aaf9b3e1bfb7015808aafbd73a7167895"},(0,n.kt)("inlineCode",{parentName:"a"},"3b72b29")))),(0,n.kt)("h3",{id:"100-alpha14---2023-01-30"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.13.1...1.0.0-alpha.14"},"1.0.0-alpha.14")," - 2023-01-30"),(0,n.kt)("h4",{id:"-enhancements-12"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(mobile menu): integrate a-z topic with menu rendering logic #287 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/05d4c04603e6572cd6f9b255faa03c4636d8efdb"},(0,n.kt)("inlineCode",{parentName:"a"},"05d4c04"))),(0,n.kt)("li",{parentName:"ul"},"change(mobile menu): integrate a-z topic with menu rendering logic ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/246d3d839b773e2f6e1fff7fed5f9aa7a4968daa"},(0,n.kt)("inlineCode",{parentName:"a"},"246d3d8")))),(0,n.kt)("h4",{id:"\ufe0f-others-11"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"bump release to alpha 14 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/92f01975a809553ed122824c8407c74da9132c23"},(0,n.kt)("inlineCode",{parentName:"a"},"92f0197"))),(0,n.kt)("li",{parentName:"ul"},"link fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e1c12a132a1a99d773af359ebce071fb37c7e661"},(0,n.kt)("inlineCode",{parentName:"a"},"e1c12a1")))),(0,n.kt)("h3",{id:"100-alpha131---2023-01-30"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.13...1.0.0-alpha.13.1"},"1.0.0-alpha.13.1")," - 2023-01-30"),(0,n.kt)("h4",{id:"-enhancements-13"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(mobile menu): hardcode a-z topics to '/en/topics-in-depth' #286 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6436224e1922fb5d4b4053c874cebe5c57b2a6b9"},(0,n.kt)("inlineCode",{parentName:"a"},"6436224"))),(0,n.kt)("li",{parentName:"ul"},"change(mobile menu): hardcode a-z topics to '/en/topics-in-depth' ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5235b52047a80a8b626aa5ef3ef304c4d9a82003"},(0,n.kt)("inlineCode",{parentName:"a"},"5235b52")))),(0,n.kt)("h4",{id:"\ufe0f-others-12"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change release to 13.1 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70aa5648e7d9e14796445323b6ebaf7733cc7fd8"},(0,n.kt)("inlineCode",{parentName:"a"},"70aa564")))),(0,n.kt)("h3",{id:"100-alpha13---2023-01-27"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.12...1.0.0-alpha.13"},"1.0.0-alpha.13")," - 2023-01-27"),(0,n.kt)("h4",{id:"-new-features-8"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(utilities): added has--bg--top center and bottom utility classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/051e6d7c33aca7947802ddaa9fe68ac41ed7fe11"},(0,n.kt)("inlineCode",{parentName:"a"},"051e6d7")))),(0,n.kt)("h4",{id:"-bug-fixes-10"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(header): update green color used in page header #284 from eea/fix-banner-background ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/29d54db06487d18a367202725e525ac26e5b7c58"},(0,n.kt)("inlineCode",{parentName:"a"},"29d54db")))),(0,n.kt)("h4",{id:"-enhancements-14"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(site): added fixes from customVolto.css to design package ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51ba9b5df0186bdf075d803dea6032bac52e540f"},(0,n.kt)("inlineCode",{parentName:"a"},"51ba9b5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner): update banner background green color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fd4a552d9ff7a2973ebd6d18b6fbfd9bba5d98c6"},(0,n.kt)("inlineCode",{parentName:"a"},"fd4a552"))),(0,n.kt)("li",{parentName:"ul"},"change(mobile menu): changed link for a-z topics to point to in depth ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/721bf237d23d2a8e47fc2132912646c4ce182c9d"},(0,n.kt)("inlineCode",{parentName:"a"},"721bf23")))),(0,n.kt)("h4",{id:"\ufe0f-others-13"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"1.0.0-alpha.13 release #285 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c96694005e2d4160876f6a900db13940d42266d5"},(0,n.kt)("inlineCode",{parentName:"a"},"c966940"))),(0,n.kt)("li",{parentName:"ul"},"bump next version to alpha 13 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/897e9069062282f1b5cd8d86a02b8e54c40a4690"},(0,n.kt)("inlineCode",{parentName:"a"},"897e906"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5780dc7abeb24da5e77b043a34593ff7a44f350d"},(0,n.kt)("inlineCode",{parentName:"a"},"5780dc7")))),(0,n.kt)("h3",{id:"100-alpha12---2023-01-24"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.11...1.0.0-alpha.12"},"1.0.0-alpha.12")," - 2023-01-24"),(0,n.kt)("h4",{id:"-new-features-9"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(card, colors): visited color change and title on image option for cards #283 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e638ee6b77885fd5989179aa9e6532e46e475247"},(0,n.kt)("inlineCode",{parentName:"a"},"e638ee6")))),(0,n.kt)("h4",{id:"-bug-fixes-11"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(mobile menu): sub links when an accordion section is active ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bb3be81416340ad0e3e992cd4e75642fc50f8ad3"},(0,n.kt)("inlineCode",{parentName:"a"},"bb3be81")))),(0,n.kt)("h4",{id:"-enhancements-15"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(Card): create card template for stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2fa77f3f93935dd01cd5e3d77437fe8dc03721da"},(0,n.kt)("inlineCode",{parentName:"a"},"2fa77f3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Card): add image with title css ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e6e63e2362a27b0bbf4b8dd968f11a0dc87da2a"},(0,n.kt)("inlineCode",{parentName:"a"},"6e6e63e"))),(0,n.kt)("li",{parentName:"ul"},"change(card): implement title on image within image section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff6cc600978355e04dde704d014d2cbe27df1298"},(0,n.kt)("inlineCode",{parentName:"a"},"ff6cc60"))),(0,n.kt)("li",{parentName:"ul"},"change(card): added image card section, tweaked mobile heading size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0f879e15d22ae066f020d8188ef3e355c27d016c"},(0,n.kt)("inlineCode",{parentName:"a"},"0f879e1"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): moved image gradient overlay to a mixin.less file ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8b4928a87bfe5fae6f64c93d7c8f1f7a3045816c"},(0,n.kt)("inlineCode",{parentName:"a"},"8b4928a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): Update titles value and size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c35ad5c76caa00556f8a501d2e7d516464790dc4"},(0,n.kt)("inlineCode",{parentName:"a"},"c35ad5c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): applied image naming convention ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee7bc290084e198f9f94e40fbf44c6d9cb19d1ba"},(0,n.kt)("inlineCode",{parentName:"a"},"ee7bc29"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): added image for all storybook card examples ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3f194130bb6fb7b9ab04a7e1305f26fa135c23d2"},(0,n.kt)("inlineCode",{parentName:"a"},"3f19413"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): restored label value of metadata field when type isn't date ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/571a4f27fe73d0465b6482f70dd70b2dc47dffe8"},(0,n.kt)("inlineCode",{parentName:"a"},"571a4f2"))),(0,n.kt)("li",{parentName:"ul"},"change(card): title padding value for a more balance look ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/74b65563d973eb9c6afc534935e253f2705fe9ee"},(0,n.kt)("inlineCode",{parentName:"a"},"74b6556"))),(0,n.kt)("li",{parentName:"ul"},"change(card): removed uppercase transform from title on image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2948ae16f748911929910ac53d1e0acf96952317"},(0,n.kt)("inlineCode",{parentName:"a"},"2948ae1"))),(0,n.kt)("li",{parentName:"ul"},"change(colors, Docusaurus): Visited link colour change and thematic logo replacement #278 from eea/refactor-visited-link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f82d9781cc3b34443f181565c2ec1892d534f8e2"},(0,n.kt)("inlineCode",{parentName:"a"},"f82d978"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): visited link variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b209b2f7703641926c6d4b1f7162eef39b2a1ad8"},(0,n.kt)("inlineCode",{parentName:"a"},"b209b2f")))),(0,n.kt)("h4",{id:"-documentation-changes-4"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(colors): visited link update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ece77fec130de1d9d8014d40e7da975bf57061ee"},(0,n.kt)("inlineCode",{parentName:"a"},"ece77fe")))),(0,n.kt)("h4",{id:"\ufe0f-others-14"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix typos in footer gradient variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/40066405d97af838e986370101371a8162029e02"},(0,n.kt)("inlineCode",{parentName:"a"},"4006640"))),(0,n.kt)("li",{parentName:"ul"},"change version to alpha 12 instead of 1 final ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32250253f5d7fe9f01126136ad86b8a4f2f5c700"},(0,n.kt)("inlineCode",{parentName:"a"},"3225025"))),(0,n.kt)("li",{parentName:"ul"},"feature(card): new card variation with title on top of image #267 from eea/title-on-image-card ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2c0ca95700bb162bc1273c83f2fc4f591de8dcf0"},(0,n.kt)("inlineCode",{parentName:"a"},"2c0ca95"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/477d997513ef5152ab98e080ad07f927b5869705"},(0,n.kt)("inlineCode",{parentName:"a"},"477d997")))),(0,n.kt)("h3",{id:"100-alpha11---2023-01-17"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.10...1.0.0-alpha.11"},"1.0.0-alpha.11")," - 2023-01-17"),(0,n.kt)("h4",{id:"-new-features-10"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(docusaurus): Header and footer elements section #277 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0df271c4c79bd8a24750cfe44d69f32cb04a1b63"},(0,n.kt)("inlineCode",{parentName:"a"},"0df271c")))),(0,n.kt)("h4",{id:"-bug-fixes-12"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(banner): storybook date input and simplified gradient opacity ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7674d767bb770342828d6bea6953ce45b823943f"},(0,n.kt)("inlineCode",{parentName:"a"},"7674d76"))),(0,n.kt)("li",{parentName:"ul"},"fix(banner): re-added title class on banner title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d157994934c3da9af4e3dd37844f910bddf8377"},(0,n.kt)("inlineCode",{parentName:"a"},"6d15799")))),(0,n.kt)("h4",{id:"-enhancements-16"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(banner): sync storybook and Volto component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c9087cc8edc3fb27e0b96b509354861ec306f22a"},(0,n.kt)("inlineCode",{parentName:"a"},"c9087cc"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): removed margin from title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/17e592c4f3fd16a78069af50574e2ac608166a0f"},(0,n.kt)("inlineCode",{parentName:"a"},"17e592c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): sync storybook and Volto component #275 from eea/sync-page-banner-theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4331fb4a6d5744e7d7d6a001bca91265a22587fd"},(0,n.kt)("inlineCode",{parentName:"a"},"4331fb4")))),(0,n.kt)("h4",{id:"-documentation-changes-5"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(footer): updates on header elements ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b41c550475dc5a2eefcad5d75439601d079613e2"},(0,n.kt)("inlineCode",{parentName:"a"},"b41c550"))),(0,n.kt)("li",{parentName:"ul"},"docs(footer): add elements anatomy ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d9f0872f93a6f7572f798b2c001d3af00eb282e3"},(0,n.kt)("inlineCode",{parentName:"a"},"d9f0872")))),(0,n.kt)("h4",{id:"\ufe0f-others-15"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"add(banner): banner title css ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d0032474d2b57eb63a4b50a882ced2ee743a48e6"},(0,n.kt)("inlineCode",{parentName:"a"},"d003247"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-alpha.11 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/07e8f858b0bdeaa6a348c0bfc2b785f26017e1ea"},(0,n.kt)("inlineCode",{parentName:"a"},"07e8f85"))),(0,n.kt)("li",{parentName:"ul"},"renamed image elements as requested in review ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8541fb6739d3c935ed8d44a220114546b2aef682"},(0,n.kt)("inlineCode",{parentName:"a"},"8541fb6"))),(0,n.kt)("li",{parentName:"ul"},"remove(banner-gradiant): image gradiant in favour of text ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1b58520490be5e17ea4ce6fc98329d467dad3960"},(0,n.kt)("inlineCode",{parentName:"a"},"1b58520"))),(0,n.kt)("li",{parentName:"ul"},"update(gradient): use 8deg angle ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6fd597d8d7a83fdf8a27939e4c69dfc3975b6a81"},(0,n.kt)("inlineCode",{parentName:"a"},"6fd597d"))),(0,n.kt)("li",{parentName:"ul"},"update(gradiant): make it 0deg ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1bb2696375eef233b509e27d9d464b8343421430"},(0,n.kt)("inlineCode",{parentName:"a"},"1bb2696"))),(0,n.kt)("li",{parentName:"ul"},"remove(comment) referencing old verison of title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4226d42e34b119e057cf4e9878b6a99172cb976a"},(0,n.kt)("inlineCode",{parentName:"a"},"4226d42")))),(0,n.kt)("h3",{id:"100-alpha10---2023-01-13"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.9...1.0.0-alpha.10"},"1.0.0-alpha.10")," - 2023-01-13"),(0,n.kt)("h4",{id:"-bug-fixes-13"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(subsite): Fix logo size on subsite section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/65fff54503a9ace573dc7198f6bedb372e65d211"},(0,n.kt)("inlineCode",{parentName:"a"},"65fff54"))),(0,n.kt)("li",{parentName:"ul"},"fix(subsite): Fix logo size on subsite section #279 from eea/subsite-fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f6cf94811dbebc2081c0ca812570a72dd977b06"},(0,n.kt)("inlineCode",{parentName:"a"},"8f6cf94"))),(0,n.kt)("li",{parentName:"ul"},"fix(mega-menu): show sub grid only if there are children ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ddfbd82aab2be723ae230d703f72a8cd489f17d8"},(0,n.kt)("inlineCode",{parentName:"a"},"ddfbd82")))),(0,n.kt)("h4",{id:"\ufe0f-others-16"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Add variable definitions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/293fe65e2f24e6290e1286229169a77f9be4750e"},(0,n.kt)("inlineCode",{parentName:"a"},"293fe65"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-alpha.10 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7014d080ce114bd0bc039abeecbd7229333b0971"},(0,n.kt)("inlineCode",{parentName:"a"},"7014d08"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using advisory-board-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef58a6f5ad8deea26b1395a86778fe1159b7617b"},(0,n.kt)("inlineCode",{parentName:"a"},"ef58a6f"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/31d461662b9184a7bbe190e86f3c47fab39229fe"},(0,n.kt)("inlineCode",{parentName:"a"},"31d4616")))),(0,n.kt)("h3",{id:"100-alpha9---2022-12-28"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.8...1.0.0-alpha.9"},"1.0.0-alpha.9")," - 2022-12-28"),(0,n.kt)("h4",{id:"-enhancements-17"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(contextnav): Default title is text, custom title is link #273 from eea/context-nav-link-title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef7bdb7c40cd12c3d7e059074aa5797b8cb3378c"},(0,n.kt)("inlineCode",{parentName:"a"},"ef7bdb7")))),(0,n.kt)("h4",{id:"\ufe0f-others-17"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Show document and folder content-type in Navigation listing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8471db3b3d555e8602f1076d0f96a2ba38a12247"},(0,n.kt)("inlineCode",{parentName:"a"},"8471db3"))),(0,n.kt)("li",{parentName:"ul"},"Default title is text, custom title is link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1ae95b05b67423121566448c6b0cededca4b2b1d"},(0,n.kt)("inlineCode",{parentName:"a"},"1ae95b0"))),(0,n.kt)("li",{parentName:"ul"},"Context nav title link to # ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a27a6b78bcda0eb6037f73f1d36b06e00e3ffc52"},(0,n.kt)("inlineCode",{parentName:"a"},"a27a6b7")))),(0,n.kt)("h3",{id:"100-alpha8---2022-12-23"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.7...1.0.0-alpha.8"},"1.0.0-alpha.8")," - 2022-12-23"),(0,n.kt)("h4",{id:"-new-features-11"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(copyright): Align copyright options with Volto integration - refs #158210 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6bac7f6a9ad969af4be1c8c08a18a1144d5bad63"},(0,n.kt)("inlineCode",{parentName:"a"},"6bac7f6")))),(0,n.kt)("h4",{id:"-enhancements-18"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(logo): import theme site logos to the story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2f29136ca457f2419ca25a5292a036b2cd0fc402"},(0,n.kt)("inlineCode",{parentName:"a"},"2f29136"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logo): update logo and mega search gradient ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e11f44d59334fc02e3833a133b20e7b2240a2022"},(0,n.kt)("inlineCode",{parentName:"a"},"e11f44d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logos): convert logo names to lowercase ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/07b822864490b4cc63bef94f3306466ba5933e16"},(0,n.kt)("inlineCode",{parentName:"a"},"07b8228"))),(0,n.kt)("li",{parentName:"ul"},"change(item): use default logic of setting align class on content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6b5b47c10ce5a6d3710bedd492aa3d362d62d225"},(0,n.kt)("inlineCode",{parentName:"a"},"6b5b47c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logo): update logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/170efe5bfc7fd4988f4a4d4aac18ace32c360cd6"},(0,n.kt)("inlineCode",{parentName:"a"},"170efe5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logos): convert storybook logo names to lowercase ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4b24ec8796f8fffd87158a55f4ac19624ebe04c"},(0,n.kt)("inlineCode",{parentName:"a"},"c4b24ec"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logo): add eea roboto font logo variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/de1224a97568c0b48b509c65170a6080d8a058d4"},(0,n.kt)("inlineCode",{parentName:"a"},"de1224a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logo): add container and segment to logo story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/61eff16fcd080194fe1187656d67ef73a7dd4d6c"},(0,n.kt)("inlineCode",{parentName:"a"},"61eff16"))),(0,n.kt)("li",{parentName:"ul"},"change(item): removed requirement for aligned classes to be on content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/30c0d5d2de7ac05172cfb726b60a8bd763de7b31"},(0,n.kt)("inlineCode",{parentName:"a"},"30c0d5d"))),(0,n.kt)("li",{parentName:"ul"},"change(logos): cleanup eea logo reference to only eea-logo and eea-logo-white.svg ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2796e054a21a9025036c8b2882afe23a6984cd37"},(0,n.kt)("inlineCode",{parentName:"a"},"2796e05")))),(0,n.kt)("h4",{id:"-internal-changes-7"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(npmignore): Reduce npmjs package size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/164c8a5ad0f7241eb8e30c53eccfdff9cec1fb93"},(0,n.kt)("inlineCode",{parentName:"a"},"164c8a5"))),(0,n.kt)("li",{parentName:"ul"},"chore(npmignore): Reduce npmjs package size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ade9d5ba3411efc47cdd3b461fd60b2b7389f9be"},(0,n.kt)("inlineCode",{parentName:"a"},"ade9d5b"))),(0,n.kt)("li",{parentName:"ul"},"chore(docs): renamed logo mdx to md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/52e9d46bb2decabdc935eeee84dacc3e063e3616"},(0,n.kt)("inlineCode",{parentName:"a"},"52e9d46")))),(0,n.kt)("h4",{id:"-documentation-changes-6"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(logos): svgs without classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/28a58336ac57deb3eec7287b6fbf5cd58ada8a7e"},(0,n.kt)("inlineCode",{parentName:"a"},"28a5833"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): add dark mode logos ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ccc1609643cff5f851942ab95198d44252ddb22e"},(0,n.kt)("inlineCode",{parentName:"a"},"ccc1609"))),(0,n.kt)("li",{parentName:"ul"},"docs(logo): update eea logos and add logo wrapper ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91cdd6636dfb102e4712177ad5fa7e952eb6ea45"},(0,n.kt)("inlineCode",{parentName:"a"},"91cdd66"))),(0,n.kt)("li",{parentName:"ul"},"docs(logo): update logos on docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/760e1012892ab28b25e8d9b0de50cfa0ba07addf"},(0,n.kt)("inlineCode",{parentName:"a"},"760e101"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): updated svgs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dc224e1dbcf46a29b0639afde694d44221affe27"},(0,n.kt)("inlineCode",{parentName:"a"},"dc224e1"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): add thematic logos ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5a21a3076e506e6bd7f82fa97697f81825e87255"},(0,n.kt)("inlineCode",{parentName:"a"},"5a21a30"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): add zipped svgs for download ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5855bf83b471a9849ee71370d7eee4f6a1d12a44"},(0,n.kt)("inlineCode",{parentName:"a"},"5855bf8"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): wisef logo update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f90b59d03c1c4eaa760dd981e082f237c09e96f"},(0,n.kt)("inlineCode",{parentName:"a"},"8f90b59"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): move to static, add download ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8c1fd5f9a64bd8fb976687fe5ed96bc515b95393"},(0,n.kt)("inlineCode",{parentName:"a"},"8c1fd5f"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): improve eea logo visibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/82188abb99aa080d7bea15975497e03c653d311c"},(0,n.kt)("inlineCode",{parentName:"a"},"82188ab"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): change eea logo to svg ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f57b846ca9d635f5af4d1adeee280a5adcaf7b5f"},(0,n.kt)("inlineCode",{parentName:"a"},"f57b846")))),(0,n.kt)("h4",{id:"\ufe0f-others-18"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"logo update or docusaurus thematic logo listing #274 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dde90beb68ac129e476ece22e7ced4640786f094"},(0,n.kt)("inlineCode",{parentName:"a"},"dde90be"))),(0,n.kt)("li",{parentName:"ul"},"(feat): Add ability to disable the language select from website top menu - refs #158616 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/411c8e4afaf0b2b9edfdeeecdca22aa4cc41f329"},(0,n.kt)("inlineCode",{parentName:"a"},"411c8e4"))),(0,n.kt)("li",{parentName:"ul"},"Proof reading page header section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/230239e1b22734fb8606656985bc5e513731e244"},(0,n.kt)("inlineCode",{parentName:"a"},"230239e"))),(0,n.kt)("li",{parentName:"ul"},"bump package version ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4628bed134abc76e38a243d4e98143e19cef989"},(0,n.kt)("inlineCode",{parentName:"a"},"b4628be"))),(0,n.kt)("li",{parentName:"ul"},"feature(docusaurus, storybook): logos selection for sites plus inverted options #253 from eea/doc-logo-page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dbfc90d035dc40e9d4054347f00fde4de486d63d"},(0,n.kt)("inlineCode",{parentName:"a"},"dbfc90d"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using advisory-board-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4769e987d525f5dcafac8e6cf8a89fd8111667d"},(0,n.kt)("inlineCode",{parentName:"a"},"c4769e9"))),(0,n.kt)("li",{parentName:"ul"},"test(Jenkins): Run tests and cypress with latest canary @plone/volto ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/92feea09796c9ef0530f65fa1d34139905133215"},(0,n.kt)("inlineCode",{parentName:"a"},"92feea0")))),(0,n.kt)("h3",{id:"100-alpha7---2022-12-16"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.6...1.0.0-alpha.7"},"1.0.0-alpha.7")," - 2022-12-16"),(0,n.kt)("h4",{id:"-new-features-12"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(item): normalized size for image or icon items #258 from eea/refactor-items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/945170f1503be68aa3fc1bd950a97eeebfd81037"},(0,n.kt)("inlineCode",{parentName:"a"},"945170f")))),(0,n.kt)("h4",{id:"-bug-fixes-14"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(card): rounded after removal of has--rounded--true style class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4727afdecf3d25e3e5bc98d472b976d60154183"},(0,n.kt)("inlineCode",{parentName:"a"},"d4727af"))),(0,n.kt)("li",{parentName:"ul"},"fix(item): removed margin set for description which pushed the text from icon ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d9d40310fcfb1bd214bd901b79dcbac41e9a8518"},(0,n.kt)("inlineCode",{parentName:"a"},"d9d4031"))),(0,n.kt)("li",{parentName:"ul"},"fix(project): Proper paths if volto-eea-design-system package is not installed, but in development #270 from eea/correct_paths ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0f8ee8d770f1b26d4315be8f615d58a61acbafc8"},(0,n.kt)("inlineCode",{parentName:"a"},"0f8ee8d")))),(0,n.kt)("h4",{id:"-enhancements-19"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(item): update icon variations and paddings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6a407b3e7f743eb7b73247bcc5d489685d567bc6"},(0,n.kt)("inlineCode",{parentName:"a"},"6a407b3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): update spacing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2fd91c4aa1a76dd2f7099d3f24f94067e95e06a1"},(0,n.kt)("inlineCode",{parentName:"a"},"2fd91c4"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): initial values for new sizes & add description class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3546296f0cacb96411c8c67b98e9763e2b843b05"},(0,n.kt)("inlineCode",{parentName:"a"},"3546296"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): add icon and more size options ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1120bb62d9ab908c5c97a4871a66e3c08c5c7ece"},(0,n.kt)("inlineCode",{parentName:"a"},"1120bb6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): update image and icon sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8025735121aaa0024a5783afbde0f6be3715618"},(0,n.kt)("inlineCode",{parentName:"a"},"b802573"))),(0,n.kt)("li",{parentName:"ul"},"change(item): set same height as width on item images ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/69cbd23ca53dd68ae9f7c00a69ed2d8820746305"},(0,n.kt)("inlineCode",{parentName:"a"},"69cbd23"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): update item part 2 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9812ae2e41ac86cfd4c56e13af8af570b752966f"},(0,n.kt)("inlineCode",{parentName:"a"},"9812ae2"))),(0,n.kt)("li",{parentName:"ul"},"change(item): rename large to big class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24ff1275b9a0556b85ab86757bc0c84f50357e7d"},(0,n.kt)("inlineCode",{parentName:"a"},"24ff127"))),(0,n.kt)("li",{parentName:"ul"},"change(item): added tiny size that outputs 24px icon sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ea96363a957f9033cb5bfe2d7fd311e92377493"},(0,n.kt)("inlineCode",{parentName:"a"},"2ea9636"))),(0,n.kt)("li",{parentName:"ul"},"change(image): added preview image size default to 400px ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a0aa867e932d1b3c0bf449553726d6feb645853e"},(0,n.kt)("inlineCode",{parentName:"a"},"a0aa867"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): update operator for condition controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/149ccb2f1e498c27e5550214cdee25eb808ab27e"},(0,n.kt)("inlineCode",{parentName:"a"},"149ccb2")))),(0,n.kt)("h4",{id:"\ufe0f-others-19"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Proper paths if the package is not installed, but in development ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7a2655f7cf9d3c687f172eefcf2b4cff4b12f832"},(0,n.kt)("inlineCode",{parentName:"a"},"7a2655f"))),(0,n.kt)("li",{parentName:"ul"},"Update .project.eslintrc.js ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a2fd3f23473325976c2b146e066eeb538d140dce"},(0,n.kt)("inlineCode",{parentName:"a"},"a2fd3f2"))),(0,n.kt)("li",{parentName:"ul"},"added back descriptionDistance variable until package release ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3af811a8d86a132e16de118697ba5a4302a8a4da"},(0,n.kt)("inlineCode",{parentName:"a"},"3af811a"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-alpha.7 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e66bcc296b389bc55073e7f99681534977dce3a"},(0,n.kt)("inlineCode",{parentName:"a"},"7e66bcc"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using cca-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce47e9b163bcb4eda988e3a87718b54ffbd3f99f"},(0,n.kt)("inlineCode",{parentName:"a"},"ce47e9b"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb531c933c907bdbb88c9de0f1df2eb7ce899a4c"},(0,n.kt)("inlineCode",{parentName:"a"},"cb531c9")))),(0,n.kt)("h3",{id:"100-alpha6---2022-12-07"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.5...1.0.0-alpha.6"},"1.0.0-alpha.6")," - 2022-12-07"),(0,n.kt)("h4",{id:"-new-features-13"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(copyright): create copyright component and import it in banner ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8fcde9df2915585e2336024436cef76642820d75"},(0,n.kt)("inlineCode",{parentName:"a"},"8fcde9d"))),(0,n.kt)("li",{parentName:"ul"},"feat(Header): add hideSearch prop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/13ddfe59a6bd7fe2050b70ac4524a6f6c5c169ea"},(0,n.kt)("inlineCode",{parentName:"a"},"13ddfe5"))),(0,n.kt)("li",{parentName:"ul"},"feat(Docusaurus): Image copyright information #257 from eea/image-copyright-info ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/21195153240da052acb7171f7904449ed7854cb3"},(0,n.kt)("inlineCode",{parentName:"a"},"2119515")))),(0,n.kt)("h4",{id:"-bug-fixes-15"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(tags): content gap when using tags-content wrapper ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4eb9b89d4ea09f936b7fcdc22a84105fd8639af"},(0,n.kt)("inlineCode",{parentName:"a"},"c4eb9b8")))),(0,n.kt)("h4",{id:"-enhancements-20"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(hero): add copyright component to hero ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0fa88fad3e7b48789dc6d0462b9f78dd359b8949"},(0,n.kt)("inlineCode",{parentName:"a"},"0fa88fa"))),(0,n.kt)("li",{parentName:"ul"},"change(copyright): implementation to add classes on content sections ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e10bde674f2b1f722ec6c70734e4a72c018f4afe"},(0,n.kt)("inlineCode",{parentName:"a"},"e10bde6"))),(0,n.kt)("li",{parentName:"ul"},"change(copyright): removed color variant ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/747b8a27155569247d4975837587e3320327fce9"},(0,n.kt)("inlineCode",{parentName:"a"},"747b8a2"))),(0,n.kt)("li",{parentName:"ul"},"change(copyright): removed copyrightVariant from Banner and Hero stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac62e079d4eafb818f9cae25880a04d9e069d107"},(0,n.kt)("inlineCode",{parentName:"a"},"ac62e07"))),(0,n.kt)("li",{parentName:"ul"},"change(tagList): modified implementation to align to volto-tags-block ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7a57a3d4bf7ede4b5ab5f3ef045d664aaaf67f2c"},(0,n.kt)("inlineCode",{parentName:"a"},"7a57a3d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(copyright): remove data section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/52cb09dc363bb0a2e363ec86dcefb4c57e07a14d"},(0,n.kt)("inlineCode",{parentName:"a"},"52cb09d"))),(0,n.kt)("li",{parentName:"ul"},"change(copyright): line height to match page header implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a56254e7588cfc6aca999f550084d79dca6e9a6c"},(0,n.kt)("inlineCode",{parentName:"a"},"a56254e"))),(0,n.kt)("li",{parentName:"ul"},"change(copyright): now uses text color css variable with fallback to white ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee7268ba359f079dfce45fd0fe91f75ae5c37e94"},(0,n.kt)("inlineCode",{parentName:"a"},"ee7268b")))),(0,n.kt)("h4",{id:"-documentation-changes-7"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(copyright): copyright documentation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a90ed766e60b5eb5b027beb36d2b1967d2c41fa3"},(0,n.kt)("inlineCode",{parentName:"a"},"a90ed76")))),(0,n.kt)("h4",{id:"\ufe0f-others-20"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Update usage_markdown.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f76d4a242f795451d64ef2d192d0006a0ed5eac1"},(0,n.kt)("inlineCode",{parentName:"a"},"f76d4a2"))),(0,n.kt)("li",{parentName:"ul"},"grammar fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb2a5a5fd9dfc01eccc179721b06988742f5b2e2"},(0,n.kt)("inlineCode",{parentName:"a"},"cb2a5a5"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-alpha.6 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6ca32f03c1860781d3c1c4ff9558713ad8acac95"},(0,n.kt)("inlineCode",{parentName:"a"},"6ca32f0"))),(0,n.kt)("li",{parentName:"ul"},"feature(copyright): image information #250 from eea/feature-copyright ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a8618c7f0230a19b6c973aa2c9646463de9eeffb"},(0,n.kt)("inlineCode",{parentName:"a"},"a8618c7"))),(0,n.kt)("li",{parentName:"ul"},"lint fix by introducing local variable tagsGap ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7b6c0ae2ebfed06221700faf9a0d0c2bdeb60d99"},(0,n.kt)("inlineCode",{parentName:"a"},"7b6c0ae"))),(0,n.kt)("li",{parentName:"ul"},"Update 3-images.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1b0ef033f9c8a36aaa739f268263f24a6d0fb473"},(0,n.kt)("inlineCode",{parentName:"a"},"1b0ef03")))),(0,n.kt)("h3",{id:"100-alpha5---2022-11-29"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.4...1.0.0-alpha.5"},"1.0.0-alpha.5")," - 2022-11-29"),(0,n.kt)("h4",{id:"-new-features-14"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(Iconography): import and showcase remix icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/777112f7e77ce8c74c3fd4384bff6ec9694aba04"},(0,n.kt)("inlineCode",{parentName:"a"},"777112f")))),(0,n.kt)("h4",{id:"-bug-fixes-16"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(docusaurus): right bar overflow fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/197c763624f70556c62379bc0751763725d0fed3"},(0,n.kt)("inlineCode",{parentName:"a"},"197c763"))),(0,n.kt)("li",{parentName:"ul"},"fix(lists): bullet position by using padding instead of margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0ecae2e7fe61b98d8795f876a525fbbc873bf799"},(0,n.kt)("inlineCode",{parentName:"a"},"0ecae2e"))),(0,n.kt)("li",{parentName:"ul"},"fix(label): color for yellow variant as white isn't accessible on yellow color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91d8880a829d2728c49a1953f6d2d8c2c812990c"},(0,n.kt)("inlineCode",{parentName:"a"},"91d8880"))),(0,n.kt)("li",{parentName:"ul"},"fix(contentBox): avoid text decoration for header-link added on cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ccb592db6f465cec59124b94fb6918b513bb761"},(0,n.kt)("inlineCode",{parentName:"a"},"3ccb592"))),(0,n.kt)("li",{parentName:"ul"},"fix(label): margin value for ribbon image left and right margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f8e1129734709d6034539a6522105af9d43fef20"},(0,n.kt)("inlineCode",{parentName:"a"},"f8e1129")))),(0,n.kt)("h4",{id:"-enhancements-21"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): eea color palette in separate file ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6c855df9c2238f8d21860ade4578aa969b68448e"},(0,n.kt)("inlineCode",{parentName:"a"},"6c855df"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): classes for color boxes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/80219d52bc63842d8e6382dbbe7d43cdc8a29b9c"},(0,n.kt)("inlineCode",{parentName:"a"},"80219d5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): move supplementary, state and link colors to partials ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2776be32615d7a6bdd8561a523fb9cfb1a85e38b"},(0,n.kt)("inlineCode",{parentName:"a"},"2776be3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): fix side menu / moved more content in palette partial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f5b70775471369ca8f3193784b9bc66caa8fb76f"},(0,n.kt)("inlineCode",{parentName:"a"},"f5b7077"))),(0,n.kt)("li",{parentName:"ul"},"change(tag): set gap on tags element for margin between tag elements ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/726bc6da821a366a5afa03659e614cc73ed02c0b"},(0,n.kt)("inlineCode",{parentName:"a"},"726bc6d")))),(0,n.kt)("h4",{id:"-internal-changes-8"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(colours): fix wrong class name ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51ad0a8232f7f35cae05f5861d7822db852b3f8d"},(0,n.kt)("inlineCode",{parentName:"a"},"51ad0a8")))),(0,n.kt)("h4",{id:"-documentation-changes-8"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): Iconography updates, thematic platforms ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2a0e596bd002290e0759d8c5e568da4d318f7d59"},(0,n.kt)("inlineCode",{parentName:"a"},"2a0e596"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): thematic pages integration ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea7a4220a93d3fd2f437b51462f7f19d99f52595"},(0,n.kt)("inlineCode",{parentName:"a"},"ea7a422"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): color updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cc13b5499a9ae13bb45925a057f8ff4d6a2e4643"},(0,n.kt)("inlineCode",{parentName:"a"},"cc13b54"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): fix swatches accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/306cb74d3e06390a9c15da9b8b29c9d3c8f0f6c5"},(0,n.kt)("inlineCode",{parentName:"a"},"306cb74"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): typography and colors fixes according to comments on PR ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ae20a7258cc88465fa0937895c2999952736f456"},(0,n.kt)("inlineCode",{parentName:"a"},"ae20a72"))),(0,n.kt)("li",{parentName:"ul"},"docs(colours): adjust logos heights ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/854d4fb761be7307e83e5dd2eb0fe5a0117727c5"},(0,n.kt)("inlineCode",{parentName:"a"},"854d4fb"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): merge designer and dev units ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/65c240eddbf20b3fc870d301b96837f49ad9caca"},(0,n.kt)("inlineCode",{parentName:"a"},"65c240e"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): readded extra font sizes, fixed fluid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4a5d892538a9713d14ac718b1bf2c771be09810"},(0,n.kt)("inlineCode",{parentName:"a"},"a4a5d89"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): changed em to percentages ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4176007ff4b421bc988b618488e0ba6b550f9fe"},(0,n.kt)("inlineCode",{parentName:"a"},"d417600"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): minors updates and instructions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/84ac8828e430b4af2b461534b4e2f81189080145"},(0,n.kt)("inlineCode",{parentName:"a"},"84ac882"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): blue-grey-6 adjustment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e7ab2d15d3a617bc5b3713897f3e3521d9e2720a"},(0,n.kt)("inlineCode",{parentName:"a"},"e7ab2d1"))),(0,n.kt)("li",{parentName:"ul"},"docs(colours): added active colour ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/574f7a95ea8a9510d03a104ad72fafafcae5d738"},(0,n.kt)("inlineCode",{parentName:"a"},"574f7a9"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): switch FISE logo to png ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/335471fd95bbd78cd7bd80b960272baa0a32e1c5"},(0,n.kt)("inlineCode",{parentName:"a"},"335471f"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): updated visited ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0248fd164cbf85168945797244977c305c67608d"},(0,n.kt)("inlineCode",{parentName:"a"},"0248fd1"))),(0,n.kt)("li",{parentName:"ul"},"docs(FISE): replaced logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f7d833127f769d79f099618b98789c6929b4ba08"},(0,n.kt)("inlineCode",{parentName:"a"},"f7d8331")))),(0,n.kt)("h4",{id:"\ufe0f-others-21"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"perf(docusaurus): added remixicon and roboto locally ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b67b1a72bc9cdc7c62a25967e81b430f8b62d558"},(0,n.kt)("inlineCode",{parentName:"a"},"b67b1a7"))),(0,n.kt)("li",{parentName:"ul"},"feature(Docusaurus): Updates on color palette information including thematic websites #231 from eea/refactor-docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ec7843dea07f626dc1c71ae1baa8bb5b0caa52f3"},(0,n.kt)("inlineCode",{parentName:"a"},"ec7843d"))),(0,n.kt)("li",{parentName:"ul"},"Upgrade Jenkinsfile storybook to yarn 3 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d20de8d6e21a14660b7b5125a80218a8a6f19e62"},(0,n.kt)("inlineCode",{parentName:"a"},"d20de8d"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/563fbc5fac0d4b0295690d0a3a4e04271753f18a"},(0,n.kt)("inlineCode",{parentName:"a"},"563fbc5")))),(0,n.kt)("h3",{id:"100-alpha4---2022-11-22"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.3...1.0.0-alpha.4"},"1.0.0-alpha.4")," - 2022-11-22"),(0,n.kt)("h4",{id:"-bug-fixes-17"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(cards-storybook): load slick carousel css for arrow and pagination styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1159b1beea0d7f7e026f1f1181fea91b7ac38ffa"},(0,n.kt)("inlineCode",{parentName:"a"},"1159b1b")))),(0,n.kt)("h4",{id:"-enhancements-22"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(cards): refactor cards theming implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4e454238d540ef306f4c1a4f8e9a94c7aa10189"},(0,n.kt)("inlineCode",{parentName:"a"},"d4e4542"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): allow rounded, inverted and theme parameter to be set by has classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4b4ad893fc5d39629b4e8d874327f31ea2e7d885"},(0,n.kt)("inlineCode",{parentName:"a"},"4b4ad89"))),(0,n.kt)("li",{parentName:"ul"},"change(card): expect has classes on the card directly ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6a9e38bcae0656685a99b47800d556813663d2ee"},(0,n.kt)("inlineCode",{parentName:"a"},"6a9e38b"))),(0,n.kt)("li",{parentName:"ul"},"change(utilities): added has text classes to the text alignment utilities ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e6974c634551fe0d19a9c9da269f5c6fbaefab7a"},(0,n.kt)("inlineCode",{parentName:"a"},"e6974c6"))),(0,n.kt)("li",{parentName:"ul"},"change(utilities): modified class name for text align using has naming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/579a0cbe0f704eb9305119fdd162f4f29c8086d5"},(0,n.kt)("inlineCode",{parentName:"a"},"579a0cb"))),(0,n.kt)("li",{parentName:"ul"},"change(theme): ensure that only direct children of container have a default top and bottom margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7f8b8dcc72827004d366e1c531311cf8734053fc"},(0,n.kt)("inlineCode",{parentName:"a"},"7f8b8dc"))),(0,n.kt)("li",{parentName:"ul"},"change(build): upgrade action to trigger workflow and wait to latest version ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c63ad3fdae7972bb2c722dea3d046861fa0ac086"},(0,n.kt)("inlineCode",{parentName:"a"},"c63ad3f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): theming implementation to allow has theming classes #265 from eea/card-refactoring ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24edc99d85c0c619fc763a8774a96f7208f529a5"},(0,n.kt)("inlineCode",{parentName:"a"},"24edc99"))),(0,n.kt)("li",{parentName:"ul"},"change(theme): add slick-carousel dependency ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2eec7d7233adf86b9c4f61670eb87d9754ff94c"},(0,n.kt)("inlineCode",{parentName:"a"},"f2eec7d")))),(0,n.kt)("h4",{id:"\ufe0f-others-22"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Update eea.github.io on all commits in develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3d0b8d745138bd2e0219560c8c895ce2c56dbf04"},(0,n.kt)("inlineCode",{parentName:"a"},"3d0b8d7"))),(0,n.kt)("li",{parentName:"ul"},"Exclude mockups from npm package ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/634af8e3ddabec36a18597d8d7638888269875fc"},(0,n.kt)("inlineCode",{parentName:"a"},"634af8e"))),(0,n.kt)("li",{parentName:"ul"},"fix rounded selector ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1fa15442f03d3f3d9ef59afa14075b061483cf3a"},(0,n.kt)("inlineCode",{parentName:"a"},"1fa1544"))),(0,n.kt)("li",{parentName:"ul"},"Trigger re-build ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3566dd2b4d2cd12496e05b792c85a78de550dd50"},(0,n.kt)("inlineCode",{parentName:"a"},"3566dd2"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea47f6f10097f23f635d98f0c5483bebf8378fc4"},(0,n.kt)("inlineCode",{parentName:"a"},"ea47f6f")))),(0,n.kt)("h3",{id:"100-alpha3---2022-11-16"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.2...1.0.0-alpha.3"},"1.0.0-alpha.3")," - 2022-11-16"),(0,n.kt)("h4",{id:"-new-features-15"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(Header): Add subsite section styling #263 from eea/subsite ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/00398b8a6c5d83241c30d0ba85d95c115edf2480"},(0,n.kt)("inlineCode",{parentName:"a"},"00398b8")))),(0,n.kt)("h4",{id:"-bug-fixes-18"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(search): position now changed by default to absolute from relative ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51b08fc217e25c1391a2bac0b42a8c3f7ae091c7"},(0,n.kt)("inlineCode",{parentName:"a"},"51b08fc"))),(0,n.kt)("li",{parentName:"ul"},"fix(megaMenu): remove paddings for buttons added by active class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ec33ebfe23a6064c88383ab465bd45edee2dba9b"},(0,n.kt)("inlineCode",{parentName:"a"},"ec33ebf")))),(0,n.kt)("h4",{id:"-enhancements-23"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(components): load overrides files for our defined semantic files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/adde7a9519f38fa779d8d038f3b6817281f0b4a2"},(0,n.kt)("inlineCode",{parentName:"a"},"adde7a9"))),(0,n.kt)("li",{parentName:"ul"},"change(container): fullwidth now take into account devices without hover ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5a35a65ce4928972027325bd01265db3f046f0e8"},(0,n.kt)("inlineCode",{parentName:"a"},"5a35a65"))),(0,n.kt)("li",{parentName:"ul"},"change(container): ensure only the top level elements behave like containers ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/98b85d1fb285919a8851454fa3007131b2a0ffc3"},(0,n.kt)("inlineCode",{parentName:"a"},"98b85d1"))),(0,n.kt)("li",{parentName:"ul"},"change(container): modified column-block grid to remove margin and padding when using full width class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/35c1cee7b3b35e7c361562ab7a430240f0117cc3"},(0,n.kt)("inlineCode",{parentName:"a"},"35c1cee"))),(0,n.kt)("li",{parentName:"ul"},"change(mega-menu): hide home link and accordion content from mobile menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1a691729b6d61c0daf46c5de035c1c55b0fda0d9"},(0,n.kt)("inlineCode",{parentName:"a"},"1a69172"))),(0,n.kt)("li",{parentName:"ul"},"change(container): width from min width 1280px to 1365px max width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/66e551e532da2cc5e9716e5179f943f172663be4"},(0,n.kt)("inlineCode",{parentName:"a"},"66e551e"))),(0,n.kt)("li",{parentName:"ul"},"change(container): removed app extras and view setting of layout sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6dc1ee602634df85140f6db75e41293b72eacf1"},(0,n.kt)("inlineCode",{parentName:"a"},"f6dc1ee"))),(0,n.kt)("li",{parentName:"ul"},"change(views): customized DefaultView to pass class into page-document area ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91123aad429f4bb086110b4997e43e9809a97581"},(0,n.kt)("inlineCode",{parentName:"a"},"91123aa"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): desktop - use buttons for menu section titles and readjust content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb9315f2b999193b7b64cec27c49fc8dda306899"},(0,n.kt)("inlineCode",{parentName:"a"},"cb9315f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): add nav_title and nav_description attributes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0d7a5686daab2ecec87d78728437d8f994606448"},(0,n.kt)("inlineCode",{parentName:"a"},"0d7a568"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): style sub-title and nav-description ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b2a48fd3588ffdc75f61f0b8d52284d13edf2d92"},(0,n.kt)("inlineCode",{parentName:"a"},"b2a48fd"))),(0,n.kt)("li",{parentName:"ul"},"refactor(sidemenu): add third level list and items & update active indication ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2d87da9fddca2b867f3d065a007c0b921587a61"},(0,n.kt)("inlineCode",{parentName:"a"},"e2d87da"))),(0,n.kt)("li",{parentName:"ul"},"change(columns): implement narrow, container and wide width classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9696b5457e50ba3186406a584da16f5248c14439"},(0,n.kt)("inlineCode",{parentName:"a"},"9696b54"))),(0,n.kt)("li",{parentName:"ul"},"change(container): story to add classes that modify the max width of the containers ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/37948f89ee797738bd8bbb0023bc5dca018d7331"},(0,n.kt)("inlineCode",{parentName:"a"},"37948f8"))),(0,n.kt)("li",{parentName:"ul"},"change(container): affect only left and right margin of containers ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/183265b7dd8d20359b6c3956ea05b62df6e70f75"},(0,n.kt)("inlineCode",{parentName:"a"},"183265b"))),(0,n.kt)("li",{parentName:"ul"},"change(containers): modified class names after layout checks ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1dc3689509001031f0afd30422f517de5316e47a"},(0,n.kt)("inlineCode",{parentName:"a"},"1dc3689"))),(0,n.kt)("li",{parentName:"ul"},"refactor(sidemenu): add is_in_path and is_current attributes for an active example ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a3fe7fd8da93db0a065d4408ce154c9d8c26b568"},(0,n.kt)("inlineCode",{parentName:"a"},"a3fe7fd"))),(0,n.kt)("li",{parentName:"ul"},"change(container): story to avoid adding containerwidth property to container div ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c13d83cdbc8741bf4075cdfcd884f39f3f71d73c"},(0,n.kt)("inlineCode",{parentName:"a"},"c13d83c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): mobile - use buttons for menu section titles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7b632fd29a8ac815d2e590509baa51f1279e659"},(0,n.kt)("inlineCode",{parentName:"a"},"a7b632f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): update padding variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5f25838ba9ec367a58c98c929921ebf09cd8ad8"},(0,n.kt)("inlineCode",{parentName:"a"},"c5f2583"))),(0,n.kt)("li",{parentName:"ul"},"change(views): moved narrow style bellow the default container width styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/72fa58dce9ea03a1e4f409a9f9aab21b01efbfc8"},(0,n.kt)("inlineCode",{parentName:"a"},"72fa58d"))),(0,n.kt)("li",{parentName:"ul"},"change(listing): removed container from default view page-document area ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/69f3d8f422e3cb95e89937929aaef48b5569bcdf"},(0,n.kt)("inlineCode",{parentName:"a"},"69f3d8f"))),(0,n.kt)("li",{parentName:"ul"},"change(views): rename classes names to width_view and added app extras layout component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/745b7720839754d1e248795cb1263f8c02f5f3c2"},(0,n.kt)("inlineCode",{parentName:"a"},"745b772"))),(0,n.kt)("li",{parentName:"ul"},"change(container): use important flag for left and right margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a49c83abe9a045d28118a680558de5416a0516a3"},(0,n.kt)("inlineCode",{parentName:"a"},"a49c83a"))),(0,n.kt)("li",{parentName:"ul"},"change(container): add variables for edit and add section of containers ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2e2c335dc82c120d15d4c536c400ae742f68fe7"},(0,n.kt)("inlineCode",{parentName:"a"},"f2e2c33"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): update sub-title paddings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/992f919bb5155c8e6fc169e43adf00dcae41f400"},(0,n.kt)("inlineCode",{parentName:"a"},"992f919"))),(0,n.kt)("li",{parentName:"ul"},"change(site): add a 1rem margin top and bottom on all styled classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dabf6c1162fe23cef61a2053eefd7e687f649a56"},(0,n.kt)("inlineCode",{parentName:"a"},"dabf6c1"))),(0,n.kt)("li",{parentName:"ul"},"change(homepage): removed hiding of staging banner from homepage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ba2cd7fc17cdf1bf58381aa58e05acad0ac77ba"},(0,n.kt)("inlineCode",{parentName:"a"},"4ba2cd7"))),(0,n.kt)("li",{parentName:"ul"},"change(container): unset values of page-document on 1200+ browser width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dd5bea37d414e2a8689eaf6cc99c7b3a3d4b0e08"},(0,n.kt)("inlineCode",{parentName:"a"},"dd5bea3"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): set children to be appended to the right of the menu title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b69c23a20ef2ded1f0382650ff8e85d1bead6941"},(0,n.kt)("inlineCode",{parentName:"a"},"b69c23a"))),(0,n.kt)("li",{parentName:"ul"},"change(theme): modified wide width to point to 1320px as it's perfectly divisible by 4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f825737d6dafd595024bb4537eab624a47a9ad0"},(0,n.kt)("inlineCode",{parentName:"a"},"8f82573"))),(0,n.kt)("li",{parentName:"ul"},"change(theme): modified wide width to point to 1368px as it's perfectly divisible by 4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2349fee36ee72783665a0b101d684389f1fdf834"},(0,n.kt)("inlineCode",{parentName:"a"},"2349fee"))),(0,n.kt)("li",{parentName:"ul"},"change(container): renamed content-text-width to container-text-width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6f788c282348292dd4b5deb47ffe83ca4573e5c8"},(0,n.kt)("inlineCode",{parentName:"a"},"6f788c2"))),(0,n.kt)("li",{parentName:"ul"},"change(listing): provide ui container fallback if no class is passed to default view ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af9e94ded1e301f4c811749badbcc1f59e6d0de5"},(0,n.kt)("inlineCode",{parentName:"a"},"af9e94d"))),(0,n.kt)("li",{parentName:"ul"},"change(narrow-view): re-added container class to page-document ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/56b44a6e09d45f96c106dc471bb2e1cde58ef10f"},(0,n.kt)("inlineCode",{parentName:"a"},"56b44a6"))),(0,n.kt)("li",{parentName:"ul"},"change(view): set container width for view-viewview class as well ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/29dc324319d6dc2450dd0e906c1b4c93fd65ed56"},(0,n.kt)("inlineCode",{parentName:"a"},"29dc324")))),(0,n.kt)("h4",{id:"-internal-changes-9"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style: load header/footer overrides ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e5b5e0fc00c61d81f45c12f119bd2f06a91b1b5c"},(0,n.kt)("inlineCode",{parentName:"a"},"e5b5e0f"))),(0,n.kt)("li",{parentName:"ul"},"style(megaMenu): restore item description color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8a19bbb4866cdeb31d87b782587c499e621055b7"},(0,n.kt)("inlineCode",{parentName:"a"},"8a19bbb"))),(0,n.kt)("li",{parentName:"ul"},"style(megaMenu): restore accordion content bottom padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8e0c5a79f06247d353511b412b0122c6f614f5ec"},(0,n.kt)("inlineCode",{parentName:"a"},"8e0c5a7")))),(0,n.kt)("h4",{id:"\ufe0f-others-23"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Add subsite styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e79c0ed7931d6287dbeb3bab1e9155b8707481a3"},(0,n.kt)("inlineCode",{parentName:"a"},"e79c0ed"))),(0,n.kt)("li",{parentName:"ul"},"WIP settings column grid width when using full size class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/affc7ac99527aa92d5a192d90dc8c9ec46a66404"},(0,n.kt)("inlineCode",{parentName:"a"},"affc7ac"))),(0,n.kt)("li",{parentName:"ul"},"code cleanup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2cdc3e590b6d36865f16890c45ce56d32963e1d0"},(0,n.kt)("inlineCode",{parentName:"a"},"2cdc3e5"))),(0,n.kt)("li",{parentName:"ul"},"fix eslint ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/30c52e4eb443555ca44c1b35df064e73d52c0a8b"},(0,n.kt)("inlineCode",{parentName:"a"},"30c52e4"))),(0,n.kt)("li",{parentName:"ul"},"test(estlint): Fix .project.eslintrc.js ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aaeaa07b27491551daba29bbfdd7cab4a54b6bec"},(0,n.kt)("inlineCode",{parentName:"a"},"aaeaa07"))),(0,n.kt)("li",{parentName:"ul"},"modified left value of full width classes with toolbars ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70d82d47fbc2c00a3a709de0d5c087c8443a1eae"},(0,n.kt)("inlineCode",{parentName:"a"},"70d82d4"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-alpha.3 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8fc86a7d0bf4ad06ab339b3066ff56ea61d48878"},(0,n.kt)("inlineCode",{parentName:"a"},"8fc86a7"))),(0,n.kt)("li",{parentName:"ul"},"feature(content): added NarrowView useful for modifying the containers from content-area ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d937df7c262e8d8cc6e78eebec736e28263fc657"},(0,n.kt)("inlineCode",{parentName:"a"},"d937df7"))),(0,n.kt)("li",{parentName:"ul"},"jslint fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/98461593605344d0b6d8cba81f91d1cafc2653cd"},(0,n.kt)("inlineCode",{parentName:"a"},"9846159"))),(0,n.kt)("li",{parentName:"ul"},"Feature(container): flexible container size #260 from eea/feature-flexible-container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f84c5b67afe9cbe01b2a44a8f92a9a554e1036a"},(0,n.kt)("inlineCode",{parentName:"a"},"8f84c5b"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using circularity-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/76a41c786995fd54afe4d1c345de939f683ffa70"},(0,n.kt)("inlineCode",{parentName:"a"},"76a41c7"))),(0,n.kt)("li",{parentName:"ul"},"fix broken variable call for contentBox.variables introduced in previous commit by mistake ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d249c1160d19bedb174a2fde3fdab48d9ce297d4"},(0,n.kt)("inlineCode",{parentName:"a"},"d249c11"))),(0,n.kt)("li",{parentName:"ul"},"clean up ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/89f3cb33d70a14806a953f0acd1807e94169ee5c"},(0,n.kt)("inlineCode",{parentName:"a"},"89f3cb3"))),(0,n.kt)("li",{parentName:"ul"},"removed console log from code ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fad86ae581dd81d0c29fc03d8528e57cadadd3fb"},(0,n.kt)("inlineCode",{parentName:"a"},"fad86ae")))),(0,n.kt)("h3",{id:"100-alpha2---2022-10-28"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.1...1.0.0-alpha.2"},"1.0.0-alpha.2")," - 2022-10-28"),(0,n.kt)("h4",{id:"-enhancements-24"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(documentation): grammarly proof-read suggestions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f609be3758673b0d479d99baee69e7238a5b7f9"},(0,n.kt)("inlineCode",{parentName:"a"},"9f609be"))),(0,n.kt)("li",{parentName:"ul"},"refactor(volto-slate): Upgrade to @plone/volto-slate - refs #153447 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/853d9d189dd17859e3999fbf53507df7083eefb4"},(0,n.kt)("inlineCode",{parentName:"a"},"853d9d1")))),(0,n.kt)("h4",{id:"-internal-changes-10"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(docs): Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e33113a0541d082d93f61c7494bcce2ac5f79a8c"},(0,n.kt)("inlineCode",{parentName:"a"},"e33113a")))),(0,n.kt)("h4",{id:"\ufe0f-others-24"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"test(cypress): Upgrade to Cypress 10 / Razzle 4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c1c1f4b280945a9f0b77eb0b59de003c1360bac9"},(0,n.kt)("inlineCode",{parentName:"a"},"c1c1f4b"))),(0,n.kt)("li",{parentName:"ul"},"more explanations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a8b22728659125ba6ea6fb41f29571a8f1b9953b"},(0,n.kt)("inlineCode",{parentName:"a"},"a8b2272"))),(0,n.kt)("li",{parentName:"ul"},"add announcement bar, showing that EEA DS is WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e14aeac02cf922493aff4f83c8d80af95cc63eb9"},(0,n.kt)("inlineCode",{parentName:"a"},"e14aeac"))),(0,n.kt)("li",{parentName:"ul"},"Update dependencies ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee30a2bad3769163d3ab4d996c0a7be8fcb4bc6e"},(0,n.kt)("inlineCode",{parentName:"a"},"ee30a2b")))),(0,n.kt)("h3",{id:"100-alpha1---2022-10-20"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.6...1.0.0-alpha.1"},"1.0.0-alpha.1")," - 2022-10-20"),(0,n.kt)("h4",{id:"-enhancements-25"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update svg and tablet contact link sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6aba061a5d37e84da706e94a2ce1140ffca81d43"},(0,n.kt)("inlineCode",{parentName:"a"},"6aba061"))),(0,n.kt)("li",{parentName:"ul"},"change(blockquote): renamed to Callout reflecting the correct naming from Storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/61a518c84f08b03d29b99aafce3d9108ae56b3a7"},(0,n.kt)("inlineCode",{parentName:"a"},"61a518c"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): Shadow removed from logo & tablet updates #252 from eea/fix-footer ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6df783d6571cb1b477202bf1d503763d98db66bf"},(0,n.kt)("inlineCode",{parentName:"a"},"6df783d"))),(0,n.kt)("li",{parentName:"ul"},"change(colors): updated theme classes for text to use css variable colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb089fd9a40b67430e0d4efaa2cb51902a46de4f"},(0,n.kt)("inlineCode",{parentName:"a"},"cb089fd")))),(0,n.kt)("h4",{id:"-internal-changes-11"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(footer): reduce social icons margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6a9cf7a6da4a46d9b85a63fbdfc8d421ae4c0d8"},(0,n.kt)("inlineCode",{parentName:"a"},"f6a9cf7")))),(0,n.kt)("h4",{id:"-documentation-changes-9"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(alpha): Update included components in 1.0 alpha version - refs #154387 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fcc5af9bb9163d158ccd6ce452d7f80ac26f7ac0"},(0,n.kt)("inlineCode",{parentName:"a"},"fcc5af9"))),(0,n.kt)("li",{parentName:"ul"},"docs(callout): Rename Blockqoute to Callout in docusaurus - refs #154387 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8d733ac7b00273581575ceddd1a4480ba67fa498"},(0,n.kt)("inlineCode",{parentName:"a"},"8d733ac")))),(0,n.kt)("h4",{id:"\ufe0f-others-25"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-alpha.1 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70e4d97c6a2b13f3b98efe1e2ba93174be2df476"},(0,n.kt)("inlineCode",{parentName:"a"},"70e4d97")))),(0,n.kt)("h3",{id:"096---2022-12-16"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.5...0.9.6"},"0.9.6")," - 2022-12-16"),(0,n.kt)("h4",{id:"\ufe0f-others-26"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Release 0.9.6 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ae19b837678ef5a6a26ebe7c69577e446b13ed50"},(0,n.kt)("inlineCode",{parentName:"a"},"ae19b83"))),(0,n.kt)("li",{parentName:"ul"},"feature(copyright): image information #250 from eea/feature-copyright ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7b323ed27e15f9b4265618099089526c97aa89a1"},(0,n.kt)("inlineCode",{parentName:"a"},"7b323ed"))),(0,n.kt)("li",{parentName:"ul"},"Release-it ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f5671de5a36a721f86a2f8ae4077fd2e0ffafb5"},(0,n.kt)("inlineCode",{parentName:"a"},"1f5671d")))),(0,n.kt)("h3",{id:"095---2022-10-20"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.4...0.9.5"},"0.9.5")," - 2022-10-20"),(0,n.kt)("h4",{id:"-bug-fixes-19"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(statistic): margin and slate colors when using the inverted options ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f263dea1940594ad00b3548c8640ca378fee5563"},(0,n.kt)("inlineCode",{parentName:"a"},"f263dea")))),(0,n.kt)("h3",{id:"094---2022-10-19"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.3...0.9.4"},"0.9.4")," - 2022-10-19"),(0,n.kt)("h4",{id:"-bug-fixes-20"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(edit-interface): block chooser and power user menu item colors when inside content-box ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7aee4f1619a0d798b5fd8d90844a780c25aca019"},(0,n.kt)("inlineCode",{parentName:"a"},"7aee4f1"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): hero text going over the logo and menu on mobile resolutions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1434508f5995d4316dfb2fd18fdc7926a4ece6ee"},(0,n.kt)("inlineCode",{parentName:"a"},"1434508"))),(0,n.kt)("li",{parentName:"ul"},"fix(content-box): z-index of box-inner and added underline to slate links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c8b7c7e41df39e1bf6377401a7aad4220287d454"},(0,n.kt)("inlineCode",{parentName:"a"},"c8b7c7e"))),(0,n.kt)("li",{parentName:"ul"},"fix(content-box): adding of underline to links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c2f5f0f45963e48342edb0046d84b945ffe4b6a8"},(0,n.kt)("inlineCode",{parentName:"a"},"c2f5f0f")))),(0,n.kt)("h4",{id:"-enhancements-26"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(banner,colors): content box theme aware colors banner changes#254 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bcb9a8cde0cb0f927a68c0872e590e5ab853f824"},(0,n.kt)("inlineCode",{parentName:"a"},"bcb9a8c"))),(0,n.kt)("li",{parentName:"ul"},"change(Banner): Add subtitle subcomponent ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bb67f4c83a2ff0e17958116fc4a52a426ba64a70"},(0,n.kt)("inlineCode",{parentName:"a"},"bb67f4c"))),(0,n.kt)("li",{parentName:"ul"},"change(item): moved svg filter definitions to item.overrides ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/de703661065648968903bb6b46efc13d19c51d2b"},(0,n.kt)("inlineCode",{parentName:"a"},"de70366"))),(0,n.kt)("li",{parentName:"ul"},"change(accordion): accordion titles with themes colors can now be modified by css variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2ac13ea56a74b2f7a22abc274bc94c770fbe3a2"},(0,n.kt)("inlineCode",{parentName:"a"},"e2ac13e"))),(0,n.kt)("li",{parentName:"ul"},"change(colors): in lists and callouts to allow color changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/940d1b8ed815b1a38f78d7602f0b221b48fe21f9"},(0,n.kt)("inlineCode",{parentName:"a"},"940d1b8"))),(0,n.kt)("li",{parentName:"ul"},"change(colors): added backgroundColorSupplementary color variable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f5262af2b90d2ffd9dd5560232f3bf47bcc85e3"},(0,n.kt)("inlineCode",{parentName:"a"},"1f5262a"))),(0,n.kt)("li",{parentName:"ul"},"change(list,bullet): color is no longer primary instead it's text color css variant ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8c046704871c7202406ff71b280a8a34e195e54d"},(0,n.kt)("inlineCode",{parentName:"a"},"8c04670"))),(0,n.kt)("li",{parentName:"ul"},"change(statistics): use theme colors with css variable for easy color customization ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fb72a012e81eba73fbace58317a52b5cdda31ee5"},(0,n.kt)("inlineCode",{parentName:"a"},"fb72a01"))),(0,n.kt)("li",{parentName:"ul"},"change(Banner): Show label in metadata field ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1acda3c53739b610b501a53baf10226769929d2d"},(0,n.kt)("inlineCode",{parentName:"a"},"1acda3c"))),(0,n.kt)("li",{parentName:"ul"},"change(tags, items): use text color with css variable for content color for easy customization ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6660e2e49c6e732a13283ad7c922c5a5091bffc1"},(0,n.kt)("inlineCode",{parentName:"a"},"6660e2e"))),(0,n.kt)("li",{parentName:"ul"},"change(styling): modified naming of theme css variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a332961e1c4d55cdee3a8bcdf652f53cf03e251b"},(0,n.kt)("inlineCode",{parentName:"a"},"a332961"))),(0,n.kt)("li",{parentName:"ul"},"change(colors): added backgroundColor color variable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b7e68311f77a724c49a3cf858a76239ca5f6876c"},(0,n.kt)("inlineCode",{parentName:"a"},"b7e6831"))),(0,n.kt)("li",{parentName:"ul"},"change(quote): use secondary css var for easier color replacement ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7a3231228c2eb9b420cc7b59a4a07fba96643e5e"},(0,n.kt)("inlineCode",{parentName:"a"},"7a32312"))),(0,n.kt)("li",{parentName:"ul"},"change(statistics): tweaked margin of statistics so that they don't overflow over context boxes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4a8e33dfaa716f38ac9ce5448d400c74ef9ba62"},(0,n.kt)("inlineCode",{parentName:"a"},"b4a8e33"))),(0,n.kt)("li",{parentName:"ul"},"change(accordion): allow customization of accordion title background color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6590baf1716867eabe897e765ae1924122ba2333"},(0,n.kt)("inlineCode",{parentName:"a"},"6590baf"))),(0,n.kt)("li",{parentName:"ul"},"change(colors): introduced css variables for primary colors #247 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac8082590f978ab953ece70082e06b124c292ddf"},(0,n.kt)("inlineCode",{parentName:"a"},"ac80825"))),(0,n.kt)("li",{parentName:"ul"},"change(content-box): override primary text color to white as well ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/28b43c72b9fcfeb153ac7e734bbbca67f2e42111"},(0,n.kt)("inlineCode",{parentName:"a"},"28b43c7")))),(0,n.kt)("h4",{id:"\ufe0f-others-27"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Include changes in the storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4d9fa4c631a6a1ec0d7d525721fd32c5ff01d9c"},(0,n.kt)("inlineCode",{parentName:"a"},"a4d9fa4")))),(0,n.kt)("h3",{id:"093---2022-10-04"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.2...0.9.3"},"0.9.3")," - 2022-10-04"),(0,n.kt)("h4",{id:"-bug-fixes-21"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(card, contentBox): meta font size, removed header override of cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7f94b9ca8c65a887ced5c4812563a2226fca869"},(0,n.kt)("inlineCode",{parentName:"a"},"a7f94b9"))),(0,n.kt)("li",{parentName:"ul"},"fix(List): Ordered list item story - refs #155248 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c70a2bceecf4ce9497cbe0e9cdb30944fff2287d"},(0,n.kt)("inlineCode",{parentName:"a"},"c70a2bc"))),(0,n.kt)("li",{parentName:"ul"},"fix(OrderedList): li third level margin left - refs #155248 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fba5cb9d3897d2827951cd218405b1ae7c8e818a"},(0,n.kt)("inlineCode",{parentName:"a"},"fba5cb9"))),(0,n.kt)("li",{parentName:"ul"},"fix(cards): inherit color of card description ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ceda79971663785c81292b85ae07b7f9f922213c"},(0,n.kt)("inlineCode",{parentName:"a"},"ceda799"))),(0,n.kt)("li",{parentName:"ul"},"fix(accordion): Fix content default padding - refs #153783 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/566adf7a53c48fb24044eeba1d159d5ce715ecc6"},(0,n.kt)("inlineCode",{parentName:"a"},"566adf7")))),(0,n.kt)("h4",{id:"-enhancements-27"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(site): committed fixed from custom into eea design package ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9b9a1fd3648796a502ca4eb3abd08b61b33bdff2"},(0,n.kt)("inlineCode",{parentName:"a"},"9b9a1fd"))),(0,n.kt)("li",{parentName:"ul"},"change(jenkins): added yarn policy for storybook building ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3d1b844efeea40b99c00c9aa97089e0a0be58a57"},(0,n.kt)("inlineCode",{parentName:"a"},"3d1b844"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): typography updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/60a93a4aece4e478ae13c2dfe697fd3703aa178a"},(0,n.kt)("inlineCode",{parentName:"a"},"60a93a4"))),(0,n.kt)("li",{parentName:"ul"},"change(item): added item image coloring when applying theming classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0403fe4974f37a46ec7418d9b8492ad74d7c5688"},(0,n.kt)("inlineCode",{parentName:"a"},"0403fe4"))),(0,n.kt)("li",{parentName:"ul"},"change(accordion, site): change text color to tertiary instead of black ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/464105842508a62216aa0a3f28e9565af1b93232"},(0,n.kt)("inlineCode",{parentName:"a"},"4641058"))),(0,n.kt)("li",{parentName:"ul"},"change(accordion): allow customization of accordion title with css variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/15e7d27f02c640df582f51a51ef36e645723f842"},(0,n.kt)("inlineCode",{parentName:"a"},"15e7d27"))),(0,n.kt)("li",{parentName:"ul"},"change(content-box): added css variables that will set text color and background for children ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/86cac531cc94386b6022e1be80dba826b39f2443"},(0,n.kt)("inlineCode",{parentName:"a"},"86cac53"))),(0,n.kt)("li",{parentName:"ul"},"change(tabs): allow customization of tab active and hover color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4370f4270dcaa29b1193fc2347567b748f6d5d82"},(0,n.kt)("inlineCode",{parentName:"a"},"4370f42"))),(0,n.kt)("li",{parentName:"ul"},"change(tabs): color for tabs-block section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6778c923618e725194120d7f35e2ee7d66e1be8e"},(0,n.kt)("inlineCode",{parentName:"a"},"6778c92"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): by default date is set to appear on the right of the meta section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b7b80e86b69a0179f1e48748bef909bbd2a98d58"},(0,n.kt)("inlineCode",{parentName:"a"},"b7b80e8"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): carousel dots are now relative positioned ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/daa40a4ab6532497830d5f7536bf0a7f20d9cd00"},(0,n.kt)("inlineCode",{parentName:"a"},"daa40a4")))),(0,n.kt)("h4",{id:"-documentation-changes-10"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(typography): update, local fonts ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/39a32d9aa4dec21c0e7df32aa5798432fc6bd403"},(0,n.kt)("inlineCode",{parentName:"a"},"39a32d9"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): token fix to match used values for heightheight and letterspacing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91693ecd2dd367cd83fa2752756557d463e214a7"},(0,n.kt)("inlineCode",{parentName:"a"},"91693ec"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): token fix to match used values for lineheight ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff41b56b4365a3e70ac20e548c7c74671e7c584c"},(0,n.kt)("inlineCode",{parentName:"a"},"ff41b56"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): remove semibold ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6eb3e0856f01aacf6d294f68e7d845f74f752685"},(0,n.kt)("inlineCode",{parentName:"a"},"6eb3e08")))),(0,n.kt)("h4",{id:"\ufe0f-others-28"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"test(cypress): Fix md5 dependency ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/17f618e7c5eef01759494e787a8c9cb96449fbca"},(0,n.kt)("inlineCode",{parentName:"a"},"17f618e")))),(0,n.kt)("h3",{id:"092---2022-09-27"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.1...0.9.2"},"0.9.2")," - 2022-09-27"),(0,n.kt)("h3",{id:"091---2022-09-27"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.0...0.9.1"},"0.9.1")," - 2022-09-27"),(0,n.kt)("h4",{id:"-enhancements-28"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(cards): added ability to change the text alignment using css variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ed532ac20c82a6933c4f12613c80ce92eec78405"},(0,n.kt)("inlineCode",{parentName:"a"},"ed532ac"))),(0,n.kt)("li",{parentName:"ul"},"change(styles): use flex-end values only instead of end to avoid babel warning ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24244b22ea69b9f4dc3006597c7836f814b74cf2"},(0,n.kt)("inlineCode",{parentName:"a"},"24244b2"))),(0,n.kt)("li",{parentName:"ul"},"change(rounded): image size, border radius to ensure more image are turned into rounded options ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51e23c1bb38f277b2bfbad5d814925eb61d17668"},(0,n.kt)("inlineCode",{parentName:"a"},"51e23c1")))),(0,n.kt)("h4",{id:"\ufe0f-others-29"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Merge pull request #243 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/576564ce395ee6ac9e74bcb19d5c4f0b4cd3c33b"},(0,n.kt)("inlineCode",{parentName:"a"},"576564c"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using eea-website-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a5be6eec78dae230626e61ea2c77e7f3c62510d"},(0,n.kt)("inlineCode",{parentName:"a"},"4a5be6e"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b251255a7ed14d8290717726d86eaf54b87aa2d4"},(0,n.kt)("inlineCode",{parentName:"a"},"b251255")))),(0,n.kt)("h3",{id:"090---2022-09-19"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.8.1...0.9.0"},"0.9.0")," - 2022-09-19"),(0,n.kt)("h4",{id:"-new-features-16"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(countUp): intall countup package and import it in statistics ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/10ba7cf2975ffc33cc8e6965998b7ab7ec58b1ab"},(0,n.kt)("inlineCode",{parentName:"a"},"10ba7cf"))),(0,n.kt)("li",{parentName:"ul"},"feat(docusaurus): custom editUrl function for the components usage pages - taskman refs #154076 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93c4240f269d72e4e353665dacd57d079a31afac"},(0,n.kt)("inlineCode",{parentName:"a"},"93c4240"))),(0,n.kt)("li",{parentName:"ul"},"feat(site): Styling scroll-to-text fragments #238 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1883fcf4e80055f68bdff4d66fc6db3ccad4614a"},(0,n.kt)("inlineCode",{parentName:"a"},"1883fcf"))),(0,n.kt)("li",{parentName:"ul"},"feat(docusaurus): added Edit this page link in footer of each page - taskman refs #154076 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2cf8746e42631ea2e214223e208bdbfb76ffafa7"},(0,n.kt)("inlineCode",{parentName:"a"},"2cf8746")))),(0,n.kt)("h4",{id:"-bug-fixes-22"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(header): Prevent dropdown closing when clicking inside content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/838f34006260ce7c331fd933a595e95d78e1a927"},(0,n.kt)("inlineCode",{parentName:"a"},"838f340"))),(0,n.kt)("li",{parentName:"ul"},"fix(cards): position of bullets and arrow clicking on events page 148723 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/22ef8282247401b0f8cf5a44f2e65f0b469cc6fa"},(0,n.kt)("inlineCode",{parentName:"a"},"22ef828"))),(0,n.kt)("li",{parentName:"ul"},"fix(cards): rounded images show up now even when card parent is cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48f5e81a5b76168435537d92aec35ab3a184b4d2"},(0,n.kt)("inlineCode",{parentName:"a"},"48f5e81"))),(0,n.kt)("li",{parentName:"ul"},"fix(statistic): add a min-width to content so unwrapped statistics don't break ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7c5d511c35d50f3afabf77f14b27e5760c49051f"},(0,n.kt)("inlineCode",{parentName:"a"},"7c5d511"))),(0,n.kt)("li",{parentName:"ul"},"fix(sideNavigation): add role list to list item ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/58f322b732c995349ba588db3bac6a1ffea40f89"},(0,n.kt)("inlineCode",{parentName:"a"},"58f322b"))),(0,n.kt)("li",{parentName:"ul"},"fix(sideNavigation): remove unused useState import ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f9ea6779d2c584203b77f11b3127f39aba7799f3"},(0,n.kt)("inlineCode",{parentName:"a"},"f9ea677")))),(0,n.kt)("h4",{id:"-enhancements-29"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(sideNavigation): implement the design to the initial navigation & make component dynamic ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b673d63a45e56e1d05354d8675c01b15ec9543f5"},(0,n.kt)("inlineCode",{parentName:"a"},"b673d63"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update top bar ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/626bdd5805bde1e97b91d83dae7adc1d39c62234"},(0,n.kt)("inlineCode",{parentName:"a"},"626bdd5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): create custom export and add links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f9ed560a68d261e9e6a9b6fa3c44944a252e596"},(0,n.kt)("inlineCode",{parentName:"a"},"9f9ed56"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): update inverted style and add background variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7578dc6a408094fbc215218b3ffe21a878841568"},(0,n.kt)("inlineCode",{parentName:"a"},"7578dc6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): remove horizontal display on mobiles & update columns control ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/58f00e12851c4a1af1bb200d0577d76f6222df3c"},(0,n.kt)("inlineCode",{parentName:"a"},"58f00e1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): minor fixes spotted in testing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0f0f3aba7ea282c4ecc4f602f9ff3144c04e2146"},(0,n.kt)("inlineCode",{parentName:"a"},"0f0f3ab"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update main section heights ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d669f012f1b831952dbb73b7d40134b1243ba7e4"},(0,n.kt)("inlineCode",{parentName:"a"},"d669f01"))),(0,n.kt)("li",{parentName:"ul"},"refactor(sideNavigation): remove green border and divider ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/939cd9bf2a9a7338fd770550a8396586c5f610b3"},(0,n.kt)("inlineCode",{parentName:"a"},"939cd9b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(link): update colors for link states ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e9f59950838f9119131797550945963c2965dcf"},(0,n.kt)("inlineCode",{parentName:"a"},"3e9f599"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): styles img tag outside of .image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee892745a4748da12007ba5cedab16c1810c1dd9"},(0,n.kt)("inlineCode",{parentName:"a"},"ee89274"))),(0,n.kt)("li",{parentName:"ul"},"refactor(sideNavigation): update controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a3e8430d88ee52fd92f4f8c2d6f5e01ea82dd9eb"},(0,n.kt)("inlineCode",{parentName:"a"},"a3e8430"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): fix firefox issue for fit content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87aa113667ea53d83d479cd52347e7298e60e9b0"},(0,n.kt)("inlineCode",{parentName:"a"},"87aa113"))),(0,n.kt)("li",{parentName:"ul"},"change(statistics): rearrange controls order ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b19ae70568f18873732ff62ee82251c9256a214d"},(0,n.kt)("inlineCode",{parentName:"a"},"b19ae70"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): add max width to wrap text for all content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/758f8ce09f78a6343ac0226e5d332c0216dea95b"},(0,n.kt)("inlineCode",{parentName:"a"},"758f8ce"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): add max width to label so it wraps the text ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/824a12702f133485a1c254e267d9e75c1b22048c"},(0,n.kt)("inlineCode",{parentName:"a"},"824a127"))),(0,n.kt)("li",{parentName:"ul"},"change(Side menu & in page navigation): styling according to figma design #221 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b2df858a2dc88f61d686ad0991e711dc763f4cc6"},(0,n.kt)("inlineCode",{parentName:"a"},"b2df858"))),(0,n.kt)("li",{parentName:"ul"},"change(header): align header with latest figma changes #232 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/135cd68307c6ebdc5d48b361d1696457c6f99b4c"},(0,n.kt)("inlineCode",{parentName:"a"},"135cd68"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): integration when cards also contain call to action buttons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f0d876616b211c79dde5b18c1fe862ff019073a1"},(0,n.kt)("inlineCode",{parentName:"a"},"f0d8766"))),(0,n.kt)("li",{parentName:"ul"},"refactor(iconography): icon group headings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b9ccd8031049d6b91c5676930ea3e44d9587435d"},(0,n.kt)("inlineCode",{parentName:"a"},"b9ccd80"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add variables for some sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8eae84ef665d7b3331090a8a8ac6b714ecdacbb3"},(0,n.kt)("inlineCode",{parentName:"a"},"8eae84e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Statisctic): Rename slateVariation to extraVariation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a07c5896c8c4b8f3179622f335e3f02e68dadfbd"},(0,n.kt)("inlineCode",{parentName:"a"},"a07c589"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): started example on how to add headings for iconography ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53cf8431446954eee6c5d27be31e15c075ffe16d"},(0,n.kt)("inlineCode",{parentName:"a"},"53cf843"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): remove center alignment of rounded cards body area, only the image is now centered ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fdfac4876903272b437c7dcf0e65f7cfe66bbf66"},(0,n.kt)("inlineCode",{parentName:"a"},"fdfac48"))),(0,n.kt)("li",{parentName:"ul"},"change(color): updated link colors #234 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/feabfe7a3b6d6b89bfd4065a32bae8148ddc5a4c"},(0,n.kt)("inlineCode",{parentName:"a"},"feabfe7"))),(0,n.kt)("li",{parentName:"ul"},"change(mockup): Access to figma style tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0bb25bec495f9046a15924ee92f4f17152148ba8"},(0,n.kt)("inlineCode",{parentName:"a"},"0bb25be"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): update margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5190f56e134d672ccb9d5d1a8efacac4d41530d3"},(0,n.kt)("inlineCode",{parentName:"a"},"5190f56"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button): adjust vertical margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/db6d44102171738907b4b03fcc5f526463f59389"},(0,n.kt)("inlineCode",{parentName:"a"},"db6d441")))),(0,n.kt)("h4",{id:"-internal-changes-12"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(statistic): update decimal point ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7976aa4cac4c56e70e196eb62791a2b3f2aba749"},(0,n.kt)("inlineCode",{parentName:"a"},"7976aa4"))),(0,n.kt)("li",{parentName:"ul"},"style(link): update visited link color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d3b18b305bb2bd2f20bb2509584a6bc86b0e252c"},(0,n.kt)("inlineCode",{parentName:"a"},"d3b18b3")))),(0,n.kt)("h4",{id:"-documentation-changes-11"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(iconography): added icons, guidelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0073f1d42600be1d14bff406083b112014a2061f"},(0,n.kt)("inlineCode",{parentName:"a"},"0073f1d")))),(0,n.kt)("h4",{id:"\ufe0f-others-30"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Delete 2-test-new-page.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/749eff9b81e1c08068650cff1aba6cd574ea403b"},(0,n.kt)("inlineCode",{parentName:"a"},"749eff9"))),(0,n.kt)("li",{parentName:"ul"},"Create 2-test-new-page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab623ffc27f65e3e5fdcfe627009df1799582325"},(0,n.kt)("inlineCode",{parentName:"a"},"ab623ff"))),(0,n.kt)("li",{parentName:"ul"},"Release 0.9.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/eb7e2e57b5f2778e709b67deee3624f6e9f9e716"},(0,n.kt)("inlineCode",{parentName:"a"},"eb7e2e5"))),(0,n.kt)("li",{parentName:"ul"},"stylelint fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/114e3f97c6209f100aae2d6e24c595b7ba0a6500"},(0,n.kt)("inlineCode",{parentName:"a"},"114e3f9"))),(0,n.kt)("li",{parentName:"ul"},"Move text fragments style to site.overrides ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8368cbe2cecfc296a2fc81dd0bb49cb9e9a9314c"},(0,n.kt)("inlineCode",{parentName:"a"},"8368cbe"))),(0,n.kt)("li",{parentName:"ul"},"Styling scroll-to-text fragments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1bb39148717cdac922c403a0cdbfa3681a65dd9f"},(0,n.kt)("inlineCode",{parentName:"a"},"1bb3914"))),(0,n.kt)("li",{parentName:"ul"},"Update Header.stories.js ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9036c74d54640df2ccfcfdea9ddcdb29787d8ae2"},(0,n.kt)("inlineCode",{parentName:"a"},"9036c74"))),(0,n.kt)("li",{parentName:"ul"},"feature(Docusaurus): Reflect usage of remixicon in iconography page #239 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0802b32c13d978e380960befb78647dadb2d7e53"},(0,n.kt)("inlineCode",{parentName:"a"},"0802b32"))),(0,n.kt)("li",{parentName:"ul"},"Update 1-design.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/146115a13ac7a1943b6878df42f0b8e7f1fcd3f1"},(0,n.kt)("inlineCode",{parentName:"a"},"146115a"))),(0,n.kt)("li",{parentName:"ul"},"Test workflow for contribution - taskman refs #154076 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dcb924f79306ba26bb5168ac0a12d82c0c354caa"},(0,n.kt)("inlineCode",{parentName:"a"},"dcb924f"))),(0,n.kt)("li",{parentName:"ul"},"perf(figma): access to style tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/27d8dbe3c282e187f93bc4d93a0c9aa5c8162b00"},(0,n.kt)("inlineCode",{parentName:"a"},"27d8dbe"))),(0,n.kt)("li",{parentName:"ul"},"Rename 2-test-new-page to 2-test-new-page.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4e3be106cc4739e60ee5038901dbb626cf17f2e7"},(0,n.kt)("inlineCode",{parentName:"a"},"4e3be10")))),(0,n.kt)("h3",{id:"081---2022-08-26"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.8.0...0.8.1"},"0.8.1")," - 2022-08-26"),(0,n.kt)("h4",{id:"-bug-fixes-23"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(message): fix size controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee51e1dca4f84aeb9e39be525016f751acc147de"},(0,n.kt)("inlineCode",{parentName:"a"},"ee51e1d"))),(0,n.kt)("li",{parentName:"ul"},"fix(docusaurus): intro page hero title color now that headers are using tertiary color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/618e3cb7ac5533b1c087aea10452947c8676ab4e"},(0,n.kt)("inlineCode",{parentName:"a"},"618e3cb")))),(0,n.kt)("h4",{id:"-enhancements-30"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(message): restore semantic variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1c16621b4862efc64d82d475798ed40938c65f5e"},(0,n.kt)("inlineCode",{parentName:"a"},"1c16621"))),(0,n.kt)("li",{parentName:"ul"},"refactor(messages): mix semantc and token colors for messages ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/12efa75c30956df9958058242be4b8732819a5a1"},(0,n.kt)("inlineCode",{parentName:"a"},"12efa75"))),(0,n.kt)("li",{parentName:"ul"},"refactor(emotiveColors): temp update for tests ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/61a720c1ddbbad2c5bab17c8b2f890618f2a747c"},(0,n.kt)("inlineCode",{parentName:"a"},"61a720c"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): removed line between sections and moved actions back to the bottom of footer ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d9f33e4cf5a517acfbae497d6cb2fdccb048c281"},(0,n.kt)("inlineCode",{parentName:"a"},"d9f33e4"))),(0,n.kt)("li",{parentName:"ul"},"change(storybook): headings storybook now uses tertiary color by default reflecting site options ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1061e7749de2d4fe1233ccdc7f6f835ad491504a"},(0,n.kt)("inlineCode",{parentName:"a"},"1061e77"))),(0,n.kt)("li",{parentName:"ul"},"refactor(message): add container to story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1259ecead7162d2a46f5e802ba07e7e0dcb72e42"},(0,n.kt)("inlineCode",{parentName:"a"},"1259ece"))),(0,n.kt)("li",{parentName:"ul"},"refactor(message): remove override with custom background color on error ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9b40cd7ef2cca901e65a812585943c2e2d867b5f"},(0,n.kt)("inlineCode",{parentName:"a"},"9b40cd7"))),(0,n.kt)("li",{parentName:"ul"},"refactor(message): add header controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/960c2f7b524b1f049bb2f666e3e8278feca506da"},(0,n.kt)("inlineCode",{parentName:"a"},"960c2f7"))),(0,n.kt)("li",{parentName:"ul"},"change(message): use semantic colors for messages #204 from eea/refactor-message ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/22d2c43cd55a82621f2da3103652677b4b45db1a"},(0,n.kt)("inlineCode",{parentName:"a"},"22d2c43")))),(0,n.kt)("h4",{id:"-documentation-changes-12"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(figma): added figma files to repo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6bd4144ffc9c563ce224a07fe942fc4f2615c53f"},(0,n.kt)("inlineCode",{parentName:"a"},"6bd4144")))),(0,n.kt)("h3",{id:"080---2022-08-20"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.7.6...0.8.0"},"0.8.0")," - 2022-08-20"),(0,n.kt)("h4",{id:"-new-features-17"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(IconCard): card with icon instead of image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a85a1791e3a1245474dcafc4fd833350156dccb4"},(0,n.kt)("inlineCode",{parentName:"a"},"a85a179")))),(0,n.kt)("h4",{id:"-bug-fixes-24"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(docusaurus): typography guideline now has real font values for headings, body, caption and small text ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9508db918687b524c4d464539b9a4667399abb43"},(0,n.kt)("inlineCode",{parentName:"a"},"9508db9"))),(0,n.kt)("li",{parentName:"ul"},"fix(card): fix content gaps, adjust new meta section and update text color for default ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f1a78e14fc9a4b809572bd5d4d45bd10711c6eaa"},(0,n.kt)("inlineCode",{parentName:"a"},"f1a78e1"))),(0,n.kt)("li",{parentName:"ul"},"fix(item): remove duplicate argType ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dde0be5f7fe362143e248f7e53aa1d2e5df1fda0"},(0,n.kt)("inlineCode",{parentName:"a"},"dde0be5"))),(0,n.kt)("li",{parentName:"ul"},"fix(iconCard): add aria-label at links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/44f64c7127c0ccabbbf81eb5a838ee0f63284cea"},(0,n.kt)("inlineCode",{parentName:"a"},"44f64c7"))),(0,n.kt)("li",{parentName:"ul"},"fix(card): merge fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/df440ecd89eeb228f6f28df9109b84460cdfd523"},(0,n.kt)("inlineCode",{parentName:"a"},"df440ec"))),(0,n.kt)("li",{parentName:"ul"},"fix(heroblock): color even on edit page by inheriting color instead of using the tertiary color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac53fb74dedafcce231d1ca72843eff8a589c530"},(0,n.kt)("inlineCode",{parentName:"a"},"ac53fb7"))),(0,n.kt)("li",{parentName:"ul"},"fix(tab): add tabindex for accessibility error ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab512be71b86a3b696a228840e34d297928485ab"},(0,n.kt)("inlineCode",{parentName:"a"},"ab512be"))),(0,n.kt)("li",{parentName:"ul"},"fix(carousel): restore missing variable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1728312162d102aa2812eb3c7a55dac83bca8a04"},(0,n.kt)("inlineCode",{parentName:"a"},"1728312"))),(0,n.kt)("li",{parentName:"ul"},"fix(carousel): restore flex grow for cards and opacity for arrows ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce71305ab3fed5ff5c09b577e970050d3b29a2cb"},(0,n.kt)("inlineCode",{parentName:"a"},"ce71305")))),(0,n.kt)("h4",{id:"-enhancements-31"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(carousel) add links in carousel cards & update structure and variables of less files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f99cb219f3a95f5aab49a180434a4f5e0db14462"},(0,n.kt)("inlineCode",{parentName:"a"},"f99cb21"))),(0,n.kt)("li",{parentName:"ul"},"refactor(iconCard): add control for variations and link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5e1b6a1c7ab9fdce138c5643bc01763a02bed287"},(0,n.kt)("inlineCode",{parentName:"a"},"5e1b6a1"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus, fonts): documented font letter spacing modification ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/522712aeddb55f4ff96fdf4e8bea26f4575504ec"},(0,n.kt)("inlineCode",{parentName:"a"},"522712a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): css updates for card variations and styling updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c8b4a43dd25c50e77e8c71fa8fbc45cd70bde94e"},(0,n.kt)("inlineCode",{parentName:"a"},"c8b4a43"))),(0,n.kt)("li",{parentName:"ul"},"refactor(publicationCard): add links and fix accessibily issue ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/80adf6ce0f01e577c34ddba8b345a1fc562f6711"},(0,n.kt)("inlineCode",{parentName:"a"},"80adf6c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add new section in meta and remove links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bfb82ae9635d26ef478db3d63b39f67b25d11fd5"},(0,n.kt)("inlineCode",{parentName:"a"},"bfb82ae"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): add stackable functionality ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8d714fad0465cc71650dcb41236d5667ccc3e789"},(0,n.kt)("inlineCode",{parentName:"a"},"8d714fa"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): update meta section and controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5e28e12bacec6a226659553b8244aeb0165378c9"},(0,n.kt)("inlineCode",{parentName:"a"},"5e28e12"))),(0,n.kt)("li",{parentName:"ul"},"refactor(roundedCard): remove unnecessary code and controls and add all variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6305c54df14faada4058c602af2e33dbc4fad39d"},(0,n.kt)("inlineCode",{parentName:"a"},"6305c54"))),(0,n.kt)("li",{parentName:"ul"},"refactor(roundedCard): add optional link for image and header ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a6d3bf27031d189c403c4a099b09a9066a1620a2"},(0,n.kt)("inlineCode",{parentName:"a"},"a6d3bf2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add tertiary hover and update css selectors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca069484da914520c92f7d67ac92c476ff2ee4a2"},(0,n.kt)("inlineCode",{parentName:"a"},"ca06948"))),(0,n.kt)("li",{parentName:"ul"},"change(fonts): updated font sizes with values given in figma ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4b0ae48ab140d8bbbf6ccbf46eda8d957195ca50"},(0,n.kt)("inlineCode",{parentName:"a"},"4b0ae48"))),(0,n.kt)("li",{parentName:"ul"},"change(style): color, space and adjust line-height as described in docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3366da262ba2dc1c34f57964accf4d6ef6ed37e1"},(0,n.kt)("inlineCode",{parentName:"a"},"3366da2"))),(0,n.kt)("li",{parentName:"ul"},"change(headings): only h2-h6 get tertiary color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d81308c4c0d52d5610a922146f5b426d9eaf323"},(0,n.kt)("inlineCode",{parentName:"a"},"7d81308"))),(0,n.kt)("li",{parentName:"ul"},"change(site): removed Archivo import as we should only use Roboto font ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a6af0564667075d2012c114acb2ad8e1f39b926f"},(0,n.kt)("inlineCode",{parentName:"a"},"a6af056"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): use tertiary color for headings and body color mirroring the design system styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/145fe7348a19b51784a2879225d1b71a642eed45"},(0,n.kt)("inlineCode",{parentName:"a"},"145fe73"))),(0,n.kt)("li",{parentName:"ul"},"change(fonts): modified headings font size as well as line height ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f0771ea1942b6ef436a03c256491a690a52d7413"},(0,n.kt)("inlineCode",{parentName:"a"},"f0771ea"))),(0,n.kt)("li",{parentName:"ul"},"change(fonts): updated font sizes with values given in figma ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f16eef7128ed4f2e7fe97b1ec77f651dc062b771"},(0,n.kt)("inlineCode",{parentName:"a"},"f16eef7"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): use Roboto font from google fonts also for docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/adca8e911faac2d541eb2b9fecf1d9db5b8f9b4c"},(0,n.kt)("inlineCode",{parentName:"a"},"adca8e9"))),(0,n.kt)("li",{parentName:"ul"},"change(headers): added headerColor variable so that thematic sites can easily choose another heading color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f09d2c5e95e82077cc7dfef43a5c56fc73d435c3"},(0,n.kt)("inlineCode",{parentName:"a"},"f09d2c5"))),(0,n.kt)("li",{parentName:"ul"},"change(fonts): typo fixes for typography section of docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cae4b02b20ff578f5cad7c4238c36baa3cae545a"},(0,n.kt)("inlineCode",{parentName:"a"},"cae4b02"))),(0,n.kt)("li",{parentName:"ul"},"change(fonts): modified footer and header values afer global font size changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f160d354b36dc2bee0707b6d63097d5f08408abe"},(0,n.kt)("inlineCode",{parentName:"a"},"f160d35"))),(0,n.kt)("li",{parentName:"ul"},"refactor(iconCards): run prettier ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fe84e46adbc385098385120d14e7583b890db027"},(0,n.kt)("inlineCode",{parentName:"a"},"fe84e46"))),(0,n.kt)("li",{parentName:"ul"},"change(typography): inherit header colors with @headerColor variable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91d93577772534f67bb74df0c9ed260bbaccdd4c"},(0,n.kt)("inlineCode",{parentName:"a"},"91d9357"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumb): use tertiary color also for breadcrumb ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5cbd44bcabae36bcb99a1e987d701e2ea75434b"},(0,n.kt)("inlineCode",{parentName:"a"},"c5cbd44"))),(0,n.kt)("li",{parentName:"ul"},"change(heading): on homepage on the first hero set font size to h1 and inherit color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5711096e45c57b0c3c871f8dcf870c05405d217d"},(0,n.kt)("inlineCode",{parentName:"a"},"5711096"))),(0,n.kt)("li",{parentName:"ul"},"refactor(carousel): update card titles to display styling fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/edd966b5648be51f2d4056c68489648574506656"},(0,n.kt)("inlineCode",{parentName:"a"},"edd966b"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): use the tertiary color for body and heading colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/11c4ed4683df4527ce79155bc65424789e3864af"},(0,n.kt)("inlineCode",{parentName:"a"},"11c4ed4"))),(0,n.kt)("li",{parentName:"ul"},"change(typography): modified lineheight-0 after headers now use 1.2 instead of 1.25 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/04d78a8b0094d9187548e1e3b16d6fbf2248821c"},(0,n.kt)("inlineCode",{parentName:"a"},"04d78a8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add links to cards and replace description with title in carousel ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0258737d26bbb3015ee6222ec878e0477001f615"},(0,n.kt)("inlineCode",{parentName:"a"},"0258737")))),(0,n.kt)("h4",{id:"\ufe0f-others-31"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feature(heading): and cards refactoring #227 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/334fbda2d5b751858d4cc8cae832ca7f5c1ad6c2"},(0,n.kt)("inlineCode",{parentName:"a"},"334fbda"))),(0,n.kt)("li",{parentName:"ul"},"Update package.json ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3870cf3265f0dab4e181c94a6657b9fa408bf186"},(0,n.kt)("inlineCode",{parentName:"a"},"3870cf3"))),(0,n.kt)("li",{parentName:"ul"},"Header refactor 153536 #226 from eea/header-refactor-153536 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87a6fe73211eb028861e099a67e90d365c5111ea"},(0,n.kt)("inlineCode",{parentName:"a"},"87a6fe7"))),(0,n.kt)("li",{parentName:"ul"},"feature(item): icon is now stackable moving the icon on top #220 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b716acfc850345d666d99840445798cdae201a63"},(0,n.kt)("inlineCode",{parentName:"a"},"b716acf")))),(0,n.kt)("h3",{id:"076---2022-08-15"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.7.5...0.7.6"},"0.7.6")," - 2022-08-15"),(0,n.kt)("h4",{id:"-enhancements-32"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(footer): Footer updates 147837 #225 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fa9ae580c7fd45fb4983672167cb5b0b33cc6279"},(0,n.kt)("inlineCode",{parentName:"a"},"fa9ae58"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): initial redesign of main section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8e85617157cdc31a7470acfcd72b85d8fadd1bce"},(0,n.kt)("inlineCode",{parentName:"a"},"8e85617"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): restructure theme sites logo columns ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dcba45a0bfd832c7d5d1e092db8ea4040eceda57"},(0,n.kt)("inlineCode",{parentName:"a"},"dcba45a"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): set actions before thematic section on mobile ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/db25f966a214c94677192215181453e9d59ca957"},(0,n.kt)("inlineCode",{parentName:"a"},"db25f96"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): fix missing key warning from react dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/77f72d5bdc719805a6314058c741387ee7155d28"},(0,n.kt)("inlineCode",{parentName:"a"},"77f72d5"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): Footer updates 147837 #222 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32fed231f1209caeddb18e0bb75d670f20bafb88"},(0,n.kt)("inlineCode",{parentName:"a"},"32fed23")))),(0,n.kt)("h3",{id:"075---2022-08-11"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.7.3...0.7.5"},"0.7.5")," - 2022-08-11"),(0,n.kt)("h4",{id:"-enhancements-33"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(megamenu): mobile improvements with See all links, active elements and non accordion children #224 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6767b99fea3925b35e9dede0a67ea90242e5e730"},(0,n.kt)("inlineCode",{parentName:"a"},"6767b99"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): render accordion only if children have children ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/be63ce2a8e240eac26eedeff0ca104813afbc6b3"},(0,n.kt)("inlineCode",{parentName:"a"},"be63ce2"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): mobile menu design tweaks as seen in latest figma ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/26d74dc063f0b3f8d541c714a10038d79145047e"},(0,n.kt)("inlineCode",{parentName:"a"},"26d74dc"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): removed icon from at a change menu items and they are no longer bold as requested ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/043e77219979711d2f25845c6811b546e791fbf7"},(0,n.kt)("inlineCode",{parentName:"a"},"043e772"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): reset first level panels after each item pass ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/175351bdc9bab5c2d02b2717c24071ba62d4b924"},(0,n.kt)("inlineCode",{parentName:"a"},"175351b"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): mobile menu improvements #223 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b3cabfe3ddc42c2ea39ae20d01bb6fd0db478ecc"},(0,n.kt)("inlineCode",{parentName:"a"},"b3cabfe"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): fixed key error warnings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/075bf0167554869e9fc2f4938c972112e4afa2f7"},(0,n.kt)("inlineCode",{parentName:"a"},"075bf01"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): handle default active sub accordion ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6192a9938b53522682953cb73d7ccfc6ef9c1aec"},(0,n.kt)("inlineCode",{parentName:"a"},"6192a99"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): enable active border only for items not titles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fb0b8696dd73cbf3083c3006a7cff5a1901a6bac"},(0,n.kt)("inlineCode",{parentName:"a"},"fb0b869")))),(0,n.kt)("h4",{id:"\ufe0f-others-32"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Update package.json ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e21e00dc1e0b54daef2c71311a9da709bc1f7e6d"},(0,n.kt)("inlineCode",{parentName:"a"},"e21e00d")))),(0,n.kt)("h3",{id:"073---2022-08-04"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.7.2...0.7.3"},"0.7.3")," - 2022-08-04"),(0,n.kt)("h4",{id:"-enhancements-34"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(megamenu): added icon on mega menu header section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d0ad4d80fc4941e0cdbd8a2d81415387f86efc1c"},(0,n.kt)("inlineCode",{parentName:"a"},"d0ad4d8")))),(0,n.kt)("h3",{id:"072---2022-08-03"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.7.1...0.7.2"},"0.7.2")," - 2022-08-03"),(0,n.kt)("h4",{id:"-bug-fixes-25"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(contentBox): z-index of content hidden by bg when using content-box-inner ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5a7dac923d648d8fe9c9a9cbb8001969d32aea2"},(0,n.kt)("inlineCode",{parentName:"a"},"c5a7dac")))),(0,n.kt)("h4",{id:"\ufe0f-others-33"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Set focus on search input field in the popup on click ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d12c05106d9b95df1885ffa12cb284a0e50e0dfd"},(0,n.kt)("inlineCode",{parentName:"a"},"d12c051"))),(0,n.kt)("li",{parentName:"ul"},"Make cypress tests work with both slate and draft selectors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4d8e5b1d7719637a46eac8232891fc5ed1f51b6f"},(0,n.kt)("inlineCode",{parentName:"a"},"4d8e5b1")))),(0,n.kt)("h3",{id:"071---2022-08-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.7.0...0.7.1"},"0.7.1")," - 2022-08-01"),(0,n.kt)("h3",{id:"070---2022-08-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.6.5...0.7.0"},"0.7.0")," - 2022-08-01"),(0,n.kt)("h4",{id:"-new-features-18"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(accordion,buttons): primary, secondary and tertiary variations #209 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c34617f7a7d7b6b7568c3127f4ae0f52bd57cf8a"},(0,n.kt)("inlineCode",{parentName:"a"},"c34617f")))),(0,n.kt)("h4",{id:"-bug-fixes-26"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(megamenu): key warning errors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ecd27921546204dfa4aa23d25188876e52cda7a"},(0,n.kt)("inlineCode",{parentName:"a"},"4ecd279"))),(0,n.kt)("li",{parentName:"ul"},"fix(container): add padding also for block editors when we are on the add page not just edit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b857aad7855c30c5059b0f0f7c0f720826a71aa7"},(0,n.kt)("inlineCode",{parentName:"a"},"b857aad"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): bump opacity of gradient class to get rid of green hue of header text ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2011b40d384ae5b54a0525e6d9afc88c02f6ca90"},(0,n.kt)("inlineCode",{parentName:"a"},"2011b40"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): remove console log ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3a200233609bbcea39d8e519dc292a132a98aaa3"},(0,n.kt)("inlineCode",{parentName:"a"},"3a20023")))),(0,n.kt)("h4",{id:"-enhancements-35"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(callToAction): add tertiary variant and restructure exports ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac6695ab3066c41739ec4852f0ec3c3bb6cea346"},(0,n.kt)("inlineCode",{parentName:"a"},"ac6695a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(accordion): add color variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3504c15cc861803dc263fb2ad3b6a478043ced33"},(0,n.kt)("inlineCode",{parentName:"a"},"3504c15"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): WIP bringing back rendering of item with callback and path modification ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e43d4340ea82afde950e5fee44a76119060fc28"},(0,n.kt)("inlineCode",{parentName:"a"},"6e43d43"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): add slide down transition and update targetRefs on close ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/96671574f5f7dd992269c42e509598f62bba516d"},(0,n.kt)("inlineCode",{parentName:"a"},"9667157"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): use renderMenuItem in order to render menu items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9ed5cbdf120ee2c92e5f14c09e5289a5abe3f8b0"},(0,n.kt)("inlineCode",{parentName:"a"},"9ed5cbd"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): replaced eionet logo with an svg variant and tweaked size of eionet to match size of eea logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32ce4623ad454edec864ad6c8b45cbf99465bede"},(0,n.kt)("inlineCode",{parentName:"a"},"32ce462"))),(0,n.kt)("li",{parentName:"ul"},"refactor(callToAction): update tertiary state colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/159668ac526a98032392bcbd2c115dc448193152"},(0,n.kt)("inlineCode",{parentName:"a"},"159668a"))),(0,n.kt)("li",{parentName:"ul"},"change(accordion): style default accordion using the grey from semantic ui ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e24907df397457bd9704905aa29ea5d7e1d396cd"},(0,n.kt)("inlineCode",{parentName:"a"},"e24907d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(accordion): add variations and create a default export ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a9c68ffe933c9d700e46db3e0cbbd9e3820c7c7"},(0,n.kt)("inlineCode",{parentName:"a"},"4a9c68f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(colors): add tertiary shades for element states ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1e24a7e13b50f1ee7bd9bd44f3b2eb8e4460c691"},(0,n.kt)("inlineCode",{parentName:"a"},"1e24a7e"))),(0,n.kt)("li",{parentName:"ul"},"change(tests): try to modify tests to use slate instead of draft ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a2e248593433a7a8bf612008c12a3a20a0049d86"},(0,n.kt)("inlineCode",{parentName:"a"},"a2e2485"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): set active class on storybook list items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/112bff195cd07e789b352ae239a148a168b4d877"},(0,n.kt)("inlineCode",{parentName:"a"},"112bff1"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): add border for active element of menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5e7dfa539dc0d126dfb057ac2d293c94b31561bb"},(0,n.kt)("inlineCode",{parentName:"a"},"5e7dfa5"))),(0,n.kt)("li",{parentName:"ul"},"change(package): condition modification of navDepth settings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dd21dadf34f87f08223be3b98c06e7a2f0714326"},(0,n.kt)("inlineCode",{parentName:"a"},"dd21dad"))),(0,n.kt)("li",{parentName:"ul"},"change(mega menu): use non variable to fix build of volto-kitkat-frontend ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ecd652405ba616c9defc86fd793f8c066c0af1e"},(0,n.kt)("inlineCode",{parentName:"a"},"3ecd652"))),(0,n.kt)("li",{parentName:"ul"},"change(header): prefix mega-menu active class for adding border ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32898cb19c20ee7696c51b99cd9df25a333ae6e9"},(0,n.kt)("inlineCode",{parentName:"a"},"32898cb"))),(0,n.kt)("li",{parentName:"ul"},"change(tests): use data-slate-editor instead of contents that was found in draft js instead of slate ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1e0413cf117c098b188e00249c323f2f718b9299"},(0,n.kt)("inlineCode",{parentName:"a"},"1e0413c"))),(0,n.kt)("li",{parentName:"ul"},"change(stories): hide variant control from button link story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/43f8c412f6762edbed9c60e613736d5b60677cd1"},(0,n.kt)("inlineCode",{parentName:"a"},"43f8c41"))),(0,n.kt)("li",{parentName:"ul"},"change(stories): hide variant control from button link story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aea712668331f5681028d961b42a05655f1113d3"},(0,n.kt)("inlineCode",{parentName:"a"},"aea7126")))),(0,n.kt)("h4",{id:"\ufe0f-others-34"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feature(theme): added context navigation component story and default style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5a6955fe935cf6a07f6593164014ed4c9e77d88f"},(0,n.kt)("inlineCode",{parentName:"a"},"5a6955f"))),(0,n.kt)("li",{parentName:"ul"},"feature(megamenu): open default accordions on mobile navigation based on pathname ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cc299c1047f96aa5f85cdc4bb8bb9b3b4fb9ca5e"},(0,n.kt)("inlineCode",{parentName:"a"},"cc299c1"))),(0,n.kt)("li",{parentName:"ul"},"fix eslint warnings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3b30282ea4df59f2d05644cae5c1d703b4dc48b3"},(0,n.kt)("inlineCode",{parentName:"a"},"3b30282"))),(0,n.kt)("li",{parentName:"ul"},"bump release version to 0.7.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fa82cbd7d50765c322bc5c7c58abb5675e0aadad"},(0,n.kt)("inlineCode",{parentName:"a"},"fa82cbd"))),(0,n.kt)("li",{parentName:"ul"},"Theme fixes, mega menu selected element both in desktop and mobile #211 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4827292a9badb02f178b7431cc63e11070784ea"},(0,n.kt)("inlineCode",{parentName:"a"},"b482729"))),(0,n.kt)("li",{parentName:"ul"},"feature(mega-menu): added menu slide down animation #208 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4360d0ef570fbfcc9989170219f7826e5ed780cf"},(0,n.kt)("inlineCode",{parentName:"a"},"4360d0e")))),(0,n.kt)("h3",{id:"065---2022-07-06"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.6.1...0.6.5"},"0.6.5")," - 2022-07-06"),(0,n.kt)("h4",{id:"-bug-fixes-27"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(header): double click to close dropdown is no longer required ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8a2ed0d1e671d12239ecaf250e68b3187c12a53"},(0,n.kt)("inlineCode",{parentName:"a"},"b8a2ed0"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): menu generation when atAGlance isn't found ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d68b03c05f7671e7ea154efe0199c29a3734fbcf"},(0,n.kt)("inlineCode",{parentName:"a"},"d68b03c"))),(0,n.kt)("li",{parentName:"ul"},"fix(menu): removed minHeight that enlarged the global menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/133be1e43d9b7778fd94388629400c5f2b707ff4"},(0,n.kt)("inlineCode",{parentName:"a"},"133be1e"))),(0,n.kt)("li",{parentName:"ul"},"fix(hero): image dimensions when full width and height isn't enabled ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4114f731cce63dc520bfd00cd487943181cec2ee"},(0,n.kt)("inlineCode",{parentName:"a"},"4114f73"))),(0,n.kt)("li",{parentName:"ul"},"fix(contentBox): removed negative z-index that hid fullwidth bg color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bd60faff53205da95d94930517f2ac830ec523d1"},(0,n.kt)("inlineCode",{parentName:"a"},"bd60faf")))),(0,n.kt)("h4",{id:"-enhancements-36"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(hero): tweaked hero block height and padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/994b6f8943c061657792df8adcbdee5da487ce43"},(0,n.kt)("inlineCode",{parentName:"a"},"994b6f8"))),(0,n.kt)("li",{parentName:"ul"},"change(item): tweak size and padding of icon when used inside item ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dbdef191e70bf59dcfddf63c8f9f9a1343266a59"},(0,n.kt)("inlineCode",{parentName:"a"},"dbdef19"))),(0,n.kt)("li",{parentName:"ul"},"change(typography): updated letterspacing values and clarified values used for certain type tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8a13bf8b3691d288209532842fb2c80962d652c0"},(0,n.kt)("inlineCode",{parentName:"a"},"8a13bf8"))),(0,n.kt)("li",{parentName:"ul"},"change(item): enable theming for icon and text color and added tertiary option ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d4444feedd1cd7e6e8f8da630b4b53a19050d1b"},(0,n.kt)("inlineCode",{parentName:"a"},"6d4444f"))),(0,n.kt)("li",{parentName:"ul"},"change(header): top section chevron sizes and margin as requested in enhancements document ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b307c74a671c10a5a6703dcb2126c3c36679c6f5"},(0,n.kt)("inlineCode",{parentName:"a"},"b307c74"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): add underline to links when applied to headers and use tertiary color by default ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/874f956c61e65ddbb6a240865f3946bb84247712"},(0,n.kt)("inlineCode",{parentName:"a"},"874f956"))),(0,n.kt)("li",{parentName:"ul"},"change(utilities): wrap in quotes h2 and h3 of quoted-wrapper ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8aa471604fb127cfa535373bb90a44b4204dd0f4"},(0,n.kt)("inlineCode",{parentName:"a"},"8aa4716"))),(0,n.kt)("li",{parentName:"ul"},"change(package): bump package version to 0.6.5 denoting bug fixes release ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0585aebaeb9e3483ba230110d99a1a875590ad66"},(0,n.kt)("inlineCode",{parentName:"a"},"0585aeb")))),(0,n.kt)("h3",{id:"061---2022-07-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.6.0...0.6.1"},"0.6.1")," - 2022-07-01"),(0,n.kt)("h4",{id:"-new-features-19"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(UnderlinedTitle): create story and necessary utilities ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8beb56b64ca76fb9f0f6df0f3554e64449a64868"},(0,n.kt)("inlineCode",{parentName:"a"},"8beb56b"))),(0,n.kt)("li",{parentName:"ul"},"feat(headers): added underlined titles with theming support ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af675616f9e002458501cf8b90742514153a298f"},(0,n.kt)("inlineCode",{parentName:"a"},"af67561")))),(0,n.kt)("h4",{id:"-enhancements-37"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(heading): move underline story and update controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2c9bfd279eafc44435d223be326f9496856c2154"},(0,n.kt)("inlineCode",{parentName:"a"},"2c9bfd2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(underlineTitle): add content box for different variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/087891535059d6c2d7d2c2accded20f6ba601bb5"},(0,n.kt)("inlineCode",{parentName:"a"},"0878915"))),(0,n.kt)("li",{parentName:"ul"},"refactor(underlinedTitle): add control for changing heading size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/211f5158bff2b437aac60f26ba63f9adb6be540a"},(0,n.kt)("inlineCode",{parentName:"a"},"211f515"))),(0,n.kt)("li",{parentName:"ul"},"refactor(underlinedTitle): Restore text variation dropdown control ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bd8c61129d2c80475af8d0e9310412d5c3a82169"},(0,n.kt)("inlineCode",{parentName:"a"},"bd8c611"))),(0,n.kt)("li",{parentName:"ul"},"refactor(utilities): add color variation for headings and text ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e3a779ec4fa3b712fcd32124f6f83ab784d2223"},(0,n.kt)("inlineCode",{parentName:"a"},"7e3a779"))),(0,n.kt)("li",{parentName:"ul"},"refactor(utilities): update border bottom utility and restore line height for headings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7fe4a7b9fee579d213fe3945a4e548ff089784bd"},(0,n.kt)("inlineCode",{parentName:"a"},"7fe4a7b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(headings): update the line height of headers according to docusaurus instructions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9da19b3e1ea1fd93431e00edf3dc9a443e94f27a"},(0,n.kt)("inlineCode",{parentName:"a"},"9da19b3")))),(0,n.kt)("h4",{id:"-internal-changes-13"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(countup): package for statistics ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/26fcd09bbd8d44119d5ca957542863be8c64836b"},(0,n.kt)("inlineCode",{parentName:"a"},"26fcd09")))),(0,n.kt)("h3",{id:"060---2022-07-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.5.5...0.6.0"},"0.6.0")," - 2022-07-01"),(0,n.kt)("h4",{id:"-bug-fixes-28"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(item): adjust the container in stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a848c46b5bf3153ec993a21a530e120bae872407"},(0,n.kt)("inlineCode",{parentName:"a"},"a848c46"))),(0,n.kt)("li",{parentName:"ul"},"fix(tag): align start for tags on mobile, update path for Tag List and add containers ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b9de8452c42ed6d16028ce147f2d7a062b895d67"},(0,n.kt)("inlineCode",{parentName:"a"},"b9de845"))),(0,n.kt)("li",{parentName:"ul"},"fix(item): update image width & height on mobiles and add 3 line clamp for description ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0cd2c46c945ff85b55183994990fae9cf450f3d1"},(0,n.kt)("inlineCode",{parentName:"a"},"0cd2c46"))),(0,n.kt)("li",{parentName:"ul"},"fix(pageheader): metadata font size on mobile to be readable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0a9b1fa7db6f0b11265f9eb4d28f25b23bedc79a"},(0,n.kt)("inlineCode",{parentName:"a"},"0a9b1fa"))),(0,n.kt)("li",{parentName:"ul"},"fix(breadcrumb): fixed variable name for breadcrumb item ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2b547eb43e0db4aa9bb63b4e4ba7f541f357fbd0"},(0,n.kt)("inlineCode",{parentName:"a"},"2b547eb")))),(0,n.kt)("h4",{id:"-enhancements-38"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(Item):create item story with custom default class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/069ae02a7cc2b15b7e6732e46f52d07eaa4502b1"},(0,n.kt)("inlineCode",{parentName:"a"},"069ae02"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pagination): add pastanage menu overrides and remove any eea theme css from default story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/508081090baaeb455130c760c6c0e7e23972d84a"},(0,n.kt)("inlineCode",{parentName:"a"},"5080810"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): update variables from px to rem ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/30eed78c170e5719ba4fb85c3a171db3f97d63c8"},(0,n.kt)("inlineCode",{parentName:"a"},"30eed78"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Item):add default item mobile padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/35184655e3225b8ad63626c8e521b5dcf59eaa3b"},(0,n.kt)("inlineCode",{parentName:"a"},"3518465"))),(0,n.kt)("li",{parentName:"ul"},"change(site): added fixes from custom ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0fe4d80586c8877d58905ec40aa7df19c2f4e32f"},(0,n.kt)("inlineCode",{parentName:"a"},"0fe4d80"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Pagination): add default pagination stopry and rename previous as Secondary ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a5e3e13b40d4d1d0c96f1efaa3a0c326d60c6d93"},(0,n.kt)("inlineCode",{parentName:"a"},"a5e3e13"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pagination): comment out secondary pagination and its styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bcf4cff1cff490718751475354b8fb32da174383"},(0,n.kt)("inlineCode",{parentName:"a"},"bcf4cff"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tags): remove content class and add flex wrap ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d6333ca7e61a588d8ffe4d0d2e02005c0aa12379"},(0,n.kt)("inlineCode",{parentName:"a"},"d6333ca"))),(0,n.kt)("li",{parentName:"ul"},"change(logo): use a real svg logo for white eea logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3b80dc7698c3dbab5d3834cc62f5102c2ace0166"},(0,n.kt)("inlineCode",{parentName:"a"},"3b80dc7"))),(0,n.kt)("li",{parentName:"ul"},"change(header): show eea information systems on tablet as well ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce82cebb554eb11a35ea2b3ee0c62bc645716476"},(0,n.kt)("inlineCode",{parentName:"a"},"ce82ceb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): update letter spacing tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f8753b7527b1bf7271102666a8662a74b2b1775"},(0,n.kt)("inlineCode",{parentName:"a"},"5f8753b"))),(0,n.kt)("li",{parentName:"ul"},"change(letterspacing): updated letter spacing positive values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b31818f292ce7ce8711084116a7b4df78cca33f0"},(0,n.kt)("inlineCode",{parentName:"a"},"b31818f"))),(0,n.kt)("li",{parentName:"ul"},"change(pageheader): add bottom margin on mobile for sharing dropdown actions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d3cda4732ec94dac91b36ef10014fbbe08a0a470"},(0,n.kt)("inlineCode",{parentName:"a"},"d3cda47"))),(0,n.kt)("li",{parentName:"ul"},"change(pageheader): removed blogger, reddit and stumbleupon sharing links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e4acc4e83c120cda59d94f04867a53e21bf322ab"},(0,n.kt)("inlineCode",{parentName:"a"},"e4acc4e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Item): add default item background color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c978c8d05355065466a8a661844237a9df103b94"},(0,n.kt)("inlineCode",{parentName:"a"},"c978c8d"))),(0,n.kt)("li",{parentName:"ul"},"change(package): bump package version ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f01f72ba6b09b6aae00c54e446bafddb48c4cd1"},(0,n.kt)("inlineCode",{parentName:"a"},"1f01f72")))),(0,n.kt)("h4",{id:"-internal-changes-14"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(item): update item image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e585e9d8c85a3627696b55c0505e29e8a8c33f7f"},(0,n.kt)("inlineCode",{parentName:"a"},"e585e9d")))),(0,n.kt)("h4",{id:"-documentation-changes-13"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(colors): token usage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c433ec6fcf190f85ab1dd81ea3e63eeb381d0c28"},(0,n.kt)("inlineCode",{parentName:"a"},"c433ec6"))),(0,n.kt)("li",{parentName:"ul"},"docs(Docusaurus): typography and spacing updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48d1269dce396aec26db1d1e2f777851a26eaa81"},(0,n.kt)("inlineCode",{parentName:"a"},"48d1269"))),(0,n.kt)("li",{parentName:"ul"},"docs(Docusaurus): various fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a972a31f7932d29d61a46da251c0c98994516365"},(0,n.kt)("inlineCode",{parentName:"a"},"a972a31"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/66d95e4fee695a20de47f5476712034f9f07f4a8"},(0,n.kt)("inlineCode",{parentName:"a"},"66d95e4")))),(0,n.kt)("h4",{id:"\ufe0f-others-35"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Tabs block custom border left/top ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca4cce05ddb603a26d729dfe31f0f11fda7563fb"},(0,n.kt)("inlineCode",{parentName:"a"},"ca4cce0"))),(0,n.kt)("li",{parentName:"ul"},"Fix sidebar tabs in Volto CSS ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c287db5abbfe068d4b255c41fd58d0433d2640c4"},(0,n.kt)("inlineCode",{parentName:"a"},"c287db5")))),(0,n.kt)("h3",{id:"055---2022-06-23"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.5.4...0.5.5"},"0.5.5")," - 2022-06-23"),(0,n.kt)("h4",{id:"-bug-fixes-29"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(contentBox): color of cards when inside content-boxes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/76a452031473f43928dee1d3ee705d06101e6a21"},(0,n.kt)("inlineCode",{parentName:"a"},"76a4520")))),(0,n.kt)("h4",{id:"-enhancements-39"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(homepage): moved fixes of homepage to custom and colored carousel arrow ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0a226ef3f5d328d45513764bec02d58241417db0"},(0,n.kt)("inlineCode",{parentName:"a"},"0a226ef")))),(0,n.kt)("h3",{id:"054---2022-06-16"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.5.3...0.5.4"},"0.5.4")," - 2022-06-16"),(0,n.kt)("h4",{id:"-bug-fixes-30"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(block-style): Content box preview in sidebar ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6362766f5e8dabf778e3864d2bb08966a55fc078"},(0,n.kt)("inlineCode",{parentName:"a"},"6362766"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): ensure transparency goes as high as the search icon ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4470e132e1e70fba3fdfb33fc63a1cc9d62700e8"},(0,n.kt)("inlineCode",{parentName:"a"},"4470e13")))),(0,n.kt)("h4",{id:"-enhancements-40"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(contentBox): add background as before element instead of using full-width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e0a5962c1b9cb0d3ef9a8d7b7208eded34eb3ce"},(0,n.kt)("inlineCode",{parentName:"a"},"7e0a596"))),(0,n.kt)("li",{parentName:"ul"},"change(content-box): content box links are now underlined ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f7976f50f5807a884522d6dba871a2757a1c5a98"},(0,n.kt)("inlineCode",{parentName:"a"},"f7976f5"))),(0,n.kt)("li",{parentName:"ul"},"change(homepage): added fixes from custom ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c3e03331d328f4fd7c6689f93bc1f1156013b8a9"},(0,n.kt)("inlineCode",{parentName:"a"},"c3e0333"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): add margin top with the height of the top section on edit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fefa6bb0f513e221ddb587f081c0e7d0c3067dfd"},(0,n.kt)("inlineCode",{parentName:"a"},"fefa6bb"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): fix default card color when inside content-boxes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6fdf3aabf9515289b36a5822e21edc5d282c4536"},(0,n.kt)("inlineCode",{parentName:"a"},"6fdf3aa"))),(0,n.kt)("li",{parentName:"ul"},"change(container): removed override of content-box-inner container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/66fe7d45adc631c3ebf0e8dd11de19d7ff60b894"},(0,n.kt)("inlineCode",{parentName:"a"},"66fe7d4")))),(0,n.kt)("h3",{id:"053---2022-06-16"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.5.2...0.5.3"},"0.5.3")," - 2022-06-16"),(0,n.kt)("h4",{id:"-bug-fixes-31"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(homepage): hero and homepage fixes for #151156 #198 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/43d4efc508750e0e9cbb93b9bffc3721be452c5a"},(0,n.kt)("inlineCode",{parentName:"a"},"43d4efc"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): fixed top section width on edit page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce5898b5ee41ea6959a2c454b3fb98216d71feb3"},(0,n.kt)("inlineCode",{parentName:"a"},"ce5898b")))),(0,n.kt)("h4",{id:"-enhancements-41"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(hero): added min height to hero-block-image-wrapper ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3cc37c027597573281710c9db98c687057d261dd"},(0,n.kt)("inlineCode",{parentName:"a"},"3cc37c0"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): spaced hero block has a 3rem margin top and bottom ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c463b033dda601bfd475b282bc0003200a053d45"},(0,n.kt)("inlineCode",{parentName:"a"},"c463b03"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): added extra top margin on hero-block-body from tablet and up within homepage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/64142c3c45f6a8ea6502842055a2341dcf16088c"},(0,n.kt)("inlineCode",{parentName:"a"},"64142c3"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): tweak min height of hero block ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e1271b4b5fdcd8205f0bec8b88ab9ae31f62251f"},(0,n.kt)("inlineCode",{parentName:"a"},"e1271b4"))),(0,n.kt)("li",{parentName:"ul"},"change(card,contentBox): use inherit for text color to inherit black from body ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c1ba3b6ddc16ddc7394aba8d78cad73b5a8c34cb"},(0,n.kt)("inlineCode",{parentName:"a"},"c1ba3b6"))),(0,n.kt)("li",{parentName:"ul"},"change(container): on section-edit modify only left and right padding values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fe6e3ec764643ec01e20ae9dbdde921774ef04cd"},(0,n.kt)("inlineCode",{parentName:"a"},"fe6e3ec"))),(0,n.kt)("li",{parentName:"ul"},"change(utilities): bump z-index of overlay class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ede3209556b620d2252bb03d4c994a92b6708fd2"},(0,n.kt)("inlineCode",{parentName:"a"},"ede3209"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): fixed variable reference for margin of body from homepage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/092b90b2a902b71cc96132ca3c96108edda56342"},(0,n.kt)("inlineCode",{parentName:"a"},"092b90b")))),(0,n.kt)("h3",{id:"052---2022-06-14"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.5.1...0.5.2"},"0.5.2")," - 2022-06-14"),(0,n.kt)("h4",{id:"-new-features-20"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(contentBox) : add new Content Box component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ebbb47fe685f9809aa3572263be376d9688371e"},(0,n.kt)("inlineCode",{parentName:"a"},"2ebbb47"))),(0,n.kt)("li",{parentName:"ul"},"feat(ContentBox): Add primary, secondary, tertiary themes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87cb2fe7e4cd5c2872299756f493e371abcbb05f"},(0,n.kt)("inlineCode",{parentName:"a"},"87cb2fe"))),(0,n.kt)("li",{parentName:"ul"},"feat(ContentBox): Update storybook with available themes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93b26b2f5f1d627aa8049df61257499e4798dd79"},(0,n.kt)("inlineCode",{parentName:"a"},"93b26b2")))),(0,n.kt)("h4",{id:"-enhancements-42"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(contentBox): restructure the component to be more flexible ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f0d2de67e43fafa10052871f99ac841c83cf8157"},(0,n.kt)("inlineCode",{parentName:"a"},"f0d2de6")))),(0,n.kt)("h4",{id:"-internal-changes-15"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(contentBox) : add lint changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5aaf740594f0001b1672bb6dc18d973f55c881f0"},(0,n.kt)("inlineCode",{parentName:"a"},"5aaf740")))),(0,n.kt)("h4",{id:"\ufe0f-others-36"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"perf(eol): change to lf ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/78b2955ff73d9436134d1a6399040b2d7c7f5714"},(0,n.kt)("inlineCode",{parentName:"a"},"78b2955"))),(0,n.kt)("li",{parentName:"ul"},"Cleanup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2b128dface95b560588a343f1ddf7bbaf3efb320"},(0,n.kt)("inlineCode",{parentName:"a"},"2b128df")))),(0,n.kt)("h3",{id:"051---2022-06-13"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.5.0...0.5.1"},"0.5.1")," - 2022-06-13"),(0,n.kt)("h4",{id:"-enhancements-43"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(header): changed homepage text color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/64ce8b61f8f2150513e09bf2926b48aa2ae1071c"},(0,n.kt)("inlineCode",{parentName:"a"},"64ce8b6"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): added styles for adding dark overlay to hero ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bf1d292fecfa8a6b222558f0d93f48e19bf6b8ea"},(0,n.kt)("inlineCode",{parentName:"a"},"bf1d292"))),(0,n.kt)("li",{parentName:"ul"},"change(homepage): hide stagingBanner on homepage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fb6e319dd10f4d148cc8f3b33dafc43280a0254f"},(0,n.kt)("inlineCode",{parentName:"a"},"fb6e319"))),(0,n.kt)("li",{parentName:"ul"},"change(header): use variable for homepage hero-block padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/89ff3441f269281ffb3da32cd3e5c64715b3204b"},(0,n.kt)("inlineCode",{parentName:"a"},"89ff344"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): modified grey-4 color to point to a 10% shade from original color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b406283e61c7356bec9d453567cd1ccde496880d"},(0,n.kt)("inlineCode",{parentName:"a"},"b406283"))),(0,n.kt)("li",{parentName:"ul"},"change(header): added min-height for mega menu needed for 1 items menus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/18814f48fb743c88d05554e9a1773f8d85dec86c"},(0,n.kt)("inlineCode",{parentName:"a"},"18814f4"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): hero section block integration #192 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ea2f40583951016c164c9abdf22d8e809d207fe"},(0,n.kt)("inlineCode",{parentName:"a"},"4ea2f40")))),(0,n.kt)("h4",{id:"\ufe0f-others-37"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Add hero block style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fa39656fd661d8af95f483a6f33a08e4c93c42f1"},(0,n.kt)("inlineCode",{parentName:"a"},"fa39656"))),(0,n.kt)("li",{parentName:"ul"},"Add padding if hero block is not full-width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/808b83957d6a866cc31c928f414fa8fa5da517a1"},(0,n.kt)("inlineCode",{parentName:"a"},"808b839"))),(0,n.kt)("li",{parentName:"ul"},"Cleanup available languages ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0c490512a6a6524efe9a37b4b61ab0061a240abb"},(0,n.kt)("inlineCode",{parentName:"a"},"0c49051"))),(0,n.kt)("li",{parentName:"ul"},"Use 1.5 rem ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1125cd7c65332fc5961ffbbbd2d2ab6bcc8b1b5b"},(0,n.kt)("inlineCode",{parentName:"a"},"1125cd7")))),(0,n.kt)("h3",{id:"050---2022-06-11"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.4.5...0.5.0"},"0.5.0")," - 2022-06-11"),(0,n.kt)("h4",{id:"-new-features-21"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(hero): added storybook implementation of hero component #172 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/17b9d1693e31bf7b3b41ca84be7bd21f07065674"},(0,n.kt)("inlineCode",{parentName:"a"},"17b9d16"))),(0,n.kt)("li",{parentName:"ul"},"feat(hero): add hero block component and stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6019fc843ec14a8afc7558e92c2d4b4bb14ee199"},(0,n.kt)("inlineCode",{parentName:"a"},"6019fc8")))),(0,n.kt)("h4",{id:"-bug-fixes-32"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(header): Internal links in mega menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d8ca13558c3e8c336800791f2fea8a8d33a2b602"},(0,n.kt)("inlineCode",{parentName:"a"},"d8ca135"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): show active menu when clicking on children ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a54fa67a1a92e2ab4216e6d149f66e1ee53aab89"},(0,n.kt)("inlineCode",{parentName:"a"},"a54fa67"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): accessibility and dropdown possition fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/505ac36a27d86e620fb5af515a0b8b5979610f0a"},(0,n.kt)("inlineCode",{parentName:"a"},"505ac36"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): fix accessibility issue by David ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/783dcec0d140e6e6e568d0f82833dcbf8a5c7d3d"},(0,n.kt)("inlineCode",{parentName:"a"},"783dcec"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): dropdowns disappear on resize ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/52338fd3e711f4918612e052dc2034a8d9bd40bd"},(0,n.kt)("inlineCode",{parentName:"a"},"52338fd"))),(0,n.kt)("li",{parentName:"ul"},"fix(header-topdropdown): dedupe html elements for topdropdowns ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cd8a2a7ea091e81b736438f7c2a87c254af1b092"},(0,n.kt)("inlineCode",{parentName:"a"},"cd8a2a7"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): transparency class should apply on the current bg color or image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f9a0033c5538cb19f08f26cf28d47954cc52607d"},(0,n.kt)("inlineCode",{parentName:"a"},"f9a0033"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): mobile dropdown now visible ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/34371b436f2ec100f3920f78de49983ba16679b0"},(0,n.kt)("inlineCode",{parentName:"a"},"34371b4"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): dropdown disappears after window resize #116 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fc7dd8bd7911421fb734a696a2dd5d3ad3b652b0"},(0,n.kt)("inlineCode",{parentName:"a"},"fc7dd8b"))),(0,n.kt)("li",{parentName:"ul"},"fix(header-topdropdown): dedupe html dropdown elements for topdropdowns #115 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f10a7a8743a5fb2cecd0c3374ec9d894e914143f"},(0,n.kt)("inlineCode",{parentName:"a"},"f10a7a8")))),(0,n.kt)("h4",{id:"-enhancements-44"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): update mega menu in header component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2d1ce454553d116efa96288079b8b77649e10abb"},(0,n.kt)("inlineCode",{parentName:"a"},"2d1ce45"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update structure and variables of top bar ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af709094f94f0cc2e2309b1aedb376e45dc7f136"},(0,n.kt)("inlineCode",{parentName:"a"},"af70909"))),(0,n.kt)("li",{parentName:"ul"},"change(header): renamed mega menu items href attribute to url ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ed8144589f87a9ad219c97193863c999a72cb6d"},(0,n.kt)("inlineCode",{parentName:"a"},"3ed8144"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update main section and and add color variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2f0fd1de7c04eff4b2a9b62d03dd13a1b0d69bc"},(0,n.kt)("inlineCode",{parentName:"a"},"f2f0fd1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): minor updates on colors and widths ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a70129fd929fedb344a47e049cca94274e84a3b1"},(0,n.kt)("inlineCode",{parentName:"a"},"a70129f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero): add full-heigh control to adjust height ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a45cb7c599cdc11426207001e67d8f7d727233fe"},(0,n.kt)("inlineCode",{parentName:"a"},"a45cb7c"))),(0,n.kt)("li",{parentName:"ul"},"change(header): disable sticky setting until feature is more stable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1d7af954c85cb6a8a657c1625e4ae863e562346a"},(0,n.kt)("inlineCode",{parentName:"a"},"1d7af95"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero):make button variant and inverted different button controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e182ca9ecdb76507205d84f83cad6a79dd74a03"},(0,n.kt)("inlineCode",{parentName:"a"},"7e182ca"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header):main bar sticky on scroll up ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9c9e7c6f9651c0663a1eab1856d7324a73afb2de"},(0,n.kt)("inlineCode",{parentName:"a"},"9c9e7c6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(headings): update heading sizes for mobile ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19f3ccacaf2c744b5f5c2ec8635773de7ef0016b"},(0,n.kt)("inlineCode",{parentName:"a"},"19f3cca"))),(0,n.kt)("li",{parentName:"ul"},"change(header): hide first link(home) from header menu on site ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ae7f3b9385620eb3d840dd90f512e37cd8556a6d"},(0,n.kt)("inlineCode",{parentName:"a"},"ae7f3b9"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): typo correction and key setting on list.items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/96d2c4fbfa722d22a215e8d27f1400e65fe9476e"},(0,n.kt)("inlineCode",{parentName:"a"},"96d2c4f"))),(0,n.kt)("li",{parentName:"ul"},"change(header): use Link instead of a tag for menu items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9812b3fba7b8305399d6972daf135b8a2d88e876"},(0,n.kt)("inlineCode",{parentName:"a"},"9812b3f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add control for inverted logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/023ca45e6f263166211cbea0d63b1938d11221da"},(0,n.kt)("inlineCode",{parentName:"a"},"023ca45"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero): move quoted utility to h2 tag ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7376676b4875494f16c49945f6b5dac19c6b8009"},(0,n.kt)("inlineCode",{parentName:"a"},"7376676"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add link for menu title inside desktop mega menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24355d000b2bd808b2031cd2b78e60cafb9ad5b1"},(0,n.kt)("inlineCode",{parentName:"a"},"24355d0"))),(0,n.kt)("li",{parentName:"ul"},"refactor(utilities): update hex with color token ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8dc65ef55a62dcb32b6eb8a684524a8dc1fa6ba6"},(0,n.kt)("inlineCode",{parentName:"a"},"8dc65ef"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): and mega menu to latest spec #114 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/44fcf68be242f97ced852b28ac3ab820dc0e1045"},(0,n.kt)("inlineCode",{parentName:"a"},"44fcf68"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update search input and file endings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/afab36f96f245e197eff528cb1d9e6fea45bc7ba"},(0,n.kt)("inlineCode",{parentName:"a"},"afab36f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add control that toggles transparency class on main section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8d4bdb9c527f102ffd3718f32bf1a43309a9bb4"},(0,n.kt)("inlineCode",{parentName:"a"},"b8d4bdb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): restore union dropdown after implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e98bab497ee10ad89d2dfed76c7117b633206fe"},(0,n.kt)("inlineCode",{parentName:"a"},"7e98bab"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): minor responsive fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/16a000634505c9e8f8b310860a30b62798a0fb87"},(0,n.kt)("inlineCode",{parentName:"a"},"16a0006"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero): align hero's text and meta seperately ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4fa958f7c7cc6d331a8eb7aaf25dc44d6cd3632a"},(0,n.kt)("inlineCode",{parentName:"a"},"4fa958f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero):add button variant controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f362a7b2ec273131fa0876f23b74c740c7217b3a"},(0,n.kt)("inlineCode",{parentName:"a"},"f362a7b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update search input ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/368962eabb668e2ec1bdcd18ae81658e7b1d911b"},(0,n.kt)("inlineCode",{parentName:"a"},"368962e"))),(0,n.kt)("li",{parentName:"ul"},"change(header): mark top level active menu item ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/665c449bc2667cc1471a4b97923c897ad3506792"},(0,n.kt)("inlineCode",{parentName:"a"},"665c449"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero):prettier & style changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d84688440417a430afd9fd24f4c8cfeef0121203"},(0,n.kt)("inlineCode",{parentName:"a"},"d846884"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add control for main section stickiness ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2f07572f78074137e7e6a49585273210ed5cedcb"},(0,n.kt)("inlineCode",{parentName:"a"},"2f07572"))),(0,n.kt)("li",{parentName:"ul"},"change(header): use viewport width for changing mobile text in header dropdowns ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b50fa585c0abeedc04a46395f08e50a9e112c430"},(0,n.kt)("inlineCode",{parentName:"a"},"b50fa58"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add fluid font sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f2743e39107fd1bd00a54e03bf92963eb9853f2"},(0,n.kt)("inlineCode",{parentName:"a"},"5f2743e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header) add position sticky & transparent for main section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/29df772edfe23b1752aa3d184659eea90c3c9221"},(0,n.kt)("inlineCode",{parentName:"a"},"29df772"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero): update variables with new design tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1d9792231c50f12fd68364e201054f6ab0926665"},(0,n.kt)("inlineCode",{parentName:"a"},"1d97922"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Language List): render language dropdown as ul and li elements ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3617442da78af07d3f473d0c43c47dd48c9b2ac3"},(0,n.kt)("inlineCode",{parentName:"a"},"3617442"))),(0,n.kt)("li",{parentName:"ul"},"change(header): introduced item class to the mega menu link content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/00ca376ea4cf1de4851e84567b97c374ee7f66e3"},(0,n.kt)("inlineCode",{parentName:"a"},"00ca376"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Language List): add less variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7ccc1ccf57419b6eecbf71d479db72b84428d43a"},(0,n.kt)("inlineCode",{parentName:"a"},"7ccc1cc"))),(0,n.kt)("li",{parentName:"ul"},"change(header): disabled active menu when clicking on globalnav links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3f7b5eedb038b51fbae8a14a683dc6adc919549b"},(0,n.kt)("inlineCode",{parentName:"a"},"3f7b5ee"))),(0,n.kt)("li",{parentName:"ul"},"change(header): target link instead of span directly ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9e865fbb5b256196756c3d84de397296ac0b447a"},(0,n.kt)("inlineCode",{parentName:"a"},"9e865fb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): remove unused imports ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e232db6ce0b2553be79d98d8497fa06f548b772"},(0,n.kt)("inlineCode",{parentName:"a"},"7e232db")))),(0,n.kt)("h4",{id:"\ufe0f-others-38"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Add item themes; override .block .ui.image width based on size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/06010db21398638d46d2e007317d72a7aff7e7d9"},(0,n.kt)("inlineCode",{parentName:"a"},"06010db"))),(0,n.kt)("li",{parentName:"ul"},"Move item icon themes to item.overrides ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/31e8921f4ee4d92ba3a9c58275b41dd3101cffd2"},(0,n.kt)("inlineCode",{parentName:"a"},"31e8921"))),(0,n.kt)("li",{parentName:"ul"},"Override only the width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8d4927084e5daedcb69e6f3a57cab73a9016a55f"},(0,n.kt)("inlineCode",{parentName:"a"},"8d49270"))),(0,n.kt)("li",{parentName:"ul"},"Override tile image in .block parrent ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/005655ddff6f45e211f1ff8156b0b7efa1e47a2e"},(0,n.kt)("inlineCode",{parentName:"a"},"005655d"))),(0,n.kt)("li",{parentName:"ul"},"Update package.json ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9dc38165a95deca1faf2dfccdc03fd6cab3d8c54"},(0,n.kt)("inlineCode",{parentName:"a"},"9dc3816"))),(0,n.kt)("li",{parentName:"ul"},"feature(item): added themes to item icons #190 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a6a2907df09575a18fb6e81dc52e8d6651eff118"},(0,n.kt)("inlineCode",{parentName:"a"},"a6a2907"))),(0,n.kt)("li",{parentName:"ul"},"update storybook header.topdropdown ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e58ac0821af56c06272e3373383647cbbff20978"},(0,n.kt)("inlineCode",{parentName:"a"},"e58ac08"))),(0,n.kt)("li",{parentName:"ul"},"use volto-screen-helper width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea156aad1100166ba78635163cfacdcfb913c1d4"},(0,n.kt)("inlineCode",{parentName:"a"},"ea156aa"))),(0,n.kt)("li",{parentName:"ul"},"Add divider content for metadata field in Banner ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/327ad1c5fdca0d376d04fd36084b940e5dd016ab"},(0,n.kt)("inlineCode",{parentName:"a"},"327ad1c"))),(0,n.kt)("li",{parentName:"ul"},"rename to viewportWidth ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32162e7c695774bbb68ac63a0008e8b148f1e9f5"},(0,n.kt)("inlineCode",{parentName:"a"},"32162e7"))),(0,n.kt)("li",{parentName:"ul"},"don't connect component to store ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/470b8bade5e8f2eaabb20a7bb02c8e82ca42f8a0"},(0,n.kt)("inlineCode",{parentName:"a"},"470b8ba"))),(0,n.kt)("li",{parentName:"ul"},"Add end of line ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51639d804a2b84f66373fb77c569bcc43b22e303"},(0,n.kt)("inlineCode",{parentName:"a"},"51639d8"))),(0,n.kt)("li",{parentName:"ul"},"behave as mobile under 480 only ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/11b99e15cb83245a32bb04f3937f5b95a60b1e95"},(0,n.kt)("inlineCode",{parentName:"a"},"11b99e1"))),(0,n.kt)("li",{parentName:"ul"},"make it account for all mobile-s,m,l ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/69e23ae8d12042f241dc53c9e296c340d5b17089"},(0,n.kt)("inlineCode",{parentName:"a"},"69e23ae")))),(0,n.kt)("h3",{id:"045---2022-06-08"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.4.4...0.4.5"},"0.4.5")," - 2022-06-08"),(0,n.kt)("h4",{id:"-enhancements-45"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(tabs): Add style for tabs accordion template #187 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fb8adbf84ac564a14d45bb6e8f4e1661811672d5"},(0,n.kt)("inlineCode",{parentName:"a"},"fb8adbf"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): avoid react error by providing key prop to grid column ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef0b1937d614a889a0c2117e483a834ed1aec1e3"},(0,n.kt)("inlineCode",{parentName:"a"},"ef0b193")))),(0,n.kt)("h4",{id:"\ufe0f-others-39"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Cleanup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4b9637ebd2d6c015f8d4323551c6cbc4b7506df"},(0,n.kt)("inlineCode",{parentName:"a"},"d4b9637"))),(0,n.kt)("li",{parentName:"ul"},"Add style for tabs accordion template ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a10998372a268b99991f7dda55103149f29d00cb"},(0,n.kt)("inlineCode",{parentName:"a"},"a109983")))),(0,n.kt)("h3",{id:"044---2022-06-08"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.4.3...0.4.4"},"0.4.4")," - 2022-06-08"),(0,n.kt)("h4",{id:"-new-features-22"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(divider): create story for divider ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b10a2e08b14962bed9f13317754f4124ee60d313"},(0,n.kt)("inlineCode",{parentName:"a"},"b10a2e0")))),(0,n.kt)("h4",{id:"-bug-fixes-33"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(divider): restore space between classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c595c152c144463f33757157ed7d6797ae31ceed"},(0,n.kt)("inlineCode",{parentName:"a"},"c595c15"))),(0,n.kt)("li",{parentName:"ul"},"fix(divider): Text colors and transform ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e524e1002bb0700ea69782cf5a95c6073ab383d2"},(0,n.kt)("inlineCode",{parentName:"a"},"e524e10"))),(0,n.kt)("li",{parentName:"ul"},"fix(footer): story aria labels for social media links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/254bdc7ba944943f5d08a71f9d0a3a31bdc06044"},(0,n.kt)("inlineCode",{parentName:"a"},"254bdc7")))),(0,n.kt)("h4",{id:"-enhancements-46"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update logos and less structure ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/66b8e0f12825968d94f7d572f2823d9a8a3a239b"},(0,n.kt)("inlineCode",{parentName:"a"},"66b8e0f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): first footer updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d18a2ee59d0deb143075d8dfeb949898ad1f6399"},(0,n.kt)("inlineCode",{parentName:"a"},"d18a2ee"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): logo updates and adjustments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/101bc9dfe4136240457f335de867a83c28d59339"},(0,n.kt)("inlineCode",{parentName:"a"},"101bc9d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): use tokens and adjust spacing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2cb166949913f725271050e863b38e7630748135"},(0,n.kt)("inlineCode",{parentName:"a"},"2cb1669"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): moved SubFooter logic to SubFooter.jsx from Footer story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/902383a0bb3446dc69237099bd429ead5e30a6c1"},(0,n.kt)("inlineCode",{parentName:"a"},"902383a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Divider):add divider with content inside story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2d66dca901fa189d69b65239dc34b1969097be8"},(0,n.kt)("inlineCode",{parentName:"a"},"e2d66dc"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): added managed by section as properties ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9328fc3084baf22439e1892d256d9a167b911849"},(0,n.kt)("inlineCode",{parentName:"a"},"9328fc3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(divider): remove custom divider ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4870d2252ad216e82213fa1f94cc39609ae676d"},(0,n.kt)("inlineCode",{parentName:"a"},"d4870d2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Divider_:remove green color class & add tertiary ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/95f30186bc1768e08f00ad7d5ffa2a70402ac553"},(0,n.kt)("inlineCode",{parentName:"a"},"95f3018"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): use remix icons for social links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5ef9aa2cebb6f96857a1920cefbf7e367b4d7c28"},(0,n.kt)("inlineCode",{parentName:"a"},"5ef9aa2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Divider):remove clean class and use fitted prop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8d2be350dcc44fd56b5fbfb791fb6b2a45bd8a52"},(0,n.kt)("inlineCode",{parentName:"a"},"8d2be35"))),(0,n.kt)("li",{parentName:"ul"},"change(Divider): Rename color property to theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0deffc823609d23131a85bc180e4a3f5a67a64aa"},(0,n.kt)("inlineCode",{parentName:"a"},"0deffc8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update links and logo align ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7afbab9b37982a557ac8bfa4430205ce912c3b8b"},(0,n.kt)("inlineCode",{parentName:"a"},"7afbab9"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): tweaked column sizes to the values before my changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fdf271868e44bce2904cc28c6fa924ee4c9ba759"},(0,n.kt)("inlineCode",{parentName:"a"},"fdf2718"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): to latest figma design #182 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e0ba2b659db9dc1b140d853840a06bd3ce31cab"},(0,n.kt)("inlineCode",{parentName:"a"},"3e0ba2b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): move subfooter logic to the proper component #185 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/303457719128c9699dd34939bd8db2b647977667"},(0,n.kt)("inlineCode",{parentName:"a"},"3034577"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b0b872b1415c9792a5886f619195f9c0471ea564"},(0,n.kt)("inlineCode",{parentName:"a"},"b0b872b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(testimonial): update divider ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/784450abdf395318fe89d8d3d0a1e398393cc93c"},(0,n.kt)("inlineCode",{parentName:"a"},"784450a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(testimonial): changed divider color to secondary ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/84282f960ab22ccb8403e975c055c61d1023193a"},(0,n.kt)("inlineCode",{parentName:"a"},"84282f9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(divider): remove custom divider from theme config ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a0409e8df3c9ba043717140455369a3630f0da85"},(0,n.kt)("inlineCode",{parentName:"a"},"a0409e8")))),(0,n.kt)("h4",{id:"-documentation-changes-14"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(divider): switch to secondary color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/239844be374a2f6bc4667e7ab3d2f52bfdc181ad"},(0,n.kt)("inlineCode",{parentName:"a"},"239844b"))),(0,n.kt)("li",{parentName:"ul"},"docs(divider): showcase path fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5ea03f60034edc918054aa273e44b84b2537716"},(0,n.kt)("inlineCode",{parentName:"a"},"d5ea03f")))),(0,n.kt)("h4",{id:"\ufe0f-others-40"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Remove unnecessary spaces ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d137981430809345bfb3ad494e7ab981c93c3e51"},(0,n.kt)("inlineCode",{parentName:"a"},"d137981"))),(0,n.kt)("li",{parentName:"ul"},"lint fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/657cf4ed917c4ff992aa033c3d9f4884a949d86d"},(0,n.kt)("inlineCode",{parentName:"a"},"657cf4e"))),(0,n.kt)("li",{parentName:"ul"},"perf(storybook): added storybook favicon ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/38eabc3124c85dd56bf5c68c0fb1e967c39055ec"},(0,n.kt)("inlineCode",{parentName:"a"},"38eabc3")))),(0,n.kt)("h3",{id:"043---2022-06-03"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.4.2...0.4.3"},"0.4.3")," - 2022-06-03"),(0,n.kt)("h4",{id:"-bug-fixes-34"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(edit): Fix columns/accordion inner toolbar padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fafbb525baa60c339906dc6a33d2f9418d050be6"},(0,n.kt)("inlineCode",{parentName:"a"},"fafbb52")))),(0,n.kt)("h4",{id:"-enhancements-47"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): completed removal of description from guides ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/42424b9213ece8d8df84d40f1b73e142cb0ffc6b"},(0,n.kt)("inlineCode",{parentName:"a"},"42424b9")))),(0,n.kt)("h3",{id:"042---2022-06-02"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.4.1...0.4.2"},"0.4.2")," - 2022-06-02"),(0,n.kt)("h4",{id:"-enhancements-48"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): moved color swatches around in the color guide ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8a395fce52a32cf92449a24d3d4cce5abf25a284"},(0,n.kt)("inlineCode",{parentName:"a"},"8a395fc"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): removed description from components and introduced category listing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f220bf0785f5aaede8c25c4164120b09de67b018"},(0,n.kt)("inlineCode",{parentName:"a"},"f220bf0"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): rename gap to space and added em spaces ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f5b042d311518ec3fb32c7f259c39ff62d4547f8"},(0,n.kt)("inlineCode",{parentName:"a"},"f5b042d"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): moved extra docs to webdev section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1ce0797b91418272e4e405467cd1468292620005"},(0,n.kt)("inlineCode",{parentName:"a"},"1ce0797"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): moved md_components files into webdev/md_components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/73c1c08a270d504fa6f2ba2579bcb3e6e25fb112"},(0,n.kt)("inlineCode",{parentName:"a"},"73c1c08"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): added category yml for all sections ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/17405728e3f44828da50890b9fc0f4e8a07f8bf2"},(0,n.kt)("inlineCode",{parentName:"a"},"1740572"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): color guideline updates and spacing tokens documentation #148 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c1154ba172c3b3b40b565c2bcb590f1a5e6b25a4"},(0,n.kt)("inlineCode",{parentName:"a"},"c1154ba"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): modified story links to avoid broken usage tabs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/78dc8d8f4e7cade3ab0e911e6dc002eefc1e7986"},(0,n.kt)("inlineCode",{parentName:"a"},"78dc8d8"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): renamed several file id's so that they match the incremental naming sequence ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/11299c9a4c41ca901926f852227dbca0bc1aee17"},(0,n.kt)("inlineCode",{parentName:"a"},"11299c9")))),(0,n.kt)("h4",{id:"-documentation-changes-15"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(Docusaurus): timeline, testimonial, quote and tags ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aaa54ecbe182872ffc7fff275d5065ebe790d348"},(0,n.kt)("inlineCode",{parentName:"a"},"aaa54ec"))),(0,n.kt)("li",{parentName:"ul"},"docs(spacing): add relative gap tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/92abc8fff2c7006e2c64684048e7783216a230bb"},(0,n.kt)("inlineCode",{parentName:"a"},"92abc8f"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): updated colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a28c99e60867c1eaa1b7b68d4154ccaa8c9ef958"},(0,n.kt)("inlineCode",{parentName:"a"},"a28c99e"))),(0,n.kt)("li",{parentName:"ul"},"docs(tags/content): new page about tags and content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/60be40268a77606c53fc45641bc22166b50b75e7"},(0,n.kt)("inlineCode",{parentName:"a"},"60be402"))),(0,n.kt)("li",{parentName:"ul"},"docs(Docusaurus): labeled icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6a0f61ede3a36c7d66d9b3091b93b0b5ff9a445"},(0,n.kt)("inlineCode",{parentName:"a"},"f6a0f61"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): add font size and line height tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ff65e47cfe56eb3efe976300b764ba13f8685ce"},(0,n.kt)("inlineCode",{parentName:"a"},"2ff65e4"))),(0,n.kt)("li",{parentName:"ul"},"docs(spacing): add spacing gap tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2d53727f8e817588421efea464e849c9f9e16dce"},(0,n.kt)("inlineCode",{parentName:"a"},"2d53727"))),(0,n.kt)("li",{parentName:"ul"},"docs(spacing): add missing gaps ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/442db468830150c8e4ad5f91775fc5b3c47dd655"},(0,n.kt)("inlineCode",{parentName:"a"},"442db46"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): minor fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e66513f08cff598881ce1051b482ddadf8e0593"},(0,n.kt)("inlineCode",{parentName:"a"},"6e66513"))),(0,n.kt)("li",{parentName:"ul"},"docs(spacing): aligned images ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e946fe59457b861a31939e99adf4b380777e01e0"},(0,n.kt)("inlineCode",{parentName:"a"},"e946fe5"))),(0,n.kt)("li",{parentName:"ul"},"docs(spacing): new image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fcd3294d53db76580b8bffc9678a09fd65b33113"},(0,n.kt)("inlineCode",{parentName:"a"},"fcd3294")))),(0,n.kt)("h4",{id:"\ufe0f-others-41"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"merge changes from develop into docusaurus token documentation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a9401384ddf5fcfbf29e50d34f3d7851be85f19a"},(0,n.kt)("inlineCode",{parentName:"a"},"a940138"))),(0,n.kt)("li",{parentName:"ul"},"perf(docs): restructuring order ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f4134d81d1cc59b8ba0d8669415b5eb31c0513d"},(0,n.kt)("inlineCode",{parentName:"a"},"8f4134d")))),(0,n.kt)("h3",{id:"041---2022-06-02"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.4.0...0.4.1"},"0.4.1")," - 2022-06-02"),(0,n.kt)("h4",{id:"-new-features-23"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(languageLabeledIcon) : add new component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/110558eeec37d5b5f616a95298a313ba230dd6f4"},(0,n.kt)("inlineCode",{parentName:"a"},"110558e"))),(0,n.kt)("li",{parentName:"ul"},"feat(LanguageLabeledIcon):add new component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d00200c278e1dab02b449b460a325e0f2e7b8ccd"},(0,n.kt)("inlineCode",{parentName:"a"},"d00200c"))),(0,n.kt)("li",{parentName:"ul"},"feat(newTabLabeledIcon) : add new component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f5cd31257a306a58c1d9cdbf7cb428701412369"},(0,n.kt)("inlineCode",{parentName:"a"},"8f5cd31"))),(0,n.kt)("li",{parentName:"ul"},"feat(labeledIconGroup) : add new component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/787d648342d78c4f9d28fde9d08e83089ef7b08f"},(0,n.kt)("inlineCode",{parentName:"a"},"787d648"))),(0,n.kt)("li",{parentName:"ul"},"feat(DownLoadLabeledIcon) : add new component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6ea2fa1ec17ce235401a8ac741afa8fede920d26"},(0,n.kt)("inlineCode",{parentName:"a"},"6ea2fa1")))),(0,n.kt)("h4",{id:"-bug-fixes-35"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(LabeledIcon) : fix lint errors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91b042f8c16bd3e99659c1c24a5f2a946c72b03f"},(0,n.kt)("inlineCode",{parentName:"a"},"91b042f"))),(0,n.kt)("li",{parentName:"ul"},"fix(LabeledIconGroup) : fix links for tests ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/daa10653ca37f3e83302e2ebcc566b5f5ec4c4d9"},(0,n.kt)("inlineCode",{parentName:"a"},"daa1065"))),(0,n.kt)("li",{parentName:"ul"},"fix(LanguageLabeledIcon):bug fix & languages change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1436e2bc270f8f079f07b7909254bd2e6e087084"},(0,n.kt)("inlineCode",{parentName:"a"},"1436e2b"))),(0,n.kt)("li",{parentName:"ul"},"fix(LabeledIconGroup):fix based on Langauge & Download Labeled icon components changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3015864ce740f534aa204402f85a9f392e342513"},(0,n.kt)("inlineCode",{parentName:"a"},"3015864"))),(0,n.kt)("li",{parentName:"ul"},"fix(newTabLabeledIcon) : add link item ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b1a9ada3dd7dae9e1841cfde5319a6ab37b15de2"},(0,n.kt)("inlineCode",{parentName:"a"},"b1a9ada"))),(0,n.kt)("li",{parentName:"ul"},"fix(Labeled Icons):minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/00f3022cdc2bfad634707f0d6d05768868f599be"},(0,n.kt)("inlineCode",{parentName:"a"},"00f3022")))),(0,n.kt)("h4",{id:"-enhancements-49"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcons): adjust new tab labeled icon to figma and replace px with rems ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/904615d789ea711678f43ce9f9d02a450289031f"},(0,n.kt)("inlineCode",{parentName:"a"},"904615d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(LanguageLabeledIcon):implement with pop up ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0f3dd8f0388484f94351a0ab0798ab53e84c9229"},(0,n.kt)("inlineCode",{parentName:"a"},"0f3dd8f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcon): add group wrapper in labeled icon stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4b7dd314230145b6239fd800d41f546ab5d9eebb"},(0,n.kt)("inlineCode",{parentName:"a"},"4b7dd31"))),(0,n.kt)("li",{parentName:"ul"},"refactor(DownloadLabeledIcon):implement with pop up ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aa61f9b7d449c08c08bc4c004da6a0458598c828"},(0,n.kt)("inlineCode",{parentName:"a"},"aa61f9b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcons): adjust language labeled icon to figma ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5741e3d2e95665ef12670335b12d29cfbf998fdc"},(0,n.kt)("inlineCode",{parentName:"a"},"5741e3d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcons): adjust download icon to figma and replace px with rems ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ae85307a62526fed75ef0b1d37ad59076370b5a"},(0,n.kt)("inlineCode",{parentName:"a"},"4ae8530"))),(0,n.kt)("li",{parentName:"ul"},"refactor(LanguageLabeledIcons):minor storybook change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/78f55442a80cbc2f716ba81274ed08204e3c502a"},(0,n.kt)("inlineCode",{parentName:"a"},"78f5544"))),(0,n.kt)("li",{parentName:"ul"},"refactor(LanguageLabeledIcon): set language code to uppercase and minor storybook change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac286931282c0a69bc6d7803e96cbe302db8994f"},(0,n.kt)("inlineCode",{parentName:"a"},"ac28693"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcon): adjust paddings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9c1ecddc52c81be1d952d0af67862a284eba9eec"},(0,n.kt)("inlineCode",{parentName:"a"},"9c1ecdd"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcons): update margins for group labeled icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5fa5ca9103a5d8ad1510c90cc8c46d0c82abcc63"},(0,n.kt)("inlineCode",{parentName:"a"},"5fa5ca9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcons): add variable for icon color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f9d3cba5115c5c91aaaca49c1f834950400673a"},(0,n.kt)("inlineCode",{parentName:"a"},"9f9d3cb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcons): update colors on download links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c04264229c91bfdea927fd22f4ee1e8ddbcebd5c"},(0,n.kt)("inlineCode",{parentName:"a"},"c042642")))),(0,n.kt)("h4",{id:"-internal-changes-16"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(labeledIconGroup) : lint changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/535cee4795dff75b35856cb4406a9bd33ee07ca4"},(0,n.kt)("inlineCode",{parentName:"a"},"535cee4"))),(0,n.kt)("li",{parentName:"ul"},"style(downloadLabeledIcon) : fix styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d8e3acb3bac1a4174d4bb526d6188cb5e5f8faa"},(0,n.kt)("inlineCode",{parentName:"a"},"6d8e3ac"))),(0,n.kt)("li",{parentName:"ul"},"style(downloadLabeledIcon) : fix alignment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/455801701d2958515885ba2c398312f0c56057b0"},(0,n.kt)("inlineCode",{parentName:"a"},"4558017"))),(0,n.kt)("li",{parentName:"ul"},"chore(LabeledIconGroup) : lint changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab364763bb2526adbbb7fc3c656a16b497568940"},(0,n.kt)("inlineCode",{parentName:"a"},"ab36476")))),(0,n.kt)("h3",{id:"040---2022-06-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.3.1...0.4.0"},"0.4.0")," - 2022-06-01"),(0,n.kt)("h4",{id:"-new-features-24"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(Carousel): create carousel for cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2b0d73798b4fcbf2897d7a8167d9b4d3b3374fb2"},(0,n.kt)("inlineCode",{parentName:"a"},"2b0d737"))),(0,n.kt)("li",{parentName:"ul"},"feat(ItemwithIcons): Initial Item group with icons, new item variation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7f4ea476264856845a07cd24be6ec86ccd21ed8d"},(0,n.kt)("inlineCode",{parentName:"a"},"7f4ea47"))),(0,n.kt)("li",{parentName:"ul"},"feat(utilities): add file and basic utilities ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/05c88b294a49590e3fb355fb6e113f5020442915"},(0,n.kt)("inlineCode",{parentName:"a"},"05c88b2"))),(0,n.kt)("li",{parentName:"ul"},"feat(utilities): add file with basic utilities classes #173 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/855185ff22c77efb75cc5c7850d181254b4c4927"},(0,n.kt)("inlineCode",{parentName:"a"},"855185f")))),(0,n.kt)("h4",{id:"-bug-fixes-36"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(tokens): hsla function for shadows ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8e5d37a6e88321b1e2daf995b407c4ddd6e866e"},(0,n.kt)("inlineCode",{parentName:"a"},"b8e5d37"))),(0,n.kt)("li",{parentName:"ul"},"fix(tokens): remove css var from less file ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a9c422476b412287713a6b475406615c3aed2aca"},(0,n.kt)("inlineCode",{parentName:"a"},"a9c4224"))),(0,n.kt)("li",{parentName:"ul"},"fix(carousel):add storybook controls descriptions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/269a60383ed1e54fc57e26d4eed6b37d1da32236"},(0,n.kt)("inlineCode",{parentName:"a"},"269a603"))),(0,n.kt)("li",{parentName:"ul"},"fix(item): remove image width css from item.less ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7b21cb2d5ddf6a6f72646f47fd268a0bd7af757d"},(0,n.kt)("inlineCode",{parentName:"a"},"7b21cb2"))),(0,n.kt)("li",{parentName:"ul"},"fix(table): Set responsive breakpoint to @tabletBreakpoint ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/067e01842030bfa5639e2a55cb8af5047bb2996f"},(0,n.kt)("inlineCode",{parentName:"a"},"067e018")))),(0,n.kt)("h4",{id:"-enhancements-50"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(item): import item.less in theme definitions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c51637480192dbece828616010174648ac865e2e"},(0,n.kt)("inlineCode",{parentName:"a"},"c516374"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Label):add corner,ribbon & basic label stories and styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2bbbb947113a59127f91b86917ef0edbf36ab16"},(0,n.kt)("inlineCode",{parentName:"a"},"e2bbbb9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Label):style changes based on label importance class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce4d5d1a5bf1b1183242a253e37c509d61f82b8c"},(0,n.kt)("inlineCode",{parentName:"a"},"ce4d5d1"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): rename gap to space and added em spaces ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/719efc44070ef87f049a92e4da96bb111e9fc8ff"},(0,n.kt)("inlineCode",{parentName:"a"},"719efc4"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): add classes for size, set default to tile and add controls for grouped items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5a0405abba4e5f5d36f899dc9e47f43a96d5e49"},(0,n.kt)("inlineCode",{parentName:"a"},"d5a0405"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): add borders, shadows, shapes and z-index tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7069106c2b0ada9cdbad63249b4ada7fde72e05f"},(0,n.kt)("inlineCode",{parentName:"a"},"7069106"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): name spacing tokens gaps and added missing values up to 80px as documented ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9fbd912a6f027150149d82678f88885a939120b0"},(0,n.kt)("inlineCode",{parentName:"a"},"9fbd912"))),(0,n.kt)("li",{parentName:"ul"},"refactor(quote): Rename sourceInfo to extra info ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/76c2b400de4814fe79f303bfd2a82842c848231c"},(0,n.kt)("inlineCode",{parentName:"a"},"76c2b40"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): WIP replacing unstackable with row ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e3a44de4b2dd26667e80e0d131c55b08f3c527d9"},(0,n.kt)("inlineCode",{parentName:"a"},"e3a44de"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tocens): add color design tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/13bb165e103a25aadb9da6414773dc0d35081d88"},(0,n.kt)("inlineCode",{parentName:"a"},"13bb165"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): adjust margins to match figma designs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6334581b336a2f486e85199f371126beea47b92f"},(0,n.kt)("inlineCode",{parentName:"a"},"6334581"))),(0,n.kt)("li",{parentName:"ul"},"refactor(carousel): remove title from story and color on card hover ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/12a1d7c3bd5e7ba6edf4eb20a2d7a6f8f22955f9"},(0,n.kt)("inlineCode",{parentName:"a"},"12a1d7c"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): updated sizes with 4-8-16px increments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f53d655df2b24053a5d331c56dfd14bd3602dfd"},(0,n.kt)("inlineCode",{parentName:"a"},"1f53d65"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): added size tokens to be used for width of elements ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cda5dea1f6ad1ae980c89999d323d7b385894025"},(0,n.kt)("inlineCode",{parentName:"a"},"cda5dea"))),(0,n.kt)("li",{parentName:"ul"},"change(utilities): values need important rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/96150d9a22cb6be6f338f1e9d052cbd65e3602fc"},(0,n.kt)("inlineCode",{parentName:"a"},"96150d9"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): added also rem space values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aedbbddaf7f8be88ed2f8a2b8c21b60752896c53"},(0,n.kt)("inlineCode",{parentName:"a"},"aedbbdd"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): updated z-index tokens with negative values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/404efe4244d67276b435e60a1d7a69aaa90e3d8a"},(0,n.kt)("inlineCode",{parentName:"a"},"404efe4"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): add 14px font size token ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8d8695dce62e7f29af01447308460e4fe3f72b21"},(0,n.kt)("inlineCode",{parentName:"a"},"8d8695d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): restructured and improved sections navigation #174 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b47b0266ffd6baeaf1a5aea1a7ab22c909976de1"},(0,n.kt)("inlineCode",{parentName:"a"},"b47b026"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): add 12 and 14px font size token #176 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/368114729536f03dd85c2d3565b984c3bdfe3a72"},(0,n.kt)("inlineCode",{parentName:"a"},"3681147"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): remove conditional border radius ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f0fe5ada7b74e9c87623dd2b2774283dd89b9a58"},(0,n.kt)("inlineCode",{parentName:"a"},"f0fe5ad")))),(0,n.kt)("h4",{id:"-documentation-changes-16"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(website): created new sections, improved website navigation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/243f0be4d7fa6e988da0ca0f586f5ea478573eef"},(0,n.kt)("inlineCode",{parentName:"a"},"243f0be"))),(0,n.kt)("li",{parentName:"ul"},"docs(homepage): adding design system homepage with links for upcoming sections ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c9a968508acff74d1182e68cf049046dafd564c5"},(0,n.kt)("inlineCode",{parentName:"a"},"c9a9685"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): copyedit, improved navigation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/998762a5bd40d08f619c00743b66d82b43aed653"},(0,n.kt)("inlineCode",{parentName:"a"},"998762a"))),(0,n.kt)("li",{parentName:"ul"},"docs(website): restructuring, moved current DS docs to new folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8bb612f1313dfc739d7912aa2e3252f468e1122f"},(0,n.kt)("inlineCode",{parentName:"a"},"8bb612f"))),(0,n.kt)("li",{parentName:"ul"},"docs(homepage): copy editing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee37d6f1d282b973af744f4305c0eb94c0993113"},(0,n.kt)("inlineCode",{parentName:"a"},"ee37d6f")))),(0,n.kt)("h4",{id:"\ufe0f-others-42"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Release 0.4.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f4bc50928ab877f3670b181dbe6e8cfff7fa2daa"},(0,n.kt)("inlineCode",{parentName:"a"},"f4bc509"))),(0,n.kt)("li",{parentName:"ul"},"feature(homepage): added Item group with icons #167 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ec99f53aeb183b24073be4014a9c2ec30d5235c"},(0,n.kt)("inlineCode",{parentName:"a"},"2ec99f5"))),(0,n.kt)("li",{parentName:"ul"},"feature(tokens): added borders, z-index, shadows tokens #171 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/74c178837cedc7ee9fc55effde1096dc03245574"},(0,n.kt)("inlineCode",{parentName:"a"},"74c1788"))),(0,n.kt)("li",{parentName:"ul"},"feature(tokens): added initial color design tokens #169 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/da3eae05d07783aa5eadaed5d508ee3be8acc47d"},(0,n.kt)("inlineCode",{parentName:"a"},"da3eae0"))),(0,n.kt)("li",{parentName:"ul"},"perf(carousel): added slick library ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca9be5125efa864bc30a0178274d744c5b2bc500"},(0,n.kt)("inlineCode",{parentName:"a"},"ca9be51")))),(0,n.kt)("h3",{id:"031---2022-05-19"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.3.0...0.3.1"},"0.3.1")," - 2022-05-19"),(0,n.kt)("h4",{id:"-bug-fixes-37"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(input,segment): toggle inputs and padding fixes within Volto sidebar forms ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/de030d617325a8f9d028a5c1615faa160fcdd763"},(0,n.kt)("inlineCode",{parentName:"a"},"de030d6")))),(0,n.kt)("h4",{id:"-enhancements-51"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(login): restored width of login container to 376px ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0564293346b2402c3c86009b61066da4200662b8"},(0,n.kt)("inlineCode",{parentName:"a"},"0564293")))),(0,n.kt)("h3",{id:"030---2022-05-17"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.2.4...0.3.0"},"0.3.0")," - 2022-05-17"),(0,n.kt)("h4",{id:"-new-features-25"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(Callout):create Callout component with Blockquote style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3d486b1c2c7f74ee8bc4b3a5e1bf3993ac98f6dd"},(0,n.kt)("inlineCode",{parentName:"a"},"3d486b1"))),(0,n.kt)("li",{parentName:"ul"},"feat(callout): Align the Callout component with Volto slate component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e9343ff7008cd3d60700929e8861c7bdd06df4d3"},(0,n.kt)("inlineCode",{parentName:"a"},"e9343ff")))),(0,n.kt)("h4",{id:"-bug-fixes-38"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(testimonial): fix storybook arg names ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b9df52f7151ef759fd672d365b2d74f6db535ad0"},(0,n.kt)("inlineCode",{parentName:"a"},"b9df52f"))),(0,n.kt)("li",{parentName:"ul"},"fix(table): tweak responsive table for extra long headers ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7f9f9e25f7c57d4bf7edd2546a7579b892867b5c"},(0,n.kt)("inlineCode",{parentName:"a"},"7f9f9e2"))),(0,n.kt)("li",{parentName:"ul"},"fix(quote): fix color and padding issue ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/310d6b37bdf5df3da2d2103eab8f4fa5020c95ab"},(0,n.kt)("inlineCode",{parentName:"a"},"310d6b3"))),(0,n.kt)("li",{parentName:"ul"},"fix(accordion): Fix accordion active title color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/57af1650a0b830e01c79e21b130784190defbcc0"},(0,n.kt)("inlineCode",{parentName:"a"},"57af165"))),(0,n.kt)("li",{parentName:"ul"},"fix(testimonial): remove info arguement ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9593d95f6352fb5aea48c3611b27b4bc6a9ae7e4"},(0,n.kt)("inlineCode",{parentName:"a"},"9593d95")))),(0,n.kt)("h4",{id:"-enhancements-52"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(Table):add responsive mobile table story and styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aed69e698e5b89e33a4c331570755934267492af"},(0,n.kt)("inlineCode",{parentName:"a"},"aed69e6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(testimonial): adjust to volto design | fix avatar image size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/546070e494ad187c50913b5742dab49ce5475a84"},(0,n.kt)("inlineCode",{parentName:"a"},"546070e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Quote):rename Pullquote component to Quote ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9384a0c129b8e4eed637e51a9669c41d8ade69d4"},(0,n.kt)("inlineCode",{parentName:"a"},"9384a0c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Quote):rename Quote.Metadata to Quote.SourceInfo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dfae8b1c147659d24dfd1a13fb4c3098e5865a12"},(0,n.kt)("inlineCode",{parentName:"a"},"dfae8b1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Quote): rename Author to Source ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d400f6a0ec0062f58782b4e170f4a1a9a31c56c"},(0,n.kt)("inlineCode",{parentName:"a"},"6d400f6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Quote):move Testimonial component under Quote folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2467c2089577d67ef5689a2507cb860a837f6a0"},(0,n.kt)("inlineCode",{parentName:"a"},"e2467c2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(testimonial): readjust rounded card ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b41933417a44dabcf829a3346d91c142dd6472d3"},(0,n.kt)("inlineCode",{parentName:"a"},"b419334"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Table):wrap table with semantic ui container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24ac2bb4813df33547f684220e1e12af5ca6df7e"},(0,n.kt)("inlineCode",{parentName:"a"},"24ac2bb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Testimonial):minor storybook bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7b6d128c6be3b2481d4765cebca82af6cafbea05"},(0,n.kt)("inlineCode",{parentName:"a"},"7b6d128"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Callout): wrap story with semantic ui container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ead362d88f43fa1380e8be5481cbc38c055060f8"},(0,n.kt)("inlineCode",{parentName:"a"},"ead362d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(quote): update action name to match the functionality ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/caf2e359cada8056f280d2cd137776d64f82a2af"},(0,n.kt)("inlineCode",{parentName:"a"},"caf2e35"))),(0,n.kt)("li",{parentName:"ul"},"refactor(table): add borders to responsive table with celled attribute ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8a71a670fb34a11fbe4cef7365b91c6be84b5b54"},(0,n.kt)("inlineCode",{parentName:"a"},"8a71a67"))),(0,n.kt)("li",{parentName:"ul"},"change(table): make use of headerSortableWhiteSpace variable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fd836fbe82e92864a628bf4d9d3093674890f722"},(0,n.kt)("inlineCode",{parentName:"a"},"fd836fb"))),(0,n.kt)("li",{parentName:"ul"},"change(table): use the @mobileLandscapeBreakpoint for max 480px media query ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/90880ab324b6a66c7741819dd0d913504751454f"},(0,n.kt)("inlineCode",{parentName:"a"},"90880ab"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Quote):rename pullquote to Quote in Testimonial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f54da192ab3b0823b0d6c77254f8954ab94506c8"},(0,n.kt)("inlineCode",{parentName:"a"},"f54da19"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Testimonial): change card class name ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e995c32bc70780e4315c4dc02d6b6fa9a0c5b29d"},(0,n.kt)("inlineCode",{parentName:"a"},"e995c32"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Testimonial): prettier changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/904594b9814c3d8900656f0e4c8d3a99481efe94"},(0,n.kt)("inlineCode",{parentName:"a"},"904594b")))),(0,n.kt)("h4",{id:"\ufe0f-others-43"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feature(tokens): added tokens folder for design tokens we can use in the system ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a542172cfd84dde0286b4332e66a617a1f3d13bf"},(0,n.kt)("inlineCode",{parentName:"a"},"a542172"))),(0,n.kt)("li",{parentName:"ul"},"perf(lint): fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2ef3abb9daa8fee3dd103adc14246c412951427"},(0,n.kt)("inlineCode",{parentName:"a"},"f2ef3ab"))),(0,n.kt)("li",{parentName:"ul"},"Release 0.3.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8724b2809027b2e359dcd64e418a33cade4ad487"},(0,n.kt)("inlineCode",{parentName:"a"},"8724b28")))),(0,n.kt)("h3",{id:"024---2022-05-13"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.2.3...0.2.4"},"0.2.4")," - 2022-05-13"),(0,n.kt)("h4",{id:"-enhancements-53"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(segment): brought back overrides from pastanaga into our theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/14efd021f81898bb0f2d3f1a2e8677445420591a"},(0,n.kt)("inlineCode",{parentName:"a"},"14efd02"))),(0,n.kt)("li",{parentName:"ul"},"change(container): removed padding from containers restoring thus the defaults ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c2ed813cf2f7ce284e33f2e94e02ff16678c2d05"},(0,n.kt)("inlineCode",{parentName:"a"},"c2ed813"))),(0,n.kt)("li",{parentName:"ul"},"change(grid-story): added container as grid width is influenced by container width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/459f4813ee3c5325a3db22d417ac5f23063bd4d2"},(0,n.kt)("inlineCode",{parentName:"a"},"459f481"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumb): removed padding from breadcrumb added by container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5df5675a519085badc030416e5bb784a9f73321"},(0,n.kt)("inlineCode",{parentName:"a"},"c5df567"))),(0,n.kt)("li",{parentName:"ul"},"change(container): modified all outputted widths to align to grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f29cefa4bfee1fe50844c8450de39ef4b0915d4"},(0,n.kt)("inlineCode",{parentName:"a"},"9f29cef"))),(0,n.kt)("li",{parentName:"ul"},"change(breakpoints): restore Semantic UI breakpoints, adding extra needed values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e7f5b1e4fac6453458078bb02cdc66c328843b59"},(0,n.kt)("inlineCode",{parentName:"a"},"e7f5b1e"))),(0,n.kt)("li",{parentName:"ul"},"change(container): restore maxWidth to 100% now that the last value is 1120px ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8b55c58d3bbc8967b20de19a828aedd2f1473ee5"},(0,n.kt)("inlineCode",{parentName:"a"},"8b55c58"))),(0,n.kt)("li",{parentName:"ul"},"change(header): wrap header globalnav links useful for editing section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/10d4f56624510eb63155ab330dcf0475b0728ed4"},(0,n.kt)("inlineCode",{parentName:"a"},"10d4f56"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumb): added vertical variant to the breadcrumbs like we do in Volto ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f405f8437be6be221b055a41c5d391f4cc94385d"},(0,n.kt)("inlineCode",{parentName:"a"},"f405f84"))),(0,n.kt)("li",{parentName:"ul"},"change(breakpoints): added also contentBreakpoint for backward compatibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b6c9212378a37639e6154d8d8e837169bcbac8b5"},(0,n.kt)("inlineCode",{parentName:"a"},"b6c9212")))),(0,n.kt)("h4",{id:"\ufe0f-others-44"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"[JENKINSFILE]"," Add failure comment, no jenkins fail ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c325bf14f3fb0da150f2a56cda0a9f03d8d8a628"},(0,n.kt)("inlineCode",{parentName:"a"},"c325bf1"))),(0,n.kt)("li",{parentName:"ul"},"prettier changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/134da52549b9d5eac5a12b7ad3005073500ac2c4"},(0,n.kt)("inlineCode",{parentName:"a"},"134da52"))),(0,n.kt)("li",{parentName:"ul"},"[JENKINSFILE]"," format PR comments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/739438c64950c745d630d1998314a2bed595b23a"},(0,n.kt)("inlineCode",{parentName:"a"},"739438c"))),(0,n.kt)("li",{parentName:"ul"},"[JENKINSFILE]"," mention comment author in comment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/39a26aa1ff0f35e93e8df9f442c29c5ab79ff493"},(0,n.kt)("inlineCode",{parentName:"a"},"39a26aa"))),(0,n.kt)("li",{parentName:"ul"},"[JENKINSFILE]"," remove debug, add error per stage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/903eecdb6bcbb8d73cff5e447d80c85e2a2c906d"},(0,n.kt)("inlineCode",{parentName:"a"},"903eecd")))),(0,n.kt)("h3",{id:"023---2022-04-29"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.2.2...0.2.3"},"0.2.3")," - 2022-04-29"),(0,n.kt)("h4",{id:"-new-features-26"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(CallToAction):add feat call to action ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab53642f27c996f929ff871d0794add39bab6c23"},(0,n.kt)("inlineCode",{parentName:"a"},"ab53642")))),(0,n.kt)("h4",{id:"-enhancements-54"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(button): add container to stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6c02c1953e102f2d90ab23023d6b4dfc738ced2e"},(0,n.kt)("inlineCode",{parentName:"a"},"6c02c19"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tab): update vertical tab columns and content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b473fabee196a3ec420e29160448d2be3d1685cc"},(0,n.kt)("inlineCode",{parentName:"a"},"b473fab"))),(0,n.kt)("li",{parentName:"ul"},'refactor(call to action):render call to action with Button as="a" ',(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e7dfabfc2f006505b0f1c802dc6fb48611518bcb"},(0,n.kt)("inlineCode",{parentName:"a"},"e7dfabf"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button): update inverted button colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c822021ab37939632416ce74c0cc88a64b98a3c1"},(0,n.kt)("inlineCode",{parentName:"a"},"c822021"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Tab):scrollbar change in mobile & vertical tab fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0e34cbf459e67b6910217f30a44a1e81f33df622"},(0,n.kt)("inlineCode",{parentName:"a"},"0e34cbf"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): added icon class to share icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48e866e4251dd517c0477cd5a42cec1a98e2f16d"},(0,n.kt)("inlineCode",{parentName:"a"},"48e866e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Button): move button to forms folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/94996fcdf1ea7e55c63dd44e10edf1b44b9bdef5"},(0,n.kt)("inlineCode",{parentName:"a"},"94996fc"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Tab):minor change in secondary pointing menu variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/280b6c41a2107bccb38500f54eb5663ef62c7ae3"},(0,n.kt)("inlineCode",{parentName:"a"},"280b6c4")))),(0,n.kt)("h4",{id:"-documentation-changes-17"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(button): import call to action stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e4eed44e3519ae3dba7d16e252271a964fcb7a4b"},(0,n.kt)("inlineCode",{parentName:"a"},"e4eed44")))),(0,n.kt)("h3",{id:"022---2022-04-22"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.2.1...0.2.2"},"0.2.2")," - 2022-04-22"),(0,n.kt)("h4",{id:"-bug-fixes-39"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(publicationCard): restore line endings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/582859e0ab4fa969662d4cf3e60fe75b160f052a"},(0,n.kt)("inlineCode",{parentName:"a"},"582859e"))),(0,n.kt)("li",{parentName:"ul"},"fix(form): added back overrides from Pastanaga theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a3f7ff810cdeb55b009c2dadc6753d01bbd10d8c"},(0,n.kt)("inlineCode",{parentName:"a"},"a3f7ff8"))),(0,n.kt)("li",{parentName:"ul"},"fix(OrderedList) : add list only if sub list exists ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8acbc8d5a492b411b169b106ab64bb78563f891f"},(0,n.kt)("inlineCode",{parentName:"a"},"8acbc8d"))),(0,n.kt)("li",{parentName:"ul"},"fix(label): update highlight label color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d55bbb03a5d28b2f269c1a1ca447c67dcdc7a748"},(0,n.kt)("inlineCode",{parentName:"a"},"d55bbb0"))),(0,n.kt)("li",{parentName:"ul"},"fix(publication card): run prettier ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/81a5bfc123ce69c44562a5585e41a630fe0bbf5a"},(0,n.kt)("inlineCode",{parentName:"a"},"81a5bfc"))),(0,n.kt)("li",{parentName:"ul"},"fix(avatar) : fix naming convention for arg ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/84fc5fa8faa7887f45cd52e58aa6fa6f8b951d26"},(0,n.kt)("inlineCode",{parentName:"a"},"84fc5fa"))),(0,n.kt)("li",{parentName:"ul"},"fix(tab): restore mobile font sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/58f39be02a45ade92873b86597c33763379e0f44"},(0,n.kt)("inlineCode",{parentName:"a"},"58f39be"))),(0,n.kt)("li",{parentName:"ul"},"fix(addForm): add min height to add form and fixed block chooser overflow ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca4415d49b973378894ec9270501beafbefff776"},(0,n.kt)("inlineCode",{parentName:"a"},"ca4415d"))),(0,n.kt)("li",{parentName:"ul"},"fix(OrderedList): adjust margins to fourth sublists ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/663d384790920f164d51edb304c411275972fbb7"},(0,n.kt)("inlineCode",{parentName:"a"},"663d384"))),(0,n.kt)("li",{parentName:"ul"},"fix(dropdown): being hidden because of third party css ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d353dfd65e93d08a3c8584adeeebea50bf7efe8"},(0,n.kt)("inlineCode",{parentName:"a"},"7d353df"))),(0,n.kt)("li",{parentName:"ul"},"fix(modal): overflow hidden as clearfix of last child from modal ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4923f5165a0a7e8d2dd33ea4c35f9f951372909"},(0,n.kt)("inlineCode",{parentName:"a"},"b4923f5"))),(0,n.kt)("li",{parentName:"ul"},"fix(RelatedContent):fix merge conflict ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/adc34bfdac7d668aa27578eb2a4844c136e0360f"},(0,n.kt)("inlineCode",{parentName:"a"},"adc34bf"))),(0,n.kt)("li",{parentName:"ul"},"fix(button): labeled class needs to be placed after left or right keyword ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53d1204fe52665fe1023747da359d3100d45e58f"},(0,n.kt)("inlineCode",{parentName:"a"},"53d1204")))),(0,n.kt)("h4",{id:"-enhancements-55"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(card): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e10e3d610a313c4e1995676130e2677f0ebab070"},(0,n.kt)("inlineCode",{parentName:"a"},"e10e3d6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add card variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e16d05b4afa678b9089987b42a8257323a78093f"},(0,n.kt)("inlineCode",{parentName:"a"},"e16d05b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): remove stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0deb0cab6d7fd73957b149325960c266c33cdc6f"},(0,n.kt)("inlineCode",{parentName:"a"},"0deb0ca"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):delete primary and secondary card stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f95d227a026ecc34b29cc3e4938c3d13906cfd8"},(0,n.kt)("inlineCode",{parentName:"a"},"1f95d22"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Avatar) : remake avatar as card variant ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea77cdd1acafd2ea288f11074423705e5d6b7412"},(0,n.kt)("inlineCode",{parentName:"a"},"ea77cdd"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add styles for card variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7407bd30e722f2d7b1a9d75a8c7cf155bf1c4996"},(0,n.kt)("inlineCode",{parentName:"a"},"7407bd3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): add story with related content inside of a tab ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dca008a35b27e4a75c13ef965ab8764df0d3b357"},(0,n.kt)("inlineCode",{parentName:"a"},"dca008a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): Rename variables from avatar to rounded ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/be0131631cf8e303f4077fe93b6685fd6b34bf46"},(0,n.kt)("inlineCode",{parentName:"a"},"be01316"))),(0,n.kt)("li",{parentName:"ul"},"refactor(avatar): update less variables and layer structure ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f965db1dd17d90e7165f66d39fdda9016c2eae91"},(0,n.kt)("inlineCode",{parentName:"a"},"f965db1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(PublicationCard):remake publication card to be a semantic card variation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5a0c6ab21c22a53aa6e34fafecfae15a3d435391"},(0,n.kt)("inlineCode",{parentName:"a"},"5a0c6ab"))),(0,n.kt)("li",{parentName:"ul"},"change(button): simplified button styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fe892d6f2f59aecf3f9e8b04f18b55fb0d384021"},(0,n.kt)("inlineCode",{parentName:"a"},"fe892d6"))),(0,n.kt)("li",{parentName:"ul"},"change(button): simplified storybook naming and examples ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9a7df4f46c24a234dd8bb290336ac8e7d5c7422b"},(0,n.kt)("inlineCode",{parentName:"a"},"9a7df4f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Avatar) : convert avatar component to card variation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2004a941c18f8fe21f96f88d3288446fd5e283e8"},(0,n.kt)("inlineCode",{parentName:"a"},"2004a94"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Related Content): change in grid and add see all button ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/955450e974c89aa2297eaa28d278e5098fea7705"},(0,n.kt)("inlineCode",{parentName:"a"},"955450e"))),(0,n.kt)("li",{parentName:"ul"},"change(button): added back button.overrides from pastanaga theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3b55acbf8b8df0e3daa475ab12e4db44693a4053"},(0,n.kt)("inlineCode",{parentName:"a"},"3b55acb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add card class control ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/68c91a9bf7e78874e12e868a0c466f12715a0698"},(0,n.kt)("inlineCode",{parentName:"a"},"68c91a9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):delete publication card variables & overrides files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6be8a037118762cf2280fbe44ba097a0cb7a79e0"},(0,n.kt)("inlineCode",{parentName:"a"},"6be8a03"))),(0,n.kt)("li",{parentName:"ul"},"refactor(OrderedList): rename TOC to Ordered List and add container to the story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e00c4db8e623651eb2ec9ad45de6e3d8c2693b2b"},(0,n.kt)("inlineCode",{parentName:"a"},"e00c4db"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add card grid fluid story with no columns ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f38251ca3fa04a9b586468ead44bbfe8ae110fbb"},(0,n.kt)("inlineCode",{parentName:"a"},"f38251c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(list): remove horizontal control ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f5e576a37452ed368d6f9cf4d55960e737d48ad"},(0,n.kt)("inlineCode",{parentName:"a"},"1f5e576"))),(0,n.kt)("li",{parentName:"ul"},"refactor(avatarGrid): update less variables and layer structure ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/db554a894ca10ba50ff425883000177854ea2455"},(0,n.kt)("inlineCode",{parentName:"a"},"db554a8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Related Content):show button when there are more hidden cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/57ff1c8d485d16c34002da22bd765069e6eb3df0"},(0,n.kt)("inlineCode",{parentName:"a"},"57ff1c8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(RelatedContent):change to use new card variant instead of publication card component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7cf424ae885d9b657a7635fc67a74a8af4c4e905"},(0,n.kt)("inlineCode",{parentName:"a"},"7cf424a"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumb): brought back pastanaga overrides to breadcrumbs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bca1c939c1d49dab1d4b8e72c0999d78383fd643"},(0,n.kt)("inlineCode",{parentName:"a"},"bca1c93"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):delete publication card folder & story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/68bf77306d710651bb2177d429f42b8efc127db2"},(0,n.kt)("inlineCode",{parentName:"a"},"68bf773"))),(0,n.kt)("li",{parentName:"ul"},"change(buttons): modified basic and circular variant behavior ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c06fed9fa74216cf76971b7789dad231a5125ce8"},(0,n.kt)("inlineCode",{parentName:"a"},"c06fed9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):tertiary variation minor story update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87b8dca0b8ef6c6f0fbf1ea6bc71b7b8b6ee9205"},(0,n.kt)("inlineCode",{parentName:"a"},"87b8dca"))),(0,n.kt)("li",{parentName:"ul"},"refactor(DescriptionList): add container to story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d647c1a17097eae9bdfaf8eb8068f6d1d0b13972"},(0,n.kt)("inlineCode",{parentName:"a"},"d647c1a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(List):render ordered list with ol,li tags ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87813c1a942ce498f89b51fe79a59b117afd28b0"},(0,n.kt)("inlineCode",{parentName:"a"},"87813c1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(OrderedList) : change table of contents story to ordered list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb6197c872a97f1b990c675554b1da9b0a8f7959"},(0,n.kt)("inlineCode",{parentName:"a"},"cb6197c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(publicationCard): update tag and name variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c109ad98f257fea233f31d767c4a037a2758be2d"},(0,n.kt)("inlineCode",{parentName:"a"},"c109ad9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(UnorderedList): update list as ul, list items as li and add container to strory ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2c096e117125a7fb943a5d2e665c0077761b271c"},(0,n.kt)("inlineCode",{parentName:"a"},"2c096e1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):organize controls and minor bug fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f3f6e35df077e348ea1e0c2e5c5bd73d4af5aef9"},(0,n.kt)("inlineCode",{parentName:"a"},"f3f6e35"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables): publication card style changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5a84e99ebea6345e45fac3b7ffc077ec42dfb45"},(0,n.kt)("inlineCode",{parentName:"a"},"c5a84e9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables): add less to related content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e1a55438a9fc9dd141a9515c5363d834732a0c4d"},(0,n.kt)("inlineCode",{parentName:"a"},"e1a5543"))),(0,n.kt)("li",{parentName:"ul"},"refactor(RelatedContent):delete publication card component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ed0ed4a1497224b669386f6d0942a79d00555ea"},(0,n.kt)("inlineCode",{parentName:"a"},"2ed0ed4"))),(0,n.kt)("li",{parentName:"ul"},"change(button): basic button is again without padding, border and background ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5a907c721bda1d065153b108d6c9dc0ee20a886d"},(0,n.kt)("inlineCode",{parentName:"a"},"5a907c7"))),(0,n.kt)("li",{parentName:"ul"},"refactor(PublicationCard):remove link wrapper ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5911a0db1967c58311a6776864f92bc0692052fa"},(0,n.kt)("inlineCode",{parentName:"a"},"5911a0d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables): change publication card height per viewport ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d7a525615672f387a2c8a0457bcde5c08aec45dd"},(0,n.kt)("inlineCode",{parentName:"a"},"d7a5256"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Timeline):change timeline icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b2fe0bf9a7a4583f1f10765a9f8c3c989412d472"},(0,n.kt)("inlineCode",{parentName:"a"},"b2fe0bf"))),(0,n.kt)("li",{parentName:"ul"},"refactor(publicationCard): replace px with rems ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53bf8da5e42343de7f7f940c266beb5e530dd63a"},(0,n.kt)("inlineCode",{parentName:"a"},"53bf8da"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Related Content): change in related content grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bf856ce66f9a74cb440cf8a7c93f62cd0d3965e9"},(0,n.kt)("inlineCode",{parentName:"a"},"bf856ce"))),(0,n.kt)("li",{parentName:"ul"},"refactor(List):render description list with dl,dt,dd tags ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ec669a74da08f7a82bb4a1a0a2d752b6ee5ba4bb"},(0,n.kt)("inlineCode",{parentName:"a"},"ec669a7"))),(0,n.kt)("li",{parentName:"ul"},"change(button): show only labeled variant for buttons with icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bf499446dc02e4be8d6452a3e0cba5797b8a005e"},(0,n.kt)("inlineCode",{parentName:"a"},"bf49944"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): import image for rounded card ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca5a47ea2cd713336c7c8ecdebebbdacd681282f"},(0,n.kt)("inlineCode",{parentName:"a"},"ca5a47e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progress): add container to story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dfb33bb8f3560d43e3e7300560bb557591c0a6ba"},(0,n.kt)("inlineCode",{parentName:"a"},"dfb33bb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): add publication card story with different description sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/23af97bc708ac70d70b92efe9a782548c65aabc5"},(0,n.kt)("inlineCode",{parentName:"a"},"23af97b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(List):render default list with dl & dt tags ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ece2280eb06481b3fd42e7a1ffec5c71c08e736f"},(0,n.kt)("inlineCode",{parentName:"a"},"ece2280"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): add publication cards stories with longer description ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/37adefa500c8a85a5b0b86e5b17c687828ea21fc"},(0,n.kt)("inlineCode",{parentName:"a"},"37adefa"))),(0,n.kt)("li",{parentName:"ul"},"change(button): basic icon buttons no longer have box shadows ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c2f3ea38ec3c62dce37612ac1e666a0b064309f7"},(0,n.kt)("inlineCode",{parentName:"a"},"c2f3ea3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): remove story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/afc5f7903a0049563355e3c9292fdd89fa532740"},(0,n.kt)("inlineCode",{parentName:"a"},"afc5f79"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables): change card description line number per device ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6946fdae2a1ede28a0e5971736817b3ae19bf290"},(0,n.kt)("inlineCode",{parentName:"a"},"6946fda"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): update rounded card image path ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8db3a85a45e8e05a3fe86ab824e7550d437222c3"},(0,n.kt)("inlineCode",{parentName:"a"},"8db3a85"))),(0,n.kt)("li",{parentName:"ul"},"refactor(DefaultList): add container to story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f971193369007a45fea7d517cdf0fc2314ebda69"},(0,n.kt)("inlineCode",{parentName:"a"},"f971193"))),(0,n.kt)("li",{parentName:"ul"},"change(button): bumped z-index of sidenav expand button ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/445ed8a8ede4e458814f380bee0600dbb8ff42f6"},(0,n.kt)("inlineCode",{parentName:"a"},"445ed8a"))),(0,n.kt)("li",{parentName:"ul"},"change(progress,label): color accessibility fixes #151 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/09cf6e34ed5a57bfbfc8fe95787591387776df86"},(0,n.kt)("inlineCode",{parentName:"a"},"09cf6e3"))),(0,n.kt)("li",{parentName:"ul"},"change(button): text button now has an underline with a focus border like other buttons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cdd90436bf0c4f8acaca8bf27afef672fb0f3a89"},(0,n.kt)("inlineCode",{parentName:"a"},"cdd9043"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): update card variation grids path ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/756589cff5d3607994d6cf092cb5dd0e36d51903"},(0,n.kt)("inlineCode",{parentName:"a"},"756589c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): minor fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3a880d7d14c89137b2a33342aed1a31c1b2b3939"},(0,n.kt)("inlineCode",{parentName:"a"},"3a880d7"))),(0,n.kt)("li",{parentName:"ul"},"change(button): primary color is blue and secondary is green ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53e0a0c6d32a04c52d089914a224b010b04a8846"},(0,n.kt)("inlineCode",{parentName:"a"},"53e0a0c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(List):change styles to match with the tags lists are rendered ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2673890449579a0421d8ac1c89ad4c5e850322d7"},(0,n.kt)("inlineCode",{parentName:"a"},"2673890"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progress): update colors for accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea2f454f73c859ac21c4fe6e415a2442a6c3d64c"},(0,n.kt)("inlineCode",{parentName:"a"},"ea2f454"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): move avatarGrid & relatedContent to Card folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1959d521de222c95aa13d9b3db249d133f879ccd"},(0,n.kt)("inlineCode",{parentName:"a"},"1959d52"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Timeline): change storybook timeline colors to fix accessibility issues ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/79da8dca48c709fd1df83b858296126f5e5c5753"},(0,n.kt)("inlineCode",{parentName:"a"},"79da8dc"))),(0,n.kt)("li",{parentName:"ul"},"change(segment): restore light grey background color for secondary segments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8716b08a977cacf5dbdab8ab23c714bb03066b0c"},(0,n.kt)("inlineCode",{parentName:"a"},"8716b08"))),(0,n.kt)("li",{parentName:"ul"},"refactor(relatedContent): adjust column paddings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8a1520d1b958b65e968bffdba22c3484916a475e"},(0,n.kt)("inlineCode",{parentName:"a"},"8a1520d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): clear up code ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ada154b5ab562dc7605604de8002a9d3461e594"},(0,n.kt)("inlineCode",{parentName:"a"},"3ada154"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): use the rounded class for avatar grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8c000f3c37103e0068b6d6554783da8188603442"},(0,n.kt)("inlineCode",{parentName:"a"},"8c000f3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card) Update rounded card class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/140b58746673a864d7ea218c4f8a02dc70207af4"},(0,n.kt)("inlineCode",{parentName:"a"},"140b587"))),(0,n.kt)("li",{parentName:"ul"},"refactor(avatar): add variable for image border radius ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c23341c66d34a9dfa572be4df24f1faf4325d58e"},(0,n.kt)("inlineCode",{parentName:"a"},"c23341c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(label): add container to story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/565101fff2c8860deedd599b7b0cff0660c663f6"},(0,n.kt)("inlineCode",{parentName:"a"},"565101f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progress): update value color for accessibility error ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6fc76f8ff3df4bf2b83863687e5ab6bd5e4cd1ef"},(0,n.kt)("inlineCode",{parentName:"a"},"6fc76f8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):use jsx extension ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/413d3284869a35f39f886df7862db6a52e8cc18e"},(0,n.kt)("inlineCode",{parentName:"a"},"413d328")))),(0,n.kt)("h4",{id:"-internal-changes-17"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(Avatar) : add container to stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/41b748cd23002d597d9b6fbb7947a443ef40f9b2"},(0,n.kt)("inlineCode",{parentName:"a"},"41b748c"))),(0,n.kt)("li",{parentName:"ul"},"style(OrderedList): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ed95e4dea2f33d46ca604e1b2c30d63b5596c03d"},(0,n.kt)("inlineCode",{parentName:"a"},"ed95e4d")))),(0,n.kt)("h4",{id:"\ufe0f-others-45"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"perf(eol): change to LF ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c71e42e4a8cf49c4a3b943bfdc8a94c9a9cc4940"},(0,n.kt)("inlineCode",{parentName:"a"},"c71e42e"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): linux eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e0bb30132904f92b9755356f6b5ccbf72075425"},(0,n.kt)("inlineCode",{parentName:"a"},"6e0bb30"))),(0,n.kt)("li",{parentName:"ul"},"lint fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a68866d4058f7412a2635371adebc370b6445281"},(0,n.kt)("inlineCode",{parentName:"a"},"a68866d"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): lf fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7054b2067b0802c5bd04e185cba76e2577ccfdd1"},(0,n.kt)("inlineCode",{parentName:"a"},"7054b20"))),(0,n.kt)("li",{parentName:"ul"},"doco(list): update Ordered List showcase ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/75e40bf4487ea334c9ebc2dd6c2a392d82e662f3"},(0,n.kt)("inlineCode",{parentName:"a"},"75e40bf"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): lf fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19235e585ac50c3669f654a93798b8998894f900"},(0,n.kt)("inlineCode",{parentName:"a"},"19235e5"))),(0,n.kt)("li",{parentName:"ul"},"fixed js syntax error from previous commit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/37dc1f5c1506040c1f155afdea76c4ed739ddda2"},(0,n.kt)("inlineCode",{parentName:"a"},"37dc1f5"))),(0,n.kt)("li",{parentName:"ul"},"Next relese: 0.2.2 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b3fb40ff5e46d7519b6356fdaf7326780bd89d9e"},(0,n.kt)("inlineCode",{parentName:"a"},"b3fb40f")))),(0,n.kt)("h3",{id:"021---2022-04-08"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.2.0...0.2.1"},"0.2.1")," - 2022-04-08"),(0,n.kt)("h4",{id:"-bug-fixes-40"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(version): Switch to 2.0.0.alpha.1 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/83b8b8ebba4f1eb31514b16476ac23a5d2b03ea9"},(0,n.kt)("inlineCode",{parentName:"a"},"83b8b8e")))),(0,n.kt)("h4",{id:"\ufe0f-others-46"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"cleanup(loader): Remove useless HTML ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d1d180c714ea225c1ad269360413a5e5e4b39f22"},(0,n.kt)("inlineCode",{parentName:"a"},"d1d180c")))),(0,n.kt)("h3",{id:"020---2022-04-04"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.9...0.2.0"},"0.2.0")," - 2022-04-04"),(0,n.kt)("h4",{id:"-new-features-27"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(card) : add new default card color-schme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/965adea8eef6d8729790f6d2bd5e71daeee15d75"},(0,n.kt)("inlineCode",{parentName:"a"},"965adea"))),(0,n.kt)("li",{parentName:"ul"},"feat(label): Handle slate links and footnotes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f382431219df29be498fe5063f3d579f0b918068"},(0,n.kt)("inlineCode",{parentName:"a"},"f382431")))),(0,n.kt)("h4",{id:"-bug-fixes-41"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(buttons,toggles): border and background color when active 147629 #139 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea36f31e986110d6c28c104d01666104ac38e2ba"},(0,n.kt)("inlineCode",{parentName:"a"},"ea36f31"))),(0,n.kt)("li",{parentName:"ul"},"fix(checkboxes): background color when they are toggles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4b6ab67085b7514c4f0ab2322e8f45de8bc09449"},(0,n.kt)("inlineCode",{parentName:"a"},"4b6ab67"))),(0,n.kt)("li",{parentName:"ul"},"fix(buttons): border set on basic buttons appearing on svg elements of Volto UI ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/69ca73f33b562b3f87bf11ce43a52ac01f83b951"},(0,n.kt)("inlineCode",{parentName:"a"},"69ca73f"))),(0,n.kt)("li",{parentName:"ul"},"fix(label): Zotero/Footnotes inside label ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0ee4d584f2771b739ed5f2332cb33aad61391786"},(0,n.kt)("inlineCode",{parentName:"a"},"0ee4d58"))),(0,n.kt)("li",{parentName:"ul"},"fix(card) : add control for image url in storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b28e5303ba04c6aee673f1d7f98ce42037c672e1"},(0,n.kt)("inlineCode",{parentName:"a"},"b28e530"))),(0,n.kt)("li",{parentName:"ul"},"fix(less variables):change font family ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e4bca9e0cb7ab9f1fd86e9f4c558382ec129e5a1"},(0,n.kt)("inlineCode",{parentName:"a"},"e4bca9e"))),(0,n.kt)("li",{parentName:"ul"},"fix(storybook):minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9fc53bcad61bbe0561d7a986dbba567d53777a8c"},(0,n.kt)("inlineCode",{parentName:"a"},"9fc53bc"))),(0,n.kt)("li",{parentName:"ul"},"fix(tag): fixes merged theme config ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/eb30363fda8a8a88155ee05268c4d7660fe99df1"},(0,n.kt)("inlineCode",{parentName:"a"},"eb30363"))),(0,n.kt)("li",{parentName:"ul"},"fix(Banner): prop types fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a270e5b4d6e571f219b5da31ca8f883f74da05e3"},(0,n.kt)("inlineCode",{parentName:"a"},"a270e5b")))),(0,n.kt)("h4",{id:"-enhancements-56"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(tag): splits Tags component to TagList and tag, changes default tags style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/78a5f8c245149706a1f7b825ef3e02da5ba86445"},(0,n.kt)("inlineCode",{parentName:"a"},"78a5f8c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner):add banner share pop up in banner story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c9688b2b697c879bbaed3cb3a688a0af7fc71234"},(0,n.kt)("inlineCode",{parentName:"a"},"c9688b2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tag): remove classes and actions that add background color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce9b6f92589618f6cb1e839a2cddc44381ef7406"},(0,n.kt)("inlineCode",{parentName:"a"},"ce9b6f9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner):change banner's image wrapper implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9153dd1073999e67c105b5ba90538bc963e17abc"},(0,n.kt)("inlineCode",{parentName:"a"},"9153dd1"))),(0,n.kt)("li",{parentName:"ul"},"change(package): bump release version to 1.10.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e984c1e1a6ea481a58a5b7a783d077b5769a621"},(0,n.kt)("inlineCode",{parentName:"a"},"7e984c1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): align cards and images, update less variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d47c9780bfbc23d1cba3578f181864074db97e98"},(0,n.kt)("inlineCode",{parentName:"a"},"d47c978"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add class inverted for default card ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/919a56e79c0243fa567144fadd4b842f75f1cf8f"},(0,n.kt)("inlineCode",{parentName:"a"},"919a56e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tag): changes component name ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e1db068bd7ac336a451a4514c61fe44557e14cc2"},(0,n.kt)("inlineCode",{parentName:"a"},"e1db068"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tag): changes color metallicBlue to bottleGreen ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e4b68acf95bb3e192914aab89b2122e0434bf72c"},(0,n.kt)("inlineCode",{parentName:"a"},"e4b68ac"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables): change tag list mobile view ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fcded3dbc67465eec6ef7f72d3fd599ec5cd3c13"},(0,n.kt)("inlineCode",{parentName:"a"},"fcded3d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tagList): update story to not use tag color classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8b5b61bfad9225c0538b713937ed39bbd0bd14e9"},(0,n.kt)("inlineCode",{parentName:"a"},"8b5b61b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner):minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff8c352b899b78528897547df0b20c357fd153cd"},(0,n.kt)("inlineCode",{parentName:"a"},"ff8c352"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner): add metadata field sub component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/327b7e77626c18ae783aea9efae0c7589f63d4f5"},(0,n.kt)("inlineCode",{parentName:"a"},"327b7e7"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): add and adjust remix icon for banner action ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1bf3ffaa16432746c5e5577f0b1643f6659b3f56"},(0,n.kt)("inlineCode",{parentName:"a"},"1bf3ffa"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): replace px with rem and adjust share popup padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a5683294570227d0b25a99e410eb824b2c6d643c"},(0,n.kt)("inlineCode",{parentName:"a"},"a568329"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner):add type class to metadata field and apply styles to it ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/86a286699146c7dda9e288e2183ec8cc86f35a23"},(0,n.kt)("inlineCode",{parentName:"a"},"86a2866"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables):change tag list styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/867008791545769aa003ef7a8a820a7e5a873e4b"},(0,n.kt)("inlineCode",{parentName:"a"},"8670087"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): share items display flex on desktop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ff86840e548f47cd597a0c76b23f996d4a9d74b"},(0,n.kt)("inlineCode",{parentName:"a"},"3ff8684"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): added background gradient, share popup, metadata show and hide #136 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2f5dccacf1e23f45f351b0be58c9bbda04da1518"},(0,n.kt)("inlineCode",{parentName:"a"},"2f5dcca"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): update gradient ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/570ee1e1e9778cb98757804fbd8ad7d9dee9ad13"},(0,n.kt)("inlineCode",{parentName:"a"},"570ee1e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tags): removes hardcoded ':' ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea58e86a79b46b5150d84ff2fbb6a7b8ba47876c"},(0,n.kt)("inlineCode",{parentName:"a"},"ea58e86"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): remove card border ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bc777397026f0efe8e569c8fd0e90d98b585b0eb"},(0,n.kt)("inlineCode",{parentName:"a"},"bc77739")))),(0,n.kt)("h4",{id:"-internal-changes-18"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(card) : add lint and prettier changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9d9a77363f7e4f7ec2ea4db5fa777dc97e086156"},(0,n.kt)("inlineCode",{parentName:"a"},"9d9a773"))),(0,n.kt)("li",{parentName:"ul"},"style(tag): remove comments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/501fcdfb8271f4a3558dadb96c546e71cfdef286"},(0,n.kt)("inlineCode",{parentName:"a"},"501fcdf"))),(0,n.kt)("li",{parentName:"ul"},"style(tag): stylelint and prettier changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/08b63864e8394fd86ada78df0b441cda52cd8063"},(0,n.kt)("inlineCode",{parentName:"a"},"08b6386")))),(0,n.kt)("h4",{id:"\ufe0f-others-47"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"1.10 release #140 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/88d33396845f00830789867663a9cd66ad88920f"},(0,n.kt)("inlineCode",{parentName:"a"},"88d3339"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/328ef2cda2d3470b5cb5ae2ef9854323f6b0f3c7"},(0,n.kt)("inlineCode",{parentName:"a"},"328ef2c"))),(0,n.kt)("li",{parentName:"ul"},"undo changes to Header.jsx committed wrongly in 4b6ab ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bfc4c51d39cf9c5151c39b099071174897de10b0"},(0,n.kt)("inlineCode",{parentName:"a"},"bfc4c51"))),(0,n.kt)("li",{parentName:"ul"},"Update 0-intro.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af75f81a84ddb9b78a77a96450976c6cd1223924"},(0,n.kt)("inlineCode",{parentName:"a"},"af75f81"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): lf fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ecf474ffbaab6796434d49c30fb09deafe9d1125"},(0,n.kt)("inlineCode",{parentName:"a"},"ecf474f"))),(0,n.kt)("li",{parentName:"ul"},"Update 0-intro.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93a073242693fa3c24c39532c2c462f58071e5c4"},(0,n.kt)("inlineCode",{parentName:"a"},"93a0732"))),(0,n.kt)("li",{parentName:"ul"},"modifies tags title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/33c3714660aa6cfbca7e362fd7baa8c396b60a0e"},(0,n.kt)("inlineCode",{parentName:"a"},"33c3714"))),(0,n.kt)("li",{parentName:"ul"},"reafactor(taglist): fixes tags root class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d09959f85d2d21cdc890a71457ed5840b5b2c53"},(0,n.kt)("inlineCode",{parentName:"a"},"7d09959")))),(0,n.kt)("h3",{id:"019---2022-03-25"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.8...0.1.9"},"0.1.9")," - 2022-03-25"),(0,n.kt)("h4",{id:"-new-features-28"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(all): 1.9 release #124 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0d3f6fbf32a4948e00410d9d0943a077863cb869"},(0,n.kt)("inlineCode",{parentName:"a"},"0d3f6fb"))),(0,n.kt)("li",{parentName:"ul"},"feat(callout): Align volto-slate callout with blockquote style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9e0bb49ffe66ebb8b8173af411873ab887b91058"},(0,n.kt)("inlineCode",{parentName:"a"},"9e0bb49")))),(0,n.kt)("h4",{id:"-bug-fixes-42"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(inpageNavigation): restore hidden on top functionality ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c554e6e02e0c82b74653498e2f3fd32a982002a4"},(0,n.kt)("inlineCode",{parentName:"a"},"c554e6e"))),(0,n.kt)("li",{parentName:"ul"},"fix(list): Fix TOC margin on 3rd level ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f17da79394e29baf62bae1247dd954cdd0362108"},(0,n.kt)("inlineCode",{parentName:"a"},"f17da79"))),(0,n.kt)("li",{parentName:"ul"},"fix(inpageNavigation) : add smooth scroll animation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/42f6564276b9214257e2dbc1e2a8f7e501625aee"},(0,n.kt)("inlineCode",{parentName:"a"},"42f6564")))),(0,n.kt)("h4",{id:"-enhancements-57"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update visual and mobile margins ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/64f05af91638d91d2c07217b8edc2fb70a5e7347"},(0,n.kt)("inlineCode",{parentName:"a"},"64f05af"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): restore union dropdown after implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7029c556a9adc1ab9b0269de666e0ed0530f67e"},(0,n.kt)("inlineCode",{parentName:"a"},"a7029c5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pullquote): adjust to the new figma design ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/78e4606ac299938021f9e525898ae7f5cede311f"},(0,n.kt)("inlineCode",{parentName:"a"},"78e4606"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumb): adjust font sizes and import remix divider ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5fcabaf589074716b34fb5d0904e14549d7f4ef2"},(0,n.kt)("inlineCode",{parentName:"a"},"5fcabaf"))),(0,n.kt)("li",{parentName:"ul"},"change(header): use viewport width for changing mobile text in header dropdowns ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5a7868e1725f8766ae1be68d3c27b1313f79196b"},(0,n.kt)("inlineCode",{parentName:"a"},"5a7868e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(inpageNavigation): adjust to the new figma design ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4073acfb87378224d071079467bcfa195b1fc6ac"},(0,n.kt)("inlineCode",{parentName:"a"},"4073acf"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tab): add max width for tab items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/366d279a94d5f388c6167e7afb72d108c77c4085"},(0,n.kt)("inlineCode",{parentName:"a"},"366d279"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables):change pullquote styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9ad94bb424a14713ffa605c7497c95bdefeb6e5f"},(0,n.kt)("inlineCode",{parentName:"a"},"9ad94bb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Pullquote):change quote positions and add Pullquote.Metadata sub component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6bce35fa3cc158d9d18a07d0faf812c5c38bae0b"},(0,n.kt)("inlineCode",{parentName:"a"},"6bce35f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(inpageNavigation): Update to remix icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19a606170b4163cf4f751a419ca36a4c163b566d"},(0,n.kt)("inlineCode",{parentName:"a"},"19a6061"))),(0,n.kt)("li",{parentName:"ul"},"refactor(inpageNavigation) : move icon & text to be in column ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/09539102489ec511cb2b6cd047d316ab8b87ed55"},(0,n.kt)("inlineCode",{parentName:"a"},"0953910"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumbs): modified breadcrumbs template to behave like breadrumb template ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/490a559bc99f3a9d174a344cf0be85086293578e"},(0,n.kt)("inlineCode",{parentName:"a"},"490a559"))),(0,n.kt)("li",{parentName:"ul"},"change(package): bump release version to 1.9.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/43a6e4b92fd05ca272fb140922213834ee426938"},(0,n.kt)("inlineCode",{parentName:"a"},"43a6e4b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumb): adjust font sizes and import remix divider #120 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/09a3a01910ed898b62a9535fe5d2a41cfdb3a91b"},(0,n.kt)("inlineCode",{parentName:"a"},"09a3a01"))),(0,n.kt)("li",{parentName:"ul"},"change(menu): modified secondaryPointingItemMaxWidth to a value that equals to 250 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea138a10257206fae32c4e9a30233a3ddfd424b6"},(0,n.kt)("inlineCode",{parentName:"a"},"ea138a1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pullquote): introduce meta section, use remix icons, integrate slate callouts #119 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fd740c9e72b2defa5cc858ac020f0cb051aa527c"},(0,n.kt)("inlineCode",{parentName:"a"},"fd740c9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): updated visuals and gradients #117 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e5c6d18dc3fb33e5dfa654ecebdc12c6f5f0cf32"},(0,n.kt)("inlineCode",{parentName:"a"},"e5c6d18"))),(0,n.kt)("li",{parentName:"ul"},"change(scrollToTop): feature inpage navigation revamp #121 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3cf20a82b723b8df0b53f16c737e5c8990f891f1"},(0,n.kt)("inlineCode",{parentName:"a"},"3cf20a8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update visual and gradient ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/764ec23a456397b478456f7d628baa4e6c0b4713"},(0,n.kt)("inlineCode",{parentName:"a"},"764ec23"))),(0,n.kt)("li",{parentName:"ul"},"change(header): use 12px font size for mobile resolution dropdowns ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6dad0fab24f37f87696bb50f5a592e88510d053e"},(0,n.kt)("inlineCode",{parentName:"a"},"6dad0fa"))),(0,n.kt)("li",{parentName:"ul"},"change(nav): added navDepth to 3 in order to enable mega menu integration ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4f73fdd0dfadcd63b2f4be7a691bf12dcd9bb76"},(0,n.kt)("inlineCode",{parentName:"a"},"c4f73fd")))),(0,n.kt)("h4",{id:"-internal-changes-19"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(inpageNavigation) : lint changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3641d78374063904c00f1ba19f2f234f7a43892b"},(0,n.kt)("inlineCode",{parentName:"a"},"3641d78"))),(0,n.kt)("li",{parentName:"ul"},"style(inpageNavigation) : add less variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0699c70c66403ff75bf41ba252a74e9f4379671c"},(0,n.kt)("inlineCode",{parentName:"a"},"0699c70"))),(0,n.kt)("li",{parentName:"ul"},"style(pullquote): create variable for icon font size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fea9b0a7c33237ad036522b4dde567718d640210"},(0,n.kt)("inlineCode",{parentName:"a"},"fea9b0a"))),(0,n.kt)("li",{parentName:"ul"},"style(inpageNavigation) : add lint & prettier changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f8dd012a964e0c1f0bc22c36826a4a94bd052759"},(0,n.kt)("inlineCode",{parentName:"a"},"f8dd012"))),(0,n.kt)("li",{parentName:"ul"},"style(inpageNavigation): remove comment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1aee011d032c1a2b7fe564a40688bc39ca457c18"},(0,n.kt)("inlineCode",{parentName:"a"},"1aee011")))),(0,n.kt)("h4",{id:"\ufe0f-others-48"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"perf(eol): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/85a3dc55c7676c0feb8dd5b39fe0cbb9d66a9370"},(0,n.kt)("inlineCode",{parentName:"a"},"85a3dc5"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/00776211ccfa1cb90d9fa0e5269f47f5b3845741"},(0,n.kt)("inlineCode",{parentName:"a"},"0077621"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f1bb1c630edb669b03929a978cc116bae012255"},(0,n.kt)("inlineCode",{parentName:"a"},"9f1bb1c"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2b19fec30d6086f486bdca631a9114d8369fe43"},(0,n.kt)("inlineCode",{parentName:"a"},"e2b19fe"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/03dbc9b027578934f89d9480d981e1bc28f38aa3"},(0,n.kt)("inlineCode",{parentName:"a"},"03dbc9b"))),(0,n.kt)("li",{parentName:"ul"},"Hide breadcrumbs on homepage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e2f609df8d4b6bdb826e539fc0c613406d357a5"},(0,n.kt)("inlineCode",{parentName:"a"},"3e2f609"))),(0,n.kt)("li",{parentName:"ul"},"bug(inpageNavigation): less layers structure fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8d34fbdd5130ed36157db1ff70e8b039faa9f81"},(0,n.kt)("inlineCode",{parentName:"a"},"b8d34fb"))),(0,n.kt)("li",{parentName:"ul"},"prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4b1c572411cbc58dec51d5eeefe9847675c2e41"},(0,n.kt)("inlineCode",{parentName:"a"},"d4b1c57"))),(0,n.kt)("li",{parentName:"ul"},"fefactor(tab): add max width for tab items #118 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/716c408fa4c73f3feb8e36e35fb1f6bb50ac264c"},(0,n.kt)("inlineCode",{parentName:"a"},"716c408"))),(0,n.kt)("li",{parentName:"ul"},"Add reversed option to Timeline grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7c9023245f2fc943380f79743b5f10c6b6f65264"},(0,n.kt)("inlineCode",{parentName:"a"},"7c90232"))),(0,n.kt)("li",{parentName:"ul"},"doc(grid): update grid showcases ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/83671a382e39a2736c2c1353098d5f4fc2a0e67e"},(0,n.kt)("inlineCode",{parentName:"a"},"83671a3"))),(0,n.kt)("li",{parentName:"ul"},"End of line ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7f46fb752ec8918325ebadd386ee88248e02566c"},(0,n.kt)("inlineCode",{parentName:"a"},"7f46fb7")))),(0,n.kt)("h3",{id:"018---2022-03-18"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.7...0.1.8"},"0.1.8")," - 2022-03-18"),(0,n.kt)("h4",{id:"-bug-fixes-43"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(card): avoid long links from spilling outside of card body area ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/95b8951ab87bfab7a68cc20b89b25aa15113aa9d"},(0,n.kt)("inlineCode",{parentName:"a"},"95b8951")))),(0,n.kt)("h4",{id:"-enhancements-58"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(typography): set heading sizes as detailed in docusaurus typography section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/189bf20409581587061ffa30ff2bf04d97f284cf"},(0,n.kt)("inlineCode",{parentName:"a"},"189bf20"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): content tweaks, inpage navigation section #112 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b62d1b1def7c3d8890ffbba30950e8e422e9ed89"},(0,n.kt)("inlineCode",{parentName:"a"},"b62d1b1")))),(0,n.kt)("h4",{id:"-internal-changes-20"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(docusaurus): fixed grid tablet breakpoint value ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c7fbc0912131396e3a1e35803968eda1eff77d40"},(0,n.kt)("inlineCode",{parentName:"a"},"c7fbc09")))),(0,n.kt)("h4",{id:"-documentation-changes-18"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): capitalization remove ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bf8fa4407e7110da1c6a911506d56800bd5c32d7"},(0,n.kt)("inlineCode",{parentName:"a"},"bf8fa44"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1c04976a141324f0dde01b139a77f611e6f51840"},(0,n.kt)("inlineCode",{parentName:"a"},"1c04976"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): comment address on pr 112 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e4fe3bed285eae8b2cff03b1ef558debc0b4edb"},(0,n.kt)("inlineCode",{parentName:"a"},"6e4fe3b"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): color minor update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/13f9fda09287da5b8733d17f9c7567b6b7df750a"},(0,n.kt)("inlineCode",{parentName:"a"},"13f9fda"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): tabs and breadcrump update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d0547e5ad09a8608335b1e77e24c891e49213694"},(0,n.kt)("inlineCode",{parentName:"a"},"d0547e5")))),(0,n.kt)("h4",{id:"\ufe0f-others-49"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"doc(colours): add more content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ec66248f1290369dcf63ee12f7b71a1630df887b"},(0,n.kt)("inlineCode",{parentName:"a"},"ec66248"))),(0,n.kt)("li",{parentName:"ul"},"Add divider content for metadata field in Banner ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f1e34bd6a199f6418fba909e9dfdf50b0100e860"},(0,n.kt)("inlineCode",{parentName:"a"},"f1e34bd"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.8.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fd6ba047e8f8b257c3c75d07a6caefad376f888a"},(0,n.kt)("inlineCode",{parentName:"a"},"fd6ba04")))),(0,n.kt)("h3",{id:"017---2022-03-15"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.6...0.1.7"},"0.1.7")," - 2022-03-15"),(0,n.kt)("h4",{id:"-new-features-29"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(less): add global gap sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c83f20280b8a7ab0b5c78e3df7646beebe08709"},(0,n.kt)("inlineCode",{parentName:"a"},"3c83f20"))),(0,n.kt)("li",{parentName:"ul"},"feat(icons): import remix css ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/29967fb39034910dce286880f347a670f77421b3"},(0,n.kt)("inlineCode",{parentName:"a"},"29967fb")))),(0,n.kt)("h4",{id:"-bug-fixes-44"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(menu): fix border overflow for tabs and pagination ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e88721f916affa2a6d2f03930eb4266f9a2b0fb9"},(0,n.kt)("inlineCode",{parentName:"a"},"e88721f"))),(0,n.kt)("li",{parentName:"ul"},"fix(accordion): responsive and accessibility issues ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c225935ceb9fdba45c6f94086a35e177495fe584"},(0,n.kt)("inlineCode",{parentName:"a"},"c225935")))),(0,n.kt)("h4",{id:"-enhancements-59"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(menu): update paddings for tabs and pagination ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/533a5093e6c306034cb16e0a88e045019677951e"},(0,n.kt)("inlineCode",{parentName:"a"},"533a509"))),(0,n.kt)("li",{parentName:"ul"},"refactor(accordion): import semantic icon for remix arrows ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9aa77d856d1e43f4ec3daaab37f06fa91ebd1eaf"},(0,n.kt)("inlineCode",{parentName:"a"},"9aa77d8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(all) icons, accordion, button and menu itml #108 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/52ed2ca19b5e8dea60f1ee7bfd9c3b6b49a49f7d"},(0,n.kt)("inlineCode",{parentName:"a"},"52ed2ca"))),(0,n.kt)("li",{parentName:"ul"},"change(storybook): segment stories now contain several elements ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/98a7654b0d4a7c30c7a2df35103ddb2740f3ca2d"},(0,n.kt)("inlineCode",{parentName:"a"},"98a7654"))),(0,n.kt)("li",{parentName:"ul"},"change(table): inherit header alignment instead of hard-coding values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ebb5193babfe8b99094db6778afdaf2d91b2c4dd"},(0,n.kt)("inlineCode",{parentName:"a"},"ebb5193"))),(0,n.kt)("li",{parentName:"ul"},"refactor(icons): add remix icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4c1a92b671b52c509386addc02e8919c93391fb"},(0,n.kt)("inlineCode",{parentName:"a"},"c4c1a92"))),(0,n.kt)("li",{parentName:"ul"},"refactor(container): restore mobile width to auto ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2df184c19a8685c69e6b9a55b147a97853cc6b74"},(0,n.kt)("inlineCode",{parentName:"a"},"2df184c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button): update action button hover color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bb09d718433f93091ca1b325471d48741825ca96"},(0,n.kt)("inlineCode",{parentName:"a"},"bb09d71")))),(0,n.kt)("h4",{id:"-internal-changes-21"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(docusaurus): docs delete ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f9d733287902ccb096f5a976a2928e43a43a8e7"},(0,n.kt)("inlineCode",{parentName:"a"},"5f9d733")))),(0,n.kt)("h4",{id:"-documentation-changes-19"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(colors): corrections ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/da64c4c6b58e8840ea98be75d442b90911197e28"},(0,n.kt)("inlineCode",{parentName:"a"},"da64c4c"))),(0,n.kt)("li",{parentName:"ul"},"docs(list): default list showcase ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8ded06231c14d1394f77559aeb2d5a7e3a0c1bf1"},(0,n.kt)("inlineCode",{parentName:"a"},"8ded062")))),(0,n.kt)("h4",{id:"\ufe0f-others-50"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"bug(form): input min-width more specific to not break volto interface ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3f5b5d498ea1a0e3bb6fd62af5930f6579029b11"},(0,n.kt)("inlineCode",{parentName:"a"},"3f5b5d4"))),(0,n.kt)("li",{parentName:"ul"},"Update package.json ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3dba28b5a3d28adbf946a8df3d9cc9b8ef4c68e0"},(0,n.kt)("inlineCode",{parentName:"a"},"3dba28b")))),(0,n.kt)("h3",{id:"016---2022-03-11"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.5...0.1.6"},"0.1.6")," - 2022-03-11"),(0,n.kt)("h4",{id:"-new-features-30"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(cards): add custom display for volto-block-image-cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/645096ac5a0aa3326834191f56ee8a77db0464f5"},(0,n.kt)("inlineCode",{parentName:"a"},"645096a"))),(0,n.kt)("li",{parentName:"ul"},"feat(PublicationCard):create publication card component & styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e5f9b7a9bb301f446b232b99f7db54e6a7470ae"},(0,n.kt)("inlineCode",{parentName:"a"},"3e5f9b7"))),(0,n.kt)("li",{parentName:"ul"},"feat(PublicationCard):create publication card component & styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/12cdd5d50dc4c05f2c2b83586df90c7b91c11a75"},(0,n.kt)("inlineCode",{parentName:"a"},"12cdd5d"))),(0,n.kt)("li",{parentName:"ul"},"feat(Related Content): create Related Content component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/77eda953196f9e686d4ec2c996d6902a614af4a0"},(0,n.kt)("inlineCode",{parentName:"a"},"77eda95"))),(0,n.kt)("li",{parentName:"ul"},"feat(Related Content): create Related Content component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/08d495baeae575a07813056176ac940d7edc91eb"},(0,n.kt)("inlineCode",{parentName:"a"},"08d495b"))),(0,n.kt)("li",{parentName:"ul"},"feat(pagination,related) added several r3 components #105 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/08d47c199286402c31a0ff0de38fd08533d2cd91"},(0,n.kt)("inlineCode",{parentName:"a"},"08d47c1")))),(0,n.kt)("h4",{id:"-bug-fixes-45"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(Related Content): limit publication card number to 4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e7df03214824a85911c26499c8975f88ffa9fe4d"},(0,n.kt)("inlineCode",{parentName:"a"},"e7df032"))),(0,n.kt)("li",{parentName:"ul"},"fix(less variables):rename publication card variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/55c6fb8e5e9660352ce1bf2bd38c4ef8834ce184"},(0,n.kt)("inlineCode",{parentName:"a"},"55c6fb8"))),(0,n.kt)("li",{parentName:"ul"},"fix(Publication Card): add link to card and arg name fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/36a7c961639b2ff07acd455ccf277dd0a93f753c"},(0,n.kt)("inlineCode",{parentName:"a"},"36a7c96"))),(0,n.kt)("li",{parentName:"ul"},"fix(radio): fix bullet scaling issue with firefox ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f02c95f18c77527f949f115471cf24302df4d49"},(0,n.kt)("inlineCode",{parentName:"a"},"5f02c95"))),(0,n.kt)("li",{parentName:"ul"},"fix(radio): fix bullet scaling issue with firefox ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dbb2e27b43e6d267a436a8475107ad01e940ec93"},(0,n.kt)("inlineCode",{parentName:"a"},"dbb2e27")))),(0,n.kt)("h4",{id:"-enhancements-60"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(form): remove custom classes and add container to form items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6b5442a3c56854bf30269f235099d8507ba588f7"},(0,n.kt)("inlineCode",{parentName:"a"},"6b5442a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form): remove custom classes and add container to form items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d1ec083647f854c09d8a64dffa6a5c829321049e"},(0,n.kt)("inlineCode",{parentName:"a"},"d1ec083"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form): update form wrapper component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7195768bbe86121fc82bebca29abfb20b50d77a"},(0,n.kt)("inlineCode",{parentName:"a"},"a719576"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form): update form wrapper component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0736ec7d671d756c13a69bd8bf93488805da27e2"},(0,n.kt)("inlineCode",{parentName:"a"},"0736ec7"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form): adjust form items to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4213cfb79430273e637b06a76af28c9cd660aa74"},(0,n.kt)("inlineCode",{parentName:"a"},"4213cfb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form): adjust form items to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/374ffbc1c380df1b1a5f9939fc658d9ecca4ae1b"},(0,n.kt)("inlineCode",{parentName:"a"},"374ffbc"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumb): remove custom class anf and new variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b3cb83d90e0be7f8a80f619d57bc90cae4f8f207"},(0,n.kt)("inlineCode",{parentName:"a"},"b3cb83d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumb): remove custom class anf and new variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5808ad3576439df010bebfb8fd423858ffc4e66"},(0,n.kt)("inlineCode",{parentName:"a"},"d5808ad"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): clear up unnecessary form elements controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f7e7d5bc285ea5115bc8770c7471729f06da891e"},(0,n.kt)("inlineCode",{parentName:"a"},"f7e7d5b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): small change in unordered list story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ffd87246df9dffcc064683e93d6f3aff35b3931"},(0,n.kt)("inlineCode",{parentName:"a"},"3ffd872"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): small change in unordered list story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6ce16e990f15ef8c61493359815405517756c32c"},(0,n.kt)("inlineCode",{parentName:"a"},"6ce16e9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pagination): fix menu overrides for tabs that affects pagination ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fe8c4ca32072518820ad38f8b334b38f52ef2df5"},(0,n.kt)("inlineCode",{parentName:"a"},"fe8c4ca"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pagination): fix menu overrides for tabs that affects pagination ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3f4b726c2a2047f6f9a65375074dd7ea38717f5c"},(0,n.kt)("inlineCode",{parentName:"a"},"3f4b726"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Loader):remove image & add background image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70fe041e06cfee946bb9557f9fcb5ff49d08c287"},(0,n.kt)("inlineCode",{parentName:"a"},"70fe041"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Loader):remove image & add background image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac3812684ee4377914801cd770890c78bdeecedf"},(0,n.kt)("inlineCode",{parentName:"a"},"ac38126"))),(0,n.kt)("li",{parentName:"ul"},"refactor(list): remove selection control ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a09b1798a62a6e192deb1d217d0c44b4b881ce6a"},(0,n.kt)("inlineCode",{parentName:"a"},"a09b179"))),(0,n.kt)("li",{parentName:"ul"},"refactor(list): remove selection control ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/17bf710d00a91acd35356dbaa9d5093ca80a8987"},(0,n.kt)("inlineCode",{parentName:"a"},"17bf710"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook):unordered list minor change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/df2b72730500aee5d0bbc82185222edacad38b2b"},(0,n.kt)("inlineCode",{parentName:"a"},"df2b727"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook):unordered list minor change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef6db73ce2236d0f653212d2f57c336f1f8d806e"},(0,n.kt)("inlineCode",{parentName:"a"},"ef6db73"))),(0,n.kt)("li",{parentName:"ul"},"refactor(colors): remove metalic blue color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b2f95b6dc3b1d8314827d56e88efa0dfc719aca2"},(0,n.kt)("inlineCode",{parentName:"a"},"b2f95b6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(colors): remove metalic blue color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1eea33f71fdde5834f82d244224c185fde3ab8ba"},(0,n.kt)("inlineCode",{parentName:"a"},"1eea33f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button): update variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b1774d8c7f32ded2eff654b0d16e45d944fe5690"},(0,n.kt)("inlineCode",{parentName:"a"},"b1774d8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button): update variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/061f3e3042f28575dbb1a70f09a62bda728815be"},(0,n.kt)("inlineCode",{parentName:"a"},"061f3e3"))),(0,n.kt)("li",{parentName:"ul"},"change(blockquote): treat slate as a variation of blockquote component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19bd9a5f67e573b71531fe34b29d2e08e0856eae"},(0,n.kt)("inlineCode",{parentName:"a"},"19bd9a5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(container): remove important from rules ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e984771ed59fe849246ae8a01d9d84f3f2f232c5"},(0,n.kt)("inlineCode",{parentName:"a"},"e984771"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook):add textarea control to add/remove fluid class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/475f540efa76d0993c3f7bd72d4c646385f4c909"},(0,n.kt)("inlineCode",{parentName:"a"},"475f540"))),(0,n.kt)("li",{parentName:"ul"},"refactor(container): remove important from rules ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1cc69848705d3d592221bf7fa7d43c8b0eb37f09"},(0,n.kt)("inlineCode",{parentName:"a"},"1cc6984"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): add required attribute to form fields ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fecee278b920c44dd0dd34ace81f9606258c8f7c"},(0,n.kt)("inlineCode",{parentName:"a"},"fecee27"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progressBar): update progress bar colors with vars ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4ef1f0f6eba9792901bc9e0ec5b01877e9da96e"},(0,n.kt)("inlineCode",{parentName:"a"},"c4ef1f0"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progressBar): update progress bar colors with vars ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a44d73c48b6ccc988508fed5c3fb585353fe0958"},(0,n.kt)("inlineCode",{parentName:"a"},"a44d73c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): add required attribute to form fields ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/21da79eafa9f23dcf01cac7e096da7fab2187450"},(0,n.kt)("inlineCode",{parentName:"a"},"21da79e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(list): adjust bullet size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2b29e4e429f939500bc7d7ebd5836b8bc24090ec"},(0,n.kt)("inlineCode",{parentName:"a"},"2b29e4e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(list): adjust bullet size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/61c341cfdad3fccdd7499f6957f91ab99159ea16"},(0,n.kt)("inlineCode",{parentName:"a"},"61c341c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): add inverted background to global variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1427e70f2b208531bbb91ab1a708430f1c03ea3a"},(0,n.kt)("inlineCode",{parentName:"a"},"1427e70"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): add inverted background to global variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea25dfa5589181b7d23bef153bae3ab279e70167"},(0,n.kt)("inlineCode",{parentName:"a"},"ea25dfa"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): remove custom class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/46cc5601e378c7bfcf927b7c25dae2a2d3f795fd"},(0,n.kt)("inlineCode",{parentName:"a"},"46cc560"))),(0,n.kt)("li",{parentName:"ul"},"refactor(container): update mobile width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d548a44d86745270778134028be597f559d7a0b4"},(0,n.kt)("inlineCode",{parentName:"a"},"d548a44"))),(0,n.kt)("li",{parentName:"ul"},"refactor(grid): replace px with rem units ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e792f51e4f41b8f3f53e297b9e5a01d5e2d9bfb1"},(0,n.kt)("inlineCode",{parentName:"a"},"e792f51"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): remove custom class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b5c8e7c2aeb2751d4b981eacc51e3dda58a922dc"},(0,n.kt)("inlineCode",{parentName:"a"},"b5c8e7c"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): updated template to change what's new title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e15f4d3c3e5d4199886bb4cfeda8dce6a4bf041"},(0,n.kt)("inlineCode",{parentName:"a"},"3e15f4d"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): added display variable for footer site logos ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5b3c2f6d85b3a42eefa8521a074a7581bfbd8fb"},(0,n.kt)("inlineCode",{parentName:"a"},"d5b3c2f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(grid): replace px with rem units ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f0331d00f537cf41ca184796386f60a88bfe6c86"},(0,n.kt)("inlineCode",{parentName:"a"},"f0331d0"))),(0,n.kt)("li",{parentName:"ul"},"change(github): auto deploy only on develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/11d6b4e9059674b6dd1fe655995231be03a910fb"},(0,n.kt)("inlineCode",{parentName:"a"},"11d6b4e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): implementation in preparation for Volto integration #20 #89 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/95b136d51ddbc5632c0fa1cc696c2297a8c4695c"},(0,n.kt)("inlineCode",{parentName:"a"},"95b136d"))),(0,n.kt)("li",{parentName:"ul"},"change(github): trigger autobuild when modifying templates contents ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/46094b1427793cd88da6f615b16b70e6cfaee9af"},(0,n.kt)("inlineCode",{parentName:"a"},"46094b1")))),(0,n.kt)("h4",{id:"-internal-changes-22"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(list): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f9e3b05effc0afeddc234b491bc86f2ec82a764f"},(0,n.kt)("inlineCode",{parentName:"a"},"f9e3b05"))),(0,n.kt)("li",{parentName:"ul"},"style(list): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8eb715b05b3bef2795d2485084386c6e910392cf"},(0,n.kt)("inlineCode",{parentName:"a"},"8eb715b"))),(0,n.kt)("li",{parentName:"ul"},"chore(github): merge changes from develop to develop-itml ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/063bd6ecc5e47321854ca4994a91bf0a43ab3e3e"},(0,n.kt)("inlineCode",{parentName:"a"},"063bd6e"))),(0,n.kt)("li",{parentName:"ul"},"chore(github): build deployment only on develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a5a1b0802b46d674d04ae099afc8510e3cb62222"},(0,n.kt)("inlineCode",{parentName:"a"},"a5a1b08"))),(0,n.kt)("li",{parentName:"ul"},"chore(github): build deployment only on develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bb455aa4308e6593c45bcb3a62b8058709d74f83"},(0,n.kt)("inlineCode",{parentName:"a"},"bb455aa"))),(0,n.kt)("li",{parentName:"ul"},"chore(github): merge changes from develop to develop-itml ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/129c12f60025db50bac5b2d3dd36e04a97d49499"},(0,n.kt)("inlineCode",{parentName:"a"},"129c12f")))),(0,n.kt)("h4",{id:"\ufe0f-others-51"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},'Revert "chore(github): merge changes from develop to develop-itml" ',(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca9520fe8d91f8924ea203eb32001e3e6518e472"},(0,n.kt)("inlineCode",{parentName:"a"},"ca9520f"))),(0,n.kt)("li",{parentName:"ul"},"refactor breadcrumbs component, make it functional and customizable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e902d6931060c5676d67842f95391379fcb3cccf"},(0,n.kt)("inlineCode",{parentName:"a"},"e902d69"))),(0,n.kt)("li",{parentName:"ul"},"rollback(cards): move custom display to volto-block-image-cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2564b1ec2cc52670c0f2abc92c49161f5cd1b006"},(0,n.kt)("inlineCode",{parentName:"a"},"2564b1e"))),(0,n.kt)("li",{parentName:"ul"},"bring back segment wrapper and make it attached ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8458f0321f44f22a605e7179485d97f41a0afa38"},(0,n.kt)("inlineCode",{parentName:"a"},"8458f03"))),(0,n.kt)("li",{parentName:"ul"},"no ",(0,n.kt)("inlineCode",{parentName:"li"},"display: flex")," for blockquote added from slate ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5595ce1b8173e6952ab3926dc5f3c988279a42dc"},(0,n.kt)("inlineCode",{parentName:"a"},"5595ce1"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about code length ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a5f36523682dde8d1e16f416a07cd0c8c615a386"},(0,n.kt)("inlineCode",{parentName:"a"},"a5f3652"))),(0,n.kt)("li",{parentName:"ul"},"Add indenting rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/15c44cbcb6a52d0fd0438ff9b5d0e5963a4b53a0"},(0,n.kt)("inlineCode",{parentName:"a"},"15c44cb"))),(0,n.kt)("li",{parentName:"ul"},"fix warning related to proptype ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/946c6c6bc9dece0985ae4b9f9cad6ece2be0ff2c"},(0,n.kt)("inlineCode",{parentName:"a"},"946c6c6"))),(0,n.kt)("li",{parentName:"ul"},"fix profile section css overflow ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/db5126fc902e191d1e18fb7e4c54877c8d8786e6"},(0,n.kt)("inlineCode",{parentName:"a"},"db5126f"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about import sorting ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/804e188eea30427053111310ad2d3edf6a4ec78b"},(0,n.kt)("inlineCode",{parentName:"a"},"804e188"))),(0,n.kt)("li",{parentName:"ul"},"don't use volto-slate ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6a029765d3a59ac65b3b5dd18c1a9624bae1d52a"},(0,n.kt)("inlineCode",{parentName:"a"},"6a02976"))),(0,n.kt)("li",{parentName:"ul"},"remove segment custom width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1d3ea40f98bbdc1eab95b4da739a659b5e29ec16"},(0,n.kt)("inlineCode",{parentName:"a"},"1d3ea40"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about naming vars ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f9020fa3073190681de36cf1dcdf62e69ac2c74"},(0,n.kt)("inlineCode",{parentName:"a"},"8f9020f"))),(0,n.kt)("li",{parentName:"ul"},"update style for accordion title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0b0d678c69d8b0765ff015b0355c01d57c643192"},(0,n.kt)("inlineCode",{parentName:"a"},"0b0d678"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.6.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e771e657e5bedca3630d05cda643c45da5369d4c"},(0,n.kt)("inlineCode",{parentName:"a"},"e771e65"))),(0,n.kt)("li",{parentName:"ul"},"update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bbcab87ef4c8475f347f0daf4ab7e428e69c2316"},(0,n.kt)("inlineCode",{parentName:"a"},"bbcab87"))),(0,n.kt)("li",{parentName:"ul"},"add margin to ","<","br",">"," element to simulate gap as in design ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c6685c11a14febfc9b6c592a9adc9a25a0b80458"},(0,n.kt)("inlineCode",{parentName:"a"},"c6685c1"))),(0,n.kt)("li",{parentName:"ul"},"make breadcrumbs default size as tiny ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/589581fa29a7e249e59393bebe9dfe284090db6f"},(0,n.kt)("inlineCode",{parentName:"a"},"589581f"))),(0,n.kt)("li",{parentName:"ul"},"remove uneeded style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/82a8fb1eb3a359d54bc59234e498eb122d07223c"},(0,n.kt)("inlineCode",{parentName:"a"},"82a8fb1"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about hardcoded values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e04e0df7cd47d575e649d1995ea5c64b2a431b05"},(0,n.kt)("inlineCode",{parentName:"a"},"e04e0df"))),(0,n.kt)("li",{parentName:"ul"},"Add file mode rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/65c9a9357a82a39bf54862eff9231264a6277ab5"},(0,n.kt)("inlineCode",{parentName:"a"},"65c9a93"))),(0,n.kt)("li",{parentName:"ul"},"Add DRY rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/66c9c3a6b05bf3395f5bda1a7c5af26a9962e66c"},(0,n.kt)("inlineCode",{parentName:"a"},"66c9c3a"))),(0,n.kt)("li",{parentName:"ul"},"set profile section overflow to auto ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/71ab47f89a433233c14b394c3824e607dd18a393"},(0,n.kt)("inlineCode",{parentName:"a"},"71ab47f"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using eea-website-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/647a6e3e2093f2c4884c356eb148453551c8f33f"},(0,n.kt)("inlineCode",{parentName:"a"},"647a6e3"))),(0,n.kt)("li",{parentName:"ul"},"removed override already present in card.less ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/50d2ab26f85c8f409da02ec128cc1df34848ca69"},(0,n.kt)("inlineCode",{parentName:"a"},"50d2ab2"))),(0,n.kt)("li",{parentName:"ul"},"update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7a1d482aa875ab2669ed688663228d79ce9b7bea"},(0,n.kt)("inlineCode",{parentName:"a"},"7a1d482"))),(0,n.kt)("li",{parentName:"ul"},"Add functional components rule; add classnames rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91a0b067c7a36002a6d49c5c0238f593b5a6ac6e"},(0,n.kt)("inlineCode",{parentName:"a"},"91a0b06"))),(0,n.kt)("li",{parentName:"ul"},"added comment about need for removal of this fix later ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/65b81665c1cc41991b4903bb44a5eb7fb8ec5f3b"},(0,n.kt)("inlineCode",{parentName:"a"},"65b8166")))),(0,n.kt)("h3",{id:"015---2022-03-08"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.4...0.1.5"},"0.1.5")," - 2022-03-08"),(0,n.kt)("h4",{id:"-new-features-31"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(cards): add custom display for volto-block-image-cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f49ffb65f41c78499f56251c2de267ce5617b4c5"},(0,n.kt)("inlineCode",{parentName:"a"},"f49ffb6"))),(0,n.kt)("li",{parentName:"ul"},"feat(KeyContent): add new component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2534c542c2fd729b31a9064a21dae2bd3cacb2e4"},(0,n.kt)("inlineCode",{parentName:"a"},"2534c54"))),(0,n.kt)("li",{parentName:"ul"},"feat(docusaurus): Updated developer guidelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca146ffd42cb31286a5c49fa09390d0a93270cfa"},(0,n.kt)("inlineCode",{parentName:"a"},"ca146ff"))),(0,n.kt)("li",{parentName:"ul"},"feat(storybook): add testimonial component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/55d97472d82f3819674e78f684e197625c9f854c"},(0,n.kt)("inlineCode",{parentName:"a"},"55d9747"))),(0,n.kt)("li",{parentName:"ul"},"feat(storybook): add AvatarGrid component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b6684456ea6fa17695734b5179b39be77644da93"},(0,n.kt)("inlineCode",{parentName:"a"},"b668445"))),(0,n.kt)("li",{parentName:"ul"},"feat(storybook):add Loader component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6758346a516f7c4be5d66dfdf198dbe2ffe3f01"},(0,n.kt)("inlineCode",{parentName:"a"},"f675834")))),(0,n.kt)("h4",{id:"-bug-fixes-46"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(breakpoints): fix largest screen breakpoint bug on scaling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e4a11c876c20187351fa9454b4fbf0de3e502bff"},(0,n.kt)("inlineCode",{parentName:"a"},"e4a11c8"))),(0,n.kt)("li",{parentName:"ul"},"fix(profile): section css overflow and padding issues #95 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bb9eb0f83307524bda5cf86aa0dfd678c65da653"},(0,n.kt)("inlineCode",{parentName:"a"},"bb9eb0f"))),(0,n.kt)("li",{parentName:"ul"},"fix(storybook): lint auto changes for AvatarGrid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8e74f17df77f8f9f96bf442dc178417bbfc04c6"},(0,n.kt)("inlineCode",{parentName:"a"},"b8e74f1"))),(0,n.kt)("li",{parentName:"ul"},"fix(components): add grid structure to various components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cc33546deda634cee6031bd6cde6eef3eaacb76a"},(0,n.kt)("inlineCode",{parentName:"a"},"cc33546"))),(0,n.kt)("li",{parentName:"ul"},"fix(header) re-added span tags removed in pull request #74 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/00702d7831b84aad52f10368dbef740baf581ab8"},(0,n.kt)("inlineCode",{parentName:"a"},"00702d7")))),(0,n.kt)("h4",{id:"-enhancements-61"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(button): styling updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/37afda5b00797d456e303fb585dad145b575b2ed"},(0,n.kt)("inlineCode",{parentName:"a"},"37afda5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tab): updates on variables and overrides ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/54bf703f9f34f2f945f4635cd4bc4728174c7d47"},(0,n.kt)("inlineCode",{parentName:"a"},"54bf703"))),(0,n.kt)("li",{parentName:"ul"},"change(blockquote): treat slate as a variation of blockquote component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5e8a8b8220c7c25a266f045442aae44303eb8701"},(0,n.kt)("inlineCode",{parentName:"a"},"5e8a8b8"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): added display variable for footer site logos ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2f942b4a80c3ed9eb94e8b71299f4ebf33501eea"},(0,n.kt)("inlineCode",{parentName:"a"},"2f942b4"))),(0,n.kt)("li",{parentName:"ul"},"refactor(checkbox/radio): remove header from message and adjust top position of bullet ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a072b30bb01cf59339960cfd3254584cfae57c6"},(0,n.kt)("inlineCode",{parentName:"a"},"4a072b3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(color): remove secondaryColorDarken variable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/74c8ba073cc92af3987d81d484768235b95fcffb"},(0,n.kt)("inlineCode",{parentName:"a"},"74c8ba0"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): updated template to change what's new title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/58f58c887560e707ced47ccbac6897d8ebcf45d2"},(0,n.kt)("inlineCode",{parentName:"a"},"58f58c8"))),(0,n.kt)("li",{parentName:"ul"},"change(github): auto deploy only on develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bfa35a32bf0fefd4433aec4f7f8ee2cfe53eaae5"},(0,n.kt)("inlineCode",{parentName:"a"},"bfa35a3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): implementation in preparation for Volto integration #20 #97 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cddda2090d3d17c086dfd0cdb8a4dab3f886bfcd"},(0,n.kt)("inlineCode",{parentName:"a"},"cddda20"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumbs): component, make it functional and pluggable #32 #94 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f42e802bdf29d02c76131379b168c8c2119864b"},(0,n.kt)("inlineCode",{parentName:"a"},"9f42e80"))),(0,n.kt)("li",{parentName:"ul"},"change(card): added styles for volto cards integration #92 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a46ac21e6229059fb982174610a733c44000a2b6"},(0,n.kt)("inlineCode",{parentName:"a"},"a46ac21"))),(0,n.kt)("li",{parentName:"ul"},"refactor(grid): remove column count from example ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac0e9cf8e9f6ea99ddf8d5a92e49903999cde262"},(0,n.kt)("inlineCode",{parentName:"a"},"ac0e9cf"))),(0,n.kt)("li",{parentName:"ul"},"change(github): trigger autobuild when modifying templates contents ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f7d1523e92c1c4b3e6285a48d5f8c776aecfa9c"},(0,n.kt)("inlineCode",{parentName:"a"},"5f7d152"))),(0,n.kt)("li",{parentName:"ul"},"refactor(grid): remove custom grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1d978a96a464b3285961d54cb1cbc7c9eaf35faf"},(0,n.kt)("inlineCode",{parentName:"a"},"1d978a9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Form):change form field wrapper implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/73cdd6daba19aefce091552a62a528a42b323228"},(0,n.kt)("inlineCode",{parentName:"a"},"73cdd6d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(message): update colors to match design ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/633ce311dc5a6a141ee514a9108753531aa661e4"},(0,n.kt)("inlineCode",{parentName:"a"},"633ce31"))),(0,n.kt)("li",{parentName:"ul"},"refactor(checkbox/radio): update variables and remove important rules ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ad533b4e3e821c126f62b558523057720d2573c8"},(0,n.kt)("inlineCode",{parentName:"a"},"ad533b4"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables): add variables to less for new components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/47df026655748865bc7af8f44d51e5a9fcf7ee34"},(0,n.kt)("inlineCode",{parentName:"a"},"47df026"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Tab): fix vertical tab alignment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/401bdf2868e8c8305ad2c3cefa3188b730348574"},(0,n.kt)("inlineCode",{parentName:"a"},"401bdf2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(lint changes): add lint changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6f6847fc19db7922c93cb5f52e50db845d053e04"},(0,n.kt)("inlineCode",{parentName:"a"},"6f6847f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(inpageNavigation): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/62f74ea3c08069da8615516a52df8415d50048d5"},(0,n.kt)("inlineCode",{parentName:"a"},"62f74ea"))),(0,n.kt)("li",{parentName:"ul"},"refactor(message): updates on styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4cf8501de961794baf5a8ecec99e4bcddc2d71b"},(0,n.kt)("inlineCode",{parentName:"a"},"b4cf850"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): update class name ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef0969bd873e9fdd0eb32593f7c3f995270ef44c"},(0,n.kt)("inlineCode",{parentName:"a"},"ef0969b"))),(0,n.kt)("li",{parentName:"ul"},"change(github): use develop for auto pushing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a32a723f8126292f62a71cb4c4f94a2c7dec7605"},(0,n.kt)("inlineCode",{parentName:"a"},"a32a723")))),(0,n.kt)("h4",{id:"-internal-changes-23"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(design-system): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/631fa90e2ec5352c01e2ee0824de4a45cc33de34"},(0,n.kt)("inlineCode",{parentName:"a"},"631fa90"))),(0,n.kt)("li",{parentName:"ul"},"style(checkbox/radio): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a04939fdb530ed998a40aeb5b85a748d5dace0cd"},(0,n.kt)("inlineCode",{parentName:"a"},"a04939f"))),(0,n.kt)("li",{parentName:"ul"},"style(design-system): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c753f0b378384150597283c97f657eafbfff296"},(0,n.kt)("inlineCode",{parentName:"a"},"3c753f0"))),(0,n.kt)("li",{parentName:"ul"},"style(message): stylelint fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5b75057cb3a7b366a940ca9d1ba577cd09dc7225"},(0,n.kt)("inlineCode",{parentName:"a"},"5b75057")))),(0,n.kt)("h4",{id:"-documentation-changes-20"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): visuals guidelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/544a9502dc046d7e8bc635c19480a8deb2b31379"},(0,n.kt)("inlineCode",{parentName:"a"},"544a950"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): search guidelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0fb229d8b6a042bd716a093faaf8a1461b70cdb8"},(0,n.kt)("inlineCode",{parentName:"a"},"0fb229d"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): loader page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/892a25dba66f3557af22f8f0f96db695ddf1b402"},(0,n.kt)("inlineCode",{parentName:"a"},"892a25d")))),(0,n.kt)("h4",{id:"\ufe0f-others-52"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Reformat header.less ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f99dfc82c165304ca5600ce5138c1233615ab69"},(0,n.kt)("inlineCode",{parentName:"a"},"1f99dfc"))),(0,n.kt)("li",{parentName:"ul"},"Close menu when changing path ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/65daea9ee34c64bd5e51104077bc745b68169cd2"},(0,n.kt)("inlineCode",{parentName:"a"},"65daea9"))),(0,n.kt)("li",{parentName:"ul"},"refactor breadcrumbs component, make it functional and customizable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ec374e20565eb0a5aed0ff67a02cd6f77eba1f0"},(0,n.kt)("inlineCode",{parentName:"a"},"4ec374e"))),(0,n.kt)("li",{parentName:"ul"},"rollback(cards): move custom display to volto-block-image-cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/79d4c8914b7184d559465135f046b60ee96301e1"},(0,n.kt)("inlineCode",{parentName:"a"},"79d4c89"))),(0,n.kt)("li",{parentName:"ul"},"Open overlay menu on global menu click ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cc749bc4266aae793b85d72c43c8a08b0c2fec48"},(0,n.kt)("inlineCode",{parentName:"a"},"cc749bc"))),(0,n.kt)("li",{parentName:"ul"},"bring back segment wrapper and make it attached ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f413ffaf641c161e8ff0f8010759cffd7e30238"},(0,n.kt)("inlineCode",{parentName:"a"},"9f413ff"))),(0,n.kt)("li",{parentName:"ul"},"Use renderMenuItem also in mobile menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/02de0bb4750062a310109256b6c6d29120287fd4"},(0,n.kt)("inlineCode",{parentName:"a"},"02de0bb"))),(0,n.kt)("li",{parentName:"ul"},"Fix clicking outside closes menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af526646559d1a00ade04dc24def26e5665a5a8c"},(0,n.kt)("inlineCode",{parentName:"a"},"af52664"))),(0,n.kt)("li",{parentName:"ul"},"Cleanup args in header story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2bf6a304b1149ec1204f08f318248ed52ad8fa3d"},(0,n.kt)("inlineCode",{parentName:"a"},"2bf6a30"))),(0,n.kt)("li",{parentName:"ul"},"fix warning related to proptype ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/824b9beff77aae139882cd50a1d670a02ec6f723"},(0,n.kt)("inlineCode",{parentName:"a"},"824b9be"))),(0,n.kt)("li",{parentName:"ul"},"fix profile section css overflow ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8fd265413149f1b5e033dffa0fbcb5ef5ecad15f"},(0,n.kt)("inlineCode",{parentName:"a"},"8fd2654"))),(0,n.kt)("li",{parentName:"ul"},"don't use volto-slate ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70ca3d4ec4e8e4dc633e957b842d94b708af8b82"},(0,n.kt)("inlineCode",{parentName:"a"},"70ca3d4"))),(0,n.kt)("li",{parentName:"ul"},"remove segment custom width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a60d84d5fe76578b7760aa1dad6eef9a20916a7"},(0,n.kt)("inlineCode",{parentName:"a"},"4a60d84"))),(0,n.kt)("li",{parentName:"ul"},"update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/96f4af0fb22605fd294472eb18f7f62e4bd7b0fb"},(0,n.kt)("inlineCode",{parentName:"a"},"96f4af0"))),(0,n.kt)("li",{parentName:"ul"},"Fix TopDropdownMenu component rendering in mobile ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4626def4e1f97f323f3fef130f5d531925ba15b"},(0,n.kt)("inlineCode",{parentName:"a"},"a4626de"))),(0,n.kt)("li",{parentName:"ul"},"Add usePrevious hook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/797faba3cad73288755f6c6e685448d780905189"},(0,n.kt)("inlineCode",{parentName:"a"},"797faba"))),(0,n.kt)("li",{parentName:"ul"},"make breadcrumbs default size as tiny ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c8e1c64f27596421e78927f11616093667b04c6"},(0,n.kt)("inlineCode",{parentName:"a"},"3c8e1c6"))),(0,n.kt)("li",{parentName:"ul"},"Update package.json ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fa020cb5dd85e28d0713b3e8a11aff5b2c1060af"},(0,n.kt)("inlineCode",{parentName:"a"},"fa020cb"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about hardcoded values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0c6912c82625c2e389fd75f0d0a051348781d407"},(0,n.kt)("inlineCode",{parentName:"a"},"0c6912c"))),(0,n.kt)("li",{parentName:"ul"},"set profile section overflow to auto ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8db62bbcd0258fee16411e94888c732a29b1949d"},(0,n.kt)("inlineCode",{parentName:"a"},"8db62bb"))),(0,n.kt)("li",{parentName:"ul"},"added comment about need for removal of this fix later ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6fdbd713dbfe795e7e81cfa37398774fad71c054"},(0,n.kt)("inlineCode",{parentName:"a"},"6fdbd71"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using eea-website-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6051724437a38675e659c797bb5586ef81286ec0"},(0,n.kt)("inlineCode",{parentName:"a"},"6051724"))),(0,n.kt)("li",{parentName:"ul"},"removed override already present in card.less ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93c4e5aac9cc85ff2cc6c04180f6655d5f5616dc"},(0,n.kt)("inlineCode",{parentName:"a"},"93c4e5a"))),(0,n.kt)("li",{parentName:"ul"},"Remove console.log calls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8a3a4cb32bfed2daa86339b15c0301eb01e19f23"},(0,n.kt)("inlineCode",{parentName:"a"},"8a3a4cb"))),(0,n.kt)("li",{parentName:"ul"},"update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/81bb7d4a02576887b80e978c32724580b772d57a"},(0,n.kt)("inlineCode",{parentName:"a"},"81bb7d4"))),(0,n.kt)("li",{parentName:"ul"},"Update comment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ffa24001728f824b8e7154c93c5aad8196bd92ea"},(0,n.kt)("inlineCode",{parentName:"a"},"ffa2400"))),(0,n.kt)("li",{parentName:"ul"},"merge develop into this branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ad5b388957b7d67f1b7ae06f2b80b1c30868d72a"},(0,n.kt)("inlineCode",{parentName:"a"},"ad5b388"))),(0,n.kt)("li",{parentName:"ul"},"WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a8d97f10b9768894a135549e9dc8f938b663f905"},(0,n.kt)("inlineCode",{parentName:"a"},"a8d97f1"))),(0,n.kt)("li",{parentName:"ul"},"Use header.less from develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/99edbc6ccd6023162dcce75b36d6b9451b06f6dc"},(0,n.kt)("inlineCode",{parentName:"a"},"99edbc6"))),(0,n.kt)("li",{parentName:"ul"},"WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/57b5783e2b03859f89c5926951ea232547b455cc"},(0,n.kt)("inlineCode",{parentName:"a"},"57b5783"))),(0,n.kt)("li",{parentName:"ul"},"WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/785da36b725bf14bff28a67da799c51bc5b4f20f"},(0,n.kt)("inlineCode",{parentName:"a"},"785da36"))),(0,n.kt)("li",{parentName:"ul"},"WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5d1eba9a1df2d2bb078f119ee99b0627ac55ae1d"},(0,n.kt)("inlineCode",{parentName:"a"},"5d1eba9"))),(0,n.kt)("li",{parentName:"ul"},"adds Tags ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e37fc1957ed8357bc2190239da4440bb98b0dabe"},(0,n.kt)("inlineCode",{parentName:"a"},"e37fc19"))),(0,n.kt)("li",{parentName:"ul"},"Add useClickOutside hook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70364c88631cbfa6e6854a99dde42ea2ad73221f"},(0,n.kt)("inlineCode",{parentName:"a"},"70364c8"))),(0,n.kt)("li",{parentName:"ul"},"Implement outside click handling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fa6f81823c47ca32209f3f1c8b1810b5447f97ec"},(0,n.kt)("inlineCode",{parentName:"a"},"fa6f818"))),(0,n.kt)("li",{parentName:"ul"},"Simplify overlay menu template ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/28b04784cf32ed4393e452c56680bffda411d526"},(0,n.kt)("inlineCode",{parentName:"a"},"28b0478"))),(0,n.kt)("li",{parentName:"ul"},"fixes less variables, fixes tags positioning ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cc19b9b537b5f21ceaba986bbd0182bb3b867ac7"},(0,n.kt)("inlineCode",{parentName:"a"},"cc19b9b"))),(0,n.kt)("li",{parentName:"ul"},"WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/15bc0f4287b705839f6fd5ac8835f03e2e99f1f1"},(0,n.kt)("inlineCode",{parentName:"a"},"15bc0f4"))),(0,n.kt)("li",{parentName:"ul"},"no ",(0,n.kt)("inlineCode",{parentName:"li"},"display: flex")," for blockquote added from slate ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/312a893e924dea4e7aed182be4a615bc3c4f04f8"},(0,n.kt)("inlineCode",{parentName:"a"},"312a893"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about code length ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/318cd48f8116a49897590137eebe2ce35285b813"},(0,n.kt)("inlineCode",{parentName:"a"},"318cd48"))),(0,n.kt)("li",{parentName:"ul"},"Add indenting rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d58968522ef82a7d5381fc4958ae2049562b7103"},(0,n.kt)("inlineCode",{parentName:"a"},"d589685"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about import sorting ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cd337c16650ae169e4b634b034f40f3cd887ceb8"},(0,n.kt)("inlineCode",{parentName:"a"},"cd337c1"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about naming vars ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b112de0dcaa4209cfe143dcd26ba929b4cbe0a42"},(0,n.kt)("inlineCode",{parentName:"a"},"b112de0"))),(0,n.kt)("li",{parentName:"ul"},"Bring back classNames from header subpopup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e477a5150bee569fadca300a3ccc3586e7d7ef4a"},(0,n.kt)("inlineCode",{parentName:"a"},"e477a51"))),(0,n.kt)("li",{parentName:"ul"},"removes tags hashtag from jsx ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6b8b3e94a6a1060304c1e5b228806985343ef6a0"},(0,n.kt)("inlineCode",{parentName:"a"},"6b8b3e9"))),(0,n.kt)("li",{parentName:"ul"},"WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d481324ff7a63e3cb0847b89fa188cc8781de4dc"},(0,n.kt)("inlineCode",{parentName:"a"},"d481324"))),(0,n.kt)("li",{parentName:"ul"},"fixes undefined on empty classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4b29080d646c44b02a28c4619f5285227fa2bf78"},(0,n.kt)("inlineCode",{parentName:"a"},"4b29080"))),(0,n.kt)("li",{parentName:"ul"},"stylelint changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a5ab83018bccd8fbfcf2160fe9c6c4fc24abe83a"},(0,n.kt)("inlineCode",{parentName:"a"},"a5ab830"))),(0,n.kt)("li",{parentName:"ul"},"Footer link color @white ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/578e4f7bb174cd46d50a8b5c5a97f8bbff510f11"},(0,n.kt)("inlineCode",{parentName:"a"},"578e4f7"))),(0,n.kt)("li",{parentName:"ul"},"add margin to ","<","br",">"," element to simulate gap as in design ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9ab9a97dc231fd3b704fedd99c742f425be4578c"},(0,n.kt)("inlineCode",{parentName:"a"},"9ab9a97"))),(0,n.kt)("li",{parentName:"ul"},"impors colors from site variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6117267716b76b17379ae989911c5d5f00e63259"},(0,n.kt)("inlineCode",{parentName:"a"},"6117267"))),(0,n.kt)("li",{parentName:"ul"},"small fix for the link in footer action ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/72df049aa644ac2a675057bf3a96440144acabfb"},(0,n.kt)("inlineCode",{parentName:"a"},"72df049"))),(0,n.kt)("li",{parentName:"ul"},"remove uneeded style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/66e9064de395b37caef1436aaee3a164b53ae406"},(0,n.kt)("inlineCode",{parentName:"a"},"66e9064"))),(0,n.kt)("li",{parentName:"ul"},"use proper naming conventions for var naming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/596e3143e28f23e60f20becd97276831c89d9684"},(0,n.kt)("inlineCode",{parentName:"a"},"596e314"))),(0,n.kt)("li",{parentName:"ul"},"Add file mode rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/805baa7db5ae1863bc85687f8f872c74a26647c8"},(0,n.kt)("inlineCode",{parentName:"a"},"805baa7"))),(0,n.kt)("li",{parentName:"ul"},"use less variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b43ac8d3bfc0231313f3d8bc719e373a127c6329"},(0,n.kt)("inlineCode",{parentName:"a"},"b43ac8d"))),(0,n.kt)("li",{parentName:"ul"},"Add DRY rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2f1584e769d0462c0385847630e3bbfe48a52339"},(0,n.kt)("inlineCode",{parentName:"a"},"2f1584e"))),(0,n.kt)("li",{parentName:"ul"},"Add functional components rule; add classnames rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1b2915ed3a4a3446e11058ac7de8937cf5755630"},(0,n.kt)("inlineCode",{parentName:"a"},"1b2915e"))),(0,n.kt)("li",{parentName:"ul"},"fix z-index of header ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d2a5d6bb822a298367ce58d867939318171a300"},(0,n.kt)("inlineCode",{parentName:"a"},"7d2a5d6"))),(0,n.kt)("li",{parentName:"ul"},"Remove comment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d120b16491406ea7cc26428dcf13ec2565868d0"},(0,n.kt)("inlineCode",{parentName:"a"},"7d120b1")))),(0,n.kt)("h3",{id:"014---2022-03-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.4-beta.0...0.1.4"},"0.1.4")," - 2022-03-01"),(0,n.kt)("h4",{id:"-enhancements-62"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(pagination): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/06cc3b6db6f56040264e4c70fe2e39ace14499d7"},(0,n.kt)("inlineCode",{parentName:"a"},"06cc3b6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Form):create form field wrapper file ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/95b9934a75ffd6b254b7bb9c119b8087c7565c13"},(0,n.kt)("inlineCode",{parentName:"a"},"95b9934"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): update margins for menu items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/230e476d133b3f7853a73f3f2ee372c6306bd43f"},(0,n.kt)("inlineCode",{parentName:"a"},"230e476"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): update gradient ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/47f2ea40c4f214a41af58ceb90839a05932b0b55"},(0,n.kt)("inlineCode",{parentName:"a"},"47f2ea4")))),(0,n.kt)("h4",{id:"-documentation-changes-21"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): divider page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c6bb2389f819a9ebd8e34db0e825f3e5f62130d4"},(0,n.kt)("inlineCode",{parentName:"a"},"c6bb238")))),(0,n.kt)("h4",{id:"\ufe0f-others-53"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"add footer links,align footer image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b039564e8cd3a0319ebe07f434f20bb7d7827fe1"},(0,n.kt)("inlineCode",{parentName:"a"},"b039564"))),(0,n.kt)("li",{parentName:"ul"},"cosmetics: remove formatting ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e02b08dc2adc8b89a5b9117b5a572c7080248c29"},(0,n.kt)("inlineCode",{parentName:"a"},"e02b08d"))),(0,n.kt)("li",{parentName:"ul"},"refactor Footer component to consume children and prop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/faafcffe07383ba55f5746cb971cdf706d988f78"},(0,n.kt)("inlineCode",{parentName:"a"},"faafcff"))),(0,n.kt)("li",{parentName:"ul"},"update footer stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4e5742872f21d9737f3de443fa0e9d1b6ba02637"},(0,n.kt)("inlineCode",{parentName:"a"},"4e57428"))),(0,n.kt)("li",{parentName:"ul"},"update stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/81973cac96ee48e9b294c45e32c0ec3d2956fe67"},(0,n.kt)("inlineCode",{parentName:"a"},"81973ca"))),(0,n.kt)("li",{parentName:"ul"},"Small improvements to footer ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6d1fdc000ab83932df62244142068f097aeeb85"},(0,n.kt)("inlineCode",{parentName:"a"},"f6d1fdc"))),(0,n.kt)("li",{parentName:"ul"},"fix header urls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e5908916823a1f5771ddbeb51b3e8af026425c49"},(0,n.kt)("inlineCode",{parentName:"a"},"e590891"))),(0,n.kt)("li",{parentName:"ul"},"Rename files in footer story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3de0c19d1ddeb69d8567026e1532fceb9221049a"},(0,n.kt)("inlineCode",{parentName:"a"},"3de0c19"))),(0,n.kt)("li",{parentName:"ul"},"add style for accordion title input on edit mode ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/598aa129f2dff0a2cb2ec57f551fa72481aa911e"},(0,n.kt)("inlineCode",{parentName:"a"},"598aa12"))),(0,n.kt)("li",{parentName:"ul"},"remove comments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2db0d2c2bbebe8bab8cf9801c5ea2650dde96b87"},(0,n.kt)("inlineCode",{parentName:"a"},"2db0d2c"))),(0,n.kt)("li",{parentName:"ul"},"Apply slate customization if volto-slate addon is used ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c066701dc359c6daf01703dac8fa61c2314c11cf"},(0,n.kt)("inlineCode",{parentName:"a"},"c066701"))),(0,n.kt)("li",{parentName:"ul"},"use relative links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af91a203bb30f5c9aa1335bfa8cdaa7857d577e2"},(0,n.kt)("inlineCode",{parentName:"a"},"af91a20"))),(0,n.kt)("li",{parentName:"ul"},"make footer anchor links white ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0c671e1bf52268505a5dc58196c285c04da33b10"},(0,n.kt)("inlineCode",{parentName:"a"},"0c671e1"))),(0,n.kt)("li",{parentName:"ul"},"use custom var for line-height ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f7f6c7ea605014741b9426b19008a4e6eda6704c"},(0,n.kt)("inlineCode",{parentName:"a"},"f7f6c7e"))),(0,n.kt)("li",{parentName:"ul"},"Update semantic.less ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4a90aed030a8927fa2ea949e4f44d23638c751a"},(0,n.kt)("inlineCode",{parentName:"a"},"a4a90ae"))),(0,n.kt)("li",{parentName:"ul"},"Bump release version ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c41a42bc2fd8174a2554e6dce1a1090eff4f3bd1"},(0,n.kt)("inlineCode",{parentName:"a"},"c41a42b"))),(0,n.kt)("li",{parentName:"ul"},"Update style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/89686990b2481f339c9bec7e7f9d35d9caab94c5"},(0,n.kt)("inlineCode",{parentName:"a"},"8968699"))),(0,n.kt)("li",{parentName:"ul"},"remove styling on header popups ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/86c499be61c0d2df46cb3469a47f0afae2e46c49"},(0,n.kt)("inlineCode",{parentName:"a"},"86c499b"))),(0,n.kt)("li",{parentName:"ul"},"remove search icon styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aca80fdc78859461cfee1d902b1d122d4a189b31"},(0,n.kt)("inlineCode",{parentName:"a"},"aca80fd"))),(0,n.kt)("li",{parentName:"ul"},"adjust popup height for computer screens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/47c5edb06c8d8cdb9af8ac64f68be0e0360eccaf"},(0,n.kt)("inlineCode",{parentName:"a"},"47c5edb"))),(0,n.kt)("li",{parentName:"ul"},"fix login container width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9a887e3b15aa63aab9be8738f599febcfe245b81"},(0,n.kt)("inlineCode",{parentName:"a"},"9a887e3"))),(0,n.kt)("li",{parentName:"ul"},"Typo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/90da95c67e965124da7f431e464bcbc15fa67894"},(0,n.kt)("inlineCode",{parentName:"a"},"90da95c"))),(0,n.kt)("li",{parentName:"ul"},"fix search-input icon line-height ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b087ff86d7753f3ee0bf90a9b07c4ee7ef5e336c"},(0,n.kt)("inlineCode",{parentName:"a"},"b087ff8"))),(0,n.kt)("li",{parentName:"ul"},"lint fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e9790ca72b8d3caf114c1b80b9c5837fb6a1a56e"},(0,n.kt)("inlineCode",{parentName:"a"},"e9790ca"))),(0,n.kt)("li",{parentName:"ul"},"Rename, reorganize logos ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1ef8d22df5a757258d8610818f44362046bc828d"},(0,n.kt)("inlineCode",{parentName:"a"},"1ef8d22")))),(0,n.kt)("h3",{id:"014-beta0---2022-02-25"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.3...0.1.4-beta.0"},"0.1.4-beta.0")," - 2022-02-25"),(0,n.kt)("h4",{id:"-new-features-32"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(github): added feature and bug reports templates with our guidelines as checkboxes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/15490937382ced93f5ac69cc1939256c0a468823"},(0,n.kt)("inlineCode",{parentName:"a"},"1549093")))),(0,n.kt)("h3",{id:"013---2022-02-25"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.2...0.1.3"},"0.1.3")," - 2022-02-25"),(0,n.kt)("h4",{id:"-bug-fixes-47"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(all): change eol to unix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/62e72244f78d43ce1c7b1a5ceb8405e4a617c88a"},(0,n.kt)("inlineCode",{parentName:"a"},"62e7224"))),(0,n.kt)("li",{parentName:"ul"},"fix(banner): separate url value ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f9c9140a6f8640bbb83a08f9c5c268f31ff7b6a8"},(0,n.kt)("inlineCode",{parentName:"a"},"f9c9140"))),(0,n.kt)("li",{parentName:"ul"},"fix(all): merge eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c68f6e0e7ab11d7451c8aabf194f62da0b6adb28"},(0,n.kt)("inlineCode",{parentName:"a"},"c68f6e0"))),(0,n.kt)("li",{parentName:"ul"},"fix(blockquote): align self property now uses a valid entry ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ec761634765105694386ce48153fb95c09339273"},(0,n.kt)("inlineCode",{parentName:"a"},"ec76163")))),(0,n.kt)("h4",{id:"-enhancements-63"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): new implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff013afc68fed97d085e3930f6d728b266786dc1"},(0,n.kt)("inlineCode",{parentName:"a"},"ff013af"))),(0,n.kt)("li",{parentName:"ul"},"change(volto): removed customizations made for ims theme from volto-eea-design-system ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bc8d514d82da0811c10eefe6dde16e0846497a4a"},(0,n.kt)("inlineCode",{parentName:"a"},"bc8d514"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Timeline): divide to sub components and change files to .jsx ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e2bd3b6c8dd064e7269819ce465b961a0cee849"},(0,n.kt)("inlineCode",{parentName:"a"},"3e2bd3b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4e5d08d565ef08e4e390ede4a611145a16ca2fa9"},(0,n.kt)("inlineCode",{parentName:"a"},"4e5d08d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): link header's menu to mega menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/08406d84e5bc1c7eb1358baff19ff6731f124b32"},(0,n.kt)("inlineCode",{parentName:"a"},"08406d8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Menu): change mega menu implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/455a51b9a9fbb00c6a89c42de226787c143176f7"},(0,n.kt)("inlineCode",{parentName:"a"},"455a51b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Grid):minor changes and delete extra files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/272585dfed0c0e82b26c1e6843484ad0981ba75f"},(0,n.kt)("inlineCode",{parentName:"a"},"272585d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(timeline): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b98641af00f23302b728094ed00a4563b6813387"},(0,n.kt)("inlineCode",{parentName:"a"},"b98641a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): fix link hover issue for tablet ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/564e9721aea7d4ed998d88764e37454bc3154d3d"},(0,n.kt)("inlineCode",{parentName:"a"},"564e972"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add remix icons and minor updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c9c97dd719187e996efabaee28ccbf23d43f03af"},(0,n.kt)("inlineCode",{parentName:"a"},"c9c97dd"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): change header buttons implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6608b8cfffb75dda90b01728dc4fe657cbd84069"},(0,n.kt)("inlineCode",{parentName:"a"},"6608b8c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): add sub components and change existing Main ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/74c35a3fe462bdad7b9b2a5a6e969043439fdf5b"},(0,n.kt)("inlineCode",{parentName:"a"},"74c35a3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(table): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab7a0e8d9e83edb3035d57285a5f85557bcd7576"},(0,n.kt)("inlineCode",{parentName:"a"},"ab7a0e8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Footer): delete Actions & ThemeSites files and clear imports ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7a78456f55742a1b356070303218342876641e52"},(0,n.kt)("inlineCode",{parentName:"a"},"7a78456"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/326655a48aeac65b32beadb48707d0193c952702"},(0,n.kt)("inlineCode",{parentName:"a"},"326655a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Breadcrumb): add react router link and minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/073a3a36215427dce274a533b10d2d0bb3526de9"},(0,n.kt)("inlineCode",{parentName:"a"},"073a3a3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): show menu on search & minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4d49a8ae6958b84bd2dbaf7bd5f62310037eb288"},(0,n.kt)("inlineCode",{parentName:"a"},"4d49a8a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(List): add extra default list story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/95665cdca945cba104a25d5efcbc56436dffbd7f"},(0,n.kt)("inlineCode",{parentName:"a"},"95665cd"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus) change generation of what's new section and bump package version ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6c35cff4d65bb44755376c85ff4de8c6b39af00b"},(0,n.kt)("inlineCode",{parentName:"a"},"6c35cff"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Footer): minor code changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/67cb4bc5f9d341da78e7816ed89f219d8ac2836e"},(0,n.kt)("inlineCode",{parentName:"a"},"67cb4bc"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Menu): add class to mega menu items for styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19baa342c29322d11371303dc0092f472da1eeee"},(0,n.kt)("inlineCode",{parentName:"a"},"19baa34"))),(0,n.kt)("li",{parentName:"ul"},"change(accordion): modified default accordion stories titles with real accordion names ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cf11cc81d7096d338c565180597822e51fcaa8b7"},(0,n.kt)("inlineCode",{parentName:"a"},"cf11cc8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): accessibility image alt fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7347a688c2f37f08390b189f8bfa990c26c7f75"},(0,n.kt)("inlineCode",{parentName:"a"},"a7347a6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): adjust to volto in progress ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/760becabf40dbbaed36dac6c37275c7e31aa2509"},(0,n.kt)("inlineCode",{parentName:"a"},"760beca"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): header items as storybook arguments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/388c752aa0694e78f5306c2b2efa4a34df4b9ca6"},(0,n.kt)("inlineCode",{parentName:"a"},"388c752"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): update less variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/35b0a98eced49212bb08c3c7d2ac6987a16ec6be"},(0,n.kt)("inlineCode",{parentName:"a"},"35b0a98"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): actions as buttons; don't hardcode url for banner image; subcomponentize Banner, add Banner.Action; add developer guidelines on inline styles and line endings; ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6dd5a41248e8bf4095744bd89217707f3ad820a1"},(0,n.kt)("inlineCode",{parentName:"a"},"6dd5a41"))),(0,n.kt)("li",{parentName:"ul"},"refactor(blockquote): fix responsive margins and sizes rems ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/209f94f5535d83678af5fd650dcc3892a94c8a34"},(0,n.kt)("inlineCode",{parentName:"a"},"209f94f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Input): label position and style change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/970074aacae0c1ffabe88be58779b332993a37fd"},(0,n.kt)("inlineCode",{parentName:"a"},"970074a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update dropdown menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32eb0fa5dbb431c5d8e74e4c3e28b0555dab8aea"},(0,n.kt)("inlineCode",{parentName:"a"},"32eb0fa"))),(0,n.kt)("li",{parentName:"ul"},"refactor(timeline): theming updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c80c9aa5eb08c3b58199c6f6faca06445640f9f8"},(0,n.kt)("inlineCode",{parentName:"a"},"c80c9aa"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Blockquote):remove image stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a6357caa641e18e7a19b834cd907ba8c7117367f"},(0,n.kt)("inlineCode",{parentName:"a"},"a6357ca"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus) proofread blockquote usage section and removed unused api section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0bb29fdb73bce90f842748abd978a388fff93932"},(0,n.kt)("inlineCode",{parentName:"a"},"0bb29fd"))),(0,n.kt)("li",{parentName:"ul"},"change(infrastructure) cherry-pick fix 9639243 skipping jenkins on auto commits ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fc744cda5a4e6d9da0ab6e7f92868d53f28f53c1"},(0,n.kt)("inlineCode",{parentName:"a"},"fc744cd"))),(0,n.kt)("li",{parentName:"ul"},"change(ci) build storybook and docusaurus only when pushing to develop-itml branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4de0cbf9bfc4ecb46605dca1048a38db844880e7"},(0,n.kt)("inlineCode",{parentName:"a"},"4de0cbf"))),(0,n.kt)("li",{parentName:"ul"},"change(infrastructure): modify whats new doc when committing the auto deployment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/39df33ed946a8167e4954cffb676144700e0ec38"},(0,n.kt)("inlineCode",{parentName:"a"},"39df33e"))),(0,n.kt)("li",{parentName:"ul"},"change(blockquote): introduce float argument for blockquote with image storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8fc72906c264b5e96702f8518e81d5724b494a5c"},(0,n.kt)("inlineCode",{parentName:"a"},"8fc7290"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pullquote): add word break ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2245e53dde6dd8abf437afa94e92bbedc60c9f8c"},(0,n.kt)("inlineCode",{parentName:"a"},"2245e53"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner): minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b9073b60e337eab40a992283b5b9e75d5cffe895"},(0,n.kt)("inlineCode",{parentName:"a"},"b9073b6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(table): fix th font weight ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a96a0a7a4cb450b5f947bc397495a2a41c605c87"},(0,n.kt)("inlineCode",{parentName:"a"},"a96a0a7"))),(0,n.kt)("li",{parentName:"ul"},"refactor(comment): remove avatar border radius ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d42c37bb8f71e20e1d0ec438c14e3c7ac00cf0ae"},(0,n.kt)("inlineCode",{parentName:"a"},"d42c37b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): adjust title size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7a24d9c07a5994fa46c39fdf1e827e0d1ae5e504"},(0,n.kt)("inlineCode",{parentName:"a"},"7a24d9c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Image): change image path ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a580da68a45bbe68d314f60e9495fc321489caf5"},(0,n.kt)("inlineCode",{parentName:"a"},"a580da6"))),(0,n.kt)("li",{parentName:"ul"},"change(infrastructure): specify that docs folder contains changes for deployment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a1ca9153b70e3525cd73423d059a8607f63fc2b9"},(0,n.kt)("inlineCode",{parentName:"a"},"a1ca915")))),(0,n.kt)("h4",{id:"-internal-changes-24"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(input) prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e83fa0c3e95e33d89ab668de38e6b0b12d9fb0d9"},(0,n.kt)("inlineCode",{parentName:"a"},"e83fa0c"))),(0,n.kt)("li",{parentName:"ul"},"chore(storybook): prettier fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/354c7b33c92a9f48ca9cbb0b96b6cec213e465c8"},(0,n.kt)("inlineCode",{parentName:"a"},"354c7b3"))),(0,n.kt)("li",{parentName:"ul"},"chore(design system): technical commit for edw integration tests ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f76035122d647e14b5151af3b39f0ab3e199af2"},(0,n.kt)("inlineCode",{parentName:"a"},"9f76035"))),(0,n.kt)("li",{parentName:"ul"},"style(storybook): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c9ad345268335c42e41d13b35c0da93e9770847"},(0,n.kt)("inlineCode",{parentName:"a"},"3c9ad34"))),(0,n.kt)("li",{parentName:"ul"},"chore(infrastructure) updated branch with changes from bitbucket ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/77866f8c7ac203db0645a74b7a7456b5c4de5dd7"},(0,n.kt)("inlineCode",{parentName:"a"},"77866f8")))),(0,n.kt)("h4",{id:"\ufe0f-others-54"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"doc(colours):fix color to better show primary ones ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/705b7899f9d687747d2deb27ac4d8b4429878de0"},(0,n.kt)("inlineCode",{parentName:"a"},"705b789"))),(0,n.kt)("li",{parentName:"ul"},"doc(colours):change font size to fit text in one line ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ad751660ec832e67a0c858e75685259b9ef8d82"},(0,n.kt)("inlineCode",{parentName:"a"},"4ad7516"))),(0,n.kt)("li",{parentName:"ul"},"bump package release to 1.3.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f3cfe4f5232ff96a9845d12da72008cf838c1010"},(0,n.kt)("inlineCode",{parentName:"a"},"f3cfe4f"))),(0,n.kt)("li",{parentName:"ul"},"Refactor banner into content subcomponent ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f8df238b4db90fdb841cdd5436a644e582f73b82"},(0,n.kt)("inlineCode",{parentName:"a"},"f8df238"))),(0,n.kt)("li",{parentName:"ul"},"lint fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cda322d8c013ef303b93b4b8d29594aa3bbd0bc1"},(0,n.kt)("inlineCode",{parentName:"a"},"cda322d"))),(0,n.kt)("li",{parentName:"ul"},"rollback don'ts grammar change and disable unresolved import for Banner.stories.jsx ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a1bd7154fa64451b6a521743955a57405dc7fb67"},(0,n.kt)("inlineCode",{parentName:"a"},"a1bd715"))),(0,n.kt)("li",{parentName:"ul"},"Add space line in component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4d1a5fbe9a9ea53701702d7ce33622795f5ab00"},(0,n.kt)("inlineCode",{parentName:"a"},"d4d1a5f")))),(0,n.kt)("h3",{id:"012---2022-02-17"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.2-beta.2...0.1.2"},"0.1.2")," - 2022-02-17"),(0,n.kt)("h4",{id:"-new-features-33"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(blockquote) added blockquote styles as a custom module ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d30662e23176cf7a5ab64aa322acd5a09a0c4130"},(0,n.kt)("inlineCode",{parentName:"a"},"d30662e")))),(0,n.kt)("h4",{id:"-bug-fixes-48"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(inpageNavigation): hide at the top of the page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/97ef50069cd9b29345fb68ce8b557a47577669a4"},(0,n.kt)("inlineCode",{parentName:"a"},"97ef500"))),(0,n.kt)("li",{parentName:"ul"},"fix(footer):missing image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac91a29a134c97af842c6be4987c60c44c4c96d8"},(0,n.kt)("inlineCode",{parentName:"a"},"ac91a29"))),(0,n.kt)("li",{parentName:"ul"},"fix(comment):fix broken image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8125dc179923f652ecd25003df8ecb4fb0aeffb9"},(0,n.kt)("inlineCode",{parentName:"a"},"8125dc1"))),(0,n.kt)("li",{parentName:"ul"},"fix(message): fix font loading ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fdc498e178a04315c88e005fbc1371ba954ff402"},(0,n.kt)("inlineCode",{parentName:"a"},"fdc498e"))),(0,n.kt)("li",{parentName:"ul"},"fix(logo): logo change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f8c8af4453774386d5d0432a078b049416d034b"},(0,n.kt)("inlineCode",{parentName:"a"},"5f8c8af")))),(0,n.kt)("h4",{id:"-enhancements-64"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): multiple components fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a3ff518323a3eab18edc5057c6f1233e5422a22"},(0,n.kt)("inlineCode",{parentName:"a"},"4a3ff51"))),(0,n.kt)("li",{parentName:"ul"},"change(infrastructure) re-enable integration tests for auto release stack ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce8daf8abc6eb9a6b7fd8579904a3e5642896e3a"},(0,n.kt)("inlineCode",{parentName:"a"},"ce8daf8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): global site files styling update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f3770f1756bca3898e2a67fa532a9d97b0fd1ef2"},(0,n.kt)("inlineCode",{parentName:"a"},"f3770f1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): multiple components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9277aaccb09aa03575b95851d55fc69b1f530e23"},(0,n.kt)("inlineCode",{parentName:"a"},"9277aac"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer) adjust to volto theming update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a59f1c354ceea661c60faabfdb6226c9f4ba1209"},(0,n.kt)("inlineCode",{parentName:"a"},"a59f1c3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): minor styling update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dd6b55c6c5331383a42f6865bd9bd0641feb9a3b"},(0,n.kt)("inlineCode",{parentName:"a"},"dd6b55c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): change header mega menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7559b57a08c2f0e9f3eb95167479ca041b998bc5"},(0,n.kt)("inlineCode",{parentName:"a"},"7559b57"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/451b9493b100dae80bed4b6629da725195dddff1"},(0,n.kt)("inlineCode",{parentName:"a"},"451b949"))),(0,n.kt)("li",{parentName:"ul"},"refactor(accordion): minor styling update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aeaf25f585c1379a2bd40de1c1bf03fee00ef76e"},(0,n.kt)("inlineCode",{parentName:"a"},"aeaf25f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bdff1768096443f2f453d76bf9958adabd309cb7"},(0,n.kt)("inlineCode",{parentName:"a"},"bdff176"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer):mobile responsiveness ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/14822bec78feebc2b06fc26d6992a481be2e3609"},(0,n.kt)("inlineCode",{parentName:"a"},"14822be"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): main and custom less files update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1607760bb1582c63ab1a6b978ac13bb0ca51b0c2"},(0,n.kt)("inlineCode",{parentName:"a"},"1607760"))),(0,n.kt)("li",{parentName:"ul"},"refactor(timeline): update after removing timeline addon ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f54d3806eb0a60379b46b03a04a6602ed465cd15"},(0,n.kt)("inlineCode",{parentName:"a"},"f54d380"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Footer): replace with subcomponents ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/378c652265213bafac9de1d946cb328fa2fe90cb"},(0,n.kt)("inlineCode",{parentName:"a"},"378c652"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): header change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/029e85039bb3f35a6ba4ff2870d98e1faa23661b"},(0,n.kt)("inlineCode",{parentName:"a"},"029e850"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): change header bar ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2b766fd62c86d22f01278c54d3a1dbfb696b095b"},(0,n.kt)("inlineCode",{parentName:"a"},"2b766fd"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus) use itml branch for docusaurus deployment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e286c50056aa6d0d5735cb330789b4e48a1f927"},(0,n.kt)("inlineCode",{parentName:"a"},"6e286c5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(accordion): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/971fcb824f6aa55ac28b4b275927b202d2c08ca6"},(0,n.kt)("inlineCode",{parentName:"a"},"971fcb8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): add sub components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7f955dbafa94c13e71ff587af70aa84d18da8da0"},(0,n.kt)("inlineCode",{parentName:"a"},"7f955db"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus) tweak auto deployment to always commit changes from docs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a2940daef1cf281bac87dec3cec68337053cc52d"},(0,n.kt)("inlineCode",{parentName:"a"},"a2940da"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): less and variables files created ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5b1a8aaf7f678dd60fb88149284058fcab617fd"},(0,n.kt)("inlineCode",{parentName:"a"},"d5b1a8a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(label): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c945e1600b4beb3667b389542adade317d285c6"},(0,n.kt)("inlineCode",{parentName:"a"},"3c945e1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(message): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e950fc56461540be24d9e5b2ff3c0bf8ad53738"},(0,n.kt)("inlineCode",{parentName:"a"},"3e950fc"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Footer): add sub components and props ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c3d14871887a83fb91792fbc8977c0439bcb16f2"},(0,n.kt)("inlineCode",{parentName:"a"},"c3d1487"))),(0,n.kt)("li",{parentName:"ul"},"refactor(modal): modal and confirm adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/83b60e94bdd3203a92a1b9038f9cc45011ba72a5"},(0,n.kt)("inlineCode",{parentName:"a"},"83b60e9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(comment): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/84348c36b5b750c324c89b5e3c462319bb9ebf46"},(0,n.kt)("inlineCode",{parentName:"a"},"84348c3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook):adjust headings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32f64f9b71d1cb8c96c9c37ba1850a2278f95287"},(0,n.kt)("inlineCode",{parentName:"a"},"32f64f9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): add comments to header menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c2c83b202e5117d8e0013101d8e922e9d93d21de"},(0,n.kt)("inlineCode",{parentName:"a"},"c2c83b2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Accordion): clear up accordion stories code ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4e59b8fa961b878591e9806e1ebbfdb841523077"},(0,n.kt)("inlineCode",{parentName:"a"},"4e59b8f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(segmant): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ab211e868296f377fddba203847549f0e5e07df"},(0,n.kt)("inlineCode",{parentName:"a"},"3ab211e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button) minor styling update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8782bb27c789a4aac97b380d718f4de129fdf682"},(0,n.kt)("inlineCode",{parentName:"a"},"8782bb2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): change image position ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cdd76d59ade86f3f989bf7d94e45e4d9b439115f"},(0,n.kt)("inlineCode",{parentName:"a"},"cdd76d5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumbs): update less variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/640817ee904f88a04f0e8f11b258f95b8db97039"},(0,n.kt)("inlineCode",{parentName:"a"},"640817e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(list): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1079c733e6ec634fedaab5b4630888a52b28e482"},(0,n.kt)("inlineCode",{parentName:"a"},"1079c73"))),(0,n.kt)("li",{parentName:"ul"},"refactor(timeline):adjust timeline module ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/213eb11e8e87940c18d81738609b4684329a5ce4"},(0,n.kt)("inlineCode",{parentName:"a"},"213eb11"))),(0,n.kt)("li",{parentName:"ul"},"refactor(blockquote):adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5eec87fc1b3017011266241c20b31217ac27c12d"},(0,n.kt)("inlineCode",{parentName:"a"},"5eec87f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progress): add progress bar colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ccf3c9823b2583fc70183554df7c4588fbf9ca13"},(0,n.kt)("inlineCode",{parentName:"a"},"ccf3c98"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pullquote):adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fee446668a8d65a717b42667af825cb5cec836b2"},(0,n.kt)("inlineCode",{parentName:"a"},"fee4466"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): change mobile mega menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c7ecf18a81024121218d580f201f324cf990829e"},(0,n.kt)("inlineCode",{parentName:"a"},"c7ecf18"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b726e49519914b02766bcd993b94ce9ff164e1df"},(0,n.kt)("inlineCode",{parentName:"a"},"b726e49"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button) adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/eb257f83541871ccc635842664722b914661770c"},(0,n.kt)("inlineCode",{parentName:"a"},"eb257f8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form): minor styling update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/79934b2cde2e806418a6422df2914321181f7a22"},(0,n.kt)("inlineCode",{parentName:"a"},"79934b2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Footer): create Actions & Sites sub components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/446840b99abd6897c1b59a9462d72b1f06f1dd4e"},(0,n.kt)("inlineCode",{parentName:"a"},"446840b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(inpageNavigation): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/85c631a9e9c1454f1f2530e4f1851089663dd610"},(0,n.kt)("inlineCode",{parentName:"a"},"85c631a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Inpage Navigation): changed button's display ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/36e5b4f107ce3535b607f7ed169c723a66ce6ac2"},(0,n.kt)("inlineCode",{parentName:"a"},"36e5b4f"))),(0,n.kt)("li",{parentName:"ul"},"enhancement(docusaurus) modified headings to be within release versions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19ace3038d6b4535b29634209e4d506e7dca2c2c"},(0,n.kt)("inlineCode",{parentName:"a"},"19ace30"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): move components to ui folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb91f88f628580f565eb01ea8627763bc2243dfb"},(0,n.kt)("inlineCode",{parentName:"a"},"cb91f88"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): change mega menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/de0fc6b3862a88ac04058b56020af23c1946ce41"},(0,n.kt)("inlineCode",{parentName:"a"},"de0fc6b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Pullquote): divide Pullquote to sub components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/34413c44ab9e318d67408f7497782b7de693deeb"},(0,n.kt)("inlineCode",{parentName:"a"},"34413c4"))),(0,n.kt)("li",{parentName:"ul"},"enhancement(docusaurus) replace changelog when auto-building docs Refs #145331 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/da25c0e25ffa80131ab4b5503b28e43385d9f827"},(0,n.kt)("inlineCode",{parentName:"a"},"da25c0e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(popup): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d0d192dc2b2a5edd422cf6a7b359c384ec4b1d55"},(0,n.kt)("inlineCode",{parentName:"a"},"d0d192d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ab6f914f487bea0df299de7da0bbd917733ee00"},(0,n.kt)("inlineCode",{parentName:"a"},"2ab6f91"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/89a16af86a165d7798b68b95ff3de215a92f0569"},(0,n.kt)("inlineCode",{parentName:"a"},"89a16af"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pullquotes) remove unnecessary variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e0d20a3febec060ac24c5498846e768d7068e8b9"},(0,n.kt)("inlineCode",{parentName:"a"},"e0d20a3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progress):adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d1ab950ee9cc14bbe95869d4f143fc428aad5a8d"},(0,n.kt)("inlineCode",{parentName:"a"},"d1ab950"))),(0,n.kt)("li",{parentName:"ul"},"refactor(blockquote) change variables names ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/36fd5be9bde1a3ceb8390639414f254fc26b8e76"},(0,n.kt)("inlineCode",{parentName:"a"},"36fd5be"))),(0,n.kt)("li",{parentName:"ul"},"refactor(comment): adjust font sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0311ed14c951eb9cba18a58f6f954c19601d838b"},(0,n.kt)("inlineCode",{parentName:"a"},"0311ed1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(InpageNavigation): clear up code ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1d7afdc8d751e61c3eef75360555807fdbef8619"},(0,n.kt)("inlineCode",{parentName:"a"},"1d7afdc"))),(0,n.kt)("li",{parentName:"ul"},"refactor(container): change variable name for computer padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/26d123f3e7e30a706b09efc10773694af79377f9"},(0,n.kt)("inlineCode",{parentName:"a"},"26d123f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(inpageNavigation): remove imports ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/25c1d1c3016695d92d104a12b22a6a9254f41b20"},(0,n.kt)("inlineCode",{parentName:"a"},"25c1d1c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): update ui index components exports ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce78d47880cab5849f4c01785cdd97a9b26771ec"},(0,n.kt)("inlineCode",{parentName:"a"},"ce78d47"))),(0,n.kt)("li",{parentName:"ul"},"change(infrastructure) auto build storybook when pushing to develop-itml branch of volto-eea-design-system ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e9aa5bc3de9c2e1c5dc55b5d317679bc14dd1cbd"},(0,n.kt)("inlineCode",{parentName:"a"},"e9aa5bc"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): delete demo stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8b58d0245f5bda7e2022a2ef9ace11015f13da01"},(0,n.kt)("inlineCode",{parentName:"a"},"8b58d02"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus) align deployment steps for building docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/37e4ce05d2772ac320a7ad561536189c5ea0a582"},(0,n.kt)("inlineCode",{parentName:"a"},"37e4ce0"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): remove components from customizations folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8930edeaf064ec316f1d086e1301a7e5269bfe4b"},(0,n.kt)("inlineCode",{parentName:"a"},"8930ede"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tab): minor styling update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1252ad0317ecf7e583dbb975b29a4c8e4c75330e"},(0,n.kt)("inlineCode",{parentName:"a"},"1252ad0"))),(0,n.kt)("li",{parentName:"ul"},"refactor(comment): change avatar src ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e5f9c4c02f5de5ae6480eedb45730bb76efbf7b4"},(0,n.kt)("inlineCode",{parentName:"a"},"e5f9c4c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner) : change file type and folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/878742ba0f95440ffbb5aec33f2cc4201dfacd43"},(0,n.kt)("inlineCode",{parentName:"a"},"878742b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form elements):changed text ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/919beea9deccec68ac0cdbbc1249ef4ab4c12230"},(0,n.kt)("inlineCode",{parentName:"a"},"919beea"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Image): change image src ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b9710849adf0cf4f10815186b6293bcc3881d68d"},(0,n.kt)("inlineCode",{parentName:"a"},"b971084"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Pullquote): add component propTypes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d32c5e69e76d7f369a286d29e49d767125550ebc"},(0,n.kt)("inlineCode",{parentName:"a"},"d32c5e6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(blockquote): adjust font sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d71a3cef7bfd4109c56b7fe8c07271c60a4bd19e"},(0,n.kt)("inlineCode",{parentName:"a"},"d71a3ce"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update font sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1c91c357a59669df0da0f4fc70d3aa420db27a14"},(0,n.kt)("inlineCode",{parentName:"a"},"1c91c35"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Blockquote): add component proTypes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea02649f92b0e41b1eb62a771330c2e53b3960e8"},(0,n.kt)("inlineCode",{parentName:"a"},"ea02649"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logo): update image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6113728e248c3e0fd0a467bb34406aa4403399e"},(0,n.kt)("inlineCode",{parentName:"a"},"f611372"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): restore config ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2c5239d92abe6be70b092e7e43f195308800f87"},(0,n.kt)("inlineCode",{parentName:"a"},"f2c5239"))),(0,n.kt)("li",{parentName:"ul"},"refactor(blockquote): update component name ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/572e655c033d93b32a48a61b1bf6383f6c993b26"},(0,n.kt)("inlineCode",{parentName:"a"},"572e655"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): fix story header import ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ceda6c7790964b150b95daf161d10364d6b67427"},(0,n.kt)("inlineCode",{parentName:"a"},"ceda6c7"))),(0,n.kt)("li",{parentName:"ul"},"change(infrastructure) auto build docusaurus when pushing to develop-itml branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7bebdf5e58f37400a8ae3d5f816c64c6b9ca3a5b"},(0,n.kt)("inlineCode",{parentName:"a"},"7bebdf5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): remove components from customization folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a9bb9b34e6961eaf16e54ed6f6ca4942944e8a0"},(0,n.kt)("inlineCode",{parentName:"a"},"4a9bb9b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner):story rename ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/56ff603d6c9cec7c22483a088624f5bd7911f717"},(0,n.kt)("inlineCode",{parentName:"a"},"56ff603"))),(0,n.kt)("li",{parentName:"ul"},"change(testing) removed navigation from cypress tests until component is finished ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5549f4c07cb0ffd725342f365aae07745d7e25f7"},(0,n.kt)("inlineCode",{parentName:"a"},"5549f4c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Segment): change to .jsx extension ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5cb35d81e8628832bab2e6ad50de6892e7e4370e"},(0,n.kt)("inlineCode",{parentName:"a"},"5cb35d8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Pullquote): change to .jsx extension ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/564cf7ea379703315f179ab922b4e0a02df63e47"},(0,n.kt)("inlineCode",{parentName:"a"},"564cf7e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(PopUp):change to .jsx extension ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dcb24ff252665a79fda2fec645e6f2a48ff71fd0"},(0,n.kt)("inlineCode",{parentName:"a"},"dcb24ff"))),(0,n.kt)("li",{parentName:"ul"},"refactor(InpageNavigation): change to .jsx extension ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dfefce3ebe55f8eb6f67974ccc33b0cb0bb13d9f"},(0,n.kt)("inlineCode",{parentName:"a"},"dfefce3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Blockquote): change to .jsx extension ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/44a164532c1ae969e4411e0cfb68b705ff2bfc1e"},(0,n.kt)("inlineCode",{parentName:"a"},"44a1645"))),(0,n.kt)("li",{parentName:"ul"},"refactor(heading): story name update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aa10f3412323321650e20401038d44b9bfdb507a"},(0,n.kt)("inlineCode",{parentName:"a"},"aa10f34")))),(0,n.kt)("h4",{id:"-internal-changes-25"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(footer): prettier fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/902c25712c88330db841240c9f1d6004e3e2674f"},(0,n.kt)("inlineCode",{parentName:"a"},"902c257"))),(0,n.kt)("li",{parentName:"ul"},"style(storybook): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/59f941dea9bf05f31257230f1a871c6eb0e98aae"},(0,n.kt)("inlineCode",{parentName:"a"},"59f941d")))),(0,n.kt)("h4",{id:"-documentation-changes-22"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus):multiple page updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2aba73ea6ff86c5a94789c707d98699fc1397e01"},(0,n.kt)("inlineCode",{parentName:"a"},"2aba73e"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus):update page content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/565697fecb4528cc5b4a6a43ca3ab9b026a2779e"},(0,n.kt)("inlineCode",{parentName:"a"},"565697f"))),(0,n.kt)("li",{parentName:"ul"},"docs(grid):update components grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/60eb083aa5d00840642caf73f6e0bb86b814aed5"},(0,n.kt)("inlineCode",{parentName:"a"},"60eb083"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): page adjustments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0641eacf9f4715acd4baaa651335ff84ac418009"},(0,n.kt)("inlineCode",{parentName:"a"},"0641eac"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus):updated various pages ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f860176a5f755d75d7b9558661e675fc678fe7ac"},(0,n.kt)("inlineCode",{parentName:"a"},"f860176"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): logo change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3af5e5c3acbf7ba4e152ca6944c500dbb0cf10ee"},(0,n.kt)("inlineCode",{parentName:"a"},"3af5e5c")))),(0,n.kt)("h4",{id:"\ufe0f-others-55"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"added sortable table stories and descriptions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d44dd7c651abe46c380b62efd3258c92223e99c"},(0,n.kt)("inlineCode",{parentName:"a"},"6d44dd7"))),(0,n.kt)("li",{parentName:"ul"},"Layout components theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/586101341f713bb072f2753d8df6e8b2ad6e4938"},(0,n.kt)("inlineCode",{parentName:"a"},"5861013"))),(0,n.kt)("li",{parentName:"ul"},"recovered files from origin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4ac04fde9c4297b09c834385f772e955b7f3b4a"},(0,n.kt)("inlineCode",{parentName:"a"},"a4ac04f"))),(0,n.kt)("li",{parentName:"ul"},"grid component & stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a5752e49aac05251905f7355234c3f9bc6b798f"},(0,n.kt)("inlineCode",{parentName:"a"},"4a5752e"))),(0,n.kt)("li",{parentName:"ul"},"Updated what's new section with actual commits from volto-eea-design-system repo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fc5e3c385d82ff7eccbd5841736f3ce292b2b7fd"},(0,n.kt)("inlineCode",{parentName:"a"},"fc5e3c3"))),(0,n.kt)("li",{parentName:"ul"},"Docusaurus title possible fix. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/db699e771b13bbd7e75c3bd84bb91ecf5d0459d8"},(0,n.kt)("inlineCode",{parentName:"a"},"db699e7"))),(0,n.kt)("li",{parentName:"ul"},"form elements stories added description & default values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6b4f6ebeed275a86f5ef6dafb13219db0c0fbbc6"},(0,n.kt)("inlineCode",{parentName:"a"},"6b4f6eb"))),(0,n.kt)("li",{parentName:"ul"},"removed API tabs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/58aa9286eb5d8cc520239aa6ee424ee5cd5446c3"},(0,n.kt)("inlineCode",{parentName:"a"},"58aa928"))),(0,n.kt)("li",{parentName:"ul"},"Layout updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/854f388c5b049e41217ddb444bc7bd0f2c61cdf6"},(0,n.kt)("inlineCode",{parentName:"a"},"854f388"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142123 removed extra customization of semantic.less: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab9de811b20b20a9f91ddc8b45b4de2eb9c47f6c"},(0,n.kt)("inlineCode",{parentName:"a"},"ab9de81"))),(0,n.kt)("li",{parentName:"ul"},"added page-header,footer and grid in docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/660c8e382068c179ca66831ae23588a4fb67cde6"},(0,n.kt)("inlineCode",{parentName:"a"},"660c8e3"))),(0,n.kt)("li",{parentName:"ul"},"Manual docs build and commit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/666eb6aff8535bb586a49579152fcf8a88961f35"},(0,n.kt)("inlineCode",{parentName:"a"},"666eb6a"))),(0,n.kt)("li",{parentName:"ul"},"added svg & png files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f1338d5bb02e17e402cea4b1584c7d01896097f9"},(0,n.kt)("inlineCode",{parentName:"a"},"f1338d5"))),(0,n.kt)("li",{parentName:"ul"},"added missing components to docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/934dfd8a98942c247deb2b5b8693604ad77cafa3"},(0,n.kt)("inlineCode",{parentName:"a"},"934dfd8"))),(0,n.kt)("li",{parentName:"ul"},"Control descriptions updated ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/56581ebc86a91fd012a98984b20f6daad25900fe"},(0,n.kt)("inlineCode",{parentName:"a"},"56581eb"))),(0,n.kt)("li",{parentName:"ul"},"Grid updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/700332d354aea84526ff22acf3bc2f8903c0f584"},(0,n.kt)("inlineCode",{parentName:"a"},"700332d"))),(0,n.kt)("li",{parentName:"ul"},"Button theming update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0ec68b6bd1ab060ac224a859180b9f750834c0b8"},(0,n.kt)("inlineCode",{parentName:"a"},"0ec68b6"))),(0,n.kt)("li",{parentName:"ul"},"site variebales & overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7251162f182f1528d72070aae8a5a14e9ec5ee93"},(0,n.kt)("inlineCode",{parentName:"a"},"7251162"))),(0,n.kt)("li",{parentName:"ul"},"Table and Tabs theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/49f08608e8be8475d561e1ce5c1bfbcfd21001f9"},(0,n.kt)("inlineCode",{parentName:"a"},"49f0860"))),(0,n.kt)("li",{parentName:"ul"},"Responsiveness updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48e1351104249fea610941793ff8ec3bf35d0699"},(0,n.kt)("inlineCode",{parentName:"a"},"48e1351"))),(0,n.kt)("li",{parentName:"ul"},"added various components to docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/550d71963b0957b1c5597bbdb2c699c411c649bd"},(0,n.kt)("inlineCode",{parentName:"a"},"550d719"))),(0,n.kt)("li",{parentName:"ul"},"Checkbox and radio updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24652a238f2c98fe5d8e8032e3320e0b3b4753e5"},(0,n.kt)("inlineCode",{parentName:"a"},"24652a2"))),(0,n.kt)("li",{parentName:"ul"},"remove images from typography and colour docs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8493e924f5af4ba7c2ed478d7bae6992b4ef6ed6"},(0,n.kt)("inlineCode",{parentName:"a"},"8493e92"))),(0,n.kt)("li",{parentName:"ul"},"added guidelines' text and finished all components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/02d75fcdc5a98633e4d563c7ec2863a9588b5506"},(0,n.kt)("inlineCode",{parentName:"a"},"02d75fc"))),(0,n.kt)("li",{parentName:"ul"},"added more missing components in docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8be82634c681a073b13a5a90ee2b699bd25b422a"},(0,n.kt)("inlineCode",{parentName:"a"},"8be8263"))),(0,n.kt)("li",{parentName:"ul"},"Prettier changes on docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f1e5eb796f2072e3b816a39a35cf48523405167"},(0,n.kt)("inlineCode",{parentName:"a"},"5f1e5eb"))),(0,n.kt)("li",{parentName:"ul"},"Grid updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ae099453e280de800a5a06c6fcbe074acc1f7bfd"},(0,n.kt)("inlineCode",{parentName:"a"},"ae09945"))),(0,n.kt)("li",{parentName:"ul"},"Minor fixes for tests ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3bdf3063d9bbc101f4b83c6aa4fc5fef5e87c776"},(0,n.kt)("inlineCode",{parentName:"a"},"3bdf306"))),(0,n.kt)("li",{parentName:"ul"},"Layout updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8b7a4dc8731cb02946e604a0dd73d2a45f61cd8b"},(0,n.kt)("inlineCode",{parentName:"a"},"8b7a4dc"))),(0,n.kt)("li",{parentName:"ul"},"Footer and TOC theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bb3d3c486f64e123b9009a76c6f054a8e2973230"},(0,n.kt)("inlineCode",{parentName:"a"},"bb3d3c4"))),(0,n.kt)("li",{parentName:"ul"},"Refs #145331 manually commit changelog until autobuild is stabilized ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93168b096b60fc6a208b20d1cbe610384be62f42"},(0,n.kt)("inlineCode",{parentName:"a"},"93168b0"))),(0,n.kt)("li",{parentName:"ul"},"label component changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/df8c0ff2d9646e4dcc7ed1a25a80712ca9ea2c9b"},(0,n.kt)("inlineCode",{parentName:"a"},"df8c0ff"))),(0,n.kt)("li",{parentName:"ul"},"added several sections to the theming guidelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff1a649d9c83794024e2db4f6349b3cac4fe79a0"},(0,n.kt)("inlineCode",{parentName:"a"},"ff1a649"))),(0,n.kt)("li",{parentName:"ul"},"Updated removed files. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/84f9b8cf7c469525367764909fa0d322532a13be"},(0,n.kt)("inlineCode",{parentName:"a"},"84f9b8c"))),(0,n.kt)("li",{parentName:"ul"},"added more docusaurus components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/52a3b9edd4c751225609dcaf2d16f08688e9cfeb"},(0,n.kt)("inlineCode",{parentName:"a"},"52a3b9e"))),(0,n.kt)("li",{parentName:"ul"},"Progress Bar ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f2efc9ded5a766df0c611a15f6a93f27bd14a37"},(0,n.kt)("inlineCode",{parentName:"a"},"9f2efc9"))),(0,n.kt)("li",{parentName:"ul"},"Modal and Confirm updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3b306c6fa5631e1e4e37456d483a69bc8cc3b234"},(0,n.kt)("inlineCode",{parentName:"a"},"3b306c6"))),(0,n.kt)("li",{parentName:"ul"},"Add proper changes to whatsnew meant in previous commit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/40f78e362ca607ef3893fff3d03c8ed1b4447c11"},(0,n.kt)("inlineCode",{parentName:"a"},"40f78e3"))),(0,n.kt)("li",{parentName:"ul"},"Form Descriptions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/de0dfbcb3a0a9610f1cbf7337f598b0c5338f2a3"},(0,n.kt)("inlineCode",{parentName:"a"},"de0dfbc"))),(0,n.kt)("li",{parentName:"ul"},"Prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1337e6fffb13fa8447488129d5dcd5af9e35e46a"},(0,n.kt)("inlineCode",{parentName:"a"},"1337e6f"))),(0,n.kt)("li",{parentName:"ul"},"Deleted files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b82f982fbfbaff4e74e35424c6122410e3830faf"},(0,n.kt)("inlineCode",{parentName:"a"},"b82f982"))),(0,n.kt)("li",{parentName:"ul"},"add new images for spacing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7b7b2c48317c45e3ff89162d703434f615c840e9"},(0,n.kt)("inlineCode",{parentName:"a"},"7b7b2c4"))),(0,n.kt)("li",{parentName:"ul"},"Messages Theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ad621a38c121f585125d5934c1939ba6a7198b33"},(0,n.kt)("inlineCode",{parentName:"a"},"ad621a3"))),(0,n.kt)("li",{parentName:"ul"},"added new content to docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1c83452be983d46f4128c33c25e69afef333f82a"},(0,n.kt)("inlineCode",{parentName:"a"},"1c83452"))),(0,n.kt)("li",{parentName:"ul"},"Minor less updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a36a8bbfeb201049fa13987894a5ec2ec167ed03"},(0,n.kt)("inlineCode",{parentName:"a"},"a36a8bb"))),(0,n.kt)("li",{parentName:"ul"},"Tabs and lists updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e37eef19e67c3c5720d5a9565e9884dc5c19f127"},(0,n.kt)("inlineCode",{parentName:"a"},"e37eef1"))),(0,n.kt)("li",{parentName:"ul"},"Inpage nav and timeline components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/76f0f82dc3a8f683268a4df7580b8f73a0cc1cb4"},(0,n.kt)("inlineCode",{parentName:"a"},"76f0f82"))),(0,n.kt)("li",{parentName:"ul"},"Prettier updated files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/679b9d2026091685d6982ab68e5088544ea0941e"},(0,n.kt)("inlineCode",{parentName:"a"},"679b9d2"))),(0,n.kt)("li",{parentName:"ul"},"dropdown initial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d8aef26dc905adbb0fb72c73d6188b50944931c9"},(0,n.kt)("inlineCode",{parentName:"a"},"d8aef26"))),(0,n.kt)("li",{parentName:"ul"},"Prettier changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f068af0b307d85146e1d8a529947c98988c506f7"},(0,n.kt)("inlineCode",{parentName:"a"},"f068af0"))),(0,n.kt)("li",{parentName:"ul"},"List initial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d3b96974bc35ad958b8cfc7921c1fbe345e5ebf"},(0,n.kt)("inlineCode",{parentName:"a"},"6d3b969"))),(0,n.kt)("li",{parentName:"ul"},"List story updated ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e96a6f6cff9a4db994df7cbf584842b18ca1c432"},(0,n.kt)("inlineCode",{parentName:"a"},"e96a6f6"))),(0,n.kt)("li",{parentName:"ul"},"Statistics updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/74bf63999cfeb0791b9475d3895a49a245be2cd3"},(0,n.kt)("inlineCode",{parentName:"a"},"74bf639"))),(0,n.kt)("li",{parentName:"ul"},"styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c169cc026189ca71e6e9cad17bde9d65d93ffbde"},(0,n.kt)("inlineCode",{parentName:"a"},"c169cc0"))),(0,n.kt)("li",{parentName:"ul"},"timeline comp storybook changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f42686ae19b619fa659730567bdceb369ecd4b0"},(0,n.kt)("inlineCode",{parentName:"a"},"1f42686"))),(0,n.kt)("li",{parentName:"ul"},"feature(docusaurus) added theming guidelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ded1f04a3197ac34640f98bcfe363c75a0a3745f"},(0,n.kt)("inlineCode",{parentName:"a"},"ded1f04"))),(0,n.kt)("li",{parentName:"ul"},"Properly commented out integration tests. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48b3a15f426db52b9fa27f6d7792c424b4939867"},(0,n.kt)("inlineCode",{parentName:"a"},"48b3a15"))),(0,n.kt)("li",{parentName:"ul"},"Reattempting commented out integrations tests. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3dd8211ecfca6c7891ef6851d0dc82899ab50f05"},(0,n.kt)("inlineCode",{parentName:"a"},"3dd8211"))),(0,n.kt)("li",{parentName:"ul"},"Button theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4231e1c264165ef6f7e2f2cd6fbd7c51159330b6"},(0,n.kt)("inlineCode",{parentName:"a"},"4231e1c"))),(0,n.kt)("li",{parentName:"ul"},"Card initial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/06dace5c4aa54d90ec4bcdc0b3fbc0883f825947"},(0,n.kt)("inlineCode",{parentName:"a"},"06dace5"))),(0,n.kt)("li",{parentName:"ul"},"form element storybook changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4b06aabddedbc281f23fc75a1e56476c4d1c1af"},(0,n.kt)("inlineCode",{parentName:"a"},"c4b06aa"))),(0,n.kt)("li",{parentName:"ul"},"Pagination theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2a80175762fbab23691d52f89cd38eb6f7740c4e"},(0,n.kt)("inlineCode",{parentName:"a"},"2a80175"))),(0,n.kt)("li",{parentName:"ul"},"Accordion theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8061bf90823a9172cfccb0ea1ed544ceda1c3fe9"},(0,n.kt)("inlineCode",{parentName:"a"},"8061bf9"))),(0,n.kt)("li",{parentName:"ul"},"global var updates and radio story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9526ee2fc8269db60ce912bfd4edfadbb55fed3a"},(0,n.kt)("inlineCode",{parentName:"a"},"9526ee2"))),(0,n.kt)("li",{parentName:"ul"},"created pullquote component & stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/df35563fb7ba2be403461c120b32ebffaa391736"},(0,n.kt)("inlineCode",{parentName:"a"},"df35563"))),(0,n.kt)("li",{parentName:"ul"},"Item stories added description & default values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9d459f2cd92e419813e7edf0f28dec4c750a5940"},(0,n.kt)("inlineCode",{parentName:"a"},"9d459f2"))),(0,n.kt)("li",{parentName:"ul"},"storybook clean up code ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bffd32603a70cf6cafa4874937f3fe218ba5de9d"},(0,n.kt)("inlineCode",{parentName:"a"},"bffd326"))),(0,n.kt)("li",{parentName:"ul"},"List updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/28f1b5352d83e144acdaae694cf20755a3b04106"},(0,n.kt)("inlineCode",{parentName:"a"},"28f1b53"))),(0,n.kt)("li",{parentName:"ul"},"Button classes updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/788c289549490d9ac5f1c40f1e39124349e1dbcd"},(0,n.kt)("inlineCode",{parentName:"a"},"788c289"))),(0,n.kt)("li",{parentName:"ul"},"Prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/678c9be717468fd2c8c425bec5999e81a66dabf6"},(0,n.kt)("inlineCode",{parentName:"a"},"678c9be"))),(0,n.kt)("li",{parentName:"ul"},"Removed header title from partial docusaurus components. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ed7c45e458504fa76ad500ab26f59a442b3c6952"},(0,n.kt)("inlineCode",{parentName:"a"},"ed7c45e"))),(0,n.kt)("li",{parentName:"ul"},"created banner component and stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9be170f2ccb20218a7bdae48c85f77acd69427ff"},(0,n.kt)("inlineCode",{parentName:"a"},"9be170f"))),(0,n.kt)("li",{parentName:"ul"},"Breadcrumb stories description & defaultValue -- clean up code ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/186ab65ca8635c853c919fc645c1ef0486e22a43"},(0,n.kt)("inlineCode",{parentName:"a"},"186ab65"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142123 added customization of semantic.less: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1e02356722fcb7528883b6dc3bf71279343fd1f7"},(0,n.kt)("inlineCode",{parentName:"a"},"1e02356"))),(0,n.kt)("li",{parentName:"ul"},"Card stories added description & default values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6b408f1ed24ee69ad8faacc6b36cf06e9917478"},(0,n.kt)("inlineCode",{parentName:"a"},"f6b408f"))),(0,n.kt)("li",{parentName:"ul"},"Statistic and accordion updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/16064ceeb6e1a7f097979365473c6a86ced4056f"},(0,n.kt)("inlineCode",{parentName:"a"},"16064ce"))),(0,n.kt)("li",{parentName:"ul"},"breadcrumb component & stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5bceb980502828c182a3998943ab086159c3fcb6"},(0,n.kt)("inlineCode",{parentName:"a"},"5bceb98"))),(0,n.kt)("li",{parentName:"ul"},"Container initial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3eb7155332f83bb8896a831e24cbae028413aba2"},(0,n.kt)("inlineCode",{parentName:"a"},"3eb7155"))),(0,n.kt)("li",{parentName:"ul"},"doc(docusaurus):Fix text for various parts ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bfd3fa2584a6e7aa2c26f3502b1ede912682905e"},(0,n.kt)("inlineCode",{parentName:"a"},"bfd3fa2"))),(0,n.kt)("li",{parentName:"ul"},"blockquote component & stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/879b6402f08112fedfffe6d66e72c37750593bb8"},(0,n.kt)("inlineCode",{parentName:"a"},"879b640"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 removed doc comments breaking doc building ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e6a6756b0533e6dbfdb636f9a9e6485e30187cad"},(0,n.kt)("inlineCode",{parentName:"a"},"e6a6756"))),(0,n.kt)("li",{parentName:"ul"},"Popup updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce2d641d8f5d940cbb93deefdabbbfb85ad20ad7"},(0,n.kt)("inlineCode",{parentName:"a"},"ce2d641"))),(0,n.kt)("li",{parentName:"ul"},"Global variables for colors and borders added ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e5fbd619d163acae03d3d1bb26e082390f90c21"},(0,n.kt)("inlineCode",{parentName:"a"},"6e5fbd6"))),(0,n.kt)("li",{parentName:"ul"},"Tab stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5429cfb7751d6ad31231f9cc19d8bd7e8d24d0b8"},(0,n.kt)("inlineCode",{parentName:"a"},"5429cfb"))),(0,n.kt)("li",{parentName:"ul"},"Confirm stories added description & default value ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/85cda14b1338dc986bbab5aa7846b4ef3ec8d0bd"},(0,n.kt)("inlineCode",{parentName:"a"},"85cda14"))),(0,n.kt)("li",{parentName:"ul"},"Kebab case class names ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b41cd078ab5b349dc1d15769832913dcc8e6786f"},(0,n.kt)("inlineCode",{parentName:"a"},"b41cd07"))),(0,n.kt)("li",{parentName:"ul"},"Card and Comment class updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/389946540d3def2ea81c5c7c489e79dc24d4efb3"},(0,n.kt)("inlineCode",{parentName:"a"},"3899465"))),(0,n.kt)("li",{parentName:"ul"},"Accordion updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c97ba39cc7823cb72180a858c0b8a69cc9434927"},(0,n.kt)("inlineCode",{parentName:"a"},"c97ba39"))),(0,n.kt)("li",{parentName:"ul"},"item stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/772e41f3d90034827afcb118c38ab075d3bb7bb9"},(0,n.kt)("inlineCode",{parentName:"a"},"772e41f"))),(0,n.kt)("li",{parentName:"ul"},"Accordion class updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9cdde86f14a17701d66b3d2850980251094934b5"},(0,n.kt)("inlineCode",{parentName:"a"},"9cdde86"))),(0,n.kt)("li",{parentName:"ul"},"Comment stories added description & default value ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb6f25bc1452330f4155ccf6a64df491740ed8da"},(0,n.kt)("inlineCode",{parentName:"a"},"cb6f25b"))),(0,n.kt)("li",{parentName:"ul"},"Accrodion stories description & default value ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab8fb883c3cbfeea1807bf1aaf72f5d8424933f4"},(0,n.kt)("inlineCode",{parentName:"a"},"ab8fb88"))),(0,n.kt)("li",{parentName:"ul"},"Pullquotes updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5984213ba9397ddb4c1932394a5cc368336cf0a"},(0,n.kt)("inlineCode",{parentName:"a"},"c598421"))),(0,n.kt)("li",{parentName:"ul"},"Modal and confirm class updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0ae47e6f55645c0d6318123a5783648326c16852"},(0,n.kt)("inlineCode",{parentName:"a"},"0ae47e6"))),(0,n.kt)("li",{parentName:"ul"},"Tab and paggination updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/96796fffb189d2fa3628423280f3622dcacb449f"},(0,n.kt)("inlineCode",{parentName:"a"},"96796ff"))),(0,n.kt)("li",{parentName:"ul"},"Form Updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e986a9f0fc48ddcbc17488a8bbbaec82cee92232"},(0,n.kt)("inlineCode",{parentName:"a"},"e986a9f"))),(0,n.kt)("li",{parentName:"ul"},"Classes renamed ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/73c8c3d622bb3b9c0b5cf09e340de4df6606a14c"},(0,n.kt)("inlineCode",{parentName:"a"},"73c8c3d"))),(0,n.kt)("li",{parentName:"ul"},"List and item less updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce0de1708ca410c7839f3ce9b5b3cfbdb6979939"},(0,n.kt)("inlineCode",{parentName:"a"},"ce0de17"))),(0,n.kt)("li",{parentName:"ul"},"Confirm theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/36e20ce0dd6cd159e9f8e519d22ab696a622efd9"},(0,n.kt)("inlineCode",{parentName:"a"},"36e20ce"))),(0,n.kt)("li",{parentName:"ul"},"container overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4b3970bd28df5939fd438f7fc58b5d1dfbe33719"},(0,n.kt)("inlineCode",{parentName:"a"},"4b3970b"))),(0,n.kt)("li",{parentName:"ul"},"Docusaurus theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fc4a8c5534b6eb85192a687890846b3a4bed9401"},(0,n.kt)("inlineCode",{parentName:"a"},"fc4a8c5"))),(0,n.kt)("li",{parentName:"ul"},"refacto(headings): update mobile headings sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b2e9f838766ffd73095ecf7eccc71629c09d6bc0"},(0,n.kt)("inlineCode",{parentName:"a"},"b2e9f83"))),(0,n.kt)("li",{parentName:"ul"},"list stories and style changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c61db53b153f8f0e51eddd6a6c82dd38e6278c82"},(0,n.kt)("inlineCode",{parentName:"a"},"c61db53"))),(0,n.kt)("li",{parentName:"ul"},"Tab theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e31e6c3b1f0d6b4dbd63425a1846914d8dfa318d"},(0,n.kt)("inlineCode",{parentName:"a"},"e31e6c3"))),(0,n.kt)("li",{parentName:"ul"},"Message and pagination classes updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c230687c48953208461aa92376588246d49dadaa"},(0,n.kt)("inlineCode",{parentName:"a"},"c230687"))),(0,n.kt)("li",{parentName:"ul"},"Segment initial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5724fe639e0f2aecbb1c633fe7e69b742ddfaf5"},(0,n.kt)("inlineCode",{parentName:"a"},"d5724fe"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 removed doc comments from api_markdown breaking doc building ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/efeacba82875c6b36ee1ef76792e86ca03ee6f35"},(0,n.kt)("inlineCode",{parentName:"a"},"efeacba"))),(0,n.kt)("li",{parentName:"ul"},"Timeline and responsiveness updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1ed152476e33bc41fdf9d89a6bc80f83af538373"},(0,n.kt)("inlineCode",{parentName:"a"},"1ed1524"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142123 use swap font-display for performance reasons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/083738f0834982b5684d67d75c080dc50b1c74ef"},(0,n.kt)("inlineCode",{parentName:"a"},"083738f"))),(0,n.kt)("li",{parentName:"ul"},"Breadcrumb stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3d0d17ca4f04123d55fda64c516b8f867ee1bd13"},(0,n.kt)("inlineCode",{parentName:"a"},"3d0d17c"))),(0,n.kt)("li",{parentName:"ul"},"Table component stories minor change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0bf40835204f57ab300e2c325309fddf5279d76b"},(0,n.kt)("inlineCode",{parentName:"a"},"0bf4083"))),(0,n.kt)("li",{parentName:"ul"},"List stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a64b304a3aa025873643d592de03cbfbc0d02d81"},(0,n.kt)("inlineCode",{parentName:"a"},"a64b304"))),(0,n.kt)("li",{parentName:"ul"},"blockquote component minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cdf71a883d3778e1bde25ec0b4a2f3e370b98b09"},(0,n.kt)("inlineCode",{parentName:"a"},"cdf71a8"))),(0,n.kt)("li",{parentName:"ul"},"ckeckbox stories minor change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d6e508f73a18d7ce9fcdb779026113659ce8950"},(0,n.kt)("inlineCode",{parentName:"a"},"6d6e508"))),(0,n.kt)("li",{parentName:"ul"},"image component storybook changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91290ec540ae913fff76f0dbed6c310668a2eeb3"},(0,n.kt)("inlineCode",{parentName:"a"},"91290ec"))),(0,n.kt)("li",{parentName:"ul"},"button overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5b78dd7b794e2e0ece2d5af9eb171e73b77ee93"},(0,n.kt)("inlineCode",{parentName:"a"},"d5b78dd"))),(0,n.kt)("li",{parentName:"ul"},"accordion overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fdcf7d58eea3ce9e68c49649fb4a788c8a801b49"},(0,n.kt)("inlineCode",{parentName:"a"},"fdcf7d5"))),(0,n.kt)("li",{parentName:"ul"},"Accordion component and stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5079247b2d4b96b2a7252692ea538ca620cbec38"},(0,n.kt)("inlineCode",{parentName:"a"},"5079247"))),(0,n.kt)("li",{parentName:"ul"},"Card theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/23bbb9d1b5751bc4877d02ae1c676ea28463ec39"},(0,n.kt)("inlineCode",{parentName:"a"},"23bbb9d"))),(0,n.kt)("li",{parentName:"ul"},"statistic overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2b11cb5ffb9c907563b37a3db8fea3b1ef3584bc"},(0,n.kt)("inlineCode",{parentName:"a"},"2b11cb5"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 build docs only on pull request like we do with storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/473bb87be53610a654d35c9b399de14824301385"},(0,n.kt)("inlineCode",{parentName:"a"},"473bb87"))),(0,n.kt)("li",{parentName:"ul"},"Card component stories minor change | added link icon ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/deb423af02643697c3781212b177487174d341f7"},(0,n.kt)("inlineCode",{parentName:"a"},"deb423a"))),(0,n.kt)("li",{parentName:"ul"},"comment component stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f1c5e75f1af24c5b39a2e61cf07c773abfa96f66"},(0,n.kt)("inlineCode",{parentName:"a"},"f1c5e75"))),(0,n.kt)("li",{parentName:"ul"},"Accordion component bug fixed ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/815e91df66ed738f3d91cadc8df151782829f545"},(0,n.kt)("inlineCode",{parentName:"a"},"815e91d"))),(0,n.kt)("li",{parentName:"ul"},"Refs #145331 use iso date to release so that we see also time ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ceedf08937ab683c3e624cd3c909bf4a4788f883"},(0,n.kt)("inlineCode",{parentName:"a"},"ceedf08"))),(0,n.kt)("li",{parentName:"ul"},"correct connfig for doco ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93e13135e7f00fe32f4db2d720db4159970da021"},(0,n.kt)("inlineCode",{parentName:"a"},"93e1313"))),(0,n.kt)("li",{parentName:"ul"},"Item updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fae93d43a0ad56c4c9b8ce7bf436ad4f47421744"},(0,n.kt)("inlineCode",{parentName:"a"},"fae93d4"))),(0,n.kt)("li",{parentName:"ul"},"added layout grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2e6be557bcd3bef836338380ef68acade1c6b3e3"},(0,n.kt)("inlineCode",{parentName:"a"},"2e6be55"))),(0,n.kt)("li",{parentName:"ul"},"tab overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87aaf32cac5a0dee0da5833217de68da62327f5a"},(0,n.kt)("inlineCode",{parentName:"a"},"87aaf32"))),(0,n.kt)("li",{parentName:"ul"},"message overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6dccfca52d9673f394d81bd40da0af1b1504af0c"},(0,n.kt)("inlineCode",{parentName:"a"},"6dccfca"))),(0,n.kt)("li",{parentName:"ul"},"segment storie changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/296371fa71e43c2341bee8069f66d5cd1f7aa5f8"},(0,n.kt)("inlineCode",{parentName:"a"},"296371f"))),(0,n.kt)("li",{parentName:"ul"},"progress component stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/df10c2ed1289ae770008c71e1545c1ac0a223fc5"},(0,n.kt)("inlineCode",{parentName:"a"},"df10c2e"))),(0,n.kt)("li",{parentName:"ul"},"message comp storybook changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c86b40563f655fd5833dd05119f04d0e4256e75f"},(0,n.kt)("inlineCode",{parentName:"a"},"c86b405"))),(0,n.kt)("li",{parentName:"ul"},"Accordion cmponent stories | minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6de0d816287a9beeb9e8a5a890a2e14f3457a792"},(0,n.kt)("inlineCode",{parentName:"a"},"6de0d81"))),(0,n.kt)("li",{parentName:"ul"},"Refs #145331 add all changes when auto building docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce11cce4fe3dadc16a0da56c36bc5db480e4ff91"},(0,n.kt)("inlineCode",{parentName:"a"},"ce11cce"))),(0,n.kt)("li",{parentName:"ul"},"perf(timeline):removed semantic timeline package ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0aeb34a189eb53a5fc0fc45d716da515b7ed0301"},(0,n.kt)("inlineCode",{parentName:"a"},"0aeb34a"))),(0,n.kt)("li",{parentName:"ul"},"Tablet Breakpoint update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b229c2739e75a00e403dd07c31eb0dac7700baac"},(0,n.kt)("inlineCode",{parentName:"a"},"b229c27"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 set storyBook Url to eea.github.io ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b7fdecbb5e9e6e7db0b128ab7fd3a98dd1dbbc74"},(0,n.kt)("inlineCode",{parentName:"a"},"b7fdecb"))),(0,n.kt)("li",{parentName:"ul"},"bump package version to signaling of a major release ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c835f1d8193685153b8a9b54edbc2e8d3d095321"},(0,n.kt)("inlineCode",{parentName:"a"},"c835f1d"))),(0,n.kt)("li",{parentName:"ul"},"small commit to trigger deployment of storybook and docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/be46ea3b581cccc82369c9cf6d4e29b02822cd71"},(0,n.kt)("inlineCode",{parentName:"a"},"be46ea3"))),(0,n.kt)("li",{parentName:"ul"},"doc(accordion):revert previous change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3de02da26472c17389366d933f3293f658fd783a"},(0,n.kt)("inlineCode",{parentName:"a"},"3de02da"))),(0,n.kt)("li",{parentName:"ul"},"fix typo for caption @desktop line-height pixel number ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/167155234a897334a03a4f3eadc71701185bb924"},(0,n.kt)("inlineCode",{parentName:"a"},"1671552"))),(0,n.kt)("li",{parentName:"ul"},"Commented out integration tests. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/574cfec852f39bdd30430d2ca3a466aec417180d"},(0,n.kt)("inlineCode",{parentName:"a"},"574cfec"))),(0,n.kt)("li",{parentName:"ul"},"popup overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a9555e3128bd0c92691410c202d9b26dd5a5e0c5"},(0,n.kt)("inlineCode",{parentName:"a"},"a9555e3"))),(0,n.kt)("li",{parentName:"ul"},"container component stories fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/692cfce5e795ac718855349424e7e8eb9c7518ec"},(0,n.kt)("inlineCode",{parentName:"a"},"692cfce"))),(0,n.kt)("li",{parentName:"ul"},"Added timeline to package json fixed ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2e93e0478a1502cccb8d7f866cef337a2546b6c"},(0,n.kt)("inlineCode",{parentName:"a"},"f2e93e0"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142123 modified import of volto-eea-design-system icon.less: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7fab7d2871f153c2db139e3258da071ace7c09d"},(0,n.kt)("inlineCode",{parentName:"a"},"a7fab7d"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142123 reference icon.less from this package: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5616e6d730f1a8cbc04784230c35f3490fd0f921"},(0,n.kt)("inlineCode",{parentName:"a"},"5616e6d"))),(0,n.kt)("li",{parentName:"ul"},"Menu component stories change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2797716aa050a8f70d2b6f0f19b7d01e5cd035be"},(0,n.kt)("inlineCode",{parentName:"a"},"2797716"))),(0,n.kt)("li",{parentName:"ul"},"Image stories minor change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ddb9f1dd56fe42e17df1eac5bfd93ee6eaac3179"},(0,n.kt)("inlineCode",{parentName:"a"},"ddb9f1d"))),(0,n.kt)("li",{parentName:"ul"},"card component stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6ccba1ec4a388ced5a3671bf88d4f18aefc8cff3"},(0,n.kt)("inlineCode",{parentName:"a"},"6ccba1e"))),(0,n.kt)("li",{parentName:"ul"},"Added timeline to package json ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93031d6b6b3215e98074700554d7546f9f17f320"},(0,n.kt)("inlineCode",{parentName:"a"},"93031d6"))),(0,n.kt)("li",{parentName:"ul"},"table stories code clean up ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b7b2a56e37b847a3a3fc3d78f2099aba052826c3"},(0,n.kt)("inlineCode",{parentName:"a"},"b7b2a56"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 removed extra baseUrl from docusaurus config ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/79f36da6a38866765025cedd4f5eeb63e273785c"},(0,n.kt)("inlineCode",{parentName:"a"},"79f36da"))),(0,n.kt)("li",{parentName:"ul"},"Accordion stories minor change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ffe808aabc77c6cb324e8fe097a97bb82c291c29"},(0,n.kt)("inlineCode",{parentName:"a"},"ffe808a"))),(0,n.kt)("li",{parentName:"ul"},"Theme assets ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3f4bea4b53e393bc3d926b63683265c0b5df32c2"},(0,n.kt)("inlineCode",{parentName:"a"},"3f4bea4"))),(0,n.kt)("li",{parentName:"ul"},"Merged with develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/167ec9f7847162965ad045259989cc31abaad7f1"},(0,n.kt)("inlineCode",{parentName:"a"},"167ec9f")))),(0,n.kt)("h3",{id:"012-beta2---2022-01-03"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.2-beta.1...0.1.2-beta.2"},"0.1.2-beta.2")," - 2022-01-03"),(0,n.kt)("h3",{id:"012-beta1---2021-12-22"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.2-beta.0...0.1.2-beta.1"},"0.1.2-beta.1")," - 2021-12-22"),(0,n.kt)("h4",{id:"\ufe0f-others-56"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Tab component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4690a6fc1e739eeeeaa3dc90ee35e05a22875bf8"},(0,n.kt)("inlineCode",{parentName:"a"},"4690a6f"))),(0,n.kt)("li",{parentName:"ul"},"Comment component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a87cb6ad7959ce939c9decbfaa08026d4f00a10e"},(0,n.kt)("inlineCode",{parentName:"a"},"a87cb6a"))),(0,n.kt)("li",{parentName:"ul"},"Form stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fc30c900e5adf5a27930aa64a79a632e2b7d84ae"},(0,n.kt)("inlineCode",{parentName:"a"},"fc30c90"))),(0,n.kt)("li",{parentName:"ul"},"Grid component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/798fdd0d0fecb7980308c831fc9dc111a36c5d9f"},(0,n.kt)("inlineCode",{parentName:"a"},"798fdd0"))),(0,n.kt)("li",{parentName:"ul"},"Image component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/be93385f1ea29846512eb7762d69bb98f33be7f2"},(0,n.kt)("inlineCode",{parentName:"a"},"be93385"))),(0,n.kt)("li",{parentName:"ul"},"Menu component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb1f9a82843bb4e3011be9813ae692c94d986495"},(0,n.kt)("inlineCode",{parentName:"a"},"cb1f9a8"))),(0,n.kt)("li",{parentName:"ul"},"Dropdown component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/57cf954599292e6a2f8a1644c6b6d61706ecaf60"},(0,n.kt)("inlineCode",{parentName:"a"},"57cf954"))),(0,n.kt)("li",{parentName:"ul"},"Header component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/264fd463734c9587e3a820f4d14527af89274e12"},(0,n.kt)("inlineCode",{parentName:"a"},"264fd46"))),(0,n.kt)("li",{parentName:"ul"},"Confirn component minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9a00bc174fb676e626d6cc93fac225e8a6165790"},(0,n.kt)("inlineCode",{parentName:"a"},"9a00bc1"))),(0,n.kt)("li",{parentName:"ul"},"Item component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6994fa00c0f91550f64d7345503df7f562480d32"},(0,n.kt)("inlineCode",{parentName:"a"},"6994fa0"))),(0,n.kt)("li",{parentName:"ul"},"Label component stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5cc5843327deeaa5ae2cedc03e6f0c314be6586a"},(0,n.kt)("inlineCode",{parentName:"a"},"5cc5843"))),(0,n.kt)("li",{parentName:"ul"},"Container component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e6e40b3a505c2e2fe88a36d74ea4e9728e3491f6"},(0,n.kt)("inlineCode",{parentName:"a"},"e6e40b3"))),(0,n.kt)("li",{parentName:"ul"},"Message component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ba9d377fd5b04274f1d42065eafa2401a1b0bbca"},(0,n.kt)("inlineCode",{parentName:"a"},"ba9d377"))),(0,n.kt)("li",{parentName:"ul"},"Breadcrumb component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff7a176141c3a59d71df98a0ed0b23b8c08787df"},(0,n.kt)("inlineCode",{parentName:"a"},"ff7a176"))),(0,n.kt)("li",{parentName:"ul"},"Modal component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af1fe6a84d058fb937b555f4dc3e0efceebefa04"},(0,n.kt)("inlineCode",{parentName:"a"},"af1fe6a"))),(0,n.kt)("li",{parentName:"ul"},"List stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0016042856fa2275aed373eebd6f996b837619a2"},(0,n.kt)("inlineCode",{parentName:"a"},"0016042"))),(0,n.kt)("li",{parentName:"ul"},"Button component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/690dfd234bee017c1f1cda7077265e6cf4a870e9"},(0,n.kt)("inlineCode",{parentName:"a"},"690dfd2"))),(0,n.kt)("li",{parentName:"ul"},"Radio component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/84eac30ab5b523ed09c56b9cca41b058cee3e5d2"},(0,n.kt)("inlineCode",{parentName:"a"},"84eac30"))),(0,n.kt)("li",{parentName:"ul"},"Progress component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e6763571afe637375e8260babd9f2219f29b432a"},(0,n.kt)("inlineCode",{parentName:"a"},"e676357"))),(0,n.kt)("li",{parentName:"ul"},"Pagination component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b1af226b9bd42097dc3c74be3d9ca3fab29b80f6"},(0,n.kt)("inlineCode",{parentName:"a"},"b1af226"))),(0,n.kt)("li",{parentName:"ul"},"Segment component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f8c7efcb9b1de209ff146dd315ea9d43b16f4db"},(0,n.kt)("inlineCode",{parentName:"a"},"5f8c7ef"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 eslint fixes for component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/badcb9158cb4a847380f66592b22c78b5117626a"},(0,n.kt)("inlineCode",{parentName:"a"},"badcb91"))),(0,n.kt)("li",{parentName:"ul"},"Table component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7c104b8e89272b0e2505d165184093ee2680c6f3"},(0,n.kt)("inlineCode",{parentName:"a"},"7c104b8"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 more eslint fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a88c091723af0b87cfa85c83307d9510d2bae65c"},(0,n.kt)("inlineCode",{parentName:"a"},"a88c091"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 warn for broken links instead of throwing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bd5821cb78e030aaf69de73dc4d3bdadbe320195"},(0,n.kt)("inlineCode",{parentName:"a"},"bd5821c"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 merge changes from develop-itml to develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bca28b968bc88720aff9e29e1a94a597a7375666"},(0,n.kt)("inlineCode",{parentName:"a"},"bca28b9"))),(0,n.kt)("li",{parentName:"ul"},"made tabs dynamic for api tab ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea37ecb3ec9fe0ace41d7650d59e209929d8e95f"},(0,n.kt)("inlineCode",{parentName:"a"},"ea37ecb"))),(0,n.kt)("li",{parentName:"ul"},"Basic storybook/Docusaurus components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/840ab60f22f7b73d8742fa7452f198d486c6ec5b"},(0,n.kt)("inlineCode",{parentName:"a"},"840ab60"))),(0,n.kt)("li",{parentName:"ul"},"created List directory & srories based on semantic-ui List component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51f19016b27228a4d391c88b7eee27357d6fdc0d"},(0,n.kt)("inlineCode",{parentName:"a"},"51f1901"))),(0,n.kt)("li",{parentName:"ul"},"made tabs as component easy to call for other components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/07bae4900a4076f3429d3a26978b92aabf6b23ba"},(0,n.kt)("inlineCode",{parentName:"a"},"07bae49"))),(0,n.kt)("li",{parentName:"ul"},"Popup Component | minor fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ff9908a9374f93b9eaf4d8ee8de24acdf5be3ec"},(0,n.kt)("inlineCode",{parentName:"a"},"2ff9908"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Tab component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/95e3a733921b42fbe2540fa39548284abff9fdc0"},(0,n.kt)("inlineCode",{parentName:"a"},"95e3a73"))),(0,n.kt)("li",{parentName:"ul"},"created Table directory and stories based on semantic-ui Table component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e16115daa000962ccd8d141e3c11fd099446a388"},(0,n.kt)("inlineCode",{parentName:"a"},"e16115d"))),(0,n.kt)("li",{parentName:"ul"},"List component stories - minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/de113430b487297417c4697178f9ee37412a5389"},(0,n.kt)("inlineCode",{parentName:"a"},"de11343"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Comment component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a20f8842e8cb5c937dfc450030ac9afcf78ffe11"},(0,n.kt)("inlineCode",{parentName:"a"},"a20f884"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Grid component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/360d2a897f36e86c58b0ba6ac3d4fc852d10287d"},(0,n.kt)("inlineCode",{parentName:"a"},"360d2a8"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Image component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c1d2bcaf886c96052af45fcce98243ea56c98a5"},(0,n.kt)("inlineCode",{parentName:"a"},"3c1d2bc"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Menu component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/17e3b37ae447d8cc86228fa6c0c48a8fd8be9d03"},(0,n.kt)("inlineCode",{parentName:"a"},"17e3b37"))),(0,n.kt)("li",{parentName:"ul"},"Added untracked files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/75f0afda10114e70348e23d480f8f74528531674"},(0,n.kt)("inlineCode",{parentName:"a"},"75f0afd"))),(0,n.kt)("li",{parentName:"ul"},"created Dropdown stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d6a25381078e0b3cabdb9270d5224b3886ab6af9"},(0,n.kt)("inlineCode",{parentName:"a"},"d6a2538"))),(0,n.kt)("li",{parentName:"ul"},"created Header component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8339798f3e7d40f1b5a033bf4d7303c756c38d3"},(0,n.kt)("inlineCode",{parentName:"a"},"b833979"))),(0,n.kt)("li",{parentName:"ul"},"created stories for semantic-ui Confirm component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6fddccc6cf97f9929da52064ceb379f9fc427b42"},(0,n.kt)("inlineCode",{parentName:"a"},"6fddccc"))),(0,n.kt)("li",{parentName:"ul"},"created Statistic directory and stories with semantic-ui Statistic component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cd62498dbd75d5dff0adf849ff95d22bb9dc3b34"},(0,n.kt)("inlineCode",{parentName:"a"},"cd62498"))),(0,n.kt)("li",{parentName:"ul"},"created Item component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/90ec2be7eede347352e318c70615c30e7d422073"},(0,n.kt)("inlineCode",{parentName:"a"},"90ec2be"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Container component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/41934f6c5961ae0ac034a496ac169a191c7a5288"},(0,n.kt)("inlineCode",{parentName:"a"},"41934f6"))),(0,n.kt)("li",{parentName:"ul"},"created Label component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/71732f68b3153320710fbf7fb78dac460b8a084f"},(0,n.kt)("inlineCode",{parentName:"a"},"71732f6"))),(0,n.kt)("li",{parentName:"ul"},"created Message component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/adcbeabe6d4e8c1bbd7bd925c5f7fd3109fb407c"},(0,n.kt)("inlineCode",{parentName:"a"},"adcbeab"))),(0,n.kt)("li",{parentName:"ul"},"created Modal component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c25409d8901ad4eba66fa66a9f5c34b0353569b9"},(0,n.kt)("inlineCode",{parentName:"a"},"c25409d"))),(0,n.kt)("li",{parentName:"ul"},"Breadcrumb component stories and minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6264d92bcf6565e284ae9dc0c7a918652bb3959e"},(0,n.kt)("inlineCode",{parentName:"a"},"6264d92"))),(0,n.kt)("li",{parentName:"ul"},"created Pagination component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/57cdad35e21fdacf303e407abcb8988e97e87242"},(0,n.kt)("inlineCode",{parentName:"a"},"57cdad3"))),(0,n.kt)("li",{parentName:"ul"},"created Segment component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d8d01d70dab9359be46eb1629b3198f871091c7a"},(0,n.kt)("inlineCode",{parentName:"a"},"d8d01d7"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Radio component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1fd062d8a08cbe8507f5154201632ea96f765a2c"},(0,n.kt)("inlineCode",{parentName:"a"},"1fd062d"))),(0,n.kt)("li",{parentName:"ul"},"Menu stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6ba5e0d00a26ffd4625fb51f759af3764cef28de"},(0,n.kt)("inlineCode",{parentName:"a"},"6ba5e0d"))),(0,n.kt)("li",{parentName:"ul"},"Statistic component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c874a520c9959b7673b5c86f63e53e90f006f22"},(0,n.kt)("inlineCode",{parentName:"a"},"3c874a5"))),(0,n.kt)("li",{parentName:"ul"},"Card component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/290bda8dac4c9bb4476108c2e4969fa283f935e2"},(0,n.kt)("inlineCode",{parentName:"a"},"290bda8"))),(0,n.kt)("li",{parentName:"ul"},"Accrordion stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ee3f592fbfaead01506fb6a4dbfb36d06269564"},(0,n.kt)("inlineCode",{parentName:"a"},"2ee3f59"))),(0,n.kt)("li",{parentName:"ul"},"renamed Demo folder to Layout ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b9f6d05708310889dd018961bf5df9d5edd66e12"},(0,n.kt)("inlineCode",{parentName:"a"},"b9f6d05"))),(0,n.kt)("li",{parentName:"ul"},"remove test exclusion ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/94dba3eaa864e25d34bcc33ab19494f83ecabb25"},(0,n.kt)("inlineCode",{parentName:"a"},"94dba3e"))),(0,n.kt)("li",{parentName:"ul"},"Accordion component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e672d59f86a79e69f15b5212e2953aa7c5fea1d1"},(0,n.kt)("inlineCode",{parentName:"a"},"e672d59"))),(0,n.kt)("li",{parentName:"ul"},"fix docusaurus url (removed trailing /) ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b6c59fc7733b3df47dca797906e8f7e40a2f4ada"},(0,n.kt)("inlineCode",{parentName:"a"},"b6c59fc"))),(0,n.kt)("li",{parentName:"ul"},"Item component stories - minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f0a99025b9093ecf2eb25fd4b4e401b5b532a481"},(0,n.kt)("inlineCode",{parentName:"a"},"f0a9902"))),(0,n.kt)("li",{parentName:"ul"},"eea logos and assets ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b435b511d64b0ca99bfd310d66bdbfd5985390cc"},(0,n.kt)("inlineCode",{parentName:"a"},"b435b51")))),(0,n.kt)("h3",{id:"012-beta0---2021-12-18"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.1...0.1.2-beta.0"},"0.1.2-beta.0")," - 2021-12-18"),(0,n.kt)("h4",{id:"\ufe0f-others-57"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Refs #140454 added github action to build docusaurus to the develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/abe6a72882a41c9bca3649a3a6697619038e1677"},(0,n.kt)("inlineCode",{parentName:"a"},"abe6a72")))),(0,n.kt)("h3",{id:"011---2021-12-16"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.1-beta.0...0.1.1"},"0.1.1")," - 2021-12-16"),(0,n.kt)("h4",{id:"\ufe0f-others-58"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Refs #140454 changed the following to volto-eea-design-system: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6791d413cf1b9e434970564d9e59ed56b41907f0"},(0,n.kt)("inlineCode",{parentName:"a"},"6791d41"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 corrected base url for docusaurus website build ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/98271b3d39e2e21dfb4a0e31c334dc9e87811e4a"},(0,n.kt)("inlineCode",{parentName:"a"},"98271b3"))),(0,n.kt)("li",{parentName:"ul"},"Initial test changes on design system/docusaurus. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9dad612f385cc9fde712809f07dbe2b7111432cf"},(0,n.kt)("inlineCode",{parentName:"a"},"9dad612"))),(0,n.kt)("li",{parentName:"ul"},"After prettier check ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9ec40b4fe9d8a18e99f774e1a96a55b286a9733a"},(0,n.kt)("inlineCode",{parentName:"a"},"9ec40b4"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 restore SearchWidget.jsx content and removed dummy text from docs intro page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7505df89d93ac99156834a0c50a8e2b174c506f8"},(0,n.kt)("inlineCode",{parentName:"a"},"7505df8"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 added references to eea and the storybook in the docusaurus footer ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/42bbfcdd67888c3a7a55875d67acae9f7eb753bb"},(0,n.kt)("inlineCode",{parentName:"a"},"42bbfcd"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 lint fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9502f2bdbd45262b38926def5b7b55efabf4c32c"},(0,n.kt)("inlineCode",{parentName:"a"},"9502f2b"))),(0,n.kt)("li",{parentName:"ul"},"Add SonarQube badges ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4e0a4053ff2313fc3939caab80d874470aca062"},(0,n.kt)("inlineCode",{parentName:"a"},"a4e0a40"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 brought changes from develop-itml and upgrades docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/207c873532e38fb7909cdc32a02bf50e575b66fa"},(0,n.kt)("inlineCode",{parentName:"a"},"207c873"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 removed extra content not needed by the docusaurus site ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bc68ebe8259c9b8ed6bc73df8102885554bbc4ed"},(0,n.kt)("inlineCode",{parentName:"a"},"bc68ebe"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 updated docusaurus to latest beta ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d68ed8a1660910067a09550626a5f0e8fbbeeac9"},(0,n.kt)("inlineCode",{parentName:"a"},"d68ed8a")))),(0,n.kt)("h3",{id:"011-beta0---2021-12-09"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.0...0.1.1-beta.0"},"0.1.1-beta.0")," - 2021-12-09"),(0,n.kt)("h4",{id:"\ufe0f-others-59"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Refs #140454 moved header and footer templates from volto-ims-theme: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2d5e56045c0b7d917153d95492dd340668b6222"},(0,n.kt)("inlineCode",{parentName:"a"},"e2d5e56"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 added website folder with docusaurus site skeleton ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6fd15f4365a207308c068fe7eb197c0717e93954"},(0,n.kt)("inlineCode",{parentName:"a"},"6fd15f4"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142794 added commented implementation of the header and footer area: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/773ad8784f4a03e4b600406999d3a274a3984d39"},(0,n.kt)("inlineCode",{parentName:"a"},"773ad87"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 changed the following: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4137ec42270c28cbe036ba11e9475f00a7a5cba3"},(0,n.kt)("inlineCode",{parentName:"a"},"4137ec4"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 removed storybook from volto-eea-design-system: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a129ffb485c4c55f19129a209d920da8f8f52418"},(0,n.kt)("inlineCode",{parentName:"a"},"a129ffb"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 added storybook as a dev dependency: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e04ae4e0294fbb4a09f367d1693a158d5a1e8f2f"},(0,n.kt)("inlineCode",{parentName:"a"},"e04ae4e"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 updated Breadcrumbs.jsx to latest version: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/63fe5076781f3cf2ce5c79641a5f1b45f298b476"},(0,n.kt)("inlineCode",{parentName:"a"},"63fe507"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 we should use jsx and not mdx for storybook tests ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3668e667f857cb3052b9d63cf27ec629fe1c8394"},(0,n.kt)("inlineCode",{parentName:"a"},"3668e66"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 updated eea-design-system readme with extra info on package contents ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d2efc3ddae7b91efc82cf3bce8fb8e42d696a780"},(0,n.kt)("inlineCode",{parentName:"a"},"d2efc3d"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142010 - Optimize Volto-addons gitflow pipelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3af46d2b14fa0b1ef44736f25b0f9ac93b23d18d"},(0,n.kt)("inlineCode",{parentName:"a"},"3af46d2"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 Renamed folders of docusaurus website: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/15bca7462ba1b3c626e2bf76597f6436aa5e9092"},(0,n.kt)("inlineCode",{parentName:"a"},"15bca74"))),(0,n.kt)("li",{parentName:"ul"},"Add demo story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/757c409271eb70baa54bff8bd7c71ba29aaa4f66"},(0,n.kt)("inlineCode",{parentName:"a"},"757c409"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142794 enabled minimum css so that header looks decent ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/adbe2335bacf5ae09541c3679a246a5ec28376a4"},(0,n.kt)("inlineCode",{parentName:"a"},"adbe233"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 use the develop branch for the readme linking, it's always more up to date ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/23dcf166d5d633df2a63ab6fa5bac4be086e99a3"},(0,n.kt)("inlineCode",{parentName:"a"},"23dcf16"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 added missing themes reference for the eea theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e9ca244fcedf0be420748b3e5347e98309b5d996"},(0,n.kt)("inlineCode",{parentName:"a"},"e9ca244"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 modified assets imports after move to volto-eea-design-system ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2250cc7ba4155c328837cea09e2e7d94afc984f8"},(0,n.kt)("inlineCode",{parentName:"a"},"2250cc7"))),(0,n.kt)("li",{parentName:"ul"},"Load footer in segment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/80d38a96284e7fa9416ba327a43e29eb94bebe55"},(0,n.kt)("inlineCode",{parentName:"a"},"80d38a9"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 bump package version to 1.1.0 from 0.1.1 from develop branch: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1314039ceb45d405af6bc4698b489bbd6562c6ae"},(0,n.kt)("inlineCode",{parentName:"a"},"1314039"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142794 keep toolbalWidth variables in case design system runs in an older version of Volto ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1a8b30562e4167fe36b095877db0b215d10cb620"},(0,n.kt)("inlineCode",{parentName:"a"},"1a8b305"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142794 changed the following: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fbb80b1dbd0e3078777b8b3496d4b207ba25639a"},(0,n.kt)("inlineCode",{parentName:"a"},"fbb80b1"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 moved storybook scripts to the scripts section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/705c4c365d26152d917c62991f3f8202bc75287d"},(0,n.kt)("inlineCode",{parentName:"a"},"705c4c3"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 removed dangling comma ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/514f24d503a1f05497696c22c7fdbf7bc19d4e54"},(0,n.kt)("inlineCode",{parentName:"a"},"514f24d"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 changed link to the start of the docs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0e16fdfc77e119da4e1f15183d9cb95ef9b4b6cf"},(0,n.kt)("inlineCode",{parentName:"a"},"0e16fdf"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 add h1 to the list of elements that are max 800px and centered ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d3c30f409aa4cb43810839f8960589456cc1b2e"},(0,n.kt)("inlineCode",{parentName:"a"},"7d3c30f"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using ims-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8d657d056cde5163cfe90ac66bc973f55d82e5e9"},(0,n.kt)("inlineCode",{parentName:"a"},"8d657d0")))),(0,n.kt)("h3",{id:"010---2021-11-17"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.0.1...0.1.0"},"0.1.0")," - 2021-11-17"),(0,n.kt)("h4",{id:"\ufe0f-others-60"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Refs #140454 changed the following to volto-eea-design-system: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/40d2af693e35abdda3ededc7aabcb17e9a12e781"},(0,n.kt)("inlineCode",{parentName:"a"},"40d2af6"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 elements folder now has the variables and overrides from pastanaga theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/595b4e60816d3e24950ede3afea6e5f2aa2d7008"},(0,n.kt)("inlineCode",{parentName:"a"},"595b4e6"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 use font awesome from SemanticUI instead of Pastanaga: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4e273ca1b9a2be1f169d12258ac2335c3ebeefff"},(0,n.kt)("inlineCode",{parentName:"a"},"4e273ca"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 removed the components customizations from volto-eea-design-system: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c98c260b549cd1db48bfe556e994692a4855b95d"},(0,n.kt)("inlineCode",{parentName:"a"},"c98c260"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 added customizations folder from volto-ims-theme to volto-eea-design-system: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff4bf44bd648ff179bd7c82d0cf80da968b291b0"},(0,n.kt)("inlineCode",{parentName:"a"},"ff4bf44"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 modules folder now has the variables and overrides from pastanaga theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2841b62c87e3242423bca1117c7e1793baa7974"},(0,n.kt)("inlineCode",{parentName:"a"},"f2841b6"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 customized Comments.jsx to remove unnecessary container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b2e95d7ae875a7fc85366c76ef35ce215dd7b5ff"},(0,n.kt)("inlineCode",{parentName:"a"},"b2e95d7"))),(0,n.kt)("li",{parentName:"ul"},"Refs #132149 added initial commit for volto-eea-design-system: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2934b911d589fde126f70363a61cbdd2e3dcf7c9"},(0,n.kt)("inlineCode",{parentName:"a"},"2934b91"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 collection folder now has the variables and overrides from pastanaga: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/213d4968e4efa380a389fb7ab40ec3196f030050"},(0,n.kt)("inlineCode",{parentName:"a"},"213d496"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 removed search widget customization, we can use volto-ims-theme for that file ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b7e8b0c4821584a84f940d8f780057122321aae7"},(0,n.kt)("inlineCode",{parentName:"a"},"b7e8b0c"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 stylelint quick fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5595925f68871135a07d703c8ba009b0172c7ccd"},(0,n.kt)("inlineCode",{parentName:"a"},"5595925"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 changed the following: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/769f4f9eca0ed9fffe0c8c49c56bcb123a203f3c"},(0,n.kt)("inlineCode",{parentName:"a"},"769f4f9"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 changed the following to the eea theme: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/06d8d86a7be81fd3feadf034eacfa61eb69743ab"},(0,n.kt)("inlineCode",{parentName:"a"},"06d8d86"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 eea site.variables now use all values from pastanaga's site.variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6535c0f4e1968822a232b017a55babd280716d88"},(0,n.kt)("inlineCode",{parentName:"a"},"6535c0f"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 simplified container overrides: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51250038527f2e4b1135a2b5bfc6adccc3f77a06"},(0,n.kt)("inlineCode",{parentName:"a"},"5125003"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/177d0ce854a8a963faa2aae9481cbcc7e340e0fa"},(0,n.kt)("inlineCode",{parentName:"a"},"177d0ce"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 globals folder now has the variables and overrides from pastanaga theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/116a0c338bd92dd14636a649476b4f00951e3734"},(0,n.kt)("inlineCode",{parentName:"a"},"116a0c3"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 changed the following: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2e7f42381b63e65bafac3b754d49b65daca9663d"},(0,n.kt)("inlineCode",{parentName:"a"},"2e7f423"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 modules folder now has the variables and overrides from pastanaga theme: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/27a201d57024a7c621f4943b8eb59a3247b6c89d"},(0,n.kt)("inlineCode",{parentName:"a"},"27a201d"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 text elements are now with a max width and centered within content-area: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bbed7bbfb3e79a371b7bf7dea2206cdbdcdfe76d"},(0,n.kt)("inlineCode",{parentName:"a"},"bbed7bb"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 added main.variables entries from pastanaga to eea theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1cbbc550436c889d1b297ae9e6880167fce28fe1"},(0,n.kt)("inlineCode",{parentName:"a"},"1cbbc55"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 modified theme image imports for component customizations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef3238a4d615fa1b496e83f4e6c4c0d27f3d68f4"},(0,n.kt)("inlineCode",{parentName:"a"},"ef3238a"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 modified container width to be auto: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2e8d2e0ebb3e4a55b7cf1b66c3dff222ef12aa18"},(0,n.kt)("inlineCode",{parentName:"a"},"2e8d2e0"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 modified several icons to use the \\f values instead of \\e: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c397145bc1e76916ae72a94faaf33f49bd9ca5a6"},(0,n.kt)("inlineCode",{parentName:"a"},"c397145"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 changed the following: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c518edacad9b8bed61ea50d318d8d43bf7f483a0"},(0,n.kt)("inlineCode",{parentName:"a"},"c518eda"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 ensure that main column isn't enlarged over the sidebar section on edit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f7a28684223494933bcd8ec1f6d86b1b3da17e10"},(0,n.kt)("inlineCode",{parentName:"a"},"f7a2868"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 changed the following to the form styling: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/eb92e054fe330730c1a44737cbbdf33985216cbb"},(0,n.kt)("inlineCode",{parentName:"a"},"eb92e05"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 modified path of theme folder location for image selection ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f8cca4594857ab4afd654f35e4ec97e4d3e04be4"},(0,n.kt)("inlineCode",{parentName:"a"},"f8cca45"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 added missing mobileScrollbarWidth variables introduced as part of the mobile navigation pull request ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/444c78d998199e703d7ecde01b3feb0d44c60977"},(0,n.kt)("inlineCode",{parentName:"a"},"444c78d"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 reference font and image path from ~volto-themes instead of relative ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ec93ed3a496673eed7d7ec07a2f76aaa6a29d7ca"},(0,n.kt)("inlineCode",{parentName:"a"},"ec93ed3"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 ensure that Volto doesn't crash when site module is set to eea: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51f2f27f5ba947b49b4b69fcf9b8890676cd1d7e"},(0,n.kt)("inlineCode",{parentName:"a"},"51f2f27"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 added tiny size prop to Breadcrumbs in order to have it as 12px ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/56a12e200c27c3a1826fa3088c34f762ed74dff7"},(0,n.kt)("inlineCode",{parentName:"a"},"56a12e2")))),(0,n.kt)("h3",{id:"001---2021-11-17"},"0.0.1 - 2021-11-17"),(0,n.kt)("h4",{id:"\ufe0f-others-61"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Initial commit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b0bdd445c95a20d088e00469f81028c16482640a"},(0,n.kt)("inlineCode",{parentName:"a"},"b0bdd44")))))}s.isMDXComponent=!0}}]); \ No newline at end of file diff --git a/docs/assets/js/runtime~main.4df05331.js b/docs/assets/js/runtime~main.17fc11c4.js similarity index 99% rename from docs/assets/js/runtime~main.4df05331.js rename to docs/assets/js/runtime~main.17fc11c4.js index a4faeb8594..6ecca26f5c 100644 --- a/docs/assets/js/runtime~main.4df05331.js +++ b/docs/assets/js/runtime~main.17fc11c4.js @@ -1 +1 @@ -(()=>{"use strict";var e,d,a,f,c,b={},t={};function r(e){var d=t[e];if(void 0!==d)return d.exports;var a=t[e]={id:e,loaded:!1,exports:{}};return b[e].call(a.exports,a,a.exports,r),a.loaded=!0,a.exports}r.m=b,r.c=t,e=[],r.O=(d,a,f,c)=>{if(!a){var b=1/0;for(i=0;i=c)&&Object.keys(r.O).every((e=>r.O[e](a[o])))?a.splice(o--,1):(t=!1,c0&&e[i-1][2]>c;i--)e[i]=e[i-1];e[i]=[a,f,c]},r.n=e=>{var d=e&&e.__esModule?()=>e.default:()=>e;return r.d(d,{a:d}),d},a=Object.getPrototypeOf?e=>Object.getPrototypeOf(e):e=>e.__proto__,r.t=function(e,f){if(1&f&&(e=this(e)),8&f)return e;if("object"==typeof e&&e){if(4&f&&e.__esModule)return e;if(16&f&&"function"==typeof e.then)return e}var c=Object.create(null);r.r(c);var b={};d=d||[null,a({}),a([]),a(a)];for(var t=2&f&&e;"object"==typeof t&&!~d.indexOf(t);t=a(t))Object.getOwnPropertyNames(t).forEach((d=>b[d]=()=>e[d]));return b.default=()=>e,r.d(c,b),c},r.d=(e,d)=>{for(var a in d)r.o(d,a)&&!r.o(e,a)&&Object.defineProperty(e,a,{enumerable:!0,get:d[a]})},r.f={},r.e=e=>Promise.all(Object.keys(r.f).reduce(((d,a)=>(r.f[a](e,d),d)),[])),r.u=e=>"assets/js/"+({53:"935f2afb",123:"3fc91083",296:"a64f9232",432:"323ff172",554:"8fd6869d",585:"c74413f4",596:"ca221c65",698:"56bbe726",918:"1e6d2369",952:"4442ee2e",1129:"30e35848",1327:"9c235974",1356:"7ca1ae16",1500:"3508f21e",1704:"6c6ad4cd",2099:"f4f5dc73",2163:"0bef62f9",2263:"e9a55e4f",2282:"9a6dc4ea",2305:"686ae6d4",2359:"d61699b0",2438:"d9dbb717",2453:"a5822498",2463:"42e0342b",2543:"86298114",2582:"63791757",2672:"bdd5fc8f",2678:"9b6f4efd",2853:"06df40a2",2873:"398224d0",3018:"2d344845",3166:"f9ee06b1",3293:"b78356b1",3305:"1f485700",3412:"792760cc",3436:"860b2a9d",3608:"9e4087bc",3661:"39f50359",3808:"fe8a233d",3822:"77dd8181",3902:"a8b15fb1",3934:"aa38dcb9",4009:"8050142d",4195:"c4f5d8e4",4419:"f601d3af",4521:"1a10606c",5294:"76fe1567",5386:"54e4468f",5435:"24202412",5437:"a186f965",5886:"7e4403b7",6061:"046f8cb9",6196:"c3faf33a",6245:"41d5c757",6304:"1c178b4f",6515:"f8c0402f",6570:"23d147e2",6671:"8effdd7e",6966:"c7d85666",7098:"d727d0d1",7426:"671d942a",7492:"b0f56568",7578:"3aee128f",7918:"17896441",8027:"2d39cd59",8150:"85201c01",8362:"0b225811",8518:"627750f7",8635:"0a8b14be",9003:"072ed0e5",9053:"75066279",9110:"7810a5ba",9173:"6d890e16",9184:"b3c62368",9213:"6dda7ddb",9221:"797402ac",9340:"d6e43592",9456:"aed7c9bd",9514:"1be78505",9744:"224603d4",9817:"14eb3368"}[e]||e)+"."+{53:"af8c3126",123:"1fc5f8a1",296:"a3fe1499",432:"8e77499f",554:"9012c388",585:"88e2ed16",596:"c934dcb0",698:"02ecf8a0",918:"74ff9fcc",952:"51f99e28",1129:"07372634",1327:"37d0ed39",1356:"02804555",1500:"929876a1",1704:"6511d866",2099:"2a653be0",2163:"096fabb0",2263:"3980a0d4",2282:"f1d8d943",2305:"600335dc",2359:"e041662b",2438:"e1067b46",2453:"7f593cf2",2463:"6d5f3ad4",2543:"52def2ee",2582:"b5f68b7e",2672:"25d9da0a",2678:"b0273f83",2853:"23875b5f",2873:"b722ee28",3018:"1383b54d",3166:"136c147f",3293:"655674df",3305:"1237957a",3412:"08f0edc4",3436:"cba9bde3",3608:"6e912446",3661:"593bba5c",3808:"a7fce259",3822:"dbb98ec9",3902:"73af5b7e",3934:"a4f5c736",4009:"1e9f60f9",4195:"684c270e",4419:"4a574066",4521:"216f709e",4608:"46768f56",5294:"86227180",5386:"f96775e6",5435:"67d0c84c",5437:"e2c081c8",5886:"f539fb56",6061:"24207895",6196:"aa89e306",6245:"0d9cade4",6304:"6abca704",6515:"6a8c6376",6570:"dd09dcfc",6671:"78438c01",6966:"3b2a23c4",7098:"451ca2c2",7426:"361333e3",7492:"01af3d6a",7578:"465c5637",7918:"6d7b2f82",8027:"c3e1229f",8150:"e3153012",8362:"69f9ed96",8518:"6f79a50b",8635:"9eacda40",9003:"b1cc3b3e",9053:"90332cf0",9110:"cbdafccc",9173:"3ab4f8fe",9184:"9ae02f15",9213:"3a3aae20",9221:"261f0d22",9340:"c521528a",9456:"3112a237",9514:"a4a3adad",9744:"bcc78ee9",9817:"d6f1bb65"}[e]+".js",r.miniCssF=e=>"assets/css/styles.6aa5c4cf.css",r.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),r.o=(e,d)=>Object.prototype.hasOwnProperty.call(e,d),f={},c="website:",r.l=(e,d,a,b)=>{if(f[e])f[e].push(d);else{var t,o;if(void 0!==a)for(var n=document.getElementsByTagName("script"),i=0;i{t.onerror=t.onload=null,clearTimeout(u);var c=f[e];if(delete f[e],t.parentNode&&t.parentNode.removeChild(t),c&&c.forEach((e=>e(a))),d)return d(a)},u=setTimeout(l.bind(null,void 0,{type:"timeout",target:t}),12e4);t.onerror=l.bind(null,t.onerror),t.onload=l.bind(null,t.onload),o&&document.head.appendChild(t)}},r.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r.p="/volto-eea-design-system/",r.gca=function(e){return e={17896441:"7918",24202412:"5435",63791757:"2582",75066279:"9053",86298114:"2543","935f2afb":"53","3fc91083":"123",a64f9232:"296","323ff172":"432","8fd6869d":"554",c74413f4:"585",ca221c65:"596","56bbe726":"698","1e6d2369":"918","4442ee2e":"952","30e35848":"1129","9c235974":"1327","7ca1ae16":"1356","3508f21e":"1500","6c6ad4cd":"1704",f4f5dc73:"2099","0bef62f9":"2163",e9a55e4f:"2263","9a6dc4ea":"2282","686ae6d4":"2305",d61699b0:"2359",d9dbb717:"2438",a5822498:"2453","42e0342b":"2463",bdd5fc8f:"2672","9b6f4efd":"2678","06df40a2":"2853","398224d0":"2873","2d344845":"3018",f9ee06b1:"3166",b78356b1:"3293","1f485700":"3305","792760cc":"3412","860b2a9d":"3436","9e4087bc":"3608","39f50359":"3661",fe8a233d:"3808","77dd8181":"3822",a8b15fb1:"3902",aa38dcb9:"3934","8050142d":"4009",c4f5d8e4:"4195",f601d3af:"4419","1a10606c":"4521","76fe1567":"5294","54e4468f":"5386",a186f965:"5437","7e4403b7":"5886","046f8cb9":"6061",c3faf33a:"6196","41d5c757":"6245","1c178b4f":"6304",f8c0402f:"6515","23d147e2":"6570","8effdd7e":"6671",c7d85666:"6966",d727d0d1:"7098","671d942a":"7426",b0f56568:"7492","3aee128f":"7578","2d39cd59":"8027","85201c01":"8150","0b225811":"8362","627750f7":"8518","0a8b14be":"8635","072ed0e5":"9003","7810a5ba":"9110","6d890e16":"9173",b3c62368:"9184","6dda7ddb":"9213","797402ac":"9221",d6e43592:"9340",aed7c9bd:"9456","1be78505":"9514","224603d4":"9744","14eb3368":"9817"}[e]||e,r.p+r.u(e)},(()=>{var e={1303:0,532:0};r.f.j=(d,a)=>{var f=r.o(e,d)?e[d]:void 0;if(0!==f)if(f)a.push(f[2]);else if(/^(1303|532)$/.test(d))e[d]=0;else{var c=new Promise(((a,c)=>f=e[d]=[a,c]));a.push(f[2]=c);var b=r.p+r.u(d),t=new Error;r.l(b,(a=>{if(r.o(e,d)&&(0!==(f=e[d])&&(e[d]=void 0),f)){var c=a&&("load"===a.type?"missing":a.type),b=a&&a.target&&a.target.src;t.message="Loading chunk "+d+" failed.\n("+c+": "+b+")",t.name="ChunkLoadError",t.type=c,t.request=b,f[1](t)}}),"chunk-"+d,d)}},r.O.j=d=>0===e[d];var d=(d,a)=>{var f,c,b=a[0],t=a[1],o=a[2],n=0;if(b.some((d=>0!==e[d]))){for(f in t)r.o(t,f)&&(r.m[f]=t[f]);if(o)var i=o(r)}for(d&&d(a);n{"use strict";var e,d,a,f,c,b={},t={};function r(e){var d=t[e];if(void 0!==d)return d.exports;var a=t[e]={id:e,loaded:!1,exports:{}};return b[e].call(a.exports,a,a.exports,r),a.loaded=!0,a.exports}r.m=b,r.c=t,e=[],r.O=(d,a,f,c)=>{if(!a){var b=1/0;for(i=0;i=c)&&Object.keys(r.O).every((e=>r.O[e](a[o])))?a.splice(o--,1):(t=!1,c0&&e[i-1][2]>c;i--)e[i]=e[i-1];e[i]=[a,f,c]},r.n=e=>{var d=e&&e.__esModule?()=>e.default:()=>e;return r.d(d,{a:d}),d},a=Object.getPrototypeOf?e=>Object.getPrototypeOf(e):e=>e.__proto__,r.t=function(e,f){if(1&f&&(e=this(e)),8&f)return e;if("object"==typeof e&&e){if(4&f&&e.__esModule)return e;if(16&f&&"function"==typeof e.then)return e}var c=Object.create(null);r.r(c);var b={};d=d||[null,a({}),a([]),a(a)];for(var t=2&f&&e;"object"==typeof t&&!~d.indexOf(t);t=a(t))Object.getOwnPropertyNames(t).forEach((d=>b[d]=()=>e[d]));return b.default=()=>e,r.d(c,b),c},r.d=(e,d)=>{for(var a in d)r.o(d,a)&&!r.o(e,a)&&Object.defineProperty(e,a,{enumerable:!0,get:d[a]})},r.f={},r.e=e=>Promise.all(Object.keys(r.f).reduce(((d,a)=>(r.f[a](e,d),d)),[])),r.u=e=>"assets/js/"+({53:"935f2afb",123:"3fc91083",296:"a64f9232",432:"323ff172",554:"8fd6869d",585:"c74413f4",596:"ca221c65",698:"56bbe726",918:"1e6d2369",952:"4442ee2e",1129:"30e35848",1327:"9c235974",1356:"7ca1ae16",1500:"3508f21e",1704:"6c6ad4cd",2099:"f4f5dc73",2163:"0bef62f9",2263:"e9a55e4f",2282:"9a6dc4ea",2305:"686ae6d4",2359:"d61699b0",2438:"d9dbb717",2453:"a5822498",2463:"42e0342b",2543:"86298114",2582:"63791757",2672:"bdd5fc8f",2678:"9b6f4efd",2853:"06df40a2",2873:"398224d0",3018:"2d344845",3166:"f9ee06b1",3293:"b78356b1",3305:"1f485700",3412:"792760cc",3436:"860b2a9d",3608:"9e4087bc",3661:"39f50359",3808:"fe8a233d",3822:"77dd8181",3902:"a8b15fb1",3934:"aa38dcb9",4009:"8050142d",4195:"c4f5d8e4",4419:"f601d3af",4521:"1a10606c",5294:"76fe1567",5386:"54e4468f",5435:"24202412",5437:"a186f965",5886:"7e4403b7",6061:"046f8cb9",6196:"c3faf33a",6245:"41d5c757",6304:"1c178b4f",6515:"f8c0402f",6570:"23d147e2",6671:"8effdd7e",6966:"c7d85666",7098:"d727d0d1",7426:"671d942a",7492:"b0f56568",7578:"3aee128f",7918:"17896441",8027:"2d39cd59",8150:"85201c01",8362:"0b225811",8518:"627750f7",8635:"0a8b14be",9003:"072ed0e5",9053:"75066279",9110:"7810a5ba",9173:"6d890e16",9184:"b3c62368",9213:"6dda7ddb",9221:"797402ac",9340:"d6e43592",9456:"aed7c9bd",9514:"1be78505",9744:"224603d4",9817:"14eb3368"}[e]||e)+"."+{53:"af8c3126",123:"1fc5f8a1",296:"a3fe1499",432:"8e77499f",554:"9012c388",585:"88e2ed16",596:"c934dcb0",698:"02ecf8a0",918:"74ff9fcc",952:"51f99e28",1129:"07372634",1327:"37d0ed39",1356:"02804555",1500:"929876a1",1704:"6511d866",2099:"2a653be0",2163:"096fabb0",2263:"3980a0d4",2282:"f1d8d943",2305:"600335dc",2359:"e041662b",2438:"e1067b46",2453:"7f593cf2",2463:"6d5f3ad4",2543:"52def2ee",2582:"b5f68b7e",2672:"25d9da0a",2678:"b0273f83",2853:"23875b5f",2873:"b722ee28",3018:"1383b54d",3166:"136c147f",3293:"655674df",3305:"1237957a",3412:"08f0edc4",3436:"cba9bde3",3608:"6e912446",3661:"593bba5c",3808:"a7fce259",3822:"dbb98ec9",3902:"73af5b7e",3934:"a4f5c736",4009:"1e9f60f9",4195:"684c270e",4419:"4a574066",4521:"216f709e",4608:"46768f56",5294:"86227180",5386:"f96775e6",5435:"67d0c84c",5437:"e2c081c8",5886:"f539fb56",6061:"24207895",6196:"aa89e306",6245:"5c8c3dc5",6304:"6abca704",6515:"6a8c6376",6570:"dd09dcfc",6671:"78438c01",6966:"3b2a23c4",7098:"451ca2c2",7426:"361333e3",7492:"01af3d6a",7578:"465c5637",7918:"6d7b2f82",8027:"c3e1229f",8150:"e3153012",8362:"69f9ed96",8518:"6f79a50b",8635:"9eacda40",9003:"b1cc3b3e",9053:"90332cf0",9110:"cbdafccc",9173:"3ab4f8fe",9184:"9ae02f15",9213:"3a3aae20",9221:"261f0d22",9340:"c521528a",9456:"3112a237",9514:"a4a3adad",9744:"bcc78ee9",9817:"d6f1bb65"}[e]+".js",r.miniCssF=e=>"assets/css/styles.6aa5c4cf.css",r.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),r.o=(e,d)=>Object.prototype.hasOwnProperty.call(e,d),f={},c="website:",r.l=(e,d,a,b)=>{if(f[e])f[e].push(d);else{var t,o;if(void 0!==a)for(var n=document.getElementsByTagName("script"),i=0;i{t.onerror=t.onload=null,clearTimeout(u);var c=f[e];if(delete f[e],t.parentNode&&t.parentNode.removeChild(t),c&&c.forEach((e=>e(a))),d)return d(a)},u=setTimeout(l.bind(null,void 0,{type:"timeout",target:t}),12e4);t.onerror=l.bind(null,t.onerror),t.onload=l.bind(null,t.onload),o&&document.head.appendChild(t)}},r.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r.p="/volto-eea-design-system/",r.gca=function(e){return e={17896441:"7918",24202412:"5435",63791757:"2582",75066279:"9053",86298114:"2543","935f2afb":"53","3fc91083":"123",a64f9232:"296","323ff172":"432","8fd6869d":"554",c74413f4:"585",ca221c65:"596","56bbe726":"698","1e6d2369":"918","4442ee2e":"952","30e35848":"1129","9c235974":"1327","7ca1ae16":"1356","3508f21e":"1500","6c6ad4cd":"1704",f4f5dc73:"2099","0bef62f9":"2163",e9a55e4f:"2263","9a6dc4ea":"2282","686ae6d4":"2305",d61699b0:"2359",d9dbb717:"2438",a5822498:"2453","42e0342b":"2463",bdd5fc8f:"2672","9b6f4efd":"2678","06df40a2":"2853","398224d0":"2873","2d344845":"3018",f9ee06b1:"3166",b78356b1:"3293","1f485700":"3305","792760cc":"3412","860b2a9d":"3436","9e4087bc":"3608","39f50359":"3661",fe8a233d:"3808","77dd8181":"3822",a8b15fb1:"3902",aa38dcb9:"3934","8050142d":"4009",c4f5d8e4:"4195",f601d3af:"4419","1a10606c":"4521","76fe1567":"5294","54e4468f":"5386",a186f965:"5437","7e4403b7":"5886","046f8cb9":"6061",c3faf33a:"6196","41d5c757":"6245","1c178b4f":"6304",f8c0402f:"6515","23d147e2":"6570","8effdd7e":"6671",c7d85666:"6966",d727d0d1:"7098","671d942a":"7426",b0f56568:"7492","3aee128f":"7578","2d39cd59":"8027","85201c01":"8150","0b225811":"8362","627750f7":"8518","0a8b14be":"8635","072ed0e5":"9003","7810a5ba":"9110","6d890e16":"9173",b3c62368:"9184","6dda7ddb":"9213","797402ac":"9221",d6e43592:"9340",aed7c9bd:"9456","1be78505":"9514","224603d4":"9744","14eb3368":"9817"}[e]||e,r.p+r.u(e)},(()=>{var e={1303:0,532:0};r.f.j=(d,a)=>{var f=r.o(e,d)?e[d]:void 0;if(0!==f)if(f)a.push(f[2]);else if(/^(1303|532)$/.test(d))e[d]=0;else{var c=new Promise(((a,c)=>f=e[d]=[a,c]));a.push(f[2]=c);var b=r.p+r.u(d),t=new Error;r.l(b,(a=>{if(r.o(e,d)&&(0!==(f=e[d])&&(e[d]=void 0),f)){var c=a&&("load"===a.type?"missing":a.type),b=a&&a.target&&a.target.src;t.message="Loading chunk "+d+" failed.\n("+c+": "+b+")",t.name="ChunkLoadError",t.type=c,t.request=b,f[1](t)}}),"chunk-"+d,d)}},r.O.j=d=>0===e[d];var d=(d,a)=>{var f,c,b=a[0],t=a[1],o=a[2],n=0;if(b.some((d=>0!==e[d]))){for(f in t)r.o(t,f)&&(r.m[f]=t[f]);if(o)var i=o(r)}for(d&&d(a);n Archive | EEA Design System - +

      Archive

      Archive

      - + \ No newline at end of file diff --git a/docs/docs/category/components/index.html b/docs/docs/category/components/index.html index 5cad09faf4..d61e24d0c2 100644 --- a/docs/docs/category/components/index.html +++ b/docs/docs/category/components/index.html @@ -5,13 +5,13 @@ Components | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/category/forms/index.html b/docs/docs/category/forms/index.html index 4dcaed92f5..0841f74a89 100644 --- a/docs/docs/category/forms/index.html +++ b/docs/docs/category/forms/index.html @@ -5,13 +5,13 @@ Forms | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/category/guidelines/index.html b/docs/docs/category/guidelines/index.html index 1e94f4a3ff..cb7dbb9fa9 100644 --- a/docs/docs/category/guidelines/index.html +++ b/docs/docs/category/guidelines/index.html @@ -5,13 +5,13 @@ Guidelines | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/category/maps-and-charts/index.html b/docs/docs/category/maps-and-charts/index.html index 47f785001d..0039753330 100644 --- a/docs/docs/category/maps-and-charts/index.html +++ b/docs/docs/category/maps-and-charts/index.html @@ -5,13 +5,13 @@ Maps and charts | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/category/publications/index.html b/docs/docs/category/publications/index.html index 944d539011..6701fbab61 100644 --- a/docs/docs/category/publications/index.html +++ b/docs/docs/category/publications/index.html @@ -5,13 +5,13 @@ Publications | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/category/quotes/index.html b/docs/docs/category/quotes/index.html index 47900082a7..bc2e83a77d 100644 --- a/docs/docs/category/quotes/index.html +++ b/docs/docs/category/quotes/index.html @@ -5,13 +5,13 @@ Quotes | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/category/resources/index.html b/docs/docs/category/resources/index.html index 6df792cc28..6e210c3b0d 100644 --- a/docs/docs/category/resources/index.html +++ b/docs/docs/category/resources/index.html @@ -5,13 +5,13 @@ Resources | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/category/search/index.html b/docs/docs/category/search/index.html index 0ca8dfe947..3aeccd27ff 100644 --- a/docs/docs/category/search/index.html +++ b/docs/docs/category/search/index.html @@ -5,13 +5,13 @@ Search | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/category/templates/index.html b/docs/docs/category/templates/index.html index 41f7899b7a..681b34efff 100644 --- a/docs/docs/category/templates/index.html +++ b/docs/docs/category/templates/index.html @@ -5,13 +5,13 @@ Templates | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/category/utilities/index.html b/docs/docs/category/utilities/index.html index b4fc35d5f7..f730888b53 100644 --- a/docs/docs/category/utilities/index.html +++ b/docs/docs/category/utilities/index.html @@ -5,13 +5,13 @@ Utilities | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/category/visuals/index.html b/docs/docs/category/visuals/index.html index 71b15756aa..28021cb641 100644 --- a/docs/docs/category/visuals/index.html +++ b/docs/docs/category/visuals/index.html @@ -5,13 +5,13 @@ Visuals | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/category/web-content/index.html b/docs/docs/category/web-content/index.html index 6860d83d5d..aee1c5b752 100644 --- a/docs/docs/category/web-content/index.html +++ b/docs/docs/category/web-content/index.html @@ -5,13 +5,13 @@ Web content | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/category/web-development/index.html b/docs/docs/category/web-development/index.html index f0c0eae185..10046daeae 100644 --- a/docs/docs/category/web-development/index.html +++ b/docs/docs/category/web-development/index.html @@ -5,13 +5,13 @@ Web development | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/dataguide/intro/index.html b/docs/docs/dataguide/intro/index.html index d696e51dab..521d59ea55 100644 --- a/docs/docs/dataguide/intro/index.html +++ b/docs/docs/dataguide/intro/index.html @@ -5,13 +5,13 @@ Dos and don'ts | EEA Design System - +
      - + \ No newline at end of file diff --git a/docs/docs/intro/index.html b/docs/docs/intro/index.html index 0e20f811f4..20979c7b91 100644 --- a/docs/docs/intro/index.html +++ b/docs/docs/intro/index.html @@ -5,13 +5,13 @@ Introduction | EEA Design System - +

      Introduction

      We created the EEA Design System (EEA-DS) to standardize the visual language and user experience of the EEA’s online applications.

      This also allows us to be more effecient when creating online applications instead of reinventing the wheel over and over.

      EEA-DS was built by a multi-disciplinary team of developers, designers, UX researchers, writers and data scientists. Combining the expertise of all of these roles allowed us to create a design system with a wide range of elements and for various target users (Web Designer, Web Writer/Content manager, Web Developer and Data scientist).

      What is a design system?

      A design system is a catalogue of everything that makes up your digital product including user interface elements, writing style, guiding principles, coding standards, visual design, etc. using reusable components for easy development.

      All library elements are accompanied by:

      • documentation explaining what a component is and how it should be used
      • a visual demonstration
      • HTML/CSS code for implementation
      - + \ No newline at end of file diff --git a/docs/docs/pubguide/design/index.html b/docs/docs/pubguide/design/index.html index 974a875103..e60d77e7c5 100644 --- a/docs/docs/pubguide/design/index.html +++ b/docs/docs/pubguide/design/index.html @@ -5,14 +5,14 @@ Design guidelines | EEA Design System - +
      - + \ No newline at end of file diff --git a/docs/docs/pubguide/writing/index.html b/docs/docs/pubguide/writing/index.html index 32f120897d..d226f9cde1 100644 --- a/docs/docs/pubguide/writing/index.html +++ b/docs/docs/pubguide/writing/index.html @@ -5,13 +5,13 @@ Writing guidelines | EEA Design System - +
      - + \ No newline at end of file diff --git a/docs/docs/webcontent/intro/index.html b/docs/docs/webcontent/intro/index.html index 14e86ef82f..3b05ad0257 100644 --- a/docs/docs/webcontent/intro/index.html +++ b/docs/docs/webcontent/intro/index.html @@ -5,13 +5,13 @@ Guidelines | EEA Design System - +
      - + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Accordion/index.html b/docs/docs/webdev/Components/Accordion/index.html index fa41f23fdb..94973ca745 100644 --- a/docs/docs/webdev/Components/Accordion/index.html +++ b/docs/docs/webdev/Components/Accordion/index.html @@ -5,13 +5,13 @@ Accordion | EEA Design System - +

      Accordion

      The accordion component is used to generate vertically stacked content in a page. It is intended to save vertical space by hiding content, reducing scrolling.

      Accordions contain labels with the relevant information. Users can click on the accordion to read additional information. For this reason, accordion labels (collapsed state) should be as descriptive and concise as possible.

      Do's

      • use labels that are representative of the content inside the (initially hidden) container
      • order logically (such as 1st quarter, 2nd quarter, 3rd quarter, 4th quarter)
      • make sure this component is required in order to shorten the page

      Don'ts

      • don't use unless users will benefit from hidden information
      • don't use actionable items (i.e. forms, accordions, buttons, CTAs, etc.) or pictures in the content container as they will have decreased visibility
      • don't hide important information that should be present at all times
      • don't use long labels, ideally keep it to one line, maximum 2

      When to use

      • when you need to present multiple sections of content in a simple way on one page, without overwhelming the user (especially applicable to mobile)
      • when it’s not critical for every user to read every section of content, adding value
      • when you can make extensive and complex content easier to digest through descriptive labels

      When not to use

      • don't use when pages are short (reading time: under 3 minutes)
      • don't use when information would be better structured horizontally (does not need comparison between sections) - use tabs instead
      - + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Breadcrumb/index.html b/docs/docs/webdev/Components/Breadcrumb/index.html index 1fea4fa603..aac730e558 100644 --- a/docs/docs/webdev/Components/Breadcrumb/index.html +++ b/docs/docs/webdev/Components/Breadcrumb/index.html @@ -5,13 +5,13 @@ Breadcrumb | EEA Design System - +

      Breadcrumb

      The Breadcrumb informs the users on their current location relative to the homepage of the website and allows them to navigate to higher levels. It is a series links except the last item in the group, which is the current page.

      Do's

      • the first element of the breadcrumb must always be labelled "Home" and must link to the homepage of the actual site where the current user page is located

      Don'ts

      • use long labels which creates visual clutter
      • breadcrumb links cannot exceed 220px in length else they will be truncated

      When to use

      • if your website's navigational structure is a tree of more than 2 levels

      When not to use

      • if your website's navigational structure has less than 3 levels of depth
      - + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Buttons/index.html b/docs/docs/webdev/Components/Buttons/index.html index a35ffbaa81..e6aab4336d 100644 --- a/docs/docs/webdev/Components/Buttons/index.html +++ b/docs/docs/webdev/Components/Buttons/index.html @@ -5,13 +5,13 @@ Buttons | EEA Design System - +

      Buttons

      Buttons trigger an action in a web page. There are 4 variants of the button component with different levels of importance and usages.

      Primary Button

      Use for basic and successful actions. They direct the user’s attention to the primary action the application is suggesting that the user take.

      Do's

      • make sure the button‘s microcopy represents the action such as “Submit“ or “Register“
      • use an icon only when it is necessary
      • use to perform a new action, task, move to next step

      Don'ts

      • don't assign an action that should be assigned for a CTA (Call To Action) or other variations of buttons
      • don't use an icon when it is not relevant or necessary to the action

      When not to use

      • don't use for navigation
      • don't use for downloads
      • don't use when the primary action is negative - use secondary button
      • don't use when the action can't be undone, such as delete

      Secondary Button

      Use for medium-emphasis actions. They contain actions that are important but aren’t the primary action. They are used to indicate a secondary action that compliments a primary action or to reduce visual noise when there are many actions of equal importance on the page.

      Do's

      • ensure the button performs an action, such as "Cancel", "Delete," "Remove" or "Replace" as the secondary action next to the primary button
      • use an icon only when it is necessary

      Don'ts

      • don't use for primary positive actions – such as Submit, Send, Accept, Apply or navigation
      • don't use on its own
      • don't use for navigation
      • don't use an icon when it is not relevant or necessary to the action

      Inverted Button

      When to use

      • use inverted and inverted-green only on white or light color background
      • use inverted-dark only on dark background

      Use for low-emphasis actions or for buttons that could have a long length text. It can be grouped with other buttons or placed independently.

      When to use

      • use with low emphasis in a button group
      • use on pages/cards when the main focus should be the content and not the button
      • when there is a single action intended

      When not to use

      • do not use for navigation purpose
      - + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Callout/index.html b/docs/docs/webdev/Components/Callout/index.html index 44932f6efc..2af3973dca 100644 --- a/docs/docs/webdev/Components/Callout/index.html +++ b/docs/docs/webdev/Components/Callout/index.html @@ -5,13 +5,13 @@ Callout | EEA Design System - +

      Callout

      The callout component is used to capture users' attention of an excerpt, testimonial, or a quote cited from the article or other sources. The design style makes the quoted section more distinguishable than the rest of the content in the web page.

      Do's

      • always name the source of the quoted content
      • limit the quote to no longer than 80 characters
      • use the image variant to add a portrait of the quoted person

      Don'ts

      • do not apply more than two callout components on the webpage
      • for the image variant, do not use a photoshopped composition of images

      When to use

      • quoting something important

      When not to use

      • to emphasize text style
      - + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Cards/index.html b/docs/docs/webdev/Components/Cards/index.html index 2ccdfccb66..2987e140ec 100644 --- a/docs/docs/webdev/Components/Cards/index.html +++ b/docs/docs/webdev/Components/Cards/index.html @@ -5,14 +5,14 @@ Card | EEA Design System - +

      Card

      Cards component is used as an entry point to more detailed information. The component can include various sets of elements to serve users' specific needs.

      Do's

      • use cards to emphasize on contents
      • only display the most relevant information on each card illustration: card with a thumbnail, title, description
      • keep the amount of links on the cards as low as possible

      Don'ts

      • overuse cards
      • limit the amount of cards to small groups of items
      • limit to 3-4 cards within a row
      • display too many links on a cards, the main and ideally only action on card should remain to navigate to the content it represent

      When to use

      • browsing for information (as opposed to searching)

      • grouping heterogeneous types of content

      • allowing users to scan through content in small portions

        • to display structured content
        • to make information discoverable
      • the user goals that the card-based web design best responds to:

        • scrolling through
        • scanning through
        • browsing through

      When not to use

      • searching for information (as opposed to browsing)
      • on small screen display avoid using too many cards as they force users to scroll down and rely on their short-term memory. This creates a cognitive overload, a negative user experience
      - + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Comment/index.html b/docs/docs/webdev/Components/Comment/index.html index 76a3f81737..7ea553a96f 100644 --- a/docs/docs/webdev/Components/Comment/index.html +++ b/docs/docs/webdev/Components/Comment/index.html @@ -5,13 +5,13 @@ Comment | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Confirm/index.html b/docs/docs/webdev/Components/Confirm/index.html index 404cd55f47..55511a30ee 100644 --- a/docs/docs/webdev/Components/Confirm/index.html +++ b/docs/docs/webdev/Components/Confirm/index.html @@ -5,13 +5,13 @@ Confirm | EEA Design System - +

      Confirm

      A confirmation dialog asks users whether they are sure that they want to proceed with an action.

      Do’s

      • use a confirmation dialog before actions that cannot be undone
      • be specific and inform users about the consequence of their actions.

      Don’ts

      • do not use confirmation dialogs for routine actions
      • avoid giving confirmation dialogs a default Yes answer
      - + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Content/index.html b/docs/docs/webdev/Components/Content/index.html index e7ce48f8c3..1bf444276e 100644 --- a/docs/docs/webdev/Components/Content/index.html +++ b/docs/docs/webdev/Components/Content/index.html @@ -5,7 +5,7 @@ Content | EEA Design System - + @@ -18,7 +18,7 @@ Don’t indent paragraphs, use whitespace before. While most longform print design uses indented lines to distinguish paragraphs, it’s more conventional on the web to use unindented paragraphs separated by whitespace. Use at least 1em of whitespace between paragraphs. To properly separate paragraphs from one another, use the equivalent of one blank line of whitespace between them. Using more than 1.5em disturbs the flow of the text, and using less than 0.5em doesn’t provide enough separation. Headings should be closer to the text they introduce than the text that preceeds them. It’s important that headings are more visually connected to the text for which they’re the heading than the text of the previous section to reduce ambiguity and cognitive dissonance. Use at least 1.5 times the amount of whitespace above the heading as below it.

- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Divider/index.html b/docs/docs/webdev/Components/Divider/index.html index 391b281032..c80f146663 100644 --- a/docs/docs/webdev/Components/Divider/index.html +++ b/docs/docs/webdev/Components/Divider/index.html @@ -5,13 +5,13 @@ Divider | EEA Design System - +

Divider

Dividers are used throughout all types of design to establish content hierarchy and separate themes. Deceptively simple, they are one of the main contributors to our visual style.

Kinds of Visual Dividers

Talking about dividers, we can analyze them in two aspects: their appearance and their functions. Starting with the visual part, there are 4 basic and broadly used methods of dividing content in our user interfaces:

  • Lines

  • Color contrast

  • Negative space

  • Images

Lines have belonged to the top methods of separating the pieces of content since time immemorial, both in print production and in digital interfaces. They are recognized easily in this role, so users won’t need to think twice.

Don’ts

Too many lines can overload the screen with visual noise and create unnecessary visual tension. Use lines only if the content cannot be effectively divided in another way.

When to use

  • when whitespace is not enough of a separator

  • in lists, separate items to show they are individual and unrelated items when each item is long and otherwise difficult to scan

  • in layouts, when background color changes (e.g. from Gray 100 to White)

When not to use

  • for surrounding an item, use a border instead

  • for grouping content, use a card or table

Color Contrast is another effective type of visual divider. Contrast is one of the key factors influencing scannability and visual hierarchy of the page or screen. With all that, color contrast can effective separate different option, items, or interactive zones, that means work as a visual divider.

Negative space (aka white space) means empty space on the screen around and often inside the elements. Yet, empty does not mean passive or wasted: as well as any other element of the screen, it works supporting a positive user experience. Negative space is one of the most popular kinds of visual dividers, especially in interfaces built on the idea of minimalism and simplicity. Negative space turns into an effective and elegant visual divider that also let the interface to breathe and avoid clutter.

Images of all kinds present one more effective visual divider. In this role, they are especially popular in the interfaces with lots of text content pages. Photos, illustrations, 3D graphics, as well as animated images, help to balance the text content, increase scannability and readability levels, effectively divide the visual blocks, as well as add fun and emotional appeal.

- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Forms/Checkbox/index.html b/docs/docs/webdev/Components/Forms/Checkbox/index.html index fcebe13ca4..91e7a46421 100644 --- a/docs/docs/webdev/Components/Forms/Checkbox/index.html +++ b/docs/docs/webdev/Components/Forms/Checkbox/index.html @@ -5,13 +5,13 @@ Checkbox | EEA Design System - +

Checkbox

The checkbox is a form input for users to choose one or more options from the list of selections.

Dos

  • always make sure each checkbox has a short, distinct and indicative checkbox label
  • use checkbox labels as click targets (clicking the label will select that option)
  • arrange them vertically, in a single column layout
  • group related fields
  • order logically
  • indicate whether the input group is optional or mandatory
  • make use of helper text if there are further directions or hints the users may need in completing their goal
  • write specific and clear error messages, so users understand how to properly address and recover from the error

Don'ts

  • don't add them without grouping first, in a logical order
  • don't restrict the number of checkboxes that can be ticked at any time
  • don't nest elements under the checkbox - keep all the options on the same level

When to use

  • use in any situation where the input information is known to the organisation
  • when users need to select options or toggle settings
  • in forms with multiple non-exclusive options
  • in search filters
  • to turn a setting option on or off

When not to use

  • do not use it when you have mutually exclusive items
  • do not use it if the checkbox selection will perform an action
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Forms/Dropdown/index.html b/docs/docs/webdev/Components/Forms/Dropdown/index.html index 7b3205a992..a249b4f6d7 100644 --- a/docs/docs/webdev/Components/Forms/Dropdown/index.html +++ b/docs/docs/webdev/Components/Forms/Dropdown/index.html @@ -5,13 +5,13 @@ Dropdown | EEA Design System - +

Dropdown

Default single select

The select component, is a widget which displays a list of selectable items from which the user can select one values.

Do's

  • write short, distinct and indicative headings for the items listed inside the dropdown
  • use dropdown select menu labels as click targets (clicking the label will trigger the action)
  • indicate whether the input is optional
  • make use of helper text if there are further directions or hints the users may need in completing their goal (example: you must be a current resident of this country)
  • write specific and clear error message texts, so users understand how to address the error

Don'ts

  • don't use as navigation
  • don't use it for multi-select

When to use

  • when there are more than 5 options to select from

When not to use

  • when you want users to read all options
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Forms/Radio/index.html b/docs/docs/webdev/Components/Forms/Radio/index.html index a66a5d8bea..a84b75fd71 100644 --- a/docs/docs/webdev/Components/Forms/Radio/index.html +++ b/docs/docs/webdev/Components/Forms/Radio/index.html @@ -5,13 +5,13 @@ Radio | EEA Design System - +

Radio

Radio buttons provides a selection with two or more options. Only one option can be selected.

Do's

  • use labels as click targets (clicking the label will select that option)
  • group related fields
  • order logically (e.g. ages 18-25, ages 25-35, ages, 35-50, over 65)
  • indicate whether the input group is optional - if it's mandatory, have a neutral option (e.g. other, n/a) selected by default
  • make use of helper text if there are further directions or hints the users may need in completing their goal
  • write specific and clear error messages, so users understand how to address the error

Don'ts

  • don't add them without grouping first
  • don't nest elements under radio buttons - keep all the options on the same level

When to use

  • when you have under 10 items
  • when users need to select options or toggle settings, for example
  • in forms with multiple non-exclusive options (e.g. search filters)
  • only one selection can be made

When not to use

  • avoid when more than one option can be selected - use checkboxes instead
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Forms/TextArea/index.html b/docs/docs/webdev/Components/Forms/TextArea/index.html index 80479952bb..904bdd5959 100644 --- a/docs/docs/webdev/Components/Forms/TextArea/index.html +++ b/docs/docs/webdev/Components/Forms/TextArea/index.html @@ -5,13 +5,13 @@ Text Area | EEA Design System - +

Text Area

A text area is an input field allowing users to enter multiple lines of text. Use in any situation where the user needs to input a large, or unknown, amount of data.

Do's

  • allow copy/paste for ease of use
  • match the text field to the expected size of the input - make it wide enough for the user to see their entire entry
  • write specific and clear error message texts, so users understand how to address the error

Don'ts

  • don't use placeholder text in the text field - this may not be read by screen reading software, leading to accessibility issues
  • don't have a mandatory minimum input of characters
  • don't restrict the use of uncommon or special characters
  • don't disable copy and paste functions
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Forms/TextInput/index.html b/docs/docs/webdev/Components/Forms/TextInput/index.html index 34c1d5f26a..49684e3ac1 100644 --- a/docs/docs/webdev/Components/Forms/TextInput/index.html +++ b/docs/docs/webdev/Components/Forms/TextInput/index.html @@ -5,13 +5,13 @@ Text Input | EEA Design System - +

Text Input

A text field is an input that can be used on a form, sign-in or any place where data is requested from the user.

Do's

  • minimise the number of input fields - only ask for necessary information
  • arrange them vertically for better layout and readability
  • group related fields together
  • order input fields logically, matching real-world task succession and interactions
  • always label each text area with a short, descriptive title, placed above the text area
  • indicate whether the input field is optional or mandatory
  • make use of helper text if there are further directions or hints the users may need in completing their goal (example: Must be at least 6 characters and contain a number and a special character)
  • allow copy/paste for ease of use
  • if a character counter is necessary, place it below the text area
  • match the text field area to the expected size of the input - make it wide enough for the user to see their entire entry
  • write specific and descriptive error message for easy comprehension

Don'ts

  • don't use placeholder text in the text area - this may not be read by screen reading software, leading to accessibility issues
  • don't have a mandatory minimum input of characters
  • don't restrict the use of uncommon or special characters
  • don't disable copyand paste functions

When to use

  • use in any situation where the user needs to input limited amount of data (name, email address, age, etc)

When not to use

  • do not use where the user needs to input a large, or unknown amount of data
  • do not use when the user must respond with specific options which are known to the organisation
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Headings/index.html b/docs/docs/webdev/Components/Headings/index.html index 1b3f3de6de..7bcad8b4c5 100644 --- a/docs/docs/webdev/Components/Headings/index.html +++ b/docs/docs/webdev/Components/Headings/index.html @@ -5,13 +5,13 @@ Headings | EEA Design System - +

Headings

Effective headings are recognizable immediately, and help readers understand the flow of content on the page.

How to Use

  • employ visual contrast to make headings stand out. Headings need to appear separate from the rest of the content on the page
  • size matters: Headings should be big
  • use headings as titles. If we’re labeling a section of a website, the heading serves as the title for the section
  • be concise. Keep headings short. In some cases, it’s even okay to drop articles like “the” and “a,” as they can be assumed
  • not all headings should be bold
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Image/index.html b/docs/docs/webdev/Components/Image/index.html index 87b3d539d9..4342fc7e4f 100644 --- a/docs/docs/webdev/Components/Image/index.html +++ b/docs/docs/webdev/Components/Image/index.html @@ -5,13 +5,13 @@ Image | EEA Design System - +

Image

Images must have natural snapshots that show unique situations.

Do’s

  • use stylistic tools such as light, perspective, color, focus and composition to tell stories that are authentic and believable.
  • the content of the photographs should be positive, optimistic, natural, realistic, warm, and welcoming. Framing should be playful and feel spontaneous
  • use image copyrights to be respectful of the author’s ownership rights

Don’ts

  • do not use images that are too dark or do not have enough contrast
  • do not use overlaying gradients
  • images that are too static or that appear too symmetrical should not be used
  • do not use images that are over exposed or over saturated
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Inpage-Navigation/index.html b/docs/docs/webdev/Components/Inpage-Navigation/index.html index b90f5d99c4..0cb8fdca87 100644 --- a/docs/docs/webdev/Components/Inpage-Navigation/index.html +++ b/docs/docs/webdev/Components/Inpage-Navigation/index.html @@ -5,13 +5,13 @@ Inpage Navigation | EEA Design System - +

Inpage Navigation

A Back to Top button, which is a shortcut that allows users to quickly navigate to the top of the page.

When users get at the bottom of a really long page, they often will need to get back to the top to:

  • see the navigation menu and choose a new destination
  • access filtering and sorting features
  • enter or edit a query in the search box

When the page is really long (for example, because of infinite scrolling), it becomes too tedious to scroll back up through screens and screens of content. Hence the role of the Back to Top button.

Do's

  • use a 'Back to Top button' for pages that are longer than 4 screens. For relatively short page lengths, 'Back to Top links' are overkill
  • place a persistent 'Back to Top button' in the lower right side of the page. This is where people expect to see it. This position is out of the way, but noticeable. When the button is placed in a different place on the screen, it is often ignored
  • label the button 'Back to Top'. This phrase is most descriptive. An icon only (.e.g., an arrow pointing up) can be ambiguous and, depending on the graphical realization, may not convey the right meaning
  • keep the button small so it doesn’t cover important page elements. But, if you are on a touch screen, make it big enough so people can tap it
  • make the button stand out visually on the page rather than blend in. When Back to Top blends too much with the background content, users are less likely to notice and use it
  • consider delaying the appearance of a 'Back to Top' option until after users scroll a few pages and indicate that they want to scroll up (e.g., move the scroll bar up, flick up on the page). Thus, the button appears only when it is most likely needed, without covering up important parts of the screen the rest of the time
  • make the button stationary. Once it appears, don’t allow it to move. Moving elements cause major distractions, since the eye is automatically attracted to any movement on the screen
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Item/index.html b/docs/docs/webdev/Components/Item/index.html index 1b3b359d9b..4117d96a7f 100644 --- a/docs/docs/webdev/Components/Item/index.html +++ b/docs/docs/webdev/Components/Item/index.html @@ -5,13 +5,13 @@ Item | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Labeled-icons/index.html b/docs/docs/webdev/Components/Labeled-icons/index.html index 588a36ddc3..ea83dda6a3 100644 --- a/docs/docs/webdev/Components/Labeled-icons/index.html +++ b/docs/docs/webdev/Components/Labeled-icons/index.html @@ -5,13 +5,13 @@ Labeled icons | EEA Design System - +

Labeled icons

The labeled icons are used as a visual represenation of every available action below data products.

Do's

  • keep the labels as short as possible
  • always choose icons that the users can easily identify

Don'ts

  • don't use more than 5-6 labeled icons at once
  • dont use less than two in one row
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Labels/index.html b/docs/docs/webdev/Components/Labels/index.html index 2fdefbd155..db6d65d81b 100644 --- a/docs/docs/webdev/Components/Labels/index.html +++ b/docs/docs/webdev/Components/Labels/index.html @@ -5,13 +5,13 @@ Label | EEA Design System - +

Label

Labels are used to indicate the different states for items in a list. They bring supplementary meaning by adding an indicative state (label) that is visually distinct (background colour) from other elements.

Do's

  • keep the message consistent on a single list of items and express meaning based on the content in which it is being used (e.g. "canceled" for events)
  • keep the label succinct (1-2 words)

Don'ts

  • don't use 2 labels at the same time (in one list)

When to use

  • when you have items in a list with multiple states (e.g. featured item & generic list item; canceled, rescheduled & upcoming event)

When not to use

  • when all items in a list have the same state (e.g. search list items)
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Lists/index.html b/docs/docs/webdev/Components/Lists/index.html index 30b7eb87a6..e6a20d6e46 100644 --- a/docs/docs/webdev/Components/Lists/index.html +++ b/docs/docs/webdev/Components/Lists/index.html @@ -5,13 +5,13 @@ List | EEA Design System - +

List

Used to present chunks of information in a concise and scannable way, lists help to organise content related to a single topic, grouping together a set of items or text options.

Ordered lists

Ordered lists display a set of items in a sequential and logical order, indicated by a number in front of the label. Common use cases include counting, ranking or sequencing, but can be used in everything that has a hierarchy. Different list styles can be applied to list items, like numbers, roman numerals or letters, which can be used interchangeably when nesting (e.g. nested item 1 & 2 under item 3).

Do's

  • make sure the items are placed in hierarchical order so that the relation, rank or order is obvious to the user
  • indicate the external links, if linking to any pages external to the EEA
  • for easy to read purpose, try to use labels that are relatively consistent in characters & width

Don'ts

  • do not nest lists deeper than 3 levels

When to use

  • use ordered lists when you need to display items in a specific order or to indicate hierarchy

When not to use

  • do not use it for navigation purpose
  • do not use it when all items have equal value or importance
  • do not use when you have one or more overarching categories that require descriptions

Unordered list

Unordered lists are used to group related content without any particular order, with bullet points placed in front of the labels. Common use cases are much broader than ordered lists. They are used for a set of items that can be arranged in any specific order. Different bullet list styles are available to unordered list items, such as disc, circle, square or hyphen when nesting (eg. 2 sub-points under point 2).

Do's

  • indicate the external links, if linking to any pages external to the EEA
  • for easy to read purpose, try to use labels that are relatively consistent in characters & width

Don'ts

  • do not nest lists deeper than 3 levels in order to avoid clutters

When to use

  • use it when you need to display items that do not have a specific order or hierarchy

When not to use

  • do not use it for navigation purpose
  • do not use it when items can be ranked, counted or sequenced
  • do not use when you have one or more overarching categories or terms require descriptions

Description lists

Description lists are used to display and organise content with a descriptions. Common use cases include glossary, or a list of speakers with their biographies.

Do's

  • keep label short and meaningful
  • order logically according to their hierarchy, significance and degree of relatedness
  • avoid using long sentences
  • try to use labels that are relatively consistent in characters & width
  • add a meaningful description or explanation of each term

Don'ts

  • do not use an active voice
  • do not nest description lists

When to use

  • use a description list when the terms in the list require a specific description or explanation
  • on content pages to add additional information(such as latest update on the content of a page) or link to pages of interest

When not to use

  • do not use it for navigation purpose
  • do not use it when items can be ranked, counted or sequenced
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Loader/index.html b/docs/docs/webdev/Components/Loader/index.html index bea05dc4a7..a080636d58 100644 --- a/docs/docs/webdev/Components/Loader/index.html +++ b/docs/docs/webdev/Components/Loader/index.html @@ -5,13 +5,13 @@ Loader | EEA Design System - +

Loader

Loaders can be used to indicate progress on long actions/waits which meet some or preferably all of these characteristics:

  • the action/wait is blocking user flow. That is, it's difficult or impossible for the user to proceed with the flow she is on without waiting.

    • e.g. The user asked a question and the answer is being retrieved from a server

    • e.g. The user scrolled to the bottom of page feed and new content is being loaded

  • the action is long enough that a user may feel anxious if there is no indication of progress. For short actions or waits having a short-lived throbber is not a great idea because it can confuse users

  • it's difficult or impossible to indicate exact progress. If it's possible to indicate progress (eg percentage complete) then progress bars or widgets are more appropriately communicative and less likely to frustrate users

Dont ‘s

Do not use it for actions that take less than 1 sec.

- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Logo/index.html b/docs/docs/webdev/Components/Logo/index.html index 748dc86586..4aef6208c5 100644 --- a/docs/docs/webdev/Components/Logo/index.html +++ b/docs/docs/webdev/Components/Logo/index.html @@ -5,13 +5,13 @@ Logo | EEA Design System - +

Logo

To ensure consistency, it is important that the EEA logo appears only in the colours specified in these guidelines.

When applying the logo to images ensure that it is against a light, uncluttered background.

To ensure logo's integrity and visibility, it must always be kept clear of competing text, images or graphic elements. It must be surrounded by a minimum clear space οf 16px as indicated below.

EEA LOGO - Dark version

The only time the white version of the EEA logo appears on is against the dark background of the footer.

- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Messages/index.html b/docs/docs/webdev/Components/Messages/index.html index 629f495e93..b3d1a9bbf7 100644 --- a/docs/docs/webdev/Components/Messages/index.html +++ b/docs/docs/webdev/Components/Messages/index.html @@ -5,13 +5,13 @@ Messages | EEA Design System - +

Messages

Messages component contains important information to alert users to take a certain actions.

Do's

  • keep the message brief and clear
  • use consistent messages for the same information/success/warning/error throughout your site

Don'ts

  • overuse messages - users may ignore them and they can get in the way of a user completing their task
  • write messages that are neutral. For example, instead of The postal code you entered is invalid, the message should say Please enter a valid postal code

When to use

  • when the information is essential to convey to the users in order to go to the next step
  • success message: the user has performed an action which was successfully completed
  • warning message: the user needs to know about the potential dangers of completing their task (for example: "you are about replace/erase your data")
  • error message: the user tried to perform an action that failed because of a problem (for example: a file could not be uploaded because it wasn't the correct type of file)

When not to use

  • don't use to show non critical information
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Modal/index.html b/docs/docs/webdev/Components/Modal/index.html index 7373469f5a..5c464af168 100644 --- a/docs/docs/webdev/Components/Modal/index.html +++ b/docs/docs/webdev/Components/Modal/index.html @@ -5,13 +5,13 @@ Modal | EEA Design System - +

Modal

Modals appear on top of the main content and require user interaction. This dialog disables the main content until the user explicitly interacts with the modal dialog.

Do’s

  • use modal dialogs for important warnings, to prevent or correct critical errors
  • use modal dialogs to request the user to enter information critical to continuing the current process
  • modal dialogs can be used to fragment a complex workflow into simpler steps

Don’ts

  • do not use modal dialogs for nonessential information that is not related to the current user flow
  • avoid modal dialogs that interrupt high-stake processes
  • avoid modal dialogues for complex decision making that require additional sources of information unavailable in the modal
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Pagination/index.html b/docs/docs/webdev/Components/Pagination/index.html index c9768682b0..f5bb88ca94 100644 --- a/docs/docs/webdev/Components/Pagination/index.html +++ b/docs/docs/webdev/Components/Pagination/index.html @@ -5,13 +5,13 @@ Pagination | EEA Design System - +

Pagination

Pagination component is the control to navigate through multiple pages.

Do's

  • place the pagination below the list of items

Don'ts

  • don't replace this component with an "infinite scrolling" feature

When to use

  • to show long lists otherwise redundant scrolling in one page

When not to use

  • don't use to break unrelated content on different pages
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Popup/index.html b/docs/docs/webdev/Components/Popup/index.html index 2bc0bf7fbf..6f20c8fada 100644 --- a/docs/docs/webdev/Components/Popup/index.html +++ b/docs/docs/webdev/Components/Popup/index.html @@ -5,14 +5,14 @@ Popup | EEA Design System - +

Popup

A popup (also known as an overlay) is a window or dialog that appears on top of the page content. A popup can be classified according to two dimensions:

  • whether the user can interact with the rest of the page, and it is called 'Modal' when the content on the page is disabled until the user explicitly interacts with the overlay or 'Nonmodal' when users can still interact with the background content (for example, by selecting links or tapping buttons) while the overlay remains visible
  • whether the background is dimmed the popup is called a 'Lightbox'

Do’s

  • present the content in the popup when it’s contextually relevant to the user
  • if you must present critical information (e.g., important warnings to prevent or correct errors) in a popup, be sure to show only one at a time

Don’ts

  • do not show a popup before the main page content loads
  • do not display a popup right after the user logs in
  • you should not ask for feedback before people have done anything meaningful
  • do not show multiple popups one after another
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Progress/index.html b/docs/docs/webdev/Components/Progress/index.html index 4f7ed36efa..4c32d99aad 100644 --- a/docs/docs/webdev/Components/Progress/index.html +++ b/docs/docs/webdev/Components/Progress/index.html @@ -5,13 +5,13 @@ Progress | EEA Design System - +

Progress

Progress indicators tell users that more time is needed to process the last user action (for instance, to load a file, or to install a new update), and how much time remains.

Do’s

  • use a progress indicator for any action that takes longer than about 1.0 second
  • use Looped animation only for fast actions. The animated-spinner icon is an example of this common progress indicator. This indicator should be used for actions that take between 2-10 seconds
  • percent-done animation: Use for actions that take 10 seconds or more.

Don’ts

  • do not use static progress indicators
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Quote/Quote/index.html b/docs/docs/webdev/Components/Quote/Quote/index.html index 377d7f69bd..198a912d90 100644 --- a/docs/docs/webdev/Components/Quote/Quote/index.html +++ b/docs/docs/webdev/Components/Quote/Quote/index.html @@ -5,13 +5,13 @@ Quote | EEA Design System - +

Quote

Quote is a key phrase, quotation, or excerpt that has been pulled from an article and used as a page layout graphic element, serving to entice readers into the article or to highlight a key topic.

Dont's

  • Do not use more than one quote per page
  • Do not use long text or job title
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Quote/Testimonial/index.html b/docs/docs/webdev/Components/Quote/Testimonial/index.html index 1a2043656a..168aebc5cc 100644 --- a/docs/docs/webdev/Components/Quote/Testimonial/index.html +++ b/docs/docs/webdev/Components/Quote/Testimonial/index.html @@ -5,13 +5,13 @@ Testimonial | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Search/Filters/index.html b/docs/docs/webdev/Components/Search/Filters/index.html index 9f4734b4c2..8224b1977b 100644 --- a/docs/docs/webdev/Components/Search/Filters/index.html +++ b/docs/docs/webdev/Components/Search/Filters/index.html @@ -5,13 +5,13 @@ Filters | EEA Design System - +

Filters

The filter options must cover the most important aspects of whatever users will be filtering, based on relevance to users’ needs.

To design a filter that serves our users, we need to answer the following questions:

  • which characteristics are most influential to users in making their choice?

  • what words do users use to describe these characteristics?

  • do users understand our labels, or do they look like jargon to them?

  • which filter values are the most popular or most used?

    How to use Search filters

  • make sure users can find the search filters:

    • on desktop, users tend to find and use them easily when they are placed to the top and top left area of the page
    • on mobile where usually they are behind a button or drawer Keep them at the top and don’t rely on just an icon. Remove any ambiguity by adding a label to the icon or removing the icon altogether and just have text
  • ensure the options are relevant to users. When it comes to filters, matching the user’s mental model of how they would choose something in the physical world, is important in helping them choose something on a website

  • clearly display the selections to users. Feedback is an important heuristic for the usability of a website. So, once users have found the filters, understood the options they have, and made their selections – it’s important to let them know their choices have been applied to the list of products

  • allow a combination of filters. A big part of filters’ effectiveness will come down to using a number of them at the same time, letting the filters interact to produce the best results

  • live filtering updates. Live update for filtering UIs is great because the user gets to immediately see the changed results they are getting

  • include a ‘Clear all’ interaction. Let the users clear all applied filters with one click to action

  • show the number of results. Another key element in communicating feedback is to display the number of results. This provides users with feedback as to how effective their input was to reduce the result list and save time

  • make Important filters easily found. Users often do not reach useful filters because they are hidden at the bottom of a long menu. Filters at the top of the menu are the most used ones

Don’ts

Do not use live filtering updates

  • on mobile devices. Their screens are simply too small to pack the results, filters, and the live update feedback, without a visual overload

  • when handling a lot of data. For users doing a lot of research, having to wait for the results to update after each individual filter would be simply unbearable

In this case let the user batch their filters and click on an apply button before any actual updating takes place.

- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Search/Searchbox/index.html b/docs/docs/webdev/Components/Search/Searchbox/index.html index 44329e18fa..f22413089f 100644 --- a/docs/docs/webdev/Components/Search/Searchbox/index.html +++ b/docs/docs/webdev/Components/Search/Searchbox/index.html @@ -5,13 +5,13 @@ Searchbox | EEA Design System - +

Searchbox

Search lets users assert independence from websites' attempt to direct how they use it. Therefore, many users go straight to the homepage search function.

Search is also users' escape hatch when they are stuck in navigation. When they cannot find a reasonable place to go next, they often turn to the site's search function. This is why you should make search available from every page on the site; you cannot predict where users will be when they decide they are lost.

Do's

  • use placeholder text. Placeholder text provides context as to what can be searched and describes the action of the input

  • use a magnifying glass icon. The magnifying glass is universally recognized as a symbol for search and one which users can easily identify

  • provide a button to submit search queries. Inputs should be accessible. Ensure users can return results using their keyboard as well as clicking a button or the magnifying glass icon

  • consider the search icon position. In most cases, it is beneficial to place the Icon to the right of placeholder text. This allows the Icon to act as the submit button and makes more sense hierarchically as queries are entered first, and results returned after

  • use input widths which are appropriate for the typical query length. The width of the Input field should be wide enough to contain the typical search query. If an Input field is too narrow, it results in scrolling and decreases usability. It is recommended to use a minimum width of 27 characters

- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Search/Suggestions/index.html b/docs/docs/webdev/Components/Search/Suggestions/index.html index de2d581ced..cee6a60eaf 100644 --- a/docs/docs/webdev/Components/Search/Suggestions/index.html +++ b/docs/docs/webdev/Components/Search/Suggestions/index.html @@ -5,13 +5,13 @@ Suggestions | EEA Design System - +

Suggestions

Auto-suggestion is a powerful tool that reduces data input. Typical users are very poor at query formulation: if they don’t get good results on the first try, later search attempts rarely succeed. When autocomplete suggestions work well, they help the user articulate better search queries.

Usage

  • ensure that auto-suggestions are useful. Poorly designed auto-suggestions can confuse and distract users. Thus, use spelling auto-corrections, recognition of root words, and predictive text in order to improve the tool

  • present less than 10 items in the list of suggestions (and without a scrollbar) so the information doesn’t become overwhelming

  • allow for keyboard navigation for the list of suggestions. Once a user scrolls down past the last item, they should return to the top of the list. The Esc key should allow users to exit the list

  • highlight differences between the inputted information and suggested information. For example, the input text might have a standard weight, while suggested terms are bolded

- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Segment/index.html b/docs/docs/webdev/Components/Segment/index.html index f90c6b41ba..9ba9ace3b6 100644 --- a/docs/docs/webdev/Components/Segment/index.html +++ b/docs/docs/webdev/Components/Segment/index.html @@ -5,13 +5,13 @@ Segment | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Statistic/index.html b/docs/docs/webdev/Components/Statistic/index.html index be73900a29..821a1a71c3 100644 --- a/docs/docs/webdev/Components/Statistic/index.html +++ b/docs/docs/webdev/Components/Statistic/index.html @@ -5,13 +5,13 @@ Statistic | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Tab/index.html b/docs/docs/webdev/Components/Tab/index.html index 2b0c95a999..cbd1ad37ff 100644 --- a/docs/docs/webdev/Components/Tab/index.html +++ b/docs/docs/webdev/Components/Tab/index.html @@ -5,14 +5,14 @@ Tab | EEA Design System - +

Tab

The tabs component lets users navigate between related sections of content, displaying one section at a time.

Do’s

Tabs can be useful for users to quickly switch between related information if:

  • your content can be usefully separated into sections
  • the first section is more relevant than the others for most users
  • users will not need to view all the sections at once

Don’ts

Tabs hide content from users and not everyone will notice them or understand how they work. Do not use tabs if your users might need to:

  • read all the content in order, for example, to understand a step-by-step process
  • compare information in different tabs

Having to memorize information and switch between tabs can be frustrating. Test your content without tabs first.

Consider if it is better to:

  • simplify and reduce the amount of content
  • split the content across multiple pages
  • keep the content on a single page, separated by headings
  • use a table of contents to let users navigate quickly to specific sections of content

Tab labels

  • use short tab labels to appear in a single row. In exceptions, they can use a second line if needed, with a tab max width of 250px. Alternatively, you can use scrollable tabs to allow room for longer titles
  • don’t truncate labels unless required, as truncated text can impede comprehension
  • tab labels should consist of 1 – 2 words: Labels on tabs should clearly describe their function or destination within 2 words at most. Constraining yourself to 1 – 2 words will also help you in thinking more about selecting the best words for your tab labels.
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Table/index.html b/docs/docs/webdev/Components/Table/index.html index 3ca322cd94..72231dd348 100644 --- a/docs/docs/webdev/Components/Table/index.html +++ b/docs/docs/webdev/Components/Table/index.html @@ -5,13 +5,13 @@ Table | EEA Design System - +

Table

Tables are used to structure complex data in an organised way that is more user friendly and discoverable.

Do's

  • reduce the table width to fit the content
  • align content left to right within cells
  • use a dash ( - ) in null data cells
  • adjusts the styling to render a small/large table

Don'ts

  • don't spell out numbers
  • don't use colour alone to convey information

When to use

  • use when you want to show structured information, or static data
  • use when you want to help users to compare information

When not to use

  • when you don't have any relationship among content you want to present
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Tags/index.html b/docs/docs/webdev/Components/Tags/index.html index 8cdc29439a..c195671f3e 100644 --- a/docs/docs/webdev/Components/Tags/index.html +++ b/docs/docs/webdev/Components/Tags/index.html @@ -5,13 +5,13 @@ Tags | EEA Design System - +

Tags

Labels, Tags, or Badges are all types of classification component that help to categorize, organize, and label elements. Tags are used to call attention to new or updated content.

Do's

  • use them to draw attention to new, important content. Tags can focus attention on important content on that might otherwise be missed
  • when needed to filter results with one or more tags
  • to indicate the number of new or unread items within a container. For example, to indicate the number of unread emails within a person’s inbox

Don'ts

  • if your tags aren’t interactive, disable hover, focus, and active styles
  • don’t mix interactive and static tags
  • don’t overdo it. If everything on a page is called out as important, nothing commands unique attention.
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Timeline/index.html b/docs/docs/webdev/Components/Timeline/index.html index 54b35ef629..2293c308cd 100644 --- a/docs/docs/webdev/Components/Timeline/index.html +++ b/docs/docs/webdev/Components/Timeline/index.html @@ -5,13 +5,13 @@ Timeline | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Visuals/Charts/index.html b/docs/docs/webdev/Components/Visuals/Charts/index.html index 22f44aec60..e18d301398 100644 --- a/docs/docs/webdev/Components/Visuals/Charts/index.html +++ b/docs/docs/webdev/Components/Visuals/Charts/index.html @@ -5,13 +5,13 @@ Charts | EEA Design System - +

Charts

Static and Interactive

Data accuracy and integrity come first. Don’t distort or confuse the information for embellishment or partiality. Emphasize clarity and transparency. Reduce cognitive load and focus on what matters. Every action, color, and visual element should support data insights and understanding.

More information can be referenced here https://www.eea.europa.eu/data-and-maps/daviz/learn-more/chart-dos-and-donts

Use the interactive chart if:

  • you want to give the user the possibility to visually filter data

  • you want the user to gain insights before filtering large datasets

Do not use the interactive chart if:

  • you want to visualize data without using it for filtering

  • you are not using the visual filter bar

- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Visuals/Dashboard/index.html b/docs/docs/webdev/Components/Visuals/Dashboard/index.html index 1133bb45b1..6e5c8afe00 100644 --- a/docs/docs/webdev/Components/Visuals/Dashboard/index.html +++ b/docs/docs/webdev/Components/Visuals/Dashboard/index.html @@ -5,13 +5,13 @@ Dashboard | EEA Design System - +

Dashboard

A good dashboard design means:

  • information available at the fingertip
  • metrics are clear
  • intuitive design
  • customizable
  • summarized data

Do’s

  • reside on a single screen
  • support the aims and objectives of the intended user
  • show what the underlying data means:  This can be done through adequate labelling, logical grouping of related visualisations and the use of clear statistical and verbal descriptions
  • summarise data and provide a means to dig deeper into the data 
  • make optimal use of the available space: Double your margins

Don’ts

  • don’t hide information or rely on interactions too much
  • don’t flood the user with data
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Visuals/Maps/index.html b/docs/docs/webdev/Components/Visuals/Maps/index.html index 2e6a451e3a..d52f6e1aa0 100644 --- a/docs/docs/webdev/Components/Visuals/Maps/index.html +++ b/docs/docs/webdev/Components/Visuals/Maps/index.html @@ -5,13 +5,13 @@ Maps | EEA Design System - +

Maps

Static

There are five main design principles in map design.

  • legibility
  • visual contrast
  • figure-ground organization
  • hierarchical organization, and
  • balance

Together these principles form a system for seeing and understanding the relative importance of the content in the map and on the page.

What are the qualities of a good map?

  • clear idea of what the map is trying to demonstrate
  • easy to interpret legend or key
  • good use of symbols to demonstrate a clear point
  • good sources/metadata
  • clear features not overcrowded

Styles

  • do not use underlined text! This is difficult for low-vision users to read and indicates a possible hyperlink
  • italics should be used as little as possible, for water labels and short labels only
  • bolding of fonts is a good way to call out features, but avoid it for continuous, readable text
  • although ALL CAPS labels stand out, they are harder to read and should be used sparingly

Map Objects

  • avoid overlapping points or annotations, when possible. Try to place them offset from a line
  • there should be visible whitespace between symbols; touching symbols blend together for users with low vision
  • there should be a 2x size difference in levels of information

Colors

  • use a limited color palette. Limited color palette works the best for all UIs, and map UI is not an exception. It’s much easier to create visual harmony with a limited color palette. You should use between 10 to 12 colors for a full-body color palette, depending on the complexity of your map. Choose colors for individuals with visual impairments such as color-blindness (i.e. don’t use red-green color schemes)
  • try to use the same hue for similar features. For example, features related to transportation (bus stops, railway stations, etc.) should share the same hue. The same hue will help users to decode visual elements without reading text, and this will help you to create a more cohesive UI.
  • always consider accessibility. Many people have limited color vision, so you also need to take this into account when selecting colors to ensure that you have a proper contrast ratio

Text

  • choose fonts that have a variety of styles, such as bold, extra bold, italic, bold italic light, etc to differentiate between different kinds of features on your map
  • use one version of fonts for the map body and one for the explainer text outside the map

Interactive Maps

Interactive maps are high risk, high reward. Highly interactive maps can be too difficult for new users, yet they can also allow users to learn and explore at their own pace. It is always important to test designs on multiple people with varying degrees of technical expertise to see how they interact differently with the layout. Interactive map design should reflect what the cartographer is trying to convey (beauty vs. function) and never sacrifice visual hierarchy or great styling for interactivity.

Tips for designing effective interactive maps:

  • simplify the interface
  • panels should be the minimum possible size so they don’t clutter the space
  • don’t innovate to the point where users don’t know what to do
  • use panel opacity and margins to help them blend with your basemap and look cohesive
  • leave space for the maps to be used on mobile devices. This means avoiding permanent panels

Pop-ups and markers

  • keep pop-ups concise
  • only one pop-up on the screen at a time (generally)
  • cluster markers for better readability
  • use a legend when you have multiple types of markers
  • remove unnecessary padding and margins from popups
  • use a slight shadow to “lift” pop-ups off the map
- + \ No newline at end of file diff --git a/docs/docs/webdev/Guidelines/colours/index.html b/docs/docs/webdev/Guidelines/colours/index.html index dbd746dea9..48580c0987 100644 --- a/docs/docs/webdev/Guidelines/colours/index.html +++ b/docs/docs/webdev/Guidelines/colours/index.html @@ -5,14 +5,14 @@ Colours | EEA Design System - +

Colours

Communication is key

Although we value an aesthetically pleasing use of colour, clear communication is our focus. We use colours to support the purpose of the content, communicating things like hierarchy of information, interactive states, and the difference between distinct elements.

Accessibility

Accessibility is crucial and AA colour contrast must be achieved. It is up to the designer to ensure these standards are met but please refer to the accessibility guide for support. The colour system is designed to generate themes that meet WCAG 2.1 compliant contrast ratios. This makes things easier to find, identify, and interact with. It also makes the whole experience more accessible for visitors who are colour blind or who have low vision. However, you should never convey information using colour alone.

Legend:
AA: Compatible with WCAG AA requirements
AAA: Compatible with WCAG AAA requirements
AA L: Compatible with WCAG AA requirements only for Large text (WCAG defines large text as text that is 18pt and larger, or 14pt and larger if it is bold.)

You can find more on WCAG requirements here

Brand Colours

This colour should be eye-catching but not harsh. It can be liberally applied to your layout as its main identity. A primary colour is the colour displayed most frequently across your screens and components. Brand colours are extracted from the EEA logo in order to help users to easily identify the brand.

#007B6C
EEA GREEN
#004B7F
EEA BLUE

Shades

#C8FFF8
#A0E5DC
#78CAC0
#50B0A4
#289588
#007B6C
#005248

#A0D7FF
#47B3FF
#0A99FF
#0083E0
#006BB8
#004B7F
#003052

Supplementary colours

These colours highlight or complement the primary colours. These are to be used sparingly to make the UI elements stand out. These colours can be used together together or separately.

#3D5265
AAA
#F9F9F9
AAA
ΕΕΑ main background colour is white but the secondary colours can also be used as background to compliment text elements or components.

You can use #F9F9F9 as background with #3D5265 text (10.44:1 AAA) or, you can use #3D5265 background with #F9F9F9 text (10.44:1 AAA)

Shades

#DAE8F4
#ACCAE5
#87A7C3
#6989A5
#4C677F
#3D5265
#2E3E4C

#FFFFFF
#F9F9F9
#E6E7E8
#BCBEC0
#747678
#323232
#000000

Core colours

#3D5265
Text colour
#FFFFFF
Background colour
#007B6C
Highlight
(EEA Green)
#006BB8
Default
#004B7F
Hover
#753AAD
Visited
#003052
Active

Discrete colours

#3D5265
Usually used with a small text style
#323232
Used with a background

State colours

These are the colours that communicate purpose. They help users convey messages. For example, Green has a positive connotation. We use Green to convey success, confirmation messages, etc.

#B83230
ERROR
#FF9933
WARNING
#007B6C
SUCCESS
#004B7F
INFO









Thematic Platforms

info

All thematic platforms use EEA Supplementary colours, state colours, link colours and discrete colours.


Biodiversity

Brand Colours

This colour should be eye-catching but not harsh. It can be liberally applied to your layout as its main identity. A primary colour is the colour displayed most frequently across your screens and components. Brand colours are extracted from the Biodiversity logo in order to help users to easily identify the brand.

#289588
#FAC50D

Shades

#C8FFF8
#A0E5DC
#78CAC0
#50B0A4
#289588
#007B6C
#005248

#FEF6CD
#FBEC9B
#FAD936
#FAC50D
#FDAF20
#FF9933
#C35527

Core colours

#3D5265
Text colour
#FFFFFF
Background colour
#005248
Elements
#289588
Highlight










Forest Information System

Brand Colours

This colour should be eye-catching but not harsh. It can be liberally applied to your layout as its main identity. A primary colour is the colour displayed most frequently across your screens and components. Brand colours are extracted from the Forest information system logo in order to help users to easily identify the brand.

#007B6C
#005248

Shades

#C8FFF8
#A0E5DC
#78CAC0
#50B0A4
#289588
#007B6C
#005248

Core colours

#3D5265
Text colour
#FFFFFF
Background colour
#005248
Elements
#007B6C
Highlight










Wise Freshwater

Brand Colours

This colour should be eye-catching but not harsh. It can be liberally applied to your layout as its main identity. A primary colour is the colour displayed most frequently across your screens and components. Brand colours are extracted from the Wise Freshwater logo in order to help users to easily identify the brand.

#0083E0
#004B7F

Shades

#A0D7FF
#47B3FF
#0A99FF
#0083E0
#006BB8
#004B7F
#003052

Core colours

#3D5265
Text colour
#FFFFFF
Background colour
#0083E0
Elements
#004B7F
Highlight










Wise Marine

Brand Colours

This colour should be eye-catching but not harsh. It can be liberally applied to your layout as its main identity. A primary colour is the colour displayed most frequently across your screens and components. Brand colours are extracted from the Wise Marine logo in order to help users to easily identify the brand.

#004B7F
#0083E0

Shades

#A0D7FF
#47B3FF
#0A99FF
#0083E0
#006BB8
#004B7F
#003052

Core colours

#3D5265
Text colour
#FFFFFF
Background colour
#0083E0
Elements
#004B7F
Highlight









EEA complete colour palette

Not all colours have to be used - sometimes a simple colour scheme works best. Accessible text and background colour combinations are included and marked with their accesibility level.

#FFF6EC
brown-0
#FFEDD8
brown-1
#E7BC91
brown-2
#BC8A5F
brown-3
#8B5E34
brown-4
#603808
brown-5
#3D2201
brown-6

#EFEBF2
purple-0
#DFD6E7
purple-1
#BEADCE
purple-2
#9E84B6
purple-3
#753AAD
purple-4
#5C3285
purple-5
#3C096C
purple-6
#FBEEF8
red-0
#F6DDF0
red-1
#E7B2C0
red-2
#D78890
red-3
#C65B59
red-4
#B83230
red-5
#5C1918
red-6

#FEF6CD
yellow-0
#FBEC9B
yellow-1
#FAD936
yellow-2
#FAC50D
yellow-3
#FDAF20
yellow-4
#FF9933
yellow-5
#C35527
yellow-6
#C8FFF8
green-0
#A0E5DC
green-1
#78CAC0
green-2
#50B0A4
green-3
#289588
green-4
#007B6C
green-5
#005248
green-6

#A0D7FF
blue-0
#47B3FF
blue-1
#0A99FF
blue-2
#0083E0
blue-3
#006BB8
blue-4
#004B7F
blue-5
#003052
blue-6
#DAE8F4
blue-grey-0
#ACCAE5
blue-grey-1
#87A7C3
blue-grey-2
#6989A5
blue-grey-3
#4C677F
blue-grey-4
#3D5265
blue-grey-5
#2E3E4C
blue-grey-6

#FFFFFF
grey-0
#F9F9F9
grey-1
#E6E7E8
grey-2
#BCBEC0
grey-3
#747678
grey-4
#323232
grey-5
#000000
grey-6

Tools for creating colour palettes

You can use the following tools for creating colour wheels and additional shades for every main colour at each of EEA's network sites.

https://color.adobe.com/create/color-wheel

https://coolors.co/

Colours for maps

For optional creation of additional colour shades to use in maps and charts you can use the following tools.

https://colorbrewer2.org

https://carto.com/carto-colors/

- + \ No newline at end of file diff --git a/docs/docs/webdev/Guidelines/iconography/index.html b/docs/docs/webdev/Guidelines/iconography/index.html index 505f325596..3487a0d007 100644 --- a/docs/docs/webdev/Guidelines/iconography/index.html +++ b/docs/docs/webdev/Guidelines/iconography/index.html @@ -5,14 +5,14 @@ Iconography | EEA Design System - +

Iconography

In our websites we use the Remix icon set

Remix Icon is a set of open-source neutral-style system symbols elaborately crafted for designers and developers. All of the icons are free for both personal and commercial use. (http://remixicon.com/)

We use icons to help our users understand the core idea of the content quickly or enhance the aesthetic appeal of the interface.

Consistency is key with icons, and all your icons should be the same size when you build them. Our grid is based on 8s, you'd want to build at 16, 24, or 32.

Choose a common size to build all your icons to, and then allow your engineers to scale to other sizes that might be needed by other designers. You don't want to build the same icon over and over at a multitude of sizes.

For product icons, use 1 color. Anything more than that and your components are going to become too complex and difficult for other designers to leverage. Anything with 3 or more colors is an illustration, not an icon.

Grids

The pixel grid is the fundamental grid that uses the smallest increment: a pixel. When building icons, you always want to align objects to the pixel grid, especially straight lines. But, you can build other shapes on the pixel grid. You want to build things on the pixel grid, not just because it will render more nicely, but because it makes your life easier. Spacing things evenly is much easier when you're using a grid. It helps you stay consistent with your placement, and overall will make your icons look better.

The optical grid helps us figure out where the center of mass of the icon is, as well as how large it is perceived by the human eye. Circles and curved objects take up less visual space than squares. It is best to put your icons in a fixed size container so that they’re all identical dimensions when exported. Adding this intrinsic padding supports the optical/perceptive weighting without additional effort in dev later.

In building the optical grid, you should give padding at the edge that’s equal to your stroke weight, or possibly double if using a 1px stroke.

Strokes and fills

Making sure our icons are all styled the same way is very important. We might have use cases for applying a fill to show something is selected, for instance, but you definitely want to create a set with one style, and possibly create the other variant.

Typically, filled icons have higher recognizability. Stroked icons give us great ability to create tiny details. When choosing which style is more appropriate, you should also consider your overall brand.

If you're going to create stroked icons, strokes all need to be the same weight. The space between strokes not be thinner than your stroke weight.

Don’ts

When possible, avoid type in icons. Icons are meant to be global. If you do need type (for instance, currency symbols), draw it yourself, rather than using a typeface.

Icon set

ri-home-line

ri-home-fill

ri-home-2-line

ri-home-2-fill

ri-home-3-line

ri-home-3-fill

ri-home-4-line

ri-home-4-fill

ri-home-5-line

ri-home-5-fill

ri-home-6-line

ri-home-6-fill

ri-home-7-line

ri-home-7-fill

ri-home-8-line

ri-home-8-fill

ri-home-gear-line

ri-home-gear-fill

ri-home-wifi-line

ri-home-wifi-fill

ri-home-smile-line

ri-home-smile-fill

ri-home-smile-2-line

ri-home-smile-2-fill

ri-home-heart-line

ri-home-heart-fill

ri-building-line

ri-building-fill

ri-building-2-line

ri-building-2-fill

ri-building-3-line

ri-building-3-fill

ri-building-4-line

ri-building-4-fill

ri-hotel-line

ri-hotel-fill

ri-community-line

ri-community-fill

ri-government-line

ri-government-fill

ri-bank-line

ri-bank-fill

ri-store-line

ri-store-fill

ri-store-2-line

ri-store-2-fill

ri-store-3-line

ri-store-3-fill

ri-hospital-line

ri-hospital-fill

ri-ancient-gate-line

ri-ancient-gate-fill

ri-ancient-pavilion-line

ri-ancient-pavilion-fill

Buildings

ri-mail-line

ri-mail-fill

ri-mail-open-line

ri-mail-open-fill

ri-mail-send-line

ri-mail-send-fill

ri-mail-unread-line

ri-mail-unread-fill

ri-mail-add-line

ri-mail-add-fill

ri-mail-check-line

ri-mail-check-fill

ri-mail-close-line

ri-mail-close-fill

ri-mail-download-line

ri-mail-download-fill

ri-mail-forbid-line

ri-mail-forbid-fill

ri-mail-lock-line

ri-mail-lock-fill

ri-mail-settings-line

ri-mail-settings-fill

ri-mail-star-line

ri-mail-star-fill

ri-mail-volume-line

ri-mail-volume-fill

ri-inbox-line

ri-inbox-fill

ri-inbox-archive-line

ri-inbox-archive-fill

ri-inbox-unarchive-line

ri-inbox-unarchive-fill

ri-cloud-line

ri-cloud-fill

ri-cloud-off-line

ri-cloud-off-fill

ri-attachment-line

ri-attachment-fill

ri-profile-line

ri-profile-fill

ri-archive-line

ri-archive-fill

ri-archive-drawer-line

ri-archive-drawer-fill

ri-at-line

ri-at-fill

ri-award-line

ri-award-fill

ri-medal-line

ri-medal-fill

ri-medal-2-line

ri-medal-2-fill

ri-bar-chart-line

ri-bar-chart-fill

ri-bar-chart-horizontal-line

ri-bar-chart-horizontal-fill

ri-bar-chart-2-line

ri-bar-chart-2-fill

ri-bar-chart-box-line

ri-bar-chart-box-fill

ri-bar-chart-grouped-line

ri-bar-chart-grouped-fill

ri-bubble-chart-line

ri-bubble-chart-fill

ri-pie-chart-line

ri-pie-chart-fill

ri-pie-chart-2-line

ri-pie-chart-2-fill

ri-pie-chart-box-line

ri-pie-chart-box-fill

ri-donut-chart-line

ri-donut-chart-fill

ri-line-chart-line

ri-line-chart-fill

ri-bookmark-line

ri-bookmark-fill

ri-bookmark-2-line

ri-bookmark-2-fill

ri-bookmark-3-line

ri-bookmark-3-fill

ri-briefcase-line

ri-briefcase-fill

ri-briefcase-2-line

ri-briefcase-2-fill

ri-briefcase-3-line

ri-briefcase-3-fill

ri-briefcase-4-line

ri-briefcase-4-fill

ri-briefcase-5-line

ri-briefcase-5-fill

ri-calculator-line

ri-calculator-fill

ri-calendar-line

ri-calendar-fill

ri-calendar-2-line

ri-calendar-2-fill

ri-calendar-event-line

ri-calendar-event-fill

ri-calendar-todo-line

ri-calendar-todo-fill

ri-calendar-check-line

ri-calendar-check-fill

ri-customer-service-line

ri-customer-service-fill

ri-customer-service-2-line

ri-customer-service-2-fill

ri-flag-line

ri-flag-fill

ri-flag-2-line

ri-flag-2-fill

ri-global-line

ri-global-fill

ri-honour-line

ri-honour-fill

ri-links-line

ri-links-fill

ri-printer-line

ri-printer-fill

ri-printer-cloud-line

ri-printer-cloud-fill

ri-record-mail-line

ri-record-mail-fill

ri-reply-line

ri-reply-fill

ri-reply-all-line

ri-reply-all-fill

ri-send-plane-line

ri-send-plane-fill

ri-send-plane-2-line

ri-send-plane-2-fill

ri-projector-line

ri-projector-fill

ri-projector-2-line

ri-projector-2-fill

ri-slideshow-line

ri-slideshow-fill

ri-slideshow-2-line

ri-slideshow-2-fill

ri-slideshow-3-line

ri-slideshow-3-fill

ri-slideshow-4-line

ri-slideshow-4-fill

ri-window-line

ri-window-fill

ri-window-2-line

ri-window-2-fill

ri-stack-line

ri-stack-fill

ri-service-line

ri-service-fill

ri-registered-line

ri-registered-fill

ri-trademark-line

ri-trademark-fill

ri-advertisement-line

ri-advertisement-fill

ri-copyleft-line

ri-copyleft-fill

ri-copyright-line

ri-copyright-fill

ri-creative-commons-line

ri-creative-commons-fill

ri-creative-commons-by-line

ri-creative-commons-by-fill

ri-creative-commons-nc-line

ri-creative-commons-nc-fill

ri-creative-commons-nd-line

ri-creative-commons-nd-fill

ri-creative-commons-sa-line

ri-creative-commons-sa-fill

ri-creative-commons-zero-line

ri-creative-commons-zero-fill

Business

ri-chat-1-line

ri-chat-1-fill

ri-chat-2-line

ri-chat-2-fill

ri-chat-3-line

ri-chat-3-fill

ri-chat-4-line

ri-chat-4-fill

ri-message-line

ri-message-fill

ri-message-2-line

ri-message-2-fill

ri-message-3-line

ri-message-3-fill

ri-chat-check-line

ri-chat-check-fill

ri-chat-delete-line

ri-chat-delete-fill

ri-chat-forward-line

ri-chat-forward-fill

ri-chat-upload-line

ri-chat-upload-fill

ri-chat-download-line

ri-chat-download-fill

ri-chat-new-line

ri-chat-new-fill

ri-chat-settings-line

ri-chat-settings-fill

ri-chat-smile-line

ri-chat-smile-fill

ri-chat-smile-2-line

ri-chat-smile-2-fill

ri-chat-smile-3-line

ri-chat-smile-3-fill

ri-chat-heart-line

ri-chat-heart-fill

ri-chat-off-line

ri-chat-off-fill

ri-feedback-line

ri-feedback-fill

ri-discuss-line

ri-discuss-fill

ri-question-answer-line

ri-question-answer-fill

ri-questionnaire-line

ri-questionnaire-fill

ri-video-chat-line

ri-video-chat-fill

ri-chat-voice-line

ri-chat-voice-fill

ri-chat-quote-line

ri-chat-quote-fill

ri-chat-follow-up-line

ri-chat-follow-up-fill

ri-chat-poll-line

ri-chat-poll-fill

ri-chat-history-line

ri-chat-history-fill

ri-chat-private-line

ri-chat-private-fill

Communication

ri-pencil-line

ri-pencil-fill

ri-edit-line

ri-edit-fill

ri-edit-2-line

ri-edit-2-fill

ri-ball-pen-line

ri-ball-pen-fill

ri-quill-pen-line

ri-quill-pen-fill

ri-pen-nib-line

ri-pen-nib-fill

ri-ink-bottle-line

ri-ink-bottle-fill

ri-mark-pen-line

ri-mark-pen-fill

ri-markup-line

ri-markup-fill

ri-edit-box-line

ri-edit-box-fill

ri-edit-circle-line

ri-edit-circle-fill

ri-sip-line

ri-sip-fill

ri-brush-line

ri-brush-fill

ri-brush-2-line

ri-brush-2-fill

ri-brush-3-line

ri-brush-3-fill

ri-brush-4-line

ri-brush-4-fill

ri-paint-brush-line

ri-paint-brush-fill

ri-contrast-line

ri-contrast-fill

ri-contrast-2-line

ri-contrast-2-fill

ri-drop-line

ri-drop-fill

ri-blur-off-line

ri-blur-off-fill

ri-contrast-drop-line

ri-contrast-drop-fill

ri-contrast-drop-2-line

ri-contrast-drop-2-fill

ri-compasses-line

ri-compasses-fill

ri-compasses-2-line

ri-compasses-2-fill

ri-scissors-line

ri-scissors-fill

ri-scissors-cut-line

ri-scissors-cut-fill

ri-scissors-2-line

ri-scissors-2-fill

ri-slice-line

ri-slice-fill

ri-eraser-line

ri-eraser-fill

ri-ruler-line

ri-ruler-fill

ri-ruler-2-line

ri-ruler-2-fill

ri-pencil-ruler-line

ri-pencil-ruler-fill

ri-pencil-ruler-2-line

ri-pencil-ruler-2-fill

ri-t-box-line

ri-t-box-fill

ri-input-method-line

ri-input-method-fill

ri-artboard-line

ri-artboard-fill

ri-artboard-2-line

ri-artboard-2-fill

ri-crop-line

ri-crop-fill

ri-crop-2-line

ri-crop-2-fill

ri-screenshot-line

ri-screenshot-fill

ri-screenshot-2-line

ri-screenshot-2-fill

ri-drag-move-line

ri-drag-move-fill

ri-drag-move-2-line

ri-drag-move-2-fill

ri-focus-line

ri-focus-fill

ri-focus-2-line

ri-focus-2-fill

ri-focus-3-line

ri-focus-3-fill

ri-paint-line

ri-paint-fill

ri-palette-line

ri-palette-fill

ri-pantone-line

ri-pantone-fill

ri-shape-line

ri-shape-fill

ri-shape-2-line

ri-shape-2-fill

ri-magic-line

ri-magic-fill

ri-anticlockwise-line

ri-anticlockwise-fill

ri-anticlockwise-2-line

ri-anticlockwise-2-fill

ri-clockwise-line

ri-clockwise-fill

ri-clockwise-2-line

ri-clockwise-2-fill

ri-hammer-line

ri-hammer-fill

ri-tools-line

ri-tools-fill

ri-drag-drop-line

ri-drag-drop-fill

ri-table-line

ri-table-fill

ri-table-alt-line

ri-table-alt-fill

ri-layout-line

ri-layout-fill

ri-layout-2-line

ri-layout-2-fill

ri-layout-3-line

ri-layout-3-fill

ri-layout-4-line

ri-layout-4-fill

ri-layout-5-line

ri-layout-5-fill

ri-layout-6-line

ri-layout-6-fill

ri-layout-column-line

ri-layout-column-fill

ri-layout-row-line

ri-layout-row-fill

ri-layout-top-line

ri-layout-top-fill

ri-layout-right-line

ri-layout-right-fill

ri-layout-bottom-line

ri-layout-bottom-fill

ri-layout-left-line

ri-layout-left-fill

ri-layout-top-2-line

ri-layout-top-2-fill

ri-layout-right-2-line

ri-layout-right-2-fill

ri-layout-bottom-2-line

ri-layout-bottom-2-fill

ri-layout-left-2-line

ri-layout-left-2-fill

ri-layout-grid-line

ri-layout-grid-fill

ri-layout-masonry-line

ri-layout-masonry-fill

ri-collage-line

ri-collage-fill

ri-grid-line

ri-grid-fill

Design

ri-bug-line

ri-bug-fill

ri-bug-2-line

ri-bug-2-fill

ri-code-line

ri-code-fill

ri-code-s-line

ri-code-s-fill

ri-code-s-slash-line

ri-code-s-slash-fill

ri-code-box-line

ri-code-box-fill

ri-terminal-box-line

ri-terminal-box-fill

ri-terminal-line

ri-terminal-fill

ri-terminal-window-line

ri-terminal-window-fill

ri-parentheses-line

ri-parentheses-fill

ri-brackets-line

ri-brackets-fill

ri-braces-line

ri-braces-fill

ri-command-line

ri-command-fill

ri-cursor-line

ri-cursor-fill

ri-git-commit-line

ri-git-commit-fill

ri-git-pull-request-line

ri-git-pull-request-fill

ri-git-merge-line

ri-git-merge-fill

ri-git-branch-line

ri-git-branch-fill

ri-git-repository-line

ri-git-repository-fill

ri-git-repository-commits-line

ri-git-repository-commits-fill

ri-git-repository-private-line

ri-git-repository-private-fill

ri-html5-line

ri-html5-fill

ri-css3-line

ri-css3-fill

Development

ri-tv-line

ri-tv-fill

ri-tv-2-line

ri-tv-2-fill

ri-computer-line

ri-computer-fill

ri-mac-line

ri-mac-fill

ri-macbook-line

ri-macbook-fill

ri-cellphone-line

ri-cellphone-fill

ri-smartphone-line

ri-smartphone-fill

ri-tablet-line

ri-tablet-fill

ri-device-line

ri-device-fill

ri-phone-line

ri-phone-fill

ri-database-line

ri-database-fill

ri-database-2-line

ri-database-2-fill

ri-server-line

ri-server-fill

ri-hard-drive-line

ri-hard-drive-fill

ri-hard-drive-2-line

ri-hard-drive-2-fill

ri-install-line

ri-install-fill

ri-uninstall-line

ri-uninstall-fill

ri-save-line

ri-save-fill

ri-save-2-line

ri-save-2-fill

ri-save-3-line

ri-save-3-fill

ri-sd-card-line

ri-sd-card-fill

ri-sd-card-mini-line

ri-sd-card-mini-fill

ri-sim-card-line

ri-sim-card-fill

ri-sim-card-2-line

ri-sim-card-2-fill

ri-dual-sim-1-line

ri-dual-sim-1-fill

ri-dual-sim-2-line

ri-dual-sim-2-fill

ri-u-disk-line

ri-u-disk-fill

ri-battery-line

ri-battery-fill

ri-battery-charge-line

ri-battery-charge-fill

ri-battery-low-line

ri-battery-low-fill

ri-battery-2-line

ri-battery-2-fill

ri-battery-2-charge-line

ri-battery-2-charge-fill

ri-battery-saver-line

ri-battery-saver-fill

ri-battery-share-line

ri-battery-share-fill

ri-cast-line

ri-cast-fill

ri-airplay-line

ri-airplay-fill

ri-cpu-line

ri-cpu-fill

ri-gradienter-line

ri-gradienter-fill

ri-keyboard-line

ri-keyboard-fill

ri-keyboard-box-line

ri-keyboard-box-fill

ri-mouse-line

ri-mouse-fill

ri-sensor-line

ri-sensor-fill

ri-router-line

ri-router-fill

ri-radar-line

ri-radar-fill

ri-gamepad-line

ri-gamepad-fill

ri-remote-control-line

ri-remote-control-fill

ri-remote-control-2-line

ri-remote-control-2-fill

ri-device-recover-line

ri-device-recover-fill

ri-hotspot-line

ri-hotspot-fill

ri-phone-find-line

ri-phone-find-fill

ri-phone-lock-line

ri-phone-lock-fill

ri-rotate-lock-line

ri-rotate-lock-fill

ri-restart-line

ri-restart-fill

ri-shut-down-line

ri-shut-down-fill

ri-fingerprint-line

ri-fingerprint-fill

ri-fingerprint-2-line

ri-fingerprint-2-fill

ri-barcode-line

ri-barcode-fill

ri-barcode-box-line

ri-barcode-box-fill

ri-qr-code-line

ri-qr-code-fill

ri-qr-scan-line

ri-qr-scan-fill

ri-qr-scan-2-line

ri-qr-scan-2-fill

ri-scan-line

ri-scan-fill

ri-scan-2-line

ri-scan-2-fill

ri-rss-line

ri-rss-fill

ri-gps-line

ri-gps-fill

ri-base-station-line

ri-base-station-fill

ri-bluetooth-line

ri-bluetooth-fill

ri-bluetooth-connect-line

ri-bluetooth-connect-fill

ri-wifi-line

ri-wifi-fill

ri-wifi-off-line

ri-wifi-off-fill

ri-signal-wifi-line

ri-signal-wifi-fill

ri-signal-wifi-1-line

ri-signal-wifi-1-fill

ri-signal-wifi-2-line

ri-signal-wifi-2-fill

ri-signal-wifi-3-line

ri-signal-wifi-3-fill

ri-signal-wifi-error-line

ri-signal-wifi-error-fill

ri-signal-wifi-off-line

ri-signal-wifi-off-fill

ri-wireless-charging-line

ri-wireless-charging-fill

ri-dashboard-2-line

ri-dashboard-2-fill

ri-dashboard-3-line

ri-dashboard-3-fill

ri-usb-line

ri-usb-fill

Device

ri-file-line

ri-file-fill

ri-file-2-line

ri-file-2-fill

ri-file-3-line

ri-file-3-fill

ri-file-4-line

ri-file-4-fill

ri-sticky-note-line

ri-sticky-note-fill

ri-sticky-note-2-line

ri-sticky-note-2-fill

ri-file-edit-line

ri-file-edit-fill

ri-draft-line

ri-draft-fill

ri-file-paper-line

ri-file-paper-fill

ri-file-paper-2-line

ri-file-paper-2-fill

ri-file-text-line

ri-file-text-fill

ri-file-list-line

ri-file-list-fill

ri-file-list-2-line

ri-file-list-2-fill

ri-file-list-3-line

ri-file-list-3-fill

ri-bill-line

ri-bill-fill

ri-file-copy-line

ri-file-copy-fill

ri-file-copy-2-line

ri-file-copy-2-fill

ri-clipboard-line

ri-clipboard-fill

ri-survey-line

ri-survey-fill

ri-article-line

ri-article-fill

ri-newspaper-line

ri-newspaper-fill

ri-file-zip-line

ri-file-zip-fill

ri-file-mark-line

ri-file-mark-fill

ri-task-line

ri-task-fill

ri-todo-line

ri-todo-fill

ri-book-line

ri-book-fill

ri-book-mark-line

ri-book-mark-fill

ri-book-2-line

ri-book-2-fill

ri-book-3-line

ri-book-3-fill

ri-book-open-line

ri-book-open-fill

ri-book-read-line

ri-book-read-fill

ri-contacts-book-line

ri-contacts-book-fill

ri-contacts-book-2-line

ri-contacts-book-2-fill

ri-contacts-book-upload-line

ri-contacts-book-upload-fill

ri-booklet-line

ri-booklet-fill

ri-file-code-line

ri-file-code-fill

ri-file-pdf-line

ri-file-pdf-fill

ri-file-word-line

ri-file-word-fill

ri-file-ppt-line

ri-file-ppt-fill

ri-file-excel-line

ri-file-excel-fill

ri-file-word-2-line

ri-file-word-2-fill

ri-file-ppt-2-line

ri-file-ppt-2-fill

ri-file-excel-2-line

ri-file-excel-2-fill

ri-file-hwp-line

ri-file-hwp-fill

ri-keynote-line

ri-keynote-fill

ri-numbers-line

ri-numbers-fill

ri-pages-line

ri-pages-fill

ri-file-search-line

ri-file-search-fill

ri-file-add-line

ri-file-add-fill

ri-file-reduce-line

ri-file-reduce-fill

ri-file-settings-line

ri-file-settings-fill

ri-file-upload-line

ri-file-upload-fill

ri-file-transfer-line

ri-file-transfer-fill

ri-file-download-line

ri-file-download-fill

ri-file-lock-line

ri-file-lock-fill

ri-file-chart-line

ri-file-chart-fill

ri-file-chart-2-line

ri-file-chart-2-fill

ri-file-music-line

ri-file-music-fill

ri-file-gif-line

ri-file-gif-fill

ri-file-forbid-line

ri-file-forbid-fill

ri-file-info-line

ri-file-info-fill

ri-file-warning-line

ri-file-warning-fill

ri-file-unknow-line

ri-file-unknow-fill

ri-file-user-line

ri-file-user-fill

ri-file-shield-line

ri-file-shield-fill

ri-file-shield-2-line

ri-file-shield-2-fill

ri-file-damage-line

ri-file-damage-fill

ri-file-history-line

ri-file-history-fill

ri-file-shred-line

ri-file-shred-fill

ri-file-cloud-line

ri-file-cloud-fill

ri-folder-line

ri-folder-fill

ri-folder-2-line

ri-folder-2-fill

ri-folder-3-line

ri-folder-3-fill

ri-folder-4-line

ri-folder-4-fill

ri-folder-5-line

ri-folder-5-fill

ri-folders-line

ri-folders-fill

ri-folder-add-line

ri-folder-add-fill

ri-folder-reduce-line

ri-folder-reduce-fill

ri-folder-settings-line

ri-folder-settings-fill

ri-folder-upload-line

ri-folder-upload-fill

ri-folder-transfer-line

ri-folder-transfer-fill

ri-folder-download-line

ri-folder-download-fill

ri-folder-lock-line

ri-folder-lock-fill

ri-folder-chart-line

ri-folder-chart-fill

ri-folder-chart-2-line

ri-folder-chart-2-fill

ri-folder-music-line

ri-folder-music-fill

ri-folder-forbid-line

ri-folder-forbid-fill

ri-folder-info-line

ri-folder-info-fill

ri-folder-warning-line

ri-folder-warning-fill

ri-folder-unknow-line

ri-folder-unknow-fill

ri-folder-user-line

ri-folder-user-fill

ri-folder-shield-line

ri-folder-shield-fill

ri-folder-shield-2-line

ri-folder-shield-2-fill

ri-folder-shared-line

ri-folder-shared-fill

ri-folder-received-line

ri-folder-received-fill

ri-folder-open-line

ri-folder-open-fill

ri-folder-keyhole-line

ri-folder-keyhole-fill

ri-folder-zip-line

ri-folder-zip-fill

ri-folder-history-line

ri-folder-history-fill

ri-markdown-line

ri-markdown-fill

Document

ri-bold

ri-italic

ri-heading

ri-text

ri-font-color

ri-font-size

ri-font-size-2

ri-underline

ri-emphasis

ri-emphasis-cn

ri-strikethrough

ri-strikethrough-2

ri-format-clear

ri-align-left

ri-align-center

ri-align-right

ri-align-justify

ri-align-top

ri-align-vertically

ri-align-bottom

ri-list-check

ri-list-check-2

ri-list-ordered

ri-list-unordered

ri-indent-decrease

ri-indent-increase

ri-line-height

ri-text-spacing

ri-text-wrap

ri-attachment-2

ri-link

ri-link-unlink

ri-link-m

ri-link-unlink-m

ri-separator

ri-space

ri-page-separator

ri-code-view

ri-double-quotes-l

ri-double-quotes-r

ri-single-quotes-l

ri-single-quotes-r

ri-table-2

ri-subscript

ri-subscript-2

ri-superscript

ri-superscript-2

ri-paragraph

ri-text-direction-l

ri-text-direction-r

ri-functions

ri-omega

ri-hashtag

ri-asterisk

ri-question-mark

ri-translate

ri-translate-2

ri-a-b

ri-english-input

ri-pinyin-input

ri-wubi-input

ri-input-cursor-move

ri-number-1

ri-number-2

ri-number-3

ri-number-4

ri-number-5

ri-number-6

ri-number-7

ri-number-8

ri-number-9

ri-number-0

ri-sort-asc

ri-sort-desc

ri-bring-forward

ri-send-backward

ri-bring-to-front

ri-send-to-back

ri-h-1

ri-h-2

ri-h-3

ri-h-4

ri-h-5

ri-h-6

ri-insert-column-left

ri-insert-column-right

ri-insert-row-top

ri-insert-row-bottom

ri-delete-column

ri-delete-row

ri-merge-cells-horizontal

ri-merge-cells-vertical

ri-split-cells-horizontal

ri-split-cells-vertical

ri-flow-chart

ri-mind-map

ri-node-tree

ri-organization-chart

ri-rounded-corner

Editor

ri-wallet-line

ri-wallet-fill

ri-wallet-2-line

ri-wallet-2-fill

ri-wallet-3-line

ri-wallet-3-fill

ri-bank-card-line

ri-bank-card-fill

ri-bank-card-2-line

ri-bank-card-2-fill

ri-secure-payment-line

ri-secure-payment-fill

ri-refund-line

ri-refund-fill

ri-refund-2-line

ri-refund-2-fill

ri-safe-line

ri-safe-fill

ri-safe-2-line

ri-safe-2-fill

ri-price-tag-line

ri-price-tag-fill

ri-price-tag-2-line

ri-price-tag-2-fill

ri-price-tag-3-line

ri-price-tag-3-fill

ri-ticket-line

ri-ticket-fill

ri-ticket-2-line

ri-ticket-2-fill

ri-coupon-line

ri-coupon-fill

ri-coupon-2-line

ri-coupon-2-fill

ri-coupon-3-line

ri-coupon-3-fill

ri-coupon-4-line

ri-coupon-4-fill

ri-coupon-5-line

ri-coupon-5-fill

ri-shopping-bag-line

ri-shopping-bag-fill

ri-shopping-bag-2-line

ri-shopping-bag-2-fill

ri-shopping-bag-3-line

ri-shopping-bag-3-fill

ri-shopping-basket-line

ri-shopping-basket-fill

ri-shopping-basket-2-line

ri-shopping-basket-2-fill

ri-shopping-cart-line

ri-shopping-cart-fill

ri-shopping-cart-2-line

ri-shopping-cart-2-fill

ri-vip-line

ri-vip-fill

ri-vip-crown-line

ri-vip-crown-fill

ri-vip-crown-2-line

ri-vip-crown-2-fill

ri-vip-diamond-line

ri-vip-diamond-fill

ri-trophy-line

ri-trophy-fill

ri-exchange-line

ri-exchange-fill

ri-exchange-box-line

ri-exchange-box-fill

ri-swap-line

ri-swap-fill

ri-swap-box-line

ri-swap-box-fill

ri-exchange-dollar-line

ri-exchange-dollar-fill

ri-exchange-cny-line

ri-exchange-cny-fill

ri-exchange-funds-line

ri-exchange-funds-fill

ri-increase-decrease-line

ri-increase-decrease-fill

ri-percent-line

ri-percent-fill

ri-copper-coin-line

ri-copper-coin-fill

ri-copper-diamond-line

ri-copper-diamond-fill

ri-money-cny-box-line

ri-money-cny-box-fill

ri-money-cny-circle-line

ri-money-cny-circle-fill

ri-money-dollar-box-line

ri-money-dollar-box-fill

ri-money-dollar-circle-line

ri-money-dollar-circle-fill

ri-money-euro-box-line

ri-money-euro-box-fill

ri-money-euro-circle-line

ri-money-euro-circle-fill

ri-money-pound-box-line

ri-money-pound-box-fill

ri-money-pound-circle-line

ri-money-pound-circle-fill

ri-bit-coin-line

ri-bit-coin-fill

ri-coin-line

ri-coin-fill

ri-coins-line

ri-coins-fill

ri-currency-line

ri-currency-fill

ri-funds-line

ri-funds-fill

ri-funds-box-line

ri-funds-box-fill

ri-red-packet-line

ri-red-packet-fill

ri-water-flash-line

ri-water-flash-fill

ri-stock-line

ri-stock-fill

ri-auction-line

ri-auction-fill

ri-gift-line

ri-gift-fill

ri-gift-2-line

ri-gift-2-fill

ri-hand-coin-line

ri-hand-coin-fill

ri-hand-heart-line

ri-hand-heart-fill

ri-24-hours-line

ri-24-hours-fill

Finance

ri-heart-line

ri-heart-fill

ri-heart-2-line

ri-heart-2-fill

ri-heart-3-line

ri-heart-3-fill

ri-heart-add-line

ri-heart-add-fill

ri-dislike-line

ri-dislike-fill

ri-hearts-line

ri-hearts-fill

ri-heart-pulse-line

ri-heart-pulse-fill

ri-pulse-line

ri-pulse-fill

ri-empathize-line

ri-empathize-fill

ri-nurse-line

ri-nurse-fill

ri-dossier-line

ri-dossier-fill

ri-health-book-line

ri-health-book-fill

ri-first-aid-kit-line

ri-first-aid-kit-fill

ri-capsule-line

ri-capsule-fill

ri-medicine-bottle-line

ri-medicine-bottle-fill

ri-flask-line

ri-flask-fill

ri-test-tube-line

ri-test-tube-fill

ri-microscope-line

ri-microscope-fill

ri-hand-sanitizer-line

ri-hand-sanitizer-fill

ri-mental-health-line

ri-mental-health-fill

ri-psychotherapy-line

ri-psychotherapy-fill

ri-stethoscope-line

ri-stethoscope-fill

ri-syringe-line

ri-syringe-fill

ri-thermometer-line

ri-thermometer-fill

ri-infrared-thermometer-line

ri-infrared-thermometer-fill

ri-surgical-mask-line

ri-surgical-mask-fill

ri-virus-line

ri-virus-fill

ri-lungs-line

ri-lungs-fill

ri-rest-time-line

ri-rest-time-fill

ri-zzz-line

ri-zzz-fill

Health & Medical

ri-alipay-line

ri-alipay-fill

ri-amazon-line

ri-amazon-fill

ri-android-line

ri-android-fill

ri-angularjs-line

ri-angularjs-fill

ri-app-store-line

ri-app-store-fill

ri-apple-line

ri-apple-fill

ri-baidu-line

ri-baidu-fill

ri-behance-line

ri-behance-fill

ri-bilibili-line

ri-bilibili-fill

ri-centos-line

ri-centos-fill

ri-chrome-line

ri-chrome-fill

ri-codepen-line

ri-codepen-fill

ri-coreos-line

ri-coreos-fill

ri-dingding-line

ri-dingding-fill

ri-discord-line

ri-discord-fill

ri-disqus-line

ri-disqus-fill

ri-douban-line

ri-douban-fill

ri-dribbble-line

ri-dribbble-fill

ri-drive-line

ri-drive-fill

ri-dropbox-line

ri-dropbox-fill

ri-edge-line

ri-edge-fill

ri-evernote-line

ri-evernote-fill

ri-facebook-line

ri-facebook-fill

ri-facebook-circle-line

ri-facebook-circle-fill

ri-facebook-box-line

ri-facebook-box-fill

ri-finder-line

ri-finder-fill

ri-firefox-line

ri-firefox-fill

ri-flutter-line

ri-flutter-fill

ri-gatsby-line

ri-gatsby-fill

ri-github-line

ri-github-fill

ri-gitlab-line

ri-gitlab-fill

ri-google-line

ri-google-fill

ri-google-play-line

ri-google-play-fill

ri-honor-of-kings-line

ri-honor-of-kings-fill

ri-ie-line

ri-ie-fill

ri-instagram-line

ri-instagram-fill

ri-invision-line

ri-invision-fill

ri-kakao-talk-line

ri-kakao-talk-fill

ri-line-line

ri-line-fill

ri-linkedin-line

ri-linkedin-fill

ri-linkedin-box-line

ri-linkedin-box-fill

ri-mastercard-line

ri-mastercard-fill

ri-mastodon-line

ri-mastodon-fill

ri-medium-line

ri-medium-fill

ri-messenger-line

ri-messenger-fill

ri-microsoft-line

ri-microsoft-fill

ri-mini-program-line

ri-mini-program-fill

ri-netease-cloud-music-line

ri-netease-cloud-music-fill

ri-netflix-line

ri-netflix-fill

ri-npmjs-line

ri-npmjs-fill

ri-open-source-line

ri-open-source-fill

ri-opera-line

ri-opera-fill

ri-patreon-line

ri-patreon-fill

ri-paypal-line

ri-paypal-fill

ri-pinterest-line

ri-pinterest-fill

ri-pixelfed-line

ri-pixelfed-fill

ri-playstation-line

ri-playstation-fill

ri-product-hunt-line

ri-product-hunt-fill

ri-qq-line

ri-qq-fill

ri-reactjs-line

ri-reactjs-fill

ri-reddit-line

ri-reddit-fill

ri-remixicon-line

ri-remixicon-fill

ri-safari-line

ri-safari-fill

ri-skype-line

ri-skype-fill

ri-slack-line

ri-slack-fill

ri-snapchat-line

ri-snapchat-fill

ri-soundcloud-line

ri-soundcloud-fill

ri-spectrum-line

ri-spectrum-fill

ri-spotify-line

ri-spotify-fill

ri-stack-overflow-line

ri-stack-overflow-fill

ri-stackshare-line

ri-stackshare-fill

ri-steam-line

ri-steam-fill

ri-switch-line

ri-switch-fill

ri-taobao-line

ri-taobao-fill

ri-telegram-line

ri-telegram-fill

ri-trello-line

ri-trello-fill

ri-tumblr-line

ri-tumblr-fill

ri-twitch-line

ri-twitch-fill

ri-twitter-line

ri-twitter-fill

ri-ubuntu-line

ri-ubuntu-fill

ri-unsplash-line

ri-unsplash-fill

ri-vimeo-line

ri-vimeo-fill

ri-visa-line

ri-visa-fill

ri-vuejs-line

ri-vuejs-fill

ri-wechat-line

ri-wechat-fill

ri-wechat-2-line

ri-wechat-2-fill

ri-wechat-pay-line

ri-wechat-pay-fill

ri-weibo-line

ri-weibo-fill

ri-whatsapp-line

ri-whatsapp-fill

ri-windows-line

ri-windows-fill

ri-xbox-line

ri-xbox-fill

ri-xing-line

ri-xing-fill

ri-youtube-line

ri-youtube-fill

ri-zcool-line

ri-zcool-fill

ri-zhihu-line

ri-zhihu-fill

Logos

ri-map-pin-line

ri-map-pin-fill

ri-map-pin-2-line

ri-map-pin-2-fill

ri-map-pin-3-line

ri-map-pin-3-fill

ri-map-pin-4-line

ri-map-pin-4-fill

ri-map-pin-5-line

ri-map-pin-5-fill

ri-map-pin-add-line

ri-map-pin-add-fill

ri-map-pin-range-line

ri-map-pin-range-fill

ri-map-pin-time-line

ri-map-pin-time-fill

ri-map-pin-user-line

ri-map-pin-user-fill

ri-pin-distance-line

ri-pin-distance-fill

ri-pushpin-line

ri-pushpin-fill

ri-pushpin-2-line

ri-pushpin-2-fill

ri-compass-line

ri-compass-fill

ri-compass-2-line

ri-compass-2-fill

ri-compass-3-line

ri-compass-3-fill

ri-compass-4-line

ri-compass-4-fill

ri-compass-discover-line

ri-compass-discover-fill

ri-anchor-line

ri-anchor-fill

ri-china-railway-line

ri-china-railway-fill

ri-space-ship-line

ri-space-ship-fill

ri-rocket-line

ri-rocket-fill

ri-rocket-2-line

ri-rocket-2-fill

ri-map-line

ri-map-fill

ri-map-2-line

ri-map-2-fill

ri-treasure-map-line

ri-treasure-map-fill

ri-road-map-line

ri-road-map-fill

ri-earth-line

ri-earth-fill

ri-globe-line

ri-globe-fill

ri-parking-line

ri-parking-fill

ri-parking-box-line

ri-parking-box-fill

ri-route-line

ri-route-fill

ri-guide-line

ri-guide-fill

ri-gas-station-line

ri-gas-station-fill

ri-charging-pile-line

ri-charging-pile-fill

ri-charging-pile-2-line

ri-charging-pile-2-fill

ri-car-line

ri-car-fill

ri-car-washing-line

ri-car-washing-fill

ri-roadster-line

ri-roadster-fill

ri-taxi-line

ri-taxi-fill

ri-taxi-wifi-line

ri-taxi-wifi-fill

ri-police-car-line

ri-police-car-fill

ri-bus-line

ri-bus-fill

ri-bus-2-line

ri-bus-2-fill

ri-bus-wifi-line

ri-bus-wifi-fill

ri-truck-line

ri-truck-fill

ri-train-line

ri-train-fill

ri-train-wifi-line

ri-train-wifi-fill

ri-subway-line

ri-subway-fill

ri-subway-wifi-line

ri-subway-wifi-fill

ri-flight-takeoff-line

ri-flight-takeoff-fill

ri-flight-land-line

ri-flight-land-fill

ri-plane-line

ri-plane-fill

ri-sailboat-line

ri-sailboat-fill

ri-ship-line

ri-ship-fill

ri-ship-2-line

ri-ship-2-fill

ri-bike-line

ri-bike-fill

ri-e-bike-line

ri-e-bike-fill

ri-e-bike-2-line

ri-e-bike-2-fill

ri-takeaway-line

ri-takeaway-fill

ri-motorbike-line

ri-motorbike-fill

ri-caravan-line

ri-caravan-fill

ri-walk-line

ri-walk-fill

ri-run-line

ri-run-fill

ri-riding-line

ri-riding-fill

ri-barricade-line

ri-barricade-fill

ri-footprint-line

ri-footprint-fill

ri-traffic-light-line

ri-traffic-light-fill

ri-signal-tower-line

ri-signal-tower-fill

ri-restaurant-line

ri-restaurant-fill

ri-restaurant-2-line

ri-restaurant-2-fill

ri-cup-line

ri-cup-fill

ri-goblet-line

ri-goblet-fill

ri-hotel-bed-line

ri-hotel-bed-fill

ri-navigation-line

ri-navigation-fill

ri-oil-line

ri-oil-fill

ri-direction-line

ri-direction-fill

ri-steering-line

ri-steering-fill

ri-steering-2-line

ri-steering-2-fill

ri-lifebuoy-line

ri-lifebuoy-fill

ri-passport-line

ri-passport-fill

ri-suitcase-line

ri-suitcase-fill

ri-suitcase-2-line

ri-suitcase-2-fill

ri-suitcase-3-line

ri-suitcase-3-fill

ri-luggage-deposit-line

ri-luggage-deposit-fill

ri-luggage-cart-line

ri-luggage-cart-fill

Map

ri-image-line

ri-image-fill

ri-image-2-line

ri-image-2-fill

ri-image-add-line

ri-image-add-fill

ri-image-edit-line

ri-image-edit-fill

ri-landscape-line

ri-landscape-fill

ri-gallery-line

ri-gallery-fill

ri-gallery-upload-line

ri-gallery-upload-fill

ri-video-line

ri-video-fill

ri-movie-line

ri-movie-fill

ri-movie-2-line

ri-movie-2-fill

ri-film-line

ri-film-fill

ri-clapperboard-line

ri-clapperboard-fill

ri-vidicon-line

ri-vidicon-fill

ri-vidicon-2-line

ri-vidicon-2-fill

ri-live-line

ri-live-fill

ri-video-add-line

ri-video-add-fill

ri-video-upload-line

ri-video-upload-fill

ri-video-download-line

ri-video-download-fill

ri-dv-line

ri-dv-fill

ri-camera-line

ri-camera-fill

ri-camera-off-line

ri-camera-off-fill

ri-camera-2-line

ri-camera-2-fill

ri-camera-3-line

ri-camera-3-fill

ri-camera-lens-line

ri-camera-lens-fill

ri-camera-switch-line

ri-camera-switch-fill

ri-polaroid-line

ri-polaroid-fill

ri-polaroid-2-line

ri-polaroid-2-fill

ri-phone-camera-line

ri-phone-camera-fill

ri-webcam-line

ri-webcam-fill

ri-mv-line

ri-mv-fill

ri-music-line

ri-music-fill

ri-music-2-line

ri-music-2-fill

ri-disc-line

ri-disc-fill

ri-album-line

ri-album-fill

ri-dvd-line

ri-dvd-fill

ri-headphone-line

ri-headphone-fill

ri-radio-line

ri-radio-fill

ri-radio-2-line

ri-radio-2-fill

ri-tape-line

ri-tape-fill

ri-mic-line

ri-mic-fill

ri-mic-2-line

ri-mic-2-fill

ri-mic-off-line

ri-mic-off-fill

ri-volume-down-line

ri-volume-down-fill

ri-volume-mute-line

ri-volume-mute-fill

ri-volume-up-line

ri-volume-up-fill

ri-volume-vibrate-line

ri-volume-vibrate-fill

ri-volume-off-vibrate-line

ri-volume-off-vibrate-fill

ri-speaker-line

ri-speaker-fill

ri-speaker-2-line

ri-speaker-2-fill

ri-speaker-3-line

ri-speaker-3-fill

ri-surround-sound-line

ri-surround-sound-fill

ri-broadcast-line

ri-broadcast-fill

ri-notification-line

ri-notification-fill

ri-notification-2-line

ri-notification-2-fill

ri-notification-3-line

ri-notification-3-fill

ri-notification-4-line

ri-notification-4-fill

ri-notification-off-line

ri-notification-off-fill

ri-play-circle-line

ri-play-circle-fill

ri-pause-circle-line

ri-pause-circle-fill

ri-record-circle-line

ri-record-circle-fill

ri-stop-circle-line

ri-stop-circle-fill

ri-eject-line

ri-eject-fill

ri-play-line

ri-play-fill

ri-pause-line

ri-pause-fill

ri-stop-line

ri-stop-fill

ri-rewind-line

ri-rewind-fill

ri-speed-line

ri-speed-fill

ri-skip-back-line

ri-skip-back-fill

ri-skip-forward-line

ri-skip-forward-fill

ri-play-mini-line

ri-play-mini-fill

ri-pause-mini-line

ri-pause-mini-fill

ri-stop-mini-line

ri-stop-mini-fill

ri-rewind-mini-line

ri-rewind-mini-fill

ri-speed-mini-line

ri-speed-mini-fill

ri-skip-back-mini-line

ri-skip-back-mini-fill

ri-skip-forward-mini-line

ri-skip-forward-mini-fill

ri-repeat-line

ri-repeat-fill

ri-repeat-2-line

ri-repeat-2-fill

ri-repeat-one-line

ri-repeat-one-fill

ri-order-play-line

ri-order-play-fill

ri-shuffle-line

ri-shuffle-fill

ri-play-list-line

ri-play-list-fill

ri-play-list-2-line

ri-play-list-2-fill

ri-play-list-add-line

ri-play-list-add-fill

ri-fullscreen-line

ri-fullscreen-fill

ri-fullscreen-exit-line

ri-fullscreen-exit-fill

ri-equalizer-line

ri-equalizer-fill

ri-sound-module-line

ri-sound-module-fill

ri-rhythm-line

ri-rhythm-fill

ri-voiceprint-line

ri-voiceprint-fill

ri-hq-line

ri-hq-fill

ri-hd-line

ri-hd-fill

ri-4k-line

ri-4k-fill

ri-closed-captioning-line

ri-closed-captioning-fill

ri-aspect-ratio-line

ri-aspect-ratio-fill

ri-picture-in-picture-line

ri-picture-in-picture-fill

ri-picture-in-picture-2-line

ri-picture-in-picture-2-fill

ri-picture-in-picture-exit-line

ri-picture-in-picture-exit-fill

Media

ri-apps-line

ri-apps-fill

ri-apps-2-line

ri-apps-2-fill

ri-function-line

ri-function-fill

ri-dashboard-line

ri-dashboard-fill

ri-menu-line

ri-menu-fill

ri-menu-2-line

ri-menu-2-fill

ri-menu-3-line

ri-menu-3-fill

ri-menu-4-line

ri-menu-4-fill

ri-menu-5-line

ri-menu-5-fill

ri-menu-add-line

ri-menu-add-fill

ri-menu-fold-line

ri-menu-fold-fill

ri-menu-unfold-line

ri-menu-unfold-fill

ri-more-line

ri-more-fill

ri-more-2-line

ri-more-2-fill

ri-star-line

ri-star-fill

ri-star-s-line

ri-star-s-fill

ri-star-half-line

ri-star-half-fill

ri-star-half-s-line

ri-star-half-s-fill

ri-settings-line

ri-settings-fill

ri-settings-2-line

ri-settings-2-fill

ri-settings-3-line

ri-settings-3-fill

ri-settings-4-line

ri-settings-4-fill

ri-settings-5-line

ri-settings-5-fill

ri-settings-6-line

ri-settings-6-fill

ri-list-settings-line

ri-list-settings-fill

ri-forbid-line

ri-forbid-fill

ri-forbid-2-line

ri-forbid-2-fill

ri-information-line

ri-information-fill

ri-error-warning-line

ri-error-warning-fill

ri-question-line

ri-question-fill

ri-alert-line

ri-alert-fill

ri-spam-line

ri-spam-fill

ri-spam-2-line

ri-spam-2-fill

ri-spam-3-line

ri-spam-3-fill

ri-checkbox-blank-line

ri-checkbox-blank-fill

ri-checkbox-line

ri-checkbox-fill

ri-checkbox-indeterminate-line

ri-checkbox-indeterminate-fill

ri-add-box-line

ri-add-box-fill

ri-checkbox-blank-circle-line

ri-checkbox-blank-circle-fill

ri-checkbox-circle-line

ri-checkbox-circle-fill

ri-indeterminate-circle-line

ri-indeterminate-circle-fill

ri-add-circle-line

ri-add-circle-fill

ri-close-circle-line

ri-close-circle-fill

ri-radio-button-line

ri-radio-button-fill

ri-checkbox-multiple-blank-line

ri-checkbox-multiple-blank-fill

ri-checkbox-multiple-line

ri-checkbox-multiple-fill

ri-check-line

ri-check-fill

ri-check-double-line

ri-check-double-fill

ri-close-line

ri-close-fill

ri-add-line

ri-add-fill

ri-subtract-line

ri-subtract-fill

ri-divide-line

ri-divide-fill

ri-arrow-left-up-line

ri-arrow-left-up-fill

ri-arrow-up-line

ri-arrow-up-fill

ri-arrow-right-up-line

ri-arrow-right-up-fill

ri-arrow-right-line

ri-arrow-right-fill

ri-arrow-right-down-line

ri-arrow-right-down-fill

ri-arrow-down-line

ri-arrow-down-fill

ri-arrow-left-down-line

ri-arrow-left-down-fill

ri-arrow-left-line

ri-arrow-left-fill

ri-arrow-up-circle-line

ri-arrow-up-circle-fill

ri-arrow-right-circle-line

ri-arrow-right-circle-fill

ri-arrow-down-circle-line

ri-arrow-down-circle-fill

ri-arrow-left-circle-line

ri-arrow-left-circle-fill

ri-arrow-up-s-line

ri-arrow-up-s-fill

ri-arrow-down-s-line

ri-arrow-down-s-fill

ri-arrow-right-s-line

ri-arrow-right-s-fill

ri-arrow-left-s-line

ri-arrow-left-s-fill

ri-arrow-drop-up-line

ri-arrow-drop-up-fill

ri-arrow-drop-right-line

ri-arrow-drop-right-fill

ri-arrow-drop-down-line

ri-arrow-drop-down-fill

ri-arrow-drop-left-line

ri-arrow-drop-left-fill

ri-arrow-left-right-line

ri-arrow-left-right-fill

ri-arrow-up-down-line

ri-arrow-up-down-fill

ri-arrow-go-back-line

ri-arrow-go-back-fill

ri-arrow-go-forward-line

ri-arrow-go-forward-fill

ri-download-line

ri-download-fill

ri-upload-line

ri-upload-fill

ri-download-2-line

ri-download-2-fill

ri-upload-2-line

ri-upload-2-fill

ri-download-cloud-line

ri-download-cloud-fill

ri-download-cloud-2-line

ri-download-cloud-2-fill

ri-upload-cloud-line

ri-upload-cloud-fill

ri-upload-cloud-2-line

ri-upload-cloud-2-fill

ri-login-box-line

ri-login-box-fill

ri-logout-box-line

ri-logout-box-fill

ri-logout-box-r-line

ri-logout-box-r-fill

ri-login-circle-line

ri-login-circle-fill

ri-logout-circle-line

ri-logout-circle-fill

ri-logout-circle-r-line

ri-logout-circle-r-fill

ri-refresh-line

ri-refresh-fill

ri-shield-line

ri-shield-fill

ri-shield-cross-line

ri-shield-cross-fill

ri-shield-flash-line

ri-shield-flash-fill

ri-shield-star-line

ri-shield-star-fill

ri-shield-user-line

ri-shield-user-fill

ri-shield-keyhole-line

ri-shield-keyhole-fill

ri-shield-check-line

ri-shield-check-fill

ri-delete-back-line

ri-delete-back-fill

ri-delete-back-2-line

ri-delete-back-2-fill

ri-delete-bin-line

ri-delete-bin-fill

ri-delete-bin-2-line

ri-delete-bin-2-fill

ri-delete-bin-3-line

ri-delete-bin-3-fill

ri-delete-bin-4-line

ri-delete-bin-4-fill

ri-delete-bin-5-line

ri-delete-bin-5-fill

ri-delete-bin-6-line

ri-delete-bin-6-fill

ri-delete-bin-7-line

ri-delete-bin-7-fill

ri-lock-line

ri-lock-fill

ri-lock-2-line

ri-lock-2-fill

ri-lock-password-line

ri-lock-password-fill

ri-lock-unlock-line

ri-lock-unlock-fill

ri-eye-line

ri-eye-fill

ri-eye-off-line

ri-eye-off-fill

ri-eye-2-line

ri-eye-2-fill

ri-eye-close-line

ri-eye-close-fill

ri-search-line

ri-search-fill

ri-search-2-line

ri-search-2-fill

ri-search-eye-line

ri-search-eye-fill

ri-zoom-in-line

ri-zoom-in-fill

ri-zoom-out-line

ri-zoom-out-fill

ri-find-replace-line

ri-find-replace-fill

ri-share-line

ri-share-fill

ri-share-box-line

ri-share-box-fill

ri-share-circle-line

ri-share-circle-fill

ri-share-forward-line

ri-share-forward-fill

ri-share-forward-2-line

ri-share-forward-2-fill

ri-share-forward-box-line

ri-share-forward-box-fill

ri-side-bar-line

ri-side-bar-fill

ri-time-line

ri-time-fill

ri-timer-line

ri-timer-fill

ri-timer-2-line

ri-timer-2-fill

ri-timer-flash-line

ri-timer-flash-fill

ri-alarm-line

ri-alarm-fill

ri-history-line

ri-history-fill

ri-thumb-down-line

ri-thumb-down-fill

ri-thumb-up-line

ri-thumb-up-fill

ri-alarm-warning-line

ri-alarm-warning-fill

ri-notification-badge-line

ri-notification-badge-fill

ri-toggle-line

ri-toggle-fill

ri-filter-line

ri-filter-fill

ri-filter-2-line

ri-filter-2-fill

ri-filter-3-line

ri-filter-3-fill

ri-filter-off-line

ri-filter-off-fill

ri-loader-line

ri-loader-fill

ri-loader-2-line

ri-loader-2-fill

ri-loader-3-line

ri-loader-3-fill

ri-loader-4-line

ri-loader-4-fill

ri-loader-5-line

ri-loader-5-fill

ri-external-link-line

ri-external-link-fill

System

ri-user-line

ri-user-fill

ri-user-2-line

ri-user-2-fill

ri-user-3-line

ri-user-3-fill

ri-user-4-line

ri-user-4-fill

ri-user-5-line

ri-user-5-fill

ri-user-6-line

ri-user-6-fill

ri-user-smile-line

ri-user-smile-fill

ri-account-box-line

ri-account-box-fill

ri-account-circle-line

ri-account-circle-fill

ri-account-pin-box-line

ri-account-pin-box-fill

ri-account-pin-circle-line

ri-account-pin-circle-fill

ri-user-add-line

ri-user-add-fill

ri-user-follow-line

ri-user-follow-fill

ri-user-unfollow-line

ri-user-unfollow-fill

ri-user-shared-line

ri-user-shared-fill

ri-user-shared-2-line

ri-user-shared-2-fill

ri-user-received-line

ri-user-received-fill

ri-user-received-2-line

ri-user-received-2-fill

ri-user-location-line

ri-user-location-fill

ri-user-search-line

ri-user-search-fill

ri-user-settings-line

ri-user-settings-fill

ri-user-star-line

ri-user-star-fill

ri-user-heart-line

ri-user-heart-fill

ri-admin-line

ri-admin-fill

ri-contacts-line

ri-contacts-fill

ri-group-line

ri-group-fill

ri-group-2-line

ri-group-2-fill

ri-team-line

ri-team-fill

ri-user-voice-line

ri-user-voice-fill

ri-emotion-line

ri-emotion-fill

ri-emotion-2-line

ri-emotion-2-fill

ri-emotion-happy-line

ri-emotion-happy-fill

ri-emotion-normal-line

ri-emotion-normal-fill

ri-emotion-unhappy-line

ri-emotion-unhappy-fill

ri-emotion-laugh-line

ri-emotion-laugh-fill

ri-emotion-sad-line

ri-emotion-sad-fill

ri-skull-line

ri-skull-fill

ri-skull-2-line

ri-skull-2-fill

ri-men-line

ri-men-fill

ri-women-line

ri-women-fill

ri-travesti-line

ri-travesti-fill

ri-genderless-line

ri-genderless-fill

ri-open-arm-line

ri-open-arm-fill

ri-body-scan-line

ri-body-scan-fill

ri-parent-line

ri-parent-fill

ri-robot-line

ri-robot-fill

ri-aliens-line

ri-aliens-fill

ri-bear-smile-line

ri-bear-smile-fill

ri-mickey-line

ri-mickey-fill

ri-criminal-line

ri-criminal-fill

ri-ghost-line

ri-ghost-fill

ri-ghost-2-line

ri-ghost-2-fill

ri-ghost-smile-line

ri-ghost-smile-fill

ri-star-smile-line

ri-star-smile-fill

ri-spy-line

ri-spy-fill

User & Faces

ri-sun-line

ri-sun-fill

ri-moon-line

ri-moon-fill

ri-flashlight-line

ri-flashlight-fill

ri-cloudy-line

ri-cloudy-fill

ri-cloudy-2-line

ri-cloudy-2-fill

ri-mist-line

ri-mist-fill

ri-foggy-line

ri-foggy-fill

ri-cloud-windy-line

ri-cloud-windy-fill

ri-windy-line

ri-windy-fill

ri-rainy-line

ri-rainy-fill

ri-drizzle-line

ri-drizzle-fill

ri-showers-line

ri-showers-fill

ri-heavy-showers-line

ri-heavy-showers-fill

ri-thunderstorms-line

ri-thunderstorms-fill

ri-hail-line

ri-hail-fill

ri-snowy-line

ri-snowy-fill

ri-sun-cloudy-line

ri-sun-cloudy-fill

ri-moon-cloudy-line

ri-moon-cloudy-fill

ri-tornado-line

ri-tornado-fill

ri-typhoon-line

ri-typhoon-fill

ri-haze-line

ri-haze-fill

ri-haze-2-line

ri-haze-2-fill

ri-sun-foggy-line

ri-sun-foggy-fill

ri-moon-foggy-line

ri-moon-foggy-fill

ri-moon-clear-line

ri-moon-clear-fill

ri-temp-hot-line

ri-temp-hot-fill

ri-temp-cold-line

ri-temp-cold-fill

ri-celsius-line

ri-celsius-fill

ri-fahrenheit-line

ri-fahrenheit-fill

ri-fire-line

ri-fire-fill

ri-blaze-line

ri-blaze-fill

ri-earthquake-line

ri-earthquake-fill

ri-flood-line

ri-flood-fill

ri-meteor-line

ri-meteor-fill

ri-rainbow-line

ri-rainbow-fill

Weather

ri-basketball-line

ri-basketball-fill

ri-bell-line

ri-bell-fill

ri-billiards-line

ri-billiards-fill

ri-boxing-line

ri-boxing-fill

ri-cake-line

ri-cake-fill

ri-cake-2-line

ri-cake-2-fill

ri-cake-3-line

ri-cake-3-fill

ri-door-lock-line

ri-door-lock-fill

ri-door-lock-box-line

ri-door-lock-box-fill

ri-football-line

ri-football-fill

ri-game-line

ri-game-fill

ri-handbag-line

ri-handbag-fill

ri-key-line

ri-key-fill

ri-key-2-line

ri-key-2-fill

ri-knife-line

ri-knife-fill

ri-knife-blood-line

ri-knife-blood-fill

ri-lightbulb-line

ri-lightbulb-fill

ri-lightbulb-flash-line

ri-lightbulb-flash-fill

ri-outlet-line

ri-outlet-fill

ri-outlet-2-line

ri-outlet-2-fill

ri-ping-pong-line

ri-ping-pong-fill

ri-plug-line

ri-plug-fill

ri-plug-2-line

ri-plug-2-fill

ri-reserved-line

ri-reserved-fill

ri-shirt-line

ri-shirt-fill

ri-sword-line

ri-sword-fill

ri-t-shirt-line

ri-t-shirt-fill

ri-t-shirt-2-line

ri-t-shirt-2-fill

ri-t-shirt-air-line

ri-t-shirt-air-fill

ri-umbrella-line

ri-umbrella-fill

ri-character-recognition-line

ri-character-recognition-fill

ri-voice-recognition-line

ri-voice-recognition-fill

ri-leaf-line

ri-leaf-fill

ri-plant-line

ri-plant-fill

ri-seedling-line

ri-seedling-fill

ri-recycle-line

ri-recycle-fill

ri-scales-line

ri-scales-fill

ri-scales-2-line

ri-scales-2-fill

ri-scales-3-line

ri-scales-3-fill

ri-fridge-line

ri-fridge-fill

ri-wheelchair-line

ri-wheelchair-fill

ri-cactus-line

ri-cactus-fill

ri-door-line

ri-door-fill

ri-door-open-line

ri-door-open-fill

ri-door-closed-line

ri-door-closed-fill

Others

- + \ No newline at end of file diff --git a/docs/docs/webdev/Guidelines/images/index.html b/docs/docs/webdev/Guidelines/images/index.html index 24467a6f44..bbcda67288 100644 --- a/docs/docs/webdev/Guidelines/images/index.html +++ b/docs/docs/webdev/Guidelines/images/index.html @@ -5,7 +5,7 @@ Use of images | EEA Design System - + @@ -14,7 +14,7 @@ To acknowledge a copyrighted work add three things to the image, the copyright symbol, the year of the copyright, and the name of the copyright holder.

Best practices

  • your visual content is relevant to the topic of the webpage
  • only add an image whenever it adds value to the webpage
  • place images near the relevant text
  • the most important image should be near the top of the webpage
  • avoid embedding text in images, not all users can access them (page translation tools can't read images)
  • text in HTML, provide alt text for images; follow rules of accessibility
  • create good content is equally important as visual content for images

Widely supported image formats

File type (short)File type (long)File extension
GIFgraphics Interchange Format.gif
JPEGjoint Photographic Expert Group image.jpeg .jpg
PNGportable Network Graphics.png
SVGscalable Vector Graphics.svg

Raster graphic

Raster images are pixel-based. When you scale up a raster image you'll see jagged and blurry edges.

GIF (Graphics Interchange Format)

  • fewer colours, file size is smaller than JPEG
  • interlaced progressive loading, low-quality version first, more detailed image is loaded next
  • fewer colours, file size is smaller than JPEG
  • does not lose any data with compression
  • best use for web graphics with few colours only, and line drawings

JPG/JPEG (Joint Photographic-Experts-Group)

  • can display millions of colours, use JPEG format for photographs, still images, shading with light and dark
  • use JPEG when file size is more important than the quality of the image
  • optimising JPEG images; 60% - 75% is usually optimal for web publishing 16-bit data format
  • compatible across many platforms and image editors

PNG (Portable Network Graphics)

  • support transparency (alpha channel), allow a translucent look
  • lossless compression, no loss of data
  • manage high-contrast or detailed images better than JPEG
  • they can go down to very small file sizes when there are limited colours, use an 8-bit colour palette instead of a 24 colour palette
  • PNG images can be used in any colour background still maintain the original appearance

Vector graphic

Vector image format can produce results with high fidelity at every resolution setting. It is an ideal format for high-resolution screens. If you zoom into a vector graphic it will always remain the same quality.

SVG (Scalable Vector Graphics)

  • SVG is in vector format – it does not lose any data when compressed
  • SVG formats are supported by most contemporary browsers
  • the image file size is lightweight and compressible supports transparency

Editing visuals

  • don't apply effects, gradients, borders or filters. It can make the picture look manipulated
  • don't pick photos with frames, rounded corners or drop shadows
  • cropping. Pay attention to the copyright. In some cases you need prior consent from the author to alter the image
- + \ No newline at end of file diff --git a/docs/docs/webdev/Guidelines/intro/index.html b/docs/docs/webdev/Guidelines/intro/index.html index 2e6c3d071c..0343494571 100644 --- a/docs/docs/webdev/Guidelines/intro/index.html +++ b/docs/docs/webdev/Guidelines/intro/index.html @@ -5,14 +5,14 @@ Intro | EEA Design System - +

Intro

Guidelines

The DS v1 is the EEA's design system, created with a set of guiding principles that followed throughout the process. By following a user-centered design approach and best UX practices, the DS v1 is the result of in-depth research into the users' needs and goals, offering solutions that are assessed, tested and revised continuously. All components included in the DS v1 follow the Web Content Accessibility Guidelines (WCAG).

The main characteristics of our design system are:

  • Minimal use of drop shadows
  • Sharp edges and corners
  • Uncluttered, distraction-free design
  • High readability with clear typography
  • Easily adjusted for responsive design

We emphasize more on functionality rather than appearance and in parallel we try to offer a consistent appearance irrespective of the screen resolution and types of devices. Trying not to use unnecessary designing elements, we focus on faster site designing and minimum loading time.

- + \ No newline at end of file diff --git a/docs/docs/webdev/Guidelines/spacing/index.html b/docs/docs/webdev/Guidelines/spacing/index.html index 2538e006b4..d1bc492aed 100644 --- a/docs/docs/webdev/Guidelines/spacing/index.html +++ b/docs/docs/webdev/Guidelines/spacing/index.html @@ -5,7 +5,7 @@ Spacing | EEA Design System - + @@ -13,7 +13,7 @@

Spacing

To ensure that layouts are visually balanced, most measurements align to 8px, which corresponds to both spacing and the overall layout. Consistent spacing creates visual balance that makes the user interface (UI) easier for merchants to scan. Apply consistent spacing to improve the quality of the UI. Components are sized in 8px increments, ensuring a consistent visual rhythm across each screen. Smaller elements, such as icons, can align to a 4px grid, while typography can fall on a 4px baseline grid, meaning that each line’s typographic baseline is spaced in increments of 4px from its neighbor.

Principles

Create visual rhythm
We use incrementally measured spacing to create harmonious arrangements of components and text. This gives the elements a predictable rhythm, which makes the experience as a whole feel intentional and well designed.

Precise but flexible
Beyond mathematical precision, spacing also reacts to the objects it surrounds, giving more space to larger objects, less to small. Optical adjustments can also be made if an element looks off and the spacing needs a nudge to make things feel right.

Two types of spacing scale

Component Spacing
Controls the spacing inside the components.
For components use smaller increments. ( 4px, 8px, 12px, 16px, 20px, 24px, 32px, 36px, 40px, 48px)

Layout Spacing
Controls space between the components.
For layout scale use larger increments (16px, 24px, 32px, 48px, 64px, 96px )

Spacing Gaps in pixels

Token namePixelsTypically used
space-0251pxnot typically used
space-052pxnot typically used
space-14pxseparate related elements and for small padding
space-28pxonly for right and left padding of buttons, form elements and horizontal tabs
space-312pxto separate unrelated elements or groups and for normal padding
space-416pxto separate sub-sections of content
space-520pxto separate sub-sections of content
space-624pxto separate sub-sections of content
space-728pxto separate sections of content
space-832pxto separate sections of content
space-936pxto separate sections of content
space-1040px
space-1144px
space-1248px
space-1352px
space-1456px
space-1560px
space-1664px
space-1768px
space-1872px
space-1976px
space-2080px
space-2496px

Spacing Gaps in rem

Token nameRem
rem-space-0250.063rem
rem-space-050.125rem
rem-space-10.25rem
rem-space-20.5rem
rem-space-30.75rem
rem-space-41rem
rem-space-51.25rem
rem-space-61.5rem
rem-space-71.75rem
rem-space-82rem
rem-space-92.25rem
rem-space-102.5rem
rem-space-112.75rem
rem-space-123rem
rem-space-133.25rem
rem-space-143.5rem
rem-space-153.75rem
rem-space-164rem
rem-space-174.25rem
rem-space-184.5rem
rem-space-194.75rem
rem-space-205rem
rem-space-246rem

Spacing Gaps in em

Token nameRem
em-space-0250.063em
em-space-050.125em
em-space-10.25em
em-space-20.5em
em-space-30.75em
em-space-41em
em-space-51.25em
em-space-61.5em
em-space-71.75em
em-space-82em
em-space-92.25em
em-space-102.5em
em-space-112.75em
em-space-123em
em-space-133.25em
em-space-143.5em
em-space-153.75em
em-space-164em
em-space-174.25em
em-space-184.5em
em-space-194.75em
em-space-205em
em-space-246em
- + \ No newline at end of file diff --git a/docs/docs/webdev/Guidelines/typography/index.html b/docs/docs/webdev/Guidelines/typography/index.html index 321b7619b1..1d608fe2dd 100644 --- a/docs/docs/webdev/Guidelines/typography/index.html +++ b/docs/docs/webdev/Guidelines/typography/index.html @@ -5,7 +5,7 @@ Typography | EEA Design System - + @@ -16,7 +16,7 @@ but 150% tends to be the most quoted sweet spot (and a WCAG recommendation). You should experiment to see what looks best with your text. The line-height value is always divisible by 4 to support the grid.

This is why for body text we use 150% line height, while for headers we use 120% due to the larger font size where using 150% would add too much space between the heading lines.


Letter spacing

Letter spacing (also known as character spacing or tracking ) is the adjustment of the horizontal white space between the letters in a block of text. Unlike kerning, which affects only designated pairs of letters, letterspacing affects every pair. By adjusting letter spacing to the environment you are working with you will help readers consume your information faster, and more efficiently. The fun part is that they won’t even notice it!

Headings -0.015em (-1.5%)

Body 0%

Caption and Small text 0.01em (1%)


Text color

Body text color is blue-grey-5 (#3D5265)

Color also plays a key role in an interface’s typographic hierarchy, often by established types like:

  • Brand colors and supplementary colors, for most interface text whether body or heading.
  • Interactive, not just for links but also flat buttons, tab labels, and more
  • Disabled, often resulting is especially lower contrast treatments
  • Error, usually red, for the highest contrast with its surroundings

Line length

Line-length is the number of characters displayed in a single line. Lines that are too long or too short can distract readers. For readability, limit to no more than 80 characters including spaces for desktop. Line length for mobile is recommended to use 40 to 60 characters including space per line.


Base Font Size

We set 16px (1rem) as the base font size for body text to ensure readability. It is the default font size for most browsers.


Desktop Styles

Heading 1

Font Size: 44px or 2.75rem
Letter spacing: -0.015em (-1.5%)
Line height: 1.2 (120%)

Heading 2

Font Size: 32px or 2rem
Letter spacing: -0.015em (-1.5%)
Line height: 1.2 (120%)

Heading 3

Font Size: 26px or 1.625rem
Letter spacing: -0.015em (-1.5%)
Line height: 1.2 (120%)

Heading 4

Font Size: 20px or 1.25rem
Letter spacing: -0.015em (-1.5%)
Line height: 1.2 (120%)
Heading 5
Font Size: 18px or 1.125rem
Letter spacing: -0.015em (-1.5%)
Line height: 1.2 (120%)

Body text

Font Size: 16px or 1rem
Letter spacing: 0 (0%)
Line height: 1.5 (150%)

Caption text

Font Size: 14px or 0.875rem
Letter spacing: 0.01 (1%)
Line height: 1.5 (150%)

Small text

Font Size: 12px or 0.75rem
Letter spacing: 0.01 (1%)
Line height: 1.5 (150%)

Mobile Styles

Heading 1

Font Size: 30px or 1.875rem
Letter spacing: -0.015em (-1.5%)
Line height: 1.2 (120%)

Heading 2

Font Size: 24px or 1.5rem
Letter spacing: -0.015em (-1.5%)
Line height: 1.2 (120%)

Heading 3

Font Size: 20px or 1.25rem
Letter spacing: -0.015em (-1.5%)
Line height: 1.2 (120%)

Heading 4

Font Size: 18px or 1.125rem
Letter spacing: -0.015em (-1.5%)
Line height: 1.2 (120%)

Body

Font Size: 16px or 1rem
Letter spacing: 0 (0%)
Line height: 1.5 (150%)

Caption

Font Size: 14px or 0.875rem
Letter spacing: 0.01em (1%)
Line height: 1.5 (150%)

Small text

Font Size: 12px or 0.75rem
Letter spacing: 0.01em (1%)
Line height: 1.5 (150%)

Typography tokens

Weight

Token nameValueStyle
font-weight-1100Thin
font-weight-2200Light
font-weight-3300Book
font-weight-4400Regular
font-weight-5500Medium
font-weight-6600SemiBold
font-weight-7700Bold
font-weight-8800ExtraBold
font-weight-9900Black

Line height

Token nameValue(no unit)
font-lineheight-00.95
font-lineheight-01.1
font-lineheight-11.2
font-lineheight-21.375
font-lineheight-31.5
font-lineheight-41.75
font-lineheight-52

Letter spacing

Token nameValue(em)
font-letterspacing-000-.02
font-letterspacing-00-.015
font-letterspacing-0-.01
font-letterspacing-1.01
font-letterspacing-2.015
font-letterspacing-3.02
font-letterspacing-4.075
font-letterspacing-5.15

Font size

Token nameValue(rem)Value(px)
font-size-00.7512
font-size-0.87514
font-size-1116
font-size-21.12518
font-size-31.2520
font-size-41.524
font-size-51.62526
font-size-61.87530
font-size-7232
font-size-82.2536
font-size-92.540
font-size-102.7544

Font size fluid

Token nameValue
font-size-fluid-0clamp(1.125rem, 2vw, 1.25rem)
font-size-fluid-1clamp(1.25rem, 4vw, 1.625rem)
font-size-fluid-2clamp(1.5rem, 6vw, 2rem)
font-size-fluid-3clamp(1.875rem, 9vw, 2.75rem)
- + \ No newline at end of file diff --git a/docs/docs/webdev/Resources/developer-guidelines/index.html b/docs/docs/webdev/Resources/developer-guidelines/index.html index dce137493b..628f16c7a6 100644 --- a/docs/docs/webdev/Resources/developer-guidelines/index.html +++ b/docs/docs/webdev/Resources/developer-guidelines/index.html @@ -5,7 +5,7 @@ Developer Guidelines | EEA Design System - + @@ -71,7 +71,7 @@ guidelines as to what combinations of props and variations are allowed, to ensure a consistent look and feel. One place to document these constraints is in the control options we have in Storybook.

- + \ No newline at end of file diff --git a/docs/docs/webdev/Resources/theming-guidelines/index.html b/docs/docs/webdev/Resources/theming-guidelines/index.html index 50037364d8..42d6440bbe 100644 --- a/docs/docs/webdev/Resources/theming-guidelines/index.html +++ b/docs/docs/webdev/Resources/theming-guidelines/index.html @@ -5,7 +5,7 @@ Theming Guidelines | EEA Design System - + @@ -28,7 +28,7 @@ it's simply a job of changing one global variable:

// site.variables
/* This adjusts the meta alignment across all elements */
@metaAlign: right;

The same is true with colors used in components, try to avoid custom values set on components only as they should be part of the site.variables color pallete.

Semantic UI global setting example

We see this rule played out in many places within site.variables:

// site.variables
/*--------------
Form Input
---------------*/
/* This adjusts the default form input across all elements */
@inputBackground : @white;

Then within form.variables we have several rules that make use of the global setting:

// form.variables
/* Text Area */
@textAreaBackground: @inputBackground;

/* Inverted */
@invertedInputBackground: @inputBackground;

Check components design when having odd numbers or images

As written down in the Card component issue, if your component accepts images consider how they would adapt in case there is a mix between portrait and landscapei images.

What about situations where you have an odd number of elements or the body of the components differ in size?

The components need to be checked for such situations and to ensure they are flexible to deal with these mix and match elements.

Ex:

If the card is flex based and the parent wrapper is flex as well, consider adding a max-height to the card body or image wrapper so that they all keep a standard size.

Code formatting

  • CSS and less files should be formatted using prettier. Indent space will be 2 spaces.
  • Files should be edited as Unix files, with LF line endings.
- + \ No newline at end of file diff --git a/docs/docs/webdev/Templates/Grid/index.html b/docs/docs/webdev/Templates/Grid/index.html index 6ebf165166..422d0b1915 100644 --- a/docs/docs/webdev/Templates/Grid/index.html +++ b/docs/docs/webdev/Templates/Grid/index.html @@ -5,7 +5,7 @@ Grid | EEA Design System - + @@ -16,7 +16,7 @@

Don’ts

Do not make gutters too large or the same width as the columns. Oversized gutters will not leave enough room for content and may prevent a layout from appearing unified.

Breakpoints

A breakpoint is the screen size threshold determined by specific layout requirements. At a given breakpoint range, the layout adjusts to suit the screen size and orientation. ΕΕΑ provides responsive layouts based on 4-column, 8-column, and 12-column grids, available for use across different screens, devices, and orientations. Each breakpoint range determines the number of columns, and recommended margins and gutters for each display size.

BreakpointsColumnsGuttersMargins
Mobile320-480px420px or 1.25rem30px or 1.875rem
Tablet481-835px8 20px or 1.25rem40px or 2.5rem
Desktop1025px and above1220px or 1.25rem140px or 8.75rem
- + \ No newline at end of file diff --git a/docs/docs/webdev/Templates/PageHeader/index.html b/docs/docs/webdev/Templates/PageHeader/index.html index 1ec0db9b7a..a259a74e25 100644 --- a/docs/docs/webdev/Templates/PageHeader/index.html +++ b/docs/docs/webdev/Templates/PageHeader/index.html @@ -5,13 +5,13 @@ Page Header | EEA Design System - +

Page Header

The page header component provides users with the context of the page. It is always placed just below the site header.

Anatomy

ComponentsMandatoryOptional
Page titleyesno
Meta (content type, published date, modified date, reading time)noyes
Download - Bookmark actionsnoyes
Breadcrumb
The Breadcrumb component provides information on the page and its relationship to the site's hierarchy and structure.
It is optional if your website's navigational structure has less than 3 levels.
noyes
Image copyrightsyesno

Do's

  • ensure the pages contain all the components and elements in the anatomy table above
  • always use a page header when building your internal pages
  • when choosing a background image, make sure it highlights the main object related to the content and is meaningful
  • choose image copyright text colors accordingly, use light font color on darker images and darker font color on lighter ones

Don'ts

  • don't use more than one-page header per page
  • do not use a background image unless there is a communication need, as it might be a distraction

When to use

  • to highlight the topic of the page, or to show important information about the page

When not to use

  • the page header is not used for the homepage of the website
- + \ No newline at end of file diff --git a/docs/docs/webdev/Templates/SiteFooter/index.html b/docs/docs/webdev/Templates/SiteFooter/index.html index 9789769fe3..a47d48a876 100644 --- a/docs/docs/webdev/Templates/SiteFooter/index.html +++ b/docs/docs/webdev/Templates/SiteFooter/index.html @@ -5,13 +5,13 @@ Site Footer | EEA Design System - +

Site Footer

The core footer provides supplementary information such as copyright, legal, privacy, social media, contact information and links to other important sites within the EEA. It is always placed at the bottom of every page. Always use a footer when building your page

Anatomy

Νο.ComponentsMandatoryDescription
1EEA logoyesLogo of European Environment Agency (EEA)
2EIONET logoyesLogo of European Environment Information and Observation Network
3Contact information
yesLinks to the associated services available through the EEA site
4Social mediayesLinks to social EEA's social media
5Environmental information systemsyesEuropean Information Systems
6Legal navigationyesContains legal information links - consistent throughout the family sites
7Content owner detailsyesIndicates ownership over the site's content

Do's

  • make sure the footer contain all the elements in the anatomy table above

Don'ts

  • don't use more than one footer per page
- + \ No newline at end of file diff --git a/docs/docs/webdev/Templates/SiteHeader/index.html b/docs/docs/webdev/Templates/SiteHeader/index.html index 5d6bc6a451..07d1a30b93 100644 --- a/docs/docs/webdev/Templates/SiteHeader/index.html +++ b/docs/docs/webdev/Templates/SiteHeader/index.html @@ -5,13 +5,13 @@ Site Header | EEA Design System - +

Site Header

The EEA header shows users that they are on EEA portal and which service they are using.

Anatomy

Νο.ComponentsMandatoryDescription
1Official EU website statementyesAll official European Union website addresses are in the europa.eu domain
2Environmental Information systemsyesComplete list of EEA's thematic websites
3Languages
yesLanguage select
4EEA IdentityyesLogo of European Environmental Agency
5MenuyesMain navigation of the website
6SearchyesEnables the user to search and retrieve related information from using keywords

Do’s

  • You must use the EEA header at the top of every page if your service is being hosted on one of these domains:
    • Eea.europa.eu
  • Make sure that contain all mandatory element from the Anatomy table

Dont’s

  • You must not use the EEA header if your service is not being hosted in one of the above domains.
- + \ No newline at end of file diff --git a/docs/docs/webdev/Utilities/intro/index.html b/docs/docs/webdev/Utilities/intro/index.html index 60e5d2a815..b91983a228 100644 --- a/docs/docs/webdev/Utilities/intro/index.html +++ b/docs/docs/webdev/Utilities/intro/index.html @@ -5,13 +5,13 @@ Utilities | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/whatsnew/index.html b/docs/docs/whatsnew/index.html index 6f12ce25de..0505558424 100644 --- a/docs/docs/whatsnew/index.html +++ b/docs/docs/whatsnew/index.html @@ -5,13 +5,13 @@ What's new | EEA Design System - +
-

What's new

EEA Design System (1.0)

Components ready to be used

The following components are ready to be used as Volto blocks, slate integration, or via the advanced block styler:

  • Accordion block
  • Call to Action block
  • Callout - part of the Description block, slate
  • Card - part of the Teaser block and Listing block, it includes several variations like round card e.g., used for Avatar
  • Divider block
  • Headings slate
  • Hero block
  • Item block - used for text with an icon (remixicon or custom SVG/image) on the left/right
  • List slate - ordered and unordered
  • Quote block
  • Statistic block
  • Tag block
  • Table block
  • Tabs block
  • Timeline block

Future releases

Below is a non-exhaustive list of the work-in-progress which is planned for future releases:

  • Navigation Portlet (used on the left/right hand of content)
  • Spacing/padding system. We want to add the ability for editors to consistently apply various spacing/padding on certain components in order to allow a better alignment when components are used together.
  • Improve docusaurus and storybook with more components, controls, and variations in order to better reflect what is possible in Volto.

Generated by auto-changelog.

Unreleased - 2023-04-03T14:53:04.159Z

💅 Enhancements

  • change(logos): updated eionet logo used in the site footer #318 from eea/footer-logo-update 70671d0
  • change(breadcrumbs,mega-menu): better screen readers support, see links instead of groups #309 from eea/firefox-accessibility-tab-issues d6b0b4a
  • refactor(megaMenu): align menu items with demo site for better testing 82a5c84
  • refactor(breadcrumbs): updates on structure and story for accessibility 770c8c0
  • change(logo): update eionet svg 3c87fc7
  • refactor(megaMenu): Restructure Topics and Countries lists d816e7a
  • change(mega-menu): use lists for navigation, enhance voice over support for better accessibility d13137f
  • refactor(header): firefox accessibility errors fix c7d35b9
  • change(breadcrumbs): label modification for better screen reader output c967bef
  • refactor(megaMenu): clean up function after test 883eb73
  • change(mega-menu): added code to align countries left column subtitle with the right column 1aa33dd
  • change(mega-menu): sub-title padding tweaks for better spacing normalization e08668d
  • change(breadcrumbs): fixed sizing of breadcrumbs list items 1761e98

🏠 Internal changes

  • style(megaMenu): remove comments and unused properties fa5f8f8

🏠 Documentation changes

1.0.6 - 2023-03-29

🚀 New Features

  • feat: add viewport-(width/height) less functions and fixed banner image url #329 from eea/develop e8e70bd
  • feat: add viewport-(width/height) less functions 68300a3

💅 Enhancements

  • change(docusaurus): set full class name for remix icons f435e10
  • refactor(Banner.jsx): use flattenToAppURL helper function to get image source URL 24b13d7

🏠 Internal changes

  • style(theme): update container width and margins in eea theme 3e4446a

🛠️ Others

  • horizontal overflow hidden in view mode f395f27

1.0.5 - 2023-03-28

🚀 New Features

  • feat: improve full-width class 70bba7e

🐛 Bug Fixes

  • fix(banner): Add missing divider for time tag #327 from eea/banner-metadata c46a583
  • fix(banner): Add missing divider for time tag 7d68c39

1.0.4 - 2023-03-27

🚀 New Features

  • feat(copyright): Add copyright prefix - Image - refs #250724 6a72772

🏠 Internal changes

  • style(copyright): Cleanup useless min-height - refs #250724 f2457df

🛠️ Others

1.0.3 - 2023-03-24

🐛 Bug Fixes

  • fix: improve full-width class 9322259
  • fix(header): Remove z-index from subsite logo #320 from eea/subsite-logo 5091100
  • fix(header): Remove z-index from subsite logo d433a97

💅 Enhancements

  • change(header): Add search popup customizations from eea-website-theme 43e5a78
  • change(popup): create custom popup for better accessibility 036aac9
  • change(popup): added most important popup properties from Semantic ui implementation 61f65bc
  • change(banner): use custom-made Popup for better accessibility 10d0fcf
  • change(banner): use custom-made Popup for better accessibility 9108bee
  • change(popup): added also the basic property a4497ac
  • change(colors): update gray-4 color value #321 from eea/update-gray-4 f458ff0
  • change(banner): MetadataField now uses proper time tag when value is datetime b4c4d34
  • refactor(tokens): updated gray-4 b890df7
  • change(footer): Fix error and empty div if no social links are present #319 from eea/footer-social 8922246
  • change(footer): Fix error and empty div if no social links are present 5d934a6

🛠️ Others

1.0.2 - 2023-03-14

🐛 Bug Fixes

  • fix(megamenu): topic menu title is now placed before content 6004bcb
  • fix(megamenu): removed in depth nav_title renaming that set title wrongly to a-z topics 899ca0e

💅 Enhancements

  • change(megamenu): removed special styling from at a glance mega menu section fd0c4c8
  • change(footer): renamed thematic information platforms to environmental information systems e7004a7
  • change(docusaurus): updated static image of footer sections 4ff3185

🏠 Documentation changes

  • docs(What's new): Update 'What's new' d7ed9d6

🛠️ Others

  • fixed accordion selector typo f4cabc8

1.0.1 - 2023-03-13

1.0.0 - 2023-03-13

🐛 Bug Fixes

  • fix(Footer): Open internal links within the same page 5b3e409

💅 Enhancements

  • change(banner): use huge scale instead of full image for better performance 381c58e

1.0.0-beta.6 - 2023-03-10

🚀 New Features

  • feat(site): serve Roboto fonts from eea design system package instead of google fonts #311 from eea/roboto-library f6a1b3e

🐛 Bug Fixes

  • fix: full-width is now properly sized 6e2e348
  • fix(storybook): add fontDisplay 078966a

💅 Enhancements

  • change(image): copyright position fixes, moved image floating to image-block-container 53422e0
  • change(colors:) update the design system colour palette #312 from eea/update-color-palette a5fb694
  • refactor(docusaurus): added roboto library 19de7b1
  • refactor(storybook): added roboto library e991621
  • refactor(tokens): update colours 3a2c1e1
  • refactor(storybook): restored site variables a48478b
  • change(copyright): implemented copyright hover design 6b12441

🏠 Internal changes

  • chore(storybook): switched google fonts to true 4a8cae4
  • chore(colours): changed back yellow 6 87c9bbc
  • chore(lint): lint 9b0f125
  • chore(storybook): lint 29bc809

🏠 Documentation changes

  • docs(colours): colours update 161007e
  • docs(colours): accessibility ee342aa

🛠️ Others

1.0.0-beta.5 - 2023-03-07

💅 Enhancements

  • change(carousel): tweak size of carousel dots for better touch interaction e1fb823
  • change(footer): removed min width and height from links ac33219

🏠 Internal changes

  • style(hiddenStructure): Add hiddenStructure utility to be used with h1 heading on frontpage - refs #158717 672cca2

🛠️ Others

  • fixed less build failure due to changes in footer.less 190bc8c
  • lazyload bg img on footer also ae07162
  • lazyload footer images a0633c9
  • Increase performance - mobile friendly 07d86c8
  • better useOnScreen hook c214b6b
  • role change for accessibility 5e758e0
  • minimum tap dimension for mobile a25e9a8
  • Release 1.0.0-beta.5 e4417e1
  • Add Sonarqube tag using eea-website-frontend addons list b227cf8
  • feature(mobile): increased performance by lazy loading footer images #303 from eea/increase_performance 80d1df1
  • useOnScreen default export 3e6cfdd
  • use aria-labels on dropdown 27e1443
  • prettier a7f8384

1.0.0-beta.4 - 2023-03-01

🚀 New Features

  • feat(footer): Add footer description 2ad0f71
  • feat(footer): Add footer description #306 from eea/footer-description bf655d1

🐛 Bug Fixes

  • fix(footer): Don't show empty row if description is not present 2ca7f7d
  • fix(footer): Add class for children 3c50d15
  • fix(search): Fix search links color #307 from eea/search-accessibility a76f48b
  • fix(search): Fix search links color 69c42ef

💅 Enhancements

  • change(carousel): tweak card width and padding for better arrow alignment e184f70
  • change(storybook): include footer description in storybook e904aa0

🛠️ Others

1.0.0-beta.3 - 2023-02-21

🚀 New Features

  • feat(accordion): storybook accessibility by using buttons for titles #297 from eea/accessibility-accordion 809d52b

🐛 Bug Fixes

  • fix(dropdown): remove close on blur so that we can navigate links using keyboard 5442715

💅 Enhancements

  • change(language): dropdown to use links for proper keyboard navigation 6a7de30
  • refactor(images): cleared unused/renamed images assets 821f5c1
  • refactor(Accessibility): add box-shadow on focus-visible components b1adcc3
  • refactor(images): remove unused docusaurus svgs c5ef14c
  • refactor(header): add escape key functionality, actions from div to button to have proper focus state 8081aa4
  • change(language): restore dropdown duplication in order to properly show and hide language dropdown cb28888
  • change(search): to reflect changes from eea-website-theme 2cc35e0
  • refactor(footer): update p with h3 heading tag for header ca1477b
  • refactor(footer images): removed unused/renamed 186de6b
  • refactor(Accordion): div titles to buttons, test in mobile mega menu accordions eaad4b4
  • refactor(docusaurus): cleanup decorative images fedc4d4
  • change(accessibility): style outline instead of box-shadow 53209f3
  • refactor(Footer): update mobile header size 01ab7f0
  • change(header): set the logo class directly on the link f8fba50
  • refactor(images): clear docusaurus unused pngs db5c611
  • refactor(header-images): removed unused 8250d94
  • change(language): hide language dropdown by default cc6064f
  • change(header): top dropdown menu keyboard navigation #293 from eea/accessibility-megamenu-searchbox 1e6fa65
  • change(button): set focus styling for buttons 33ebfca
  • change(footer): Avoid devtools warning in FooterActions #304 from eea/avoid_warning d774824
  • change(footer): Accessibility update p with h3 heading tag for theme sites title #302 from eea/footer-accessibility 5bf70de
  • change(documentation): Rename all image files to follow the agreed convention #301 from eea/refactor-image-filenames cfe44ef

🏠 Internal changes

  • style(header): react syntax fix 3add127
  • chore(docusaurus): ignore website/.yarn 0b33ffd

🏠 Documentation changes

  • docs(guidelines): add image name convention 290747c

🛠️ Others

1.0.0-beta.2 - 2023-02-13

🐛 Bug Fixes

  • fix(footer): action and copyright #300 from eea/develop 579f3e4
  • fix(footer): action or copyright links are simple a tags for external link 9af5070
  • fix(accessibility): added navigation and footer id's for skip link 48354b9

💅 Enhancements

  • change(footer): typos and modified footer links to be center aligned ac23f04
  • change(footer): added gap for actions and copyright 7d32ddd
  • change(footer): modified footer gap b8a820a
  • change(footer): removed extra text and date from copyright section af47bbe
  • change(navigation): raise z-index of go to top link 485ca72

🏠 Internal changes

  • chore(docs): Update eea.hbs template to beta - refs #158717 196538e

🛠️ Others

1.0.0-beta.1 - 2023-02-09

🚀 New Features

  • feat(search): Add search suggestions style 6b2b77b
  • feat(search): Add search suggestions style #296 from eea/search-suggestions 3b0c956

💅 Enhancements

  • change(search): Add proper margin for search popup 190c9f5

🛠️ Others

1.0.0-alpha.15 - 2023-02-08

🚀 New Features

  • feat(Card): add teaser card grid story 53cac0b
  • feat(utilities): Complete list of text-align utilities - refs #160747 224fab6
  • feat(small): CSS for small HTML tag - refs #160747 ad3c0ad
  • feat(fw-light): Add font weight light utility - refs #160747 c44cf57

🐛 Bug Fixes

  • fix(card): teaser card dimensions on tablet size #290 from eea/teaser-card-grid 013fdf5

💅 Enhancements

  • change(card): added extra content for teaser card story 30690ae
  • refactor(style-menu): add text-color to paragraphs styles #291 from eea/stylemenu-theme-colors 2d78307
  • change(header): Small fix in search popup #292 from eea/search-popup 86c1305
  • refactor(style-menu): add text-color to paragraphs styles 3446bc2
  • change(color): darkCyan is now replaced everywhere by the new green ef3791d
  • change(header): Small fix in search popup 3d622ea

🛠️ Others

1.0.0-alpha.14 - 2023-01-30

💅 Enhancements

  • change(mobile menu): integrate a-z topic with menu rendering logic #287 from eea/develop 05d4c04
  • change(mobile menu): integrate a-z topic with menu rendering logic 246d3d8

🛠️ Others

1.0.0-alpha.13.1 - 2023-01-30

💅 Enhancements

  • change(mobile menu): hardcode a-z topics to '/en/topics-in-depth' #286 from eea/develop 6436224
  • change(mobile menu): hardcode a-z topics to '/en/topics-in-depth' 5235b52

🛠️ Others

1.0.0-alpha.13 - 2023-01-27

🚀 New Features

  • feat(utilities): added has--bg--top center and bottom utility classes 051e6d7

🐛 Bug Fixes

  • fix(header): update green color used in page header #284 from eea/fix-banner-background 29d54db

💅 Enhancements

  • change(site): added fixes from customVolto.css to design package 51ba9b5
  • refactor(Banner): update banner background green color fd4a552
  • change(mobile menu): changed link for a-z topics to point to in depth 721bf23

🛠️ Others

  • 1.0.0-alpha.13 release #285 from eea/develop c966940
  • bump next version to alpha 13 897e906
  • Back to dev 5780dc7

1.0.0-alpha.12 - 2023-01-24

🚀 New Features

  • feat(card, colors): visited color change and title on image option for cards #283 from eea/develop e638ee6

🐛 Bug Fixes

  • fix(mobile menu): sub links when an accordion section is active bb3be81

💅 Enhancements

  • refactor(Card): create card template for stories 2fa77f3
  • refactor(Card): add image with title css 6e6e63e
  • change(card): implement title on image within image section ff6cc60
  • change(card): added image card section, tweaked mobile heading size 0f879e1
  • change(cards): moved image gradient overlay to a mixin.less file 8b4928a
  • refactor(card): Update titles value and size c35ad5c
  • refactor(docusaurus): applied image naming convention ee7bc29
  • change(cards): added image for all storybook card examples 3f19413
  • change(banner): restored label value of metadata field when type isn't date 571a4f2
  • change(card): title padding value for a more balance look 74b6556
  • change(card): removed uppercase transform from title on image 2948ae1
  • change(colors, Docusaurus): Visited link colour change and thematic logo replacement #278 from eea/refactor-visited-link f82d978
  • refactor(storybook): visited link variables b209b2f

🏠 Documentation changes

  • docs(colors): visited link update ece77fe

🛠️ Others

  • fix typos in footer gradient variables 4006640
  • change version to alpha 12 instead of 1 final 3225025
  • feature(card): new card variation with title on top of image #267 from eea/title-on-image-card 2c0ca95
  • Back to dev 477d997

1.0.0-alpha.11 - 2023-01-17

🚀 New Features

  • feat(docusaurus): Header and footer elements section #277 0df271c

🐛 Bug Fixes

  • fix(banner): storybook date input and simplified gradient opacity 7674d76
  • fix(banner): re-added title class on banner title 6d15799

💅 Enhancements

  • refactor(banner): sync storybook and Volto component c9087cc
  • change(banner): removed margin from title 17e592c
  • refactor(banner): sync storybook and Volto component #275 from eea/sync-page-banner-theme 4331fb4

🏠 Documentation changes

  • docs(footer): updates on header elements b41c550
  • docs(footer): add elements anatomy d9f0872

🛠️ Others

  • add(banner): banner title css d003247
  • Release 1.0.0-alpha.11 07e8f85
  • renamed image elements as requested in review 8541fb6
  • remove(banner-gradiant): image gradiant in favour of text 1b58520
  • update(gradient): use 8deg angle 6fd597d
  • update(gradiant): make it 0deg 1bb2696
  • remove(comment) referencing old verison of title 4226d42

1.0.0-alpha.10 - 2023-01-13

🐛 Bug Fixes

  • fix(subsite): Fix logo size on subsite section 65fff54
  • fix(subsite): Fix logo size on subsite section #279 from eea/subsite-fixes 8f6cf94
  • fix(mega-menu): show sub grid only if there are children ddfbd82

🛠️ Others

  • Add variable definitions 293fe65
  • Release 1.0.0-alpha.10 7014d08
  • Add Sonarqube tag using advisory-board-frontend addons list ef58a6f
  • Back to dev 31d4616

1.0.0-alpha.9 - 2022-12-28

💅 Enhancements

  • change(contextnav): Default title is text, custom title is link #273 from eea/context-nav-link-title ef7bdb7

🛠️ Others

  • Show document and folder content-type in Navigation listing 8471db3
  • Default title is text, custom title is link 1ae95b0
  • Context nav title link to # a27a6b7

1.0.0-alpha.8 - 2022-12-23

🚀 New Features

  • feat(copyright): Align copyright options with Volto integration - refs #158210 6bac7f6

💅 Enhancements

  • refactor(logo): import theme site logos to the story 2f29136
  • refactor(logo): update logo and mega search gradient e11f44d
  • refactor(logos): convert logo names to lowercase 07b8228
  • change(item): use default logic of setting align class on content 6b5b47c
  • refactor(logo): update logo 170efe5
  • refactor(logos): convert storybook logo names to lowercase c4b24ec
  • refactor(logo): add eea roboto font logo variations de1224a
  • refactor(logo): add container and segment to logo story 61eff16
  • change(item): removed requirement for aligned classes to be on content 30c0d5d
  • change(logos): cleanup eea logo reference to only eea-logo and eea-logo-white.svg 2796e05

🏠 Internal changes

  • chore(npmignore): Reduce npmjs package size 164c8a5
  • chore(npmignore): Reduce npmjs package size ade9d5b
  • chore(docs): renamed logo mdx to md 52e9d46

🏠 Documentation changes

  • docs(logos): svgs without classes 28a5833
  • docs(logos): add dark mode logos ccc1609
  • docs(logo): update eea logos and add logo wrapper 91cdd66
  • docs(logo): update logos on docusaurus 760e101
  • docs(logos): updated svgs dc224e1
  • docs(logos): add thematic logos 5a21a30
  • docs(logos): add zipped svgs for download 5855bf8
  • docs(logos): wisef logo update 8f90b59
  • docs(logos): move to static, add download 8c1fd5f
  • docs(logos): improve eea logo visibility 82188ab
  • docs(logos): change eea logo to svg f57b846

🛠️ Others

  • logo update or docusaurus thematic logo listing #274 from eea/develop dde90be
  • (feat): Add ability to disable the language select from website top menu - refs #158616 411c8e4
  • Proof reading page header section 230239e
  • bump package version b4628be
  • feature(docusaurus, storybook): logos selection for sites plus inverted options #253 from eea/doc-logo-page dbfc90d
  • Add Sonarqube tag using advisory-board-frontend addons list c4769e9
  • test(Jenkins): Run tests and cypress with latest canary @plone/volto 92feea0

1.0.0-alpha.7 - 2022-12-16

🚀 New Features

  • feat(item): normalized size for image or icon items #258 from eea/refactor-items 945170f

🐛 Bug Fixes

  • fix(card): rounded after removal of has--rounded--true style class d4727af
  • fix(item): removed margin set for description which pushed the text from icon d9d4031
  • fix(project): Proper paths if volto-eea-design-system package is not installed, but in development #270 from eea/correct_paths 0f8ee8d

💅 Enhancements

  • refactor(item): update icon variations and paddings 6a407b3
  • refactor(item): update spacing 2fd91c4
  • refactor(item): initial values for new sizes & add description class 3546296
  • refactor(item): add icon and more size options 1120bb6
  • refactor(item): update image and icon sizes b802573
  • change(item): set same height as width on item images 69cbd23
  • refactor(item): update item part 2 9812ae2
  • change(item): rename large to big class 24ff127
  • change(item): added tiny size that outputs 24px icon sizes 2ea9636
  • change(image): added preview image size default to 400px a0aa867
  • refactor(item): update operator for condition controls 149ccb2

🛠️ Others

  • Proper paths if the package is not installed, but in development 7a2655f
  • Update .project.eslintrc.js a2fd3f2
  • added back descriptionDistance variable until package release 3af811a
  • Release 1.0.0-alpha.7 7e66bcc
  • Add Sonarqube tag using cca-frontend addons list ce47e9b
  • Back to dev cb531c9

1.0.0-alpha.6 - 2022-12-07

🚀 New Features

  • feat(copyright): create copyright component and import it in banner 8fcde9d
  • feat(Header): add hideSearch prop 13ddfe5
  • feat(Docusaurus): Image copyright information #257 from eea/image-copyright-info 2119515

🐛 Bug Fixes

  • fix(tags): content gap when using tags-content wrapper c4eb9b8

💅 Enhancements

  • refactor(hero): add copyright component to hero 0fa88fa
  • change(copyright): implementation to add classes on content sections e10bde6
  • change(copyright): removed color variant 747b8a2
  • change(copyright): removed copyrightVariant from Banner and Hero stories ac62e07
  • change(tagList): modified implementation to align to volto-tags-block 7a57a3d
  • refactor(copyright): remove data section 52cb09d
  • change(copyright): line height to match page header implementation a56254e
  • change(copyright): now uses text color css variable with fallback to white ee7268b

🏠 Documentation changes

  • docs(copyright): copyright documentation a90ed76

🛠️ Others

  • Update usage_markdown.md f76d4a2
  • grammar fixes cb2a5a5
  • Release 1.0.0-alpha.6 6ca32f0
  • feature(copyright): image information #250 from eea/feature-copyright a8618c7
  • lint fix by introducing local variable tagsGap 7b6c0ae
  • Update 3-images.md 1b0ef03

1.0.0-alpha.5 - 2022-11-29

🚀 New Features

  • feat(Iconography): import and showcase remix icons 777112f

🐛 Bug Fixes

  • fix(docusaurus): right bar overflow fix 197c763
  • fix(lists): bullet position by using padding instead of margin 0ecae2e
  • fix(label): color for yellow variant as white isn't accessible on yellow color 91d8880
  • fix(contentBox): avoid text decoration for header-link added on cards 3ccb592
  • fix(label): margin value for ribbon image left and right margin f8e1129

💅 Enhancements

  • refactor(docusaurus): eea color palette in separate file 6c855df
  • refactor(docusaurus): classes for color boxes 80219d5
  • refactor(docusaurus): move supplementary, state and link colors to partials 2776be3
  • refactor(docusaurus): fix side menu / moved more content in palette partial f5b7077
  • change(tag): set gap on tags element for margin between tag elements 726bc6d

🏠 Internal changes

  • chore(colours): fix wrong class name 51ad0a8

🏠 Documentation changes

  • docs(docusaurus): Iconography updates, thematic platforms 2a0e596
  • docs(colors): thematic pages integration ea7a422
  • docs(docusaurus): color updates cc13b54
  • docs(colors): fix swatches accessibility 306cb74
  • docs(docusaurus): typography and colors fixes according to comments on PR ae20a72
  • docs(colours): adjust logos heights 854d4fb
  • docs(typography): merge designer and dev units 65c240e
  • docs(typography): readded extra font sizes, fixed fluid a4a5d89
  • docs(typography): changed em to percentages d417600
  • docs(colors): minors updates and instructions 84ac882
  • docs(colors): blue-grey-6 adjustment e7ab2d1
  • docs(colours): added active colour 574f7a9
  • docs(colors): switch FISE logo to png 335471f
  • docs(colors): updated visited 0248fd1
  • docs(FISE): replaced logo f7d8331

🛠️ Others

  • perf(docusaurus): added remixicon and roboto locally b67b1a7
  • feature(Docusaurus): Updates on color palette information including thematic websites #231 from eea/refactor-docusaurus ec7843d
  • Upgrade Jenkinsfile storybook to yarn 3 d20de8d
  • Back to dev 563fbc5

1.0.0-alpha.4 - 2022-11-22

🐛 Bug Fixes

  • fix(cards-storybook): load slick carousel css for arrow and pagination styles 1159b1b

💅 Enhancements

  • change(cards): refactor cards theming implementation d4e4542
  • change(cards): allow rounded, inverted and theme parameter to be set by has classes 4b4ad89
  • change(card): expect has classes on the card directly 6a9e38b
  • change(utilities): added has text classes to the text alignment utilities e6974c6
  • change(utilities): modified class name for text align using has naming 579a0cb
  • change(theme): ensure that only direct children of container have a default top and bottom margin 7f8b8dc
  • change(build): upgrade action to trigger workflow and wait to latest version c63ad3f
  • refactor(card): theming implementation to allow has theming classes #265 from eea/card-refactoring 24edc99
  • change(theme): add slick-carousel dependency f2eec7d

🛠️ Others

1.0.0-alpha.3 - 2022-11-16

🚀 New Features

  • feat(Header): Add subsite section styling #263 from eea/subsite 00398b8

🐛 Bug Fixes

  • fix(search): position now changed by default to absolute from relative 51b08fc
  • fix(megaMenu): remove paddings for buttons added by active class ec33ebf

💅 Enhancements

  • change(components): load overrides files for our defined semantic files adde7a9
  • change(container): fullwidth now take into account devices without hover 5a35a65
  • change(container): ensure only the top level elements behave like containers 98b85d1
  • change(container): modified column-block grid to remove margin and padding when using full width class 35c1cee
  • change(mega-menu): hide home link and accordion content from mobile menu 1a69172
  • change(container): width from min width 1280px to 1365px max width 66e551e
  • change(container): removed app extras and view setting of layout sizes f6dc1ee
  • change(views): customized DefaultView to pass class into page-document area 91123aa
  • refactor(megaMenu): desktop - use buttons for menu section titles and readjust content cb9315f
  • refactor(megaMenu): add nav_title and nav_description attributes 0d7a568
  • refactor(megaMenu): style sub-title and nav-description b2a48fd
  • refactor(sidemenu): add third level list and items & update active indication e2d87da
  • change(columns): implement narrow, container and wide width classes 9696b54
  • change(container): story to add classes that modify the max width of the containers 37948f8
  • change(container): affect only left and right margin of containers 183265b
  • change(containers): modified class names after layout checks 1dc3689
  • refactor(sidemenu): add is_in_path and is_current attributes for an active example a3fe7fd
  • change(container): story to avoid adding containerwidth property to container div c13d83c
  • refactor(megaMenu): mobile - use buttons for menu section titles a7b632f
  • refactor(megaMenu): update padding variables c5f2583
  • change(views): moved narrow style bellow the default container width styles 72fa58d
  • change(listing): removed container from default view page-document area 69f3d8f
  • change(views): rename classes names to width_view and added app extras layout component 745b772
  • change(container): use important flag for left and right margin a49c83a
  • change(container): add variables for edit and add section of containers f2e2c33
  • refactor(megaMenu): update sub-title paddings 992f919
  • change(site): add a 1rem margin top and bottom on all styled classes dabf6c1
  • change(homepage): removed hiding of staging banner from homepage 4ba2cd7
  • change(container): unset values of page-document on 1200+ browser width dd5bea3
  • change(megamenu): set children to be appended to the right of the menu title b69c23a
  • change(theme): modified wide width to point to 1320px as it's perfectly divisible by 4 8f82573
  • change(theme): modified wide width to point to 1368px as it's perfectly divisible by 4 2349fee
  • change(container): renamed content-text-width to container-text-width 6f788c2
  • change(listing): provide ui container fallback if no class is passed to default view af9e94d
  • change(narrow-view): re-added container class to page-document 56b44a6
  • change(view): set container width for view-viewview class as well 29dc324

🏠 Internal changes

  • style: load header/footer overrides e5b5e0f
  • style(megaMenu): restore item description color 8a19bbb
  • style(megaMenu): restore accordion content bottom padding 8e0c5a7

🛠️ Others

  • Add subsite styling e79c0ed
  • WIP settings column grid width when using full size class affc7ac
  • code cleanup 2cdc3e5
  • fix eslint 30c52e4
  • test(estlint): Fix .project.eslintrc.js aaeaa07
  • modified left value of full width classes with toolbars 70d82d4
  • Release 1.0.0-alpha.3 8fc86a7
  • feature(content): added NarrowView useful for modifying the containers from content-area d937df7
  • jslint fix 9846159
  • Feature(container): flexible container size #260 from eea/feature-flexible-container 8f84c5b
  • Add Sonarqube tag using circularity-frontend addons list 76a41c7
  • fix broken variable call for contentBox.variables introduced in previous commit by mistake d249c11
  • clean up 89f3cb3
  • removed console log from code fad86ae

1.0.0-alpha.2 - 2022-10-28

💅 Enhancements

  • change(documentation): grammarly proof-read suggestions 9f609be
  • refactor(volto-slate): Upgrade to @plone/volto-slate - refs #153447 853d9d1

🏠 Internal changes

🛠️ Others

  • test(cypress): Upgrade to Cypress 10 / Razzle 4 c1c1f4b
  • more explanations a8b2272
  • add announcement bar, showing that EEA DS is WIP e14aeac
  • Update dependencies ee30a2b

1.0.0-alpha.1 - 2022-10-20

💅 Enhancements

  • refactor(footer): update svg and tablet contact link sizes 6aba061
  • change(blockquote): renamed to Callout reflecting the correct naming from Storybook 61a518c
  • change(footer): Shadow removed from logo & tablet updates #252 from eea/fix-footer 6df783d
  • change(colors): updated theme classes for text to use css variable colors cb089fd

🏠 Internal changes

  • style(footer): reduce social icons margin f6a9cf7

🏠 Documentation changes

  • docs(alpha): Update included components in 1.0 alpha version - refs #154387 fcc5af9
  • docs(callout): Rename Blockqoute to Callout in docusaurus - refs #154387 8d733ac

🛠️ Others

0.9.6 - 2022-12-16

🛠️ Others

  • Release 0.9.6 ae19b83
  • feature(copyright): image information #250 from eea/feature-copyright 7b323ed
  • Release-it 1f5671d

0.9.5 - 2022-10-20

🐛 Bug Fixes

  • fix(statistic): margin and slate colors when using the inverted options f263dea

0.9.4 - 2022-10-19

🐛 Bug Fixes

  • fix(edit-interface): block chooser and power user menu item colors when inside content-box 7aee4f1
  • fix(header): hero text going over the logo and menu on mobile resolutions 1434508
  • fix(content-box): z-index of box-inner and added underline to slate links c8b7c7e
  • fix(content-box): adding of underline to links c2f5f0f

💅 Enhancements

  • change(banner,colors): content box theme aware colors banner changes#254 from eea/develop bcb9a8c
  • change(Banner): Add subtitle subcomponent bb67f4c
  • change(item): moved svg filter definitions to item.overrides de70366
  • change(accordion): accordion titles with themes colors can now be modified by css variables e2ac13e
  • change(colors): in lists and callouts to allow color changes 940d1b8
  • change(colors): added backgroundColorSupplementary color variable 1f5262a
  • change(list,bullet): color is no longer primary instead it's text color css variant 8c04670
  • change(statistics): use theme colors with css variable for easy color customization fb72a01
  • change(Banner): Show label in metadata field 1acda3c
  • change(tags, items): use text color with css variable for content color for easy customization 6660e2e
  • change(styling): modified naming of theme css variables a332961
  • change(colors): added backgroundColor color variable b7e6831
  • change(quote): use secondary css var for easier color replacement 7a32312
  • change(statistics): tweaked margin of statistics so that they don't overflow over context boxes b4a8e33
  • change(accordion): allow customization of accordion title background color 6590baf
  • change(colors): introduced css variables for primary colors #247 ac80825
  • change(content-box): override primary text color to white as well 28b43c7

🛠️ Others

  • Include changes in the storybook a4d9fa4

0.9.3 - 2022-10-04

🐛 Bug Fixes

  • fix(card, contentBox): meta font size, removed header override of cards a7f94b9
  • fix(List): Ordered list item story - refs #155248 c70a2bc
  • fix(OrderedList): li third level margin left - refs #155248 fba5cb9
  • fix(cards): inherit color of card description ceda799
  • fix(accordion): Fix content default padding - refs #153783 566adf7

💅 Enhancements

  • change(site): committed fixed from custom into eea design package 9b9a1fd
  • change(jenkins): added yarn policy for storybook building 3d1b844
  • change(docusaurus): typography updates 60a93a4
  • change(item): added item image coloring when applying theming classes 0403fe4
  • change(accordion, site): change text color to tertiary instead of black 4641058
  • change(accordion): allow customization of accordion title with css variables 15e7d27
  • change(content-box): added css variables that will set text color and background for children 86cac53
  • change(tabs): allow customization of tab active and hover color 4370f42
  • change(tabs): color for tabs-block section 6778c92
  • change(cards): by default date is set to appear on the right of the meta section b7b80e8
  • change(cards): carousel dots are now relative positioned daa40a4

🏠 Documentation changes

  • docs(typography): update, local fonts 39a32d9
  • docs(typography): token fix to match used values for heightheight and letterspacing 91693ec
  • docs(typography): token fix to match used values for lineheight ff41b56
  • docs(typography): remove semibold 6eb3e08

🛠️ Others

  • test(cypress): Fix md5 dependency 17f618e

0.9.2 - 2022-09-27

0.9.1 - 2022-09-27

💅 Enhancements

  • change(cards): added ability to change the text alignment using css variables ed532ac
  • change(styles): use flex-end values only instead of end to avoid babel warning 24244b2
  • change(rounded): image size, border radius to ensure more image are turned into rounded options 51e23c1

🛠️ Others

  • Merge pull request #243 from eea/develop 576564c
  • Add Sonarqube tag using eea-website-frontend addons list 4a5be6e
  • Back to dev b251255

0.9.0 - 2022-09-19

🚀 New Features

  • feat(countUp): intall countup package and import it in statistics 10ba7cf
  • feat(docusaurus): custom editUrl function for the components usage pages - taskman refs #154076 93c4240
  • feat(site): Styling scroll-to-text fragments #238 1883fcf
  • feat(docusaurus): added Edit this page link in footer of each page - taskman refs #154076 2cf8746

🐛 Bug Fixes

  • fix(header): Prevent dropdown closing when clicking inside content 838f340
  • fix(cards): position of bullets and arrow clicking on events page 148723 22ef828
  • fix(cards): rounded images show up now even when card parent is cards 48f5e81
  • fix(statistic): add a min-width to content so unwrapped statistics don't break 7c5d511
  • fix(sideNavigation): add role list to list item 58f322b
  • fix(sideNavigation): remove unused useState import f9ea677

💅 Enhancements

  • refactor(sideNavigation): implement the design to the initial navigation & make component dynamic b673d63
  • refactor(header): update top bar 626bdd5
  • refactor(statistic): create custom export and add links 9f9ed56
  • refactor(statistic): update inverted style and add background variations 7578dc6
  • refactor(statistic): remove horizontal display on mobiles & update columns control 58f00e1
  • refactor(header): minor fixes spotted in testing 0f0f3ab
  • refactor(header): update main section heights d669f01
  • refactor(sideNavigation): remove green border and divider 939cd9b
  • refactor(link): update colors for link states 3e9f599
  • change(cards): styles img tag outside of .image ee89274
  • refactor(sideNavigation): update controls a3e8430
  • refactor(statistic): fix firefox issue for fit content 87aa113
  • change(statistics): rearrange controls order b19ae70
  • refactor(statistic): add max width to wrap text for all content 758f8ce
  • refactor(statistic): add max width to label so it wraps the text 824a127
  • change(Side menu & in page navigation): styling according to figma design #221 b2df858
  • change(header): align header with latest figma changes #232 135cd68
  • change(cards): integration when cards also contain call to action buttons f0d8766
  • refactor(iconography): icon group headings b9ccd80
  • refactor(header): add variables for some sizes 8eae84e
  • refactor(Statisctic): Rename slateVariation to extraVariation a07c589
  • change(docusaurus): started example on how to add headings for iconography 53cf843
  • change(cards): remove center alignment of rounded cards body area, only the image is now centered fdfac48
  • change(color): updated link colors #234 feabfe7
  • change(mockup): Access to figma style tokens 0bb25be
  • refactor(statistic): update margin 5190f56
  • refactor(button): adjust vertical margin db6d441

🏠 Internal changes

  • style(statistic): update decimal point 7976aa4
  • style(link): update visited link color d3b18b3

🏠 Documentation changes

  • docs(iconography): added icons, guidelines 0073f1d

🛠️ Others

  • Delete 2-test-new-page.md 749eff9
  • Create 2-test-new-page ab623ff
  • Release 0.9.0 eb7e2e5
  • stylelint fix 114e3f9
  • Move text fragments style to site.overrides 8368cbe
  • Styling scroll-to-text fragments 1bb3914
  • Update Header.stories.js 9036c74
  • feature(Docusaurus): Reflect usage of remixicon in iconography page #239 0802b32
  • Update 1-design.md 146115a
  • Test workflow for contribution - taskman refs #154076 dcb924f
  • perf(figma): access to style tokens 27d8dbe
  • Rename 2-test-new-page to 2-test-new-page.md 4e3be10

0.8.1 - 2022-08-26

🐛 Bug Fixes

  • fix(message): fix size controls ee51e1d
  • fix(docusaurus): intro page hero title color now that headers are using tertiary color 618e3cb

💅 Enhancements

  • refactor(message): restore semantic variables 1c16621
  • refactor(messages): mix semantc and token colors for messages 12efa75
  • refactor(emotiveColors): temp update for tests 61a720c
  • change(footer): removed line between sections and moved actions back to the bottom of footer d9f33e4
  • change(storybook): headings storybook now uses tertiary color by default reflecting site options 1061e77
  • refactor(message): add container to story 1259ece
  • refactor(message): remove override with custom background color on error 9b40cd7
  • refactor(message): add header controls 960c2f7
  • change(message): use semantic colors for messages #204 from eea/refactor-message 22d2c43

🏠 Documentation changes

  • docs(figma): added figma files to repo 6bd4144

0.8.0 - 2022-08-20

🚀 New Features

  • feat(IconCard): card with icon instead of image a85a179

🐛 Bug Fixes

  • fix(docusaurus): typography guideline now has real font values for headings, body, caption and small text 9508db9
  • fix(card): fix content gaps, adjust new meta section and update text color for default f1a78e1
  • fix(item): remove duplicate argType dde0be5
  • fix(iconCard): add aria-label at links 44f64c7
  • fix(card): merge fix df440ec
  • fix(heroblock): color even on edit page by inheriting color instead of using the tertiary color ac53fb7
  • fix(tab): add tabindex for accessibility error ab512be
  • fix(carousel): restore missing variable 1728312
  • fix(carousel): restore flex grow for cards and opacity for arrows ce71305

💅 Enhancements

  • refactor(carousel) add links in carousel cards & update structure and variables of less files f99cb21
  • refactor(iconCard): add control for variations and link 5e1b6a1
  • change(docusaurus, fonts): documented font letter spacing modification 522712a
  • refactor(card): css updates for card variations and styling updates c8b4a43
  • refactor(publicationCard): add links and fix accessibily issue 80adf6c
  • refactor(card): add new section in meta and remove links bfb82ae
  • refactor(item): add stackable functionality 8d714fa
  • refactor(card): update meta section and controls 5e28e12
  • refactor(roundedCard): remove unnecessary code and controls and add all variations 6305c54
  • refactor(roundedCard): add optional link for image and header a6d3bf2
  • refactor(card): add tertiary hover and update css selectors ca06948
  • change(fonts): updated font sizes with values given in figma 4b0ae48
  • change(style): color, space and adjust line-height as described in docusaurus 3366da2
  • change(headings): only h2-h6 get tertiary color 7d81308
  • change(site): removed Archivo import as we should only use Roboto font a6af056
  • change(docusaurus): use tertiary color for headings and body color mirroring the design system styles 145fe73
  • change(fonts): modified headings font size as well as line height f0771ea
  • change(fonts): updated font sizes with values given in figma f16eef7
  • change(docusaurus): use Roboto font from google fonts also for docusaurus adca8e9
  • change(headers): added headerColor variable so that thematic sites can easily choose another heading color f09d2c5
  • change(fonts): typo fixes for typography section of docusaurus cae4b02
  • change(fonts): modified footer and header values afer global font size changes f160d35
  • refactor(iconCards): run prettier fe84e46
  • change(typography): inherit header colors with @headerColor variable 91d9357
  • change(breadcrumb): use tertiary color also for breadcrumb c5cbd44
  • change(heading): on homepage on the first hero set font size to h1 and inherit color 5711096
  • refactor(carousel): update card titles to display styling fix edd966b
  • change(docusaurus): use the tertiary color for body and heading colors 11c4ed4
  • change(typography): modified lineheight-0 after headers now use 1.2 instead of 1.25 04d78a8
  • refactor(card): add links to cards and replace description with title in carousel 0258737

🛠️ Others

  • feature(heading): and cards refactoring #227 from eea/develop 334fbda
  • Update package.json 3870cf3
  • Header refactor 153536 #226 from eea/header-refactor-153536 87a6fe7
  • feature(item): icon is now stackable moving the icon on top #220 b716acf

0.7.6 - 2022-08-15

💅 Enhancements

  • change(footer): Footer updates 147837 #225 fa9ae58
  • refactor(footer): initial redesign of main section 8e85617
  • refactor(footer): restructure theme sites logo columns dcba45a
  • change(footer): set actions before thematic section on mobile db25f96
  • change(footer): fix missing key warning from react dev 77f72d5
  • change(footer): Footer updates 147837 #222 32fed23

0.7.5 - 2022-08-11

💅 Enhancements

  • change(megamenu): mobile improvements with See all links, active elements and non accordion children #224 6767b99
  • change(megamenu): render accordion only if children have children be63ce2
  • change(megamenu): mobile menu design tweaks as seen in latest figma 26d74dc
  • change(megamenu): removed icon from at a change menu items and they are no longer bold as requested 043e772
  • change(megamenu): reset first level panels after each item pass 175351b
  • change(megamenu): mobile menu improvements #223 b3cabfe
  • change(megamenu): fixed key error warnings 075bf01
  • change(megamenu): handle default active sub accordion 6192a99
  • change(megamenu): enable active border only for items not titles fb0b869

🛠️ Others

0.7.3 - 2022-08-04

💅 Enhancements

  • change(megamenu): added icon on mega menu header section d0ad4d8

0.7.2 - 2022-08-03

🐛 Bug Fixes

  • fix(contentBox): z-index of content hidden by bg when using content-box-inner c5a7dac

🛠️ Others

  • Set focus on search input field in the popup on click d12c051
  • Make cypress tests work with both slate and draft selectors 4d8e5b1

0.7.1 - 2022-08-01

0.7.0 - 2022-08-01

🚀 New Features

  • feat(accordion,buttons): primary, secondary and tertiary variations #209 c34617f

🐛 Bug Fixes

  • fix(megamenu): key warning errors 4ecd279
  • fix(container): add padding also for block editors when we are on the add page not just edit b857aad
  • fix(header): bump opacity of gradient class to get rid of green hue of header text 2011b40
  • fix(header): remove console log 3a20023

💅 Enhancements

  • refactor(callToAction): add tertiary variant and restructure exports ac6695a
  • refactor(accordion): add color variations 3504c15
  • change(megamenu): WIP bringing back rendering of item with callback and path modification 6e43d43
  • refactor(megaMenu): add slide down transition and update targetRefs on close 9667157
  • change(megamenu): use renderMenuItem in order to render menu items 9ed5cbd
  • change(footer): replaced eionet logo with an svg variant and tweaked size of eionet to match size of eea logo 32ce462
  • refactor(callToAction): update tertiary state colors 159668a
  • change(accordion): style default accordion using the grey from semantic ui e24907d
  • refactor(accordion): add variations and create a default export 4a9c68f
  • refactor(colors): add tertiary shades for element states 1e24a7e
  • change(tests): try to modify tests to use slate instead of draft a2e2485
  • change(megamenu): set active class on storybook list items 112bff1
  • change(megamenu): add border for active element of menu 5e7dfa5
  • change(package): condition modification of navDepth settings dd21dad
  • change(mega menu): use non variable to fix build of volto-kitkat-frontend 3ecd652
  • change(header): prefix mega-menu active class for adding border 32898cb
  • change(tests): use data-slate-editor instead of contents that was found in draft js instead of slate 1e0413c
  • change(stories): hide variant control from button link story 43f8c41
  • change(stories): hide variant control from button link story aea7126

🛠️ Others

  • feature(theme): added context navigation component story and default style 5a6955f
  • feature(megamenu): open default accordions on mobile navigation based on pathname cc299c1
  • fix eslint warnings 3b30282
  • bump release version to 0.7.0 fa82cbd
  • Theme fixes, mega menu selected element both in desktop and mobile #211 b482729
  • feature(mega-menu): added menu slide down animation #208 4360d0e

0.6.5 - 2022-07-06

🐛 Bug Fixes

  • fix(header): double click to close dropdown is no longer required b8a2ed0
  • fix(header): menu generation when atAGlance isn't found d68b03c
  • fix(menu): removed minHeight that enlarged the global menu 133be1e
  • fix(hero): image dimensions when full width and height isn't enabled 4114f73
  • fix(contentBox): removed negative z-index that hid fullwidth bg color bd60faf

💅 Enhancements

  • change(hero): tweaked hero block height and padding 994b6f8
  • change(item): tweak size and padding of icon when used inside item dbdef19
  • change(typography): updated letterspacing values and clarified values used for certain type tokens 8a13bf8
  • change(item): enable theming for icon and text color and added tertiary option 6d4444f
  • change(header): top section chevron sizes and margin as requested in enhancements document b307c74
  • change(cards): add underline to links when applied to headers and use tertiary color by default 874f956
  • change(utilities): wrap in quotes h2 and h3 of quoted-wrapper 8aa4716
  • change(package): bump package version to 0.6.5 denoting bug fixes release 0585aeb

0.6.1 - 2022-07-01

🚀 New Features

  • feat(UnderlinedTitle): create story and necessary utilities 8beb56b
  • feat(headers): added underlined titles with theming support af67561

💅 Enhancements

  • refactor(heading): move underline story and update controls 2c9bfd2
  • refactor(underlineTitle): add content box for different variations 0878915
  • refactor(underlinedTitle): add control for changing heading size 211f515
  • refactor(underlinedTitle): Restore text variation dropdown control bd8c611
  • refactor(utilities): add color variation for headings and text 7e3a779
  • refactor(utilities): update border bottom utility and restore line height for headings 7fe4a7b
  • refactor(headings): update the line height of headers according to docusaurus instructions 9da19b3

🏠 Internal changes

  • chore(countup): package for statistics 26fcd09

0.6.0 - 2022-07-01

🐛 Bug Fixes

  • fix(item): adjust the container in stories a848c46
  • fix(tag): align start for tags on mobile, update path for Tag List and add containers b9de845
  • fix(item): update image width & height on mobiles and add 3 line clamp for description 0cd2c46
  • fix(pageheader): metadata font size on mobile to be readable 0a9b1fa
  • fix(breadcrumb): fixed variable name for breadcrumb item 2b547eb

💅 Enhancements

  • refactor(Item):create item story with custom default class 069ae02
  • refactor(pagination): add pastanage menu overrides and remove any eea theme css from default story 5080810
  • refactor(item): update variables from px to rem 30eed78
  • refactor(Item):add default item mobile padding 3518465
  • change(site): added fixes from custom 0fe4d80
  • refactor(Pagination): add default pagination stopry and rename previous as Secondary a5e3e13
  • refactor(pagination): comment out secondary pagination and its styling bcf4cff
  • refactor(tags): remove content class and add flex wrap d6333ca
  • change(logo): use a real svg logo for white eea logo 3b80dc7
  • change(header): show eea information systems on tablet as well ce82ceb
  • refactor(tokens): update letter spacing tokens 5f8753b
  • change(letterspacing): updated letter spacing positive values b31818f
  • change(pageheader): add bottom margin on mobile for sharing dropdown actions d3cda47
  • change(pageheader): removed blogger, reddit and stumbleupon sharing links e4acc4e
  • refactor(Item): add default item background color c978c8d
  • change(package): bump package version 1f01f72

🏠 Internal changes

  • style(item): update item image e585e9d

🏠 Documentation changes

  • docs(colors): token usage c433ec6
  • docs(Docusaurus): typography and spacing updates 48d1269
  • docs(Docusaurus): various fixes a972a31
  • docs(typography): updates 66d95e4

🛠️ Others

  • Tabs block custom border left/top ca4cce0
  • Fix sidebar tabs in Volto CSS c287db5

0.5.5 - 2022-06-23

🐛 Bug Fixes

  • fix(contentBox): color of cards when inside content-boxes 76a4520

💅 Enhancements

  • change(homepage): moved fixes of homepage to custom and colored carousel arrow 0a226ef

0.5.4 - 2022-06-16

🐛 Bug Fixes

  • fix(block-style): Content box preview in sidebar 6362766
  • fix(header): ensure transparency goes as high as the search icon 4470e13

💅 Enhancements

  • change(contentBox): add background as before element instead of using full-width 7e0a596
  • change(content-box): content box links are now underlined f7976f5
  • change(homepage): added fixes from custom c3e0333
  • change(hero): add margin top with the height of the top section on edit fefa6bb
  • change(cards): fix default card color when inside content-boxes 6fdf3aa
  • change(container): removed override of content-box-inner container 66fe7d4

0.5.3 - 2022-06-16

🐛 Bug Fixes

  • fix(homepage): hero and homepage fixes for #151156 #198 43d4efc
  • fix(header): fixed top section width on edit page ce5898b

💅 Enhancements

  • change(hero): added min height to hero-block-image-wrapper 3cc37c0
  • change(hero): spaced hero block has a 3rem margin top and bottom c463b03
  • change(hero): added extra top margin on hero-block-body from tablet and up within homepage 64142c3
  • change(hero): tweak min height of hero block e1271b4
  • change(card,contentBox): use inherit for text color to inherit black from body c1ba3b6
  • change(container): on section-edit modify only left and right padding values fe6e3ec
  • change(utilities): bump z-index of overlay class ede3209
  • change(hero): fixed variable reference for margin of body from homepage 092b90b

0.5.2 - 2022-06-14

🚀 New Features

  • feat(contentBox) : add new Content Box component 2ebbb47
  • feat(ContentBox): Add primary, secondary, tertiary themes 87cb2fe
  • feat(ContentBox): Update storybook with available themes 93b26b2

💅 Enhancements

  • refactor(contentBox): restructure the component to be more flexible f0d2de6

🏠 Internal changes

  • chore(contentBox) : add lint changes 5aaf740

🛠️ Others

0.5.1 - 2022-06-13

💅 Enhancements

  • change(header): changed homepage text color 64ce8b6
  • change(hero): added styles for adding dark overlay to hero bf1d292
  • change(homepage): hide stagingBanner on homepage fb6e319
  • change(header): use variable for homepage hero-block padding 89ff344
  • change(tokens): modified grey-4 color to point to a 10% shade from original color b406283
  • change(header): added min-height for mega menu needed for 1 items menus 18814f4
  • change(hero): hero section block integration #192 4ea2f40

🛠️ Others

0.5.0 - 2022-06-11

🚀 New Features

  • feat(hero): added storybook implementation of hero component #172 17b9d16
  • feat(hero): add hero block component and stories 6019fc8

🐛 Bug Fixes

  • fix(header): Internal links in mega menu d8ca135
  • fix(header): show active menu when clicking on children a54fa67
  • fix(header): accessibility and dropdown possition fixes 505ac36
  • fix(header): fix accessibility issue by David 783dcec
  • fix(header): dropdowns disappear on resize 52338fd
  • fix(header-topdropdown): dedupe html elements for topdropdowns cd8a2a7
  • fix(header): transparency class should apply on the current bg color or image f9a0033
  • fix(header): mobile dropdown now visible 34371b4
  • fix(header): dropdown disappears after window resize #116 fc7dd8b
  • fix(header-topdropdown): dedupe html dropdown elements for topdropdowns #115 f10a7a8

💅 Enhancements

  • refactor(megaMenu): update mega menu in header component 2d1ce45
  • refactor(header): update structure and variables of top bar af70909
  • change(header): renamed mega menu items href attribute to url 3ed8144
  • refactor(header): update main section and and add color variations f2f0fd1
  • refactor(header): minor updates on colors and widths a70129f
  • refactor(hero): add full-heigh control to adjust height a45cb7c
  • change(header): disable sticky setting until feature is more stable 1d7af95
  • refactor(hero):make button variant and inverted different button controls 7e182ca
  • refactor(header):main bar sticky on scroll up 9c9e7c6
  • refactor(headings): update heading sizes for mobile 19f3cca
  • change(header): hide first link(home) from header menu on site ae7f3b9
  • change(megamenu): typo correction and key setting on list.items 96d2c4f
  • change(header): use Link instead of a tag for menu items 9812b3f
  • refactor(header): add control for inverted logo 023ca45
  • refactor(hero): move quoted utility to h2 tag 7376676
  • refactor(header): add link for menu title inside desktop mega menu 24355d0
  • refactor(utilities): update hex with color token 8dc65ef
  • refactor(header): and mega menu to latest spec #114 44fcf68
  • refactor(header): update search input and file endings afab36f
  • refactor(header): add control that toggles transparency class on main section b8d4bdb
  • refactor(header): restore union dropdown after implementation 7e98bab
  • refactor(header): minor responsive fixes 16a0006
  • refactor(hero): align hero's text and meta seperately 4fa958f
  • refactor(hero):add button variant controls f362a7b
  • refactor(header): update search input 368962e
  • change(header): mark top level active menu item 665c449
  • refactor(hero):prettier & style changes d846884
  • refactor(header): add control for main section stickiness 2f07572
  • change(header): use viewport width for changing mobile text in header dropdowns b50fa58
  • refactor(header): add fluid font sizes 5f2743e
  • refactor(header) add position sticky & transparent for main section 29df772
  • refactor(hero): update variables with new design tokens 1d97922
  • refactor(Language List): render language dropdown as ul and li elements 3617442
  • change(header): introduced item class to the mega menu link content 00ca376
  • refactor(Language List): add less variables 7ccc1cc
  • change(header): disabled active menu when clicking on globalnav links 3f7b5ee
  • change(header): target link instead of span directly 9e865fb
  • refactor(header): remove unused imports 7e232db

🛠️ Others

  • Add item themes; override .block .ui.image width based on size 06010db
  • Move item icon themes to item.overrides 31e8921
  • Override only the width 8d49270
  • Override tile image in .block parrent 005655d
  • Update package.json 9dc3816
  • feature(item): added themes to item icons #190 a6a2907
  • update storybook header.topdropdown e58ac08
  • use volto-screen-helper width ea156aa
  • Add divider content for metadata field in Banner 327ad1c
  • rename to viewportWidth 32162e7
  • don't connect component to store 470b8ba
  • Add end of line 51639d8
  • behave as mobile under 480 only 11b99e1
  • make it account for all mobile-s,m,l 69e23ae

0.4.5 - 2022-06-08

💅 Enhancements

  • change(tabs): Add style for tabs accordion template #187 fb8adbf
  • change(footer): avoid react error by providing key prop to grid column ef0b193

🛠️ Others

0.4.4 - 2022-06-08

🚀 New Features

  • feat(divider): create story for divider b10a2e0

🐛 Bug Fixes

  • fix(divider): restore space between classes c595c15
  • fix(divider): Text colors and transform e524e10
  • fix(footer): story aria labels for social media links 254bdc7

💅 Enhancements

  • refactor(footer): update logos and less structure 66b8e0f
  • refactor(footer): first footer updates d18a2ee
  • refactor(footer): logo updates and adjustments 101bc9d
  • refactor(footer): use tokens and adjust spacing 2cb1669
  • change(footer): moved SubFooter logic to SubFooter.jsx from Footer story 902383a
  • refactor(Divider):add divider with content inside story e2d66dc
  • change(footer): added managed by section as properties 9328fc3
  • refactor(divider): remove custom divider d4870d2
  • refactor(Divider_:remove green color class & add tertiary 95f3018
  • refactor(footer): use remix icons for social links 5ef9aa2
  • refactor(Divider):remove clean class and use fitted prop 8d2be35
  • change(Divider): Rename color property to theme 0deffc8
  • refactor(footer): update links and logo align 7afbab9
  • change(footer): tweaked column sizes to the values before my changes fdf2718
  • refactor(footer): to latest figma design #182 3e0ba2b
  • refactor(footer): move subfooter logic to the proper component #185 3034577
  • refactor(footer): update controls b0b872b
  • refactor(testimonial): update divider 784450a
  • refactor(testimonial): changed divider color to secondary 84282f9
  • refactor(divider): remove custom divider from theme config a0409e8

🏠 Documentation changes

  • docs(divider): switch to secondary color 239844b
  • docs(divider): showcase path fix d5ea03f

🛠️ Others

0.4.3 - 2022-06-03

🐛 Bug Fixes

  • fix(edit): Fix columns/accordion inner toolbar padding fafbb52

💅 Enhancements

  • change(docusaurus): completed removal of description from guides 42424b9

0.4.2 - 2022-06-02

💅 Enhancements

  • change(docusaurus): moved color swatches around in the color guide 8a395fc
  • change(docusaurus): removed description from components and introduced category listing f220bf0
  • change(docusaurus): rename gap to space and added em spaces f5b042d
  • change(docusaurus): moved extra docs to webdev section 1ce0797
  • change(docusaurus): moved md_components files into webdev/md_components 73c1c08
  • change(docusaurus): added category yml for all sections 1740572
  • change(docusaurus): color guideline updates and spacing tokens documentation #148 c1154ba
  • change(docusaurus): modified story links to avoid broken usage tabs 78dc8d8
  • change(docusaurus): renamed several file id's so that they match the incremental naming sequence 11299c9

🏠 Documentation changes

  • docs(Docusaurus): timeline, testimonial, quote and tags aaa54ec
  • docs(spacing): add relative gap tokens 92abc8f
  • docs(colors): updated colors a28c99e
  • docs(tags/content): new page about tags and content 60be402
  • docs(Docusaurus): labeled icons f6a0f61
  • docs(typography): add font size and line height tokens 2ff65e4
  • docs(spacing): add spacing gap tokens 2d53727
  • docs(spacing): add missing gaps 442db46
  • docs(docusaurus): minor fix 6e66513
  • docs(spacing): aligned images e946fe5
  • docs(spacing): new image fcd3294

🛠️ Others

  • merge changes from develop into docusaurus token documentation a940138
  • perf(docs): restructuring order 8f4134d

0.4.1 - 2022-06-02

🚀 New Features

  • feat(languageLabeledIcon) : add new component 110558e
  • feat(LanguageLabeledIcon):add new component d00200c
  • feat(newTabLabeledIcon) : add new component 8f5cd31
  • feat(labeledIconGroup) : add new component 787d648
  • feat(DownLoadLabeledIcon) : add new component 6ea2fa1

🐛 Bug Fixes

  • fix(LabeledIcon) : fix lint errors 91b042f
  • fix(LabeledIconGroup) : fix links for tests daa1065
  • fix(LanguageLabeledIcon):bug fix & languages change 1436e2b
  • fix(LabeledIconGroup):fix based on Langauge & Download Labeled icon components changes 3015864
  • fix(newTabLabeledIcon) : add link item b1a9ada
  • fix(Labeled Icons):minor bug fix 00f3022

💅 Enhancements

  • refactor(labeledIcons): adjust new tab labeled icon to figma and replace px with rems 904615d
  • refactor(LanguageLabeledIcon):implement with pop up 0f3dd8f
  • refactor(labeledIcon): add group wrapper in labeled icon stories 4b7dd31
  • refactor(DownloadLabeledIcon):implement with pop up aa61f9b
  • refactor(labeledIcons): adjust language labeled icon to figma 5741e3d
  • refactor(labeledIcons): adjust download icon to figma and replace px with rems 4ae8530
  • refactor(LanguageLabeledIcons):minor storybook change 78f5544
  • refactor(LanguageLabeledIcon): set language code to uppercase and minor storybook change ac28693
  • refactor(labeledIcon): adjust paddings 9c1ecdd
  • refactor(labeledIcons): update margins for group labeled icons 5fa5ca9
  • refactor(labeledIcons): add variable for icon color 9f9d3cb
  • refactor(labeledIcons): update colors on download links c042642

🏠 Internal changes

  • chore(labeledIconGroup) : lint changes 535cee4
  • style(downloadLabeledIcon) : fix styling 6d8e3ac
  • style(downloadLabeledIcon) : fix alignment 4558017
  • chore(LabeledIconGroup) : lint changes ab36476

0.4.0 - 2022-06-01

🚀 New Features

  • feat(Carousel): create carousel for cards 2b0d737
  • feat(ItemwithIcons): Initial Item group with icons, new item variation 7f4ea47
  • feat(utilities): add file and basic utilities 05c88b2
  • feat(utilities): add file with basic utilities classes #173 855185f

🐛 Bug Fixes

  • fix(tokens): hsla function for shadows b8e5d37
  • fix(tokens): remove css var from less file a9c4224
  • fix(carousel):add storybook controls descriptions 269a603
  • fix(item): remove image width css from item.less 7b21cb2
  • fix(table): Set responsive breakpoint to @tabletBreakpoint 067e018

💅 Enhancements

  • refactor(item): import item.less in theme definitions c516374
  • refactor(Label):add corner,ribbon & basic label stories and styles e2bbbb9
  • refactor(Label):style changes based on label importance class ce4d5d1
  • change(tokens): rename gap to space and added em spaces 719efc4
  • refactor(item): add classes for size, set default to tile and add controls for grouped items d5a0405
  • refactor(tokens): add borders, shadows, shapes and z-index tokens 7069106
  • change(tokens): name spacing tokens gaps and added missing values up to 80px as documented 9fbd912
  • refactor(quote): Rename sourceInfo to extra info 76c2b40
  • refactor(item): WIP replacing unstackable with row e3a44de
  • refactor(tocens): add color design tokens 13bb165
  • refactor(item): adjust margins to match figma designs 6334581
  • refactor(carousel): remove title from story and color on card hover 12a1d7c
  • change(tokens): updated sizes with 4-8-16px increments 1f53d65
  • change(tokens): added size tokens to be used for width of elements cda5dea
  • change(utilities): values need important rule 96150d9
  • change(tokens): added also rem space values aedbbdd
  • change(tokens): updated z-index tokens with negative values 404efe4
  • refactor(tokens): add 14px font size token 8d8695d
  • refactor(docusaurus): restructured and improved sections navigation #174 b47b026
  • refactor(tokens): add 12 and 14px font size token #176 3681147
  • refactor(tokens): remove conditional border radius f0fe5ad

🏠 Documentation changes

  • docs(website): created new sections, improved website navigation 243f0be
  • docs(homepage): adding design system homepage with links for upcoming sections c9a9685
  • docs(docusaurus): copyedit, improved navigation 998762a
  • docs(website): restructuring, moved current DS docs to new folder 8bb612f
  • docs(homepage): copy editing ee37d6f

🛠️ Others

  • Release 0.4.0 f4bc509
  • feature(homepage): added Item group with icons #167 2ec99f5
  • feature(tokens): added borders, z-index, shadows tokens #171 74c1788
  • feature(tokens): added initial color design tokens #169 da3eae0
  • perf(carousel): added slick library ca9be51

0.3.1 - 2022-05-19

🐛 Bug Fixes

  • fix(input,segment): toggle inputs and padding fixes within Volto sidebar forms de030d6

💅 Enhancements

  • change(login): restored width of login container to 376px 0564293

0.3.0 - 2022-05-17

🚀 New Features

  • feat(Callout):create Callout component with Blockquote style 3d486b1
  • feat(callout): Align the Callout component with Volto slate component e9343ff

🐛 Bug Fixes

  • fix(testimonial): fix storybook arg names b9df52f
  • fix(table): tweak responsive table for extra long headers 7f9f9e2
  • fix(quote): fix color and padding issue 310d6b3
  • fix(accordion): Fix accordion active title color 57af165
  • fix(testimonial): remove info arguement 9593d95

💅 Enhancements

  • refactor(Table):add responsive mobile table story and styles aed69e6
  • refactor(testimonial): adjust to volto design | fix avatar image size 546070e
  • refactor(Quote):rename Pullquote component to Quote 9384a0c
  • refactor(Quote):rename Quote.Metadata to Quote.SourceInfo dfae8b1
  • refactor(Quote): rename Author to Source 6d400f6
  • refactor(Quote):move Testimonial component under Quote folder e2467c2
  • refactor(testimonial): readjust rounded card b419334
  • refactor(Table):wrap table with semantic ui container 24ac2bb
  • refactor(Testimonial):minor storybook bug fix 7b6d128
  • refactor(Callout): wrap story with semantic ui container ead362d
  • refactor(quote): update action name to match the functionality caf2e35
  • refactor(table): add borders to responsive table with celled attribute 8a71a67
  • change(table): make use of headerSortableWhiteSpace variable fd836fb
  • change(table): use the @mobileLandscapeBreakpoint for max 480px media query 90880ab
  • refactor(Quote):rename pullquote to Quote in Testimonial f54da19
  • refactor(Testimonial): change card class name e995c32
  • refactor(Testimonial): prettier changes 904594b

🛠️ Others

  • feature(tokens): added tokens folder for design tokens we can use in the system a542172
  • perf(lint): fix f2ef3ab
  • Release 0.3.0 8724b28

0.2.4 - 2022-05-13

💅 Enhancements

  • change(segment): brought back overrides from pastanaga into our theme 14efd02
  • change(container): removed padding from containers restoring thus the defaults c2ed813
  • change(grid-story): added container as grid width is influenced by container width 459f481
  • change(breadcrumb): removed padding from breadcrumb added by container c5df567
  • change(container): modified all outputted widths to align to grid 9f29cef
  • change(breakpoints): restore Semantic UI breakpoints, adding extra needed values e7f5b1e
  • change(container): restore maxWidth to 100% now that the last value is 1120px 8b55c58
  • change(header): wrap header globalnav links useful for editing section 10d4f56
  • change(breadcrumb): added vertical variant to the breadcrumbs like we do in Volto f405f84
  • change(breakpoints): added also contentBreakpoint for backward compatibility b6c9212

🛠️ Others

  • [JENKINSFILE] Add failure comment, no jenkins fail c325bf1
  • prettier changes 134da52
  • [JENKINSFILE] format PR comments 739438c
  • [JENKINSFILE] mention comment author in comment 39a26aa
  • [JENKINSFILE] remove debug, add error per stage 903eecd

0.2.3 - 2022-04-29

🚀 New Features

  • feat(CallToAction):add feat call to action ab53642

💅 Enhancements

  • refactor(button): add container to stories 6c02c19
  • refactor(tab): update vertical tab columns and content b473fab
  • refactor(call to action):render call to action with Button as="a" e7dfabf
  • refactor(button): update inverted button colors c822021
  • refactor(Tab):scrollbar change in mobile & vertical tab fix 0e34cbf
  • change(banner): added icon class to share icons 48e866e
  • refactor(Button): move button to forms folder 94996fc
  • refactor(Tab):minor change in secondary pointing menu variables 280b6c4

🏠 Documentation changes

  • docs(button): import call to action stories e4eed44

0.2.2 - 2022-04-22

🐛 Bug Fixes

  • fix(publicationCard): restore line endings 582859e
  • fix(form): added back overrides from Pastanaga theme a3f7ff8
  • fix(OrderedList) : add list only if sub list exists 8acbc8d
  • fix(label): update highlight label color d55bbb0
  • fix(publication card): run prettier 81a5bfc
  • fix(avatar) : fix naming convention for arg 84fc5fa
  • fix(tab): restore mobile font sizes 58f39be
  • fix(addForm): add min height to add form and fixed block chooser overflow ca4415d
  • fix(OrderedList): adjust margins to fourth sublists 663d384
  • fix(dropdown): being hidden because of third party css 7d353df
  • fix(modal): overflow hidden as clearfix of last child from modal b4923f5
  • fix(RelatedContent):fix merge conflict adc34bf
  • fix(button): labeled class needs to be placed after left or right keyword 53d1204

💅 Enhancements

  • refactor(card): prettier fixes e10e3d6
  • refactor(card): add card variations e16d05b
  • refactor(card): remove stories 0deb0ca
  • refactor(card):delete primary and secondary card stories 1f95d22
  • refactor(Avatar) : remake avatar as card variant ea77cdd
  • refactor(card): add styles for card variations 7407bd3
  • refactor(storybook): add story with related content inside of a tab dca008a
  • refactor(card): Rename variables from avatar to rounded be01316
  • refactor(avatar): update less variables and layer structure f965db1
  • refactor(PublicationCard):remake publication card to be a semantic card variation 5a0c6ab
  • change(button): simplified button styling fe892d6
  • change(button): simplified storybook naming and examples 9a7df4f
  • refactor(Avatar) : convert avatar component to card variation 2004a94
  • refactor(Related Content): change in grid and add see all button 955450e
  • change(button): added back button.overrides from pastanaga theme 3b55acb
  • refactor(card): add card class control 68c91a9
  • refactor(card):delete publication card variables & overrides files 6be8a03
  • refactor(OrderedList): rename TOC to Ordered List and add container to the story e00c4db
  • refactor(card): add card grid fluid story with no columns f38251c
  • refactor(list): remove horizontal control 1f5e576
  • refactor(avatarGrid): update less variables and layer structure db554a8
  • refactor(Related Content):show button when there are more hidden cards 57ff1c8
  • refactor(RelatedContent):change to use new card variant instead of publication card component 7cf424a
  • change(breadcrumb): brought back pastanaga overrides to breadcrumbs bca1c93
  • refactor(card):delete publication card folder & story 68bf773
  • change(buttons): modified basic and circular variant behavior c06fed9
  • refactor(card):tertiary variation minor story update 87b8dca
  • refactor(DescriptionList): add container to story d647c1a
  • refactor(List):render ordered list with ol,li tags 87813c1
  • refactor(OrderedList) : change table of contents story to ordered list cb6197c
  • refactor(publicationCard): update tag and name variables c109ad9
  • refactor(UnorderedList): update list as ul, list items as li and add container to strory 2c096e1
  • refactor(card):organize controls and minor bug fixes f3f6e35
  • refactor(less variables): publication card style changes c5a84e9
  • refactor(less variables): add less to related content e1a5543
  • refactor(RelatedContent):delete publication card component 2ed0ed4
  • change(button): basic button is again without padding, border and background 5a907c7
  • refactor(PublicationCard):remove link wrapper 5911a0d
  • refactor(less variables): change publication card height per viewport d7a5256
  • refactor(Timeline):change timeline icons b2fe0bf
  • refactor(publicationCard): replace px with rems 53bf8da
  • refactor(Related Content): change in related content grid bf856ce
  • refactor(List):render description list with dl,dt,dd tags ec669a7
  • change(button): show only labeled variant for buttons with icons bf49944
  • refactor(card): import image for rounded card ca5a47e
  • refactor(progress): add container to story dfb33bb
  • refactor(storybook): add publication card story with different description sizes 23af97b
  • refactor(List):render default list with dl & dt tags ece2280
  • refactor(storybook): add publication cards stories with longer description 37adefa
  • change(button): basic icon buttons no longer have box shadows c2f3ea3
  • refactor(card): remove story afc5f79
  • refactor(less variables): change card description line number per device 6946fda
  • refactor(card): update rounded card image path 8db3a85
  • refactor(DefaultList): add container to story f971193
  • change(button): bumped z-index of sidenav expand button 445ed8a
  • change(progress,label): color accessibility fixes #151 09cf6e3
  • change(button): text button now has an underline with a focus border like other buttons cdd9043
  • refactor(card): update card variation grids path 756589c
  • refactor(card): minor fixes 3a880d7
  • change(button): primary color is blue and secondary is green 53e0a0c
  • refactor(List):change styles to match with the tags lists are rendered 2673890
  • refactor(progress): update colors for accessibility ea2f454
  • refactor(card): move avatarGrid & relatedContent to Card folder 1959d52
  • refactor(Timeline): change storybook timeline colors to fix accessibility issues 79da8dc
  • change(segment): restore light grey background color for secondary segments 8716b08
  • refactor(relatedContent): adjust column paddings 8a1520d
  • refactor(storybook): clear up code 3ada154
  • refactor(card): use the rounded class for avatar grid 8c000f3
  • refactor(card) Update rounded card class 140b587
  • refactor(avatar): add variable for image border radius c23341c
  • refactor(label): add container to story 565101f
  • refactor(progress): update value color for accessibility error 6fc76f8
  • refactor(card):use jsx extension 413d328

🏠 Internal changes

  • chore(Avatar) : add container to stories 41b748c
  • style(OrderedList): prettier fixes ed95e4d

🛠️ Others

0.2.1 - 2022-04-08

🐛 Bug Fixes

  • fix(version): Switch to 2.0.0.alpha.1 83b8b8e

🛠️ Others

  • cleanup(loader): Remove useless HTML d1d180c

0.2.0 - 2022-04-04

🚀 New Features

  • feat(card) : add new default card color-schme 965adea
  • feat(label): Handle slate links and footnotes f382431

🐛 Bug Fixes

  • fix(buttons,toggles): border and background color when active 147629 #139 ea36f31
  • fix(checkboxes): background color when they are toggles 4b6ab67
  • fix(buttons): border set on basic buttons appearing on svg elements of Volto UI 69ca73f
  • fix(label): Zotero/Footnotes inside label 0ee4d58
  • fix(card) : add control for image url in storybook b28e530
  • fix(less variables):change font family e4bca9e
  • fix(storybook):minor bug fix 9fc53bc
  • fix(tag): fixes merged theme config eb30363
  • fix(Banner): prop types fix a270e5b

💅 Enhancements

  • refactor(tag): splits Tags component to TagList and tag, changes default tags style 78a5f8c
  • refactor(Banner):add banner share pop up in banner story c9688b2
  • refactor(tag): remove classes and actions that add background color ce9b6f9
  • refactor(Banner):change banner's image wrapper implementation 9153dd1
  • change(package): bump release version to 1.10.0 7e984c1
  • refactor(card): align cards and images, update less variables d47c978
  • refactor(card): add class inverted for default card 919a56e
  • refactor(tag): changes component name e1db068
  • refactor(tag): changes color metallicBlue to bottleGreen e4b68ac
  • refactor(less variables): change tag list mobile view fcded3d
  • refactor(tagList): update story to not use tag color classes 8b5b61b
  • refactor(Banner):minor bug fix ff8c352
  • refactor(Banner): add metadata field sub component 327b7e7
  • refactor(banner): add and adjust remix icon for banner action 1bf3ffa
  • refactor(banner): replace px with rem and adjust share popup padding a568329
  • refactor(Banner):add type class to metadata field and apply styles to it 86a2866
  • refactor(less variables):change tag list styles 8670087
  • refactor(banner): share items display flex on desktop 3ff8684
  • change(banner): added background gradient, share popup, metadata show and hide #136 2f5dcca
  • refactor(banner): update gradient 570ee1e
  • refactor(tags): removes hardcoded ':' ea58e86
  • refactor(card): remove card border bc77739

🏠 Internal changes

  • style(card) : add lint and prettier changes 9d9a773
  • style(tag): remove comments 501fcdf
  • style(tag): stylelint and prettier changes 08b6386

🛠️ Others

0.1.9 - 2022-03-25

🚀 New Features

  • feat(all): 1.9 release #124 0d3f6fb
  • feat(callout): Align volto-slate callout with blockquote style 9e0bb49

🐛 Bug Fixes

  • fix(inpageNavigation): restore hidden on top functionality c554e6e
  • fix(list): Fix TOC margin on 3rd level f17da79
  • fix(inpageNavigation) : add smooth scroll animation 42f6564

💅 Enhancements

  • refactor(footer): update visual and mobile margins 64f05af
  • refactor(header): restore union dropdown after implementation a7029c5
  • refactor(pullquote): adjust to the new figma design 78e4606
  • refactor(breadcrumb): adjust font sizes and import remix divider 5fcabaf
  • change(header): use viewport width for changing mobile text in header dropdowns 5a7868e
  • refactor(inpageNavigation): adjust to the new figma design 4073acf
  • refactor(tab): add max width for tab items 366d279
  • refactor(less variables):change pullquote styles 9ad94bb
  • refactor(Pullquote):change quote positions and add Pullquote.Metadata sub component 6bce35f
  • refactor(inpageNavigation): Update to remix icons 19a6061
  • refactor(inpageNavigation) : move icon & text to be in column 0953910
  • change(breadcrumbs): modified breadcrumbs template to behave like breadrumb template 490a559
  • change(package): bump release version to 1.9.0 43a6e4b
  • refactor(breadcrumb): adjust font sizes and import remix divider #120 09a3a01
  • change(menu): modified secondaryPointingItemMaxWidth to a value that equals to 250 ea138a1
  • refactor(pullquote): introduce meta section, use remix icons, integrate slate callouts #119 fd740c9
  • refactor(footer): updated visuals and gradients #117 e5c6d18
  • change(scrollToTop): feature inpage navigation revamp #121 3cf20a8
  • refactor(footer): update visual and gradient 764ec23
  • change(header): use 12px font size for mobile resolution dropdowns 6dad0fa
  • change(nav): added navDepth to 3 in order to enable mega menu integration c4f73fd

🏠 Internal changes

  • style(inpageNavigation) : lint changes 3641d78
  • style(inpageNavigation) : add less variables 0699c70
  • style(pullquote): create variable for icon font size fea9b0a
  • style(inpageNavigation) : add lint & prettier changes f8dd012
  • style(inpageNavigation): remove comment 1aee011

🛠️ Others

0.1.8 - 2022-03-18

🐛 Bug Fixes

  • fix(card): avoid long links from spilling outside of card body area 95b8951

💅 Enhancements

  • change(typography): set heading sizes as detailed in docusaurus typography section 189bf20
  • change(docusaurus): content tweaks, inpage navigation section #112 b62d1b1

🏠 Internal changes

  • chore(docusaurus): fixed grid tablet breakpoint value c7fbc09

🏠 Documentation changes

  • docs(docusaurus): capitalization remove bf8fa44
  • docs(docusaurus): update 1c04976
  • docs(docusaurus): comment address on pr 112 6e4fe3b
  • docs(docusaurus): color minor update 13f9fda
  • docs(docusaurus): tabs and breadcrump update d0547e5

🛠️ Others

  • doc(colours): add more content ec66248
  • Add divider content for metadata field in Banner f1e34bd
  • Release 1.8.0 fd6ba04

0.1.7 - 2022-03-15

🚀 New Features

  • feat(less): add global gap sizes 3c83f20
  • feat(icons): import remix css 29967fb

🐛 Bug Fixes

  • fix(menu): fix border overflow for tabs and pagination e88721f
  • fix(accordion): responsive and accessibility issues c225935

💅 Enhancements

  • refactor(menu): update paddings for tabs and pagination 533a509
  • refactor(accordion): import semantic icon for remix arrows 9aa77d8
  • refactor(all) icons, accordion, button and menu itml #108 52ed2ca
  • change(storybook): segment stories now contain several elements 98a7654
  • change(table): inherit header alignment instead of hard-coding values ebb5193
  • refactor(icons): add remix icons c4c1a92
  • refactor(container): restore mobile width to auto 2df184c
  • refactor(button): update action button hover color bb09d71

🏠 Internal changes

  • chore(docusaurus): docs delete 5f9d733

🏠 Documentation changes

  • docs(colors): corrections da64c4c
  • docs(list): default list showcase 8ded062

🛠️ Others

  • bug(form): input min-width more specific to not break volto interface 3f5b5d4
  • Update package.json 3dba28b

0.1.6 - 2022-03-11

🚀 New Features

  • feat(cards): add custom display for volto-block-image-cards 645096a
  • feat(PublicationCard):create publication card component & styles 3e5f9b7
  • feat(PublicationCard):create publication card component & styles 12cdd5d
  • feat(Related Content): create Related Content component 77eda95
  • feat(Related Content): create Related Content component 08d495b
  • feat(pagination,related) added several r3 components #105 08d47c1

🐛 Bug Fixes

  • fix(Related Content): limit publication card number to 4 e7df032
  • fix(less variables):rename publication card variables 55c6fb8
  • fix(Publication Card): add link to card and arg name fix 36a7c96
  • fix(radio): fix bullet scaling issue with firefox 5f02c95
  • fix(radio): fix bullet scaling issue with firefox dbb2e27

💅 Enhancements

  • refactor(form): remove custom classes and add container to form items 6b5442a
  • refactor(form): remove custom classes and add container to form items d1ec083
  • refactor(form): update form wrapper component a719576
  • refactor(form): update form wrapper component 0736ec7
  • refactor(form): adjust form items to volto theming 4213cfb
  • refactor(form): adjust form items to volto theming 374ffbc
  • refactor(breadcrumb): remove custom class anf and new variables b3cb83d
  • refactor(breadcrumb): remove custom class anf and new variables d5808ad
  • refactor(storybook): clear up unnecessary form elements controls f7e7d5b
  • refactor(storybook): small change in unordered list story 3ffd872
  • refactor(storybook): small change in unordered list story 6ce16e9
  • refactor(pagination): fix menu overrides for tabs that affects pagination fe8c4ca
  • refactor(pagination): fix menu overrides for tabs that affects pagination 3f4b726
  • refactor(Loader):remove image & add background image 70fe041
  • refactor(Loader):remove image & add background image ac38126
  • refactor(list): remove selection control a09b179
  • refactor(list): remove selection control 17bf710
  • refactor(storybook):unordered list minor change df2b727
  • refactor(storybook):unordered list minor change ef6db73
  • refactor(colors): remove metalic blue color b2f95b6
  • refactor(colors): remove metalic blue color 1eea33f
  • refactor(button): update variables b1774d8
  • refactor(button): update variables 061f3e3
  • change(blockquote): treat slate as a variation of blockquote component 19bd9a5
  • refactor(container): remove important from rules e984771
  • refactor(storybook):add textarea control to add/remove fluid class 475f540
  • refactor(container): remove important from rules 1cc6984
  • refactor(storybook): add required attribute to form fields fecee27
  • refactor(progressBar): update progress bar colors with vars c4ef1f0
  • refactor(progressBar): update progress bar colors with vars a44d73c
  • refactor(storybook): add required attribute to form fields 21da79e
  • refactor(list): adjust bullet size 2b29e4e
  • refactor(list): adjust bullet size 61c341c
  • refactor(statistic): add inverted background to global variables 1427e70
  • refactor(statistic): add inverted background to global variables ea25dfa
  • refactor(statistic): remove custom class 46cc560
  • refactor(container): update mobile width d548a44
  • refactor(grid): replace px with rem units e792f51
  • refactor(statistic): remove custom class b5c8e7c
  • change(docusaurus): updated template to change what's new title 3e15f4d
  • change(footer): added display variable for footer site logos d5b3c2f
  • refactor(grid): replace px with rem units f0331d0
  • change(github): auto deploy only on develop branch 11d6b4e
  • refactor(header): implementation in preparation for Volto integration #20 #89 95b136d
  • change(github): trigger autobuild when modifying templates contents 46094b1

🏠 Internal changes

  • style(list): prettier fixes f9e3b05
  • style(list): prettier fixes 8eb715b
  • chore(github): merge changes from develop to develop-itml 063bd6e
  • chore(github): build deployment only on develop branch a5a1b08
  • chore(github): build deployment only on develop branch bb455aa
  • chore(github): merge changes from develop to develop-itml 129c12f

🛠️ Others

  • Revert "chore(github): merge changes from develop to develop-itml" ca9520f
  • refactor breadcrumbs component, make it functional and customizable e902d69
  • rollback(cards): move custom display to volto-block-image-cards 2564b1e
  • bring back segment wrapper and make it attached 8458f03
  • no display: flex for blockquote added from slate 5595ce1
  • Add rule about code length a5f3652
  • Add indenting rule 15c44cb
  • fix warning related to proptype 946c6c6
  • fix profile section css overflow db5126f
  • Add rule about import sorting 804e188
  • don't use volto-slate 6a02976
  • remove segment custom width 1d3ea40
  • Add rule about naming vars 8f9020f
  • update style for accordion title 0b0d678
  • Release 1.6.0 e771e65
  • update bbcab87
  • add margin to <br> element to simulate gap as in design c6685c1
  • make breadcrumbs default size as tiny 589581f
  • remove uneeded style 82a8fb1
  • Add rule about hardcoded values e04e0df
  • Add file mode rule 65c9a93
  • Add DRY rule 66c9c3a
  • set profile section overflow to auto 71ab47f
  • Add Sonarqube tag using eea-website-frontend addons list 647a6e3
  • removed override already present in card.less 50d2ab2
  • update 7a1d482
  • Add functional components rule; add classnames rule 91a0b06
  • added comment about need for removal of this fix later 65b8166

0.1.5 - 2022-03-08

🚀 New Features

  • feat(cards): add custom display for volto-block-image-cards f49ffb6
  • feat(KeyContent): add new component 2534c54
  • feat(docusaurus): Updated developer guidelines ca146ff
  • feat(storybook): add testimonial component 55d9747
  • feat(storybook): add AvatarGrid component b668445
  • feat(storybook):add Loader component f675834

🐛 Bug Fixes

  • fix(breakpoints): fix largest screen breakpoint bug on scaling e4a11c8
  • fix(profile): section css overflow and padding issues #95 bb9eb0f
  • fix(storybook): lint auto changes for AvatarGrid b8e74f1
  • fix(components): add grid structure to various components cc33546
  • fix(header) re-added span tags removed in pull request #74 00702d7

💅 Enhancements

  • refactor(button): styling updates 37afda5
  • refactor(tab): updates on variables and overrides 54bf703
  • change(blockquote): treat slate as a variation of blockquote component 5e8a8b8
  • change(footer): added display variable for footer site logos 2f942b4
  • refactor(checkbox/radio): remove header from message and adjust top position of bullet 4a072b3
  • refactor(color): remove secondaryColorDarken variable 74c8ba0
  • change(docusaurus): updated template to change what's new title 58f58c8
  • change(github): auto deploy only on develop branch bfa35a3
  • refactor(header): implementation in preparation for Volto integration #20 #97 cddda20
  • refactor(breadcrumbs): component, make it functional and pluggable #32 #94 9f42e80
  • change(card): added styles for volto cards integration #92 a46ac21
  • refactor(grid): remove column count from example ac0e9cf
  • change(github): trigger autobuild when modifying templates contents 5f7d152
  • refactor(grid): remove custom grid 1d978a9
  • refactor(Form):change form field wrapper implementation 73cdd6d
  • refactor(message): update colors to match design 633ce31
  • refactor(checkbox/radio): update variables and remove important rules ad533b4
  • refactor(less variables): add variables to less for new components 47df026
  • refactor(Tab): fix vertical tab alignment 401bdf2
  • refactor(lint changes): add lint changes 6f6847f
  • refactor(inpageNavigation): adjust to volto theming 62f74ea
  • refactor(message): updates on styling b4cf850
  • refactor(banner): update class name ef0969b
  • change(github): use develop for auto pushing a32a723

🏠 Internal changes

  • style(design-system): unix eol 631fa90
  • style(checkbox/radio): prettier fixes a04939f
  • style(design-system): unix eol 3c753f0
  • style(message): stylelint fix 5b75057

🏠 Documentation changes

  • docs(docusaurus): visuals guidelines 544a950
  • docs(docusaurus): search guidelines 0fb229d
  • docs(docusaurus): loader page 892a25d

🛠️ Others

  • Reformat header.less 1f99dfc
  • Close menu when changing path 65daea9
  • refactor breadcrumbs component, make it functional and customizable 4ec374e
  • rollback(cards): move custom display to volto-block-image-cards 79d4c89
  • Open overlay menu on global menu click cc749bc
  • bring back segment wrapper and make it attached 9f413ff
  • Use renderMenuItem also in mobile menu 02de0bb
  • Fix clicking outside closes menu af52664
  • Cleanup args in header story 2bf6a30
  • fix warning related to proptype 824b9be
  • fix profile section css overflow 8fd2654
  • don't use volto-slate 70ca3d4
  • remove segment custom width 4a60d84
  • update 96f4af0
  • Fix TopDropdownMenu component rendering in mobile a4626de
  • Add usePrevious hook 797faba
  • make breadcrumbs default size as tiny 3c8e1c6
  • Update package.json fa020cb
  • Add rule about hardcoded values 0c6912c
  • set profile section overflow to auto 8db62bb
  • added comment about need for removal of this fix later 6fdbd71
  • Add Sonarqube tag using eea-website-frontend addons list 6051724
  • removed override already present in card.less 93c4e5a
  • Remove console.log calls 8a3a4cb
  • update 81bb7d4
  • Update comment ffa2400
  • merge develop into this branch ad5b388
  • WIP a8d97f1
  • Use header.less from develop branch 99edbc6
  • WIP 57b5783
  • WIP 785da36
  • WIP 5d1eba9
  • adds Tags e37fc19
  • Add useClickOutside hook 70364c8
  • Implement outside click handling fa6f818
  • Simplify overlay menu template 28b0478
  • fixes less variables, fixes tags positioning cc19b9b
  • WIP 15bc0f4
  • no display: flex for blockquote added from slate 312a893
  • Add rule about code length 318cd48
  • Add indenting rule d589685
  • Add rule about import sorting cd337c1
  • Add rule about naming vars b112de0
  • Bring back classNames from header subpopup e477a51
  • removes tags hashtag from jsx 6b8b3e9
  • WIP d481324
  • fixes undefined on empty classes 4b29080
  • stylelint changes a5ab830
  • Footer link color @white 578e4f7
  • add margin to <br> element to simulate gap as in design 9ab9a97
  • impors colors from site variables 6117267
  • small fix for the link in footer action 72df049
  • remove uneeded style 66e9064
  • use proper naming conventions for var naming 596e314
  • Add file mode rule 805baa7
  • use less variables b43ac8d
  • Add DRY rule 2f1584e
  • Add functional components rule; add classnames rule 1b2915e
  • fix z-index of header 7d2a5d6
  • Remove comment 7d120b1

0.1.4 - 2022-03-01

💅 Enhancements

  • refactor(pagination): adjust to volto theming 06cc3b6
  • refactor(Form):create form field wrapper file 95b9934
  • refactor(megaMenu): update margins for menu items 230e476
  • refactor(megaMenu): update gradient 47f2ea4

🏠 Documentation changes

  • docs(docusaurus): divider page c6bb238

🛠️ Others

0.1.4-beta.0 - 2022-02-25

🚀 New Features

  • feat(github): added feature and bug reports templates with our guidelines as checkboxes 1549093

0.1.3 - 2022-02-25

🐛 Bug Fixes

  • fix(all): change eol to unix 62e7224
  • fix(banner): separate url value f9c9140
  • fix(all): merge eol c68f6e0
  • fix(blockquote): align self property now uses a valid entry ec76163

💅 Enhancements

  • refactor(megaMenu): new implementation ff013af
  • change(volto): removed customizations made for ims theme from volto-eea-design-system bc8d514
  • refactor(Timeline): divide to sub components and change files to .jsx 3e2bd3b
  • refactor(header): update variables 4e5d08d
  • refactor(Header): link header's menu to mega menu 08406d8
  • refactor(Menu): change mega menu implementation 455a51b
  • refactor(Grid):minor changes and delete extra files 272585d
  • refactor(timeline): adjust to volto theming b98641a
  • refactor(megaMenu): fix link hover issue for tablet 564e972
  • refactor(header): add remix icons and minor updates c9c97dd
  • refactor(Header): change header buttons implementation 6608b8c
  • refactor(Header): add sub components and change existing Main 74c35a3
  • refactor(table): adjust to volto theming ab7a0e8
  • refactor(Footer): delete Actions & ThemeSites files and clear imports 7a78456
  • refactor(header): update variables 326655a
  • refactor(Breadcrumb): add react router link and minor bug fix 073a3a3
  • refactor(Header): show menu on search & minor bug fix 4d49a8a
  • refactor(List): add extra default list story 95665cd
  • change(docusaurus) change generation of what's new section and bump package version 6c35cff
  • refactor(Footer): minor code changes 67cb4bc
  • refactor(Menu): add class to mega menu items for styling 19baa34
  • change(accordion): modified default accordion stories titles with real accordion names cf11cc8
  • refactor(Header): accessibility image alt fix a7347a6
  • refactor(header): adjust to volto in progress 760beca
  • refactor(Header): header items as storybook arguments 388c752
  • refactor(banner): update less variables 35b0a98
  • refactor(banner): actions as buttons; don't hardcode url for banner image; subcomponentize Banner, add Banner.Action; add developer guidelines on inline styles and line endings; 6dd5a41
  • refactor(blockquote): fix responsive margins and sizes rems 209f94f
  • refactor(Input): label position and style change 970074a
  • refactor(header): update dropdown menu 32eb0fa
  • refactor(timeline): theming updates c80c9aa
  • refactor(Blockquote):remove image stories a6357ca
  • change(docusaurus) proofread blockquote usage section and removed unused api section 0bb29fd
  • change(infrastructure) cherry-pick fix 9639243 skipping jenkins on auto commits fc744cd
  • change(ci) build storybook and docusaurus only when pushing to develop-itml branch 4de0cbf
  • change(infrastructure): modify whats new doc when committing the auto deployment 39df33e
  • change(blockquote): introduce float argument for blockquote with image storybook 8fc7290
  • refactor(pullquote): add word break 2245e53
  • refactor(Banner): minor bug fix b9073b6
  • refactor(table): fix th font weight a96a0a7
  • refactor(comment): remove avatar border radius d42c37b
  • refactor(banner): adjust title size 7a24d9c
  • refactor(Image): change image path a580da6
  • change(infrastructure): specify that docs folder contains changes for deployment a1ca915

🏠 Internal changes

  • style(input) prettier fixes e83fa0c
  • chore(storybook): prettier fix 354c7b3
  • chore(design system): technical commit for edw integration tests 9f76035
  • style(storybook): prettier fixes 3c9ad34
  • chore(infrastructure) updated branch with changes from bitbucket 77866f8

🛠️ Others

  • doc(colours):fix color to better show primary ones 705b789
  • doc(colours):change font size to fit text in one line 4ad7516
  • bump package release to 1.3.0 f3cfe4f
  • Refactor banner into content subcomponent f8df238
  • lint fixes cda322d
  • rollback don'ts grammar change and disable unresolved import for Banner.stories.jsx a1bd715
  • Add space line in component d4d1a5f

0.1.2 - 2022-02-17

🚀 New Features

  • feat(blockquote) added blockquote styles as a custom module d30662e

🐛 Bug Fixes

  • fix(inpageNavigation): hide at the top of the page 97ef500
  • fix(footer):missing image ac91a29
  • fix(comment):fix broken image 8125dc1
  • fix(message): fix font loading fdc498e
  • fix(logo): logo change 5f8c8af

💅 Enhancements

  • refactor(storybook): multiple components fixes 4a3ff51
  • change(infrastructure) re-enable integration tests for auto release stack ce8daf8
  • refactor(storybook): global site files styling update f3770f1
  • refactor(storybook): multiple components 9277aac
  • refactor(footer) adjust to volto theming update a59f1c3
  • refactor(header): minor styling update dd6b55c
  • refactor(Header): change header mega menu 7559b57
  • refactor(banner): adjust to volto theming 451b949
  • refactor(accordion): minor styling update aeaf25f
  • refactor(footer): adjust to volto theming bdff176
  • refactor(footer):mobile responsiveness 14822be
  • refactor(storybook): main and custom less files update 1607760
  • refactor(timeline): update after removing timeline addon f54d380
  • refactor(Footer): replace with subcomponents 378c652
  • refactor(Header): header change 029e850
  • refactor(Header): change header bar 2b766fd
  • change(docusaurus) use itml branch for docusaurus deployment 6e286c5
  • refactor(accordion): adjust to volto theming 971fcb8
  • refactor(Header): add sub components 7f955db
  • change(docusaurus) tweak auto deployment to always commit changes from docs a2940da
  • refactor(banner): less and variables files created d5b1a8a
  • refactor(label): adjust to volto theming 3c945e1
  • refactor(message): adjust to volto theming 3e950fc
  • refactor(Footer): add sub components and props c3d1487
  • refactor(modal): modal and confirm adjust to volto theming 83b60e9
  • refactor(comment): adjust to volto theming 84348c3
  • refactor(storybook):adjust headings 32f64f9
  • refactor(Header): add comments to header menu c2c83b2
  • refactor(Accordion): clear up accordion stories code 4e59b8f
  • refactor(segmant): adjust to volto theming 3ab211e
  • refactor(button) minor styling update 8782bb2
  • refactor(banner): change image position cdd76d5
  • refactor(breadcrumbs): update less variables 640817e
  • refactor(list): adjust to volto theming 1079c73
  • refactor(timeline):adjust timeline module 213eb11
  • refactor(blockquote):adjust to volto theming 5eec87f
  • refactor(progress): add progress bar colors ccf3c98
  • refactor(pullquote):adjust to volto theming fee4466
  • refactor(Header): change mobile mega menu c7ecf18
  • refactor(statistic): adjust to volto theming b726e49
  • refactor(button) adjust to volto theming eb257f8
  • refactor(form): minor styling update 79934b2
  • refactor(Footer): create Actions & Sites sub components 446840b
  • refactor(inpageNavigation): adjust to volto theming 85c631a
  • refactor(Inpage Navigation): changed button's display 36e5b4f
  • enhancement(docusaurus) modified headings to be within release versions 19ace30
  • refactor(storybook): move components to ui folder cb91f88
  • refactor(Header): change mega menu de0fc6b
  • refactor(Pullquote): divide Pullquote to sub components 34413c4
  • enhancement(docusaurus) replace changelog when auto-building docs Refs #145331 da25c0e
  • refactor(popup): adjust to volto theming d0d192d
  • refactor(card):adjust to volto theming 2ab6f91
  • refactor(item): adjust to volto theming 89a16af
  • refactor(pullquotes) remove unnecessary variables e0d20a3
  • refactor(progress):adjust to volto theming d1ab950
  • refactor(blockquote) change variables names 36fd5be
  • refactor(comment): adjust font sizes 0311ed1
  • refactor(InpageNavigation): clear up code 1d7afdc
  • refactor(container): change variable name for computer padding 26d123f
  • refactor(inpageNavigation): remove imports 25c1d1c
  • refactor(storybook): update ui index components exports ce78d47
  • change(infrastructure) auto build storybook when pushing to develop-itml branch of volto-eea-design-system e9aa5bc
  • refactor(storybook): delete demo stories 8b58d02
  • change(docusaurus) align deployment steps for building docusaurus 37e4ce0
  • refactor(storybook): remove components from customizations folder 8930ede
  • refactor(tab): minor styling update 1252ad0
  • refactor(comment): change avatar src e5f9c4c
  • refactor(banner) : change file type and folder 878742b
  • refactor(form elements):changed text 919beea
  • refactor(Image): change image src b971084
  • refactor(Pullquote): add component propTypes d32c5e6
  • refactor(blockquote): adjust font sizes d71a3ce
  • refactor(footer): update font sizes 1c91c35
  • refactor(Blockquote): add component proTypes ea02649
  • refactor(logo): update image f611372
  • refactor(docusaurus): restore config f2c5239
  • refactor(blockquote): update component name 572e655
  • refactor(header): fix story header import ceda6c7
  • change(infrastructure) auto build docusaurus when pushing to develop-itml branch 7bebdf5
  • refactor(storybook): remove components from customization folder 4a9bb9b
  • refactor(banner):story rename 56ff603
  • change(testing) removed navigation from cypress tests until component is finished 5549f4c
  • refactor(Segment): change to .jsx extension 5cb35d8
  • refactor(Pullquote): change to .jsx extension 564cf7e
  • refactor(PopUp):change to .jsx extension dcb24ff
  • refactor(InpageNavigation): change to .jsx extension dfefce3
  • refactor(Blockquote): change to .jsx extension 44a1645
  • refactor(heading): story name update aa10f34

🏠 Internal changes

  • style(footer): prettier fix 902c257
  • style(storybook): prettier fixes 59f941d

🏠 Documentation changes

  • docs(docusaurus):multiple page updates 2aba73e
  • docs(docusaurus):update page content 565697f
  • docs(grid):update components grid 60eb083
  • docs(docusaurus): page adjustments 0641eac
  • docs(docusaurus):updated various pages f860176
  • docs(docusaurus): logo change 3af5e5c

🛠️ Others

  • added sortable table stories and descriptions 6d44dd7
  • Layout components theming 5861013
  • recovered files from origin a4ac04f
  • grid component & stories changes 4a5752e
  • Updated what's new section with actual commits from volto-eea-design-system repo fc5e3c3
  • Docusaurus title possible fix. db699e7
  • form elements stories added description & default values 6b4f6eb
  • removed API tabs 58aa928
  • Layout updates 854f388
  • Refs #142123 removed extra customization of semantic.less: ab9de81
  • added page-header,footer and grid in docusaurus 660c8e3
  • Manual docs build and commit 666eb6a
  • added svg & png files f1338d5
  • added missing components to docusaurus 934dfd8
  • Control descriptions updated 56581eb
  • Grid updates 700332d
  • Button theming update 0ec68b6
  • site variebales & overrides changes 7251162
  • Table and Tabs theming 49f0860
  • Responsiveness updates 48e1351
  • added various components to docusaurus 550d719
  • Checkbox and radio updates 24652a2
  • remove images from typography and colour docs 8493e92
  • added guidelines' text and finished all components 02d75fc
  • added more missing components in docusaurus 8be8263
  • Prettier changes on docusaurus 5f1e5eb
  • Grid updates ae09945
  • Minor fixes for tests 3bdf306
  • Layout updates 8b7a4dc
  • Footer and TOC theming bb3d3c4
  • Refs #145331 manually commit changelog until autobuild is stabilized 93168b0
  • label component changes df8c0ff
  • added several sections to the theming guidelines ff1a649
  • Updated removed files. 84f9b8c
  • added more docusaurus components 52a3b9e
  • Progress Bar 9f2efc9
  • Modal and Confirm updates 3b306c6
  • Add proper changes to whatsnew meant in previous commit 40f78e3
  • Form Descriptions de0dfbc
  • Prettier fixes 1337e6f
  • Deleted files b82f982
  • add new images for spacing 7b7b2c4
  • Messages Theming ad621a3
  • added new content to docusaurus 1c83452
  • Minor less updates a36a8bb
  • Tabs and lists updates e37eef1
  • Inpage nav and timeline components 76f0f82
  • Prettier updated files 679b9d2
  • dropdown initial d8aef26
  • Prettier changes f068af0
  • List initial 6d3b969
  • List story updated e96a6f6
  • Statistics updates 74bf639
  • styling c169cc0
  • timeline comp storybook changes 1f42686
  • feature(docusaurus) added theming guidelines ded1f04
  • Properly commented out integration tests. 48b3a15
  • Reattempting commented out integrations tests. 3dd8211
  • Button theming 4231e1c
  • Card initial 06dace5
  • form element storybook changes c4b06aa
  • Pagination theming 2a80175
  • Accordion theming 8061bf9
  • global var updates and radio story 9526ee2
  • created pullquote component & stories df35563
  • Item stories added description & default values 9d459f2
  • storybook clean up code bffd326
  • List updates 28f1b53
  • Button classes updates 788c289
  • Prettier fixes 678c9be
  • Removed header title from partial docusaurus components. ed7c45e
  • created banner component and stories 9be170f
  • Breadcrumb stories description & defaultValue -- clean up code 186ab65
  • Refs #142123 added customization of semantic.less: 1e02356
  • Card stories added description & default values f6b408f
  • Statistic and accordion updates 16064ce
  • breadcrumb component & stories changes 5bceb98
  • Container initial 3eb7155
  • doc(docusaurus):Fix text for various parts bfd3fa2
  • blockquote component & stories 879b640
  • Refs #143412 removed doc comments breaking doc building e6a6756
  • Popup updates ce2d641
  • Global variables for colors and borders added 6e5fbd6
  • Tab stories changes 5429cfb
  • Confirm stories added description & default value 85cda14
  • Kebab case class names b41cd07
  • Card and Comment class updates 3899465
  • Accordion updates c97ba39
  • item stories changes 772e41f
  • Accordion class updates 9cdde86
  • Comment stories added description & default value cb6f25b
  • Accrodion stories description & default value ab8fb88
  • Pullquotes updates c598421
  • Modal and confirm class updates 0ae47e6
  • Tab and paggination updates 96796ff
  • Form Updates e986a9f
  • Classes renamed 73c8c3d
  • List and item less updates ce0de17
  • Confirm theming 36e20ce
  • container overrides changes 4b3970b
  • Docusaurus theming fc4a8c5
  • refacto(headings): update mobile headings sizes b2e9f83
  • list stories and style changes c61db53
  • Tab theming e31e6c3
  • Message and pagination classes updates c230687
  • Segment initial d5724fe
  • Refs #143412 removed doc comments from api_markdown breaking doc building efeacba
  • Timeline and responsiveness updates 1ed1524
  • Refs #142123 use swap font-display for performance reasons 083738f
  • Breadcrumb stories minor changes 3d0d17c
  • Table component stories minor change 0bf4083
  • List stories changes a64b304
  • blockquote component minor changes cdf71a8
  • ckeckbox stories minor change 6d6e508
  • image component storybook changes 91290ec
  • button overrides changes d5b78dd
  • accordion overrides changes fdcf7d5
  • Accordion component and stories changes 5079247
  • Card theming 23bbb9d
  • statistic overrides changes 2b11cb5
  • Refs #143412 build docs only on pull request like we do with storybook 473bb87
  • Card component stories minor change | added link icon deb423a
  • comment component stories changes f1c5e75
  • Accordion component bug fixed 815e91d
  • Refs #145331 use iso date to release so that we see also time ceedf08
  • correct connfig for doco 93e1313
  • Item updates fae93d4
  • added layout grid 2e6be55
  • tab overrides changes 87aaf32
  • message overrides changes 6dccfca
  • segment storie changes 296371f
  • progress component stories changes df10c2e
  • message comp storybook changes c86b405
  • Accordion cmponent stories | minor bug fix 6de0d81
  • Refs #145331 add all changes when auto building docusaurus ce11cce
  • perf(timeline):removed semantic timeline package 0aeb34a
  • Tablet Breakpoint update b229c27
  • Refs #143412 set storyBook Url to eea.github.io b7fdecb
  • bump package version to signaling of a major release c835f1d
  • small commit to trigger deployment of storybook and docusaurus be46ea3
  • doc(accordion):revert previous change 3de02da
  • fix typo for caption @desktop line-height pixel number 1671552
  • Commented out integration tests. 574cfec
  • popup overrides changes a9555e3
  • container component stories fixes 692cfce
  • Added timeline to package json fixed f2e93e0
  • Refs #142123 modified import of volto-eea-design-system icon.less: a7fab7d
  • Refs #142123 reference icon.less from this package: 5616e6d
  • Menu component stories change 2797716
  • Image stories minor change ddb9f1d
  • card component stories changes 6ccba1e
  • Added timeline to package json 93031d6
  • table stories code clean up b7b2a56
  • Refs #143412 removed extra baseUrl from docusaurus config 79f36da
  • Accordion stories minor change ffe808a
  • Theme assets 3f4bea4
  • Merged with develop 167ec9f

0.1.2-beta.2 - 2022-01-03

0.1.2-beta.1 - 2021-12-22

🛠️ Others

  • Tab component stories minor changes 4690a6f
  • Comment component stories minor changes a87cb6a
  • Form stories changes fc30c90
  • Grid component stories minor changes 798fdd0
  • Image component stories minor changes be93385
  • Menu component stories minor changes cb1f9a8
  • Dropdown component stories minor changes 57cf954
  • Header component stories minor changes 264fd46
  • Confirn component minor changes 9a00bc1
  • Item component stories minor changes 6994fa0
  • Label component stories changes 5cc5843
  • Container component stories minor changes e6e40b3
  • Message component stories minor changes ba9d377
  • Breadcrumb component stories minor changes ff7a176
  • Modal component stories minor changes af1fe6a
  • List stories changes 0016042
  • Button component stories minor changes 690dfd2
  • Radio component stories minor changes 84eac30
  • Progress component stories minor changes e676357
  • Pagination component stories minor changes b1af226
  • Segment component stories minor changes 5f8c7ef
  • Refs #143412 eslint fixes for component stories badcb91
  • Table component stories minor changes 7c104b8
  • Refs #143412 more eslint fixes a88c091
  • Refs #143412 warn for broken links instead of throwing bd5821c
  • Refs #143412 merge changes from develop-itml to develop branch bca28b9
  • made tabs dynamic for api tab ea37ecb
  • Basic storybook/Docusaurus components 840ab60
  • created List directory & srories based on semantic-ui List component 51f1901
  • made tabs as component easy to call for other components 07bae49
  • Popup Component | minor fixes 2ff9908
  • created stories for Tab component 95e3a73
  • created Table directory and stories based on semantic-ui Table component e16115d
  • List component stories - minor changes de11343
  • created stories for Comment component a20f884
  • created stories for Grid component 360d2a8
  • created stories for Image component 3c1d2bc
  • created stories for Menu component 17e3b37
  • Added untracked files 75f0afd
  • created Dropdown stories d6a2538
  • created Header component stories b833979
  • created stories for semantic-ui Confirm component 6fddccc
  • created Statistic directory and stories with semantic-ui Statistic component cd62498
  • created Item component stories 90ec2be
  • created stories for Container component 41934f6
  • created Label component stories 71732f6
  • created Message component stories adcbeab
  • created Modal component stories c25409d
  • Breadcrumb component stories and minor changes 6264d92
  • created Pagination component stories 57cdad3
  • created Segment component stories d8d01d7
  • created stories for Radio component 1fd062d
  • Menu stories minor changes 6ba5e0d
  • Statistic component stories minor changes 3c874a5
  • Card component stories minor changes 290bda8
  • Accrordion stories minor changes 2ee3f59
  • renamed Demo folder to Layout b9f6d05
  • remove test exclusion 94dba3e
  • Accordion component stories minor changes e672d59
  • fix docusaurus url (removed trailing /) b6c59fc
  • Item component stories - minor changes f0a9902
  • eea logos and assets b435b51

0.1.2-beta.0 - 2021-12-18

🛠️ Others

  • Refs #140454 added github action to build docusaurus to the develop branch abe6a72

0.1.1 - 2021-12-16

🛠️ Others

  • Refs #140454 changed the following to volto-eea-design-system: 6791d41
  • Refs #140454 corrected base url for docusaurus website build 98271b3
  • Initial test changes on design system/docusaurus. 9dad612
  • After prettier check 9ec40b4
  • Refs #140454 restore SearchWidget.jsx content and removed dummy text from docs intro page 7505df8
  • Refs #140454 added references to eea and the storybook in the docusaurus footer 42bbfcd
  • Refs #140454 lint fixes 9502f2b
  • Add SonarQube badges a4e0a40
  • Refs #140454 brought changes from develop-itml and upgrades docusaurus 207c873
  • Refs #140454 removed extra content not needed by the docusaurus site bc68ebe
  • Refs #140454 updated docusaurus to latest beta d68ed8a

0.1.1-beta.0 - 2021-12-09

🛠️ Others

  • Refs #140454 moved header and footer templates from volto-ims-theme: e2d5e56
  • Refs #140454 added website folder with docusaurus site skeleton 6fd15f4
  • Refs #142794 added commented implementation of the header and footer area: 773ad87
  • Refs #140454 changed the following: 4137ec4
  • Refs #140454 removed storybook from volto-eea-design-system: a129ffb
  • Refs #140454 added storybook as a dev dependency: e04ae4e
  • Refs #140454 updated Breadcrumbs.jsx to latest version: 63fe507
  • Refs #140454 we should use jsx and not mdx for storybook tests 3668e66
  • Refs #140454 updated eea-design-system readme with extra info on package contents d2efc3d
  • Refs #142010 - Optimize Volto-addons gitflow pipelines 3af46d2
  • Refs #140454 Renamed folders of docusaurus website: 15bca74
  • Add demo story 757c409
  • Refs #142794 enabled minimum css so that header looks decent adbe233
  • Refs #140454 use the develop branch for the readme linking, it's always more up to date 23dcf16
  • Refs #140454 added missing themes reference for the eea theme e9ca244
  • Refs #140454 modified assets imports after move to volto-eea-design-system 2250cc7
  • Load footer in segment 80d38a9
  • Refs #140454 bump package version to 1.1.0 from 0.1.1 from develop branch: 1314039
  • Refs #142794 keep toolbalWidth variables in case design system runs in an older version of Volto 1a8b305
  • Refs #142794 changed the following: fbb80b1
  • Refs #140454 moved storybook scripts to the scripts section 705c4c3
  • Refs #140454 removed dangling comma 514f24d
  • Refs #140454 changed link to the start of the docs 0e16fdf
  • Refs #140454 add h1 to the list of elements that are max 800px and centered 7d3c30f
  • Add Sonarqube tag using ims-frontend addons list 8d657d0

0.1.0 - 2021-11-17

🛠️ Others

  • Refs #140454 changed the following to volto-eea-design-system: 40d2af6
  • Refs #141204 elements folder now has the variables and overrides from pastanaga theme 595b4e6
  • Refs #141204 use font awesome from SemanticUI instead of Pastanaga: 4e273ca
  • Refs #141204 removed the components customizations from volto-eea-design-system: c98c260
  • Refs #141204 added customizations folder from volto-ims-theme to volto-eea-design-system: ff4bf44
  • Refs #141204 modules folder now has the variables and overrides from pastanaga theme f2841b6
  • Refs #141204 customized Comments.jsx to remove unnecessary container b2e95d7
  • Refs #132149 added initial commit for volto-eea-design-system: 2934b91
  • Refs #141204 collection folder now has the variables and overrides from pastanaga: 213d496
  • Refs #141204 removed search widget customization, we can use volto-ims-theme for that file b7e8b0c
  • Refs #141204 stylelint quick fixes 5595925
  • Refs #141204 changed the following: 769f4f9
  • Refs #141204 changed the following to the eea theme: 06d8d86
  • Refs #141204 eea site.variables now use all values from pastanaga's site.variables 6535c0f
  • Refs #141204 simplified container overrides: 5125003
  • Release 1.0.0 177d0ce
  • Refs #141204 globals folder now has the variables and overrides from pastanaga theme 116a0c3
  • Refs #141204 changed the following: 2e7f423
  • Refs #141204 modules folder now has the variables and overrides from pastanaga theme: 27a201d
  • Refs #141204 text elements are now with a max width and centered within content-area: bbed7bb
  • Refs #141204 added main.variables entries from pastanaga to eea theme 1cbbc55
  • Refs #141204 modified theme image imports for component customizations ef3238a
  • Refs #141204 modified container width to be auto: 2e8d2e0
  • Refs #141204 modified several icons to use the \f values instead of \e: c397145
  • Refs #141204 changed the following: c518eda
  • Refs #141204 ensure that main column isn't enlarged over the sidebar section on edit f7a2868
  • Refs #141204 changed the following to the form styling: eb92e05
  • Refs #141204 modified path of theme folder location for image selection f8cca45
  • Refs #141204 added missing mobileScrollbarWidth variables introduced as part of the mobile navigation pull request 444c78d
  • Refs #140454 reference font and image path from ~volto-themes instead of relative ec93ed3
  • Refs #141204 ensure that Volto doesn't crash when site module is set to eea: 51f2f27
  • Refs #141204 added tiny size prop to Breadcrumbs in order to have it as 12px 56a12e2

0.0.1 - 2021-11-17

🛠️ Others

- +

What's new

EEA Design System (1.0)

Components ready to be used

The following components are ready to be used as Volto blocks, slate integration, or via the advanced block styler:

  • Accordion block
  • Call to Action block
  • Callout - part of the Description block, slate
  • Card - part of the Teaser block and Listing block, it includes several variations like round card e.g., used for Avatar
  • Divider block
  • Headings slate
  • Hero block
  • Item block - used for text with an icon (remixicon or custom SVG/image) on the left/right
  • List slate - ordered and unordered
  • Quote block
  • Statistic block
  • Tag block
  • Table block
  • Tabs block
  • Timeline block

Future releases

Below is a non-exhaustive list of the work-in-progress which is planned for future releases:

  • Navigation Portlet (used on the left/right hand of content)
  • Spacing/padding system. We want to add the ability for editors to consistently apply various spacing/padding on certain components in order to allow a better alignment when components are used together.
  • Improve docusaurus and storybook with more components, controls, and variations in order to better reflect what is possible in Volto.

Generated by auto-changelog.

Unreleased - 2023-04-06T13:42:14.276Z

🐛 Bug Fixes

  • fix(item): flex variant on edit when inside blockchooser #333 from eea/fix-item-csss 65b9099
  • fix(item): use child selector instead of descendent as it interferes with blockchooser refs #157040 ad4ca37

💅 Enhancements

  • refactor(megaMenu): align menu items with demo site for better testing 82a5c84
  • refactor(breadcrumbs): updates on structure and story for accessibility 770c8c0
  • change(logo): update eionet svg 3c87fc7
  • refactor(megaMenu): Restructure Topics and Countries lists d816e7a
  • change(mega-menu): use lists for navigation, enhance voice over support for better accessibility d13137f
  • refactor(header): firefox accessibility errors fix c7d35b9
  • change(breadcrumbs): label modification for better screen reader output c967bef
  • refactor(megaMenu): clean up function after test 883eb73
  • change(mega-menu): added code to align countries left column subtitle with the right column 1aa33dd
  • change(logos): updated eionet logo used in the site footer #318 from eea/footer-logo-update 70671d0
  • change(breadcrumbs,mega-menu): better screen readers support, see links instead of groups #309 from eea/firefox-accessibility-tab-issues d6b0b4a
  • change(mega-menu): sub-title padding tweaks for better spacing normalization e08668d
  • change(breadcrumbs): fixed sizing of breadcrumbs list items 1761e98

🏠 Internal changes

  • style(megaMenu): remove comments and unused properties fa5f8f8

🏠 Documentation changes

1.0.6 - 2023-03-29

🚀 New Features

  • feat: add viewport-(width/height) less functions and fixed banner image url #329 from eea/develop e8e70bd
  • feat: add viewport-(width/height) less functions 68300a3

💅 Enhancements

  • change(docusaurus): set full class name for remix icons f435e10
  • refactor(Banner.jsx): use flattenToAppURL helper function to get image source URL 24b13d7

🏠 Internal changes

  • style(theme): update container width and margins in eea theme 3e4446a

🛠️ Others

  • horizontal overflow hidden in view mode f395f27

1.0.5 - 2023-03-28

🚀 New Features

  • feat: improve full-width class 70bba7e

🐛 Bug Fixes

  • fix(banner): Add missing divider for time tag #327 from eea/banner-metadata c46a583
  • fix(banner): Add missing divider for time tag 7d68c39

1.0.4 - 2023-03-27

🚀 New Features

  • feat(copyright): Add copyright prefix - Image - refs #250724 6a72772

🏠 Internal changes

  • style(copyright): Cleanup useless min-height - refs #250724 f2457df

🛠️ Others

1.0.3 - 2023-03-24

🐛 Bug Fixes

  • fix: improve full-width class 9322259
  • fix(header): Remove z-index from subsite logo #320 from eea/subsite-logo 5091100
  • fix(header): Remove z-index from subsite logo d433a97

💅 Enhancements

  • change(header): Add search popup customizations from eea-website-theme 43e5a78
  • change(popup): create custom popup for better accessibility 036aac9
  • change(popup): added most important popup properties from Semantic ui implementation 61f65bc
  • change(banner): use custom-made Popup for better accessibility 10d0fcf
  • change(banner): use custom-made Popup for better accessibility 9108bee
  • change(popup): added also the basic property a4497ac
  • change(colors): update gray-4 color value #321 from eea/update-gray-4 f458ff0
  • change(banner): MetadataField now uses proper time tag when value is datetime b4c4d34
  • refactor(tokens): updated gray-4 b890df7
  • change(footer): Fix error and empty div if no social links are present #319 from eea/footer-social 8922246
  • change(footer): Fix error and empty div if no social links are present 5d934a6

🛠️ Others

1.0.2 - 2023-03-14

🐛 Bug Fixes

  • fix(megamenu): topic menu title is now placed before content 6004bcb
  • fix(megamenu): removed in depth nav_title renaming that set title wrongly to a-z topics 899ca0e

💅 Enhancements

  • change(megamenu): removed special styling from at a glance mega menu section fd0c4c8
  • change(footer): renamed thematic information platforms to environmental information systems e7004a7
  • change(docusaurus): updated static image of footer sections 4ff3185

🏠 Documentation changes

  • docs(What's new): Update 'What's new' d7ed9d6

🛠️ Others

  • fixed accordion selector typo f4cabc8

1.0.1 - 2023-03-13

1.0.0 - 2023-03-13

🐛 Bug Fixes

  • fix(Footer): Open internal links within the same page 5b3e409

💅 Enhancements

  • change(banner): use huge scale instead of full image for better performance 381c58e

1.0.0-beta.6 - 2023-03-10

🚀 New Features

  • feat(site): serve Roboto fonts from eea design system package instead of google fonts #311 from eea/roboto-library f6a1b3e

🐛 Bug Fixes

  • fix: full-width is now properly sized 6e2e348
  • fix(storybook): add fontDisplay 078966a

💅 Enhancements

  • change(image): copyright position fixes, moved image floating to image-block-container 53422e0
  • change(colors:) update the design system colour palette #312 from eea/update-color-palette a5fb694
  • refactor(docusaurus): added roboto library 19de7b1
  • refactor(storybook): added roboto library e991621
  • refactor(tokens): update colours 3a2c1e1
  • refactor(storybook): restored site variables a48478b
  • change(copyright): implemented copyright hover design 6b12441

🏠 Internal changes

  • chore(storybook): switched google fonts to true 4a8cae4
  • chore(colours): changed back yellow 6 87c9bbc
  • chore(lint): lint 9b0f125
  • chore(storybook): lint 29bc809

🏠 Documentation changes

  • docs(colours): colours update 161007e
  • docs(colours): accessibility ee342aa

🛠️ Others

1.0.0-beta.5 - 2023-03-07

💅 Enhancements

  • change(carousel): tweak size of carousel dots for better touch interaction e1fb823
  • change(footer): removed min width and height from links ac33219

🏠 Internal changes

  • style(hiddenStructure): Add hiddenStructure utility to be used with h1 heading on frontpage - refs #158717 672cca2

🛠️ Others

  • fixed less build failure due to changes in footer.less 190bc8c
  • lazyload bg img on footer also ae07162
  • lazyload footer images a0633c9
  • Increase performance - mobile friendly 07d86c8
  • better useOnScreen hook c214b6b
  • role change for accessibility 5e758e0
  • minimum tap dimension for mobile a25e9a8
  • Release 1.0.0-beta.5 e4417e1
  • Add Sonarqube tag using eea-website-frontend addons list b227cf8
  • feature(mobile): increased performance by lazy loading footer images #303 from eea/increase_performance 80d1df1
  • useOnScreen default export 3e6cfdd
  • use aria-labels on dropdown 27e1443
  • prettier a7f8384

1.0.0-beta.4 - 2023-03-01

🚀 New Features

  • feat(footer): Add footer description 2ad0f71
  • feat(footer): Add footer description #306 from eea/footer-description bf655d1

🐛 Bug Fixes

  • fix(footer): Don't show empty row if description is not present 2ca7f7d
  • fix(footer): Add class for children 3c50d15
  • fix(search): Fix search links color #307 from eea/search-accessibility a76f48b
  • fix(search): Fix search links color 69c42ef

💅 Enhancements

  • change(carousel): tweak card width and padding for better arrow alignment e184f70
  • change(storybook): include footer description in storybook e904aa0

🛠️ Others

1.0.0-beta.3 - 2023-02-21

🚀 New Features

  • feat(accordion): storybook accessibility by using buttons for titles #297 from eea/accessibility-accordion 809d52b

🐛 Bug Fixes

  • fix(dropdown): remove close on blur so that we can navigate links using keyboard 5442715

💅 Enhancements

  • change(language): dropdown to use links for proper keyboard navigation 6a7de30
  • refactor(images): cleared unused/renamed images assets 821f5c1
  • refactor(Accessibility): add box-shadow on focus-visible components b1adcc3
  • refactor(images): remove unused docusaurus svgs c5ef14c
  • refactor(header): add escape key functionality, actions from div to button to have proper focus state 8081aa4
  • change(language): restore dropdown duplication in order to properly show and hide language dropdown cb28888
  • change(search): to reflect changes from eea-website-theme 2cc35e0
  • refactor(footer): update p with h3 heading tag for header ca1477b
  • refactor(footer images): removed unused/renamed 186de6b
  • refactor(Accordion): div titles to buttons, test in mobile mega menu accordions eaad4b4
  • refactor(docusaurus): cleanup decorative images fedc4d4
  • change(accessibility): style outline instead of box-shadow 53209f3
  • refactor(Footer): update mobile header size 01ab7f0
  • change(header): set the logo class directly on the link f8fba50
  • refactor(images): clear docusaurus unused pngs db5c611
  • refactor(header-images): removed unused 8250d94
  • change(language): hide language dropdown by default cc6064f
  • change(header): top dropdown menu keyboard navigation #293 from eea/accessibility-megamenu-searchbox 1e6fa65
  • change(button): set focus styling for buttons 33ebfca
  • change(footer): Avoid devtools warning in FooterActions #304 from eea/avoid_warning d774824
  • change(footer): Accessibility update p with h3 heading tag for theme sites title #302 from eea/footer-accessibility 5bf70de
  • change(documentation): Rename all image files to follow the agreed convention #301 from eea/refactor-image-filenames cfe44ef

🏠 Internal changes

  • style(header): react syntax fix 3add127
  • chore(docusaurus): ignore website/.yarn 0b33ffd

🏠 Documentation changes

  • docs(guidelines): add image name convention 290747c

🛠️ Others

1.0.0-beta.2 - 2023-02-13

🐛 Bug Fixes

  • fix(footer): action and copyright #300 from eea/develop 579f3e4
  • fix(footer): action or copyright links are simple a tags for external link 9af5070
  • fix(accessibility): added navigation and footer id's for skip link 48354b9

💅 Enhancements

  • change(footer): typos and modified footer links to be center aligned ac23f04
  • change(footer): added gap for actions and copyright 7d32ddd
  • change(footer): modified footer gap b8a820a
  • change(footer): removed extra text and date from copyright section af47bbe
  • change(navigation): raise z-index of go to top link 485ca72

🏠 Internal changes

  • chore(docs): Update eea.hbs template to beta - refs #158717 196538e

🛠️ Others

1.0.0-beta.1 - 2023-02-09

🚀 New Features

  • feat(search): Add search suggestions style 6b2b77b
  • feat(search): Add search suggestions style #296 from eea/search-suggestions 3b0c956

💅 Enhancements

  • change(search): Add proper margin for search popup 190c9f5

🛠️ Others

1.0.0-alpha.15 - 2023-02-08

🚀 New Features

  • feat(Card): add teaser card grid story 53cac0b
  • feat(utilities): Complete list of text-align utilities - refs #160747 224fab6
  • feat(small): CSS for small HTML tag - refs #160747 ad3c0ad
  • feat(fw-light): Add font weight light utility - refs #160747 c44cf57

🐛 Bug Fixes

  • fix(card): teaser card dimensions on tablet size #290 from eea/teaser-card-grid 013fdf5

💅 Enhancements

  • change(card): added extra content for teaser card story 30690ae
  • refactor(style-menu): add text-color to paragraphs styles #291 from eea/stylemenu-theme-colors 2d78307
  • change(header): Small fix in search popup #292 from eea/search-popup 86c1305
  • refactor(style-menu): add text-color to paragraphs styles 3446bc2
  • change(color): darkCyan is now replaced everywhere by the new green ef3791d
  • change(header): Small fix in search popup 3d622ea

🛠️ Others

1.0.0-alpha.14 - 2023-01-30

💅 Enhancements

  • change(mobile menu): integrate a-z topic with menu rendering logic #287 from eea/develop 05d4c04
  • change(mobile menu): integrate a-z topic with menu rendering logic 246d3d8

🛠️ Others

1.0.0-alpha.13.1 - 2023-01-30

💅 Enhancements

  • change(mobile menu): hardcode a-z topics to '/en/topics-in-depth' #286 from eea/develop 6436224
  • change(mobile menu): hardcode a-z topics to '/en/topics-in-depth' 5235b52

🛠️ Others

1.0.0-alpha.13 - 2023-01-27

🚀 New Features

  • feat(utilities): added has--bg--top center and bottom utility classes 051e6d7

🐛 Bug Fixes

  • fix(header): update green color used in page header #284 from eea/fix-banner-background 29d54db

💅 Enhancements

  • change(site): added fixes from customVolto.css to design package 51ba9b5
  • refactor(Banner): update banner background green color fd4a552
  • change(mobile menu): changed link for a-z topics to point to in depth 721bf23

🛠️ Others

  • 1.0.0-alpha.13 release #285 from eea/develop c966940
  • bump next version to alpha 13 897e906
  • Back to dev 5780dc7

1.0.0-alpha.12 - 2023-01-24

🚀 New Features

  • feat(card, colors): visited color change and title on image option for cards #283 from eea/develop e638ee6

🐛 Bug Fixes

  • fix(mobile menu): sub links when an accordion section is active bb3be81

💅 Enhancements

  • refactor(Card): create card template for stories 2fa77f3
  • refactor(Card): add image with title css 6e6e63e
  • change(card): implement title on image within image section ff6cc60
  • change(card): added image card section, tweaked mobile heading size 0f879e1
  • change(cards): moved image gradient overlay to a mixin.less file 8b4928a
  • refactor(card): Update titles value and size c35ad5c
  • refactor(docusaurus): applied image naming convention ee7bc29
  • change(cards): added image for all storybook card examples 3f19413
  • change(banner): restored label value of metadata field when type isn't date 571a4f2
  • change(card): title padding value for a more balance look 74b6556
  • change(card): removed uppercase transform from title on image 2948ae1
  • change(colors, Docusaurus): Visited link colour change and thematic logo replacement #278 from eea/refactor-visited-link f82d978
  • refactor(storybook): visited link variables b209b2f

🏠 Documentation changes

  • docs(colors): visited link update ece77fe

🛠️ Others

  • fix typos in footer gradient variables 4006640
  • change version to alpha 12 instead of 1 final 3225025
  • feature(card): new card variation with title on top of image #267 from eea/title-on-image-card 2c0ca95
  • Back to dev 477d997

1.0.0-alpha.11 - 2023-01-17

🚀 New Features

  • feat(docusaurus): Header and footer elements section #277 0df271c

🐛 Bug Fixes

  • fix(banner): storybook date input and simplified gradient opacity 7674d76
  • fix(banner): re-added title class on banner title 6d15799

💅 Enhancements

  • refactor(banner): sync storybook and Volto component c9087cc
  • change(banner): removed margin from title 17e592c
  • refactor(banner): sync storybook and Volto component #275 from eea/sync-page-banner-theme 4331fb4

🏠 Documentation changes

  • docs(footer): updates on header elements b41c550
  • docs(footer): add elements anatomy d9f0872

🛠️ Others

  • add(banner): banner title css d003247
  • Release 1.0.0-alpha.11 07e8f85
  • renamed image elements as requested in review 8541fb6
  • remove(banner-gradiant): image gradiant in favour of text 1b58520
  • update(gradient): use 8deg angle 6fd597d
  • update(gradiant): make it 0deg 1bb2696
  • remove(comment) referencing old verison of title 4226d42

1.0.0-alpha.10 - 2023-01-13

🐛 Bug Fixes

  • fix(subsite): Fix logo size on subsite section 65fff54
  • fix(subsite): Fix logo size on subsite section #279 from eea/subsite-fixes 8f6cf94
  • fix(mega-menu): show sub grid only if there are children ddfbd82

🛠️ Others

  • Add variable definitions 293fe65
  • Release 1.0.0-alpha.10 7014d08
  • Add Sonarqube tag using advisory-board-frontend addons list ef58a6f
  • Back to dev 31d4616

1.0.0-alpha.9 - 2022-12-28

💅 Enhancements

  • change(contextnav): Default title is text, custom title is link #273 from eea/context-nav-link-title ef7bdb7

🛠️ Others

  • Show document and folder content-type in Navigation listing 8471db3
  • Default title is text, custom title is link 1ae95b0
  • Context nav title link to # a27a6b7

1.0.0-alpha.8 - 2022-12-23

🚀 New Features

  • feat(copyright): Align copyright options with Volto integration - refs #158210 6bac7f6

💅 Enhancements

  • refactor(logo): import theme site logos to the story 2f29136
  • refactor(logo): update logo and mega search gradient e11f44d
  • refactor(logos): convert logo names to lowercase 07b8228
  • change(item): use default logic of setting align class on content 6b5b47c
  • refactor(logo): update logo 170efe5
  • refactor(logos): convert storybook logo names to lowercase c4b24ec
  • refactor(logo): add eea roboto font logo variations de1224a
  • refactor(logo): add container and segment to logo story 61eff16
  • change(item): removed requirement for aligned classes to be on content 30c0d5d
  • change(logos): cleanup eea logo reference to only eea-logo and eea-logo-white.svg 2796e05

🏠 Internal changes

  • chore(npmignore): Reduce npmjs package size 164c8a5
  • chore(npmignore): Reduce npmjs package size ade9d5b
  • chore(docs): renamed logo mdx to md 52e9d46

🏠 Documentation changes

  • docs(logos): svgs without classes 28a5833
  • docs(logos): add dark mode logos ccc1609
  • docs(logo): update eea logos and add logo wrapper 91cdd66
  • docs(logo): update logos on docusaurus 760e101
  • docs(logos): updated svgs dc224e1
  • docs(logos): add thematic logos 5a21a30
  • docs(logos): add zipped svgs for download 5855bf8
  • docs(logos): wisef logo update 8f90b59
  • docs(logos): move to static, add download 8c1fd5f
  • docs(logos): improve eea logo visibility 82188ab
  • docs(logos): change eea logo to svg f57b846

🛠️ Others

  • logo update or docusaurus thematic logo listing #274 from eea/develop dde90be
  • (feat): Add ability to disable the language select from website top menu - refs #158616 411c8e4
  • Proof reading page header section 230239e
  • bump package version b4628be
  • feature(docusaurus, storybook): logos selection for sites plus inverted options #253 from eea/doc-logo-page dbfc90d
  • Add Sonarqube tag using advisory-board-frontend addons list c4769e9
  • test(Jenkins): Run tests and cypress with latest canary @plone/volto 92feea0

1.0.0-alpha.7 - 2022-12-16

🚀 New Features

  • feat(item): normalized size for image or icon items #258 from eea/refactor-items 945170f

🐛 Bug Fixes

  • fix(card): rounded after removal of has--rounded--true style class d4727af
  • fix(item): removed margin set for description which pushed the text from icon d9d4031
  • fix(project): Proper paths if volto-eea-design-system package is not installed, but in development #270 from eea/correct_paths 0f8ee8d

💅 Enhancements

  • refactor(item): update icon variations and paddings 6a407b3
  • refactor(item): update spacing 2fd91c4
  • refactor(item): initial values for new sizes & add description class 3546296
  • refactor(item): add icon and more size options 1120bb6
  • refactor(item): update image and icon sizes b802573
  • change(item): set same height as width on item images 69cbd23
  • refactor(item): update item part 2 9812ae2
  • change(item): rename large to big class 24ff127
  • change(item): added tiny size that outputs 24px icon sizes 2ea9636
  • change(image): added preview image size default to 400px a0aa867
  • refactor(item): update operator for condition controls 149ccb2

🛠️ Others

  • Proper paths if the package is not installed, but in development 7a2655f
  • Update .project.eslintrc.js a2fd3f2
  • added back descriptionDistance variable until package release 3af811a
  • Release 1.0.0-alpha.7 7e66bcc
  • Add Sonarqube tag using cca-frontend addons list ce47e9b
  • Back to dev cb531c9

1.0.0-alpha.6 - 2022-12-07

🚀 New Features

  • feat(copyright): create copyright component and import it in banner 8fcde9d
  • feat(Header): add hideSearch prop 13ddfe5
  • feat(Docusaurus): Image copyright information #257 from eea/image-copyright-info 2119515

🐛 Bug Fixes

  • fix(tags): content gap when using tags-content wrapper c4eb9b8

💅 Enhancements

  • refactor(hero): add copyright component to hero 0fa88fa
  • change(copyright): implementation to add classes on content sections e10bde6
  • change(copyright): removed color variant 747b8a2
  • change(copyright): removed copyrightVariant from Banner and Hero stories ac62e07
  • change(tagList): modified implementation to align to volto-tags-block 7a57a3d
  • refactor(copyright): remove data section 52cb09d
  • change(copyright): line height to match page header implementation a56254e
  • change(copyright): now uses text color css variable with fallback to white ee7268b

🏠 Documentation changes

  • docs(copyright): copyright documentation a90ed76

🛠️ Others

  • Update usage_markdown.md f76d4a2
  • grammar fixes cb2a5a5
  • Release 1.0.0-alpha.6 6ca32f0
  • feature(copyright): image information #250 from eea/feature-copyright a8618c7
  • lint fix by introducing local variable tagsGap 7b6c0ae
  • Update 3-images.md 1b0ef03

1.0.0-alpha.5 - 2022-11-29

🚀 New Features

  • feat(Iconography): import and showcase remix icons 777112f

🐛 Bug Fixes

  • fix(docusaurus): right bar overflow fix 197c763
  • fix(lists): bullet position by using padding instead of margin 0ecae2e
  • fix(label): color for yellow variant as white isn't accessible on yellow color 91d8880
  • fix(contentBox): avoid text decoration for header-link added on cards 3ccb592
  • fix(label): margin value for ribbon image left and right margin f8e1129

💅 Enhancements

  • refactor(docusaurus): eea color palette in separate file 6c855df
  • refactor(docusaurus): classes for color boxes 80219d5
  • refactor(docusaurus): move supplementary, state and link colors to partials 2776be3
  • refactor(docusaurus): fix side menu / moved more content in palette partial f5b7077
  • change(tag): set gap on tags element for margin between tag elements 726bc6d

🏠 Internal changes

  • chore(colours): fix wrong class name 51ad0a8

🏠 Documentation changes

  • docs(docusaurus): Iconography updates, thematic platforms 2a0e596
  • docs(colors): thematic pages integration ea7a422
  • docs(docusaurus): color updates cc13b54
  • docs(colors): fix swatches accessibility 306cb74
  • docs(docusaurus): typography and colors fixes according to comments on PR ae20a72
  • docs(colours): adjust logos heights 854d4fb
  • docs(typography): merge designer and dev units 65c240e
  • docs(typography): readded extra font sizes, fixed fluid a4a5d89
  • docs(typography): changed em to percentages d417600
  • docs(colors): minors updates and instructions 84ac882
  • docs(colors): blue-grey-6 adjustment e7ab2d1
  • docs(colours): added active colour 574f7a9
  • docs(colors): switch FISE logo to png 335471f
  • docs(colors): updated visited 0248fd1
  • docs(FISE): replaced logo f7d8331

🛠️ Others

  • perf(docusaurus): added remixicon and roboto locally b67b1a7
  • feature(Docusaurus): Updates on color palette information including thematic websites #231 from eea/refactor-docusaurus ec7843d
  • Upgrade Jenkinsfile storybook to yarn 3 d20de8d
  • Back to dev 563fbc5

1.0.0-alpha.4 - 2022-11-22

🐛 Bug Fixes

  • fix(cards-storybook): load slick carousel css for arrow and pagination styles 1159b1b

💅 Enhancements

  • change(cards): refactor cards theming implementation d4e4542
  • change(cards): allow rounded, inverted and theme parameter to be set by has classes 4b4ad89
  • change(card): expect has classes on the card directly 6a9e38b
  • change(utilities): added has text classes to the text alignment utilities e6974c6
  • change(utilities): modified class name for text align using has naming 579a0cb
  • change(theme): ensure that only direct children of container have a default top and bottom margin 7f8b8dc
  • change(build): upgrade action to trigger workflow and wait to latest version c63ad3f
  • refactor(card): theming implementation to allow has theming classes #265 from eea/card-refactoring 24edc99
  • change(theme): add slick-carousel dependency f2eec7d

🛠️ Others

1.0.0-alpha.3 - 2022-11-16

🚀 New Features

  • feat(Header): Add subsite section styling #263 from eea/subsite 00398b8

🐛 Bug Fixes

  • fix(search): position now changed by default to absolute from relative 51b08fc
  • fix(megaMenu): remove paddings for buttons added by active class ec33ebf

💅 Enhancements

  • change(components): load overrides files for our defined semantic files adde7a9
  • change(container): fullwidth now take into account devices without hover 5a35a65
  • change(container): ensure only the top level elements behave like containers 98b85d1
  • change(container): modified column-block grid to remove margin and padding when using full width class 35c1cee
  • change(mega-menu): hide home link and accordion content from mobile menu 1a69172
  • change(container): width from min width 1280px to 1365px max width 66e551e
  • change(container): removed app extras and view setting of layout sizes f6dc1ee
  • change(views): customized DefaultView to pass class into page-document area 91123aa
  • refactor(megaMenu): desktop - use buttons for menu section titles and readjust content cb9315f
  • refactor(megaMenu): add nav_title and nav_description attributes 0d7a568
  • refactor(megaMenu): style sub-title and nav-description b2a48fd
  • refactor(sidemenu): add third level list and items & update active indication e2d87da
  • change(columns): implement narrow, container and wide width classes 9696b54
  • change(container): story to add classes that modify the max width of the containers 37948f8
  • change(container): affect only left and right margin of containers 183265b
  • change(containers): modified class names after layout checks 1dc3689
  • refactor(sidemenu): add is_in_path and is_current attributes for an active example a3fe7fd
  • change(container): story to avoid adding containerwidth property to container div c13d83c
  • refactor(megaMenu): mobile - use buttons for menu section titles a7b632f
  • refactor(megaMenu): update padding variables c5f2583
  • change(views): moved narrow style bellow the default container width styles 72fa58d
  • change(listing): removed container from default view page-document area 69f3d8f
  • change(views): rename classes names to width_view and added app extras layout component 745b772
  • change(container): use important flag for left and right margin a49c83a
  • change(container): add variables for edit and add section of containers f2e2c33
  • refactor(megaMenu): update sub-title paddings 992f919
  • change(site): add a 1rem margin top and bottom on all styled classes dabf6c1
  • change(homepage): removed hiding of staging banner from homepage 4ba2cd7
  • change(container): unset values of page-document on 1200+ browser width dd5bea3
  • change(megamenu): set children to be appended to the right of the menu title b69c23a
  • change(theme): modified wide width to point to 1320px as it's perfectly divisible by 4 8f82573
  • change(theme): modified wide width to point to 1368px as it's perfectly divisible by 4 2349fee
  • change(container): renamed content-text-width to container-text-width 6f788c2
  • change(listing): provide ui container fallback if no class is passed to default view af9e94d
  • change(narrow-view): re-added container class to page-document 56b44a6
  • change(view): set container width for view-viewview class as well 29dc324

🏠 Internal changes

  • style: load header/footer overrides e5b5e0f
  • style(megaMenu): restore item description color 8a19bbb
  • style(megaMenu): restore accordion content bottom padding 8e0c5a7

🛠️ Others

  • Add subsite styling e79c0ed
  • WIP settings column grid width when using full size class affc7ac
  • code cleanup 2cdc3e5
  • fix eslint 30c52e4
  • test(estlint): Fix .project.eslintrc.js aaeaa07
  • modified left value of full width classes with toolbars 70d82d4
  • Release 1.0.0-alpha.3 8fc86a7
  • feature(content): added NarrowView useful for modifying the containers from content-area d937df7
  • jslint fix 9846159
  • Feature(container): flexible container size #260 from eea/feature-flexible-container 8f84c5b
  • Add Sonarqube tag using circularity-frontend addons list 76a41c7
  • fix broken variable call for contentBox.variables introduced in previous commit by mistake d249c11
  • clean up 89f3cb3
  • removed console log from code fad86ae

1.0.0-alpha.2 - 2022-10-28

💅 Enhancements

  • change(documentation): grammarly proof-read suggestions 9f609be
  • refactor(volto-slate): Upgrade to @plone/volto-slate - refs #153447 853d9d1

🏠 Internal changes

🛠️ Others

  • test(cypress): Upgrade to Cypress 10 / Razzle 4 c1c1f4b
  • more explanations a8b2272
  • add announcement bar, showing that EEA DS is WIP e14aeac
  • Update dependencies ee30a2b

1.0.0-alpha.1 - 2022-10-20

💅 Enhancements

  • refactor(footer): update svg and tablet contact link sizes 6aba061
  • change(blockquote): renamed to Callout reflecting the correct naming from Storybook 61a518c
  • change(footer): Shadow removed from logo & tablet updates #252 from eea/fix-footer 6df783d
  • change(colors): updated theme classes for text to use css variable colors cb089fd

🏠 Internal changes

  • style(footer): reduce social icons margin f6a9cf7

🏠 Documentation changes

  • docs(alpha): Update included components in 1.0 alpha version - refs #154387 fcc5af9
  • docs(callout): Rename Blockqoute to Callout in docusaurus - refs #154387 8d733ac

🛠️ Others

0.9.6 - 2022-12-16

🛠️ Others

  • Release 0.9.6 ae19b83
  • feature(copyright): image information #250 from eea/feature-copyright 7b323ed
  • Release-it 1f5671d

0.9.5 - 2022-10-20

🐛 Bug Fixes

  • fix(statistic): margin and slate colors when using the inverted options f263dea

0.9.4 - 2022-10-19

🐛 Bug Fixes

  • fix(edit-interface): block chooser and power user menu item colors when inside content-box 7aee4f1
  • fix(header): hero text going over the logo and menu on mobile resolutions 1434508
  • fix(content-box): z-index of box-inner and added underline to slate links c8b7c7e
  • fix(content-box): adding of underline to links c2f5f0f

💅 Enhancements

  • change(banner,colors): content box theme aware colors banner changes#254 from eea/develop bcb9a8c
  • change(Banner): Add subtitle subcomponent bb67f4c
  • change(item): moved svg filter definitions to item.overrides de70366
  • change(accordion): accordion titles with themes colors can now be modified by css variables e2ac13e
  • change(colors): in lists and callouts to allow color changes 940d1b8
  • change(colors): added backgroundColorSupplementary color variable 1f5262a
  • change(list,bullet): color is no longer primary instead it's text color css variant 8c04670
  • change(statistics): use theme colors with css variable for easy color customization fb72a01
  • change(Banner): Show label in metadata field 1acda3c
  • change(tags, items): use text color with css variable for content color for easy customization 6660e2e
  • change(styling): modified naming of theme css variables a332961
  • change(colors): added backgroundColor color variable b7e6831
  • change(quote): use secondary css var for easier color replacement 7a32312
  • change(statistics): tweaked margin of statistics so that they don't overflow over context boxes b4a8e33
  • change(accordion): allow customization of accordion title background color 6590baf
  • change(colors): introduced css variables for primary colors #247 ac80825
  • change(content-box): override primary text color to white as well 28b43c7

🛠️ Others

  • Include changes in the storybook a4d9fa4

0.9.3 - 2022-10-04

🐛 Bug Fixes

  • fix(card, contentBox): meta font size, removed header override of cards a7f94b9
  • fix(List): Ordered list item story - refs #155248 c70a2bc
  • fix(OrderedList): li third level margin left - refs #155248 fba5cb9
  • fix(cards): inherit color of card description ceda799
  • fix(accordion): Fix content default padding - refs #153783 566adf7

💅 Enhancements

  • change(site): committed fixed from custom into eea design package 9b9a1fd
  • change(jenkins): added yarn policy for storybook building 3d1b844
  • change(docusaurus): typography updates 60a93a4
  • change(item): added item image coloring when applying theming classes 0403fe4
  • change(accordion, site): change text color to tertiary instead of black 4641058
  • change(accordion): allow customization of accordion title with css variables 15e7d27
  • change(content-box): added css variables that will set text color and background for children 86cac53
  • change(tabs): allow customization of tab active and hover color 4370f42
  • change(tabs): color for tabs-block section 6778c92
  • change(cards): by default date is set to appear on the right of the meta section b7b80e8
  • change(cards): carousel dots are now relative positioned daa40a4

🏠 Documentation changes

  • docs(typography): update, local fonts 39a32d9
  • docs(typography): token fix to match used values for heightheight and letterspacing 91693ec
  • docs(typography): token fix to match used values for lineheight ff41b56
  • docs(typography): remove semibold 6eb3e08

🛠️ Others

  • test(cypress): Fix md5 dependency 17f618e

0.9.2 - 2022-09-27

0.9.1 - 2022-09-27

💅 Enhancements

  • change(cards): added ability to change the text alignment using css variables ed532ac
  • change(styles): use flex-end values only instead of end to avoid babel warning 24244b2
  • change(rounded): image size, border radius to ensure more image are turned into rounded options 51e23c1

🛠️ Others

  • Merge pull request #243 from eea/develop 576564c
  • Add Sonarqube tag using eea-website-frontend addons list 4a5be6e
  • Back to dev b251255

0.9.0 - 2022-09-19

🚀 New Features

  • feat(countUp): intall countup package and import it in statistics 10ba7cf
  • feat(docusaurus): custom editUrl function for the components usage pages - taskman refs #154076 93c4240
  • feat(site): Styling scroll-to-text fragments #238 1883fcf
  • feat(docusaurus): added Edit this page link in footer of each page - taskman refs #154076 2cf8746

🐛 Bug Fixes

  • fix(header): Prevent dropdown closing when clicking inside content 838f340
  • fix(cards): position of bullets and arrow clicking on events page 148723 22ef828
  • fix(cards): rounded images show up now even when card parent is cards 48f5e81
  • fix(statistic): add a min-width to content so unwrapped statistics don't break 7c5d511
  • fix(sideNavigation): add role list to list item 58f322b
  • fix(sideNavigation): remove unused useState import f9ea677

💅 Enhancements

  • refactor(sideNavigation): implement the design to the initial navigation & make component dynamic b673d63
  • refactor(header): update top bar 626bdd5
  • refactor(statistic): create custom export and add links 9f9ed56
  • refactor(statistic): update inverted style and add background variations 7578dc6
  • refactor(statistic): remove horizontal display on mobiles & update columns control 58f00e1
  • refactor(header): minor fixes spotted in testing 0f0f3ab
  • refactor(header): update main section heights d669f01
  • refactor(sideNavigation): remove green border and divider 939cd9b
  • refactor(link): update colors for link states 3e9f599
  • change(cards): styles img tag outside of .image ee89274
  • refactor(sideNavigation): update controls a3e8430
  • refactor(statistic): fix firefox issue for fit content 87aa113
  • change(statistics): rearrange controls order b19ae70
  • refactor(statistic): add max width to wrap text for all content 758f8ce
  • refactor(statistic): add max width to label so it wraps the text 824a127
  • change(Side menu & in page navigation): styling according to figma design #221 b2df858
  • change(header): align header with latest figma changes #232 135cd68
  • change(cards): integration when cards also contain call to action buttons f0d8766
  • refactor(iconography): icon group headings b9ccd80
  • refactor(header): add variables for some sizes 8eae84e
  • refactor(Statisctic): Rename slateVariation to extraVariation a07c589
  • change(docusaurus): started example on how to add headings for iconography 53cf843
  • change(cards): remove center alignment of rounded cards body area, only the image is now centered fdfac48
  • change(color): updated link colors #234 feabfe7
  • change(mockup): Access to figma style tokens 0bb25be
  • refactor(statistic): update margin 5190f56
  • refactor(button): adjust vertical margin db6d441

🏠 Internal changes

  • style(statistic): update decimal point 7976aa4
  • style(link): update visited link color d3b18b3

🏠 Documentation changes

  • docs(iconography): added icons, guidelines 0073f1d

🛠️ Others

  • Delete 2-test-new-page.md 749eff9
  • Create 2-test-new-page ab623ff
  • Release 0.9.0 eb7e2e5
  • stylelint fix 114e3f9
  • Move text fragments style to site.overrides 8368cbe
  • Styling scroll-to-text fragments 1bb3914
  • Update Header.stories.js 9036c74
  • feature(Docusaurus): Reflect usage of remixicon in iconography page #239 0802b32
  • Update 1-design.md 146115a
  • Test workflow for contribution - taskman refs #154076 dcb924f
  • perf(figma): access to style tokens 27d8dbe
  • Rename 2-test-new-page to 2-test-new-page.md 4e3be10

0.8.1 - 2022-08-26

🐛 Bug Fixes

  • fix(message): fix size controls ee51e1d
  • fix(docusaurus): intro page hero title color now that headers are using tertiary color 618e3cb

💅 Enhancements

  • refactor(message): restore semantic variables 1c16621
  • refactor(messages): mix semantc and token colors for messages 12efa75
  • refactor(emotiveColors): temp update for tests 61a720c
  • change(footer): removed line between sections and moved actions back to the bottom of footer d9f33e4
  • change(storybook): headings storybook now uses tertiary color by default reflecting site options 1061e77
  • refactor(message): add container to story 1259ece
  • refactor(message): remove override with custom background color on error 9b40cd7
  • refactor(message): add header controls 960c2f7
  • change(message): use semantic colors for messages #204 from eea/refactor-message 22d2c43

🏠 Documentation changes

  • docs(figma): added figma files to repo 6bd4144

0.8.0 - 2022-08-20

🚀 New Features

  • feat(IconCard): card with icon instead of image a85a179

🐛 Bug Fixes

  • fix(docusaurus): typography guideline now has real font values for headings, body, caption and small text 9508db9
  • fix(card): fix content gaps, adjust new meta section and update text color for default f1a78e1
  • fix(item): remove duplicate argType dde0be5
  • fix(iconCard): add aria-label at links 44f64c7
  • fix(card): merge fix df440ec
  • fix(heroblock): color even on edit page by inheriting color instead of using the tertiary color ac53fb7
  • fix(tab): add tabindex for accessibility error ab512be
  • fix(carousel): restore missing variable 1728312
  • fix(carousel): restore flex grow for cards and opacity for arrows ce71305

💅 Enhancements

  • refactor(carousel) add links in carousel cards & update structure and variables of less files f99cb21
  • refactor(iconCard): add control for variations and link 5e1b6a1
  • change(docusaurus, fonts): documented font letter spacing modification 522712a
  • refactor(card): css updates for card variations and styling updates c8b4a43
  • refactor(publicationCard): add links and fix accessibily issue 80adf6c
  • refactor(card): add new section in meta and remove links bfb82ae
  • refactor(item): add stackable functionality 8d714fa
  • refactor(card): update meta section and controls 5e28e12
  • refactor(roundedCard): remove unnecessary code and controls and add all variations 6305c54
  • refactor(roundedCard): add optional link for image and header a6d3bf2
  • refactor(card): add tertiary hover and update css selectors ca06948
  • change(fonts): updated font sizes with values given in figma 4b0ae48
  • change(style): color, space and adjust line-height as described in docusaurus 3366da2
  • change(headings): only h2-h6 get tertiary color 7d81308
  • change(site): removed Archivo import as we should only use Roboto font a6af056
  • change(docusaurus): use tertiary color for headings and body color mirroring the design system styles 145fe73
  • change(fonts): modified headings font size as well as line height f0771ea
  • change(fonts): updated font sizes with values given in figma f16eef7
  • change(docusaurus): use Roboto font from google fonts also for docusaurus adca8e9
  • change(headers): added headerColor variable so that thematic sites can easily choose another heading color f09d2c5
  • change(fonts): typo fixes for typography section of docusaurus cae4b02
  • change(fonts): modified footer and header values afer global font size changes f160d35
  • refactor(iconCards): run prettier fe84e46
  • change(typography): inherit header colors with @headerColor variable 91d9357
  • change(breadcrumb): use tertiary color also for breadcrumb c5cbd44
  • change(heading): on homepage on the first hero set font size to h1 and inherit color 5711096
  • refactor(carousel): update card titles to display styling fix edd966b
  • change(docusaurus): use the tertiary color for body and heading colors 11c4ed4
  • change(typography): modified lineheight-0 after headers now use 1.2 instead of 1.25 04d78a8
  • refactor(card): add links to cards and replace description with title in carousel 0258737

🛠️ Others

  • feature(heading): and cards refactoring #227 from eea/develop 334fbda
  • Update package.json 3870cf3
  • Header refactor 153536 #226 from eea/header-refactor-153536 87a6fe7
  • feature(item): icon is now stackable moving the icon on top #220 b716acf

0.7.6 - 2022-08-15

💅 Enhancements

  • change(footer): Footer updates 147837 #225 fa9ae58
  • refactor(footer): initial redesign of main section 8e85617
  • refactor(footer): restructure theme sites logo columns dcba45a
  • change(footer): set actions before thematic section on mobile db25f96
  • change(footer): fix missing key warning from react dev 77f72d5
  • change(footer): Footer updates 147837 #222 32fed23

0.7.5 - 2022-08-11

💅 Enhancements

  • change(megamenu): mobile improvements with See all links, active elements and non accordion children #224 6767b99
  • change(megamenu): render accordion only if children have children be63ce2
  • change(megamenu): mobile menu design tweaks as seen in latest figma 26d74dc
  • change(megamenu): removed icon from at a change menu items and they are no longer bold as requested 043e772
  • change(megamenu): reset first level panels after each item pass 175351b
  • change(megamenu): mobile menu improvements #223 b3cabfe
  • change(megamenu): fixed key error warnings 075bf01
  • change(megamenu): handle default active sub accordion 6192a99
  • change(megamenu): enable active border only for items not titles fb0b869

🛠️ Others

0.7.3 - 2022-08-04

💅 Enhancements

  • change(megamenu): added icon on mega menu header section d0ad4d8

0.7.2 - 2022-08-03

🐛 Bug Fixes

  • fix(contentBox): z-index of content hidden by bg when using content-box-inner c5a7dac

🛠️ Others

  • Set focus on search input field in the popup on click d12c051
  • Make cypress tests work with both slate and draft selectors 4d8e5b1

0.7.1 - 2022-08-01

0.7.0 - 2022-08-01

🚀 New Features

  • feat(accordion,buttons): primary, secondary and tertiary variations #209 c34617f

🐛 Bug Fixes

  • fix(megamenu): key warning errors 4ecd279
  • fix(container): add padding also for block editors when we are on the add page not just edit b857aad
  • fix(header): bump opacity of gradient class to get rid of green hue of header text 2011b40
  • fix(header): remove console log 3a20023

💅 Enhancements

  • refactor(callToAction): add tertiary variant and restructure exports ac6695a
  • refactor(accordion): add color variations 3504c15
  • change(megamenu): WIP bringing back rendering of item with callback and path modification 6e43d43
  • refactor(megaMenu): add slide down transition and update targetRefs on close 9667157
  • change(megamenu): use renderMenuItem in order to render menu items 9ed5cbd
  • change(footer): replaced eionet logo with an svg variant and tweaked size of eionet to match size of eea logo 32ce462
  • refactor(callToAction): update tertiary state colors 159668a
  • change(accordion): style default accordion using the grey from semantic ui e24907d
  • refactor(accordion): add variations and create a default export 4a9c68f
  • refactor(colors): add tertiary shades for element states 1e24a7e
  • change(tests): try to modify tests to use slate instead of draft a2e2485
  • change(megamenu): set active class on storybook list items 112bff1
  • change(megamenu): add border for active element of menu 5e7dfa5
  • change(package): condition modification of navDepth settings dd21dad
  • change(mega menu): use non variable to fix build of volto-kitkat-frontend 3ecd652
  • change(header): prefix mega-menu active class for adding border 32898cb
  • change(tests): use data-slate-editor instead of contents that was found in draft js instead of slate 1e0413c
  • change(stories): hide variant control from button link story 43f8c41
  • change(stories): hide variant control from button link story aea7126

🛠️ Others

  • feature(theme): added context navigation component story and default style 5a6955f
  • feature(megamenu): open default accordions on mobile navigation based on pathname cc299c1
  • fix eslint warnings 3b30282
  • bump release version to 0.7.0 fa82cbd
  • Theme fixes, mega menu selected element both in desktop and mobile #211 b482729
  • feature(mega-menu): added menu slide down animation #208 4360d0e

0.6.5 - 2022-07-06

🐛 Bug Fixes

  • fix(header): double click to close dropdown is no longer required b8a2ed0
  • fix(header): menu generation when atAGlance isn't found d68b03c
  • fix(menu): removed minHeight that enlarged the global menu 133be1e
  • fix(hero): image dimensions when full width and height isn't enabled 4114f73
  • fix(contentBox): removed negative z-index that hid fullwidth bg color bd60faf

💅 Enhancements

  • change(hero): tweaked hero block height and padding 994b6f8
  • change(item): tweak size and padding of icon when used inside item dbdef19
  • change(typography): updated letterspacing values and clarified values used for certain type tokens 8a13bf8
  • change(item): enable theming for icon and text color and added tertiary option 6d4444f
  • change(header): top section chevron sizes and margin as requested in enhancements document b307c74
  • change(cards): add underline to links when applied to headers and use tertiary color by default 874f956
  • change(utilities): wrap in quotes h2 and h3 of quoted-wrapper 8aa4716
  • change(package): bump package version to 0.6.5 denoting bug fixes release 0585aeb

0.6.1 - 2022-07-01

🚀 New Features

  • feat(UnderlinedTitle): create story and necessary utilities 8beb56b
  • feat(headers): added underlined titles with theming support af67561

💅 Enhancements

  • refactor(heading): move underline story and update controls 2c9bfd2
  • refactor(underlineTitle): add content box for different variations 0878915
  • refactor(underlinedTitle): add control for changing heading size 211f515
  • refactor(underlinedTitle): Restore text variation dropdown control bd8c611
  • refactor(utilities): add color variation for headings and text 7e3a779
  • refactor(utilities): update border bottom utility and restore line height for headings 7fe4a7b
  • refactor(headings): update the line height of headers according to docusaurus instructions 9da19b3

🏠 Internal changes

  • chore(countup): package for statistics 26fcd09

0.6.0 - 2022-07-01

🐛 Bug Fixes

  • fix(item): adjust the container in stories a848c46
  • fix(tag): align start for tags on mobile, update path for Tag List and add containers b9de845
  • fix(item): update image width & height on mobiles and add 3 line clamp for description 0cd2c46
  • fix(pageheader): metadata font size on mobile to be readable 0a9b1fa
  • fix(breadcrumb): fixed variable name for breadcrumb item 2b547eb

💅 Enhancements

  • refactor(Item):create item story with custom default class 069ae02
  • refactor(pagination): add pastanage menu overrides and remove any eea theme css from default story 5080810
  • refactor(item): update variables from px to rem 30eed78
  • refactor(Item):add default item mobile padding 3518465
  • change(site): added fixes from custom 0fe4d80
  • refactor(Pagination): add default pagination stopry and rename previous as Secondary a5e3e13
  • refactor(pagination): comment out secondary pagination and its styling bcf4cff
  • refactor(tags): remove content class and add flex wrap d6333ca
  • change(logo): use a real svg logo for white eea logo 3b80dc7
  • change(header): show eea information systems on tablet as well ce82ceb
  • refactor(tokens): update letter spacing tokens 5f8753b
  • change(letterspacing): updated letter spacing positive values b31818f
  • change(pageheader): add bottom margin on mobile for sharing dropdown actions d3cda47
  • change(pageheader): removed blogger, reddit and stumbleupon sharing links e4acc4e
  • refactor(Item): add default item background color c978c8d
  • change(package): bump package version 1f01f72

🏠 Internal changes

  • style(item): update item image e585e9d

🏠 Documentation changes

  • docs(colors): token usage c433ec6
  • docs(Docusaurus): typography and spacing updates 48d1269
  • docs(Docusaurus): various fixes a972a31
  • docs(typography): updates 66d95e4

🛠️ Others

  • Tabs block custom border left/top ca4cce0
  • Fix sidebar tabs in Volto CSS c287db5

0.5.5 - 2022-06-23

🐛 Bug Fixes

  • fix(contentBox): color of cards when inside content-boxes 76a4520

💅 Enhancements

  • change(homepage): moved fixes of homepage to custom and colored carousel arrow 0a226ef

0.5.4 - 2022-06-16

🐛 Bug Fixes

  • fix(block-style): Content box preview in sidebar 6362766
  • fix(header): ensure transparency goes as high as the search icon 4470e13

💅 Enhancements

  • change(contentBox): add background as before element instead of using full-width 7e0a596
  • change(content-box): content box links are now underlined f7976f5
  • change(homepage): added fixes from custom c3e0333
  • change(hero): add margin top with the height of the top section on edit fefa6bb
  • change(cards): fix default card color when inside content-boxes 6fdf3aa
  • change(container): removed override of content-box-inner container 66fe7d4

0.5.3 - 2022-06-16

🐛 Bug Fixes

  • fix(homepage): hero and homepage fixes for #151156 #198 43d4efc
  • fix(header): fixed top section width on edit page ce5898b

💅 Enhancements

  • change(hero): added min height to hero-block-image-wrapper 3cc37c0
  • change(hero): spaced hero block has a 3rem margin top and bottom c463b03
  • change(hero): added extra top margin on hero-block-body from tablet and up within homepage 64142c3
  • change(hero): tweak min height of hero block e1271b4
  • change(card,contentBox): use inherit for text color to inherit black from body c1ba3b6
  • change(container): on section-edit modify only left and right padding values fe6e3ec
  • change(utilities): bump z-index of overlay class ede3209
  • change(hero): fixed variable reference for margin of body from homepage 092b90b

0.5.2 - 2022-06-14

🚀 New Features

  • feat(contentBox) : add new Content Box component 2ebbb47
  • feat(ContentBox): Add primary, secondary, tertiary themes 87cb2fe
  • feat(ContentBox): Update storybook with available themes 93b26b2

💅 Enhancements

  • refactor(contentBox): restructure the component to be more flexible f0d2de6

🏠 Internal changes

  • chore(contentBox) : add lint changes 5aaf740

🛠️ Others

0.5.1 - 2022-06-13

💅 Enhancements

  • change(header): changed homepage text color 64ce8b6
  • change(hero): added styles for adding dark overlay to hero bf1d292
  • change(homepage): hide stagingBanner on homepage fb6e319
  • change(header): use variable for homepage hero-block padding 89ff344
  • change(tokens): modified grey-4 color to point to a 10% shade from original color b406283
  • change(header): added min-height for mega menu needed for 1 items menus 18814f4
  • change(hero): hero section block integration #192 4ea2f40

🛠️ Others

0.5.0 - 2022-06-11

🚀 New Features

  • feat(hero): added storybook implementation of hero component #172 17b9d16
  • feat(hero): add hero block component and stories 6019fc8

🐛 Bug Fixes

  • fix(header): Internal links in mega menu d8ca135
  • fix(header): show active menu when clicking on children a54fa67
  • fix(header): accessibility and dropdown possition fixes 505ac36
  • fix(header): fix accessibility issue by David 783dcec
  • fix(header): dropdowns disappear on resize 52338fd
  • fix(header-topdropdown): dedupe html elements for topdropdowns cd8a2a7
  • fix(header): transparency class should apply on the current bg color or image f9a0033
  • fix(header): mobile dropdown now visible 34371b4
  • fix(header): dropdown disappears after window resize #116 fc7dd8b
  • fix(header-topdropdown): dedupe html dropdown elements for topdropdowns #115 f10a7a8

💅 Enhancements

  • refactor(megaMenu): update mega menu in header component 2d1ce45
  • refactor(header): update structure and variables of top bar af70909
  • change(header): renamed mega menu items href attribute to url 3ed8144
  • refactor(header): update main section and and add color variations f2f0fd1
  • refactor(header): minor updates on colors and widths a70129f
  • refactor(hero): add full-heigh control to adjust height a45cb7c
  • change(header): disable sticky setting until feature is more stable 1d7af95
  • refactor(hero):make button variant and inverted different button controls 7e182ca
  • refactor(header):main bar sticky on scroll up 9c9e7c6
  • refactor(headings): update heading sizes for mobile 19f3cca
  • change(header): hide first link(home) from header menu on site ae7f3b9
  • change(megamenu): typo correction and key setting on list.items 96d2c4f
  • change(header): use Link instead of a tag for menu items 9812b3f
  • refactor(header): add control for inverted logo 023ca45
  • refactor(hero): move quoted utility to h2 tag 7376676
  • refactor(header): add link for menu title inside desktop mega menu 24355d0
  • refactor(utilities): update hex with color token 8dc65ef
  • refactor(header): and mega menu to latest spec #114 44fcf68
  • refactor(header): update search input and file endings afab36f
  • refactor(header): add control that toggles transparency class on main section b8d4bdb
  • refactor(header): restore union dropdown after implementation 7e98bab
  • refactor(header): minor responsive fixes 16a0006
  • refactor(hero): align hero's text and meta seperately 4fa958f
  • refactor(hero):add button variant controls f362a7b
  • refactor(header): update search input 368962e
  • change(header): mark top level active menu item 665c449
  • refactor(hero):prettier & style changes d846884
  • refactor(header): add control for main section stickiness 2f07572
  • change(header): use viewport width for changing mobile text in header dropdowns b50fa58
  • refactor(header): add fluid font sizes 5f2743e
  • refactor(header) add position sticky & transparent for main section 29df772
  • refactor(hero): update variables with new design tokens 1d97922
  • refactor(Language List): render language dropdown as ul and li elements 3617442
  • change(header): introduced item class to the mega menu link content 00ca376
  • refactor(Language List): add less variables 7ccc1cc
  • change(header): disabled active menu when clicking on globalnav links 3f7b5ee
  • change(header): target link instead of span directly 9e865fb
  • refactor(header): remove unused imports 7e232db

🛠️ Others

  • Add item themes; override .block .ui.image width based on size 06010db
  • Move item icon themes to item.overrides 31e8921
  • Override only the width 8d49270
  • Override tile image in .block parrent 005655d
  • Update package.json 9dc3816
  • feature(item): added themes to item icons #190 a6a2907
  • update storybook header.topdropdown e58ac08
  • use volto-screen-helper width ea156aa
  • Add divider content for metadata field in Banner 327ad1c
  • rename to viewportWidth 32162e7
  • don't connect component to store 470b8ba
  • Add end of line 51639d8
  • behave as mobile under 480 only 11b99e1
  • make it account for all mobile-s,m,l 69e23ae

0.4.5 - 2022-06-08

💅 Enhancements

  • change(tabs): Add style for tabs accordion template #187 fb8adbf
  • change(footer): avoid react error by providing key prop to grid column ef0b193

🛠️ Others

0.4.4 - 2022-06-08

🚀 New Features

  • feat(divider): create story for divider b10a2e0

🐛 Bug Fixes

  • fix(divider): restore space between classes c595c15
  • fix(divider): Text colors and transform e524e10
  • fix(footer): story aria labels for social media links 254bdc7

💅 Enhancements

  • refactor(footer): update logos and less structure 66b8e0f
  • refactor(footer): first footer updates d18a2ee
  • refactor(footer): logo updates and adjustments 101bc9d
  • refactor(footer): use tokens and adjust spacing 2cb1669
  • change(footer): moved SubFooter logic to SubFooter.jsx from Footer story 902383a
  • refactor(Divider):add divider with content inside story e2d66dc
  • change(footer): added managed by section as properties 9328fc3
  • refactor(divider): remove custom divider d4870d2
  • refactor(Divider_:remove green color class & add tertiary 95f3018
  • refactor(footer): use remix icons for social links 5ef9aa2
  • refactor(Divider):remove clean class and use fitted prop 8d2be35
  • change(Divider): Rename color property to theme 0deffc8
  • refactor(footer): update links and logo align 7afbab9
  • change(footer): tweaked column sizes to the values before my changes fdf2718
  • refactor(footer): to latest figma design #182 3e0ba2b
  • refactor(footer): move subfooter logic to the proper component #185 3034577
  • refactor(footer): update controls b0b872b
  • refactor(testimonial): update divider 784450a
  • refactor(testimonial): changed divider color to secondary 84282f9
  • refactor(divider): remove custom divider from theme config a0409e8

🏠 Documentation changes

  • docs(divider): switch to secondary color 239844b
  • docs(divider): showcase path fix d5ea03f

🛠️ Others

0.4.3 - 2022-06-03

🐛 Bug Fixes

  • fix(edit): Fix columns/accordion inner toolbar padding fafbb52

💅 Enhancements

  • change(docusaurus): completed removal of description from guides 42424b9

0.4.2 - 2022-06-02

💅 Enhancements

  • change(docusaurus): moved color swatches around in the color guide 8a395fc
  • change(docusaurus): removed description from components and introduced category listing f220bf0
  • change(docusaurus): rename gap to space and added em spaces f5b042d
  • change(docusaurus): moved extra docs to webdev section 1ce0797
  • change(docusaurus): moved md_components files into webdev/md_components 73c1c08
  • change(docusaurus): added category yml for all sections 1740572
  • change(docusaurus): color guideline updates and spacing tokens documentation #148 c1154ba
  • change(docusaurus): modified story links to avoid broken usage tabs 78dc8d8
  • change(docusaurus): renamed several file id's so that they match the incremental naming sequence 11299c9

🏠 Documentation changes

  • docs(Docusaurus): timeline, testimonial, quote and tags aaa54ec
  • docs(spacing): add relative gap tokens 92abc8f
  • docs(colors): updated colors a28c99e
  • docs(tags/content): new page about tags and content 60be402
  • docs(Docusaurus): labeled icons f6a0f61
  • docs(typography): add font size and line height tokens 2ff65e4
  • docs(spacing): add spacing gap tokens 2d53727
  • docs(spacing): add missing gaps 442db46
  • docs(docusaurus): minor fix 6e66513
  • docs(spacing): aligned images e946fe5
  • docs(spacing): new image fcd3294

🛠️ Others

  • merge changes from develop into docusaurus token documentation a940138
  • perf(docs): restructuring order 8f4134d

0.4.1 - 2022-06-02

🚀 New Features

  • feat(languageLabeledIcon) : add new component 110558e
  • feat(LanguageLabeledIcon):add new component d00200c
  • feat(newTabLabeledIcon) : add new component 8f5cd31
  • feat(labeledIconGroup) : add new component 787d648
  • feat(DownLoadLabeledIcon) : add new component 6ea2fa1

🐛 Bug Fixes

  • fix(LabeledIcon) : fix lint errors 91b042f
  • fix(LabeledIconGroup) : fix links for tests daa1065
  • fix(LanguageLabeledIcon):bug fix & languages change 1436e2b
  • fix(LabeledIconGroup):fix based on Langauge & Download Labeled icon components changes 3015864
  • fix(newTabLabeledIcon) : add link item b1a9ada
  • fix(Labeled Icons):minor bug fix 00f3022

💅 Enhancements

  • refactor(labeledIcons): adjust new tab labeled icon to figma and replace px with rems 904615d
  • refactor(LanguageLabeledIcon):implement with pop up 0f3dd8f
  • refactor(labeledIcon): add group wrapper in labeled icon stories 4b7dd31
  • refactor(DownloadLabeledIcon):implement with pop up aa61f9b
  • refactor(labeledIcons): adjust language labeled icon to figma 5741e3d
  • refactor(labeledIcons): adjust download icon to figma and replace px with rems 4ae8530
  • refactor(LanguageLabeledIcons):minor storybook change 78f5544
  • refactor(LanguageLabeledIcon): set language code to uppercase and minor storybook change ac28693
  • refactor(labeledIcon): adjust paddings 9c1ecdd
  • refactor(labeledIcons): update margins for group labeled icons 5fa5ca9
  • refactor(labeledIcons): add variable for icon color 9f9d3cb
  • refactor(labeledIcons): update colors on download links c042642

🏠 Internal changes

  • chore(labeledIconGroup) : lint changes 535cee4
  • style(downloadLabeledIcon) : fix styling 6d8e3ac
  • style(downloadLabeledIcon) : fix alignment 4558017
  • chore(LabeledIconGroup) : lint changes ab36476

0.4.0 - 2022-06-01

🚀 New Features

  • feat(Carousel): create carousel for cards 2b0d737
  • feat(ItemwithIcons): Initial Item group with icons, new item variation 7f4ea47
  • feat(utilities): add file and basic utilities 05c88b2
  • feat(utilities): add file with basic utilities classes #173 855185f

🐛 Bug Fixes

  • fix(tokens): hsla function for shadows b8e5d37
  • fix(tokens): remove css var from less file a9c4224
  • fix(carousel):add storybook controls descriptions 269a603
  • fix(item): remove image width css from item.less 7b21cb2
  • fix(table): Set responsive breakpoint to @tabletBreakpoint 067e018

💅 Enhancements

  • refactor(item): import item.less in theme definitions c516374
  • refactor(Label):add corner,ribbon & basic label stories and styles e2bbbb9
  • refactor(Label):style changes based on label importance class ce4d5d1
  • change(tokens): rename gap to space and added em spaces 719efc4
  • refactor(item): add classes for size, set default to tile and add controls for grouped items d5a0405
  • refactor(tokens): add borders, shadows, shapes and z-index tokens 7069106
  • change(tokens): name spacing tokens gaps and added missing values up to 80px as documented 9fbd912
  • refactor(quote): Rename sourceInfo to extra info 76c2b40
  • refactor(item): WIP replacing unstackable with row e3a44de
  • refactor(tocens): add color design tokens 13bb165
  • refactor(item): adjust margins to match figma designs 6334581
  • refactor(carousel): remove title from story and color on card hover 12a1d7c
  • change(tokens): updated sizes with 4-8-16px increments 1f53d65
  • change(tokens): added size tokens to be used for width of elements cda5dea
  • change(utilities): values need important rule 96150d9
  • change(tokens): added also rem space values aedbbdd
  • change(tokens): updated z-index tokens with negative values 404efe4
  • refactor(tokens): add 14px font size token 8d8695d
  • refactor(docusaurus): restructured and improved sections navigation #174 b47b026
  • refactor(tokens): add 12 and 14px font size token #176 3681147
  • refactor(tokens): remove conditional border radius f0fe5ad

🏠 Documentation changes

  • docs(website): created new sections, improved website navigation 243f0be
  • docs(homepage): adding design system homepage with links for upcoming sections c9a9685
  • docs(docusaurus): copyedit, improved navigation 998762a
  • docs(website): restructuring, moved current DS docs to new folder 8bb612f
  • docs(homepage): copy editing ee37d6f

🛠️ Others

  • Release 0.4.0 f4bc509
  • feature(homepage): added Item group with icons #167 2ec99f5
  • feature(tokens): added borders, z-index, shadows tokens #171 74c1788
  • feature(tokens): added initial color design tokens #169 da3eae0
  • perf(carousel): added slick library ca9be51

0.3.1 - 2022-05-19

🐛 Bug Fixes

  • fix(input,segment): toggle inputs and padding fixes within Volto sidebar forms de030d6

💅 Enhancements

  • change(login): restored width of login container to 376px 0564293

0.3.0 - 2022-05-17

🚀 New Features

  • feat(Callout):create Callout component with Blockquote style 3d486b1
  • feat(callout): Align the Callout component with Volto slate component e9343ff

🐛 Bug Fixes

  • fix(testimonial): fix storybook arg names b9df52f
  • fix(table): tweak responsive table for extra long headers 7f9f9e2
  • fix(quote): fix color and padding issue 310d6b3
  • fix(accordion): Fix accordion active title color 57af165
  • fix(testimonial): remove info arguement 9593d95

💅 Enhancements

  • refactor(Table):add responsive mobile table story and styles aed69e6
  • refactor(testimonial): adjust to volto design | fix avatar image size 546070e
  • refactor(Quote):rename Pullquote component to Quote 9384a0c
  • refactor(Quote):rename Quote.Metadata to Quote.SourceInfo dfae8b1
  • refactor(Quote): rename Author to Source 6d400f6
  • refactor(Quote):move Testimonial component under Quote folder e2467c2
  • refactor(testimonial): readjust rounded card b419334
  • refactor(Table):wrap table with semantic ui container 24ac2bb
  • refactor(Testimonial):minor storybook bug fix 7b6d128
  • refactor(Callout): wrap story with semantic ui container ead362d
  • refactor(quote): update action name to match the functionality caf2e35
  • refactor(table): add borders to responsive table with celled attribute 8a71a67
  • change(table): make use of headerSortableWhiteSpace variable fd836fb
  • change(table): use the @mobileLandscapeBreakpoint for max 480px media query 90880ab
  • refactor(Quote):rename pullquote to Quote in Testimonial f54da19
  • refactor(Testimonial): change card class name e995c32
  • refactor(Testimonial): prettier changes 904594b

🛠️ Others

  • feature(tokens): added tokens folder for design tokens we can use in the system a542172
  • perf(lint): fix f2ef3ab
  • Release 0.3.0 8724b28

0.2.4 - 2022-05-13

💅 Enhancements

  • change(segment): brought back overrides from pastanaga into our theme 14efd02
  • change(container): removed padding from containers restoring thus the defaults c2ed813
  • change(grid-story): added container as grid width is influenced by container width 459f481
  • change(breadcrumb): removed padding from breadcrumb added by container c5df567
  • change(container): modified all outputted widths to align to grid 9f29cef
  • change(breakpoints): restore Semantic UI breakpoints, adding extra needed values e7f5b1e
  • change(container): restore maxWidth to 100% now that the last value is 1120px 8b55c58
  • change(header): wrap header globalnav links useful for editing section 10d4f56
  • change(breadcrumb): added vertical variant to the breadcrumbs like we do in Volto f405f84
  • change(breakpoints): added also contentBreakpoint for backward compatibility b6c9212

🛠️ Others

  • [JENKINSFILE] Add failure comment, no jenkins fail c325bf1
  • prettier changes 134da52
  • [JENKINSFILE] format PR comments 739438c
  • [JENKINSFILE] mention comment author in comment 39a26aa
  • [JENKINSFILE] remove debug, add error per stage 903eecd

0.2.3 - 2022-04-29

🚀 New Features

  • feat(CallToAction):add feat call to action ab53642

💅 Enhancements

  • refactor(button): add container to stories 6c02c19
  • refactor(tab): update vertical tab columns and content b473fab
  • refactor(call to action):render call to action with Button as="a" e7dfabf
  • refactor(button): update inverted button colors c822021
  • refactor(Tab):scrollbar change in mobile & vertical tab fix 0e34cbf
  • change(banner): added icon class to share icons 48e866e
  • refactor(Button): move button to forms folder 94996fc
  • refactor(Tab):minor change in secondary pointing menu variables 280b6c4

🏠 Documentation changes

  • docs(button): import call to action stories e4eed44

0.2.2 - 2022-04-22

🐛 Bug Fixes

  • fix(publicationCard): restore line endings 582859e
  • fix(form): added back overrides from Pastanaga theme a3f7ff8
  • fix(OrderedList) : add list only if sub list exists 8acbc8d
  • fix(label): update highlight label color d55bbb0
  • fix(publication card): run prettier 81a5bfc
  • fix(avatar) : fix naming convention for arg 84fc5fa
  • fix(tab): restore mobile font sizes 58f39be
  • fix(addForm): add min height to add form and fixed block chooser overflow ca4415d
  • fix(OrderedList): adjust margins to fourth sublists 663d384
  • fix(dropdown): being hidden because of third party css 7d353df
  • fix(modal): overflow hidden as clearfix of last child from modal b4923f5
  • fix(RelatedContent):fix merge conflict adc34bf
  • fix(button): labeled class needs to be placed after left or right keyword 53d1204

💅 Enhancements

  • refactor(card): prettier fixes e10e3d6
  • refactor(card): add card variations e16d05b
  • refactor(card): remove stories 0deb0ca
  • refactor(card):delete primary and secondary card stories 1f95d22
  • refactor(Avatar) : remake avatar as card variant ea77cdd
  • refactor(card): add styles for card variations 7407bd3
  • refactor(storybook): add story with related content inside of a tab dca008a
  • refactor(card): Rename variables from avatar to rounded be01316
  • refactor(avatar): update less variables and layer structure f965db1
  • refactor(PublicationCard):remake publication card to be a semantic card variation 5a0c6ab
  • change(button): simplified button styling fe892d6
  • change(button): simplified storybook naming and examples 9a7df4f
  • refactor(Avatar) : convert avatar component to card variation 2004a94
  • refactor(Related Content): change in grid and add see all button 955450e
  • change(button): added back button.overrides from pastanaga theme 3b55acb
  • refactor(card): add card class control 68c91a9
  • refactor(card):delete publication card variables & overrides files 6be8a03
  • refactor(OrderedList): rename TOC to Ordered List and add container to the story e00c4db
  • refactor(card): add card grid fluid story with no columns f38251c
  • refactor(list): remove horizontal control 1f5e576
  • refactor(avatarGrid): update less variables and layer structure db554a8
  • refactor(Related Content):show button when there are more hidden cards 57ff1c8
  • refactor(RelatedContent):change to use new card variant instead of publication card component 7cf424a
  • change(breadcrumb): brought back pastanaga overrides to breadcrumbs bca1c93
  • refactor(card):delete publication card folder & story 68bf773
  • change(buttons): modified basic and circular variant behavior c06fed9
  • refactor(card):tertiary variation minor story update 87b8dca
  • refactor(DescriptionList): add container to story d647c1a
  • refactor(List):render ordered list with ol,li tags 87813c1
  • refactor(OrderedList) : change table of contents story to ordered list cb6197c
  • refactor(publicationCard): update tag and name variables c109ad9
  • refactor(UnorderedList): update list as ul, list items as li and add container to strory 2c096e1
  • refactor(card):organize controls and minor bug fixes f3f6e35
  • refactor(less variables): publication card style changes c5a84e9
  • refactor(less variables): add less to related content e1a5543
  • refactor(RelatedContent):delete publication card component 2ed0ed4
  • change(button): basic button is again without padding, border and background 5a907c7
  • refactor(PublicationCard):remove link wrapper 5911a0d
  • refactor(less variables): change publication card height per viewport d7a5256
  • refactor(Timeline):change timeline icons b2fe0bf
  • refactor(publicationCard): replace px with rems 53bf8da
  • refactor(Related Content): change in related content grid bf856ce
  • refactor(List):render description list with dl,dt,dd tags ec669a7
  • change(button): show only labeled variant for buttons with icons bf49944
  • refactor(card): import image for rounded card ca5a47e
  • refactor(progress): add container to story dfb33bb
  • refactor(storybook): add publication card story with different description sizes 23af97b
  • refactor(List):render default list with dl & dt tags ece2280
  • refactor(storybook): add publication cards stories with longer description 37adefa
  • change(button): basic icon buttons no longer have box shadows c2f3ea3
  • refactor(card): remove story afc5f79
  • refactor(less variables): change card description line number per device 6946fda
  • refactor(card): update rounded card image path 8db3a85
  • refactor(DefaultList): add container to story f971193
  • change(button): bumped z-index of sidenav expand button 445ed8a
  • change(progress,label): color accessibility fixes #151 09cf6e3
  • change(button): text button now has an underline with a focus border like other buttons cdd9043
  • refactor(card): update card variation grids path 756589c
  • refactor(card): minor fixes 3a880d7
  • change(button): primary color is blue and secondary is green 53e0a0c
  • refactor(List):change styles to match with the tags lists are rendered 2673890
  • refactor(progress): update colors for accessibility ea2f454
  • refactor(card): move avatarGrid & relatedContent to Card folder 1959d52
  • refactor(Timeline): change storybook timeline colors to fix accessibility issues 79da8dc
  • change(segment): restore light grey background color for secondary segments 8716b08
  • refactor(relatedContent): adjust column paddings 8a1520d
  • refactor(storybook): clear up code 3ada154
  • refactor(card): use the rounded class for avatar grid 8c000f3
  • refactor(card) Update rounded card class 140b587
  • refactor(avatar): add variable for image border radius c23341c
  • refactor(label): add container to story 565101f
  • refactor(progress): update value color for accessibility error 6fc76f8
  • refactor(card):use jsx extension 413d328

🏠 Internal changes

  • chore(Avatar) : add container to stories 41b748c
  • style(OrderedList): prettier fixes ed95e4d

🛠️ Others

0.2.1 - 2022-04-08

🐛 Bug Fixes

  • fix(version): Switch to 2.0.0.alpha.1 83b8b8e

🛠️ Others

  • cleanup(loader): Remove useless HTML d1d180c

0.2.0 - 2022-04-04

🚀 New Features

  • feat(card) : add new default card color-schme 965adea
  • feat(label): Handle slate links and footnotes f382431

🐛 Bug Fixes

  • fix(buttons,toggles): border and background color when active 147629 #139 ea36f31
  • fix(checkboxes): background color when they are toggles 4b6ab67
  • fix(buttons): border set on basic buttons appearing on svg elements of Volto UI 69ca73f
  • fix(label): Zotero/Footnotes inside label 0ee4d58
  • fix(card) : add control for image url in storybook b28e530
  • fix(less variables):change font family e4bca9e
  • fix(storybook):minor bug fix 9fc53bc
  • fix(tag): fixes merged theme config eb30363
  • fix(Banner): prop types fix a270e5b

💅 Enhancements

  • refactor(tag): splits Tags component to TagList and tag, changes default tags style 78a5f8c
  • refactor(Banner):add banner share pop up in banner story c9688b2
  • refactor(tag): remove classes and actions that add background color ce9b6f9
  • refactor(Banner):change banner's image wrapper implementation 9153dd1
  • change(package): bump release version to 1.10.0 7e984c1
  • refactor(card): align cards and images, update less variables d47c978
  • refactor(card): add class inverted for default card 919a56e
  • refactor(tag): changes component name e1db068
  • refactor(tag): changes color metallicBlue to bottleGreen e4b68ac
  • refactor(less variables): change tag list mobile view fcded3d
  • refactor(tagList): update story to not use tag color classes 8b5b61b
  • refactor(Banner):minor bug fix ff8c352
  • refactor(Banner): add metadata field sub component 327b7e7
  • refactor(banner): add and adjust remix icon for banner action 1bf3ffa
  • refactor(banner): replace px with rem and adjust share popup padding a568329
  • refactor(Banner):add type class to metadata field and apply styles to it 86a2866
  • refactor(less variables):change tag list styles 8670087
  • refactor(banner): share items display flex on desktop 3ff8684
  • change(banner): added background gradient, share popup, metadata show and hide #136 2f5dcca
  • refactor(banner): update gradient 570ee1e
  • refactor(tags): removes hardcoded ':' ea58e86
  • refactor(card): remove card border bc77739

🏠 Internal changes

  • style(card) : add lint and prettier changes 9d9a773
  • style(tag): remove comments 501fcdf
  • style(tag): stylelint and prettier changes 08b6386

🛠️ Others

0.1.9 - 2022-03-25

🚀 New Features

  • feat(all): 1.9 release #124 0d3f6fb
  • feat(callout): Align volto-slate callout with blockquote style 9e0bb49

🐛 Bug Fixes

  • fix(inpageNavigation): restore hidden on top functionality c554e6e
  • fix(list): Fix TOC margin on 3rd level f17da79
  • fix(inpageNavigation) : add smooth scroll animation 42f6564

💅 Enhancements

  • refactor(footer): update visual and mobile margins 64f05af
  • refactor(header): restore union dropdown after implementation a7029c5
  • refactor(pullquote): adjust to the new figma design 78e4606
  • refactor(breadcrumb): adjust font sizes and import remix divider 5fcabaf
  • change(header): use viewport width for changing mobile text in header dropdowns 5a7868e
  • refactor(inpageNavigation): adjust to the new figma design 4073acf
  • refactor(tab): add max width for tab items 366d279
  • refactor(less variables):change pullquote styles 9ad94bb
  • refactor(Pullquote):change quote positions and add Pullquote.Metadata sub component 6bce35f
  • refactor(inpageNavigation): Update to remix icons 19a6061
  • refactor(inpageNavigation) : move icon & text to be in column 0953910
  • change(breadcrumbs): modified breadcrumbs template to behave like breadrumb template 490a559
  • change(package): bump release version to 1.9.0 43a6e4b
  • refactor(breadcrumb): adjust font sizes and import remix divider #120 09a3a01
  • change(menu): modified secondaryPointingItemMaxWidth to a value that equals to 250 ea138a1
  • refactor(pullquote): introduce meta section, use remix icons, integrate slate callouts #119 fd740c9
  • refactor(footer): updated visuals and gradients #117 e5c6d18
  • change(scrollToTop): feature inpage navigation revamp #121 3cf20a8
  • refactor(footer): update visual and gradient 764ec23
  • change(header): use 12px font size for mobile resolution dropdowns 6dad0fa
  • change(nav): added navDepth to 3 in order to enable mega menu integration c4f73fd

🏠 Internal changes

  • style(inpageNavigation) : lint changes 3641d78
  • style(inpageNavigation) : add less variables 0699c70
  • style(pullquote): create variable for icon font size fea9b0a
  • style(inpageNavigation) : add lint & prettier changes f8dd012
  • style(inpageNavigation): remove comment 1aee011

🛠️ Others

0.1.8 - 2022-03-18

🐛 Bug Fixes

  • fix(card): avoid long links from spilling outside of card body area 95b8951

💅 Enhancements

  • change(typography): set heading sizes as detailed in docusaurus typography section 189bf20
  • change(docusaurus): content tweaks, inpage navigation section #112 b62d1b1

🏠 Internal changes

  • chore(docusaurus): fixed grid tablet breakpoint value c7fbc09

🏠 Documentation changes

  • docs(docusaurus): capitalization remove bf8fa44
  • docs(docusaurus): update 1c04976
  • docs(docusaurus): comment address on pr 112 6e4fe3b
  • docs(docusaurus): color minor update 13f9fda
  • docs(docusaurus): tabs and breadcrump update d0547e5

🛠️ Others

  • doc(colours): add more content ec66248
  • Add divider content for metadata field in Banner f1e34bd
  • Release 1.8.0 fd6ba04

0.1.7 - 2022-03-15

🚀 New Features

  • feat(less): add global gap sizes 3c83f20
  • feat(icons): import remix css 29967fb

🐛 Bug Fixes

  • fix(menu): fix border overflow for tabs and pagination e88721f
  • fix(accordion): responsive and accessibility issues c225935

💅 Enhancements

  • refactor(menu): update paddings for tabs and pagination 533a509
  • refactor(accordion): import semantic icon for remix arrows 9aa77d8
  • refactor(all) icons, accordion, button and menu itml #108 52ed2ca
  • change(storybook): segment stories now contain several elements 98a7654
  • change(table): inherit header alignment instead of hard-coding values ebb5193
  • refactor(icons): add remix icons c4c1a92
  • refactor(container): restore mobile width to auto 2df184c
  • refactor(button): update action button hover color bb09d71

🏠 Internal changes

  • chore(docusaurus): docs delete 5f9d733

🏠 Documentation changes

  • docs(colors): corrections da64c4c
  • docs(list): default list showcase 8ded062

🛠️ Others

  • bug(form): input min-width more specific to not break volto interface 3f5b5d4
  • Update package.json 3dba28b

0.1.6 - 2022-03-11

🚀 New Features

  • feat(cards): add custom display for volto-block-image-cards 645096a
  • feat(PublicationCard):create publication card component & styles 3e5f9b7
  • feat(PublicationCard):create publication card component & styles 12cdd5d
  • feat(Related Content): create Related Content component 77eda95
  • feat(Related Content): create Related Content component 08d495b
  • feat(pagination,related) added several r3 components #105 08d47c1

🐛 Bug Fixes

  • fix(Related Content): limit publication card number to 4 e7df032
  • fix(less variables):rename publication card variables 55c6fb8
  • fix(Publication Card): add link to card and arg name fix 36a7c96
  • fix(radio): fix bullet scaling issue with firefox 5f02c95
  • fix(radio): fix bullet scaling issue with firefox dbb2e27

💅 Enhancements

  • refactor(form): remove custom classes and add container to form items 6b5442a
  • refactor(form): remove custom classes and add container to form items d1ec083
  • refactor(form): update form wrapper component a719576
  • refactor(form): update form wrapper component 0736ec7
  • refactor(form): adjust form items to volto theming 4213cfb
  • refactor(form): adjust form items to volto theming 374ffbc
  • refactor(breadcrumb): remove custom class anf and new variables b3cb83d
  • refactor(breadcrumb): remove custom class anf and new variables d5808ad
  • refactor(storybook): clear up unnecessary form elements controls f7e7d5b
  • refactor(storybook): small change in unordered list story 3ffd872
  • refactor(storybook): small change in unordered list story 6ce16e9
  • refactor(pagination): fix menu overrides for tabs that affects pagination fe8c4ca
  • refactor(pagination): fix menu overrides for tabs that affects pagination 3f4b726
  • refactor(Loader):remove image & add background image 70fe041
  • refactor(Loader):remove image & add background image ac38126
  • refactor(list): remove selection control a09b179
  • refactor(list): remove selection control 17bf710
  • refactor(storybook):unordered list minor change df2b727
  • refactor(storybook):unordered list minor change ef6db73
  • refactor(colors): remove metalic blue color b2f95b6
  • refactor(colors): remove metalic blue color 1eea33f
  • refactor(button): update variables b1774d8
  • refactor(button): update variables 061f3e3
  • change(blockquote): treat slate as a variation of blockquote component 19bd9a5
  • refactor(container): remove important from rules e984771
  • refactor(storybook):add textarea control to add/remove fluid class 475f540
  • refactor(container): remove important from rules 1cc6984
  • refactor(storybook): add required attribute to form fields fecee27
  • refactor(progressBar): update progress bar colors with vars c4ef1f0
  • refactor(progressBar): update progress bar colors with vars a44d73c
  • refactor(storybook): add required attribute to form fields 21da79e
  • refactor(list): adjust bullet size 2b29e4e
  • refactor(list): adjust bullet size 61c341c
  • refactor(statistic): add inverted background to global variables 1427e70
  • refactor(statistic): add inverted background to global variables ea25dfa
  • refactor(statistic): remove custom class 46cc560
  • refactor(container): update mobile width d548a44
  • refactor(grid): replace px with rem units e792f51
  • refactor(statistic): remove custom class b5c8e7c
  • change(docusaurus): updated template to change what's new title 3e15f4d
  • change(footer): added display variable for footer site logos d5b3c2f
  • refactor(grid): replace px with rem units f0331d0
  • change(github): auto deploy only on develop branch 11d6b4e
  • refactor(header): implementation in preparation for Volto integration #20 #89 95b136d
  • change(github): trigger autobuild when modifying templates contents 46094b1

🏠 Internal changes

  • style(list): prettier fixes f9e3b05
  • style(list): prettier fixes 8eb715b
  • chore(github): merge changes from develop to develop-itml 063bd6e
  • chore(github): build deployment only on develop branch a5a1b08
  • chore(github): build deployment only on develop branch bb455aa
  • chore(github): merge changes from develop to develop-itml 129c12f

🛠️ Others

  • Revert "chore(github): merge changes from develop to develop-itml" ca9520f
  • refactor breadcrumbs component, make it functional and customizable e902d69
  • rollback(cards): move custom display to volto-block-image-cards 2564b1e
  • bring back segment wrapper and make it attached 8458f03
  • no display: flex for blockquote added from slate 5595ce1
  • Add rule about code length a5f3652
  • Add indenting rule 15c44cb
  • fix warning related to proptype 946c6c6
  • fix profile section css overflow db5126f
  • Add rule about import sorting 804e188
  • don't use volto-slate 6a02976
  • remove segment custom width 1d3ea40
  • Add rule about naming vars 8f9020f
  • update style for accordion title 0b0d678
  • Release 1.6.0 e771e65
  • update bbcab87
  • add margin to <br> element to simulate gap as in design c6685c1
  • make breadcrumbs default size as tiny 589581f
  • remove uneeded style 82a8fb1
  • Add rule about hardcoded values e04e0df
  • Add file mode rule 65c9a93
  • Add DRY rule 66c9c3a
  • set profile section overflow to auto 71ab47f
  • Add Sonarqube tag using eea-website-frontend addons list 647a6e3
  • removed override already present in card.less 50d2ab2
  • update 7a1d482
  • Add functional components rule; add classnames rule 91a0b06
  • added comment about need for removal of this fix later 65b8166

0.1.5 - 2022-03-08

🚀 New Features

  • feat(cards): add custom display for volto-block-image-cards f49ffb6
  • feat(KeyContent): add new component 2534c54
  • feat(docusaurus): Updated developer guidelines ca146ff
  • feat(storybook): add testimonial component 55d9747
  • feat(storybook): add AvatarGrid component b668445
  • feat(storybook):add Loader component f675834

🐛 Bug Fixes

  • fix(breakpoints): fix largest screen breakpoint bug on scaling e4a11c8
  • fix(profile): section css overflow and padding issues #95 bb9eb0f
  • fix(storybook): lint auto changes for AvatarGrid b8e74f1
  • fix(components): add grid structure to various components cc33546
  • fix(header) re-added span tags removed in pull request #74 00702d7

💅 Enhancements

  • refactor(button): styling updates 37afda5
  • refactor(tab): updates on variables and overrides 54bf703
  • change(blockquote): treat slate as a variation of blockquote component 5e8a8b8
  • change(footer): added display variable for footer site logos 2f942b4
  • refactor(checkbox/radio): remove header from message and adjust top position of bullet 4a072b3
  • refactor(color): remove secondaryColorDarken variable 74c8ba0
  • change(docusaurus): updated template to change what's new title 58f58c8
  • change(github): auto deploy only on develop branch bfa35a3
  • refactor(header): implementation in preparation for Volto integration #20 #97 cddda20
  • refactor(breadcrumbs): component, make it functional and pluggable #32 #94 9f42e80
  • change(card): added styles for volto cards integration #92 a46ac21
  • refactor(grid): remove column count from example ac0e9cf
  • change(github): trigger autobuild when modifying templates contents 5f7d152
  • refactor(grid): remove custom grid 1d978a9
  • refactor(Form):change form field wrapper implementation 73cdd6d
  • refactor(message): update colors to match design 633ce31
  • refactor(checkbox/radio): update variables and remove important rules ad533b4
  • refactor(less variables): add variables to less for new components 47df026
  • refactor(Tab): fix vertical tab alignment 401bdf2
  • refactor(lint changes): add lint changes 6f6847f
  • refactor(inpageNavigation): adjust to volto theming 62f74ea
  • refactor(message): updates on styling b4cf850
  • refactor(banner): update class name ef0969b
  • change(github): use develop for auto pushing a32a723

🏠 Internal changes

  • style(design-system): unix eol 631fa90
  • style(checkbox/radio): prettier fixes a04939f
  • style(design-system): unix eol 3c753f0
  • style(message): stylelint fix 5b75057

🏠 Documentation changes

  • docs(docusaurus): visuals guidelines 544a950
  • docs(docusaurus): search guidelines 0fb229d
  • docs(docusaurus): loader page 892a25d

🛠️ Others

  • Reformat header.less 1f99dfc
  • Close menu when changing path 65daea9
  • refactor breadcrumbs component, make it functional and customizable 4ec374e
  • rollback(cards): move custom display to volto-block-image-cards 79d4c89
  • Open overlay menu on global menu click cc749bc
  • bring back segment wrapper and make it attached 9f413ff
  • Use renderMenuItem also in mobile menu 02de0bb
  • Fix clicking outside closes menu af52664
  • Cleanup args in header story 2bf6a30
  • fix warning related to proptype 824b9be
  • fix profile section css overflow 8fd2654
  • don't use volto-slate 70ca3d4
  • remove segment custom width 4a60d84
  • update 96f4af0
  • Fix TopDropdownMenu component rendering in mobile a4626de
  • Add usePrevious hook 797faba
  • make breadcrumbs default size as tiny 3c8e1c6
  • Update package.json fa020cb
  • Add rule about hardcoded values 0c6912c
  • set profile section overflow to auto 8db62bb
  • added comment about need for removal of this fix later 6fdbd71
  • Add Sonarqube tag using eea-website-frontend addons list 6051724
  • removed override already present in card.less 93c4e5a
  • Remove console.log calls 8a3a4cb
  • update 81bb7d4
  • Update comment ffa2400
  • merge develop into this branch ad5b388
  • WIP a8d97f1
  • Use header.less from develop branch 99edbc6
  • WIP 57b5783
  • WIP 785da36
  • WIP 5d1eba9
  • adds Tags e37fc19
  • Add useClickOutside hook 70364c8
  • Implement outside click handling fa6f818
  • Simplify overlay menu template 28b0478
  • fixes less variables, fixes tags positioning cc19b9b
  • WIP 15bc0f4
  • no display: flex for blockquote added from slate 312a893
  • Add rule about code length 318cd48
  • Add indenting rule d589685
  • Add rule about import sorting cd337c1
  • Add rule about naming vars b112de0
  • Bring back classNames from header subpopup e477a51
  • removes tags hashtag from jsx 6b8b3e9
  • WIP d481324
  • fixes undefined on empty classes 4b29080
  • stylelint changes a5ab830
  • Footer link color @white 578e4f7
  • add margin to <br> element to simulate gap as in design 9ab9a97
  • impors colors from site variables 6117267
  • small fix for the link in footer action 72df049
  • remove uneeded style 66e9064
  • use proper naming conventions for var naming 596e314
  • Add file mode rule 805baa7
  • use less variables b43ac8d
  • Add DRY rule 2f1584e
  • Add functional components rule; add classnames rule 1b2915e
  • fix z-index of header 7d2a5d6
  • Remove comment 7d120b1

0.1.4 - 2022-03-01

💅 Enhancements

  • refactor(pagination): adjust to volto theming 06cc3b6
  • refactor(Form):create form field wrapper file 95b9934
  • refactor(megaMenu): update margins for menu items 230e476
  • refactor(megaMenu): update gradient 47f2ea4

🏠 Documentation changes

  • docs(docusaurus): divider page c6bb238

🛠️ Others

0.1.4-beta.0 - 2022-02-25

🚀 New Features

  • feat(github): added feature and bug reports templates with our guidelines as checkboxes 1549093

0.1.3 - 2022-02-25

🐛 Bug Fixes

  • fix(all): change eol to unix 62e7224
  • fix(banner): separate url value f9c9140
  • fix(all): merge eol c68f6e0
  • fix(blockquote): align self property now uses a valid entry ec76163

💅 Enhancements

  • refactor(megaMenu): new implementation ff013af
  • change(volto): removed customizations made for ims theme from volto-eea-design-system bc8d514
  • refactor(Timeline): divide to sub components and change files to .jsx 3e2bd3b
  • refactor(header): update variables 4e5d08d
  • refactor(Header): link header's menu to mega menu 08406d8
  • refactor(Menu): change mega menu implementation 455a51b
  • refactor(Grid):minor changes and delete extra files 272585d
  • refactor(timeline): adjust to volto theming b98641a
  • refactor(megaMenu): fix link hover issue for tablet 564e972
  • refactor(header): add remix icons and minor updates c9c97dd
  • refactor(Header): change header buttons implementation 6608b8c
  • refactor(Header): add sub components and change existing Main 74c35a3
  • refactor(table): adjust to volto theming ab7a0e8
  • refactor(Footer): delete Actions & ThemeSites files and clear imports 7a78456
  • refactor(header): update variables 326655a
  • refactor(Breadcrumb): add react router link and minor bug fix 073a3a3
  • refactor(Header): show menu on search & minor bug fix 4d49a8a
  • refactor(List): add extra default list story 95665cd
  • change(docusaurus) change generation of what's new section and bump package version 6c35cff
  • refactor(Footer): minor code changes 67cb4bc
  • refactor(Menu): add class to mega menu items for styling 19baa34
  • change(accordion): modified default accordion stories titles with real accordion names cf11cc8
  • refactor(Header): accessibility image alt fix a7347a6
  • refactor(header): adjust to volto in progress 760beca
  • refactor(Header): header items as storybook arguments 388c752
  • refactor(banner): update less variables 35b0a98
  • refactor(banner): actions as buttons; don't hardcode url for banner image; subcomponentize Banner, add Banner.Action; add developer guidelines on inline styles and line endings; 6dd5a41
  • refactor(blockquote): fix responsive margins and sizes rems 209f94f
  • refactor(Input): label position and style change 970074a
  • refactor(header): update dropdown menu 32eb0fa
  • refactor(timeline): theming updates c80c9aa
  • refactor(Blockquote):remove image stories a6357ca
  • change(docusaurus) proofread blockquote usage section and removed unused api section 0bb29fd
  • change(infrastructure) cherry-pick fix 9639243 skipping jenkins on auto commits fc744cd
  • change(ci) build storybook and docusaurus only when pushing to develop-itml branch 4de0cbf
  • change(infrastructure): modify whats new doc when committing the auto deployment 39df33e
  • change(blockquote): introduce float argument for blockquote with image storybook 8fc7290
  • refactor(pullquote): add word break 2245e53
  • refactor(Banner): minor bug fix b9073b6
  • refactor(table): fix th font weight a96a0a7
  • refactor(comment): remove avatar border radius d42c37b
  • refactor(banner): adjust title size 7a24d9c
  • refactor(Image): change image path a580da6
  • change(infrastructure): specify that docs folder contains changes for deployment a1ca915

🏠 Internal changes

  • style(input) prettier fixes e83fa0c
  • chore(storybook): prettier fix 354c7b3
  • chore(design system): technical commit for edw integration tests 9f76035
  • style(storybook): prettier fixes 3c9ad34
  • chore(infrastructure) updated branch with changes from bitbucket 77866f8

🛠️ Others

  • doc(colours):fix color to better show primary ones 705b789
  • doc(colours):change font size to fit text in one line 4ad7516
  • bump package release to 1.3.0 f3cfe4f
  • Refactor banner into content subcomponent f8df238
  • lint fixes cda322d
  • rollback don'ts grammar change and disable unresolved import for Banner.stories.jsx a1bd715
  • Add space line in component d4d1a5f

0.1.2 - 2022-02-17

🚀 New Features

  • feat(blockquote) added blockquote styles as a custom module d30662e

🐛 Bug Fixes

  • fix(inpageNavigation): hide at the top of the page 97ef500
  • fix(footer):missing image ac91a29
  • fix(comment):fix broken image 8125dc1
  • fix(message): fix font loading fdc498e
  • fix(logo): logo change 5f8c8af

💅 Enhancements

  • refactor(storybook): multiple components fixes 4a3ff51
  • change(infrastructure) re-enable integration tests for auto release stack ce8daf8
  • refactor(storybook): global site files styling update f3770f1
  • refactor(storybook): multiple components 9277aac
  • refactor(footer) adjust to volto theming update a59f1c3
  • refactor(header): minor styling update dd6b55c
  • refactor(Header): change header mega menu 7559b57
  • refactor(banner): adjust to volto theming 451b949
  • refactor(accordion): minor styling update aeaf25f
  • refactor(footer): adjust to volto theming bdff176
  • refactor(footer):mobile responsiveness 14822be
  • refactor(storybook): main and custom less files update 1607760
  • refactor(timeline): update after removing timeline addon f54d380
  • refactor(Footer): replace with subcomponents 378c652
  • refactor(Header): header change 029e850
  • refactor(Header): change header bar 2b766fd
  • change(docusaurus) use itml branch for docusaurus deployment 6e286c5
  • refactor(accordion): adjust to volto theming 971fcb8
  • refactor(Header): add sub components 7f955db
  • change(docusaurus) tweak auto deployment to always commit changes from docs a2940da
  • refactor(banner): less and variables files created d5b1a8a
  • refactor(label): adjust to volto theming 3c945e1
  • refactor(message): adjust to volto theming 3e950fc
  • refactor(Footer): add sub components and props c3d1487
  • refactor(modal): modal and confirm adjust to volto theming 83b60e9
  • refactor(comment): adjust to volto theming 84348c3
  • refactor(storybook):adjust headings 32f64f9
  • refactor(Header): add comments to header menu c2c83b2
  • refactor(Accordion): clear up accordion stories code 4e59b8f
  • refactor(segmant): adjust to volto theming 3ab211e
  • refactor(button) minor styling update 8782bb2
  • refactor(banner): change image position cdd76d5
  • refactor(breadcrumbs): update less variables 640817e
  • refactor(list): adjust to volto theming 1079c73
  • refactor(timeline):adjust timeline module 213eb11
  • refactor(blockquote):adjust to volto theming 5eec87f
  • refactor(progress): add progress bar colors ccf3c98
  • refactor(pullquote):adjust to volto theming fee4466
  • refactor(Header): change mobile mega menu c7ecf18
  • refactor(statistic): adjust to volto theming b726e49
  • refactor(button) adjust to volto theming eb257f8
  • refactor(form): minor styling update 79934b2
  • refactor(Footer): create Actions & Sites sub components 446840b
  • refactor(inpageNavigation): adjust to volto theming 85c631a
  • refactor(Inpage Navigation): changed button's display 36e5b4f
  • enhancement(docusaurus) modified headings to be within release versions 19ace30
  • refactor(storybook): move components to ui folder cb91f88
  • refactor(Header): change mega menu de0fc6b
  • refactor(Pullquote): divide Pullquote to sub components 34413c4
  • enhancement(docusaurus) replace changelog when auto-building docs Refs #145331 da25c0e
  • refactor(popup): adjust to volto theming d0d192d
  • refactor(card):adjust to volto theming 2ab6f91
  • refactor(item): adjust to volto theming 89a16af
  • refactor(pullquotes) remove unnecessary variables e0d20a3
  • refactor(progress):adjust to volto theming d1ab950
  • refactor(blockquote) change variables names 36fd5be
  • refactor(comment): adjust font sizes 0311ed1
  • refactor(InpageNavigation): clear up code 1d7afdc
  • refactor(container): change variable name for computer padding 26d123f
  • refactor(inpageNavigation): remove imports 25c1d1c
  • refactor(storybook): update ui index components exports ce78d47
  • change(infrastructure) auto build storybook when pushing to develop-itml branch of volto-eea-design-system e9aa5bc
  • refactor(storybook): delete demo stories 8b58d02
  • change(docusaurus) align deployment steps for building docusaurus 37e4ce0
  • refactor(storybook): remove components from customizations folder 8930ede
  • refactor(tab): minor styling update 1252ad0
  • refactor(comment): change avatar src e5f9c4c
  • refactor(banner) : change file type and folder 878742b
  • refactor(form elements):changed text 919beea
  • refactor(Image): change image src b971084
  • refactor(Pullquote): add component propTypes d32c5e6
  • refactor(blockquote): adjust font sizes d71a3ce
  • refactor(footer): update font sizes 1c91c35
  • refactor(Blockquote): add component proTypes ea02649
  • refactor(logo): update image f611372
  • refactor(docusaurus): restore config f2c5239
  • refactor(blockquote): update component name 572e655
  • refactor(header): fix story header import ceda6c7
  • change(infrastructure) auto build docusaurus when pushing to develop-itml branch 7bebdf5
  • refactor(storybook): remove components from customization folder 4a9bb9b
  • refactor(banner):story rename 56ff603
  • change(testing) removed navigation from cypress tests until component is finished 5549f4c
  • refactor(Segment): change to .jsx extension 5cb35d8
  • refactor(Pullquote): change to .jsx extension 564cf7e
  • refactor(PopUp):change to .jsx extension dcb24ff
  • refactor(InpageNavigation): change to .jsx extension dfefce3
  • refactor(Blockquote): change to .jsx extension 44a1645
  • refactor(heading): story name update aa10f34

🏠 Internal changes

  • style(footer): prettier fix 902c257
  • style(storybook): prettier fixes 59f941d

🏠 Documentation changes

  • docs(docusaurus):multiple page updates 2aba73e
  • docs(docusaurus):update page content 565697f
  • docs(grid):update components grid 60eb083
  • docs(docusaurus): page adjustments 0641eac
  • docs(docusaurus):updated various pages f860176
  • docs(docusaurus): logo change 3af5e5c

🛠️ Others

  • added sortable table stories and descriptions 6d44dd7
  • Layout components theming 5861013
  • recovered files from origin a4ac04f
  • grid component & stories changes 4a5752e
  • Updated what's new section with actual commits from volto-eea-design-system repo fc5e3c3
  • Docusaurus title possible fix. db699e7
  • form elements stories added description & default values 6b4f6eb
  • removed API tabs 58aa928
  • Layout updates 854f388
  • Refs #142123 removed extra customization of semantic.less: ab9de81
  • added page-header,footer and grid in docusaurus 660c8e3
  • Manual docs build and commit 666eb6a
  • added svg & png files f1338d5
  • added missing components to docusaurus 934dfd8
  • Control descriptions updated 56581eb
  • Grid updates 700332d
  • Button theming update 0ec68b6
  • site variebales & overrides changes 7251162
  • Table and Tabs theming 49f0860
  • Responsiveness updates 48e1351
  • added various components to docusaurus 550d719
  • Checkbox and radio updates 24652a2
  • remove images from typography and colour docs 8493e92
  • added guidelines' text and finished all components 02d75fc
  • added more missing components in docusaurus 8be8263
  • Prettier changes on docusaurus 5f1e5eb
  • Grid updates ae09945
  • Minor fixes for tests 3bdf306
  • Layout updates 8b7a4dc
  • Footer and TOC theming bb3d3c4
  • Refs #145331 manually commit changelog until autobuild is stabilized 93168b0
  • label component changes df8c0ff
  • added several sections to the theming guidelines ff1a649
  • Updated removed files. 84f9b8c
  • added more docusaurus components 52a3b9e
  • Progress Bar 9f2efc9
  • Modal and Confirm updates 3b306c6
  • Add proper changes to whatsnew meant in previous commit 40f78e3
  • Form Descriptions de0dfbc
  • Prettier fixes 1337e6f
  • Deleted files b82f982
  • add new images for spacing 7b7b2c4
  • Messages Theming ad621a3
  • added new content to docusaurus 1c83452
  • Minor less updates a36a8bb
  • Tabs and lists updates e37eef1
  • Inpage nav and timeline components 76f0f82
  • Prettier updated files 679b9d2
  • dropdown initial d8aef26
  • Prettier changes f068af0
  • List initial 6d3b969
  • List story updated e96a6f6
  • Statistics updates 74bf639
  • styling c169cc0
  • timeline comp storybook changes 1f42686
  • feature(docusaurus) added theming guidelines ded1f04
  • Properly commented out integration tests. 48b3a15
  • Reattempting commented out integrations tests. 3dd8211
  • Button theming 4231e1c
  • Card initial 06dace5
  • form element storybook changes c4b06aa
  • Pagination theming 2a80175
  • Accordion theming 8061bf9
  • global var updates and radio story 9526ee2
  • created pullquote component & stories df35563
  • Item stories added description & default values 9d459f2
  • storybook clean up code bffd326
  • List updates 28f1b53
  • Button classes updates 788c289
  • Prettier fixes 678c9be
  • Removed header title from partial docusaurus components. ed7c45e
  • created banner component and stories 9be170f
  • Breadcrumb stories description & defaultValue -- clean up code 186ab65
  • Refs #142123 added customization of semantic.less: 1e02356
  • Card stories added description & default values f6b408f
  • Statistic and accordion updates 16064ce
  • breadcrumb component & stories changes 5bceb98
  • Container initial 3eb7155
  • doc(docusaurus):Fix text for various parts bfd3fa2
  • blockquote component & stories 879b640
  • Refs #143412 removed doc comments breaking doc building e6a6756
  • Popup updates ce2d641
  • Global variables for colors and borders added 6e5fbd6
  • Tab stories changes 5429cfb
  • Confirm stories added description & default value 85cda14
  • Kebab case class names b41cd07
  • Card and Comment class updates 3899465
  • Accordion updates c97ba39
  • item stories changes 772e41f
  • Accordion class updates 9cdde86
  • Comment stories added description & default value cb6f25b
  • Accrodion stories description & default value ab8fb88
  • Pullquotes updates c598421
  • Modal and confirm class updates 0ae47e6
  • Tab and paggination updates 96796ff
  • Form Updates e986a9f
  • Classes renamed 73c8c3d
  • List and item less updates ce0de17
  • Confirm theming 36e20ce
  • container overrides changes 4b3970b
  • Docusaurus theming fc4a8c5
  • refacto(headings): update mobile headings sizes b2e9f83
  • list stories and style changes c61db53
  • Tab theming e31e6c3
  • Message and pagination classes updates c230687
  • Segment initial d5724fe
  • Refs #143412 removed doc comments from api_markdown breaking doc building efeacba
  • Timeline and responsiveness updates 1ed1524
  • Refs #142123 use swap font-display for performance reasons 083738f
  • Breadcrumb stories minor changes 3d0d17c
  • Table component stories minor change 0bf4083
  • List stories changes a64b304
  • blockquote component minor changes cdf71a8
  • ckeckbox stories minor change 6d6e508
  • image component storybook changes 91290ec
  • button overrides changes d5b78dd
  • accordion overrides changes fdcf7d5
  • Accordion component and stories changes 5079247
  • Card theming 23bbb9d
  • statistic overrides changes 2b11cb5
  • Refs #143412 build docs only on pull request like we do with storybook 473bb87
  • Card component stories minor change | added link icon deb423a
  • comment component stories changes f1c5e75
  • Accordion component bug fixed 815e91d
  • Refs #145331 use iso date to release so that we see also time ceedf08
  • correct connfig for doco 93e1313
  • Item updates fae93d4
  • added layout grid 2e6be55
  • tab overrides changes 87aaf32
  • message overrides changes 6dccfca
  • segment storie changes 296371f
  • progress component stories changes df10c2e
  • message comp storybook changes c86b405
  • Accordion cmponent stories | minor bug fix 6de0d81
  • Refs #145331 add all changes when auto building docusaurus ce11cce
  • perf(timeline):removed semantic timeline package 0aeb34a
  • Tablet Breakpoint update b229c27
  • Refs #143412 set storyBook Url to eea.github.io b7fdecb
  • bump package version to signaling of a major release c835f1d
  • small commit to trigger deployment of storybook and docusaurus be46ea3
  • doc(accordion):revert previous change 3de02da
  • fix typo for caption @desktop line-height pixel number 1671552
  • Commented out integration tests. 574cfec
  • popup overrides changes a9555e3
  • container component stories fixes 692cfce
  • Added timeline to package json fixed f2e93e0
  • Refs #142123 modified import of volto-eea-design-system icon.less: a7fab7d
  • Refs #142123 reference icon.less from this package: 5616e6d
  • Menu component stories change 2797716
  • Image stories minor change ddb9f1d
  • card component stories changes 6ccba1e
  • Added timeline to package json 93031d6
  • table stories code clean up b7b2a56
  • Refs #143412 removed extra baseUrl from docusaurus config 79f36da
  • Accordion stories minor change ffe808a
  • Theme assets 3f4bea4
  • Merged with develop 167ec9f

0.1.2-beta.2 - 2022-01-03

0.1.2-beta.1 - 2021-12-22

🛠️ Others

  • Tab component stories minor changes 4690a6f
  • Comment component stories minor changes a87cb6a
  • Form stories changes fc30c90
  • Grid component stories minor changes 798fdd0
  • Image component stories minor changes be93385
  • Menu component stories minor changes cb1f9a8
  • Dropdown component stories minor changes 57cf954
  • Header component stories minor changes 264fd46
  • Confirn component minor changes 9a00bc1
  • Item component stories minor changes 6994fa0
  • Label component stories changes 5cc5843
  • Container component stories minor changes e6e40b3
  • Message component stories minor changes ba9d377
  • Breadcrumb component stories minor changes ff7a176
  • Modal component stories minor changes af1fe6a
  • List stories changes 0016042
  • Button component stories minor changes 690dfd2
  • Radio component stories minor changes 84eac30
  • Progress component stories minor changes e676357
  • Pagination component stories minor changes b1af226
  • Segment component stories minor changes 5f8c7ef
  • Refs #143412 eslint fixes for component stories badcb91
  • Table component stories minor changes 7c104b8
  • Refs #143412 more eslint fixes a88c091
  • Refs #143412 warn for broken links instead of throwing bd5821c
  • Refs #143412 merge changes from develop-itml to develop branch bca28b9
  • made tabs dynamic for api tab ea37ecb
  • Basic storybook/Docusaurus components 840ab60
  • created List directory & srories based on semantic-ui List component 51f1901
  • made tabs as component easy to call for other components 07bae49
  • Popup Component | minor fixes 2ff9908
  • created stories for Tab component 95e3a73
  • created Table directory and stories based on semantic-ui Table component e16115d
  • List component stories - minor changes de11343
  • created stories for Comment component a20f884
  • created stories for Grid component 360d2a8
  • created stories for Image component 3c1d2bc
  • created stories for Menu component 17e3b37
  • Added untracked files 75f0afd
  • created Dropdown stories d6a2538
  • created Header component stories b833979
  • created stories for semantic-ui Confirm component 6fddccc
  • created Statistic directory and stories with semantic-ui Statistic component cd62498
  • created Item component stories 90ec2be
  • created stories for Container component 41934f6
  • created Label component stories 71732f6
  • created Message component stories adcbeab
  • created Modal component stories c25409d
  • Breadcrumb component stories and minor changes 6264d92
  • created Pagination component stories 57cdad3
  • created Segment component stories d8d01d7
  • created stories for Radio component 1fd062d
  • Menu stories minor changes 6ba5e0d
  • Statistic component stories minor changes 3c874a5
  • Card component stories minor changes 290bda8
  • Accrordion stories minor changes 2ee3f59
  • renamed Demo folder to Layout b9f6d05
  • remove test exclusion 94dba3e
  • Accordion component stories minor changes e672d59
  • fix docusaurus url (removed trailing /) b6c59fc
  • Item component stories - minor changes f0a9902
  • eea logos and assets b435b51

0.1.2-beta.0 - 2021-12-18

🛠️ Others

  • Refs #140454 added github action to build docusaurus to the develop branch abe6a72

0.1.1 - 2021-12-16

🛠️ Others

  • Refs #140454 changed the following to volto-eea-design-system: 6791d41
  • Refs #140454 corrected base url for docusaurus website build 98271b3
  • Initial test changes on design system/docusaurus. 9dad612
  • After prettier check 9ec40b4
  • Refs #140454 restore SearchWidget.jsx content and removed dummy text from docs intro page 7505df8
  • Refs #140454 added references to eea and the storybook in the docusaurus footer 42bbfcd
  • Refs #140454 lint fixes 9502f2b
  • Add SonarQube badges a4e0a40
  • Refs #140454 brought changes from develop-itml and upgrades docusaurus 207c873
  • Refs #140454 removed extra content not needed by the docusaurus site bc68ebe
  • Refs #140454 updated docusaurus to latest beta d68ed8a

0.1.1-beta.0 - 2021-12-09

🛠️ Others

  • Refs #140454 moved header and footer templates from volto-ims-theme: e2d5e56
  • Refs #140454 added website folder with docusaurus site skeleton 6fd15f4
  • Refs #142794 added commented implementation of the header and footer area: 773ad87
  • Refs #140454 changed the following: 4137ec4
  • Refs #140454 removed storybook from volto-eea-design-system: a129ffb
  • Refs #140454 added storybook as a dev dependency: e04ae4e
  • Refs #140454 updated Breadcrumbs.jsx to latest version: 63fe507
  • Refs #140454 we should use jsx and not mdx for storybook tests 3668e66
  • Refs #140454 updated eea-design-system readme with extra info on package contents d2efc3d
  • Refs #142010 - Optimize Volto-addons gitflow pipelines 3af46d2
  • Refs #140454 Renamed folders of docusaurus website: 15bca74
  • Add demo story 757c409
  • Refs #142794 enabled minimum css so that header looks decent adbe233
  • Refs #140454 use the develop branch for the readme linking, it's always more up to date 23dcf16
  • Refs #140454 added missing themes reference for the eea theme e9ca244
  • Refs #140454 modified assets imports after move to volto-eea-design-system 2250cc7
  • Load footer in segment 80d38a9
  • Refs #140454 bump package version to 1.1.0 from 0.1.1 from develop branch: 1314039
  • Refs #142794 keep toolbalWidth variables in case design system runs in an older version of Volto 1a8b305
  • Refs #142794 changed the following: fbb80b1
  • Refs #140454 moved storybook scripts to the scripts section 705c4c3
  • Refs #140454 removed dangling comma 514f24d
  • Refs #140454 changed link to the start of the docs 0e16fdf
  • Refs #140454 add h1 to the list of elements that are max 800px and centered 7d3c30f
  • Add Sonarqube tag using ims-frontend addons list 8d657d0

0.1.0 - 2021-11-17

🛠️ Others

  • Refs #140454 changed the following to volto-eea-design-system: 40d2af6
  • Refs #141204 elements folder now has the variables and overrides from pastanaga theme 595b4e6
  • Refs #141204 use font awesome from SemanticUI instead of Pastanaga: 4e273ca
  • Refs #141204 removed the components customizations from volto-eea-design-system: c98c260
  • Refs #141204 added customizations folder from volto-ims-theme to volto-eea-design-system: ff4bf44
  • Refs #141204 modules folder now has the variables and overrides from pastanaga theme f2841b6
  • Refs #141204 customized Comments.jsx to remove unnecessary container b2e95d7
  • Refs #132149 added initial commit for volto-eea-design-system: 2934b91
  • Refs #141204 collection folder now has the variables and overrides from pastanaga: 213d496
  • Refs #141204 removed search widget customization, we can use volto-ims-theme for that file b7e8b0c
  • Refs #141204 stylelint quick fixes 5595925
  • Refs #141204 changed the following: 769f4f9
  • Refs #141204 changed the following to the eea theme: 06d8d86
  • Refs #141204 eea site.variables now use all values from pastanaga's site.variables 6535c0f
  • Refs #141204 simplified container overrides: 5125003
  • Release 1.0.0 177d0ce
  • Refs #141204 globals folder now has the variables and overrides from pastanaga theme 116a0c3
  • Refs #141204 changed the following: 2e7f423
  • Refs #141204 modules folder now has the variables and overrides from pastanaga theme: 27a201d
  • Refs #141204 text elements are now with a max width and centered within content-area: bbed7bb
  • Refs #141204 added main.variables entries from pastanaga to eea theme 1cbbc55
  • Refs #141204 modified theme image imports for component customizations ef3238a
  • Refs #141204 modified container width to be auto: 2e8d2e0
  • Refs #141204 modified several icons to use the \f values instead of \e: c397145
  • Refs #141204 changed the following: c518eda
  • Refs #141204 ensure that main column isn't enlarged over the sidebar section on edit f7a2868
  • Refs #141204 changed the following to the form styling: eb92e05
  • Refs #141204 modified path of theme folder location for image selection f8cca45
  • Refs #141204 added missing mobileScrollbarWidth variables introduced as part of the mobile navigation pull request 444c78d
  • Refs #140454 reference font and image path from ~volto-themes instead of relative ec93ed3
  • Refs #141204 ensure that Volto doesn't crash when site module is set to eea: 51f2f27
  • Refs #141204 added tiny size prop to Breadcrumbs in order to have it as 12px 56a12e2

0.0.1 - 2021-11-17

🛠️ Others

+ \ No newline at end of file diff --git a/docs/index.html b/docs/index.html index d54b9de2a0..23d824707a 100644 --- a/docs/index.html +++ b/docs/index.html @@ -5,13 +5,13 @@ Welcome to EEA Design System Homepage | EEA Design System - +

EEA Design System

Creating a consistent user experience for our digital products

I am a...

Web developer

Design system for web developers

Web designer

Design system for web designers

Web content creator

Tips and tricks for writing for the web

Publication writer

Writing manual for publications

Publication designer

Design system for publications

Data scientist

Design system for data scientists

- + \ No newline at end of file diff --git a/website/docs/2-whatsnew.md b/website/docs/2-whatsnew.md index 07c4929b16..7371edfd78 100644 --- a/website/docs/2-whatsnew.md +++ b/website/docs/2-whatsnew.md @@ -32,12 +32,15 @@ Below is a non-exhaustive list of the work-in-progress which is planned for futu Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). -### [Unreleased](https://github.com/eea/volto-eea-design-system/compare/1.0.6...HEAD) - 2023-04-03T14:53:04.159Z +### [Unreleased](https://github.com/eea/volto-eea-design-system/compare/1.0.6...HEAD) - 2023-04-06T13:42:14.276Z + +#### :bug: Bug Fixes + +- fix(item): flex variant on edit when inside blockchooser #333 from eea/fix-item-csss [`65b9099`](https://github.com/eea/volto-eea-design-system/commit/65b9099779180feeb7d10384928bb0a3224b947d) +- fix(item): use child selector instead of descendent as it interferes with blockchooser refs #157040 [`ad4ca37`](https://github.com/eea/volto-eea-design-system/commit/ad4ca3725c595c8dbeaff69f730928313c1779ec) #### :nail_care: Enhancements -- change(logos): updated eionet logo used in the site footer #318 from eea/footer-logo-update [`70671d0`](https://github.com/eea/volto-eea-design-system/commit/70671d03bbc228e3013e382cb51e6764a83b01a8) -- change(breadcrumbs,mega-menu): better screen readers support, see links instead of groups #309 from eea/firefox-accessibility-tab-issues [`d6b0b4a`](https://github.com/eea/volto-eea-design-system/commit/d6b0b4adba8f04799491025fb41ac97e875bcce0) - refactor(megaMenu): align menu items with demo site for better testing [`82a5c84`](https://github.com/eea/volto-eea-design-system/commit/82a5c84cfde81dd8243f3f9a2d1fcaa8ac4b1463) - refactor(breadcrumbs): updates on structure and story for accessibility [`770c8c0`](https://github.com/eea/volto-eea-design-system/commit/770c8c0bce88c5d9301ab0293a8e4865849bfeb2) - change(logo): update eionet svg [`3c87fc7`](https://github.com/eea/volto-eea-design-system/commit/3c87fc750a3dc376205a643eefced410a41b22c6) @@ -47,6 +50,8 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - change(breadcrumbs): label modification for better screen reader output [`c967bef`](https://github.com/eea/volto-eea-design-system/commit/c967bef63ac6f622f5936235dd5590831a674d15) - refactor(megaMenu): clean up function after test [`883eb73`](https://github.com/eea/volto-eea-design-system/commit/883eb73cbc3db6a1fadd0200118eafdce91b7aab) - change(mega-menu): added code to align countries left column subtitle with the right column [`1aa33dd`](https://github.com/eea/volto-eea-design-system/commit/1aa33dd7ac7154a91515eef688f276d664d5d7f3) +- change(logos): updated eionet logo used in the site footer #318 from eea/footer-logo-update [`70671d0`](https://github.com/eea/volto-eea-design-system/commit/70671d03bbc228e3013e382cb51e6764a83b01a8) +- change(breadcrumbs,mega-menu): better screen readers support, see links instead of groups #309 from eea/firefox-accessibility-tab-issues [`d6b0b4a`](https://github.com/eea/volto-eea-design-system/commit/d6b0b4adba8f04799491025fb41ac97e875bcce0) - change(mega-menu): sub-title padding tweaks for better spacing normalization [`e08668d`](https://github.com/eea/volto-eea-design-system/commit/e08668dd9fd948e57628e5582e7a4a7f08d96451) - change(breadcrumbs): fixed sizing of breadcrumbs list items [`1761e98`](https://github.com/eea/volto-eea-design-system/commit/1761e984a6ffebbcca0c7b88128a01235fc6b903) From 5ae6210a8a878c345eab563189a77706d668290b Mon Sep 17 00:00:00 2001 From: github-actions Date: Thu, 6 Apr 2023 13:48:55 +0000 Subject: [PATCH 37/45] Autobuild of docusaurus docs --- docs/404.html | 4 ++-- docs/assets/js/41d5c757.5c8c3dc5.js | 1 - docs/assets/js/41d5c757.c97b6622.js | 1 + ...runtime~main.17fc11c4.js => runtime~main.46d2157e.js} | 2 +- docs/blog/archive/index.html | 4 ++-- docs/docs/category/components/index.html | 4 ++-- docs/docs/category/forms/index.html | 4 ++-- docs/docs/category/guidelines/index.html | 4 ++-- docs/docs/category/maps-and-charts/index.html | 4 ++-- docs/docs/category/publications/index.html | 4 ++-- docs/docs/category/quotes/index.html | 4 ++-- docs/docs/category/resources/index.html | 4 ++-- docs/docs/category/search/index.html | 4 ++-- docs/docs/category/templates/index.html | 4 ++-- docs/docs/category/utilities/index.html | 4 ++-- docs/docs/category/visuals/index.html | 4 ++-- docs/docs/category/web-content/index.html | 4 ++-- docs/docs/category/web-development/index.html | 4 ++-- docs/docs/dataguide/intro/index.html | 4 ++-- docs/docs/intro/index.html | 4 ++-- docs/docs/pubguide/design/index.html | 4 ++-- docs/docs/pubguide/writing/index.html | 4 ++-- docs/docs/webcontent/intro/index.html | 4 ++-- docs/docs/webdev/Components/Accordion/index.html | 4 ++-- docs/docs/webdev/Components/Breadcrumb/index.html | 4 ++-- docs/docs/webdev/Components/Buttons/index.html | 4 ++-- docs/docs/webdev/Components/Callout/index.html | 4 ++-- docs/docs/webdev/Components/Cards/index.html | 4 ++-- docs/docs/webdev/Components/Comment/index.html | 4 ++-- docs/docs/webdev/Components/Confirm/index.html | 4 ++-- docs/docs/webdev/Components/Content/index.html | 4 ++-- docs/docs/webdev/Components/Divider/index.html | 4 ++-- docs/docs/webdev/Components/Forms/Checkbox/index.html | 4 ++-- docs/docs/webdev/Components/Forms/Dropdown/index.html | 4 ++-- docs/docs/webdev/Components/Forms/Radio/index.html | 4 ++-- docs/docs/webdev/Components/Forms/TextArea/index.html | 4 ++-- docs/docs/webdev/Components/Forms/TextInput/index.html | 4 ++-- docs/docs/webdev/Components/Headings/index.html | 4 ++-- docs/docs/webdev/Components/Image/index.html | 4 ++-- docs/docs/webdev/Components/Inpage-Navigation/index.html | 4 ++-- docs/docs/webdev/Components/Item/index.html | 4 ++-- docs/docs/webdev/Components/Labeled-icons/index.html | 4 ++-- docs/docs/webdev/Components/Labels/index.html | 4 ++-- docs/docs/webdev/Components/Lists/index.html | 4 ++-- docs/docs/webdev/Components/Loader/index.html | 4 ++-- docs/docs/webdev/Components/Logo/index.html | 4 ++-- docs/docs/webdev/Components/Messages/index.html | 4 ++-- docs/docs/webdev/Components/Modal/index.html | 4 ++-- docs/docs/webdev/Components/Pagination/index.html | 4 ++-- docs/docs/webdev/Components/Popup/index.html | 4 ++-- docs/docs/webdev/Components/Progress/index.html | 4 ++-- docs/docs/webdev/Components/Quote/Quote/index.html | 4 ++-- docs/docs/webdev/Components/Quote/Testimonial/index.html | 4 ++-- docs/docs/webdev/Components/Search/Filters/index.html | 4 ++-- docs/docs/webdev/Components/Search/Searchbox/index.html | 4 ++-- .../docs/webdev/Components/Search/Suggestions/index.html | 4 ++-- docs/docs/webdev/Components/Segment/index.html | 4 ++-- docs/docs/webdev/Components/Statistic/index.html | 4 ++-- docs/docs/webdev/Components/Tab/index.html | 4 ++-- docs/docs/webdev/Components/Table/index.html | 4 ++-- docs/docs/webdev/Components/Tags/index.html | 4 ++-- docs/docs/webdev/Components/Timeline/index.html | 4 ++-- docs/docs/webdev/Components/Visuals/Charts/index.html | 4 ++-- docs/docs/webdev/Components/Visuals/Dashboard/index.html | 4 ++-- docs/docs/webdev/Components/Visuals/Maps/index.html | 4 ++-- docs/docs/webdev/Guidelines/colours/index.html | 4 ++-- docs/docs/webdev/Guidelines/iconography/index.html | 4 ++-- docs/docs/webdev/Guidelines/images/index.html | 4 ++-- docs/docs/webdev/Guidelines/intro/index.html | 4 ++-- docs/docs/webdev/Guidelines/spacing/index.html | 4 ++-- docs/docs/webdev/Guidelines/typography/index.html | 4 ++-- .../webdev/Resources/developer-guidelines/index.html | 4 ++-- docs/docs/webdev/Resources/theming-guidelines/index.html | 4 ++-- docs/docs/webdev/Templates/Grid/index.html | 4 ++-- docs/docs/webdev/Templates/PageHeader/index.html | 4 ++-- docs/docs/webdev/Templates/SiteFooter/index.html | 4 ++-- docs/docs/webdev/Templates/SiteHeader/index.html | 4 ++-- docs/docs/webdev/Utilities/intro/index.html | 4 ++-- docs/docs/whatsnew/index.html | 6 +++--- docs/index.html | 4 ++-- website/docs/2-whatsnew.md | 9 +++++++-- 81 files changed, 164 insertions(+), 159 deletions(-) delete mode 100644 docs/assets/js/41d5c757.5c8c3dc5.js create mode 100644 docs/assets/js/41d5c757.c97b6622.js rename docs/assets/js/{runtime~main.17fc11c4.js => runtime~main.46d2157e.js} (99%) diff --git a/docs/404.html b/docs/404.html index 4d6128de85..2a36dd58e1 100644 --- a/docs/404.html +++ b/docs/404.html @@ -5,13 +5,13 @@ Page Not Found | EEA Design System - +

Page Not Found

We could not find what you were looking for.

Please contact the owner of the site that linked you to the original URL and let them know their link is broken.

- + \ No newline at end of file diff --git a/docs/assets/js/41d5c757.5c8c3dc5.js b/docs/assets/js/41d5c757.5c8c3dc5.js deleted file mode 100644 index d6097e019c..0000000000 --- a/docs/assets/js/41d5c757.5c8c3dc5.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";(self.webpackChunkwebsite=self.webpackChunkwebsite||[]).push([[6245],{3905:(e,a,t)=>{t.d(a,{Zo:()=>c,kt:()=>h});var i=t(7294);function n(e,a,t){return a in e?Object.defineProperty(e,a,{value:t,enumerable:!0,configurable:!0,writable:!0}):e[a]=t,e}function o(e,a){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);a&&(i=i.filter((function(a){return Object.getOwnPropertyDescriptor(e,a).enumerable}))),t.push.apply(t,i)}return t}function m(e){for(var a=1;a=0||(n[t]=e[t]);return n}(e,a);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(i=0;i=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(n[t]=e[t])}return n}var d=i.createContext({}),r=function(e){var a=i.useContext(d),t=a;return e&&(t="function"==typeof e?e(a):m(m({},a),e)),t},c=function(e){var a=r(e.components);return i.createElement(d.Provider,{value:a},e.children)},s="mdxType",f={inlineCode:"code",wrapper:function(e){var a=e.children;return i.createElement(i.Fragment,{},a)}},p=i.forwardRef((function(e,a){var t=e.components,n=e.mdxType,o=e.originalType,d=e.parentName,c=l(e,["components","mdxType","originalType","parentName"]),s=r(t),p=n,h=s["".concat(d,".").concat(p)]||s[p]||f[p]||o;return t?i.createElement(h,m(m({ref:a},c),{},{components:t})):i.createElement(h,m({ref:a},c))}));function h(e,a){var t=arguments,n=a&&a.mdxType;if("string"==typeof e||n){var o=t.length,m=new Array(o);m[0]=p;var l={};for(var d in a)hasOwnProperty.call(a,d)&&(l[d]=a[d]);l.originalType=e,l[s]="string"==typeof e?e:n,m[1]=l;for(var r=2;r{t.r(a),t.d(a,{contentTitle:()=>m,default:()=>s,frontMatter:()=>o,metadata:()=>l,toc:()=>d});var i=t(7462),n=(t(7294),t(3905));const o={title:"What's new"},m=void 0,l={unversionedId:"whatsnew",id:"whatsnew",title:"What's new",description:"EEA Design System (1.0)",source:"@site/docs/2-whatsnew.md",sourceDirName:".",slug:"/whatsnew",permalink:"/volto-eea-design-system/docs/whatsnew",editUrl:"https://github.com/eea/volto-eea-design-system/edit/contribute-documentation/website/docs/2-whatsnew.md",tags:[],version:"current",sidebarPosition:2,frontMatter:{title:"What's new"},sidebar:"sidebar",previous:{title:"Introduction",permalink:"/volto-eea-design-system/docs/intro"},next:{title:"Web development",permalink:"/volto-eea-design-system/docs/category/web-development"}},d=[{value:"EEA Design System (1.0)",id:"eea-design-system-10",children:[{value:"Components ready to be used",id:"components-ready-to-be-used",children:[],level:4},{value:"Future releases",id:"future-releases",children:[],level:4}],level:3},{value:"Unreleased - 2023-04-06T13:42:14.276Z",id:"unreleased---2023-04-06t134214276z",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes",children:[],level:4}],level:3},{value:"1.0.6 - 2023-03-29",id:"106---2023-03-29",children:[{value:"\ud83d\ude80 New Features",id:"-new-features",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-1",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-1",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others",children:[],level:4}],level:3},{value:"1.0.5 - 2023-03-28",id:"105---2023-03-28",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-1",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-1",children:[],level:4}],level:3},{value:"1.0.4 - 2023-03-27",id:"104---2023-03-27",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-2",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-2",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-1",children:[],level:4}],level:3},{value:"1.0.3 - 2023-03-24",id:"103---2023-03-24",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-2",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-2",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-2",children:[],level:4}],level:3},{value:"1.0.2 - 2023-03-14",id:"102---2023-03-14",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-3",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-3",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-1",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-3",children:[],level:4}],level:3},{value:"1.0.1 - 2023-03-13",id:"101---2023-03-13",children:[],level:3},{value:"1.0.0 - 2023-03-13",id:"100---2023-03-13",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-4",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-4",children:[],level:4}],level:3},{value:"1.0.0-beta.6 - 2023-03-10",id:"100-beta6---2023-03-10",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-3",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-5",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-5",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-3",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-2",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-4",children:[],level:4}],level:3},{value:"1.0.0-beta.5 - 2023-03-07",id:"100-beta5---2023-03-07",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-6",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-4",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-5",children:[],level:4}],level:3},{value:"1.0.0-beta.4 - 2023-03-01",id:"100-beta4---2023-03-01",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-4",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-6",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-7",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-6",children:[],level:4}],level:3},{value:"1.0.0-beta.3 - 2023-02-21",id:"100-beta3---2023-02-21",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-5",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-7",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-8",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-5",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-3",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-7",children:[],level:4}],level:3},{value:"1.0.0-beta.2 - 2023-02-13",id:"100-beta2---2023-02-13",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-8",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-9",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-6",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-8",children:[],level:4}],level:3},{value:"1.0.0-beta.1 - 2023-02-09",id:"100-beta1---2023-02-09",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-6",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-10",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-9",children:[],level:4}],level:3},{value:"1.0.0-alpha.15 - 2023-02-08",id:"100-alpha15---2023-02-08",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-7",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-9",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-11",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-10",children:[],level:4}],level:3},{value:"1.0.0-alpha.14 - 2023-01-30",id:"100-alpha14---2023-01-30",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-12",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-11",children:[],level:4}],level:3},{value:"1.0.0-alpha.13.1 - 2023-01-30",id:"100-alpha131---2023-01-30",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-13",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-12",children:[],level:4}],level:3},{value:"1.0.0-alpha.13 - 2023-01-27",id:"100-alpha13---2023-01-27",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-8",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-10",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-14",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-13",children:[],level:4}],level:3},{value:"1.0.0-alpha.12 - 2023-01-24",id:"100-alpha12---2023-01-24",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-9",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-11",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-15",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-4",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-14",children:[],level:4}],level:3},{value:"1.0.0-alpha.11 - 2023-01-17",id:"100-alpha11---2023-01-17",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-10",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-12",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-16",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-5",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-15",children:[],level:4}],level:3},{value:"1.0.0-alpha.10 - 2023-01-13",id:"100-alpha10---2023-01-13",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-13",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-16",children:[],level:4}],level:3},{value:"1.0.0-alpha.9 - 2022-12-28",id:"100-alpha9---2022-12-28",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-17",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-17",children:[],level:4}],level:3},{value:"1.0.0-alpha.8 - 2022-12-23",id:"100-alpha8---2022-12-23",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-11",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-18",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-7",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-6",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-18",children:[],level:4}],level:3},{value:"1.0.0-alpha.7 - 2022-12-16",id:"100-alpha7---2022-12-16",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-12",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-14",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-19",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-19",children:[],level:4}],level:3},{value:"1.0.0-alpha.6 - 2022-12-07",id:"100-alpha6---2022-12-07",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-13",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-15",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-20",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-7",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-20",children:[],level:4}],level:3},{value:"1.0.0-alpha.5 - 2022-11-29",id:"100-alpha5---2022-11-29",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-14",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-16",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-21",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-8",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-8",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-21",children:[],level:4}],level:3},{value:"1.0.0-alpha.4 - 2022-11-22",id:"100-alpha4---2022-11-22",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-17",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-22",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-22",children:[],level:4}],level:3},{value:"1.0.0-alpha.3 - 2022-11-16",id:"100-alpha3---2022-11-16",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-15",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-18",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-23",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-9",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-23",children:[],level:4}],level:3},{value:"1.0.0-alpha.2 - 2022-10-28",id:"100-alpha2---2022-10-28",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-24",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-10",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-24",children:[],level:4}],level:3},{value:"1.0.0-alpha.1 - 2022-10-20",id:"100-alpha1---2022-10-20",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-25",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-11",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-9",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-25",children:[],level:4}],level:3},{value:"0.9.6 - 2022-12-16",id:"096---2022-12-16",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-26",children:[],level:4}],level:3},{value:"0.9.5 - 2022-10-20",id:"095---2022-10-20",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-19",children:[],level:4}],level:3},{value:"0.9.4 - 2022-10-19",id:"094---2022-10-19",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-20",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-26",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-27",children:[],level:4}],level:3},{value:"0.9.3 - 2022-10-04",id:"093---2022-10-04",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-21",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-27",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-10",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-28",children:[],level:4}],level:3},{value:"0.9.2 - 2022-09-27",id:"092---2022-09-27",children:[],level:3},{value:"0.9.1 - 2022-09-27",id:"091---2022-09-27",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-28",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-29",children:[],level:4}],level:3},{value:"0.9.0 - 2022-09-19",id:"090---2022-09-19",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-16",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-22",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-29",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-12",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-11",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-30",children:[],level:4}],level:3},{value:"0.8.1 - 2022-08-26",id:"081---2022-08-26",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-23",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-30",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-12",children:[],level:4}],level:3},{value:"0.8.0 - 2022-08-20",id:"080---2022-08-20",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-17",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-24",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-31",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-31",children:[],level:4}],level:3},{value:"0.7.6 - 2022-08-15",id:"076---2022-08-15",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-32",children:[],level:4}],level:3},{value:"0.7.5 - 2022-08-11",id:"075---2022-08-11",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-33",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-32",children:[],level:4}],level:3},{value:"0.7.3 - 2022-08-04",id:"073---2022-08-04",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-34",children:[],level:4}],level:3},{value:"0.7.2 - 2022-08-03",id:"072---2022-08-03",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-25",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-33",children:[],level:4}],level:3},{value:"0.7.1 - 2022-08-01",id:"071---2022-08-01",children:[],level:3},{value:"0.7.0 - 2022-08-01",id:"070---2022-08-01",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-18",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-26",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-35",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-34",children:[],level:4}],level:3},{value:"0.6.5 - 2022-07-06",id:"065---2022-07-06",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-27",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-36",children:[],level:4}],level:3},{value:"0.6.1 - 2022-07-01",id:"061---2022-07-01",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-19",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-37",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-13",children:[],level:4}],level:3},{value:"0.6.0 - 2022-07-01",id:"060---2022-07-01",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-28",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-38",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-14",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-13",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-35",children:[],level:4}],level:3},{value:"0.5.5 - 2022-06-23",id:"055---2022-06-23",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-29",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-39",children:[],level:4}],level:3},{value:"0.5.4 - 2022-06-16",id:"054---2022-06-16",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-30",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-40",children:[],level:4}],level:3},{value:"0.5.3 - 2022-06-16",id:"053---2022-06-16",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-31",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-41",children:[],level:4}],level:3},{value:"0.5.2 - 2022-06-14",id:"052---2022-06-14",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-20",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-42",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-15",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-36",children:[],level:4}],level:3},{value:"0.5.1 - 2022-06-13",id:"051---2022-06-13",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-43",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-37",children:[],level:4}],level:3},{value:"0.5.0 - 2022-06-11",id:"050---2022-06-11",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-21",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-32",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-44",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-38",children:[],level:4}],level:3},{value:"0.4.5 - 2022-06-08",id:"045---2022-06-08",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-45",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-39",children:[],level:4}],level:3},{value:"0.4.4 - 2022-06-08",id:"044---2022-06-08",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-22",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-33",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-46",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-14",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-40",children:[],level:4}],level:3},{value:"0.4.3 - 2022-06-03",id:"043---2022-06-03",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-34",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-47",children:[],level:4}],level:3},{value:"0.4.2 - 2022-06-02",id:"042---2022-06-02",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-48",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-15",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-41",children:[],level:4}],level:3},{value:"0.4.1 - 2022-06-02",id:"041---2022-06-02",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-23",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-35",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-49",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-16",children:[],level:4}],level:3},{value:"0.4.0 - 2022-06-01",id:"040---2022-06-01",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-24",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-36",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-50",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-16",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-42",children:[],level:4}],level:3},{value:"0.3.1 - 2022-05-19",id:"031---2022-05-19",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-37",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-51",children:[],level:4}],level:3},{value:"0.3.0 - 2022-05-17",id:"030---2022-05-17",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-25",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-38",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-52",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-43",children:[],level:4}],level:3},{value:"0.2.4 - 2022-05-13",id:"024---2022-05-13",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-53",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-44",children:[],level:4}],level:3},{value:"0.2.3 - 2022-04-29",id:"023---2022-04-29",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-26",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-54",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-17",children:[],level:4}],level:3},{value:"0.2.2 - 2022-04-22",id:"022---2022-04-22",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-39",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-55",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-17",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-45",children:[],level:4}],level:3},{value:"0.2.1 - 2022-04-08",id:"021---2022-04-08",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-40",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-46",children:[],level:4}],level:3},{value:"0.2.0 - 2022-04-04",id:"020---2022-04-04",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-27",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-41",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-56",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-18",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-47",children:[],level:4}],level:3},{value:"0.1.9 - 2022-03-25",id:"019---2022-03-25",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-28",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-42",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-57",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-19",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-48",children:[],level:4}],level:3},{value:"0.1.8 - 2022-03-18",id:"018---2022-03-18",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-43",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-58",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-20",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-18",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-49",children:[],level:4}],level:3},{value:"0.1.7 - 2022-03-15",id:"017---2022-03-15",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-29",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-44",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-59",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-21",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-19",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-50",children:[],level:4}],level:3},{value:"0.1.6 - 2022-03-11",id:"016---2022-03-11",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-30",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-45",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-60",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-22",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-51",children:[],level:4}],level:3},{value:"0.1.5 - 2022-03-08",id:"015---2022-03-08",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-31",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-46",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-61",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-23",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-20",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-52",children:[],level:4}],level:3},{value:"0.1.4 - 2022-03-01",id:"014---2022-03-01",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-62",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-21",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-53",children:[],level:4}],level:3},{value:"0.1.4-beta.0 - 2022-02-25",id:"014-beta0---2022-02-25",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-32",children:[],level:4}],level:3},{value:"0.1.3 - 2022-02-25",id:"013---2022-02-25",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-47",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-63",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-24",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-54",children:[],level:4}],level:3},{value:"0.1.2 - 2022-02-17",id:"012---2022-02-17",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-33",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-48",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-64",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-25",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-22",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-55",children:[],level:4}],level:3},{value:"0.1.2-beta.2 - 2022-01-03",id:"012-beta2---2022-01-03",children:[],level:3},{value:"0.1.2-beta.1 - 2021-12-22",id:"012-beta1---2021-12-22",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-56",children:[],level:4}],level:3},{value:"0.1.2-beta.0 - 2021-12-18",id:"012-beta0---2021-12-18",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-57",children:[],level:4}],level:3},{value:"0.1.1 - 2021-12-16",id:"011---2021-12-16",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-58",children:[],level:4}],level:3},{value:"0.1.1-beta.0 - 2021-12-09",id:"011-beta0---2021-12-09",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-59",children:[],level:4}],level:3},{value:"0.1.0 - 2021-11-17",id:"010---2021-11-17",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-60",children:[],level:4}],level:3},{value:"0.0.1 - 2021-11-17",id:"001---2021-11-17",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-61",children:[],level:4}],level:3}],r={toc:d},c="wrapper";function s(e){let{components:a,...t}=e;return(0,n.kt)(c,(0,i.Z)({},r,t,{components:a,mdxType:"MDXLayout"}),(0,n.kt)("h3",{id:"eea-design-system-10"},"EEA Design System (1.0)"),(0,n.kt)("h4",{id:"components-ready-to-be-used"},"Components ready to be used"),(0,n.kt)("p",null,"The following components are ready to be used as Volto ",(0,n.kt)("inlineCode",{parentName:"p"},"blocks"),", ",(0,n.kt)("inlineCode",{parentName:"p"},"slate")," integration, or via the advanced ",(0,n.kt)("inlineCode",{parentName:"p"},"block styler"),":"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Accordion ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Call to Action ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Callout - part of the Description ",(0,n.kt)("inlineCode",{parentName:"li"},"block"),", ",(0,n.kt)("inlineCode",{parentName:"li"},"slate")),(0,n.kt)("li",{parentName:"ul"},"Card - part of the Teaser ",(0,n.kt)("inlineCode",{parentName:"li"},"block")," and Listing ",(0,n.kt)("inlineCode",{parentName:"li"},"block"),", it includes several variations like round card e.g., used for Avatar"),(0,n.kt)("li",{parentName:"ul"},"Divider ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Headings ",(0,n.kt)("inlineCode",{parentName:"li"},"slate")),(0,n.kt)("li",{parentName:"ul"},"Hero ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Item ",(0,n.kt)("inlineCode",{parentName:"li"},"block")," - used for text with an icon (remixicon or custom SVG/image) on the left/right"),(0,n.kt)("li",{parentName:"ul"},"List ",(0,n.kt)("inlineCode",{parentName:"li"},"slate")," - ordered and unordered"),(0,n.kt)("li",{parentName:"ul"},"Quote ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Statistic ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Tag ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Table ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Tabs ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Timeline ",(0,n.kt)("inlineCode",{parentName:"li"},"block"))),(0,n.kt)("h4",{id:"future-releases"},"Future releases"),(0,n.kt)("p",null,"Below is a non-exhaustive list of the work-in-progress which is planned for future releases:"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Navigation Portlet (used on the left/right hand of content)"),(0,n.kt)("li",{parentName:"ul"},"Spacing/padding system. We want to add the ability for editors to consistently apply various spacing/padding on certain components in order to allow a better alignment when components are used together."),(0,n.kt)("li",{parentName:"ul"},"Improve docusaurus and storybook with more components, controls, and variations in order to better reflect what is possible in Volto.")),(0,n.kt)("p",null,"Generated by ",(0,n.kt)("a",{parentName:"p",href:"https://github.com/CookPete/auto-changelog"},(0,n.kt)("inlineCode",{parentName:"a"},"auto-changelog")),"."),(0,n.kt)("h3",{id:"unreleased---2023-04-06t134214276z"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.6...HEAD"},"Unreleased")," - 2023-04-06T13:42:14.276Z"),(0,n.kt)("h4",{id:"-bug-fixes"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(item): flex variant on edit when inside blockchooser #333 from eea/fix-item-csss ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/65b9099779180feeb7d10384928bb0a3224b947d"},(0,n.kt)("inlineCode",{parentName:"a"},"65b9099"))),(0,n.kt)("li",{parentName:"ul"},"fix(item): use child selector instead of descendent as it interferes with blockchooser refs #157040 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ad4ca3725c595c8dbeaff69f730928313c1779ec"},(0,n.kt)("inlineCode",{parentName:"a"},"ad4ca37")))),(0,n.kt)("h4",{id:"-enhancements"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): align menu items with demo site for better testing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/82a5c84cfde81dd8243f3f9a2d1fcaa8ac4b1463"},(0,n.kt)("inlineCode",{parentName:"a"},"82a5c84"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumbs): updates on structure and story for accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/770c8c0bce88c5d9301ab0293a8e4865849bfeb2"},(0,n.kt)("inlineCode",{parentName:"a"},"770c8c0"))),(0,n.kt)("li",{parentName:"ul"},"change(logo): update eionet svg ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c87fc750a3dc376205a643eefced410a41b22c6"},(0,n.kt)("inlineCode",{parentName:"a"},"3c87fc7"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): Restructure Topics and Countries lists ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d816e7ab9cdf2f202ab994201c16241cfb26c33a"},(0,n.kt)("inlineCode",{parentName:"a"},"d816e7a"))),(0,n.kt)("li",{parentName:"ul"},"change(mega-menu): use lists for navigation, enhance voice over support for better accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d13137f024d6357514b85f184d219eb81dd585f2"},(0,n.kt)("inlineCode",{parentName:"a"},"d13137f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): firefox accessibility errors fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c7d35b92b90940b466ea016dbbb3f1c6dfa0c3ab"},(0,n.kt)("inlineCode",{parentName:"a"},"c7d35b9"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumbs): label modification for better screen reader output ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c967bef63ac6f622f5936235dd5590831a674d15"},(0,n.kt)("inlineCode",{parentName:"a"},"c967bef"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): clean up function after test ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/883eb73cbc3db6a1fadd0200118eafdce91b7aab"},(0,n.kt)("inlineCode",{parentName:"a"},"883eb73"))),(0,n.kt)("li",{parentName:"ul"},"change(mega-menu): added code to align countries left column subtitle with the right column ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1aa33dd7ac7154a91515eef688f276d664d5d7f3"},(0,n.kt)("inlineCode",{parentName:"a"},"1aa33dd"))),(0,n.kt)("li",{parentName:"ul"},"change(logos): updated eionet logo used in the site footer #318 from eea/footer-logo-update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70671d03bbc228e3013e382cb51e6764a83b01a8"},(0,n.kt)("inlineCode",{parentName:"a"},"70671d0"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumbs,mega-menu): better screen readers support, see links instead of groups #309 from eea/firefox-accessibility-tab-issues ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d6b0b4adba8f04799491025fb41ac97e875bcce0"},(0,n.kt)("inlineCode",{parentName:"a"},"d6b0b4a"))),(0,n.kt)("li",{parentName:"ul"},"change(mega-menu): sub-title padding tweaks for better spacing normalization ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e08668dd9fd948e57628e5582e7a4a7f08d96451"},(0,n.kt)("inlineCode",{parentName:"a"},"e08668d"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumbs): fixed sizing of breadcrumbs list items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1761e984a6ffebbcca0c7b88128a01235fc6b903"},(0,n.kt)("inlineCode",{parentName:"a"},"1761e98")))),(0,n.kt)("h4",{id:"-internal-changes"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(megaMenu): remove comments and unused properties ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fa5f8f878421d879026aacd86e5390112b8852a1"},(0,n.kt)("inlineCode",{parentName:"a"},"fa5f8f8")))),(0,n.kt)("h4",{id:"-documentation-changes"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(footer): logo update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ad982d63423442bc292cd7553ad3163b33b337bb"},(0,n.kt)("inlineCode",{parentName:"a"},"ad982d6")))),(0,n.kt)("h3",{id:"106---2023-03-29"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.5...1.0.6"},"1.0.6")," - 2023-03-29"),(0,n.kt)("h4",{id:"-new-features"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat: add viewport-(width/height) less functions and fixed banner image url #329 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e8e70bdc81f4f301a9dce370867a873e55563048"},(0,n.kt)("inlineCode",{parentName:"a"},"e8e70bd"))),(0,n.kt)("li",{parentName:"ul"},"feat: add viewport-(width/height) less functions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/68300a3c34e66954c7ef3a6e52baa37431fbfa9e"},(0,n.kt)("inlineCode",{parentName:"a"},"68300a3")))),(0,n.kt)("h4",{id:"-enhancements-1"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): set full class name for remix icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f435e10034b04cab4aeb301d8521559f98be299e"},(0,n.kt)("inlineCode",{parentName:"a"},"f435e10"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner.jsx): use flattenToAppURL helper function to get image source URL ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24b13d7c09a498ca889d413135c9abc4e6cab9ad"},(0,n.kt)("inlineCode",{parentName:"a"},"24b13d7")))),(0,n.kt)("h4",{id:"-internal-changes-1"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(theme): update container width and margins in eea theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e4446a3af641ddca03f1f2833dd6e79535feb98"},(0,n.kt)("inlineCode",{parentName:"a"},"3e4446a")))),(0,n.kt)("h4",{id:"\ufe0f-others"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"horizontal overflow hidden in view mode ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f395f276df003480a219bae639f87bebcf35799f"},(0,n.kt)("inlineCode",{parentName:"a"},"f395f27")))),(0,n.kt)("h3",{id:"105---2023-03-28"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.4...1.0.5"},"1.0.5")," - 2023-03-28"),(0,n.kt)("h4",{id:"-new-features-1"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat: improve full-width class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70bba7e295dd237e7c579ef0446ff05e0c8529d8"},(0,n.kt)("inlineCode",{parentName:"a"},"70bba7e")))),(0,n.kt)("h4",{id:"-bug-fixes-1"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(banner): Add missing divider for time tag #327 from eea/banner-metadata ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c46a58336ec9eb2ce75d2637f3197f417e8ca326"},(0,n.kt)("inlineCode",{parentName:"a"},"c46a583"))),(0,n.kt)("li",{parentName:"ul"},"fix(banner): Add missing divider for time tag ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d68c395d368a267baef4422df6e72f63d099b75"},(0,n.kt)("inlineCode",{parentName:"a"},"7d68c39")))),(0,n.kt)("h3",{id:"104---2023-03-27"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.3...1.0.4"},"1.0.4")," - 2023-03-27"),(0,n.kt)("h4",{id:"-new-features-2"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(copyright): Add copyright prefix - Image - refs #250724 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6a727723c15aee499ed7cedc9f364c5e2c8014bb"},(0,n.kt)("inlineCode",{parentName:"a"},"6a72772")))),(0,n.kt)("h4",{id:"-internal-changes-2"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(copyright): Cleanup useless min-height - refs #250724 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2457df6376ac1a4d00f87eee90e61f66f7ffebb"},(0,n.kt)("inlineCode",{parentName:"a"},"f2457df")))),(0,n.kt)("h4",{id:"\ufe0f-others-1"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cfd6eba8b01eceff4e28ab7ab51b2457672ac172"},(0,n.kt)("inlineCode",{parentName:"a"},"cfd6eba")))),(0,n.kt)("h3",{id:"103---2023-03-24"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.2...1.0.3"},"1.0.3")," - 2023-03-24"),(0,n.kt)("h4",{id:"-bug-fixes-2"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix: improve full-width class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93222590a630b27f3dfccb7df0a50070c9c9901c"},(0,n.kt)("inlineCode",{parentName:"a"},"9322259"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): Remove z-index from subsite logo #320 from eea/subsite-logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/50911009918faf7d3064d97ea7b685ad71970521"},(0,n.kt)("inlineCode",{parentName:"a"},"5091100"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): Remove z-index from subsite logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d433a9788d76db0f1c08ef6bb2313f479c2bb19b"},(0,n.kt)("inlineCode",{parentName:"a"},"d433a97")))),(0,n.kt)("h4",{id:"-enhancements-2"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(header): Add search popup customizations from eea-website-theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/43e5a78be8efa1098ea0fc87f43f40f2b5d482c1"},(0,n.kt)("inlineCode",{parentName:"a"},"43e5a78"))),(0,n.kt)("li",{parentName:"ul"},"change(popup): create custom popup for better accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/036aac95509b6d78b2d3b251578a7de878e28371"},(0,n.kt)("inlineCode",{parentName:"a"},"036aac9"))),(0,n.kt)("li",{parentName:"ul"},"change(popup): added most important popup properties from Semantic ui implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/61f65bc0e5806aaac33b54db36d5360fd05a48cc"},(0,n.kt)("inlineCode",{parentName:"a"},"61f65bc"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): use custom-made Popup for better accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/10d0fcfb28ca97efe9fa5c0f6c9c350b76a73140"},(0,n.kt)("inlineCode",{parentName:"a"},"10d0fcf"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): use custom-made Popup for better accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9108bee5f671505be5199e72a4749bb0af0c0cb9"},(0,n.kt)("inlineCode",{parentName:"a"},"9108bee"))),(0,n.kt)("li",{parentName:"ul"},"change(popup): added also the basic property ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4497acddde258ed31cda09f4d905e003a1e4611"},(0,n.kt)("inlineCode",{parentName:"a"},"a4497ac"))),(0,n.kt)("li",{parentName:"ul"},"change(colors): update gray-4 color value #321 from eea/update-gray-4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f458ff0965debd3629cdd78362244836d0d42687"},(0,n.kt)("inlineCode",{parentName:"a"},"f458ff0"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): MetadataField now uses proper time tag when value is datetime ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4c4d34d5905a6771a281fc3db1174b4998c8fa8"},(0,n.kt)("inlineCode",{parentName:"a"},"b4c4d34"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): updated gray-4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b890df7693880fb965e41752eda64df992a1cdc4"},(0,n.kt)("inlineCode",{parentName:"a"},"b890df7"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): Fix error and empty div if no social links are present #319 from eea/footer-social ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/89222466b76a4720af73c0d516074efec0757c34"},(0,n.kt)("inlineCode",{parentName:"a"},"8922246"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): Fix error and empty div if no social links are present ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5d934a6545ae783ff41dc9e3eda389c571d1369b"},(0,n.kt)("inlineCode",{parentName:"a"},"5d934a6")))),(0,n.kt)("h4",{id:"\ufe0f-others-2"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"lint ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca41def7a3743a8328f26cec868bd20395b62446"},(0,n.kt)("inlineCode",{parentName:"a"},"ca41def"))),(0,n.kt)("li",{parentName:"ul"},"refactor ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9789201c7966cd711bfa85fe448f6f6df2583eaf"},(0,n.kt)("inlineCode",{parentName:"a"},"9789201"))),(0,n.kt)("li",{parentName:"ul"},"lint ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/646dfaa729b51367ce7545ea928837a481a5485a"},(0,n.kt)("inlineCode",{parentName:"a"},"646dfaa"))),(0,n.kt)("li",{parentName:"ul"},"(feat):Page Header Banner accessibility #316 from eea/accesibility-banner ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e587f4657de137273053480a3536a066ab032a29"},(0,n.kt)("inlineCode",{parentName:"a"},"e587f46"))),(0,n.kt)("li",{parentName:"ul"},"storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c8c77de372060328d535b190f30747797db0d23a"},(0,n.kt)("inlineCode",{parentName:"a"},"c8c77de"))),(0,n.kt)("li",{parentName:"ul"},"banner accesibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5e2f23bae30b5bb14d3f607e0cfeb85d0cfe4a9f"},(0,n.kt)("inlineCode",{parentName:"a"},"5e2f23b"))),(0,n.kt)("li",{parentName:"ul"},"prettier ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6ed78e50ee68accca10b06b0790c231ddeb1a1fa"},(0,n.kt)("inlineCode",{parentName:"a"},"6ed78e5"))),(0,n.kt)("li",{parentName:"ul"},"cleaning ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4391aa6c6611d1a15f5977eb150416909ad83bc1"},(0,n.kt)("inlineCode",{parentName:"a"},"4391aa6"))),(0,n.kt)("li",{parentName:"ul"},"lint 3 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2e0bed19a24d8abfa230212cd8c09f8313dc00f2"},(0,n.kt)("inlineCode",{parentName:"a"},"2e0bed1"))),(0,n.kt)("li",{parentName:"ul"},"lint 1 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4c958034870a9861c542359144e3c56f9157994"},(0,n.kt)("inlineCode",{parentName:"a"},"b4c9580")))),(0,n.kt)("h3",{id:"102---2023-03-14"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.1...1.0.2"},"1.0.2")," - 2023-03-14"),(0,n.kt)("h4",{id:"-bug-fixes-3"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(megamenu): topic menu title is now placed before content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6004bcb2683dedf6d6e18e61f33fde84a54c38d5"},(0,n.kt)("inlineCode",{parentName:"a"},"6004bcb"))),(0,n.kt)("li",{parentName:"ul"},"fix(megamenu): removed in depth nav_title renaming that set title wrongly to a-z topics ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/899ca0e2ba5f8f9eb61e4280d786f74a17c186b7"},(0,n.kt)("inlineCode",{parentName:"a"},"899ca0e")))),(0,n.kt)("h4",{id:"-enhancements-3"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(megamenu): removed special styling from at a glance mega menu section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fd0c4c8a06bb4c4aa26f57c453132d13d30bc691"},(0,n.kt)("inlineCode",{parentName:"a"},"fd0c4c8"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): renamed thematic information platforms to environmental information systems ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e7004a7ea39451dbf97e1faed222b0cc5a12d6ce"},(0,n.kt)("inlineCode",{parentName:"a"},"e7004a7"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): updated static image of footer sections ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ff3185edf9257c790d2a124d3f937f61d84e147"},(0,n.kt)("inlineCode",{parentName:"a"},"4ff3185")))),(0,n.kt)("h4",{id:"-documentation-changes-1"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(What's new): Update 'What's new' ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d7ed9d619aa60d087c3821a972ebe5bf5766521a"},(0,n.kt)("inlineCode",{parentName:"a"},"d7ed9d6")))),(0,n.kt)("h4",{id:"\ufe0f-others-3"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fixed accordion selector typo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f4cabc8f2222cf587af9e04b0ea196799b84202f"},(0,n.kt)("inlineCode",{parentName:"a"},"f4cabc8")))),(0,n.kt)("h3",{id:"101---2023-03-13"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0...1.0.1"},"1.0.1")," - 2023-03-13"),(0,n.kt)("h3",{id:"100---2023-03-13"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-beta.6...1.0.0"},"1.0.0")," - 2023-03-13"),(0,n.kt)("h4",{id:"-bug-fixes-4"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(Footer): Open internal links within the same page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5b3e409c71281800bb0fd137a1bac256efaca2b5"},(0,n.kt)("inlineCode",{parentName:"a"},"5b3e409")))),(0,n.kt)("h4",{id:"-enhancements-4"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(banner): use huge scale instead of full image for better performance ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/381c58e3521436f562d9e1727428a18435e2c0f3"},(0,n.kt)("inlineCode",{parentName:"a"},"381c58e")))),(0,n.kt)("h3",{id:"100-beta6---2023-03-10"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-beta.5...1.0.0-beta.6"},"1.0.0-beta.6")," - 2023-03-10"),(0,n.kt)("h4",{id:"-new-features-3"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(site): serve Roboto fonts from eea design system package instead of google fonts #311 from eea/roboto-library ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6a1b3e3864a0bc8602e9c434ff70746bba59f44"},(0,n.kt)("inlineCode",{parentName:"a"},"f6a1b3e")))),(0,n.kt)("h4",{id:"-bug-fixes-5"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix: full-width is now properly sized ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e2e3482d658febbd692112608df14279bed05e7"},(0,n.kt)("inlineCode",{parentName:"a"},"6e2e348"))),(0,n.kt)("li",{parentName:"ul"},"fix(storybook): add fontDisplay ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/078966a6a5c7277d36fcd31bb4c0704bcc43e523"},(0,n.kt)("inlineCode",{parentName:"a"},"078966a")))),(0,n.kt)("h4",{id:"-enhancements-5"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(image): copyright position fixes, moved image floating to image-block-container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53422e0ea345a7cb6e8cb07bf9006b48d86ded58"},(0,n.kt)("inlineCode",{parentName:"a"},"53422e0"))),(0,n.kt)("li",{parentName:"ul"},"change(colors:) update the design system colour palette #312 from eea/update-color-palette ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a5fb69465717dbdc0fe8091640a0e46f66199b65"},(0,n.kt)("inlineCode",{parentName:"a"},"a5fb694"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): added roboto library ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19de7b19fe795870102000bfebbf452d88b3a7b1"},(0,n.kt)("inlineCode",{parentName:"a"},"19de7b1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): added roboto library ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e9916215728dda0ff423f8196e7442588058042e"},(0,n.kt)("inlineCode",{parentName:"a"},"e991621"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): update colours ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3a2c1e1da8f0224e08f9f8afac3f0a74f7ce91d3"},(0,n.kt)("inlineCode",{parentName:"a"},"3a2c1e1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): restored site variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a48478bae9bdf1d9275be999e1ec8382f10a2fec"},(0,n.kt)("inlineCode",{parentName:"a"},"a48478b"))),(0,n.kt)("li",{parentName:"ul"},"change(copyright): implemented copyright hover design ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6b1244163de7ff58d1529fdd791502c862ee48ec"},(0,n.kt)("inlineCode",{parentName:"a"},"6b12441")))),(0,n.kt)("h4",{id:"-internal-changes-3"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(storybook): switched google fonts to true ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a8cae46582356cc24ec3cd7ec47e692bc67a6a5"},(0,n.kt)("inlineCode",{parentName:"a"},"4a8cae4"))),(0,n.kt)("li",{parentName:"ul"},"chore(colours): changed back yellow 6 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87c9bbc0ec9a2a0f4bf8eeb03525d43ce6f502be"},(0,n.kt)("inlineCode",{parentName:"a"},"87c9bbc"))),(0,n.kt)("li",{parentName:"ul"},"chore(lint): lint ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9b0f1256a8b0a583ac7724a8d88259c615d7e0c7"},(0,n.kt)("inlineCode",{parentName:"a"},"9b0f125"))),(0,n.kt)("li",{parentName:"ul"},"chore(storybook): lint ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/29bc809ab2e9fa4207b8b067785e6b17e91db3b4"},(0,n.kt)("inlineCode",{parentName:"a"},"29bc809")))),(0,n.kt)("h4",{id:"-documentation-changes-2"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(colours): colours update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/161007e2480aa79517c4ca772364a12a0756f1af"},(0,n.kt)("inlineCode",{parentName:"a"},"161007e"))),(0,n.kt)("li",{parentName:"ul"},"docs(colours): accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee342aa6af3863d243222eaa89709be2ba61f988"},(0,n.kt)("inlineCode",{parentName:"a"},"ee342aa")))),(0,n.kt)("h4",{id:"\ufe0f-others-4"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"test(cypress): Use latest stable Volto for testing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/20516617ae045f48c37a7ac7ad05c3d1090339b3"},(0,n.kt)("inlineCode",{parentName:"a"},"2051661"))),(0,n.kt)("li",{parentName:"ul"},"Update What's new section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/caa4b5d93affa7b63a332eaed9e73ea161a508cf"},(0,n.kt)("inlineCode",{parentName:"a"},"caa4b5d"))),(0,n.kt)("li",{parentName:"ul"},"Prepare final release 1.0.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef4383d05b295cbbb377f877522b9f83cd0873ef"},(0,n.kt)("inlineCode",{parentName:"a"},"ef4383d"))),(0,n.kt)("li",{parentName:"ul"},"lint fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/599f5098904f607bd694dd5d2e642c8820f11b3c"},(0,n.kt)("inlineCode",{parentName:"a"},"599f509"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/80cd3df3534e46e52ba246256c3d990a52753bbd"},(0,n.kt)("inlineCode",{parentName:"a"},"80cd3df")))),(0,n.kt)("h3",{id:"100-beta5---2023-03-07"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-beta.4...1.0.0-beta.5"},"1.0.0-beta.5")," - 2023-03-07"),(0,n.kt)("h4",{id:"-enhancements-6"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(carousel): tweak size of carousel dots for better touch interaction ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e1fb8230806de2e157a9a5ea87e63765769565b4"},(0,n.kt)("inlineCode",{parentName:"a"},"e1fb823"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): removed min width and height from links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac33219fb77f23bb5148355551a7aad9f453d2e7"},(0,n.kt)("inlineCode",{parentName:"a"},"ac33219")))),(0,n.kt)("h4",{id:"-internal-changes-4"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(hiddenStructure): Add hiddenStructure utility to be used with h1 heading on frontpage - refs #158717 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/672cca2401003f56e5ea104f18103ea090e38fd7"},(0,n.kt)("inlineCode",{parentName:"a"},"672cca2")))),(0,n.kt)("h4",{id:"\ufe0f-others-5"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fixed less build failure due to changes in footer.less ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/190bc8cfa88191b45808f1e27c6e2737ee3d15b1"},(0,n.kt)("inlineCode",{parentName:"a"},"190bc8c"))),(0,n.kt)("li",{parentName:"ul"},"lazyload bg img on footer also ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ae07162ba1b27bff58fed70eaabc28c78c5f45a3"},(0,n.kt)("inlineCode",{parentName:"a"},"ae07162"))),(0,n.kt)("li",{parentName:"ul"},"lazyload footer images ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a0633c9ec4ccfb63a48eb4e4c4a63c90daac1a37"},(0,n.kt)("inlineCode",{parentName:"a"},"a0633c9"))),(0,n.kt)("li",{parentName:"ul"},"Increase performance - mobile friendly ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/07d86c8e77568f91d50b3a45248de9427140a295"},(0,n.kt)("inlineCode",{parentName:"a"},"07d86c8"))),(0,n.kt)("li",{parentName:"ul"},"better useOnScreen hook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c214b6b76443f81c795ce2f3aa457562ec088b30"},(0,n.kt)("inlineCode",{parentName:"a"},"c214b6b"))),(0,n.kt)("li",{parentName:"ul"},"role change for accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5e758e0a7fa8c56ba688d0a43de5890686f14ea3"},(0,n.kt)("inlineCode",{parentName:"a"},"5e758e0"))),(0,n.kt)("li",{parentName:"ul"},"minimum tap dimension for mobile ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a25e9a8ba8a8a0f24d287ed7513e549ae2caab0f"},(0,n.kt)("inlineCode",{parentName:"a"},"a25e9a8"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-beta.5 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e4417e121477511c350ae3fbe4e70aadb445ed86"},(0,n.kt)("inlineCode",{parentName:"a"},"e4417e1"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using eea-website-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b227cf8a8c44b9d91e9fda8a7999fb0a42bacdca"},(0,n.kt)("inlineCode",{parentName:"a"},"b227cf8"))),(0,n.kt)("li",{parentName:"ul"},"feature(mobile): increased performance by lazy loading footer images #303 from eea/increase_performance ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/80d1df1c459680331d486f9e8e6a95c9db0adbf6"},(0,n.kt)("inlineCode",{parentName:"a"},"80d1df1"))),(0,n.kt)("li",{parentName:"ul"},"useOnScreen default export ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e6cfdd4dcb814aad328f97be7af41af071ccba6"},(0,n.kt)("inlineCode",{parentName:"a"},"3e6cfdd"))),(0,n.kt)("li",{parentName:"ul"},"use aria-labels on dropdown ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/27e144315416ceace0f01def03b5b24640f5c7da"},(0,n.kt)("inlineCode",{parentName:"a"},"27e1443"))),(0,n.kt)("li",{parentName:"ul"},"prettier ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7f838470c1bcc4e2be115d514d92a1b686a5e9b"},(0,n.kt)("inlineCode",{parentName:"a"},"a7f8384")))),(0,n.kt)("h3",{id:"100-beta4---2023-03-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-beta.3...1.0.0-beta.4"},"1.0.0-beta.4")," - 2023-03-01"),(0,n.kt)("h4",{id:"-new-features-4"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(footer): Add footer description ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ad0f714556c5b8c2fd95a2caea5c3a1e82c75d1"},(0,n.kt)("inlineCode",{parentName:"a"},"2ad0f71"))),(0,n.kt)("li",{parentName:"ul"},"feat(footer): Add footer description #306 from eea/footer-description ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bf655d133dd75b217c34b3d4303ad450a59f2c51"},(0,n.kt)("inlineCode",{parentName:"a"},"bf655d1")))),(0,n.kt)("h4",{id:"-bug-fixes-6"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(footer): Don't show empty row if description is not present ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ca7f7d3247668ae8583b8cd629856aac82eb07d"},(0,n.kt)("inlineCode",{parentName:"a"},"2ca7f7d"))),(0,n.kt)("li",{parentName:"ul"},"fix(footer): Add class for children ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c50d15cd6ed46d78ef10d48fd851ed7c4b5ddea"},(0,n.kt)("inlineCode",{parentName:"a"},"3c50d15"))),(0,n.kt)("li",{parentName:"ul"},"fix(search): Fix search links color #307 from eea/search-accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a76f48bab3a7d3f6b748eaa85b33266401372e40"},(0,n.kt)("inlineCode",{parentName:"a"},"a76f48b"))),(0,n.kt)("li",{parentName:"ul"},"fix(search): Fix search links color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/69c42effc5bdc3d31f18de74d77a3b7cc0018dc5"},(0,n.kt)("inlineCode",{parentName:"a"},"69c42ef")))),(0,n.kt)("h4",{id:"-enhancements-7"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(carousel): tweak card width and padding for better arrow alignment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e184f70062d622e1ec53e8e1e2b012c080e62d77"},(0,n.kt)("inlineCode",{parentName:"a"},"e184f70"))),(0,n.kt)("li",{parentName:"ul"},"change(storybook): include footer description in storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e904aa0850e101d736e8d045e822d9a58b75ff6a"},(0,n.kt)("inlineCode",{parentName:"a"},"e904aa0")))),(0,n.kt)("h4",{id:"\ufe0f-others-6"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-beta.4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8c335c56c5a2a76ea87f9da318055770f904e649"},(0,n.kt)("inlineCode",{parentName:"a"},"8c335c5"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/38b03333066416915b056f8ac45da4de87ed7184"},(0,n.kt)("inlineCode",{parentName:"a"},"38b0333")))),(0,n.kt)("h3",{id:"100-beta3---2023-02-21"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-beta.2...1.0.0-beta.3"},"1.0.0-beta.3")," - 2023-02-21"),(0,n.kt)("h4",{id:"-new-features-5"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(accordion): storybook accessibility by using buttons for titles #297 from eea/accessibility-accordion ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/809d52b203ef40fab735006b3b8358d68682f7cf"},(0,n.kt)("inlineCode",{parentName:"a"},"809d52b")))),(0,n.kt)("h4",{id:"-bug-fixes-7"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(dropdown): remove close on blur so that we can navigate links using keyboard ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5442715e022b3eb2eeb709ff597f815947ac45bd"},(0,n.kt)("inlineCode",{parentName:"a"},"5442715")))),(0,n.kt)("h4",{id:"-enhancements-8"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(language): dropdown to use links for proper keyboard navigation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6a7de30d9d229443d6d2070d9649129e6d35badf"},(0,n.kt)("inlineCode",{parentName:"a"},"6a7de30"))),(0,n.kt)("li",{parentName:"ul"},"refactor(images): cleared unused/renamed images assets ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/821f5c1da5c1e2350818cd9b8b82bc0b1893370d"},(0,n.kt)("inlineCode",{parentName:"a"},"821f5c1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Accessibility): add box-shadow on focus-visible components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b1adcc315a89c7d3431e542e8d1b6ec479a346e2"},(0,n.kt)("inlineCode",{parentName:"a"},"b1adcc3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(images): remove unused docusaurus svgs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5ef14cdb1923d803feb673559d41b3064211653"},(0,n.kt)("inlineCode",{parentName:"a"},"c5ef14c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add escape key functionality, actions from div to button to have proper focus state ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8081aa4e3b77f8a3dc89aa358408d75e3dca5579"},(0,n.kt)("inlineCode",{parentName:"a"},"8081aa4"))),(0,n.kt)("li",{parentName:"ul"},"change(language): restore dropdown duplication in order to properly show and hide language dropdown ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb28888ff19bd9894b58403e674f69de42ad8d09"},(0,n.kt)("inlineCode",{parentName:"a"},"cb28888"))),(0,n.kt)("li",{parentName:"ul"},"change(search): to reflect changes from eea-website-theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2cc35e0da6e6eac1473724293fcf6cd6b0a914b5"},(0,n.kt)("inlineCode",{parentName:"a"},"2cc35e0"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update p with h3 heading tag for header ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca1477b554f56423d40a33d8ee788c3f3bd3e341"},(0,n.kt)("inlineCode",{parentName:"a"},"ca1477b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer images): removed unused/renamed ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/186de6b23906e05ec700c3db5180a4d7f7e5ed68"},(0,n.kt)("inlineCode",{parentName:"a"},"186de6b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Accordion): div titles to buttons, test in mobile mega menu accordions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/eaad4b479e37ebf5ac004cfc5759e0be603000a7"},(0,n.kt)("inlineCode",{parentName:"a"},"eaad4b4"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): cleanup decorative images ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fedc4d4dc156f9c1394fcedcebece4fb87dc70b6"},(0,n.kt)("inlineCode",{parentName:"a"},"fedc4d4"))),(0,n.kt)("li",{parentName:"ul"},"change(accessibility): style outline instead of box-shadow ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53209f3b28c9a1dd54a8a86ab418b8bc2a8e01b3"},(0,n.kt)("inlineCode",{parentName:"a"},"53209f3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Footer): update mobile header size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/01ab7f0d9abe688b3d96aaec018838e1abefec73"},(0,n.kt)("inlineCode",{parentName:"a"},"01ab7f0"))),(0,n.kt)("li",{parentName:"ul"},"change(header): set the logo class directly on the link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f8fba508f925d9e6b86720fcb2c7dcfffee4ab5e"},(0,n.kt)("inlineCode",{parentName:"a"},"f8fba50"))),(0,n.kt)("li",{parentName:"ul"},"refactor(images): clear docusaurus unused pngs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/db5c61124182e3030f753f6baa294fbdecaa3798"},(0,n.kt)("inlineCode",{parentName:"a"},"db5c611"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header-images): removed unused ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8250d94421d9d1ee13144e71bc0938af2b7309f5"},(0,n.kt)("inlineCode",{parentName:"a"},"8250d94"))),(0,n.kt)("li",{parentName:"ul"},"change(language): hide language dropdown by default ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cc6064f72dcb4dbf96e9b05205cc796775d75205"},(0,n.kt)("inlineCode",{parentName:"a"},"cc6064f"))),(0,n.kt)("li",{parentName:"ul"},"change(header): top dropdown menu keyboard navigation #293 from eea/accessibility-megamenu-searchbox ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1e6fa658e52b9d5e6cc38f065b5707b592005241"},(0,n.kt)("inlineCode",{parentName:"a"},"1e6fa65"))),(0,n.kt)("li",{parentName:"ul"},"change(button): set focus styling for buttons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/33ebfcacb014fca365ae58079bfa5429d9007e54"},(0,n.kt)("inlineCode",{parentName:"a"},"33ebfca"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): Avoid devtools warning in FooterActions #304 from eea/avoid_warning ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d774824c5d3d0998b3440ac83152428cfa821087"},(0,n.kt)("inlineCode",{parentName:"a"},"d774824"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): Accessibility update p with h3 heading tag for theme sites title #302 from eea/footer-accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5bf70de97aee216a0b88f5843a290c6bcb5da6f2"},(0,n.kt)("inlineCode",{parentName:"a"},"5bf70de"))),(0,n.kt)("li",{parentName:"ul"},"change(documentation): Rename all image files to follow the agreed convention #301 from eea/refactor-image-filenames ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cfe44ef79943af9b9179df1b8ec5f8c743e8bb39"},(0,n.kt)("inlineCode",{parentName:"a"},"cfe44ef")))),(0,n.kt)("h4",{id:"-internal-changes-5"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(header): react syntax fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3add1271c785a92bea0ef925d7bc562cef1e0d92"},(0,n.kt)("inlineCode",{parentName:"a"},"3add127"))),(0,n.kt)("li",{parentName:"ul"},"chore(docusaurus): ignore website/.yarn ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0b33ffd1dda61b126e3cc5ff48888124d6aee41b"},(0,n.kt)("inlineCode",{parentName:"a"},"0b33ffd")))),(0,n.kt)("h4",{id:"-documentation-changes-3"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(guidelines): add image name convention ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/290747c8df6919199577bc7fce6a0e337cb57853"},(0,n.kt)("inlineCode",{parentName:"a"},"290747c")))),(0,n.kt)("h4",{id:"\ufe0f-others-7"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Avoid warning in FooterActions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0fe73d70e44e32be73049f3b5cf826de42115942"},(0,n.kt)("inlineCode",{parentName:"a"},"0fe73d7"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-beta.3 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/386c9032d39317b0bb95191bd59e3b7a99bded69"},(0,n.kt)("inlineCode",{parentName:"a"},"386c903")))),(0,n.kt)("h3",{id:"100-beta2---2023-02-13"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-beta.1...1.0.0-beta.2"},"1.0.0-beta.2")," - 2023-02-13"),(0,n.kt)("h4",{id:"-bug-fixes-8"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(footer): action and copyright #300 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/579f3e436e9608b38a2407a16c070345462bfccc"},(0,n.kt)("inlineCode",{parentName:"a"},"579f3e4"))),(0,n.kt)("li",{parentName:"ul"},"fix(footer): action or copyright links are simple a tags for external link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9af5070187ec975e58387f133afedcf1bbc47a50"},(0,n.kt)("inlineCode",{parentName:"a"},"9af5070"))),(0,n.kt)("li",{parentName:"ul"},"fix(accessibility): added navigation and footer id's for skip link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48354b908e7d1a87b4e1a965d225e8f1b3e0ac59"},(0,n.kt)("inlineCode",{parentName:"a"},"48354b9")))),(0,n.kt)("h4",{id:"-enhancements-9"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(footer): typos and modified footer links to be center aligned ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac23f046bcac06525985dff7520bb2766dec44ec"},(0,n.kt)("inlineCode",{parentName:"a"},"ac23f04"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): added gap for actions and copyright ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d32ddd3c28a48c6c2fb73dea373bb5873b6f76b"},(0,n.kt)("inlineCode",{parentName:"a"},"7d32ddd"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): modified footer gap ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8a820ac90c7d6664e4d4655c2c06edfa976c64e"},(0,n.kt)("inlineCode",{parentName:"a"},"b8a820a"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): removed extra text and date from copyright section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af47bbec298678fece6f879fbc18fe2e01ab0894"},(0,n.kt)("inlineCode",{parentName:"a"},"af47bbe"))),(0,n.kt)("li",{parentName:"ul"},"change(navigation): raise z-index of go to top link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/485ca7291da7a156b6b580c42e46d4f3602211bb"},(0,n.kt)("inlineCode",{parentName:"a"},"485ca72")))),(0,n.kt)("h4",{id:"-internal-changes-6"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(docs): Update eea.hbs template to beta - refs #158717 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/196538ed7bb9dab36a0efb4cef84e96dd3038ff8"},(0,n.kt)("inlineCode",{parentName:"a"},"196538e")))),(0,n.kt)("h4",{id:"\ufe0f-others-8"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change version to beta 2 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cbb07981454b28de840561eca281888e8bc29f9e"},(0,n.kt)("inlineCode",{parentName:"a"},"cbb0798"))),(0,n.kt)("li",{parentName:"ul"},"Beta release ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ad51b3c2bbb75f19af14fa56afdbddf57b6c95e"},(0,n.kt)("inlineCode",{parentName:"a"},"4ad51b3")))),(0,n.kt)("h3",{id:"100-beta1---2023-02-09"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.15...1.0.0-beta.1"},"1.0.0-beta.1")," - 2023-02-09"),(0,n.kt)("h4",{id:"-new-features-6"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(search): Add search suggestions style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6b2b77bbaba11541606ae2bc1f4e8ffc823f470d"},(0,n.kt)("inlineCode",{parentName:"a"},"6b2b77b"))),(0,n.kt)("li",{parentName:"ul"},"feat(search): Add search suggestions style #296 from eea/search-suggestions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3b0c956f569ebdc8400b88249c45067a1f881264"},(0,n.kt)("inlineCode",{parentName:"a"},"3b0c956")))),(0,n.kt)("h4",{id:"-enhancements-10"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(search): Add proper margin for search popup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/190c9f5be570215586086f42aebc7e36d6a26ea2"},(0,n.kt)("inlineCode",{parentName:"a"},"190c9f5")))),(0,n.kt)("h4",{id:"\ufe0f-others-9"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Extra bottom padding for header menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4f38c7a96d93fbcd47de4ec60176de2a667c5643"},(0,n.kt)("inlineCode",{parentName:"a"},"4f38c7a"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-beta.1 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4384ae28597c725f66ab0f1361ffd5167ee5e3a1"},(0,n.kt)("inlineCode",{parentName:"a"},"4384ae2"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c2ee90c1754f17a304897839adf482bc2a111212"},(0,n.kt)("inlineCode",{parentName:"a"},"c2ee90c")))),(0,n.kt)("h3",{id:"100-alpha15---2023-02-08"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.14...1.0.0-alpha.15"},"1.0.0-alpha.15")," - 2023-02-08"),(0,n.kt)("h4",{id:"-new-features-7"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(Card): add teaser card grid story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53cac0b0d1c40ad6ad8c9dc91c5d24bfb160f98e"},(0,n.kt)("inlineCode",{parentName:"a"},"53cac0b"))),(0,n.kt)("li",{parentName:"ul"},"feat(utilities): Complete list of text-align utilities - refs #160747 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/224fab602184b8974f588c91a7412e3d03e4e2f7"},(0,n.kt)("inlineCode",{parentName:"a"},"224fab6"))),(0,n.kt)("li",{parentName:"ul"},"feat(small): CSS for small HTML tag - refs #160747 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ad3c0adec4efa7cead69153d399c6452131c94cc"},(0,n.kt)("inlineCode",{parentName:"a"},"ad3c0ad"))),(0,n.kt)("li",{parentName:"ul"},"feat(fw-light): Add font weight light utility - refs #160747 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c44cf57db5845fbb9c07233aeedab79e1438f80f"},(0,n.kt)("inlineCode",{parentName:"a"},"c44cf57")))),(0,n.kt)("h4",{id:"-bug-fixes-9"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(card): teaser card dimensions on tablet size #290 from eea/teaser-card-grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/013fdf5cad347aee14bdc51553dbd95d972a7c66"},(0,n.kt)("inlineCode",{parentName:"a"},"013fdf5")))),(0,n.kt)("h4",{id:"-enhancements-11"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(card): added extra content for teaser card story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/30690ae6c499682853cb19db10b0cdc13c6f9508"},(0,n.kt)("inlineCode",{parentName:"a"},"30690ae"))),(0,n.kt)("li",{parentName:"ul"},"refactor(style-menu): add text-color to paragraphs styles #291 from eea/stylemenu-theme-colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2d783075b8089184e50b1763226af0d60ed11786"},(0,n.kt)("inlineCode",{parentName:"a"},"2d78307"))),(0,n.kt)("li",{parentName:"ul"},"change(header): Small fix in search popup #292 from eea/search-popup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/86c130539455b9a00b4b088b1871a98b9756df79"},(0,n.kt)("inlineCode",{parentName:"a"},"86c1305"))),(0,n.kt)("li",{parentName:"ul"},"refactor(style-menu): add text-color to paragraphs styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3446bc2704603bbfead7ff6c72d4e3a1ce81c7d4"},(0,n.kt)("inlineCode",{parentName:"a"},"3446bc2"))),(0,n.kt)("li",{parentName:"ul"},"change(color): darkCyan is now replaced everywhere by the new green ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef3791de6e2ea23487791c717eefc575e21fd283"},(0,n.kt)("inlineCode",{parentName:"a"},"ef3791d"))),(0,n.kt)("li",{parentName:"ul"},"change(header): Small fix in search popup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3d622ea99df5a1f1088f70998e38fd5bf43997cf"},(0,n.kt)("inlineCode",{parentName:"a"},"3d622ea")))),(0,n.kt)("h4",{id:"\ufe0f-others-10"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Release alpha 15 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3b72b29aaf9b3e1bfb7015808aafbd73a7167895"},(0,n.kt)("inlineCode",{parentName:"a"},"3b72b29")))),(0,n.kt)("h3",{id:"100-alpha14---2023-01-30"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.13.1...1.0.0-alpha.14"},"1.0.0-alpha.14")," - 2023-01-30"),(0,n.kt)("h4",{id:"-enhancements-12"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(mobile menu): integrate a-z topic with menu rendering logic #287 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/05d4c04603e6572cd6f9b255faa03c4636d8efdb"},(0,n.kt)("inlineCode",{parentName:"a"},"05d4c04"))),(0,n.kt)("li",{parentName:"ul"},"change(mobile menu): integrate a-z topic with menu rendering logic ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/246d3d839b773e2f6e1fff7fed5f9aa7a4968daa"},(0,n.kt)("inlineCode",{parentName:"a"},"246d3d8")))),(0,n.kt)("h4",{id:"\ufe0f-others-11"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"bump release to alpha 14 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/92f01975a809553ed122824c8407c74da9132c23"},(0,n.kt)("inlineCode",{parentName:"a"},"92f0197"))),(0,n.kt)("li",{parentName:"ul"},"link fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e1c12a132a1a99d773af359ebce071fb37c7e661"},(0,n.kt)("inlineCode",{parentName:"a"},"e1c12a1")))),(0,n.kt)("h3",{id:"100-alpha131---2023-01-30"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.13...1.0.0-alpha.13.1"},"1.0.0-alpha.13.1")," - 2023-01-30"),(0,n.kt)("h4",{id:"-enhancements-13"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(mobile menu): hardcode a-z topics to '/en/topics-in-depth' #286 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6436224e1922fb5d4b4053c874cebe5c57b2a6b9"},(0,n.kt)("inlineCode",{parentName:"a"},"6436224"))),(0,n.kt)("li",{parentName:"ul"},"change(mobile menu): hardcode a-z topics to '/en/topics-in-depth' ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5235b52047a80a8b626aa5ef3ef304c4d9a82003"},(0,n.kt)("inlineCode",{parentName:"a"},"5235b52")))),(0,n.kt)("h4",{id:"\ufe0f-others-12"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change release to 13.1 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70aa5648e7d9e14796445323b6ebaf7733cc7fd8"},(0,n.kt)("inlineCode",{parentName:"a"},"70aa564")))),(0,n.kt)("h3",{id:"100-alpha13---2023-01-27"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.12...1.0.0-alpha.13"},"1.0.0-alpha.13")," - 2023-01-27"),(0,n.kt)("h4",{id:"-new-features-8"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(utilities): added has--bg--top center and bottom utility classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/051e6d7c33aca7947802ddaa9fe68ac41ed7fe11"},(0,n.kt)("inlineCode",{parentName:"a"},"051e6d7")))),(0,n.kt)("h4",{id:"-bug-fixes-10"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(header): update green color used in page header #284 from eea/fix-banner-background ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/29d54db06487d18a367202725e525ac26e5b7c58"},(0,n.kt)("inlineCode",{parentName:"a"},"29d54db")))),(0,n.kt)("h4",{id:"-enhancements-14"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(site): added fixes from customVolto.css to design package ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51ba9b5df0186bdf075d803dea6032bac52e540f"},(0,n.kt)("inlineCode",{parentName:"a"},"51ba9b5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner): update banner background green color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fd4a552d9ff7a2973ebd6d18b6fbfd9bba5d98c6"},(0,n.kt)("inlineCode",{parentName:"a"},"fd4a552"))),(0,n.kt)("li",{parentName:"ul"},"change(mobile menu): changed link for a-z topics to point to in depth ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/721bf237d23d2a8e47fc2132912646c4ce182c9d"},(0,n.kt)("inlineCode",{parentName:"a"},"721bf23")))),(0,n.kt)("h4",{id:"\ufe0f-others-13"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"1.0.0-alpha.13 release #285 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c96694005e2d4160876f6a900db13940d42266d5"},(0,n.kt)("inlineCode",{parentName:"a"},"c966940"))),(0,n.kt)("li",{parentName:"ul"},"bump next version to alpha 13 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/897e9069062282f1b5cd8d86a02b8e54c40a4690"},(0,n.kt)("inlineCode",{parentName:"a"},"897e906"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5780dc7abeb24da5e77b043a34593ff7a44f350d"},(0,n.kt)("inlineCode",{parentName:"a"},"5780dc7")))),(0,n.kt)("h3",{id:"100-alpha12---2023-01-24"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.11...1.0.0-alpha.12"},"1.0.0-alpha.12")," - 2023-01-24"),(0,n.kt)("h4",{id:"-new-features-9"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(card, colors): visited color change and title on image option for cards #283 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e638ee6b77885fd5989179aa9e6532e46e475247"},(0,n.kt)("inlineCode",{parentName:"a"},"e638ee6")))),(0,n.kt)("h4",{id:"-bug-fixes-11"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(mobile menu): sub links when an accordion section is active ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bb3be81416340ad0e3e992cd4e75642fc50f8ad3"},(0,n.kt)("inlineCode",{parentName:"a"},"bb3be81")))),(0,n.kt)("h4",{id:"-enhancements-15"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(Card): create card template for stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2fa77f3f93935dd01cd5e3d77437fe8dc03721da"},(0,n.kt)("inlineCode",{parentName:"a"},"2fa77f3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Card): add image with title css ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e6e63e2362a27b0bbf4b8dd968f11a0dc87da2a"},(0,n.kt)("inlineCode",{parentName:"a"},"6e6e63e"))),(0,n.kt)("li",{parentName:"ul"},"change(card): implement title on image within image section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff6cc600978355e04dde704d014d2cbe27df1298"},(0,n.kt)("inlineCode",{parentName:"a"},"ff6cc60"))),(0,n.kt)("li",{parentName:"ul"},"change(card): added image card section, tweaked mobile heading size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0f879e15d22ae066f020d8188ef3e355c27d016c"},(0,n.kt)("inlineCode",{parentName:"a"},"0f879e1"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): moved image gradient overlay to a mixin.less file ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8b4928a87bfe5fae6f64c93d7c8f1f7a3045816c"},(0,n.kt)("inlineCode",{parentName:"a"},"8b4928a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): Update titles value and size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c35ad5c76caa00556f8a501d2e7d516464790dc4"},(0,n.kt)("inlineCode",{parentName:"a"},"c35ad5c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): applied image naming convention ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee7bc290084e198f9f94e40fbf44c6d9cb19d1ba"},(0,n.kt)("inlineCode",{parentName:"a"},"ee7bc29"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): added image for all storybook card examples ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3f194130bb6fb7b9ab04a7e1305f26fa135c23d2"},(0,n.kt)("inlineCode",{parentName:"a"},"3f19413"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): restored label value of metadata field when type isn't date ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/571a4f27fe73d0465b6482f70dd70b2dc47dffe8"},(0,n.kt)("inlineCode",{parentName:"a"},"571a4f2"))),(0,n.kt)("li",{parentName:"ul"},"change(card): title padding value for a more balance look ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/74b65563d973eb9c6afc534935e253f2705fe9ee"},(0,n.kt)("inlineCode",{parentName:"a"},"74b6556"))),(0,n.kt)("li",{parentName:"ul"},"change(card): removed uppercase transform from title on image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2948ae16f748911929910ac53d1e0acf96952317"},(0,n.kt)("inlineCode",{parentName:"a"},"2948ae1"))),(0,n.kt)("li",{parentName:"ul"},"change(colors, Docusaurus): Visited link colour change and thematic logo replacement #278 from eea/refactor-visited-link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f82d9781cc3b34443f181565c2ec1892d534f8e2"},(0,n.kt)("inlineCode",{parentName:"a"},"f82d978"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): visited link variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b209b2f7703641926c6d4b1f7162eef39b2a1ad8"},(0,n.kt)("inlineCode",{parentName:"a"},"b209b2f")))),(0,n.kt)("h4",{id:"-documentation-changes-4"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(colors): visited link update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ece77fec130de1d9d8014d40e7da975bf57061ee"},(0,n.kt)("inlineCode",{parentName:"a"},"ece77fe")))),(0,n.kt)("h4",{id:"\ufe0f-others-14"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix typos in footer gradient variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/40066405d97af838e986370101371a8162029e02"},(0,n.kt)("inlineCode",{parentName:"a"},"4006640"))),(0,n.kt)("li",{parentName:"ul"},"change version to alpha 12 instead of 1 final ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32250253f5d7fe9f01126136ad86b8a4f2f5c700"},(0,n.kt)("inlineCode",{parentName:"a"},"3225025"))),(0,n.kt)("li",{parentName:"ul"},"feature(card): new card variation with title on top of image #267 from eea/title-on-image-card ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2c0ca95700bb162bc1273c83f2fc4f591de8dcf0"},(0,n.kt)("inlineCode",{parentName:"a"},"2c0ca95"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/477d997513ef5152ab98e080ad07f927b5869705"},(0,n.kt)("inlineCode",{parentName:"a"},"477d997")))),(0,n.kt)("h3",{id:"100-alpha11---2023-01-17"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.10...1.0.0-alpha.11"},"1.0.0-alpha.11")," - 2023-01-17"),(0,n.kt)("h4",{id:"-new-features-10"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(docusaurus): Header and footer elements section #277 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0df271c4c79bd8a24750cfe44d69f32cb04a1b63"},(0,n.kt)("inlineCode",{parentName:"a"},"0df271c")))),(0,n.kt)("h4",{id:"-bug-fixes-12"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(banner): storybook date input and simplified gradient opacity ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7674d767bb770342828d6bea6953ce45b823943f"},(0,n.kt)("inlineCode",{parentName:"a"},"7674d76"))),(0,n.kt)("li",{parentName:"ul"},"fix(banner): re-added title class on banner title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d157994934c3da9af4e3dd37844f910bddf8377"},(0,n.kt)("inlineCode",{parentName:"a"},"6d15799")))),(0,n.kt)("h4",{id:"-enhancements-16"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(banner): sync storybook and Volto component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c9087cc8edc3fb27e0b96b509354861ec306f22a"},(0,n.kt)("inlineCode",{parentName:"a"},"c9087cc"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): removed margin from title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/17e592c4f3fd16a78069af50574e2ac608166a0f"},(0,n.kt)("inlineCode",{parentName:"a"},"17e592c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): sync storybook and Volto component #275 from eea/sync-page-banner-theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4331fb4a6d5744e7d7d6a001bca91265a22587fd"},(0,n.kt)("inlineCode",{parentName:"a"},"4331fb4")))),(0,n.kt)("h4",{id:"-documentation-changes-5"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(footer): updates on header elements ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b41c550475dc5a2eefcad5d75439601d079613e2"},(0,n.kt)("inlineCode",{parentName:"a"},"b41c550"))),(0,n.kt)("li",{parentName:"ul"},"docs(footer): add elements anatomy ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d9f0872f93a6f7572f798b2c001d3af00eb282e3"},(0,n.kt)("inlineCode",{parentName:"a"},"d9f0872")))),(0,n.kt)("h4",{id:"\ufe0f-others-15"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"add(banner): banner title css ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d0032474d2b57eb63a4b50a882ced2ee743a48e6"},(0,n.kt)("inlineCode",{parentName:"a"},"d003247"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-alpha.11 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/07e8f858b0bdeaa6a348c0bfc2b785f26017e1ea"},(0,n.kt)("inlineCode",{parentName:"a"},"07e8f85"))),(0,n.kt)("li",{parentName:"ul"},"renamed image elements as requested in review ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8541fb6739d3c935ed8d44a220114546b2aef682"},(0,n.kt)("inlineCode",{parentName:"a"},"8541fb6"))),(0,n.kt)("li",{parentName:"ul"},"remove(banner-gradiant): image gradiant in favour of text ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1b58520490be5e17ea4ce6fc98329d467dad3960"},(0,n.kt)("inlineCode",{parentName:"a"},"1b58520"))),(0,n.kt)("li",{parentName:"ul"},"update(gradient): use 8deg angle ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6fd597d8d7a83fdf8a27939e4c69dfc3975b6a81"},(0,n.kt)("inlineCode",{parentName:"a"},"6fd597d"))),(0,n.kt)("li",{parentName:"ul"},"update(gradiant): make it 0deg ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1bb2696375eef233b509e27d9d464b8343421430"},(0,n.kt)("inlineCode",{parentName:"a"},"1bb2696"))),(0,n.kt)("li",{parentName:"ul"},"remove(comment) referencing old verison of title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4226d42e34b119e057cf4e9878b6a99172cb976a"},(0,n.kt)("inlineCode",{parentName:"a"},"4226d42")))),(0,n.kt)("h3",{id:"100-alpha10---2023-01-13"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.9...1.0.0-alpha.10"},"1.0.0-alpha.10")," - 2023-01-13"),(0,n.kt)("h4",{id:"-bug-fixes-13"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(subsite): Fix logo size on subsite section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/65fff54503a9ace573dc7198f6bedb372e65d211"},(0,n.kt)("inlineCode",{parentName:"a"},"65fff54"))),(0,n.kt)("li",{parentName:"ul"},"fix(subsite): Fix logo size on subsite section #279 from eea/subsite-fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f6cf94811dbebc2081c0ca812570a72dd977b06"},(0,n.kt)("inlineCode",{parentName:"a"},"8f6cf94"))),(0,n.kt)("li",{parentName:"ul"},"fix(mega-menu): show sub grid only if there are children ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ddfbd82aab2be723ae230d703f72a8cd489f17d8"},(0,n.kt)("inlineCode",{parentName:"a"},"ddfbd82")))),(0,n.kt)("h4",{id:"\ufe0f-others-16"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Add variable definitions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/293fe65e2f24e6290e1286229169a77f9be4750e"},(0,n.kt)("inlineCode",{parentName:"a"},"293fe65"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-alpha.10 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7014d080ce114bd0bc039abeecbd7229333b0971"},(0,n.kt)("inlineCode",{parentName:"a"},"7014d08"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using advisory-board-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef58a6f5ad8deea26b1395a86778fe1159b7617b"},(0,n.kt)("inlineCode",{parentName:"a"},"ef58a6f"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/31d461662b9184a7bbe190e86f3c47fab39229fe"},(0,n.kt)("inlineCode",{parentName:"a"},"31d4616")))),(0,n.kt)("h3",{id:"100-alpha9---2022-12-28"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.8...1.0.0-alpha.9"},"1.0.0-alpha.9")," - 2022-12-28"),(0,n.kt)("h4",{id:"-enhancements-17"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(contextnav): Default title is text, custom title is link #273 from eea/context-nav-link-title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef7bdb7c40cd12c3d7e059074aa5797b8cb3378c"},(0,n.kt)("inlineCode",{parentName:"a"},"ef7bdb7")))),(0,n.kt)("h4",{id:"\ufe0f-others-17"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Show document and folder content-type in Navigation listing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8471db3b3d555e8602f1076d0f96a2ba38a12247"},(0,n.kt)("inlineCode",{parentName:"a"},"8471db3"))),(0,n.kt)("li",{parentName:"ul"},"Default title is text, custom title is link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1ae95b05b67423121566448c6b0cededca4b2b1d"},(0,n.kt)("inlineCode",{parentName:"a"},"1ae95b0"))),(0,n.kt)("li",{parentName:"ul"},"Context nav title link to # ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a27a6b78bcda0eb6037f73f1d36b06e00e3ffc52"},(0,n.kt)("inlineCode",{parentName:"a"},"a27a6b7")))),(0,n.kt)("h3",{id:"100-alpha8---2022-12-23"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.7...1.0.0-alpha.8"},"1.0.0-alpha.8")," - 2022-12-23"),(0,n.kt)("h4",{id:"-new-features-11"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(copyright): Align copyright options with Volto integration - refs #158210 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6bac7f6a9ad969af4be1c8c08a18a1144d5bad63"},(0,n.kt)("inlineCode",{parentName:"a"},"6bac7f6")))),(0,n.kt)("h4",{id:"-enhancements-18"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(logo): import theme site logos to the story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2f29136ca457f2419ca25a5292a036b2cd0fc402"},(0,n.kt)("inlineCode",{parentName:"a"},"2f29136"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logo): update logo and mega search gradient ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e11f44d59334fc02e3833a133b20e7b2240a2022"},(0,n.kt)("inlineCode",{parentName:"a"},"e11f44d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logos): convert logo names to lowercase ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/07b822864490b4cc63bef94f3306466ba5933e16"},(0,n.kt)("inlineCode",{parentName:"a"},"07b8228"))),(0,n.kt)("li",{parentName:"ul"},"change(item): use default logic of setting align class on content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6b5b47c10ce5a6d3710bedd492aa3d362d62d225"},(0,n.kt)("inlineCode",{parentName:"a"},"6b5b47c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logo): update logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/170efe5bfc7fd4988f4a4d4aac18ace32c360cd6"},(0,n.kt)("inlineCode",{parentName:"a"},"170efe5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logos): convert storybook logo names to lowercase ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4b24ec8796f8fffd87158a55f4ac19624ebe04c"},(0,n.kt)("inlineCode",{parentName:"a"},"c4b24ec"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logo): add eea roboto font logo variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/de1224a97568c0b48b509c65170a6080d8a058d4"},(0,n.kt)("inlineCode",{parentName:"a"},"de1224a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logo): add container and segment to logo story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/61eff16fcd080194fe1187656d67ef73a7dd4d6c"},(0,n.kt)("inlineCode",{parentName:"a"},"61eff16"))),(0,n.kt)("li",{parentName:"ul"},"change(item): removed requirement for aligned classes to be on content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/30c0d5d2de7ac05172cfb726b60a8bd763de7b31"},(0,n.kt)("inlineCode",{parentName:"a"},"30c0d5d"))),(0,n.kt)("li",{parentName:"ul"},"change(logos): cleanup eea logo reference to only eea-logo and eea-logo-white.svg ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2796e054a21a9025036c8b2882afe23a6984cd37"},(0,n.kt)("inlineCode",{parentName:"a"},"2796e05")))),(0,n.kt)("h4",{id:"-internal-changes-7"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(npmignore): Reduce npmjs package size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/164c8a5ad0f7241eb8e30c53eccfdff9cec1fb93"},(0,n.kt)("inlineCode",{parentName:"a"},"164c8a5"))),(0,n.kt)("li",{parentName:"ul"},"chore(npmignore): Reduce npmjs package size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ade9d5ba3411efc47cdd3b461fd60b2b7389f9be"},(0,n.kt)("inlineCode",{parentName:"a"},"ade9d5b"))),(0,n.kt)("li",{parentName:"ul"},"chore(docs): renamed logo mdx to md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/52e9d46bb2decabdc935eeee84dacc3e063e3616"},(0,n.kt)("inlineCode",{parentName:"a"},"52e9d46")))),(0,n.kt)("h4",{id:"-documentation-changes-6"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(logos): svgs without classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/28a58336ac57deb3eec7287b6fbf5cd58ada8a7e"},(0,n.kt)("inlineCode",{parentName:"a"},"28a5833"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): add dark mode logos ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ccc1609643cff5f851942ab95198d44252ddb22e"},(0,n.kt)("inlineCode",{parentName:"a"},"ccc1609"))),(0,n.kt)("li",{parentName:"ul"},"docs(logo): update eea logos and add logo wrapper ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91cdd6636dfb102e4712177ad5fa7e952eb6ea45"},(0,n.kt)("inlineCode",{parentName:"a"},"91cdd66"))),(0,n.kt)("li",{parentName:"ul"},"docs(logo): update logos on docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/760e1012892ab28b25e8d9b0de50cfa0ba07addf"},(0,n.kt)("inlineCode",{parentName:"a"},"760e101"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): updated svgs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dc224e1dbcf46a29b0639afde694d44221affe27"},(0,n.kt)("inlineCode",{parentName:"a"},"dc224e1"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): add thematic logos ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5a21a3076e506e6bd7f82fa97697f81825e87255"},(0,n.kt)("inlineCode",{parentName:"a"},"5a21a30"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): add zipped svgs for download ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5855bf83b471a9849ee71370d7eee4f6a1d12a44"},(0,n.kt)("inlineCode",{parentName:"a"},"5855bf8"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): wisef logo update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f90b59d03c1c4eaa760dd981e082f237c09e96f"},(0,n.kt)("inlineCode",{parentName:"a"},"8f90b59"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): move to static, add download ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8c1fd5f9a64bd8fb976687fe5ed96bc515b95393"},(0,n.kt)("inlineCode",{parentName:"a"},"8c1fd5f"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): improve eea logo visibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/82188abb99aa080d7bea15975497e03c653d311c"},(0,n.kt)("inlineCode",{parentName:"a"},"82188ab"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): change eea logo to svg ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f57b846ca9d635f5af4d1adeee280a5adcaf7b5f"},(0,n.kt)("inlineCode",{parentName:"a"},"f57b846")))),(0,n.kt)("h4",{id:"\ufe0f-others-18"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"logo update or docusaurus thematic logo listing #274 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dde90beb68ac129e476ece22e7ced4640786f094"},(0,n.kt)("inlineCode",{parentName:"a"},"dde90be"))),(0,n.kt)("li",{parentName:"ul"},"(feat): Add ability to disable the language select from website top menu - refs #158616 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/411c8e4afaf0b2b9edfdeeecdca22aa4cc41f329"},(0,n.kt)("inlineCode",{parentName:"a"},"411c8e4"))),(0,n.kt)("li",{parentName:"ul"},"Proof reading page header section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/230239e1b22734fb8606656985bc5e513731e244"},(0,n.kt)("inlineCode",{parentName:"a"},"230239e"))),(0,n.kt)("li",{parentName:"ul"},"bump package version ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4628bed134abc76e38a243d4e98143e19cef989"},(0,n.kt)("inlineCode",{parentName:"a"},"b4628be"))),(0,n.kt)("li",{parentName:"ul"},"feature(docusaurus, storybook): logos selection for sites plus inverted options #253 from eea/doc-logo-page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dbfc90d035dc40e9d4054347f00fde4de486d63d"},(0,n.kt)("inlineCode",{parentName:"a"},"dbfc90d"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using advisory-board-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4769e987d525f5dcafac8e6cf8a89fd8111667d"},(0,n.kt)("inlineCode",{parentName:"a"},"c4769e9"))),(0,n.kt)("li",{parentName:"ul"},"test(Jenkins): Run tests and cypress with latest canary @plone/volto ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/92feea09796c9ef0530f65fa1d34139905133215"},(0,n.kt)("inlineCode",{parentName:"a"},"92feea0")))),(0,n.kt)("h3",{id:"100-alpha7---2022-12-16"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.6...1.0.0-alpha.7"},"1.0.0-alpha.7")," - 2022-12-16"),(0,n.kt)("h4",{id:"-new-features-12"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(item): normalized size for image or icon items #258 from eea/refactor-items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/945170f1503be68aa3fc1bd950a97eeebfd81037"},(0,n.kt)("inlineCode",{parentName:"a"},"945170f")))),(0,n.kt)("h4",{id:"-bug-fixes-14"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(card): rounded after removal of has--rounded--true style class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4727afdecf3d25e3e5bc98d472b976d60154183"},(0,n.kt)("inlineCode",{parentName:"a"},"d4727af"))),(0,n.kt)("li",{parentName:"ul"},"fix(item): removed margin set for description which pushed the text from icon ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d9d40310fcfb1bd214bd901b79dcbac41e9a8518"},(0,n.kt)("inlineCode",{parentName:"a"},"d9d4031"))),(0,n.kt)("li",{parentName:"ul"},"fix(project): Proper paths if volto-eea-design-system package is not installed, but in development #270 from eea/correct_paths ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0f8ee8d770f1b26d4315be8f615d58a61acbafc8"},(0,n.kt)("inlineCode",{parentName:"a"},"0f8ee8d")))),(0,n.kt)("h4",{id:"-enhancements-19"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(item): update icon variations and paddings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6a407b3e7f743eb7b73247bcc5d489685d567bc6"},(0,n.kt)("inlineCode",{parentName:"a"},"6a407b3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): update spacing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2fd91c4aa1a76dd2f7099d3f24f94067e95e06a1"},(0,n.kt)("inlineCode",{parentName:"a"},"2fd91c4"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): initial values for new sizes & add description class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3546296f0cacb96411c8c67b98e9763e2b843b05"},(0,n.kt)("inlineCode",{parentName:"a"},"3546296"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): add icon and more size options ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1120bb62d9ab908c5c97a4871a66e3c08c5c7ece"},(0,n.kt)("inlineCode",{parentName:"a"},"1120bb6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): update image and icon sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8025735121aaa0024a5783afbde0f6be3715618"},(0,n.kt)("inlineCode",{parentName:"a"},"b802573"))),(0,n.kt)("li",{parentName:"ul"},"change(item): set same height as width on item images ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/69cbd23ca53dd68ae9f7c00a69ed2d8820746305"},(0,n.kt)("inlineCode",{parentName:"a"},"69cbd23"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): update item part 2 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9812ae2e41ac86cfd4c56e13af8af570b752966f"},(0,n.kt)("inlineCode",{parentName:"a"},"9812ae2"))),(0,n.kt)("li",{parentName:"ul"},"change(item): rename large to big class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24ff1275b9a0556b85ab86757bc0c84f50357e7d"},(0,n.kt)("inlineCode",{parentName:"a"},"24ff127"))),(0,n.kt)("li",{parentName:"ul"},"change(item): added tiny size that outputs 24px icon sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ea96363a957f9033cb5bfe2d7fd311e92377493"},(0,n.kt)("inlineCode",{parentName:"a"},"2ea9636"))),(0,n.kt)("li",{parentName:"ul"},"change(image): added preview image size default to 400px ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a0aa867e932d1b3c0bf449553726d6feb645853e"},(0,n.kt)("inlineCode",{parentName:"a"},"a0aa867"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): update operator for condition controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/149ccb2f1e498c27e5550214cdee25eb808ab27e"},(0,n.kt)("inlineCode",{parentName:"a"},"149ccb2")))),(0,n.kt)("h4",{id:"\ufe0f-others-19"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Proper paths if the package is not installed, but in development ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7a2655f7cf9d3c687f172eefcf2b4cff4b12f832"},(0,n.kt)("inlineCode",{parentName:"a"},"7a2655f"))),(0,n.kt)("li",{parentName:"ul"},"Update .project.eslintrc.js ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a2fd3f23473325976c2b146e066eeb538d140dce"},(0,n.kt)("inlineCode",{parentName:"a"},"a2fd3f2"))),(0,n.kt)("li",{parentName:"ul"},"added back descriptionDistance variable until package release ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3af811a8d86a132e16de118697ba5a4302a8a4da"},(0,n.kt)("inlineCode",{parentName:"a"},"3af811a"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-alpha.7 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e66bcc296b389bc55073e7f99681534977dce3a"},(0,n.kt)("inlineCode",{parentName:"a"},"7e66bcc"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using cca-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce47e9b163bcb4eda988e3a87718b54ffbd3f99f"},(0,n.kt)("inlineCode",{parentName:"a"},"ce47e9b"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb531c933c907bdbb88c9de0f1df2eb7ce899a4c"},(0,n.kt)("inlineCode",{parentName:"a"},"cb531c9")))),(0,n.kt)("h3",{id:"100-alpha6---2022-12-07"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.5...1.0.0-alpha.6"},"1.0.0-alpha.6")," - 2022-12-07"),(0,n.kt)("h4",{id:"-new-features-13"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(copyright): create copyright component and import it in banner ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8fcde9df2915585e2336024436cef76642820d75"},(0,n.kt)("inlineCode",{parentName:"a"},"8fcde9d"))),(0,n.kt)("li",{parentName:"ul"},"feat(Header): add hideSearch prop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/13ddfe59a6bd7fe2050b70ac4524a6f6c5c169ea"},(0,n.kt)("inlineCode",{parentName:"a"},"13ddfe5"))),(0,n.kt)("li",{parentName:"ul"},"feat(Docusaurus): Image copyright information #257 from eea/image-copyright-info ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/21195153240da052acb7171f7904449ed7854cb3"},(0,n.kt)("inlineCode",{parentName:"a"},"2119515")))),(0,n.kt)("h4",{id:"-bug-fixes-15"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(tags): content gap when using tags-content wrapper ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4eb9b89d4ea09f936b7fcdc22a84105fd8639af"},(0,n.kt)("inlineCode",{parentName:"a"},"c4eb9b8")))),(0,n.kt)("h4",{id:"-enhancements-20"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(hero): add copyright component to hero ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0fa88fad3e7b48789dc6d0462b9f78dd359b8949"},(0,n.kt)("inlineCode",{parentName:"a"},"0fa88fa"))),(0,n.kt)("li",{parentName:"ul"},"change(copyright): implementation to add classes on content sections ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e10bde674f2b1f722ec6c70734e4a72c018f4afe"},(0,n.kt)("inlineCode",{parentName:"a"},"e10bde6"))),(0,n.kt)("li",{parentName:"ul"},"change(copyright): removed color variant ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/747b8a27155569247d4975837587e3320327fce9"},(0,n.kt)("inlineCode",{parentName:"a"},"747b8a2"))),(0,n.kt)("li",{parentName:"ul"},"change(copyright): removed copyrightVariant from Banner and Hero stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac62e079d4eafb818f9cae25880a04d9e069d107"},(0,n.kt)("inlineCode",{parentName:"a"},"ac62e07"))),(0,n.kt)("li",{parentName:"ul"},"change(tagList): modified implementation to align to volto-tags-block ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7a57a3d4bf7ede4b5ab5f3ef045d664aaaf67f2c"},(0,n.kt)("inlineCode",{parentName:"a"},"7a57a3d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(copyright): remove data section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/52cb09dc363bb0a2e363ec86dcefb4c57e07a14d"},(0,n.kt)("inlineCode",{parentName:"a"},"52cb09d"))),(0,n.kt)("li",{parentName:"ul"},"change(copyright): line height to match page header implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a56254e7588cfc6aca999f550084d79dca6e9a6c"},(0,n.kt)("inlineCode",{parentName:"a"},"a56254e"))),(0,n.kt)("li",{parentName:"ul"},"change(copyright): now uses text color css variable with fallback to white ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee7268ba359f079dfce45fd0fe91f75ae5c37e94"},(0,n.kt)("inlineCode",{parentName:"a"},"ee7268b")))),(0,n.kt)("h4",{id:"-documentation-changes-7"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(copyright): copyright documentation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a90ed766e60b5eb5b027beb36d2b1967d2c41fa3"},(0,n.kt)("inlineCode",{parentName:"a"},"a90ed76")))),(0,n.kt)("h4",{id:"\ufe0f-others-20"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Update usage_markdown.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f76d4a242f795451d64ef2d192d0006a0ed5eac1"},(0,n.kt)("inlineCode",{parentName:"a"},"f76d4a2"))),(0,n.kt)("li",{parentName:"ul"},"grammar fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb2a5a5fd9dfc01eccc179721b06988742f5b2e2"},(0,n.kt)("inlineCode",{parentName:"a"},"cb2a5a5"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-alpha.6 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6ca32f03c1860781d3c1c4ff9558713ad8acac95"},(0,n.kt)("inlineCode",{parentName:"a"},"6ca32f0"))),(0,n.kt)("li",{parentName:"ul"},"feature(copyright): image information #250 from eea/feature-copyright ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a8618c7f0230a19b6c973aa2c9646463de9eeffb"},(0,n.kt)("inlineCode",{parentName:"a"},"a8618c7"))),(0,n.kt)("li",{parentName:"ul"},"lint fix by introducing local variable tagsGap ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7b6c0ae2ebfed06221700faf9a0d0c2bdeb60d99"},(0,n.kt)("inlineCode",{parentName:"a"},"7b6c0ae"))),(0,n.kt)("li",{parentName:"ul"},"Update 3-images.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1b0ef033f9c8a36aaa739f268263f24a6d0fb473"},(0,n.kt)("inlineCode",{parentName:"a"},"1b0ef03")))),(0,n.kt)("h3",{id:"100-alpha5---2022-11-29"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.4...1.0.0-alpha.5"},"1.0.0-alpha.5")," - 2022-11-29"),(0,n.kt)("h4",{id:"-new-features-14"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(Iconography): import and showcase remix icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/777112f7e77ce8c74c3fd4384bff6ec9694aba04"},(0,n.kt)("inlineCode",{parentName:"a"},"777112f")))),(0,n.kt)("h4",{id:"-bug-fixes-16"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(docusaurus): right bar overflow fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/197c763624f70556c62379bc0751763725d0fed3"},(0,n.kt)("inlineCode",{parentName:"a"},"197c763"))),(0,n.kt)("li",{parentName:"ul"},"fix(lists): bullet position by using padding instead of margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0ecae2e7fe61b98d8795f876a525fbbc873bf799"},(0,n.kt)("inlineCode",{parentName:"a"},"0ecae2e"))),(0,n.kt)("li",{parentName:"ul"},"fix(label): color for yellow variant as white isn't accessible on yellow color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91d8880a829d2728c49a1953f6d2d8c2c812990c"},(0,n.kt)("inlineCode",{parentName:"a"},"91d8880"))),(0,n.kt)("li",{parentName:"ul"},"fix(contentBox): avoid text decoration for header-link added on cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ccb592db6f465cec59124b94fb6918b513bb761"},(0,n.kt)("inlineCode",{parentName:"a"},"3ccb592"))),(0,n.kt)("li",{parentName:"ul"},"fix(label): margin value for ribbon image left and right margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f8e1129734709d6034539a6522105af9d43fef20"},(0,n.kt)("inlineCode",{parentName:"a"},"f8e1129")))),(0,n.kt)("h4",{id:"-enhancements-21"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): eea color palette in separate file ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6c855df9c2238f8d21860ade4578aa969b68448e"},(0,n.kt)("inlineCode",{parentName:"a"},"6c855df"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): classes for color boxes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/80219d52bc63842d8e6382dbbe7d43cdc8a29b9c"},(0,n.kt)("inlineCode",{parentName:"a"},"80219d5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): move supplementary, state and link colors to partials ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2776be32615d7a6bdd8561a523fb9cfb1a85e38b"},(0,n.kt)("inlineCode",{parentName:"a"},"2776be3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): fix side menu / moved more content in palette partial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f5b70775471369ca8f3193784b9bc66caa8fb76f"},(0,n.kt)("inlineCode",{parentName:"a"},"f5b7077"))),(0,n.kt)("li",{parentName:"ul"},"change(tag): set gap on tags element for margin between tag elements ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/726bc6da821a366a5afa03659e614cc73ed02c0b"},(0,n.kt)("inlineCode",{parentName:"a"},"726bc6d")))),(0,n.kt)("h4",{id:"-internal-changes-8"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(colours): fix wrong class name ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51ad0a8232f7f35cae05f5861d7822db852b3f8d"},(0,n.kt)("inlineCode",{parentName:"a"},"51ad0a8")))),(0,n.kt)("h4",{id:"-documentation-changes-8"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): Iconography updates, thematic platforms ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2a0e596bd002290e0759d8c5e568da4d318f7d59"},(0,n.kt)("inlineCode",{parentName:"a"},"2a0e596"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): thematic pages integration ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea7a4220a93d3fd2f437b51462f7f19d99f52595"},(0,n.kt)("inlineCode",{parentName:"a"},"ea7a422"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): color updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cc13b5499a9ae13bb45925a057f8ff4d6a2e4643"},(0,n.kt)("inlineCode",{parentName:"a"},"cc13b54"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): fix swatches accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/306cb74d3e06390a9c15da9b8b29c9d3c8f0f6c5"},(0,n.kt)("inlineCode",{parentName:"a"},"306cb74"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): typography and colors fixes according to comments on PR ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ae20a7258cc88465fa0937895c2999952736f456"},(0,n.kt)("inlineCode",{parentName:"a"},"ae20a72"))),(0,n.kt)("li",{parentName:"ul"},"docs(colours): adjust logos heights ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/854d4fb761be7307e83e5dd2eb0fe5a0117727c5"},(0,n.kt)("inlineCode",{parentName:"a"},"854d4fb"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): merge designer and dev units ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/65c240eddbf20b3fc870d301b96837f49ad9caca"},(0,n.kt)("inlineCode",{parentName:"a"},"65c240e"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): readded extra font sizes, fixed fluid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4a5d892538a9713d14ac718b1bf2c771be09810"},(0,n.kt)("inlineCode",{parentName:"a"},"a4a5d89"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): changed em to percentages ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4176007ff4b421bc988b618488e0ba6b550f9fe"},(0,n.kt)("inlineCode",{parentName:"a"},"d417600"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): minors updates and instructions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/84ac8828e430b4af2b461534b4e2f81189080145"},(0,n.kt)("inlineCode",{parentName:"a"},"84ac882"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): blue-grey-6 adjustment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e7ab2d15d3a617bc5b3713897f3e3521d9e2720a"},(0,n.kt)("inlineCode",{parentName:"a"},"e7ab2d1"))),(0,n.kt)("li",{parentName:"ul"},"docs(colours): added active colour ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/574f7a95ea8a9510d03a104ad72fafafcae5d738"},(0,n.kt)("inlineCode",{parentName:"a"},"574f7a9"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): switch FISE logo to png ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/335471fd95bbd78cd7bd80b960272baa0a32e1c5"},(0,n.kt)("inlineCode",{parentName:"a"},"335471f"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): updated visited ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0248fd164cbf85168945797244977c305c67608d"},(0,n.kt)("inlineCode",{parentName:"a"},"0248fd1"))),(0,n.kt)("li",{parentName:"ul"},"docs(FISE): replaced logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f7d833127f769d79f099618b98789c6929b4ba08"},(0,n.kt)("inlineCode",{parentName:"a"},"f7d8331")))),(0,n.kt)("h4",{id:"\ufe0f-others-21"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"perf(docusaurus): added remixicon and roboto locally ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b67b1a72bc9cdc7c62a25967e81b430f8b62d558"},(0,n.kt)("inlineCode",{parentName:"a"},"b67b1a7"))),(0,n.kt)("li",{parentName:"ul"},"feature(Docusaurus): Updates on color palette information including thematic websites #231 from eea/refactor-docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ec7843dea07f626dc1c71ae1baa8bb5b0caa52f3"},(0,n.kt)("inlineCode",{parentName:"a"},"ec7843d"))),(0,n.kt)("li",{parentName:"ul"},"Upgrade Jenkinsfile storybook to yarn 3 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d20de8d6e21a14660b7b5125a80218a8a6f19e62"},(0,n.kt)("inlineCode",{parentName:"a"},"d20de8d"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/563fbc5fac0d4b0295690d0a3a4e04271753f18a"},(0,n.kt)("inlineCode",{parentName:"a"},"563fbc5")))),(0,n.kt)("h3",{id:"100-alpha4---2022-11-22"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.3...1.0.0-alpha.4"},"1.0.0-alpha.4")," - 2022-11-22"),(0,n.kt)("h4",{id:"-bug-fixes-17"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(cards-storybook): load slick carousel css for arrow and pagination styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1159b1beea0d7f7e026f1f1181fea91b7ac38ffa"},(0,n.kt)("inlineCode",{parentName:"a"},"1159b1b")))),(0,n.kt)("h4",{id:"-enhancements-22"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(cards): refactor cards theming implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4e454238d540ef306f4c1a4f8e9a94c7aa10189"},(0,n.kt)("inlineCode",{parentName:"a"},"d4e4542"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): allow rounded, inverted and theme parameter to be set by has classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4b4ad893fc5d39629b4e8d874327f31ea2e7d885"},(0,n.kt)("inlineCode",{parentName:"a"},"4b4ad89"))),(0,n.kt)("li",{parentName:"ul"},"change(card): expect has classes on the card directly ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6a9e38bcae0656685a99b47800d556813663d2ee"},(0,n.kt)("inlineCode",{parentName:"a"},"6a9e38b"))),(0,n.kt)("li",{parentName:"ul"},"change(utilities): added has text classes to the text alignment utilities ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e6974c634551fe0d19a9c9da269f5c6fbaefab7a"},(0,n.kt)("inlineCode",{parentName:"a"},"e6974c6"))),(0,n.kt)("li",{parentName:"ul"},"change(utilities): modified class name for text align using has naming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/579a0cbe0f704eb9305119fdd162f4f29c8086d5"},(0,n.kt)("inlineCode",{parentName:"a"},"579a0cb"))),(0,n.kt)("li",{parentName:"ul"},"change(theme): ensure that only direct children of container have a default top and bottom margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7f8b8dcc72827004d366e1c531311cf8734053fc"},(0,n.kt)("inlineCode",{parentName:"a"},"7f8b8dc"))),(0,n.kt)("li",{parentName:"ul"},"change(build): upgrade action to trigger workflow and wait to latest version ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c63ad3fdae7972bb2c722dea3d046861fa0ac086"},(0,n.kt)("inlineCode",{parentName:"a"},"c63ad3f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): theming implementation to allow has theming classes #265 from eea/card-refactoring ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24edc99d85c0c619fc763a8774a96f7208f529a5"},(0,n.kt)("inlineCode",{parentName:"a"},"24edc99"))),(0,n.kt)("li",{parentName:"ul"},"change(theme): add slick-carousel dependency ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2eec7d7233adf86b9c4f61670eb87d9754ff94c"},(0,n.kt)("inlineCode",{parentName:"a"},"f2eec7d")))),(0,n.kt)("h4",{id:"\ufe0f-others-22"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Update eea.github.io on all commits in develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3d0b8d745138bd2e0219560c8c895ce2c56dbf04"},(0,n.kt)("inlineCode",{parentName:"a"},"3d0b8d7"))),(0,n.kt)("li",{parentName:"ul"},"Exclude mockups from npm package ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/634af8e3ddabec36a18597d8d7638888269875fc"},(0,n.kt)("inlineCode",{parentName:"a"},"634af8e"))),(0,n.kt)("li",{parentName:"ul"},"fix rounded selector ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1fa15442f03d3f3d9ef59afa14075b061483cf3a"},(0,n.kt)("inlineCode",{parentName:"a"},"1fa1544"))),(0,n.kt)("li",{parentName:"ul"},"Trigger re-build ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3566dd2b4d2cd12496e05b792c85a78de550dd50"},(0,n.kt)("inlineCode",{parentName:"a"},"3566dd2"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea47f6f10097f23f635d98f0c5483bebf8378fc4"},(0,n.kt)("inlineCode",{parentName:"a"},"ea47f6f")))),(0,n.kt)("h3",{id:"100-alpha3---2022-11-16"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.2...1.0.0-alpha.3"},"1.0.0-alpha.3")," - 2022-11-16"),(0,n.kt)("h4",{id:"-new-features-15"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(Header): Add subsite section styling #263 from eea/subsite ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/00398b8a6c5d83241c30d0ba85d95c115edf2480"},(0,n.kt)("inlineCode",{parentName:"a"},"00398b8")))),(0,n.kt)("h4",{id:"-bug-fixes-18"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(search): position now changed by default to absolute from relative ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51b08fc217e25c1391a2bac0b42a8c3f7ae091c7"},(0,n.kt)("inlineCode",{parentName:"a"},"51b08fc"))),(0,n.kt)("li",{parentName:"ul"},"fix(megaMenu): remove paddings for buttons added by active class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ec33ebfe23a6064c88383ab465bd45edee2dba9b"},(0,n.kt)("inlineCode",{parentName:"a"},"ec33ebf")))),(0,n.kt)("h4",{id:"-enhancements-23"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(components): load overrides files for our defined semantic files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/adde7a9519f38fa779d8d038f3b6817281f0b4a2"},(0,n.kt)("inlineCode",{parentName:"a"},"adde7a9"))),(0,n.kt)("li",{parentName:"ul"},"change(container): fullwidth now take into account devices without hover ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5a35a65ce4928972027325bd01265db3f046f0e8"},(0,n.kt)("inlineCode",{parentName:"a"},"5a35a65"))),(0,n.kt)("li",{parentName:"ul"},"change(container): ensure only the top level elements behave like containers ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/98b85d1fb285919a8851454fa3007131b2a0ffc3"},(0,n.kt)("inlineCode",{parentName:"a"},"98b85d1"))),(0,n.kt)("li",{parentName:"ul"},"change(container): modified column-block grid to remove margin and padding when using full width class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/35c1cee7b3b35e7c361562ab7a430240f0117cc3"},(0,n.kt)("inlineCode",{parentName:"a"},"35c1cee"))),(0,n.kt)("li",{parentName:"ul"},"change(mega-menu): hide home link and accordion content from mobile menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1a691729b6d61c0daf46c5de035c1c55b0fda0d9"},(0,n.kt)("inlineCode",{parentName:"a"},"1a69172"))),(0,n.kt)("li",{parentName:"ul"},"change(container): width from min width 1280px to 1365px max width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/66e551e532da2cc5e9716e5179f943f172663be4"},(0,n.kt)("inlineCode",{parentName:"a"},"66e551e"))),(0,n.kt)("li",{parentName:"ul"},"change(container): removed app extras and view setting of layout sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6dc1ee602634df85140f6db75e41293b72eacf1"},(0,n.kt)("inlineCode",{parentName:"a"},"f6dc1ee"))),(0,n.kt)("li",{parentName:"ul"},"change(views): customized DefaultView to pass class into page-document area ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91123aad429f4bb086110b4997e43e9809a97581"},(0,n.kt)("inlineCode",{parentName:"a"},"91123aa"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): desktop - use buttons for menu section titles and readjust content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb9315f2b999193b7b64cec27c49fc8dda306899"},(0,n.kt)("inlineCode",{parentName:"a"},"cb9315f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): add nav_title and nav_description attributes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0d7a5686daab2ecec87d78728437d8f994606448"},(0,n.kt)("inlineCode",{parentName:"a"},"0d7a568"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): style sub-title and nav-description ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b2a48fd3588ffdc75f61f0b8d52284d13edf2d92"},(0,n.kt)("inlineCode",{parentName:"a"},"b2a48fd"))),(0,n.kt)("li",{parentName:"ul"},"refactor(sidemenu): add third level list and items & update active indication ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2d87da9fddca2b867f3d065a007c0b921587a61"},(0,n.kt)("inlineCode",{parentName:"a"},"e2d87da"))),(0,n.kt)("li",{parentName:"ul"},"change(columns): implement narrow, container and wide width classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9696b5457e50ba3186406a584da16f5248c14439"},(0,n.kt)("inlineCode",{parentName:"a"},"9696b54"))),(0,n.kt)("li",{parentName:"ul"},"change(container): story to add classes that modify the max width of the containers ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/37948f89ee797738bd8bbb0023bc5dca018d7331"},(0,n.kt)("inlineCode",{parentName:"a"},"37948f8"))),(0,n.kt)("li",{parentName:"ul"},"change(container): affect only left and right margin of containers ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/183265b7dd8d20359b6c3956ea05b62df6e70f75"},(0,n.kt)("inlineCode",{parentName:"a"},"183265b"))),(0,n.kt)("li",{parentName:"ul"},"change(containers): modified class names after layout checks ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1dc3689509001031f0afd30422f517de5316e47a"},(0,n.kt)("inlineCode",{parentName:"a"},"1dc3689"))),(0,n.kt)("li",{parentName:"ul"},"refactor(sidemenu): add is_in_path and is_current attributes for an active example ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a3fe7fd8da93db0a065d4408ce154c9d8c26b568"},(0,n.kt)("inlineCode",{parentName:"a"},"a3fe7fd"))),(0,n.kt)("li",{parentName:"ul"},"change(container): story to avoid adding containerwidth property to container div ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c13d83cdbc8741bf4075cdfcd884f39f3f71d73c"},(0,n.kt)("inlineCode",{parentName:"a"},"c13d83c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): mobile - use buttons for menu section titles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7b632fd29a8ac815d2e590509baa51f1279e659"},(0,n.kt)("inlineCode",{parentName:"a"},"a7b632f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): update padding variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5f25838ba9ec367a58c98c929921ebf09cd8ad8"},(0,n.kt)("inlineCode",{parentName:"a"},"c5f2583"))),(0,n.kt)("li",{parentName:"ul"},"change(views): moved narrow style bellow the default container width styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/72fa58dce9ea03a1e4f409a9f9aab21b01efbfc8"},(0,n.kt)("inlineCode",{parentName:"a"},"72fa58d"))),(0,n.kt)("li",{parentName:"ul"},"change(listing): removed container from default view page-document area ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/69f3d8f422e3cb95e89937929aaef48b5569bcdf"},(0,n.kt)("inlineCode",{parentName:"a"},"69f3d8f"))),(0,n.kt)("li",{parentName:"ul"},"change(views): rename classes names to width_view and added app extras layout component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/745b7720839754d1e248795cb1263f8c02f5f3c2"},(0,n.kt)("inlineCode",{parentName:"a"},"745b772"))),(0,n.kt)("li",{parentName:"ul"},"change(container): use important flag for left and right margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a49c83abe9a045d28118a680558de5416a0516a3"},(0,n.kt)("inlineCode",{parentName:"a"},"a49c83a"))),(0,n.kt)("li",{parentName:"ul"},"change(container): add variables for edit and add section of containers ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2e2c335dc82c120d15d4c536c400ae742f68fe7"},(0,n.kt)("inlineCode",{parentName:"a"},"f2e2c33"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): update sub-title paddings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/992f919bb5155c8e6fc169e43adf00dcae41f400"},(0,n.kt)("inlineCode",{parentName:"a"},"992f919"))),(0,n.kt)("li",{parentName:"ul"},"change(site): add a 1rem margin top and bottom on all styled classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dabf6c1162fe23cef61a2053eefd7e687f649a56"},(0,n.kt)("inlineCode",{parentName:"a"},"dabf6c1"))),(0,n.kt)("li",{parentName:"ul"},"change(homepage): removed hiding of staging banner from homepage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ba2cd7fc17cdf1bf58381aa58e05acad0ac77ba"},(0,n.kt)("inlineCode",{parentName:"a"},"4ba2cd7"))),(0,n.kt)("li",{parentName:"ul"},"change(container): unset values of page-document on 1200+ browser width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dd5bea37d414e2a8689eaf6cc99c7b3a3d4b0e08"},(0,n.kt)("inlineCode",{parentName:"a"},"dd5bea3"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): set children to be appended to the right of the menu title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b69c23a20ef2ded1f0382650ff8e85d1bead6941"},(0,n.kt)("inlineCode",{parentName:"a"},"b69c23a"))),(0,n.kt)("li",{parentName:"ul"},"change(theme): modified wide width to point to 1320px as it's perfectly divisible by 4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f825737d6dafd595024bb4537eab624a47a9ad0"},(0,n.kt)("inlineCode",{parentName:"a"},"8f82573"))),(0,n.kt)("li",{parentName:"ul"},"change(theme): modified wide width to point to 1368px as it's perfectly divisible by 4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2349fee36ee72783665a0b101d684389f1fdf834"},(0,n.kt)("inlineCode",{parentName:"a"},"2349fee"))),(0,n.kt)("li",{parentName:"ul"},"change(container): renamed content-text-width to container-text-width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6f788c282348292dd4b5deb47ffe83ca4573e5c8"},(0,n.kt)("inlineCode",{parentName:"a"},"6f788c2"))),(0,n.kt)("li",{parentName:"ul"},"change(listing): provide ui container fallback if no class is passed to default view ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af9e94ded1e301f4c811749badbcc1f59e6d0de5"},(0,n.kt)("inlineCode",{parentName:"a"},"af9e94d"))),(0,n.kt)("li",{parentName:"ul"},"change(narrow-view): re-added container class to page-document ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/56b44a6e09d45f96c106dc471bb2e1cde58ef10f"},(0,n.kt)("inlineCode",{parentName:"a"},"56b44a6"))),(0,n.kt)("li",{parentName:"ul"},"change(view): set container width for view-viewview class as well ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/29dc324319d6dc2450dd0e906c1b4c93fd65ed56"},(0,n.kt)("inlineCode",{parentName:"a"},"29dc324")))),(0,n.kt)("h4",{id:"-internal-changes-9"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style: load header/footer overrides ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e5b5e0fc00c61d81f45c12f119bd2f06a91b1b5c"},(0,n.kt)("inlineCode",{parentName:"a"},"e5b5e0f"))),(0,n.kt)("li",{parentName:"ul"},"style(megaMenu): restore item description color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8a19bbb4866cdeb31d87b782587c499e621055b7"},(0,n.kt)("inlineCode",{parentName:"a"},"8a19bbb"))),(0,n.kt)("li",{parentName:"ul"},"style(megaMenu): restore accordion content bottom padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8e0c5a79f06247d353511b412b0122c6f614f5ec"},(0,n.kt)("inlineCode",{parentName:"a"},"8e0c5a7")))),(0,n.kt)("h4",{id:"\ufe0f-others-23"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Add subsite styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e79c0ed7931d6287dbeb3bab1e9155b8707481a3"},(0,n.kt)("inlineCode",{parentName:"a"},"e79c0ed"))),(0,n.kt)("li",{parentName:"ul"},"WIP settings column grid width when using full size class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/affc7ac99527aa92d5a192d90dc8c9ec46a66404"},(0,n.kt)("inlineCode",{parentName:"a"},"affc7ac"))),(0,n.kt)("li",{parentName:"ul"},"code cleanup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2cdc3e590b6d36865f16890c45ce56d32963e1d0"},(0,n.kt)("inlineCode",{parentName:"a"},"2cdc3e5"))),(0,n.kt)("li",{parentName:"ul"},"fix eslint ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/30c52e4eb443555ca44c1b35df064e73d52c0a8b"},(0,n.kt)("inlineCode",{parentName:"a"},"30c52e4"))),(0,n.kt)("li",{parentName:"ul"},"test(estlint): Fix .project.eslintrc.js ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aaeaa07b27491551daba29bbfdd7cab4a54b6bec"},(0,n.kt)("inlineCode",{parentName:"a"},"aaeaa07"))),(0,n.kt)("li",{parentName:"ul"},"modified left value of full width classes with toolbars ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70d82d47fbc2c00a3a709de0d5c087c8443a1eae"},(0,n.kt)("inlineCode",{parentName:"a"},"70d82d4"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-alpha.3 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8fc86a7d0bf4ad06ab339b3066ff56ea61d48878"},(0,n.kt)("inlineCode",{parentName:"a"},"8fc86a7"))),(0,n.kt)("li",{parentName:"ul"},"feature(content): added NarrowView useful for modifying the containers from content-area ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d937df7c262e8d8cc6e78eebec736e28263fc657"},(0,n.kt)("inlineCode",{parentName:"a"},"d937df7"))),(0,n.kt)("li",{parentName:"ul"},"jslint fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/98461593605344d0b6d8cba81f91d1cafc2653cd"},(0,n.kt)("inlineCode",{parentName:"a"},"9846159"))),(0,n.kt)("li",{parentName:"ul"},"Feature(container): flexible container size #260 from eea/feature-flexible-container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f84c5b67afe9cbe01b2a44a8f92a9a554e1036a"},(0,n.kt)("inlineCode",{parentName:"a"},"8f84c5b"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using circularity-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/76a41c786995fd54afe4d1c345de939f683ffa70"},(0,n.kt)("inlineCode",{parentName:"a"},"76a41c7"))),(0,n.kt)("li",{parentName:"ul"},"fix broken variable call for contentBox.variables introduced in previous commit by mistake ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d249c1160d19bedb174a2fde3fdab48d9ce297d4"},(0,n.kt)("inlineCode",{parentName:"a"},"d249c11"))),(0,n.kt)("li",{parentName:"ul"},"clean up ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/89f3cb33d70a14806a953f0acd1807e94169ee5c"},(0,n.kt)("inlineCode",{parentName:"a"},"89f3cb3"))),(0,n.kt)("li",{parentName:"ul"},"removed console log from code ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fad86ae581dd81d0c29fc03d8528e57cadadd3fb"},(0,n.kt)("inlineCode",{parentName:"a"},"fad86ae")))),(0,n.kt)("h3",{id:"100-alpha2---2022-10-28"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.1...1.0.0-alpha.2"},"1.0.0-alpha.2")," - 2022-10-28"),(0,n.kt)("h4",{id:"-enhancements-24"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(documentation): grammarly proof-read suggestions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f609be3758673b0d479d99baee69e7238a5b7f9"},(0,n.kt)("inlineCode",{parentName:"a"},"9f609be"))),(0,n.kt)("li",{parentName:"ul"},"refactor(volto-slate): Upgrade to @plone/volto-slate - refs #153447 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/853d9d189dd17859e3999fbf53507df7083eefb4"},(0,n.kt)("inlineCode",{parentName:"a"},"853d9d1")))),(0,n.kt)("h4",{id:"-internal-changes-10"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(docs): Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e33113a0541d082d93f61c7494bcce2ac5f79a8c"},(0,n.kt)("inlineCode",{parentName:"a"},"e33113a")))),(0,n.kt)("h4",{id:"\ufe0f-others-24"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"test(cypress): Upgrade to Cypress 10 / Razzle 4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c1c1f4b280945a9f0b77eb0b59de003c1360bac9"},(0,n.kt)("inlineCode",{parentName:"a"},"c1c1f4b"))),(0,n.kt)("li",{parentName:"ul"},"more explanations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a8b22728659125ba6ea6fb41f29571a8f1b9953b"},(0,n.kt)("inlineCode",{parentName:"a"},"a8b2272"))),(0,n.kt)("li",{parentName:"ul"},"add announcement bar, showing that EEA DS is WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e14aeac02cf922493aff4f83c8d80af95cc63eb9"},(0,n.kt)("inlineCode",{parentName:"a"},"e14aeac"))),(0,n.kt)("li",{parentName:"ul"},"Update dependencies ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee30a2bad3769163d3ab4d996c0a7be8fcb4bc6e"},(0,n.kt)("inlineCode",{parentName:"a"},"ee30a2b")))),(0,n.kt)("h3",{id:"100-alpha1---2022-10-20"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.6...1.0.0-alpha.1"},"1.0.0-alpha.1")," - 2022-10-20"),(0,n.kt)("h4",{id:"-enhancements-25"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update svg and tablet contact link sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6aba061a5d37e84da706e94a2ce1140ffca81d43"},(0,n.kt)("inlineCode",{parentName:"a"},"6aba061"))),(0,n.kt)("li",{parentName:"ul"},"change(blockquote): renamed to Callout reflecting the correct naming from Storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/61a518c84f08b03d29b99aafce3d9108ae56b3a7"},(0,n.kt)("inlineCode",{parentName:"a"},"61a518c"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): Shadow removed from logo & tablet updates #252 from eea/fix-footer ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6df783d6571cb1b477202bf1d503763d98db66bf"},(0,n.kt)("inlineCode",{parentName:"a"},"6df783d"))),(0,n.kt)("li",{parentName:"ul"},"change(colors): updated theme classes for text to use css variable colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb089fd9a40b67430e0d4efaa2cb51902a46de4f"},(0,n.kt)("inlineCode",{parentName:"a"},"cb089fd")))),(0,n.kt)("h4",{id:"-internal-changes-11"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(footer): reduce social icons margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6a9cf7a6da4a46d9b85a63fbdfc8d421ae4c0d8"},(0,n.kt)("inlineCode",{parentName:"a"},"f6a9cf7")))),(0,n.kt)("h4",{id:"-documentation-changes-9"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(alpha): Update included components in 1.0 alpha version - refs #154387 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fcc5af9bb9163d158ccd6ce452d7f80ac26f7ac0"},(0,n.kt)("inlineCode",{parentName:"a"},"fcc5af9"))),(0,n.kt)("li",{parentName:"ul"},"docs(callout): Rename Blockqoute to Callout in docusaurus - refs #154387 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8d733ac7b00273581575ceddd1a4480ba67fa498"},(0,n.kt)("inlineCode",{parentName:"a"},"8d733ac")))),(0,n.kt)("h4",{id:"\ufe0f-others-25"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-alpha.1 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70e4d97c6a2b13f3b98efe1e2ba93174be2df476"},(0,n.kt)("inlineCode",{parentName:"a"},"70e4d97")))),(0,n.kt)("h3",{id:"096---2022-12-16"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.5...0.9.6"},"0.9.6")," - 2022-12-16"),(0,n.kt)("h4",{id:"\ufe0f-others-26"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Release 0.9.6 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ae19b837678ef5a6a26ebe7c69577e446b13ed50"},(0,n.kt)("inlineCode",{parentName:"a"},"ae19b83"))),(0,n.kt)("li",{parentName:"ul"},"feature(copyright): image information #250 from eea/feature-copyright ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7b323ed27e15f9b4265618099089526c97aa89a1"},(0,n.kt)("inlineCode",{parentName:"a"},"7b323ed"))),(0,n.kt)("li",{parentName:"ul"},"Release-it ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f5671de5a36a721f86a2f8ae4077fd2e0ffafb5"},(0,n.kt)("inlineCode",{parentName:"a"},"1f5671d")))),(0,n.kt)("h3",{id:"095---2022-10-20"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.4...0.9.5"},"0.9.5")," - 2022-10-20"),(0,n.kt)("h4",{id:"-bug-fixes-19"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(statistic): margin and slate colors when using the inverted options ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f263dea1940594ad00b3548c8640ca378fee5563"},(0,n.kt)("inlineCode",{parentName:"a"},"f263dea")))),(0,n.kt)("h3",{id:"094---2022-10-19"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.3...0.9.4"},"0.9.4")," - 2022-10-19"),(0,n.kt)("h4",{id:"-bug-fixes-20"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(edit-interface): block chooser and power user menu item colors when inside content-box ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7aee4f1619a0d798b5fd8d90844a780c25aca019"},(0,n.kt)("inlineCode",{parentName:"a"},"7aee4f1"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): hero text going over the logo and menu on mobile resolutions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1434508f5995d4316dfb2fd18fdc7926a4ece6ee"},(0,n.kt)("inlineCode",{parentName:"a"},"1434508"))),(0,n.kt)("li",{parentName:"ul"},"fix(content-box): z-index of box-inner and added underline to slate links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c8b7c7e41df39e1bf6377401a7aad4220287d454"},(0,n.kt)("inlineCode",{parentName:"a"},"c8b7c7e"))),(0,n.kt)("li",{parentName:"ul"},"fix(content-box): adding of underline to links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c2f5f0f45963e48342edb0046d84b945ffe4b6a8"},(0,n.kt)("inlineCode",{parentName:"a"},"c2f5f0f")))),(0,n.kt)("h4",{id:"-enhancements-26"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(banner,colors): content box theme aware colors banner changes#254 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bcb9a8cde0cb0f927a68c0872e590e5ab853f824"},(0,n.kt)("inlineCode",{parentName:"a"},"bcb9a8c"))),(0,n.kt)("li",{parentName:"ul"},"change(Banner): Add subtitle subcomponent ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bb67f4c83a2ff0e17958116fc4a52a426ba64a70"},(0,n.kt)("inlineCode",{parentName:"a"},"bb67f4c"))),(0,n.kt)("li",{parentName:"ul"},"change(item): moved svg filter definitions to item.overrides ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/de703661065648968903bb6b46efc13d19c51d2b"},(0,n.kt)("inlineCode",{parentName:"a"},"de70366"))),(0,n.kt)("li",{parentName:"ul"},"change(accordion): accordion titles with themes colors can now be modified by css variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2ac13ea56a74b2f7a22abc274bc94c770fbe3a2"},(0,n.kt)("inlineCode",{parentName:"a"},"e2ac13e"))),(0,n.kt)("li",{parentName:"ul"},"change(colors): in lists and callouts to allow color changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/940d1b8ed815b1a38f78d7602f0b221b48fe21f9"},(0,n.kt)("inlineCode",{parentName:"a"},"940d1b8"))),(0,n.kt)("li",{parentName:"ul"},"change(colors): added backgroundColorSupplementary color variable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f5262af2b90d2ffd9dd5560232f3bf47bcc85e3"},(0,n.kt)("inlineCode",{parentName:"a"},"1f5262a"))),(0,n.kt)("li",{parentName:"ul"},"change(list,bullet): color is no longer primary instead it's text color css variant ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8c046704871c7202406ff71b280a8a34e195e54d"},(0,n.kt)("inlineCode",{parentName:"a"},"8c04670"))),(0,n.kt)("li",{parentName:"ul"},"change(statistics): use theme colors with css variable for easy color customization ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fb72a012e81eba73fbace58317a52b5cdda31ee5"},(0,n.kt)("inlineCode",{parentName:"a"},"fb72a01"))),(0,n.kt)("li",{parentName:"ul"},"change(Banner): Show label in metadata field ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1acda3c53739b610b501a53baf10226769929d2d"},(0,n.kt)("inlineCode",{parentName:"a"},"1acda3c"))),(0,n.kt)("li",{parentName:"ul"},"change(tags, items): use text color with css variable for content color for easy customization ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6660e2e49c6e732a13283ad7c922c5a5091bffc1"},(0,n.kt)("inlineCode",{parentName:"a"},"6660e2e"))),(0,n.kt)("li",{parentName:"ul"},"change(styling): modified naming of theme css variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a332961e1c4d55cdee3a8bcdf652f53cf03e251b"},(0,n.kt)("inlineCode",{parentName:"a"},"a332961"))),(0,n.kt)("li",{parentName:"ul"},"change(colors): added backgroundColor color variable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b7e68311f77a724c49a3cf858a76239ca5f6876c"},(0,n.kt)("inlineCode",{parentName:"a"},"b7e6831"))),(0,n.kt)("li",{parentName:"ul"},"change(quote): use secondary css var for easier color replacement ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7a3231228c2eb9b420cc7b59a4a07fba96643e5e"},(0,n.kt)("inlineCode",{parentName:"a"},"7a32312"))),(0,n.kt)("li",{parentName:"ul"},"change(statistics): tweaked margin of statistics so that they don't overflow over context boxes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4a8e33dfaa716f38ac9ce5448d400c74ef9ba62"},(0,n.kt)("inlineCode",{parentName:"a"},"b4a8e33"))),(0,n.kt)("li",{parentName:"ul"},"change(accordion): allow customization of accordion title background color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6590baf1716867eabe897e765ae1924122ba2333"},(0,n.kt)("inlineCode",{parentName:"a"},"6590baf"))),(0,n.kt)("li",{parentName:"ul"},"change(colors): introduced css variables for primary colors #247 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac8082590f978ab953ece70082e06b124c292ddf"},(0,n.kt)("inlineCode",{parentName:"a"},"ac80825"))),(0,n.kt)("li",{parentName:"ul"},"change(content-box): override primary text color to white as well ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/28b43c72b9fcfeb153ac7e734bbbca67f2e42111"},(0,n.kt)("inlineCode",{parentName:"a"},"28b43c7")))),(0,n.kt)("h4",{id:"\ufe0f-others-27"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Include changes in the storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4d9fa4c631a6a1ec0d7d525721fd32c5ff01d9c"},(0,n.kt)("inlineCode",{parentName:"a"},"a4d9fa4")))),(0,n.kt)("h3",{id:"093---2022-10-04"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.2...0.9.3"},"0.9.3")," - 2022-10-04"),(0,n.kt)("h4",{id:"-bug-fixes-21"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(card, contentBox): meta font size, removed header override of cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7f94b9ca8c65a887ced5c4812563a2226fca869"},(0,n.kt)("inlineCode",{parentName:"a"},"a7f94b9"))),(0,n.kt)("li",{parentName:"ul"},"fix(List): Ordered list item story - refs #155248 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c70a2bceecf4ce9497cbe0e9cdb30944fff2287d"},(0,n.kt)("inlineCode",{parentName:"a"},"c70a2bc"))),(0,n.kt)("li",{parentName:"ul"},"fix(OrderedList): li third level margin left - refs #155248 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fba5cb9d3897d2827951cd218405b1ae7c8e818a"},(0,n.kt)("inlineCode",{parentName:"a"},"fba5cb9"))),(0,n.kt)("li",{parentName:"ul"},"fix(cards): inherit color of card description ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ceda79971663785c81292b85ae07b7f9f922213c"},(0,n.kt)("inlineCode",{parentName:"a"},"ceda799"))),(0,n.kt)("li",{parentName:"ul"},"fix(accordion): Fix content default padding - refs #153783 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/566adf7a53c48fb24044eeba1d159d5ce715ecc6"},(0,n.kt)("inlineCode",{parentName:"a"},"566adf7")))),(0,n.kt)("h4",{id:"-enhancements-27"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(site): committed fixed from custom into eea design package ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9b9a1fd3648796a502ca4eb3abd08b61b33bdff2"},(0,n.kt)("inlineCode",{parentName:"a"},"9b9a1fd"))),(0,n.kt)("li",{parentName:"ul"},"change(jenkins): added yarn policy for storybook building ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3d1b844efeea40b99c00c9aa97089e0a0be58a57"},(0,n.kt)("inlineCode",{parentName:"a"},"3d1b844"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): typography updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/60a93a4aece4e478ae13c2dfe697fd3703aa178a"},(0,n.kt)("inlineCode",{parentName:"a"},"60a93a4"))),(0,n.kt)("li",{parentName:"ul"},"change(item): added item image coloring when applying theming classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0403fe4974f37a46ec7418d9b8492ad74d7c5688"},(0,n.kt)("inlineCode",{parentName:"a"},"0403fe4"))),(0,n.kt)("li",{parentName:"ul"},"change(accordion, site): change text color to tertiary instead of black ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/464105842508a62216aa0a3f28e9565af1b93232"},(0,n.kt)("inlineCode",{parentName:"a"},"4641058"))),(0,n.kt)("li",{parentName:"ul"},"change(accordion): allow customization of accordion title with css variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/15e7d27f02c640df582f51a51ef36e645723f842"},(0,n.kt)("inlineCode",{parentName:"a"},"15e7d27"))),(0,n.kt)("li",{parentName:"ul"},"change(content-box): added css variables that will set text color and background for children ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/86cac531cc94386b6022e1be80dba826b39f2443"},(0,n.kt)("inlineCode",{parentName:"a"},"86cac53"))),(0,n.kt)("li",{parentName:"ul"},"change(tabs): allow customization of tab active and hover color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4370f4270dcaa29b1193fc2347567b748f6d5d82"},(0,n.kt)("inlineCode",{parentName:"a"},"4370f42"))),(0,n.kt)("li",{parentName:"ul"},"change(tabs): color for tabs-block section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6778c923618e725194120d7f35e2ee7d66e1be8e"},(0,n.kt)("inlineCode",{parentName:"a"},"6778c92"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): by default date is set to appear on the right of the meta section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b7b80e86b69a0179f1e48748bef909bbd2a98d58"},(0,n.kt)("inlineCode",{parentName:"a"},"b7b80e8"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): carousel dots are now relative positioned ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/daa40a4ab6532497830d5f7536bf0a7f20d9cd00"},(0,n.kt)("inlineCode",{parentName:"a"},"daa40a4")))),(0,n.kt)("h4",{id:"-documentation-changes-10"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(typography): update, local fonts ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/39a32d9aa4dec21c0e7df32aa5798432fc6bd403"},(0,n.kt)("inlineCode",{parentName:"a"},"39a32d9"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): token fix to match used values for heightheight and letterspacing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91693ecd2dd367cd83fa2752756557d463e214a7"},(0,n.kt)("inlineCode",{parentName:"a"},"91693ec"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): token fix to match used values for lineheight ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff41b56b4365a3e70ac20e548c7c74671e7c584c"},(0,n.kt)("inlineCode",{parentName:"a"},"ff41b56"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): remove semibold ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6eb3e0856f01aacf6d294f68e7d845f74f752685"},(0,n.kt)("inlineCode",{parentName:"a"},"6eb3e08")))),(0,n.kt)("h4",{id:"\ufe0f-others-28"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"test(cypress): Fix md5 dependency ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/17f618e7c5eef01759494e787a8c9cb96449fbca"},(0,n.kt)("inlineCode",{parentName:"a"},"17f618e")))),(0,n.kt)("h3",{id:"092---2022-09-27"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.1...0.9.2"},"0.9.2")," - 2022-09-27"),(0,n.kt)("h3",{id:"091---2022-09-27"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.0...0.9.1"},"0.9.1")," - 2022-09-27"),(0,n.kt)("h4",{id:"-enhancements-28"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(cards): added ability to change the text alignment using css variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ed532ac20c82a6933c4f12613c80ce92eec78405"},(0,n.kt)("inlineCode",{parentName:"a"},"ed532ac"))),(0,n.kt)("li",{parentName:"ul"},"change(styles): use flex-end values only instead of end to avoid babel warning ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24244b22ea69b9f4dc3006597c7836f814b74cf2"},(0,n.kt)("inlineCode",{parentName:"a"},"24244b2"))),(0,n.kt)("li",{parentName:"ul"},"change(rounded): image size, border radius to ensure more image are turned into rounded options ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51e23c1bb38f277b2bfbad5d814925eb61d17668"},(0,n.kt)("inlineCode",{parentName:"a"},"51e23c1")))),(0,n.kt)("h4",{id:"\ufe0f-others-29"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Merge pull request #243 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/576564ce395ee6ac9e74bcb19d5c4f0b4cd3c33b"},(0,n.kt)("inlineCode",{parentName:"a"},"576564c"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using eea-website-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a5be6eec78dae230626e61ea2c77e7f3c62510d"},(0,n.kt)("inlineCode",{parentName:"a"},"4a5be6e"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b251255a7ed14d8290717726d86eaf54b87aa2d4"},(0,n.kt)("inlineCode",{parentName:"a"},"b251255")))),(0,n.kt)("h3",{id:"090---2022-09-19"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.8.1...0.9.0"},"0.9.0")," - 2022-09-19"),(0,n.kt)("h4",{id:"-new-features-16"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(countUp): intall countup package and import it in statistics ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/10ba7cf2975ffc33cc8e6965998b7ab7ec58b1ab"},(0,n.kt)("inlineCode",{parentName:"a"},"10ba7cf"))),(0,n.kt)("li",{parentName:"ul"},"feat(docusaurus): custom editUrl function for the components usage pages - taskman refs #154076 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93c4240f269d72e4e353665dacd57d079a31afac"},(0,n.kt)("inlineCode",{parentName:"a"},"93c4240"))),(0,n.kt)("li",{parentName:"ul"},"feat(site): Styling scroll-to-text fragments #238 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1883fcf4e80055f68bdff4d66fc6db3ccad4614a"},(0,n.kt)("inlineCode",{parentName:"a"},"1883fcf"))),(0,n.kt)("li",{parentName:"ul"},"feat(docusaurus): added Edit this page link in footer of each page - taskman refs #154076 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2cf8746e42631ea2e214223e208bdbfb76ffafa7"},(0,n.kt)("inlineCode",{parentName:"a"},"2cf8746")))),(0,n.kt)("h4",{id:"-bug-fixes-22"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(header): Prevent dropdown closing when clicking inside content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/838f34006260ce7c331fd933a595e95d78e1a927"},(0,n.kt)("inlineCode",{parentName:"a"},"838f340"))),(0,n.kt)("li",{parentName:"ul"},"fix(cards): position of bullets and arrow clicking on events page 148723 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/22ef8282247401b0f8cf5a44f2e65f0b469cc6fa"},(0,n.kt)("inlineCode",{parentName:"a"},"22ef828"))),(0,n.kt)("li",{parentName:"ul"},"fix(cards): rounded images show up now even when card parent is cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48f5e81a5b76168435537d92aec35ab3a184b4d2"},(0,n.kt)("inlineCode",{parentName:"a"},"48f5e81"))),(0,n.kt)("li",{parentName:"ul"},"fix(statistic): add a min-width to content so unwrapped statistics don't break ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7c5d511c35d50f3afabf77f14b27e5760c49051f"},(0,n.kt)("inlineCode",{parentName:"a"},"7c5d511"))),(0,n.kt)("li",{parentName:"ul"},"fix(sideNavigation): add role list to list item ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/58f322b732c995349ba588db3bac6a1ffea40f89"},(0,n.kt)("inlineCode",{parentName:"a"},"58f322b"))),(0,n.kt)("li",{parentName:"ul"},"fix(sideNavigation): remove unused useState import ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f9ea6779d2c584203b77f11b3127f39aba7799f3"},(0,n.kt)("inlineCode",{parentName:"a"},"f9ea677")))),(0,n.kt)("h4",{id:"-enhancements-29"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(sideNavigation): implement the design to the initial navigation & make component dynamic ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b673d63a45e56e1d05354d8675c01b15ec9543f5"},(0,n.kt)("inlineCode",{parentName:"a"},"b673d63"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update top bar ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/626bdd5805bde1e97b91d83dae7adc1d39c62234"},(0,n.kt)("inlineCode",{parentName:"a"},"626bdd5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): create custom export and add links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f9ed560a68d261e9e6a9b6fa3c44944a252e596"},(0,n.kt)("inlineCode",{parentName:"a"},"9f9ed56"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): update inverted style and add background variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7578dc6a408094fbc215218b3ffe21a878841568"},(0,n.kt)("inlineCode",{parentName:"a"},"7578dc6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): remove horizontal display on mobiles & update columns control ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/58f00e12851c4a1af1bb200d0577d76f6222df3c"},(0,n.kt)("inlineCode",{parentName:"a"},"58f00e1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): minor fixes spotted in testing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0f0f3aba7ea282c4ecc4f602f9ff3144c04e2146"},(0,n.kt)("inlineCode",{parentName:"a"},"0f0f3ab"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update main section heights ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d669f012f1b831952dbb73b7d40134b1243ba7e4"},(0,n.kt)("inlineCode",{parentName:"a"},"d669f01"))),(0,n.kt)("li",{parentName:"ul"},"refactor(sideNavigation): remove green border and divider ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/939cd9bf2a9a7338fd770550a8396586c5f610b3"},(0,n.kt)("inlineCode",{parentName:"a"},"939cd9b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(link): update colors for link states ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e9f59950838f9119131797550945963c2965dcf"},(0,n.kt)("inlineCode",{parentName:"a"},"3e9f599"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): styles img tag outside of .image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee892745a4748da12007ba5cedab16c1810c1dd9"},(0,n.kt)("inlineCode",{parentName:"a"},"ee89274"))),(0,n.kt)("li",{parentName:"ul"},"refactor(sideNavigation): update controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a3e8430d88ee52fd92f4f8c2d6f5e01ea82dd9eb"},(0,n.kt)("inlineCode",{parentName:"a"},"a3e8430"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): fix firefox issue for fit content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87aa113667ea53d83d479cd52347e7298e60e9b0"},(0,n.kt)("inlineCode",{parentName:"a"},"87aa113"))),(0,n.kt)("li",{parentName:"ul"},"change(statistics): rearrange controls order ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b19ae70568f18873732ff62ee82251c9256a214d"},(0,n.kt)("inlineCode",{parentName:"a"},"b19ae70"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): add max width to wrap text for all content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/758f8ce09f78a6343ac0226e5d332c0216dea95b"},(0,n.kt)("inlineCode",{parentName:"a"},"758f8ce"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): add max width to label so it wraps the text ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/824a12702f133485a1c254e267d9e75c1b22048c"},(0,n.kt)("inlineCode",{parentName:"a"},"824a127"))),(0,n.kt)("li",{parentName:"ul"},"change(Side menu & in page navigation): styling according to figma design #221 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b2df858a2dc88f61d686ad0991e711dc763f4cc6"},(0,n.kt)("inlineCode",{parentName:"a"},"b2df858"))),(0,n.kt)("li",{parentName:"ul"},"change(header): align header with latest figma changes #232 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/135cd68307c6ebdc5d48b361d1696457c6f99b4c"},(0,n.kt)("inlineCode",{parentName:"a"},"135cd68"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): integration when cards also contain call to action buttons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f0d876616b211c79dde5b18c1fe862ff019073a1"},(0,n.kt)("inlineCode",{parentName:"a"},"f0d8766"))),(0,n.kt)("li",{parentName:"ul"},"refactor(iconography): icon group headings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b9ccd8031049d6b91c5676930ea3e44d9587435d"},(0,n.kt)("inlineCode",{parentName:"a"},"b9ccd80"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add variables for some sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8eae84ef665d7b3331090a8a8ac6b714ecdacbb3"},(0,n.kt)("inlineCode",{parentName:"a"},"8eae84e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Statisctic): Rename slateVariation to extraVariation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a07c5896c8c4b8f3179622f335e3f02e68dadfbd"},(0,n.kt)("inlineCode",{parentName:"a"},"a07c589"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): started example on how to add headings for iconography ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53cf8431446954eee6c5d27be31e15c075ffe16d"},(0,n.kt)("inlineCode",{parentName:"a"},"53cf843"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): remove center alignment of rounded cards body area, only the image is now centered ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fdfac4876903272b437c7dcf0e65f7cfe66bbf66"},(0,n.kt)("inlineCode",{parentName:"a"},"fdfac48"))),(0,n.kt)("li",{parentName:"ul"},"change(color): updated link colors #234 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/feabfe7a3b6d6b89bfd4065a32bae8148ddc5a4c"},(0,n.kt)("inlineCode",{parentName:"a"},"feabfe7"))),(0,n.kt)("li",{parentName:"ul"},"change(mockup): Access to figma style tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0bb25bec495f9046a15924ee92f4f17152148ba8"},(0,n.kt)("inlineCode",{parentName:"a"},"0bb25be"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): update margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5190f56e134d672ccb9d5d1a8efacac4d41530d3"},(0,n.kt)("inlineCode",{parentName:"a"},"5190f56"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button): adjust vertical margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/db6d44102171738907b4b03fcc5f526463f59389"},(0,n.kt)("inlineCode",{parentName:"a"},"db6d441")))),(0,n.kt)("h4",{id:"-internal-changes-12"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(statistic): update decimal point ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7976aa4cac4c56e70e196eb62791a2b3f2aba749"},(0,n.kt)("inlineCode",{parentName:"a"},"7976aa4"))),(0,n.kt)("li",{parentName:"ul"},"style(link): update visited link color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d3b18b305bb2bd2f20bb2509584a6bc86b0e252c"},(0,n.kt)("inlineCode",{parentName:"a"},"d3b18b3")))),(0,n.kt)("h4",{id:"-documentation-changes-11"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(iconography): added icons, guidelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0073f1d42600be1d14bff406083b112014a2061f"},(0,n.kt)("inlineCode",{parentName:"a"},"0073f1d")))),(0,n.kt)("h4",{id:"\ufe0f-others-30"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Delete 2-test-new-page.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/749eff9b81e1c08068650cff1aba6cd574ea403b"},(0,n.kt)("inlineCode",{parentName:"a"},"749eff9"))),(0,n.kt)("li",{parentName:"ul"},"Create 2-test-new-page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab623ffc27f65e3e5fdcfe627009df1799582325"},(0,n.kt)("inlineCode",{parentName:"a"},"ab623ff"))),(0,n.kt)("li",{parentName:"ul"},"Release 0.9.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/eb7e2e57b5f2778e709b67deee3624f6e9f9e716"},(0,n.kt)("inlineCode",{parentName:"a"},"eb7e2e5"))),(0,n.kt)("li",{parentName:"ul"},"stylelint fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/114e3f97c6209f100aae2d6e24c595b7ba0a6500"},(0,n.kt)("inlineCode",{parentName:"a"},"114e3f9"))),(0,n.kt)("li",{parentName:"ul"},"Move text fragments style to site.overrides ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8368cbe2cecfc296a2fc81dd0bb49cb9e9a9314c"},(0,n.kt)("inlineCode",{parentName:"a"},"8368cbe"))),(0,n.kt)("li",{parentName:"ul"},"Styling scroll-to-text fragments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1bb39148717cdac922c403a0cdbfa3681a65dd9f"},(0,n.kt)("inlineCode",{parentName:"a"},"1bb3914"))),(0,n.kt)("li",{parentName:"ul"},"Update Header.stories.js ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9036c74d54640df2ccfcfdea9ddcdb29787d8ae2"},(0,n.kt)("inlineCode",{parentName:"a"},"9036c74"))),(0,n.kt)("li",{parentName:"ul"},"feature(Docusaurus): Reflect usage of remixicon in iconography page #239 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0802b32c13d978e380960befb78647dadb2d7e53"},(0,n.kt)("inlineCode",{parentName:"a"},"0802b32"))),(0,n.kt)("li",{parentName:"ul"},"Update 1-design.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/146115a13ac7a1943b6878df42f0b8e7f1fcd3f1"},(0,n.kt)("inlineCode",{parentName:"a"},"146115a"))),(0,n.kt)("li",{parentName:"ul"},"Test workflow for contribution - taskman refs #154076 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dcb924f79306ba26bb5168ac0a12d82c0c354caa"},(0,n.kt)("inlineCode",{parentName:"a"},"dcb924f"))),(0,n.kt)("li",{parentName:"ul"},"perf(figma): access to style tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/27d8dbe3c282e187f93bc4d93a0c9aa5c8162b00"},(0,n.kt)("inlineCode",{parentName:"a"},"27d8dbe"))),(0,n.kt)("li",{parentName:"ul"},"Rename 2-test-new-page to 2-test-new-page.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4e3be106cc4739e60ee5038901dbb626cf17f2e7"},(0,n.kt)("inlineCode",{parentName:"a"},"4e3be10")))),(0,n.kt)("h3",{id:"081---2022-08-26"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.8.0...0.8.1"},"0.8.1")," - 2022-08-26"),(0,n.kt)("h4",{id:"-bug-fixes-23"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(message): fix size controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee51e1dca4f84aeb9e39be525016f751acc147de"},(0,n.kt)("inlineCode",{parentName:"a"},"ee51e1d"))),(0,n.kt)("li",{parentName:"ul"},"fix(docusaurus): intro page hero title color now that headers are using tertiary color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/618e3cb7ac5533b1c087aea10452947c8676ab4e"},(0,n.kt)("inlineCode",{parentName:"a"},"618e3cb")))),(0,n.kt)("h4",{id:"-enhancements-30"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(message): restore semantic variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1c16621b4862efc64d82d475798ed40938c65f5e"},(0,n.kt)("inlineCode",{parentName:"a"},"1c16621"))),(0,n.kt)("li",{parentName:"ul"},"refactor(messages): mix semantc and token colors for messages ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/12efa75c30956df9958058242be4b8732819a5a1"},(0,n.kt)("inlineCode",{parentName:"a"},"12efa75"))),(0,n.kt)("li",{parentName:"ul"},"refactor(emotiveColors): temp update for tests ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/61a720c1ddbbad2c5bab17c8b2f890618f2a747c"},(0,n.kt)("inlineCode",{parentName:"a"},"61a720c"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): removed line between sections and moved actions back to the bottom of footer ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d9f33e4cf5a517acfbae497d6cb2fdccb048c281"},(0,n.kt)("inlineCode",{parentName:"a"},"d9f33e4"))),(0,n.kt)("li",{parentName:"ul"},"change(storybook): headings storybook now uses tertiary color by default reflecting site options ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1061e7749de2d4fe1233ccdc7f6f835ad491504a"},(0,n.kt)("inlineCode",{parentName:"a"},"1061e77"))),(0,n.kt)("li",{parentName:"ul"},"refactor(message): add container to story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1259ecead7162d2a46f5e802ba07e7e0dcb72e42"},(0,n.kt)("inlineCode",{parentName:"a"},"1259ece"))),(0,n.kt)("li",{parentName:"ul"},"refactor(message): remove override with custom background color on error ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9b40cd7ef2cca901e65a812585943c2e2d867b5f"},(0,n.kt)("inlineCode",{parentName:"a"},"9b40cd7"))),(0,n.kt)("li",{parentName:"ul"},"refactor(message): add header controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/960c2f7b524b1f049bb2f666e3e8278feca506da"},(0,n.kt)("inlineCode",{parentName:"a"},"960c2f7"))),(0,n.kt)("li",{parentName:"ul"},"change(message): use semantic colors for messages #204 from eea/refactor-message ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/22d2c43cd55a82621f2da3103652677b4b45db1a"},(0,n.kt)("inlineCode",{parentName:"a"},"22d2c43")))),(0,n.kt)("h4",{id:"-documentation-changes-12"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(figma): added figma files to repo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6bd4144ffc9c563ce224a07fe942fc4f2615c53f"},(0,n.kt)("inlineCode",{parentName:"a"},"6bd4144")))),(0,n.kt)("h3",{id:"080---2022-08-20"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.7.6...0.8.0"},"0.8.0")," - 2022-08-20"),(0,n.kt)("h4",{id:"-new-features-17"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(IconCard): card with icon instead of image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a85a1791e3a1245474dcafc4fd833350156dccb4"},(0,n.kt)("inlineCode",{parentName:"a"},"a85a179")))),(0,n.kt)("h4",{id:"-bug-fixes-24"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(docusaurus): typography guideline now has real font values for headings, body, caption and small text ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9508db918687b524c4d464539b9a4667399abb43"},(0,n.kt)("inlineCode",{parentName:"a"},"9508db9"))),(0,n.kt)("li",{parentName:"ul"},"fix(card): fix content gaps, adjust new meta section and update text color for default ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f1a78e14fc9a4b809572bd5d4d45bd10711c6eaa"},(0,n.kt)("inlineCode",{parentName:"a"},"f1a78e1"))),(0,n.kt)("li",{parentName:"ul"},"fix(item): remove duplicate argType ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dde0be5f7fe362143e248f7e53aa1d2e5df1fda0"},(0,n.kt)("inlineCode",{parentName:"a"},"dde0be5"))),(0,n.kt)("li",{parentName:"ul"},"fix(iconCard): add aria-label at links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/44f64c7127c0ccabbbf81eb5a838ee0f63284cea"},(0,n.kt)("inlineCode",{parentName:"a"},"44f64c7"))),(0,n.kt)("li",{parentName:"ul"},"fix(card): merge fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/df440ecd89eeb228f6f28df9109b84460cdfd523"},(0,n.kt)("inlineCode",{parentName:"a"},"df440ec"))),(0,n.kt)("li",{parentName:"ul"},"fix(heroblock): color even on edit page by inheriting color instead of using the tertiary color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac53fb74dedafcce231d1ca72843eff8a589c530"},(0,n.kt)("inlineCode",{parentName:"a"},"ac53fb7"))),(0,n.kt)("li",{parentName:"ul"},"fix(tab): add tabindex for accessibility error ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab512be71b86a3b696a228840e34d297928485ab"},(0,n.kt)("inlineCode",{parentName:"a"},"ab512be"))),(0,n.kt)("li",{parentName:"ul"},"fix(carousel): restore missing variable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1728312162d102aa2812eb3c7a55dac83bca8a04"},(0,n.kt)("inlineCode",{parentName:"a"},"1728312"))),(0,n.kt)("li",{parentName:"ul"},"fix(carousel): restore flex grow for cards and opacity for arrows ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce71305ab3fed5ff5c09b577e970050d3b29a2cb"},(0,n.kt)("inlineCode",{parentName:"a"},"ce71305")))),(0,n.kt)("h4",{id:"-enhancements-31"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(carousel) add links in carousel cards & update structure and variables of less files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f99cb219f3a95f5aab49a180434a4f5e0db14462"},(0,n.kt)("inlineCode",{parentName:"a"},"f99cb21"))),(0,n.kt)("li",{parentName:"ul"},"refactor(iconCard): add control for variations and link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5e1b6a1c7ab9fdce138c5643bc01763a02bed287"},(0,n.kt)("inlineCode",{parentName:"a"},"5e1b6a1"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus, fonts): documented font letter spacing modification ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/522712aeddb55f4ff96fdf4e8bea26f4575504ec"},(0,n.kt)("inlineCode",{parentName:"a"},"522712a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): css updates for card variations and styling updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c8b4a43dd25c50e77e8c71fa8fbc45cd70bde94e"},(0,n.kt)("inlineCode",{parentName:"a"},"c8b4a43"))),(0,n.kt)("li",{parentName:"ul"},"refactor(publicationCard): add links and fix accessibily issue ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/80adf6ce0f01e577c34ddba8b345a1fc562f6711"},(0,n.kt)("inlineCode",{parentName:"a"},"80adf6c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add new section in meta and remove links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bfb82ae9635d26ef478db3d63b39f67b25d11fd5"},(0,n.kt)("inlineCode",{parentName:"a"},"bfb82ae"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): add stackable functionality ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8d714fad0465cc71650dcb41236d5667ccc3e789"},(0,n.kt)("inlineCode",{parentName:"a"},"8d714fa"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): update meta section and controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5e28e12bacec6a226659553b8244aeb0165378c9"},(0,n.kt)("inlineCode",{parentName:"a"},"5e28e12"))),(0,n.kt)("li",{parentName:"ul"},"refactor(roundedCard): remove unnecessary code and controls and add all variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6305c54df14faada4058c602af2e33dbc4fad39d"},(0,n.kt)("inlineCode",{parentName:"a"},"6305c54"))),(0,n.kt)("li",{parentName:"ul"},"refactor(roundedCard): add optional link for image and header ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a6d3bf27031d189c403c4a099b09a9066a1620a2"},(0,n.kt)("inlineCode",{parentName:"a"},"a6d3bf2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add tertiary hover and update css selectors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca069484da914520c92f7d67ac92c476ff2ee4a2"},(0,n.kt)("inlineCode",{parentName:"a"},"ca06948"))),(0,n.kt)("li",{parentName:"ul"},"change(fonts): updated font sizes with values given in figma ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4b0ae48ab140d8bbbf6ccbf46eda8d957195ca50"},(0,n.kt)("inlineCode",{parentName:"a"},"4b0ae48"))),(0,n.kt)("li",{parentName:"ul"},"change(style): color, space and adjust line-height as described in docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3366da262ba2dc1c34f57964accf4d6ef6ed37e1"},(0,n.kt)("inlineCode",{parentName:"a"},"3366da2"))),(0,n.kt)("li",{parentName:"ul"},"change(headings): only h2-h6 get tertiary color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d81308c4c0d52d5610a922146f5b426d9eaf323"},(0,n.kt)("inlineCode",{parentName:"a"},"7d81308"))),(0,n.kt)("li",{parentName:"ul"},"change(site): removed Archivo import as we should only use Roboto font ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a6af0564667075d2012c114acb2ad8e1f39b926f"},(0,n.kt)("inlineCode",{parentName:"a"},"a6af056"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): use tertiary color for headings and body color mirroring the design system styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/145fe7348a19b51784a2879225d1b71a642eed45"},(0,n.kt)("inlineCode",{parentName:"a"},"145fe73"))),(0,n.kt)("li",{parentName:"ul"},"change(fonts): modified headings font size as well as line height ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f0771ea1942b6ef436a03c256491a690a52d7413"},(0,n.kt)("inlineCode",{parentName:"a"},"f0771ea"))),(0,n.kt)("li",{parentName:"ul"},"change(fonts): updated font sizes with values given in figma ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f16eef7128ed4f2e7fe97b1ec77f651dc062b771"},(0,n.kt)("inlineCode",{parentName:"a"},"f16eef7"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): use Roboto font from google fonts also for docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/adca8e911faac2d541eb2b9fecf1d9db5b8f9b4c"},(0,n.kt)("inlineCode",{parentName:"a"},"adca8e9"))),(0,n.kt)("li",{parentName:"ul"},"change(headers): added headerColor variable so that thematic sites can easily choose another heading color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f09d2c5e95e82077cc7dfef43a5c56fc73d435c3"},(0,n.kt)("inlineCode",{parentName:"a"},"f09d2c5"))),(0,n.kt)("li",{parentName:"ul"},"change(fonts): typo fixes for typography section of docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cae4b02b20ff578f5cad7c4238c36baa3cae545a"},(0,n.kt)("inlineCode",{parentName:"a"},"cae4b02"))),(0,n.kt)("li",{parentName:"ul"},"change(fonts): modified footer and header values afer global font size changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f160d354b36dc2bee0707b6d63097d5f08408abe"},(0,n.kt)("inlineCode",{parentName:"a"},"f160d35"))),(0,n.kt)("li",{parentName:"ul"},"refactor(iconCards): run prettier ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fe84e46adbc385098385120d14e7583b890db027"},(0,n.kt)("inlineCode",{parentName:"a"},"fe84e46"))),(0,n.kt)("li",{parentName:"ul"},"change(typography): inherit header colors with @headerColor variable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91d93577772534f67bb74df0c9ed260bbaccdd4c"},(0,n.kt)("inlineCode",{parentName:"a"},"91d9357"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumb): use tertiary color also for breadcrumb ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5cbd44bcabae36bcb99a1e987d701e2ea75434b"},(0,n.kt)("inlineCode",{parentName:"a"},"c5cbd44"))),(0,n.kt)("li",{parentName:"ul"},"change(heading): on homepage on the first hero set font size to h1 and inherit color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5711096e45c57b0c3c871f8dcf870c05405d217d"},(0,n.kt)("inlineCode",{parentName:"a"},"5711096"))),(0,n.kt)("li",{parentName:"ul"},"refactor(carousel): update card titles to display styling fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/edd966b5648be51f2d4056c68489648574506656"},(0,n.kt)("inlineCode",{parentName:"a"},"edd966b"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): use the tertiary color for body and heading colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/11c4ed4683df4527ce79155bc65424789e3864af"},(0,n.kt)("inlineCode",{parentName:"a"},"11c4ed4"))),(0,n.kt)("li",{parentName:"ul"},"change(typography): modified lineheight-0 after headers now use 1.2 instead of 1.25 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/04d78a8b0094d9187548e1e3b16d6fbf2248821c"},(0,n.kt)("inlineCode",{parentName:"a"},"04d78a8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add links to cards and replace description with title in carousel ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0258737d26bbb3015ee6222ec878e0477001f615"},(0,n.kt)("inlineCode",{parentName:"a"},"0258737")))),(0,n.kt)("h4",{id:"\ufe0f-others-31"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feature(heading): and cards refactoring #227 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/334fbda2d5b751858d4cc8cae832ca7f5c1ad6c2"},(0,n.kt)("inlineCode",{parentName:"a"},"334fbda"))),(0,n.kt)("li",{parentName:"ul"},"Update package.json ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3870cf3265f0dab4e181c94a6657b9fa408bf186"},(0,n.kt)("inlineCode",{parentName:"a"},"3870cf3"))),(0,n.kt)("li",{parentName:"ul"},"Header refactor 153536 #226 from eea/header-refactor-153536 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87a6fe73211eb028861e099a67e90d365c5111ea"},(0,n.kt)("inlineCode",{parentName:"a"},"87a6fe7"))),(0,n.kt)("li",{parentName:"ul"},"feature(item): icon is now stackable moving the icon on top #220 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b716acfc850345d666d99840445798cdae201a63"},(0,n.kt)("inlineCode",{parentName:"a"},"b716acf")))),(0,n.kt)("h3",{id:"076---2022-08-15"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.7.5...0.7.6"},"0.7.6")," - 2022-08-15"),(0,n.kt)("h4",{id:"-enhancements-32"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(footer): Footer updates 147837 #225 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fa9ae580c7fd45fb4983672167cb5b0b33cc6279"},(0,n.kt)("inlineCode",{parentName:"a"},"fa9ae58"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): initial redesign of main section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8e85617157cdc31a7470acfcd72b85d8fadd1bce"},(0,n.kt)("inlineCode",{parentName:"a"},"8e85617"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): restructure theme sites logo columns ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dcba45a0bfd832c7d5d1e092db8ea4040eceda57"},(0,n.kt)("inlineCode",{parentName:"a"},"dcba45a"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): set actions before thematic section on mobile ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/db25f966a214c94677192215181453e9d59ca957"},(0,n.kt)("inlineCode",{parentName:"a"},"db25f96"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): fix missing key warning from react dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/77f72d5bdc719805a6314058c741387ee7155d28"},(0,n.kt)("inlineCode",{parentName:"a"},"77f72d5"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): Footer updates 147837 #222 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32fed231f1209caeddb18e0bb75d670f20bafb88"},(0,n.kt)("inlineCode",{parentName:"a"},"32fed23")))),(0,n.kt)("h3",{id:"075---2022-08-11"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.7.3...0.7.5"},"0.7.5")," - 2022-08-11"),(0,n.kt)("h4",{id:"-enhancements-33"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(megamenu): mobile improvements with See all links, active elements and non accordion children #224 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6767b99fea3925b35e9dede0a67ea90242e5e730"},(0,n.kt)("inlineCode",{parentName:"a"},"6767b99"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): render accordion only if children have children ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/be63ce2a8e240eac26eedeff0ca104813afbc6b3"},(0,n.kt)("inlineCode",{parentName:"a"},"be63ce2"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): mobile menu design tweaks as seen in latest figma ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/26d74dc063f0b3f8d541c714a10038d79145047e"},(0,n.kt)("inlineCode",{parentName:"a"},"26d74dc"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): removed icon from at a change menu items and they are no longer bold as requested ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/043e77219979711d2f25845c6811b546e791fbf7"},(0,n.kt)("inlineCode",{parentName:"a"},"043e772"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): reset first level panels after each item pass ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/175351bdc9bab5c2d02b2717c24071ba62d4b924"},(0,n.kt)("inlineCode",{parentName:"a"},"175351b"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): mobile menu improvements #223 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b3cabfe3ddc42c2ea39ae20d01bb6fd0db478ecc"},(0,n.kt)("inlineCode",{parentName:"a"},"b3cabfe"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): fixed key error warnings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/075bf0167554869e9fc2f4938c972112e4afa2f7"},(0,n.kt)("inlineCode",{parentName:"a"},"075bf01"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): handle default active sub accordion ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6192a9938b53522682953cb73d7ccfc6ef9c1aec"},(0,n.kt)("inlineCode",{parentName:"a"},"6192a99"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): enable active border only for items not titles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fb0b8696dd73cbf3083c3006a7cff5a1901a6bac"},(0,n.kt)("inlineCode",{parentName:"a"},"fb0b869")))),(0,n.kt)("h4",{id:"\ufe0f-others-32"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Update package.json ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e21e00dc1e0b54daef2c71311a9da709bc1f7e6d"},(0,n.kt)("inlineCode",{parentName:"a"},"e21e00d")))),(0,n.kt)("h3",{id:"073---2022-08-04"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.7.2...0.7.3"},"0.7.3")," - 2022-08-04"),(0,n.kt)("h4",{id:"-enhancements-34"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(megamenu): added icon on mega menu header section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d0ad4d80fc4941e0cdbd8a2d81415387f86efc1c"},(0,n.kt)("inlineCode",{parentName:"a"},"d0ad4d8")))),(0,n.kt)("h3",{id:"072---2022-08-03"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.7.1...0.7.2"},"0.7.2")," - 2022-08-03"),(0,n.kt)("h4",{id:"-bug-fixes-25"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(contentBox): z-index of content hidden by bg when using content-box-inner ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5a7dac923d648d8fe9c9a9cbb8001969d32aea2"},(0,n.kt)("inlineCode",{parentName:"a"},"c5a7dac")))),(0,n.kt)("h4",{id:"\ufe0f-others-33"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Set focus on search input field in the popup on click ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d12c05106d9b95df1885ffa12cb284a0e50e0dfd"},(0,n.kt)("inlineCode",{parentName:"a"},"d12c051"))),(0,n.kt)("li",{parentName:"ul"},"Make cypress tests work with both slate and draft selectors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4d8e5b1d7719637a46eac8232891fc5ed1f51b6f"},(0,n.kt)("inlineCode",{parentName:"a"},"4d8e5b1")))),(0,n.kt)("h3",{id:"071---2022-08-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.7.0...0.7.1"},"0.7.1")," - 2022-08-01"),(0,n.kt)("h3",{id:"070---2022-08-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.6.5...0.7.0"},"0.7.0")," - 2022-08-01"),(0,n.kt)("h4",{id:"-new-features-18"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(accordion,buttons): primary, secondary and tertiary variations #209 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c34617f7a7d7b6b7568c3127f4ae0f52bd57cf8a"},(0,n.kt)("inlineCode",{parentName:"a"},"c34617f")))),(0,n.kt)("h4",{id:"-bug-fixes-26"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(megamenu): key warning errors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ecd27921546204dfa4aa23d25188876e52cda7a"},(0,n.kt)("inlineCode",{parentName:"a"},"4ecd279"))),(0,n.kt)("li",{parentName:"ul"},"fix(container): add padding also for block editors when we are on the add page not just edit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b857aad7855c30c5059b0f0f7c0f720826a71aa7"},(0,n.kt)("inlineCode",{parentName:"a"},"b857aad"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): bump opacity of gradient class to get rid of green hue of header text ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2011b40d384ae5b54a0525e6d9afc88c02f6ca90"},(0,n.kt)("inlineCode",{parentName:"a"},"2011b40"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): remove console log ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3a200233609bbcea39d8e519dc292a132a98aaa3"},(0,n.kt)("inlineCode",{parentName:"a"},"3a20023")))),(0,n.kt)("h4",{id:"-enhancements-35"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(callToAction): add tertiary variant and restructure exports ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac6695ab3066c41739ec4852f0ec3c3bb6cea346"},(0,n.kt)("inlineCode",{parentName:"a"},"ac6695a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(accordion): add color variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3504c15cc861803dc263fb2ad3b6a478043ced33"},(0,n.kt)("inlineCode",{parentName:"a"},"3504c15"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): WIP bringing back rendering of item with callback and path modification ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e43d4340ea82afde950e5fee44a76119060fc28"},(0,n.kt)("inlineCode",{parentName:"a"},"6e43d43"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): add slide down transition and update targetRefs on close ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/96671574f5f7dd992269c42e509598f62bba516d"},(0,n.kt)("inlineCode",{parentName:"a"},"9667157"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): use renderMenuItem in order to render menu items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9ed5cbdf120ee2c92e5f14c09e5289a5abe3f8b0"},(0,n.kt)("inlineCode",{parentName:"a"},"9ed5cbd"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): replaced eionet logo with an svg variant and tweaked size of eionet to match size of eea logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32ce4623ad454edec864ad6c8b45cbf99465bede"},(0,n.kt)("inlineCode",{parentName:"a"},"32ce462"))),(0,n.kt)("li",{parentName:"ul"},"refactor(callToAction): update tertiary state colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/159668ac526a98032392bcbd2c115dc448193152"},(0,n.kt)("inlineCode",{parentName:"a"},"159668a"))),(0,n.kt)("li",{parentName:"ul"},"change(accordion): style default accordion using the grey from semantic ui ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e24907df397457bd9704905aa29ea5d7e1d396cd"},(0,n.kt)("inlineCode",{parentName:"a"},"e24907d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(accordion): add variations and create a default export ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a9c68ffe933c9d700e46db3e0cbbd9e3820c7c7"},(0,n.kt)("inlineCode",{parentName:"a"},"4a9c68f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(colors): add tertiary shades for element states ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1e24a7e13b50f1ee7bd9bd44f3b2eb8e4460c691"},(0,n.kt)("inlineCode",{parentName:"a"},"1e24a7e"))),(0,n.kt)("li",{parentName:"ul"},"change(tests): try to modify tests to use slate instead of draft ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a2e248593433a7a8bf612008c12a3a20a0049d86"},(0,n.kt)("inlineCode",{parentName:"a"},"a2e2485"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): set active class on storybook list items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/112bff195cd07e789b352ae239a148a168b4d877"},(0,n.kt)("inlineCode",{parentName:"a"},"112bff1"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): add border for active element of menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5e7dfa539dc0d126dfb057ac2d293c94b31561bb"},(0,n.kt)("inlineCode",{parentName:"a"},"5e7dfa5"))),(0,n.kt)("li",{parentName:"ul"},"change(package): condition modification of navDepth settings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dd21dadf34f87f08223be3b98c06e7a2f0714326"},(0,n.kt)("inlineCode",{parentName:"a"},"dd21dad"))),(0,n.kt)("li",{parentName:"ul"},"change(mega menu): use non variable to fix build of volto-kitkat-frontend ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ecd652405ba616c9defc86fd793f8c066c0af1e"},(0,n.kt)("inlineCode",{parentName:"a"},"3ecd652"))),(0,n.kt)("li",{parentName:"ul"},"change(header): prefix mega-menu active class for adding border ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32898cb19c20ee7696c51b99cd9df25a333ae6e9"},(0,n.kt)("inlineCode",{parentName:"a"},"32898cb"))),(0,n.kt)("li",{parentName:"ul"},"change(tests): use data-slate-editor instead of contents that was found in draft js instead of slate ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1e0413cf117c098b188e00249c323f2f718b9299"},(0,n.kt)("inlineCode",{parentName:"a"},"1e0413c"))),(0,n.kt)("li",{parentName:"ul"},"change(stories): hide variant control from button link story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/43f8c412f6762edbed9c60e613736d5b60677cd1"},(0,n.kt)("inlineCode",{parentName:"a"},"43f8c41"))),(0,n.kt)("li",{parentName:"ul"},"change(stories): hide variant control from button link story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aea712668331f5681028d961b42a05655f1113d3"},(0,n.kt)("inlineCode",{parentName:"a"},"aea7126")))),(0,n.kt)("h4",{id:"\ufe0f-others-34"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feature(theme): added context navigation component story and default style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5a6955fe935cf6a07f6593164014ed4c9e77d88f"},(0,n.kt)("inlineCode",{parentName:"a"},"5a6955f"))),(0,n.kt)("li",{parentName:"ul"},"feature(megamenu): open default accordions on mobile navigation based on pathname ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cc299c1047f96aa5f85cdc4bb8bb9b3b4fb9ca5e"},(0,n.kt)("inlineCode",{parentName:"a"},"cc299c1"))),(0,n.kt)("li",{parentName:"ul"},"fix eslint warnings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3b30282ea4df59f2d05644cae5c1d703b4dc48b3"},(0,n.kt)("inlineCode",{parentName:"a"},"3b30282"))),(0,n.kt)("li",{parentName:"ul"},"bump release version to 0.7.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fa82cbd7d50765c322bc5c7c58abb5675e0aadad"},(0,n.kt)("inlineCode",{parentName:"a"},"fa82cbd"))),(0,n.kt)("li",{parentName:"ul"},"Theme fixes, mega menu selected element both in desktop and mobile #211 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4827292a9badb02f178b7431cc63e11070784ea"},(0,n.kt)("inlineCode",{parentName:"a"},"b482729"))),(0,n.kt)("li",{parentName:"ul"},"feature(mega-menu): added menu slide down animation #208 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4360d0ef570fbfcc9989170219f7826e5ed780cf"},(0,n.kt)("inlineCode",{parentName:"a"},"4360d0e")))),(0,n.kt)("h3",{id:"065---2022-07-06"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.6.1...0.6.5"},"0.6.5")," - 2022-07-06"),(0,n.kt)("h4",{id:"-bug-fixes-27"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(header): double click to close dropdown is no longer required ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8a2ed0d1e671d12239ecaf250e68b3187c12a53"},(0,n.kt)("inlineCode",{parentName:"a"},"b8a2ed0"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): menu generation when atAGlance isn't found ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d68b03c05f7671e7ea154efe0199c29a3734fbcf"},(0,n.kt)("inlineCode",{parentName:"a"},"d68b03c"))),(0,n.kt)("li",{parentName:"ul"},"fix(menu): removed minHeight that enlarged the global menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/133be1e43d9b7778fd94388629400c5f2b707ff4"},(0,n.kt)("inlineCode",{parentName:"a"},"133be1e"))),(0,n.kt)("li",{parentName:"ul"},"fix(hero): image dimensions when full width and height isn't enabled ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4114f731cce63dc520bfd00cd487943181cec2ee"},(0,n.kt)("inlineCode",{parentName:"a"},"4114f73"))),(0,n.kt)("li",{parentName:"ul"},"fix(contentBox): removed negative z-index that hid fullwidth bg color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bd60faff53205da95d94930517f2ac830ec523d1"},(0,n.kt)("inlineCode",{parentName:"a"},"bd60faf")))),(0,n.kt)("h4",{id:"-enhancements-36"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(hero): tweaked hero block height and padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/994b6f8943c061657792df8adcbdee5da487ce43"},(0,n.kt)("inlineCode",{parentName:"a"},"994b6f8"))),(0,n.kt)("li",{parentName:"ul"},"change(item): tweak size and padding of icon when used inside item ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dbdef191e70bf59dcfddf63c8f9f9a1343266a59"},(0,n.kt)("inlineCode",{parentName:"a"},"dbdef19"))),(0,n.kt)("li",{parentName:"ul"},"change(typography): updated letterspacing values and clarified values used for certain type tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8a13bf8b3691d288209532842fb2c80962d652c0"},(0,n.kt)("inlineCode",{parentName:"a"},"8a13bf8"))),(0,n.kt)("li",{parentName:"ul"},"change(item): enable theming for icon and text color and added tertiary option ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d4444feedd1cd7e6e8f8da630b4b53a19050d1b"},(0,n.kt)("inlineCode",{parentName:"a"},"6d4444f"))),(0,n.kt)("li",{parentName:"ul"},"change(header): top section chevron sizes and margin as requested in enhancements document ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b307c74a671c10a5a6703dcb2126c3c36679c6f5"},(0,n.kt)("inlineCode",{parentName:"a"},"b307c74"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): add underline to links when applied to headers and use tertiary color by default ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/874f956c61e65ddbb6a240865f3946bb84247712"},(0,n.kt)("inlineCode",{parentName:"a"},"874f956"))),(0,n.kt)("li",{parentName:"ul"},"change(utilities): wrap in quotes h2 and h3 of quoted-wrapper ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8aa471604fb127cfa535373bb90a44b4204dd0f4"},(0,n.kt)("inlineCode",{parentName:"a"},"8aa4716"))),(0,n.kt)("li",{parentName:"ul"},"change(package): bump package version to 0.6.5 denoting bug fixes release ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0585aebaeb9e3483ba230110d99a1a875590ad66"},(0,n.kt)("inlineCode",{parentName:"a"},"0585aeb")))),(0,n.kt)("h3",{id:"061---2022-07-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.6.0...0.6.1"},"0.6.1")," - 2022-07-01"),(0,n.kt)("h4",{id:"-new-features-19"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(UnderlinedTitle): create story and necessary utilities ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8beb56b64ca76fb9f0f6df0f3554e64449a64868"},(0,n.kt)("inlineCode",{parentName:"a"},"8beb56b"))),(0,n.kt)("li",{parentName:"ul"},"feat(headers): added underlined titles with theming support ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af675616f9e002458501cf8b90742514153a298f"},(0,n.kt)("inlineCode",{parentName:"a"},"af67561")))),(0,n.kt)("h4",{id:"-enhancements-37"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(heading): move underline story and update controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2c9bfd279eafc44435d223be326f9496856c2154"},(0,n.kt)("inlineCode",{parentName:"a"},"2c9bfd2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(underlineTitle): add content box for different variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/087891535059d6c2d7d2c2accded20f6ba601bb5"},(0,n.kt)("inlineCode",{parentName:"a"},"0878915"))),(0,n.kt)("li",{parentName:"ul"},"refactor(underlinedTitle): add control for changing heading size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/211f5158bff2b437aac60f26ba63f9adb6be540a"},(0,n.kt)("inlineCode",{parentName:"a"},"211f515"))),(0,n.kt)("li",{parentName:"ul"},"refactor(underlinedTitle): Restore text variation dropdown control ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bd8c61129d2c80475af8d0e9310412d5c3a82169"},(0,n.kt)("inlineCode",{parentName:"a"},"bd8c611"))),(0,n.kt)("li",{parentName:"ul"},"refactor(utilities): add color variation for headings and text ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e3a779ec4fa3b712fcd32124f6f83ab784d2223"},(0,n.kt)("inlineCode",{parentName:"a"},"7e3a779"))),(0,n.kt)("li",{parentName:"ul"},"refactor(utilities): update border bottom utility and restore line height for headings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7fe4a7b9fee579d213fe3945a4e548ff089784bd"},(0,n.kt)("inlineCode",{parentName:"a"},"7fe4a7b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(headings): update the line height of headers according to docusaurus instructions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9da19b3e1ea1fd93431e00edf3dc9a443e94f27a"},(0,n.kt)("inlineCode",{parentName:"a"},"9da19b3")))),(0,n.kt)("h4",{id:"-internal-changes-13"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(countup): package for statistics ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/26fcd09bbd8d44119d5ca957542863be8c64836b"},(0,n.kt)("inlineCode",{parentName:"a"},"26fcd09")))),(0,n.kt)("h3",{id:"060---2022-07-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.5.5...0.6.0"},"0.6.0")," - 2022-07-01"),(0,n.kt)("h4",{id:"-bug-fixes-28"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(item): adjust the container in stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a848c46b5bf3153ec993a21a530e120bae872407"},(0,n.kt)("inlineCode",{parentName:"a"},"a848c46"))),(0,n.kt)("li",{parentName:"ul"},"fix(tag): align start for tags on mobile, update path for Tag List and add containers ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b9de8452c42ed6d16028ce147f2d7a062b895d67"},(0,n.kt)("inlineCode",{parentName:"a"},"b9de845"))),(0,n.kt)("li",{parentName:"ul"},"fix(item): update image width & height on mobiles and add 3 line clamp for description ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0cd2c46c945ff85b55183994990fae9cf450f3d1"},(0,n.kt)("inlineCode",{parentName:"a"},"0cd2c46"))),(0,n.kt)("li",{parentName:"ul"},"fix(pageheader): metadata font size on mobile to be readable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0a9b1fa7db6f0b11265f9eb4d28f25b23bedc79a"},(0,n.kt)("inlineCode",{parentName:"a"},"0a9b1fa"))),(0,n.kt)("li",{parentName:"ul"},"fix(breadcrumb): fixed variable name for breadcrumb item ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2b547eb43e0db4aa9bb63b4e4ba7f541f357fbd0"},(0,n.kt)("inlineCode",{parentName:"a"},"2b547eb")))),(0,n.kt)("h4",{id:"-enhancements-38"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(Item):create item story with custom default class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/069ae02a7cc2b15b7e6732e46f52d07eaa4502b1"},(0,n.kt)("inlineCode",{parentName:"a"},"069ae02"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pagination): add pastanage menu overrides and remove any eea theme css from default story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/508081090baaeb455130c760c6c0e7e23972d84a"},(0,n.kt)("inlineCode",{parentName:"a"},"5080810"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): update variables from px to rem ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/30eed78c170e5719ba4fb85c3a171db3f97d63c8"},(0,n.kt)("inlineCode",{parentName:"a"},"30eed78"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Item):add default item mobile padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/35184655e3225b8ad63626c8e521b5dcf59eaa3b"},(0,n.kt)("inlineCode",{parentName:"a"},"3518465"))),(0,n.kt)("li",{parentName:"ul"},"change(site): added fixes from custom ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0fe4d80586c8877d58905ec40aa7df19c2f4e32f"},(0,n.kt)("inlineCode",{parentName:"a"},"0fe4d80"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Pagination): add default pagination stopry and rename previous as Secondary ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a5e3e13b40d4d1d0c96f1efaa3a0c326d60c6d93"},(0,n.kt)("inlineCode",{parentName:"a"},"a5e3e13"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pagination): comment out secondary pagination and its styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bcf4cff1cff490718751475354b8fb32da174383"},(0,n.kt)("inlineCode",{parentName:"a"},"bcf4cff"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tags): remove content class and add flex wrap ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d6333ca7e61a588d8ffe4d0d2e02005c0aa12379"},(0,n.kt)("inlineCode",{parentName:"a"},"d6333ca"))),(0,n.kt)("li",{parentName:"ul"},"change(logo): use a real svg logo for white eea logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3b80dc7698c3dbab5d3834cc62f5102c2ace0166"},(0,n.kt)("inlineCode",{parentName:"a"},"3b80dc7"))),(0,n.kt)("li",{parentName:"ul"},"change(header): show eea information systems on tablet as well ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce82cebb554eb11a35ea2b3ee0c62bc645716476"},(0,n.kt)("inlineCode",{parentName:"a"},"ce82ceb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): update letter spacing tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f8753b7527b1bf7271102666a8662a74b2b1775"},(0,n.kt)("inlineCode",{parentName:"a"},"5f8753b"))),(0,n.kt)("li",{parentName:"ul"},"change(letterspacing): updated letter spacing positive values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b31818f292ce7ce8711084116a7b4df78cca33f0"},(0,n.kt)("inlineCode",{parentName:"a"},"b31818f"))),(0,n.kt)("li",{parentName:"ul"},"change(pageheader): add bottom margin on mobile for sharing dropdown actions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d3cda4732ec94dac91b36ef10014fbbe08a0a470"},(0,n.kt)("inlineCode",{parentName:"a"},"d3cda47"))),(0,n.kt)("li",{parentName:"ul"},"change(pageheader): removed blogger, reddit and stumbleupon sharing links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e4acc4e83c120cda59d94f04867a53e21bf322ab"},(0,n.kt)("inlineCode",{parentName:"a"},"e4acc4e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Item): add default item background color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c978c8d05355065466a8a661844237a9df103b94"},(0,n.kt)("inlineCode",{parentName:"a"},"c978c8d"))),(0,n.kt)("li",{parentName:"ul"},"change(package): bump package version ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f01f72ba6b09b6aae00c54e446bafddb48c4cd1"},(0,n.kt)("inlineCode",{parentName:"a"},"1f01f72")))),(0,n.kt)("h4",{id:"-internal-changes-14"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(item): update item image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e585e9d8c85a3627696b55c0505e29e8a8c33f7f"},(0,n.kt)("inlineCode",{parentName:"a"},"e585e9d")))),(0,n.kt)("h4",{id:"-documentation-changes-13"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(colors): token usage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c433ec6fcf190f85ab1dd81ea3e63eeb381d0c28"},(0,n.kt)("inlineCode",{parentName:"a"},"c433ec6"))),(0,n.kt)("li",{parentName:"ul"},"docs(Docusaurus): typography and spacing updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48d1269dce396aec26db1d1e2f777851a26eaa81"},(0,n.kt)("inlineCode",{parentName:"a"},"48d1269"))),(0,n.kt)("li",{parentName:"ul"},"docs(Docusaurus): various fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a972a31f7932d29d61a46da251c0c98994516365"},(0,n.kt)("inlineCode",{parentName:"a"},"a972a31"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/66d95e4fee695a20de47f5476712034f9f07f4a8"},(0,n.kt)("inlineCode",{parentName:"a"},"66d95e4")))),(0,n.kt)("h4",{id:"\ufe0f-others-35"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Tabs block custom border left/top ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca4cce05ddb603a26d729dfe31f0f11fda7563fb"},(0,n.kt)("inlineCode",{parentName:"a"},"ca4cce0"))),(0,n.kt)("li",{parentName:"ul"},"Fix sidebar tabs in Volto CSS ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c287db5abbfe068d4b255c41fd58d0433d2640c4"},(0,n.kt)("inlineCode",{parentName:"a"},"c287db5")))),(0,n.kt)("h3",{id:"055---2022-06-23"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.5.4...0.5.5"},"0.5.5")," - 2022-06-23"),(0,n.kt)("h4",{id:"-bug-fixes-29"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(contentBox): color of cards when inside content-boxes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/76a452031473f43928dee1d3ee705d06101e6a21"},(0,n.kt)("inlineCode",{parentName:"a"},"76a4520")))),(0,n.kt)("h4",{id:"-enhancements-39"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(homepage): moved fixes of homepage to custom and colored carousel arrow ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0a226ef3f5d328d45513764bec02d58241417db0"},(0,n.kt)("inlineCode",{parentName:"a"},"0a226ef")))),(0,n.kt)("h3",{id:"054---2022-06-16"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.5.3...0.5.4"},"0.5.4")," - 2022-06-16"),(0,n.kt)("h4",{id:"-bug-fixes-30"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(block-style): Content box preview in sidebar ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6362766f5e8dabf778e3864d2bb08966a55fc078"},(0,n.kt)("inlineCode",{parentName:"a"},"6362766"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): ensure transparency goes as high as the search icon ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4470e132e1e70fba3fdfb33fc63a1cc9d62700e8"},(0,n.kt)("inlineCode",{parentName:"a"},"4470e13")))),(0,n.kt)("h4",{id:"-enhancements-40"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(contentBox): add background as before element instead of using full-width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e0a5962c1b9cb0d3ef9a8d7b7208eded34eb3ce"},(0,n.kt)("inlineCode",{parentName:"a"},"7e0a596"))),(0,n.kt)("li",{parentName:"ul"},"change(content-box): content box links are now underlined ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f7976f50f5807a884522d6dba871a2757a1c5a98"},(0,n.kt)("inlineCode",{parentName:"a"},"f7976f5"))),(0,n.kt)("li",{parentName:"ul"},"change(homepage): added fixes from custom ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c3e03331d328f4fd7c6689f93bc1f1156013b8a9"},(0,n.kt)("inlineCode",{parentName:"a"},"c3e0333"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): add margin top with the height of the top section on edit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fefa6bb0f513e221ddb587f081c0e7d0c3067dfd"},(0,n.kt)("inlineCode",{parentName:"a"},"fefa6bb"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): fix default card color when inside content-boxes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6fdf3aabf9515289b36a5822e21edc5d282c4536"},(0,n.kt)("inlineCode",{parentName:"a"},"6fdf3aa"))),(0,n.kt)("li",{parentName:"ul"},"change(container): removed override of content-box-inner container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/66fe7d45adc631c3ebf0e8dd11de19d7ff60b894"},(0,n.kt)("inlineCode",{parentName:"a"},"66fe7d4")))),(0,n.kt)("h3",{id:"053---2022-06-16"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.5.2...0.5.3"},"0.5.3")," - 2022-06-16"),(0,n.kt)("h4",{id:"-bug-fixes-31"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(homepage): hero and homepage fixes for #151156 #198 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/43d4efc508750e0e9cbb93b9bffc3721be452c5a"},(0,n.kt)("inlineCode",{parentName:"a"},"43d4efc"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): fixed top section width on edit page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce5898b5ee41ea6959a2c454b3fb98216d71feb3"},(0,n.kt)("inlineCode",{parentName:"a"},"ce5898b")))),(0,n.kt)("h4",{id:"-enhancements-41"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(hero): added min height to hero-block-image-wrapper ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3cc37c027597573281710c9db98c687057d261dd"},(0,n.kt)("inlineCode",{parentName:"a"},"3cc37c0"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): spaced hero block has a 3rem margin top and bottom ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c463b033dda601bfd475b282bc0003200a053d45"},(0,n.kt)("inlineCode",{parentName:"a"},"c463b03"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): added extra top margin on hero-block-body from tablet and up within homepage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/64142c3c45f6a8ea6502842055a2341dcf16088c"},(0,n.kt)("inlineCode",{parentName:"a"},"64142c3"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): tweak min height of hero block ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e1271b4b5fdcd8205f0bec8b88ab9ae31f62251f"},(0,n.kt)("inlineCode",{parentName:"a"},"e1271b4"))),(0,n.kt)("li",{parentName:"ul"},"change(card,contentBox): use inherit for text color to inherit black from body ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c1ba3b6ddc16ddc7394aba8d78cad73b5a8c34cb"},(0,n.kt)("inlineCode",{parentName:"a"},"c1ba3b6"))),(0,n.kt)("li",{parentName:"ul"},"change(container): on section-edit modify only left and right padding values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fe6e3ec764643ec01e20ae9dbdde921774ef04cd"},(0,n.kt)("inlineCode",{parentName:"a"},"fe6e3ec"))),(0,n.kt)("li",{parentName:"ul"},"change(utilities): bump z-index of overlay class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ede3209556b620d2252bb03d4c994a92b6708fd2"},(0,n.kt)("inlineCode",{parentName:"a"},"ede3209"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): fixed variable reference for margin of body from homepage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/092b90b2a902b71cc96132ca3c96108edda56342"},(0,n.kt)("inlineCode",{parentName:"a"},"092b90b")))),(0,n.kt)("h3",{id:"052---2022-06-14"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.5.1...0.5.2"},"0.5.2")," - 2022-06-14"),(0,n.kt)("h4",{id:"-new-features-20"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(contentBox) : add new Content Box component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ebbb47fe685f9809aa3572263be376d9688371e"},(0,n.kt)("inlineCode",{parentName:"a"},"2ebbb47"))),(0,n.kt)("li",{parentName:"ul"},"feat(ContentBox): Add primary, secondary, tertiary themes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87cb2fe7e4cd5c2872299756f493e371abcbb05f"},(0,n.kt)("inlineCode",{parentName:"a"},"87cb2fe"))),(0,n.kt)("li",{parentName:"ul"},"feat(ContentBox): Update storybook with available themes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93b26b2f5f1d627aa8049df61257499e4798dd79"},(0,n.kt)("inlineCode",{parentName:"a"},"93b26b2")))),(0,n.kt)("h4",{id:"-enhancements-42"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(contentBox): restructure the component to be more flexible ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f0d2de67e43fafa10052871f99ac841c83cf8157"},(0,n.kt)("inlineCode",{parentName:"a"},"f0d2de6")))),(0,n.kt)("h4",{id:"-internal-changes-15"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(contentBox) : add lint changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5aaf740594f0001b1672bb6dc18d973f55c881f0"},(0,n.kt)("inlineCode",{parentName:"a"},"5aaf740")))),(0,n.kt)("h4",{id:"\ufe0f-others-36"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"perf(eol): change to lf ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/78b2955ff73d9436134d1a6399040b2d7c7f5714"},(0,n.kt)("inlineCode",{parentName:"a"},"78b2955"))),(0,n.kt)("li",{parentName:"ul"},"Cleanup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2b128dface95b560588a343f1ddf7bbaf3efb320"},(0,n.kt)("inlineCode",{parentName:"a"},"2b128df")))),(0,n.kt)("h3",{id:"051---2022-06-13"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.5.0...0.5.1"},"0.5.1")," - 2022-06-13"),(0,n.kt)("h4",{id:"-enhancements-43"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(header): changed homepage text color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/64ce8b61f8f2150513e09bf2926b48aa2ae1071c"},(0,n.kt)("inlineCode",{parentName:"a"},"64ce8b6"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): added styles for adding dark overlay to hero ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bf1d292fecfa8a6b222558f0d93f48e19bf6b8ea"},(0,n.kt)("inlineCode",{parentName:"a"},"bf1d292"))),(0,n.kt)("li",{parentName:"ul"},"change(homepage): hide stagingBanner on homepage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fb6e319dd10f4d148cc8f3b33dafc43280a0254f"},(0,n.kt)("inlineCode",{parentName:"a"},"fb6e319"))),(0,n.kt)("li",{parentName:"ul"},"change(header): use variable for homepage hero-block padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/89ff3441f269281ffb3da32cd3e5c64715b3204b"},(0,n.kt)("inlineCode",{parentName:"a"},"89ff344"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): modified grey-4 color to point to a 10% shade from original color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b406283e61c7356bec9d453567cd1ccde496880d"},(0,n.kt)("inlineCode",{parentName:"a"},"b406283"))),(0,n.kt)("li",{parentName:"ul"},"change(header): added min-height for mega menu needed for 1 items menus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/18814f48fb743c88d05554e9a1773f8d85dec86c"},(0,n.kt)("inlineCode",{parentName:"a"},"18814f4"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): hero section block integration #192 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ea2f40583951016c164c9abdf22d8e809d207fe"},(0,n.kt)("inlineCode",{parentName:"a"},"4ea2f40")))),(0,n.kt)("h4",{id:"\ufe0f-others-37"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Add hero block style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fa39656fd661d8af95f483a6f33a08e4c93c42f1"},(0,n.kt)("inlineCode",{parentName:"a"},"fa39656"))),(0,n.kt)("li",{parentName:"ul"},"Add padding if hero block is not full-width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/808b83957d6a866cc31c928f414fa8fa5da517a1"},(0,n.kt)("inlineCode",{parentName:"a"},"808b839"))),(0,n.kt)("li",{parentName:"ul"},"Cleanup available languages ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0c490512a6a6524efe9a37b4b61ab0061a240abb"},(0,n.kt)("inlineCode",{parentName:"a"},"0c49051"))),(0,n.kt)("li",{parentName:"ul"},"Use 1.5 rem ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1125cd7c65332fc5961ffbbbd2d2ab6bcc8b1b5b"},(0,n.kt)("inlineCode",{parentName:"a"},"1125cd7")))),(0,n.kt)("h3",{id:"050---2022-06-11"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.4.5...0.5.0"},"0.5.0")," - 2022-06-11"),(0,n.kt)("h4",{id:"-new-features-21"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(hero): added storybook implementation of hero component #172 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/17b9d1693e31bf7b3b41ca84be7bd21f07065674"},(0,n.kt)("inlineCode",{parentName:"a"},"17b9d16"))),(0,n.kt)("li",{parentName:"ul"},"feat(hero): add hero block component and stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6019fc843ec14a8afc7558e92c2d4b4bb14ee199"},(0,n.kt)("inlineCode",{parentName:"a"},"6019fc8")))),(0,n.kt)("h4",{id:"-bug-fixes-32"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(header): Internal links in mega menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d8ca13558c3e8c336800791f2fea8a8d33a2b602"},(0,n.kt)("inlineCode",{parentName:"a"},"d8ca135"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): show active menu when clicking on children ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a54fa67a1a92e2ab4216e6d149f66e1ee53aab89"},(0,n.kt)("inlineCode",{parentName:"a"},"a54fa67"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): accessibility and dropdown possition fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/505ac36a27d86e620fb5af515a0b8b5979610f0a"},(0,n.kt)("inlineCode",{parentName:"a"},"505ac36"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): fix accessibility issue by David ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/783dcec0d140e6e6e568d0f82833dcbf8a5c7d3d"},(0,n.kt)("inlineCode",{parentName:"a"},"783dcec"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): dropdowns disappear on resize ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/52338fd3e711f4918612e052dc2034a8d9bd40bd"},(0,n.kt)("inlineCode",{parentName:"a"},"52338fd"))),(0,n.kt)("li",{parentName:"ul"},"fix(header-topdropdown): dedupe html elements for topdropdowns ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cd8a2a7ea091e81b736438f7c2a87c254af1b092"},(0,n.kt)("inlineCode",{parentName:"a"},"cd8a2a7"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): transparency class should apply on the current bg color or image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f9a0033c5538cb19f08f26cf28d47954cc52607d"},(0,n.kt)("inlineCode",{parentName:"a"},"f9a0033"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): mobile dropdown now visible ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/34371b436f2ec100f3920f78de49983ba16679b0"},(0,n.kt)("inlineCode",{parentName:"a"},"34371b4"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): dropdown disappears after window resize #116 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fc7dd8bd7911421fb734a696a2dd5d3ad3b652b0"},(0,n.kt)("inlineCode",{parentName:"a"},"fc7dd8b"))),(0,n.kt)("li",{parentName:"ul"},"fix(header-topdropdown): dedupe html dropdown elements for topdropdowns #115 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f10a7a8743a5fb2cecd0c3374ec9d894e914143f"},(0,n.kt)("inlineCode",{parentName:"a"},"f10a7a8")))),(0,n.kt)("h4",{id:"-enhancements-44"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): update mega menu in header component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2d1ce454553d116efa96288079b8b77649e10abb"},(0,n.kt)("inlineCode",{parentName:"a"},"2d1ce45"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update structure and variables of top bar ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af709094f94f0cc2e2309b1aedb376e45dc7f136"},(0,n.kt)("inlineCode",{parentName:"a"},"af70909"))),(0,n.kt)("li",{parentName:"ul"},"change(header): renamed mega menu items href attribute to url ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ed8144589f87a9ad219c97193863c999a72cb6d"},(0,n.kt)("inlineCode",{parentName:"a"},"3ed8144"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update main section and and add color variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2f0fd1de7c04eff4b2a9b62d03dd13a1b0d69bc"},(0,n.kt)("inlineCode",{parentName:"a"},"f2f0fd1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): minor updates on colors and widths ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a70129fd929fedb344a47e049cca94274e84a3b1"},(0,n.kt)("inlineCode",{parentName:"a"},"a70129f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero): add full-heigh control to adjust height ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a45cb7c599cdc11426207001e67d8f7d727233fe"},(0,n.kt)("inlineCode",{parentName:"a"},"a45cb7c"))),(0,n.kt)("li",{parentName:"ul"},"change(header): disable sticky setting until feature is more stable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1d7af954c85cb6a8a657c1625e4ae863e562346a"},(0,n.kt)("inlineCode",{parentName:"a"},"1d7af95"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero):make button variant and inverted different button controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e182ca9ecdb76507205d84f83cad6a79dd74a03"},(0,n.kt)("inlineCode",{parentName:"a"},"7e182ca"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header):main bar sticky on scroll up ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9c9e7c6f9651c0663a1eab1856d7324a73afb2de"},(0,n.kt)("inlineCode",{parentName:"a"},"9c9e7c6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(headings): update heading sizes for mobile ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19f3ccacaf2c744b5f5c2ec8635773de7ef0016b"},(0,n.kt)("inlineCode",{parentName:"a"},"19f3cca"))),(0,n.kt)("li",{parentName:"ul"},"change(header): hide first link(home) from header menu on site ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ae7f3b9385620eb3d840dd90f512e37cd8556a6d"},(0,n.kt)("inlineCode",{parentName:"a"},"ae7f3b9"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): typo correction and key setting on list.items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/96d2c4fbfa722d22a215e8d27f1400e65fe9476e"},(0,n.kt)("inlineCode",{parentName:"a"},"96d2c4f"))),(0,n.kt)("li",{parentName:"ul"},"change(header): use Link instead of a tag for menu items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9812b3fba7b8305399d6972daf135b8a2d88e876"},(0,n.kt)("inlineCode",{parentName:"a"},"9812b3f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add control for inverted logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/023ca45e6f263166211cbea0d63b1938d11221da"},(0,n.kt)("inlineCode",{parentName:"a"},"023ca45"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero): move quoted utility to h2 tag ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7376676b4875494f16c49945f6b5dac19c6b8009"},(0,n.kt)("inlineCode",{parentName:"a"},"7376676"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add link for menu title inside desktop mega menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24355d000b2bd808b2031cd2b78e60cafb9ad5b1"},(0,n.kt)("inlineCode",{parentName:"a"},"24355d0"))),(0,n.kt)("li",{parentName:"ul"},"refactor(utilities): update hex with color token ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8dc65ef55a62dcb32b6eb8a684524a8dc1fa6ba6"},(0,n.kt)("inlineCode",{parentName:"a"},"8dc65ef"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): and mega menu to latest spec #114 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/44fcf68be242f97ced852b28ac3ab820dc0e1045"},(0,n.kt)("inlineCode",{parentName:"a"},"44fcf68"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update search input and file endings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/afab36f96f245e197eff528cb1d9e6fea45bc7ba"},(0,n.kt)("inlineCode",{parentName:"a"},"afab36f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add control that toggles transparency class on main section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8d4bdb9c527f102ffd3718f32bf1a43309a9bb4"},(0,n.kt)("inlineCode",{parentName:"a"},"b8d4bdb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): restore union dropdown after implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e98bab497ee10ad89d2dfed76c7117b633206fe"},(0,n.kt)("inlineCode",{parentName:"a"},"7e98bab"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): minor responsive fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/16a000634505c9e8f8b310860a30b62798a0fb87"},(0,n.kt)("inlineCode",{parentName:"a"},"16a0006"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero): align hero's text and meta seperately ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4fa958f7c7cc6d331a8eb7aaf25dc44d6cd3632a"},(0,n.kt)("inlineCode",{parentName:"a"},"4fa958f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero):add button variant controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f362a7b2ec273131fa0876f23b74c740c7217b3a"},(0,n.kt)("inlineCode",{parentName:"a"},"f362a7b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update search input ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/368962eabb668e2ec1bdcd18ae81658e7b1d911b"},(0,n.kt)("inlineCode",{parentName:"a"},"368962e"))),(0,n.kt)("li",{parentName:"ul"},"change(header): mark top level active menu item ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/665c449bc2667cc1471a4b97923c897ad3506792"},(0,n.kt)("inlineCode",{parentName:"a"},"665c449"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero):prettier & style changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d84688440417a430afd9fd24f4c8cfeef0121203"},(0,n.kt)("inlineCode",{parentName:"a"},"d846884"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add control for main section stickiness ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2f07572f78074137e7e6a49585273210ed5cedcb"},(0,n.kt)("inlineCode",{parentName:"a"},"2f07572"))),(0,n.kt)("li",{parentName:"ul"},"change(header): use viewport width for changing mobile text in header dropdowns ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b50fa585c0abeedc04a46395f08e50a9e112c430"},(0,n.kt)("inlineCode",{parentName:"a"},"b50fa58"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add fluid font sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f2743e39107fd1bd00a54e03bf92963eb9853f2"},(0,n.kt)("inlineCode",{parentName:"a"},"5f2743e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header) add position sticky & transparent for main section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/29df772edfe23b1752aa3d184659eea90c3c9221"},(0,n.kt)("inlineCode",{parentName:"a"},"29df772"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero): update variables with new design tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1d9792231c50f12fd68364e201054f6ab0926665"},(0,n.kt)("inlineCode",{parentName:"a"},"1d97922"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Language List): render language dropdown as ul and li elements ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3617442da78af07d3f473d0c43c47dd48c9b2ac3"},(0,n.kt)("inlineCode",{parentName:"a"},"3617442"))),(0,n.kt)("li",{parentName:"ul"},"change(header): introduced item class to the mega menu link content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/00ca376ea4cf1de4851e84567b97c374ee7f66e3"},(0,n.kt)("inlineCode",{parentName:"a"},"00ca376"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Language List): add less variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7ccc1ccf57419b6eecbf71d479db72b84428d43a"},(0,n.kt)("inlineCode",{parentName:"a"},"7ccc1cc"))),(0,n.kt)("li",{parentName:"ul"},"change(header): disabled active menu when clicking on globalnav links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3f7b5eedb038b51fbae8a14a683dc6adc919549b"},(0,n.kt)("inlineCode",{parentName:"a"},"3f7b5ee"))),(0,n.kt)("li",{parentName:"ul"},"change(header): target link instead of span directly ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9e865fbb5b256196756c3d84de397296ac0b447a"},(0,n.kt)("inlineCode",{parentName:"a"},"9e865fb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): remove unused imports ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e232db6ce0b2553be79d98d8497fa06f548b772"},(0,n.kt)("inlineCode",{parentName:"a"},"7e232db")))),(0,n.kt)("h4",{id:"\ufe0f-others-38"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Add item themes; override .block .ui.image width based on size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/06010db21398638d46d2e007317d72a7aff7e7d9"},(0,n.kt)("inlineCode",{parentName:"a"},"06010db"))),(0,n.kt)("li",{parentName:"ul"},"Move item icon themes to item.overrides ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/31e8921f4ee4d92ba3a9c58275b41dd3101cffd2"},(0,n.kt)("inlineCode",{parentName:"a"},"31e8921"))),(0,n.kt)("li",{parentName:"ul"},"Override only the width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8d4927084e5daedcb69e6f3a57cab73a9016a55f"},(0,n.kt)("inlineCode",{parentName:"a"},"8d49270"))),(0,n.kt)("li",{parentName:"ul"},"Override tile image in .block parrent ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/005655ddff6f45e211f1ff8156b0b7efa1e47a2e"},(0,n.kt)("inlineCode",{parentName:"a"},"005655d"))),(0,n.kt)("li",{parentName:"ul"},"Update package.json ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9dc38165a95deca1faf2dfccdc03fd6cab3d8c54"},(0,n.kt)("inlineCode",{parentName:"a"},"9dc3816"))),(0,n.kt)("li",{parentName:"ul"},"feature(item): added themes to item icons #190 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a6a2907df09575a18fb6e81dc52e8d6651eff118"},(0,n.kt)("inlineCode",{parentName:"a"},"a6a2907"))),(0,n.kt)("li",{parentName:"ul"},"update storybook header.topdropdown ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e58ac0821af56c06272e3373383647cbbff20978"},(0,n.kt)("inlineCode",{parentName:"a"},"e58ac08"))),(0,n.kt)("li",{parentName:"ul"},"use volto-screen-helper width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea156aad1100166ba78635163cfacdcfb913c1d4"},(0,n.kt)("inlineCode",{parentName:"a"},"ea156aa"))),(0,n.kt)("li",{parentName:"ul"},"Add divider content for metadata field in Banner ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/327ad1c5fdca0d376d04fd36084b940e5dd016ab"},(0,n.kt)("inlineCode",{parentName:"a"},"327ad1c"))),(0,n.kt)("li",{parentName:"ul"},"rename to viewportWidth ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32162e7c695774bbb68ac63a0008e8b148f1e9f5"},(0,n.kt)("inlineCode",{parentName:"a"},"32162e7"))),(0,n.kt)("li",{parentName:"ul"},"don't connect component to store ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/470b8bade5e8f2eaabb20a7bb02c8e82ca42f8a0"},(0,n.kt)("inlineCode",{parentName:"a"},"470b8ba"))),(0,n.kt)("li",{parentName:"ul"},"Add end of line ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51639d804a2b84f66373fb77c569bcc43b22e303"},(0,n.kt)("inlineCode",{parentName:"a"},"51639d8"))),(0,n.kt)("li",{parentName:"ul"},"behave as mobile under 480 only ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/11b99e15cb83245a32bb04f3937f5b95a60b1e95"},(0,n.kt)("inlineCode",{parentName:"a"},"11b99e1"))),(0,n.kt)("li",{parentName:"ul"},"make it account for all mobile-s,m,l ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/69e23ae8d12042f241dc53c9e296c340d5b17089"},(0,n.kt)("inlineCode",{parentName:"a"},"69e23ae")))),(0,n.kt)("h3",{id:"045---2022-06-08"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.4.4...0.4.5"},"0.4.5")," - 2022-06-08"),(0,n.kt)("h4",{id:"-enhancements-45"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(tabs): Add style for tabs accordion template #187 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fb8adbf84ac564a14d45bb6e8f4e1661811672d5"},(0,n.kt)("inlineCode",{parentName:"a"},"fb8adbf"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): avoid react error by providing key prop to grid column ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef0b1937d614a889a0c2117e483a834ed1aec1e3"},(0,n.kt)("inlineCode",{parentName:"a"},"ef0b193")))),(0,n.kt)("h4",{id:"\ufe0f-others-39"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Cleanup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4b9637ebd2d6c015f8d4323551c6cbc4b7506df"},(0,n.kt)("inlineCode",{parentName:"a"},"d4b9637"))),(0,n.kt)("li",{parentName:"ul"},"Add style for tabs accordion template ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a10998372a268b99991f7dda55103149f29d00cb"},(0,n.kt)("inlineCode",{parentName:"a"},"a109983")))),(0,n.kt)("h3",{id:"044---2022-06-08"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.4.3...0.4.4"},"0.4.4")," - 2022-06-08"),(0,n.kt)("h4",{id:"-new-features-22"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(divider): create story for divider ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b10a2e08b14962bed9f13317754f4124ee60d313"},(0,n.kt)("inlineCode",{parentName:"a"},"b10a2e0")))),(0,n.kt)("h4",{id:"-bug-fixes-33"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(divider): restore space between classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c595c152c144463f33757157ed7d6797ae31ceed"},(0,n.kt)("inlineCode",{parentName:"a"},"c595c15"))),(0,n.kt)("li",{parentName:"ul"},"fix(divider): Text colors and transform ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e524e1002bb0700ea69782cf5a95c6073ab383d2"},(0,n.kt)("inlineCode",{parentName:"a"},"e524e10"))),(0,n.kt)("li",{parentName:"ul"},"fix(footer): story aria labels for social media links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/254bdc7ba944943f5d08a71f9d0a3a31bdc06044"},(0,n.kt)("inlineCode",{parentName:"a"},"254bdc7")))),(0,n.kt)("h4",{id:"-enhancements-46"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update logos and less structure ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/66b8e0f12825968d94f7d572f2823d9a8a3a239b"},(0,n.kt)("inlineCode",{parentName:"a"},"66b8e0f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): first footer updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d18a2ee59d0deb143075d8dfeb949898ad1f6399"},(0,n.kt)("inlineCode",{parentName:"a"},"d18a2ee"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): logo updates and adjustments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/101bc9dfe4136240457f335de867a83c28d59339"},(0,n.kt)("inlineCode",{parentName:"a"},"101bc9d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): use tokens and adjust spacing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2cb166949913f725271050e863b38e7630748135"},(0,n.kt)("inlineCode",{parentName:"a"},"2cb1669"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): moved SubFooter logic to SubFooter.jsx from Footer story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/902383a0bb3446dc69237099bd429ead5e30a6c1"},(0,n.kt)("inlineCode",{parentName:"a"},"902383a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Divider):add divider with content inside story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2d66dca901fa189d69b65239dc34b1969097be8"},(0,n.kt)("inlineCode",{parentName:"a"},"e2d66dc"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): added managed by section as properties ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9328fc3084baf22439e1892d256d9a167b911849"},(0,n.kt)("inlineCode",{parentName:"a"},"9328fc3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(divider): remove custom divider ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4870d2252ad216e82213fa1f94cc39609ae676d"},(0,n.kt)("inlineCode",{parentName:"a"},"d4870d2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Divider_:remove green color class & add tertiary ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/95f30186bc1768e08f00ad7d5ffa2a70402ac553"},(0,n.kt)("inlineCode",{parentName:"a"},"95f3018"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): use remix icons for social links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5ef9aa2cebb6f96857a1920cefbf7e367b4d7c28"},(0,n.kt)("inlineCode",{parentName:"a"},"5ef9aa2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Divider):remove clean class and use fitted prop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8d2be350dcc44fd56b5fbfb791fb6b2a45bd8a52"},(0,n.kt)("inlineCode",{parentName:"a"},"8d2be35"))),(0,n.kt)("li",{parentName:"ul"},"change(Divider): Rename color property to theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0deffc823609d23131a85bc180e4a3f5a67a64aa"},(0,n.kt)("inlineCode",{parentName:"a"},"0deffc8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update links and logo align ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7afbab9b37982a557ac8bfa4430205ce912c3b8b"},(0,n.kt)("inlineCode",{parentName:"a"},"7afbab9"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): tweaked column sizes to the values before my changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fdf271868e44bce2904cc28c6fa924ee4c9ba759"},(0,n.kt)("inlineCode",{parentName:"a"},"fdf2718"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): to latest figma design #182 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e0ba2b659db9dc1b140d853840a06bd3ce31cab"},(0,n.kt)("inlineCode",{parentName:"a"},"3e0ba2b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): move subfooter logic to the proper component #185 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/303457719128c9699dd34939bd8db2b647977667"},(0,n.kt)("inlineCode",{parentName:"a"},"3034577"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b0b872b1415c9792a5886f619195f9c0471ea564"},(0,n.kt)("inlineCode",{parentName:"a"},"b0b872b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(testimonial): update divider ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/784450abdf395318fe89d8d3d0a1e398393cc93c"},(0,n.kt)("inlineCode",{parentName:"a"},"784450a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(testimonial): changed divider color to secondary ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/84282f960ab22ccb8403e975c055c61d1023193a"},(0,n.kt)("inlineCode",{parentName:"a"},"84282f9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(divider): remove custom divider from theme config ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a0409e8df3c9ba043717140455369a3630f0da85"},(0,n.kt)("inlineCode",{parentName:"a"},"a0409e8")))),(0,n.kt)("h4",{id:"-documentation-changes-14"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(divider): switch to secondary color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/239844be374a2f6bc4667e7ab3d2f52bfdc181ad"},(0,n.kt)("inlineCode",{parentName:"a"},"239844b"))),(0,n.kt)("li",{parentName:"ul"},"docs(divider): showcase path fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5ea03f60034edc918054aa273e44b84b2537716"},(0,n.kt)("inlineCode",{parentName:"a"},"d5ea03f")))),(0,n.kt)("h4",{id:"\ufe0f-others-40"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Remove unnecessary spaces ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d137981430809345bfb3ad494e7ab981c93c3e51"},(0,n.kt)("inlineCode",{parentName:"a"},"d137981"))),(0,n.kt)("li",{parentName:"ul"},"lint fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/657cf4ed917c4ff992aa033c3d9f4884a949d86d"},(0,n.kt)("inlineCode",{parentName:"a"},"657cf4e"))),(0,n.kt)("li",{parentName:"ul"},"perf(storybook): added storybook favicon ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/38eabc3124c85dd56bf5c68c0fb1e967c39055ec"},(0,n.kt)("inlineCode",{parentName:"a"},"38eabc3")))),(0,n.kt)("h3",{id:"043---2022-06-03"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.4.2...0.4.3"},"0.4.3")," - 2022-06-03"),(0,n.kt)("h4",{id:"-bug-fixes-34"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(edit): Fix columns/accordion inner toolbar padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fafbb525baa60c339906dc6a33d2f9418d050be6"},(0,n.kt)("inlineCode",{parentName:"a"},"fafbb52")))),(0,n.kt)("h4",{id:"-enhancements-47"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): completed removal of description from guides ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/42424b9213ece8d8df84d40f1b73e142cb0ffc6b"},(0,n.kt)("inlineCode",{parentName:"a"},"42424b9")))),(0,n.kt)("h3",{id:"042---2022-06-02"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.4.1...0.4.2"},"0.4.2")," - 2022-06-02"),(0,n.kt)("h4",{id:"-enhancements-48"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): moved color swatches around in the color guide ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8a395fce52a32cf92449a24d3d4cce5abf25a284"},(0,n.kt)("inlineCode",{parentName:"a"},"8a395fc"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): removed description from components and introduced category listing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f220bf0785f5aaede8c25c4164120b09de67b018"},(0,n.kt)("inlineCode",{parentName:"a"},"f220bf0"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): rename gap to space and added em spaces ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f5b042d311518ec3fb32c7f259c39ff62d4547f8"},(0,n.kt)("inlineCode",{parentName:"a"},"f5b042d"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): moved extra docs to webdev section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1ce0797b91418272e4e405467cd1468292620005"},(0,n.kt)("inlineCode",{parentName:"a"},"1ce0797"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): moved md_components files into webdev/md_components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/73c1c08a270d504fa6f2ba2579bcb3e6e25fb112"},(0,n.kt)("inlineCode",{parentName:"a"},"73c1c08"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): added category yml for all sections ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/17405728e3f44828da50890b9fc0f4e8a07f8bf2"},(0,n.kt)("inlineCode",{parentName:"a"},"1740572"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): color guideline updates and spacing tokens documentation #148 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c1154ba172c3b3b40b565c2bcb590f1a5e6b25a4"},(0,n.kt)("inlineCode",{parentName:"a"},"c1154ba"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): modified story links to avoid broken usage tabs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/78dc8d8f4e7cade3ab0e911e6dc002eefc1e7986"},(0,n.kt)("inlineCode",{parentName:"a"},"78dc8d8"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): renamed several file id's so that they match the incremental naming sequence ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/11299c9a4c41ca901926f852227dbca0bc1aee17"},(0,n.kt)("inlineCode",{parentName:"a"},"11299c9")))),(0,n.kt)("h4",{id:"-documentation-changes-15"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(Docusaurus): timeline, testimonial, quote and tags ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aaa54ecbe182872ffc7fff275d5065ebe790d348"},(0,n.kt)("inlineCode",{parentName:"a"},"aaa54ec"))),(0,n.kt)("li",{parentName:"ul"},"docs(spacing): add relative gap tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/92abc8fff2c7006e2c64684048e7783216a230bb"},(0,n.kt)("inlineCode",{parentName:"a"},"92abc8f"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): updated colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a28c99e60867c1eaa1b7b68d4154ccaa8c9ef958"},(0,n.kt)("inlineCode",{parentName:"a"},"a28c99e"))),(0,n.kt)("li",{parentName:"ul"},"docs(tags/content): new page about tags and content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/60be40268a77606c53fc45641bc22166b50b75e7"},(0,n.kt)("inlineCode",{parentName:"a"},"60be402"))),(0,n.kt)("li",{parentName:"ul"},"docs(Docusaurus): labeled icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6a0f61ede3a36c7d66d9b3091b93b0b5ff9a445"},(0,n.kt)("inlineCode",{parentName:"a"},"f6a0f61"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): add font size and line height tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ff65e47cfe56eb3efe976300b764ba13f8685ce"},(0,n.kt)("inlineCode",{parentName:"a"},"2ff65e4"))),(0,n.kt)("li",{parentName:"ul"},"docs(spacing): add spacing gap tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2d53727f8e817588421efea464e849c9f9e16dce"},(0,n.kt)("inlineCode",{parentName:"a"},"2d53727"))),(0,n.kt)("li",{parentName:"ul"},"docs(spacing): add missing gaps ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/442db468830150c8e4ad5f91775fc5b3c47dd655"},(0,n.kt)("inlineCode",{parentName:"a"},"442db46"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): minor fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e66513f08cff598881ce1051b482ddadf8e0593"},(0,n.kt)("inlineCode",{parentName:"a"},"6e66513"))),(0,n.kt)("li",{parentName:"ul"},"docs(spacing): aligned images ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e946fe59457b861a31939e99adf4b380777e01e0"},(0,n.kt)("inlineCode",{parentName:"a"},"e946fe5"))),(0,n.kt)("li",{parentName:"ul"},"docs(spacing): new image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fcd3294d53db76580b8bffc9678a09fd65b33113"},(0,n.kt)("inlineCode",{parentName:"a"},"fcd3294")))),(0,n.kt)("h4",{id:"\ufe0f-others-41"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"merge changes from develop into docusaurus token documentation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a9401384ddf5fcfbf29e50d34f3d7851be85f19a"},(0,n.kt)("inlineCode",{parentName:"a"},"a940138"))),(0,n.kt)("li",{parentName:"ul"},"perf(docs): restructuring order ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f4134d81d1cc59b8ba0d8669415b5eb31c0513d"},(0,n.kt)("inlineCode",{parentName:"a"},"8f4134d")))),(0,n.kt)("h3",{id:"041---2022-06-02"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.4.0...0.4.1"},"0.4.1")," - 2022-06-02"),(0,n.kt)("h4",{id:"-new-features-23"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(languageLabeledIcon) : add new component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/110558eeec37d5b5f616a95298a313ba230dd6f4"},(0,n.kt)("inlineCode",{parentName:"a"},"110558e"))),(0,n.kt)("li",{parentName:"ul"},"feat(LanguageLabeledIcon):add new component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d00200c278e1dab02b449b460a325e0f2e7b8ccd"},(0,n.kt)("inlineCode",{parentName:"a"},"d00200c"))),(0,n.kt)("li",{parentName:"ul"},"feat(newTabLabeledIcon) : add new component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f5cd31257a306a58c1d9cdbf7cb428701412369"},(0,n.kt)("inlineCode",{parentName:"a"},"8f5cd31"))),(0,n.kt)("li",{parentName:"ul"},"feat(labeledIconGroup) : add new component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/787d648342d78c4f9d28fde9d08e83089ef7b08f"},(0,n.kt)("inlineCode",{parentName:"a"},"787d648"))),(0,n.kt)("li",{parentName:"ul"},"feat(DownLoadLabeledIcon) : add new component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6ea2fa1ec17ce235401a8ac741afa8fede920d26"},(0,n.kt)("inlineCode",{parentName:"a"},"6ea2fa1")))),(0,n.kt)("h4",{id:"-bug-fixes-35"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(LabeledIcon) : fix lint errors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91b042f8c16bd3e99659c1c24a5f2a946c72b03f"},(0,n.kt)("inlineCode",{parentName:"a"},"91b042f"))),(0,n.kt)("li",{parentName:"ul"},"fix(LabeledIconGroup) : fix links for tests ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/daa10653ca37f3e83302e2ebcc566b5f5ec4c4d9"},(0,n.kt)("inlineCode",{parentName:"a"},"daa1065"))),(0,n.kt)("li",{parentName:"ul"},"fix(LanguageLabeledIcon):bug fix & languages change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1436e2bc270f8f079f07b7909254bd2e6e087084"},(0,n.kt)("inlineCode",{parentName:"a"},"1436e2b"))),(0,n.kt)("li",{parentName:"ul"},"fix(LabeledIconGroup):fix based on Langauge & Download Labeled icon components changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3015864ce740f534aa204402f85a9f392e342513"},(0,n.kt)("inlineCode",{parentName:"a"},"3015864"))),(0,n.kt)("li",{parentName:"ul"},"fix(newTabLabeledIcon) : add link item ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b1a9ada3dd7dae9e1841cfde5319a6ab37b15de2"},(0,n.kt)("inlineCode",{parentName:"a"},"b1a9ada"))),(0,n.kt)("li",{parentName:"ul"},"fix(Labeled Icons):minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/00f3022cdc2bfad634707f0d6d05768868f599be"},(0,n.kt)("inlineCode",{parentName:"a"},"00f3022")))),(0,n.kt)("h4",{id:"-enhancements-49"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcons): adjust new tab labeled icon to figma and replace px with rems ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/904615d789ea711678f43ce9f9d02a450289031f"},(0,n.kt)("inlineCode",{parentName:"a"},"904615d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(LanguageLabeledIcon):implement with pop up ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0f3dd8f0388484f94351a0ab0798ab53e84c9229"},(0,n.kt)("inlineCode",{parentName:"a"},"0f3dd8f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcon): add group wrapper in labeled icon stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4b7dd314230145b6239fd800d41f546ab5d9eebb"},(0,n.kt)("inlineCode",{parentName:"a"},"4b7dd31"))),(0,n.kt)("li",{parentName:"ul"},"refactor(DownloadLabeledIcon):implement with pop up ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aa61f9b7d449c08c08bc4c004da6a0458598c828"},(0,n.kt)("inlineCode",{parentName:"a"},"aa61f9b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcons): adjust language labeled icon to figma ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5741e3d2e95665ef12670335b12d29cfbf998fdc"},(0,n.kt)("inlineCode",{parentName:"a"},"5741e3d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcons): adjust download icon to figma and replace px with rems ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ae85307a62526fed75ef0b1d37ad59076370b5a"},(0,n.kt)("inlineCode",{parentName:"a"},"4ae8530"))),(0,n.kt)("li",{parentName:"ul"},"refactor(LanguageLabeledIcons):minor storybook change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/78f55442a80cbc2f716ba81274ed08204e3c502a"},(0,n.kt)("inlineCode",{parentName:"a"},"78f5544"))),(0,n.kt)("li",{parentName:"ul"},"refactor(LanguageLabeledIcon): set language code to uppercase and minor storybook change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac286931282c0a69bc6d7803e96cbe302db8994f"},(0,n.kt)("inlineCode",{parentName:"a"},"ac28693"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcon): adjust paddings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9c1ecddc52c81be1d952d0af67862a284eba9eec"},(0,n.kt)("inlineCode",{parentName:"a"},"9c1ecdd"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcons): update margins for group labeled icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5fa5ca9103a5d8ad1510c90cc8c46d0c82abcc63"},(0,n.kt)("inlineCode",{parentName:"a"},"5fa5ca9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcons): add variable for icon color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f9d3cba5115c5c91aaaca49c1f834950400673a"},(0,n.kt)("inlineCode",{parentName:"a"},"9f9d3cb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcons): update colors on download links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c04264229c91bfdea927fd22f4ee1e8ddbcebd5c"},(0,n.kt)("inlineCode",{parentName:"a"},"c042642")))),(0,n.kt)("h4",{id:"-internal-changes-16"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(labeledIconGroup) : lint changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/535cee4795dff75b35856cb4406a9bd33ee07ca4"},(0,n.kt)("inlineCode",{parentName:"a"},"535cee4"))),(0,n.kt)("li",{parentName:"ul"},"style(downloadLabeledIcon) : fix styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d8e3acb3bac1a4174d4bb526d6188cb5e5f8faa"},(0,n.kt)("inlineCode",{parentName:"a"},"6d8e3ac"))),(0,n.kt)("li",{parentName:"ul"},"style(downloadLabeledIcon) : fix alignment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/455801701d2958515885ba2c398312f0c56057b0"},(0,n.kt)("inlineCode",{parentName:"a"},"4558017"))),(0,n.kt)("li",{parentName:"ul"},"chore(LabeledIconGroup) : lint changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab364763bb2526adbbb7fc3c656a16b497568940"},(0,n.kt)("inlineCode",{parentName:"a"},"ab36476")))),(0,n.kt)("h3",{id:"040---2022-06-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.3.1...0.4.0"},"0.4.0")," - 2022-06-01"),(0,n.kt)("h4",{id:"-new-features-24"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(Carousel): create carousel for cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2b0d73798b4fcbf2897d7a8167d9b4d3b3374fb2"},(0,n.kt)("inlineCode",{parentName:"a"},"2b0d737"))),(0,n.kt)("li",{parentName:"ul"},"feat(ItemwithIcons): Initial Item group with icons, new item variation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7f4ea476264856845a07cd24be6ec86ccd21ed8d"},(0,n.kt)("inlineCode",{parentName:"a"},"7f4ea47"))),(0,n.kt)("li",{parentName:"ul"},"feat(utilities): add file and basic utilities ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/05c88b294a49590e3fb355fb6e113f5020442915"},(0,n.kt)("inlineCode",{parentName:"a"},"05c88b2"))),(0,n.kt)("li",{parentName:"ul"},"feat(utilities): add file with basic utilities classes #173 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/855185ff22c77efb75cc5c7850d181254b4c4927"},(0,n.kt)("inlineCode",{parentName:"a"},"855185f")))),(0,n.kt)("h4",{id:"-bug-fixes-36"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(tokens): hsla function for shadows ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8e5d37a6e88321b1e2daf995b407c4ddd6e866e"},(0,n.kt)("inlineCode",{parentName:"a"},"b8e5d37"))),(0,n.kt)("li",{parentName:"ul"},"fix(tokens): remove css var from less file ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a9c422476b412287713a6b475406615c3aed2aca"},(0,n.kt)("inlineCode",{parentName:"a"},"a9c4224"))),(0,n.kt)("li",{parentName:"ul"},"fix(carousel):add storybook controls descriptions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/269a60383ed1e54fc57e26d4eed6b37d1da32236"},(0,n.kt)("inlineCode",{parentName:"a"},"269a603"))),(0,n.kt)("li",{parentName:"ul"},"fix(item): remove image width css from item.less ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7b21cb2d5ddf6a6f72646f47fd268a0bd7af757d"},(0,n.kt)("inlineCode",{parentName:"a"},"7b21cb2"))),(0,n.kt)("li",{parentName:"ul"},"fix(table): Set responsive breakpoint to @tabletBreakpoint ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/067e01842030bfa5639e2a55cb8af5047bb2996f"},(0,n.kt)("inlineCode",{parentName:"a"},"067e018")))),(0,n.kt)("h4",{id:"-enhancements-50"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(item): import item.less in theme definitions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c51637480192dbece828616010174648ac865e2e"},(0,n.kt)("inlineCode",{parentName:"a"},"c516374"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Label):add corner,ribbon & basic label stories and styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2bbbb947113a59127f91b86917ef0edbf36ab16"},(0,n.kt)("inlineCode",{parentName:"a"},"e2bbbb9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Label):style changes based on label importance class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce4d5d1a5bf1b1183242a253e37c509d61f82b8c"},(0,n.kt)("inlineCode",{parentName:"a"},"ce4d5d1"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): rename gap to space and added em spaces ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/719efc44070ef87f049a92e4da96bb111e9fc8ff"},(0,n.kt)("inlineCode",{parentName:"a"},"719efc4"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): add classes for size, set default to tile and add controls for grouped items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5a0405abba4e5f5d36f899dc9e47f43a96d5e49"},(0,n.kt)("inlineCode",{parentName:"a"},"d5a0405"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): add borders, shadows, shapes and z-index tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7069106c2b0ada9cdbad63249b4ada7fde72e05f"},(0,n.kt)("inlineCode",{parentName:"a"},"7069106"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): name spacing tokens gaps and added missing values up to 80px as documented ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9fbd912a6f027150149d82678f88885a939120b0"},(0,n.kt)("inlineCode",{parentName:"a"},"9fbd912"))),(0,n.kt)("li",{parentName:"ul"},"refactor(quote): Rename sourceInfo to extra info ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/76c2b400de4814fe79f303bfd2a82842c848231c"},(0,n.kt)("inlineCode",{parentName:"a"},"76c2b40"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): WIP replacing unstackable with row ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e3a44de4b2dd26667e80e0d131c55b08f3c527d9"},(0,n.kt)("inlineCode",{parentName:"a"},"e3a44de"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tocens): add color design tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/13bb165e103a25aadb9da6414773dc0d35081d88"},(0,n.kt)("inlineCode",{parentName:"a"},"13bb165"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): adjust margins to match figma designs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6334581b336a2f486e85199f371126beea47b92f"},(0,n.kt)("inlineCode",{parentName:"a"},"6334581"))),(0,n.kt)("li",{parentName:"ul"},"refactor(carousel): remove title from story and color on card hover ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/12a1d7c3bd5e7ba6edf4eb20a2d7a6f8f22955f9"},(0,n.kt)("inlineCode",{parentName:"a"},"12a1d7c"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): updated sizes with 4-8-16px increments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f53d655df2b24053a5d331c56dfd14bd3602dfd"},(0,n.kt)("inlineCode",{parentName:"a"},"1f53d65"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): added size tokens to be used for width of elements ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cda5dea1f6ad1ae980c89999d323d7b385894025"},(0,n.kt)("inlineCode",{parentName:"a"},"cda5dea"))),(0,n.kt)("li",{parentName:"ul"},"change(utilities): values need important rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/96150d9a22cb6be6f338f1e9d052cbd65e3602fc"},(0,n.kt)("inlineCode",{parentName:"a"},"96150d9"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): added also rem space values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aedbbddaf7f8be88ed2f8a2b8c21b60752896c53"},(0,n.kt)("inlineCode",{parentName:"a"},"aedbbdd"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): updated z-index tokens with negative values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/404efe4244d67276b435e60a1d7a69aaa90e3d8a"},(0,n.kt)("inlineCode",{parentName:"a"},"404efe4"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): add 14px font size token ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8d8695dce62e7f29af01447308460e4fe3f72b21"},(0,n.kt)("inlineCode",{parentName:"a"},"8d8695d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): restructured and improved sections navigation #174 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b47b0266ffd6baeaf1a5aea1a7ab22c909976de1"},(0,n.kt)("inlineCode",{parentName:"a"},"b47b026"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): add 12 and 14px font size token #176 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/368114729536f03dd85c2d3565b984c3bdfe3a72"},(0,n.kt)("inlineCode",{parentName:"a"},"3681147"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): remove conditional border radius ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f0fe5ada7b74e9c87623dd2b2774283dd89b9a58"},(0,n.kt)("inlineCode",{parentName:"a"},"f0fe5ad")))),(0,n.kt)("h4",{id:"-documentation-changes-16"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(website): created new sections, improved website navigation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/243f0be4d7fa6e988da0ca0f586f5ea478573eef"},(0,n.kt)("inlineCode",{parentName:"a"},"243f0be"))),(0,n.kt)("li",{parentName:"ul"},"docs(homepage): adding design system homepage with links for upcoming sections ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c9a968508acff74d1182e68cf049046dafd564c5"},(0,n.kt)("inlineCode",{parentName:"a"},"c9a9685"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): copyedit, improved navigation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/998762a5bd40d08f619c00743b66d82b43aed653"},(0,n.kt)("inlineCode",{parentName:"a"},"998762a"))),(0,n.kt)("li",{parentName:"ul"},"docs(website): restructuring, moved current DS docs to new folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8bb612f1313dfc739d7912aa2e3252f468e1122f"},(0,n.kt)("inlineCode",{parentName:"a"},"8bb612f"))),(0,n.kt)("li",{parentName:"ul"},"docs(homepage): copy editing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee37d6f1d282b973af744f4305c0eb94c0993113"},(0,n.kt)("inlineCode",{parentName:"a"},"ee37d6f")))),(0,n.kt)("h4",{id:"\ufe0f-others-42"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Release 0.4.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f4bc50928ab877f3670b181dbe6e8cfff7fa2daa"},(0,n.kt)("inlineCode",{parentName:"a"},"f4bc509"))),(0,n.kt)("li",{parentName:"ul"},"feature(homepage): added Item group with icons #167 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ec99f53aeb183b24073be4014a9c2ec30d5235c"},(0,n.kt)("inlineCode",{parentName:"a"},"2ec99f5"))),(0,n.kt)("li",{parentName:"ul"},"feature(tokens): added borders, z-index, shadows tokens #171 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/74c178837cedc7ee9fc55effde1096dc03245574"},(0,n.kt)("inlineCode",{parentName:"a"},"74c1788"))),(0,n.kt)("li",{parentName:"ul"},"feature(tokens): added initial color design tokens #169 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/da3eae05d07783aa5eadaed5d508ee3be8acc47d"},(0,n.kt)("inlineCode",{parentName:"a"},"da3eae0"))),(0,n.kt)("li",{parentName:"ul"},"perf(carousel): added slick library ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca9be5125efa864bc30a0178274d744c5b2bc500"},(0,n.kt)("inlineCode",{parentName:"a"},"ca9be51")))),(0,n.kt)("h3",{id:"031---2022-05-19"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.3.0...0.3.1"},"0.3.1")," - 2022-05-19"),(0,n.kt)("h4",{id:"-bug-fixes-37"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(input,segment): toggle inputs and padding fixes within Volto sidebar forms ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/de030d617325a8f9d028a5c1615faa160fcdd763"},(0,n.kt)("inlineCode",{parentName:"a"},"de030d6")))),(0,n.kt)("h4",{id:"-enhancements-51"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(login): restored width of login container to 376px ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0564293346b2402c3c86009b61066da4200662b8"},(0,n.kt)("inlineCode",{parentName:"a"},"0564293")))),(0,n.kt)("h3",{id:"030---2022-05-17"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.2.4...0.3.0"},"0.3.0")," - 2022-05-17"),(0,n.kt)("h4",{id:"-new-features-25"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(Callout):create Callout component with Blockquote style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3d486b1c2c7f74ee8bc4b3a5e1bf3993ac98f6dd"},(0,n.kt)("inlineCode",{parentName:"a"},"3d486b1"))),(0,n.kt)("li",{parentName:"ul"},"feat(callout): Align the Callout component with Volto slate component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e9343ff7008cd3d60700929e8861c7bdd06df4d3"},(0,n.kt)("inlineCode",{parentName:"a"},"e9343ff")))),(0,n.kt)("h4",{id:"-bug-fixes-38"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(testimonial): fix storybook arg names ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b9df52f7151ef759fd672d365b2d74f6db535ad0"},(0,n.kt)("inlineCode",{parentName:"a"},"b9df52f"))),(0,n.kt)("li",{parentName:"ul"},"fix(table): tweak responsive table for extra long headers ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7f9f9e25f7c57d4bf7edd2546a7579b892867b5c"},(0,n.kt)("inlineCode",{parentName:"a"},"7f9f9e2"))),(0,n.kt)("li",{parentName:"ul"},"fix(quote): fix color and padding issue ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/310d6b37bdf5df3da2d2103eab8f4fa5020c95ab"},(0,n.kt)("inlineCode",{parentName:"a"},"310d6b3"))),(0,n.kt)("li",{parentName:"ul"},"fix(accordion): Fix accordion active title color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/57af1650a0b830e01c79e21b130784190defbcc0"},(0,n.kt)("inlineCode",{parentName:"a"},"57af165"))),(0,n.kt)("li",{parentName:"ul"},"fix(testimonial): remove info arguement ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9593d95f6352fb5aea48c3611b27b4bc6a9ae7e4"},(0,n.kt)("inlineCode",{parentName:"a"},"9593d95")))),(0,n.kt)("h4",{id:"-enhancements-52"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(Table):add responsive mobile table story and styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aed69e698e5b89e33a4c331570755934267492af"},(0,n.kt)("inlineCode",{parentName:"a"},"aed69e6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(testimonial): adjust to volto design | fix avatar image size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/546070e494ad187c50913b5742dab49ce5475a84"},(0,n.kt)("inlineCode",{parentName:"a"},"546070e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Quote):rename Pullquote component to Quote ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9384a0c129b8e4eed637e51a9669c41d8ade69d4"},(0,n.kt)("inlineCode",{parentName:"a"},"9384a0c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Quote):rename Quote.Metadata to Quote.SourceInfo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dfae8b1c147659d24dfd1a13fb4c3098e5865a12"},(0,n.kt)("inlineCode",{parentName:"a"},"dfae8b1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Quote): rename Author to Source ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d400f6a0ec0062f58782b4e170f4a1a9a31c56c"},(0,n.kt)("inlineCode",{parentName:"a"},"6d400f6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Quote):move Testimonial component under Quote folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2467c2089577d67ef5689a2507cb860a837f6a0"},(0,n.kt)("inlineCode",{parentName:"a"},"e2467c2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(testimonial): readjust rounded card ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b41933417a44dabcf829a3346d91c142dd6472d3"},(0,n.kt)("inlineCode",{parentName:"a"},"b419334"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Table):wrap table with semantic ui container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24ac2bb4813df33547f684220e1e12af5ca6df7e"},(0,n.kt)("inlineCode",{parentName:"a"},"24ac2bb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Testimonial):minor storybook bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7b6d128c6be3b2481d4765cebca82af6cafbea05"},(0,n.kt)("inlineCode",{parentName:"a"},"7b6d128"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Callout): wrap story with semantic ui container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ead362d88f43fa1380e8be5481cbc38c055060f8"},(0,n.kt)("inlineCode",{parentName:"a"},"ead362d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(quote): update action name to match the functionality ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/caf2e359cada8056f280d2cd137776d64f82a2af"},(0,n.kt)("inlineCode",{parentName:"a"},"caf2e35"))),(0,n.kt)("li",{parentName:"ul"},"refactor(table): add borders to responsive table with celled attribute ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8a71a670fb34a11fbe4cef7365b91c6be84b5b54"},(0,n.kt)("inlineCode",{parentName:"a"},"8a71a67"))),(0,n.kt)("li",{parentName:"ul"},"change(table): make use of headerSortableWhiteSpace variable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fd836fbe82e92864a628bf4d9d3093674890f722"},(0,n.kt)("inlineCode",{parentName:"a"},"fd836fb"))),(0,n.kt)("li",{parentName:"ul"},"change(table): use the @mobileLandscapeBreakpoint for max 480px media query ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/90880ab324b6a66c7741819dd0d913504751454f"},(0,n.kt)("inlineCode",{parentName:"a"},"90880ab"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Quote):rename pullquote to Quote in Testimonial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f54da192ab3b0823b0d6c77254f8954ab94506c8"},(0,n.kt)("inlineCode",{parentName:"a"},"f54da19"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Testimonial): change card class name ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e995c32bc70780e4315c4dc02d6b6fa9a0c5b29d"},(0,n.kt)("inlineCode",{parentName:"a"},"e995c32"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Testimonial): prettier changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/904594b9814c3d8900656f0e4c8d3a99481efe94"},(0,n.kt)("inlineCode",{parentName:"a"},"904594b")))),(0,n.kt)("h4",{id:"\ufe0f-others-43"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feature(tokens): added tokens folder for design tokens we can use in the system ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a542172cfd84dde0286b4332e66a617a1f3d13bf"},(0,n.kt)("inlineCode",{parentName:"a"},"a542172"))),(0,n.kt)("li",{parentName:"ul"},"perf(lint): fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2ef3abb9daa8fee3dd103adc14246c412951427"},(0,n.kt)("inlineCode",{parentName:"a"},"f2ef3ab"))),(0,n.kt)("li",{parentName:"ul"},"Release 0.3.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8724b2809027b2e359dcd64e418a33cade4ad487"},(0,n.kt)("inlineCode",{parentName:"a"},"8724b28")))),(0,n.kt)("h3",{id:"024---2022-05-13"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.2.3...0.2.4"},"0.2.4")," - 2022-05-13"),(0,n.kt)("h4",{id:"-enhancements-53"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(segment): brought back overrides from pastanaga into our theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/14efd021f81898bb0f2d3f1a2e8677445420591a"},(0,n.kt)("inlineCode",{parentName:"a"},"14efd02"))),(0,n.kt)("li",{parentName:"ul"},"change(container): removed padding from containers restoring thus the defaults ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c2ed813cf2f7ce284e33f2e94e02ff16678c2d05"},(0,n.kt)("inlineCode",{parentName:"a"},"c2ed813"))),(0,n.kt)("li",{parentName:"ul"},"change(grid-story): added container as grid width is influenced by container width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/459f4813ee3c5325a3db22d417ac5f23063bd4d2"},(0,n.kt)("inlineCode",{parentName:"a"},"459f481"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumb): removed padding from breadcrumb added by container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5df5675a519085badc030416e5bb784a9f73321"},(0,n.kt)("inlineCode",{parentName:"a"},"c5df567"))),(0,n.kt)("li",{parentName:"ul"},"change(container): modified all outputted widths to align to grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f29cefa4bfee1fe50844c8450de39ef4b0915d4"},(0,n.kt)("inlineCode",{parentName:"a"},"9f29cef"))),(0,n.kt)("li",{parentName:"ul"},"change(breakpoints): restore Semantic UI breakpoints, adding extra needed values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e7f5b1e4fac6453458078bb02cdc66c328843b59"},(0,n.kt)("inlineCode",{parentName:"a"},"e7f5b1e"))),(0,n.kt)("li",{parentName:"ul"},"change(container): restore maxWidth to 100% now that the last value is 1120px ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8b55c58d3bbc8967b20de19a828aedd2f1473ee5"},(0,n.kt)("inlineCode",{parentName:"a"},"8b55c58"))),(0,n.kt)("li",{parentName:"ul"},"change(header): wrap header globalnav links useful for editing section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/10d4f56624510eb63155ab330dcf0475b0728ed4"},(0,n.kt)("inlineCode",{parentName:"a"},"10d4f56"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumb): added vertical variant to the breadcrumbs like we do in Volto ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f405f8437be6be221b055a41c5d391f4cc94385d"},(0,n.kt)("inlineCode",{parentName:"a"},"f405f84"))),(0,n.kt)("li",{parentName:"ul"},"change(breakpoints): added also contentBreakpoint for backward compatibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b6c9212378a37639e6154d8d8e837169bcbac8b5"},(0,n.kt)("inlineCode",{parentName:"a"},"b6c9212")))),(0,n.kt)("h4",{id:"\ufe0f-others-44"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"[JENKINSFILE]"," Add failure comment, no jenkins fail ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c325bf14f3fb0da150f2a56cda0a9f03d8d8a628"},(0,n.kt)("inlineCode",{parentName:"a"},"c325bf1"))),(0,n.kt)("li",{parentName:"ul"},"prettier changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/134da52549b9d5eac5a12b7ad3005073500ac2c4"},(0,n.kt)("inlineCode",{parentName:"a"},"134da52"))),(0,n.kt)("li",{parentName:"ul"},"[JENKINSFILE]"," format PR comments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/739438c64950c745d630d1998314a2bed595b23a"},(0,n.kt)("inlineCode",{parentName:"a"},"739438c"))),(0,n.kt)("li",{parentName:"ul"},"[JENKINSFILE]"," mention comment author in comment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/39a26aa1ff0f35e93e8df9f442c29c5ab79ff493"},(0,n.kt)("inlineCode",{parentName:"a"},"39a26aa"))),(0,n.kt)("li",{parentName:"ul"},"[JENKINSFILE]"," remove debug, add error per stage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/903eecdb6bcbb8d73cff5e447d80c85e2a2c906d"},(0,n.kt)("inlineCode",{parentName:"a"},"903eecd")))),(0,n.kt)("h3",{id:"023---2022-04-29"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.2.2...0.2.3"},"0.2.3")," - 2022-04-29"),(0,n.kt)("h4",{id:"-new-features-26"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(CallToAction):add feat call to action ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab53642f27c996f929ff871d0794add39bab6c23"},(0,n.kt)("inlineCode",{parentName:"a"},"ab53642")))),(0,n.kt)("h4",{id:"-enhancements-54"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(button): add container to stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6c02c1953e102f2d90ab23023d6b4dfc738ced2e"},(0,n.kt)("inlineCode",{parentName:"a"},"6c02c19"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tab): update vertical tab columns and content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b473fabee196a3ec420e29160448d2be3d1685cc"},(0,n.kt)("inlineCode",{parentName:"a"},"b473fab"))),(0,n.kt)("li",{parentName:"ul"},'refactor(call to action):render call to action with Button as="a" ',(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e7dfabfc2f006505b0f1c802dc6fb48611518bcb"},(0,n.kt)("inlineCode",{parentName:"a"},"e7dfabf"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button): update inverted button colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c822021ab37939632416ce74c0cc88a64b98a3c1"},(0,n.kt)("inlineCode",{parentName:"a"},"c822021"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Tab):scrollbar change in mobile & vertical tab fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0e34cbf459e67b6910217f30a44a1e81f33df622"},(0,n.kt)("inlineCode",{parentName:"a"},"0e34cbf"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): added icon class to share icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48e866e4251dd517c0477cd5a42cec1a98e2f16d"},(0,n.kt)("inlineCode",{parentName:"a"},"48e866e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Button): move button to forms folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/94996fcdf1ea7e55c63dd44e10edf1b44b9bdef5"},(0,n.kt)("inlineCode",{parentName:"a"},"94996fc"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Tab):minor change in secondary pointing menu variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/280b6c41a2107bccb38500f54eb5663ef62c7ae3"},(0,n.kt)("inlineCode",{parentName:"a"},"280b6c4")))),(0,n.kt)("h4",{id:"-documentation-changes-17"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(button): import call to action stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e4eed44e3519ae3dba7d16e252271a964fcb7a4b"},(0,n.kt)("inlineCode",{parentName:"a"},"e4eed44")))),(0,n.kt)("h3",{id:"022---2022-04-22"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.2.1...0.2.2"},"0.2.2")," - 2022-04-22"),(0,n.kt)("h4",{id:"-bug-fixes-39"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(publicationCard): restore line endings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/582859e0ab4fa969662d4cf3e60fe75b160f052a"},(0,n.kt)("inlineCode",{parentName:"a"},"582859e"))),(0,n.kt)("li",{parentName:"ul"},"fix(form): added back overrides from Pastanaga theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a3f7ff810cdeb55b009c2dadc6753d01bbd10d8c"},(0,n.kt)("inlineCode",{parentName:"a"},"a3f7ff8"))),(0,n.kt)("li",{parentName:"ul"},"fix(OrderedList) : add list only if sub list exists ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8acbc8d5a492b411b169b106ab64bb78563f891f"},(0,n.kt)("inlineCode",{parentName:"a"},"8acbc8d"))),(0,n.kt)("li",{parentName:"ul"},"fix(label): update highlight label color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d55bbb03a5d28b2f269c1a1ca447c67dcdc7a748"},(0,n.kt)("inlineCode",{parentName:"a"},"d55bbb0"))),(0,n.kt)("li",{parentName:"ul"},"fix(publication card): run prettier ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/81a5bfc123ce69c44562a5585e41a630fe0bbf5a"},(0,n.kt)("inlineCode",{parentName:"a"},"81a5bfc"))),(0,n.kt)("li",{parentName:"ul"},"fix(avatar) : fix naming convention for arg ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/84fc5fa8faa7887f45cd52e58aa6fa6f8b951d26"},(0,n.kt)("inlineCode",{parentName:"a"},"84fc5fa"))),(0,n.kt)("li",{parentName:"ul"},"fix(tab): restore mobile font sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/58f39be02a45ade92873b86597c33763379e0f44"},(0,n.kt)("inlineCode",{parentName:"a"},"58f39be"))),(0,n.kt)("li",{parentName:"ul"},"fix(addForm): add min height to add form and fixed block chooser overflow ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca4415d49b973378894ec9270501beafbefff776"},(0,n.kt)("inlineCode",{parentName:"a"},"ca4415d"))),(0,n.kt)("li",{parentName:"ul"},"fix(OrderedList): adjust margins to fourth sublists ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/663d384790920f164d51edb304c411275972fbb7"},(0,n.kt)("inlineCode",{parentName:"a"},"663d384"))),(0,n.kt)("li",{parentName:"ul"},"fix(dropdown): being hidden because of third party css ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d353dfd65e93d08a3c8584adeeebea50bf7efe8"},(0,n.kt)("inlineCode",{parentName:"a"},"7d353df"))),(0,n.kt)("li",{parentName:"ul"},"fix(modal): overflow hidden as clearfix of last child from modal ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4923f5165a0a7e8d2dd33ea4c35f9f951372909"},(0,n.kt)("inlineCode",{parentName:"a"},"b4923f5"))),(0,n.kt)("li",{parentName:"ul"},"fix(RelatedContent):fix merge conflict ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/adc34bfdac7d668aa27578eb2a4844c136e0360f"},(0,n.kt)("inlineCode",{parentName:"a"},"adc34bf"))),(0,n.kt)("li",{parentName:"ul"},"fix(button): labeled class needs to be placed after left or right keyword ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53d1204fe52665fe1023747da359d3100d45e58f"},(0,n.kt)("inlineCode",{parentName:"a"},"53d1204")))),(0,n.kt)("h4",{id:"-enhancements-55"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(card): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e10e3d610a313c4e1995676130e2677f0ebab070"},(0,n.kt)("inlineCode",{parentName:"a"},"e10e3d6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add card variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e16d05b4afa678b9089987b42a8257323a78093f"},(0,n.kt)("inlineCode",{parentName:"a"},"e16d05b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): remove stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0deb0cab6d7fd73957b149325960c266c33cdc6f"},(0,n.kt)("inlineCode",{parentName:"a"},"0deb0ca"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):delete primary and secondary card stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f95d227a026ecc34b29cc3e4938c3d13906cfd8"},(0,n.kt)("inlineCode",{parentName:"a"},"1f95d22"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Avatar) : remake avatar as card variant ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea77cdd1acafd2ea288f11074423705e5d6b7412"},(0,n.kt)("inlineCode",{parentName:"a"},"ea77cdd"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add styles for card variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7407bd30e722f2d7b1a9d75a8c7cf155bf1c4996"},(0,n.kt)("inlineCode",{parentName:"a"},"7407bd3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): add story with related content inside of a tab ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dca008a35b27e4a75c13ef965ab8764df0d3b357"},(0,n.kt)("inlineCode",{parentName:"a"},"dca008a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): Rename variables from avatar to rounded ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/be0131631cf8e303f4077fe93b6685fd6b34bf46"},(0,n.kt)("inlineCode",{parentName:"a"},"be01316"))),(0,n.kt)("li",{parentName:"ul"},"refactor(avatar): update less variables and layer structure ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f965db1dd17d90e7165f66d39fdda9016c2eae91"},(0,n.kt)("inlineCode",{parentName:"a"},"f965db1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(PublicationCard):remake publication card to be a semantic card variation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5a0c6ab21c22a53aa6e34fafecfae15a3d435391"},(0,n.kt)("inlineCode",{parentName:"a"},"5a0c6ab"))),(0,n.kt)("li",{parentName:"ul"},"change(button): simplified button styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fe892d6f2f59aecf3f9e8b04f18b55fb0d384021"},(0,n.kt)("inlineCode",{parentName:"a"},"fe892d6"))),(0,n.kt)("li",{parentName:"ul"},"change(button): simplified storybook naming and examples ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9a7df4f46c24a234dd8bb290336ac8e7d5c7422b"},(0,n.kt)("inlineCode",{parentName:"a"},"9a7df4f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Avatar) : convert avatar component to card variation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2004a941c18f8fe21f96f88d3288446fd5e283e8"},(0,n.kt)("inlineCode",{parentName:"a"},"2004a94"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Related Content): change in grid and add see all button ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/955450e974c89aa2297eaa28d278e5098fea7705"},(0,n.kt)("inlineCode",{parentName:"a"},"955450e"))),(0,n.kt)("li",{parentName:"ul"},"change(button): added back button.overrides from pastanaga theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3b55acbf8b8df0e3daa475ab12e4db44693a4053"},(0,n.kt)("inlineCode",{parentName:"a"},"3b55acb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add card class control ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/68c91a9bf7e78874e12e868a0c466f12715a0698"},(0,n.kt)("inlineCode",{parentName:"a"},"68c91a9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):delete publication card variables & overrides files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6be8a037118762cf2280fbe44ba097a0cb7a79e0"},(0,n.kt)("inlineCode",{parentName:"a"},"6be8a03"))),(0,n.kt)("li",{parentName:"ul"},"refactor(OrderedList): rename TOC to Ordered List and add container to the story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e00c4db8e623651eb2ec9ad45de6e3d8c2693b2b"},(0,n.kt)("inlineCode",{parentName:"a"},"e00c4db"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add card grid fluid story with no columns ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f38251ca3fa04a9b586468ead44bbfe8ae110fbb"},(0,n.kt)("inlineCode",{parentName:"a"},"f38251c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(list): remove horizontal control ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f5e576a37452ed368d6f9cf4d55960e737d48ad"},(0,n.kt)("inlineCode",{parentName:"a"},"1f5e576"))),(0,n.kt)("li",{parentName:"ul"},"refactor(avatarGrid): update less variables and layer structure ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/db554a894ca10ba50ff425883000177854ea2455"},(0,n.kt)("inlineCode",{parentName:"a"},"db554a8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Related Content):show button when there are more hidden cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/57ff1c8d485d16c34002da22bd765069e6eb3df0"},(0,n.kt)("inlineCode",{parentName:"a"},"57ff1c8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(RelatedContent):change to use new card variant instead of publication card component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7cf424ae885d9b657a7635fc67a74a8af4c4e905"},(0,n.kt)("inlineCode",{parentName:"a"},"7cf424a"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumb): brought back pastanaga overrides to breadcrumbs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bca1c939c1d49dab1d4b8e72c0999d78383fd643"},(0,n.kt)("inlineCode",{parentName:"a"},"bca1c93"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):delete publication card folder & story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/68bf77306d710651bb2177d429f42b8efc127db2"},(0,n.kt)("inlineCode",{parentName:"a"},"68bf773"))),(0,n.kt)("li",{parentName:"ul"},"change(buttons): modified basic and circular variant behavior ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c06fed9fa74216cf76971b7789dad231a5125ce8"},(0,n.kt)("inlineCode",{parentName:"a"},"c06fed9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):tertiary variation minor story update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87b8dca0b8ef6c6f0fbf1ea6bc71b7b8b6ee9205"},(0,n.kt)("inlineCode",{parentName:"a"},"87b8dca"))),(0,n.kt)("li",{parentName:"ul"},"refactor(DescriptionList): add container to story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d647c1a17097eae9bdfaf8eb8068f6d1d0b13972"},(0,n.kt)("inlineCode",{parentName:"a"},"d647c1a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(List):render ordered list with ol,li tags ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87813c1a942ce498f89b51fe79a59b117afd28b0"},(0,n.kt)("inlineCode",{parentName:"a"},"87813c1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(OrderedList) : change table of contents story to ordered list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb6197c872a97f1b990c675554b1da9b0a8f7959"},(0,n.kt)("inlineCode",{parentName:"a"},"cb6197c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(publicationCard): update tag and name variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c109ad98f257fea233f31d767c4a037a2758be2d"},(0,n.kt)("inlineCode",{parentName:"a"},"c109ad9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(UnorderedList): update list as ul, list items as li and add container to strory ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2c096e117125a7fb943a5d2e665c0077761b271c"},(0,n.kt)("inlineCode",{parentName:"a"},"2c096e1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):organize controls and minor bug fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f3f6e35df077e348ea1e0c2e5c5bd73d4af5aef9"},(0,n.kt)("inlineCode",{parentName:"a"},"f3f6e35"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables): publication card style changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5a84e99ebea6345e45fac3b7ffc077ec42dfb45"},(0,n.kt)("inlineCode",{parentName:"a"},"c5a84e9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables): add less to related content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e1a55438a9fc9dd141a9515c5363d834732a0c4d"},(0,n.kt)("inlineCode",{parentName:"a"},"e1a5543"))),(0,n.kt)("li",{parentName:"ul"},"refactor(RelatedContent):delete publication card component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ed0ed4a1497224b669386f6d0942a79d00555ea"},(0,n.kt)("inlineCode",{parentName:"a"},"2ed0ed4"))),(0,n.kt)("li",{parentName:"ul"},"change(button): basic button is again without padding, border and background ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5a907c721bda1d065153b108d6c9dc0ee20a886d"},(0,n.kt)("inlineCode",{parentName:"a"},"5a907c7"))),(0,n.kt)("li",{parentName:"ul"},"refactor(PublicationCard):remove link wrapper ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5911a0db1967c58311a6776864f92bc0692052fa"},(0,n.kt)("inlineCode",{parentName:"a"},"5911a0d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables): change publication card height per viewport ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d7a525615672f387a2c8a0457bcde5c08aec45dd"},(0,n.kt)("inlineCode",{parentName:"a"},"d7a5256"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Timeline):change timeline icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b2fe0bf9a7a4583f1f10765a9f8c3c989412d472"},(0,n.kt)("inlineCode",{parentName:"a"},"b2fe0bf"))),(0,n.kt)("li",{parentName:"ul"},"refactor(publicationCard): replace px with rems ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53bf8da5e42343de7f7f940c266beb5e530dd63a"},(0,n.kt)("inlineCode",{parentName:"a"},"53bf8da"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Related Content): change in related content grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bf856ce66f9a74cb440cf8a7c93f62cd0d3965e9"},(0,n.kt)("inlineCode",{parentName:"a"},"bf856ce"))),(0,n.kt)("li",{parentName:"ul"},"refactor(List):render description list with dl,dt,dd tags ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ec669a74da08f7a82bb4a1a0a2d752b6ee5ba4bb"},(0,n.kt)("inlineCode",{parentName:"a"},"ec669a7"))),(0,n.kt)("li",{parentName:"ul"},"change(button): show only labeled variant for buttons with icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bf499446dc02e4be8d6452a3e0cba5797b8a005e"},(0,n.kt)("inlineCode",{parentName:"a"},"bf49944"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): import image for rounded card ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca5a47ea2cd713336c7c8ecdebebbdacd681282f"},(0,n.kt)("inlineCode",{parentName:"a"},"ca5a47e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progress): add container to story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dfb33bb8f3560d43e3e7300560bb557591c0a6ba"},(0,n.kt)("inlineCode",{parentName:"a"},"dfb33bb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): add publication card story with different description sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/23af97bc708ac70d70b92efe9a782548c65aabc5"},(0,n.kt)("inlineCode",{parentName:"a"},"23af97b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(List):render default list with dl & dt tags ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ece2280eb06481b3fd42e7a1ffec5c71c08e736f"},(0,n.kt)("inlineCode",{parentName:"a"},"ece2280"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): add publication cards stories with longer description ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/37adefa500c8a85a5b0b86e5b17c687828ea21fc"},(0,n.kt)("inlineCode",{parentName:"a"},"37adefa"))),(0,n.kt)("li",{parentName:"ul"},"change(button): basic icon buttons no longer have box shadows ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c2f3ea38ec3c62dce37612ac1e666a0b064309f7"},(0,n.kt)("inlineCode",{parentName:"a"},"c2f3ea3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): remove story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/afc5f7903a0049563355e3c9292fdd89fa532740"},(0,n.kt)("inlineCode",{parentName:"a"},"afc5f79"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables): change card description line number per device ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6946fdae2a1ede28a0e5971736817b3ae19bf290"},(0,n.kt)("inlineCode",{parentName:"a"},"6946fda"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): update rounded card image path ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8db3a85a45e8e05a3fe86ab824e7550d437222c3"},(0,n.kt)("inlineCode",{parentName:"a"},"8db3a85"))),(0,n.kt)("li",{parentName:"ul"},"refactor(DefaultList): add container to story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f971193369007a45fea7d517cdf0fc2314ebda69"},(0,n.kt)("inlineCode",{parentName:"a"},"f971193"))),(0,n.kt)("li",{parentName:"ul"},"change(button): bumped z-index of sidenav expand button ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/445ed8a8ede4e458814f380bee0600dbb8ff42f6"},(0,n.kt)("inlineCode",{parentName:"a"},"445ed8a"))),(0,n.kt)("li",{parentName:"ul"},"change(progress,label): color accessibility fixes #151 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/09cf6e34ed5a57bfbfc8fe95787591387776df86"},(0,n.kt)("inlineCode",{parentName:"a"},"09cf6e3"))),(0,n.kt)("li",{parentName:"ul"},"change(button): text button now has an underline with a focus border like other buttons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cdd90436bf0c4f8acaca8bf27afef672fb0f3a89"},(0,n.kt)("inlineCode",{parentName:"a"},"cdd9043"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): update card variation grids path ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/756589cff5d3607994d6cf092cb5dd0e36d51903"},(0,n.kt)("inlineCode",{parentName:"a"},"756589c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): minor fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3a880d7d14c89137b2a33342aed1a31c1b2b3939"},(0,n.kt)("inlineCode",{parentName:"a"},"3a880d7"))),(0,n.kt)("li",{parentName:"ul"},"change(button): primary color is blue and secondary is green ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53e0a0c6d32a04c52d089914a224b010b04a8846"},(0,n.kt)("inlineCode",{parentName:"a"},"53e0a0c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(List):change styles to match with the tags lists are rendered ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2673890449579a0421d8ac1c89ad4c5e850322d7"},(0,n.kt)("inlineCode",{parentName:"a"},"2673890"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progress): update colors for accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea2f454f73c859ac21c4fe6e415a2442a6c3d64c"},(0,n.kt)("inlineCode",{parentName:"a"},"ea2f454"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): move avatarGrid & relatedContent to Card folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1959d521de222c95aa13d9b3db249d133f879ccd"},(0,n.kt)("inlineCode",{parentName:"a"},"1959d52"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Timeline): change storybook timeline colors to fix accessibility issues ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/79da8dca48c709fd1df83b858296126f5e5c5753"},(0,n.kt)("inlineCode",{parentName:"a"},"79da8dc"))),(0,n.kt)("li",{parentName:"ul"},"change(segment): restore light grey background color for secondary segments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8716b08a977cacf5dbdab8ab23c714bb03066b0c"},(0,n.kt)("inlineCode",{parentName:"a"},"8716b08"))),(0,n.kt)("li",{parentName:"ul"},"refactor(relatedContent): adjust column paddings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8a1520d1b958b65e968bffdba22c3484916a475e"},(0,n.kt)("inlineCode",{parentName:"a"},"8a1520d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): clear up code ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ada154b5ab562dc7605604de8002a9d3461e594"},(0,n.kt)("inlineCode",{parentName:"a"},"3ada154"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): use the rounded class for avatar grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8c000f3c37103e0068b6d6554783da8188603442"},(0,n.kt)("inlineCode",{parentName:"a"},"8c000f3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card) Update rounded card class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/140b58746673a864d7ea218c4f8a02dc70207af4"},(0,n.kt)("inlineCode",{parentName:"a"},"140b587"))),(0,n.kt)("li",{parentName:"ul"},"refactor(avatar): add variable for image border radius ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c23341c66d34a9dfa572be4df24f1faf4325d58e"},(0,n.kt)("inlineCode",{parentName:"a"},"c23341c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(label): add container to story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/565101fff2c8860deedd599b7b0cff0660c663f6"},(0,n.kt)("inlineCode",{parentName:"a"},"565101f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progress): update value color for accessibility error ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6fc76f8ff3df4bf2b83863687e5ab6bd5e4cd1ef"},(0,n.kt)("inlineCode",{parentName:"a"},"6fc76f8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):use jsx extension ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/413d3284869a35f39f886df7862db6a52e8cc18e"},(0,n.kt)("inlineCode",{parentName:"a"},"413d328")))),(0,n.kt)("h4",{id:"-internal-changes-17"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(Avatar) : add container to stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/41b748cd23002d597d9b6fbb7947a443ef40f9b2"},(0,n.kt)("inlineCode",{parentName:"a"},"41b748c"))),(0,n.kt)("li",{parentName:"ul"},"style(OrderedList): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ed95e4dea2f33d46ca604e1b2c30d63b5596c03d"},(0,n.kt)("inlineCode",{parentName:"a"},"ed95e4d")))),(0,n.kt)("h4",{id:"\ufe0f-others-45"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"perf(eol): change to LF ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c71e42e4a8cf49c4a3b943bfdc8a94c9a9cc4940"},(0,n.kt)("inlineCode",{parentName:"a"},"c71e42e"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): linux eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e0bb30132904f92b9755356f6b5ccbf72075425"},(0,n.kt)("inlineCode",{parentName:"a"},"6e0bb30"))),(0,n.kt)("li",{parentName:"ul"},"lint fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a68866d4058f7412a2635371adebc370b6445281"},(0,n.kt)("inlineCode",{parentName:"a"},"a68866d"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): lf fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7054b2067b0802c5bd04e185cba76e2577ccfdd1"},(0,n.kt)("inlineCode",{parentName:"a"},"7054b20"))),(0,n.kt)("li",{parentName:"ul"},"doco(list): update Ordered List showcase ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/75e40bf4487ea334c9ebc2dd6c2a392d82e662f3"},(0,n.kt)("inlineCode",{parentName:"a"},"75e40bf"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): lf fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19235e585ac50c3669f654a93798b8998894f900"},(0,n.kt)("inlineCode",{parentName:"a"},"19235e5"))),(0,n.kt)("li",{parentName:"ul"},"fixed js syntax error from previous commit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/37dc1f5c1506040c1f155afdea76c4ed739ddda2"},(0,n.kt)("inlineCode",{parentName:"a"},"37dc1f5"))),(0,n.kt)("li",{parentName:"ul"},"Next relese: 0.2.2 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b3fb40ff5e46d7519b6356fdaf7326780bd89d9e"},(0,n.kt)("inlineCode",{parentName:"a"},"b3fb40f")))),(0,n.kt)("h3",{id:"021---2022-04-08"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.2.0...0.2.1"},"0.2.1")," - 2022-04-08"),(0,n.kt)("h4",{id:"-bug-fixes-40"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(version): Switch to 2.0.0.alpha.1 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/83b8b8ebba4f1eb31514b16476ac23a5d2b03ea9"},(0,n.kt)("inlineCode",{parentName:"a"},"83b8b8e")))),(0,n.kt)("h4",{id:"\ufe0f-others-46"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"cleanup(loader): Remove useless HTML ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d1d180c714ea225c1ad269360413a5e5e4b39f22"},(0,n.kt)("inlineCode",{parentName:"a"},"d1d180c")))),(0,n.kt)("h3",{id:"020---2022-04-04"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.9...0.2.0"},"0.2.0")," - 2022-04-04"),(0,n.kt)("h4",{id:"-new-features-27"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(card) : add new default card color-schme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/965adea8eef6d8729790f6d2bd5e71daeee15d75"},(0,n.kt)("inlineCode",{parentName:"a"},"965adea"))),(0,n.kt)("li",{parentName:"ul"},"feat(label): Handle slate links and footnotes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f382431219df29be498fe5063f3d579f0b918068"},(0,n.kt)("inlineCode",{parentName:"a"},"f382431")))),(0,n.kt)("h4",{id:"-bug-fixes-41"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(buttons,toggles): border and background color when active 147629 #139 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea36f31e986110d6c28c104d01666104ac38e2ba"},(0,n.kt)("inlineCode",{parentName:"a"},"ea36f31"))),(0,n.kt)("li",{parentName:"ul"},"fix(checkboxes): background color when they are toggles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4b6ab67085b7514c4f0ab2322e8f45de8bc09449"},(0,n.kt)("inlineCode",{parentName:"a"},"4b6ab67"))),(0,n.kt)("li",{parentName:"ul"},"fix(buttons): border set on basic buttons appearing on svg elements of Volto UI ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/69ca73f33b562b3f87bf11ce43a52ac01f83b951"},(0,n.kt)("inlineCode",{parentName:"a"},"69ca73f"))),(0,n.kt)("li",{parentName:"ul"},"fix(label): Zotero/Footnotes inside label ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0ee4d584f2771b739ed5f2332cb33aad61391786"},(0,n.kt)("inlineCode",{parentName:"a"},"0ee4d58"))),(0,n.kt)("li",{parentName:"ul"},"fix(card) : add control for image url in storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b28e5303ba04c6aee673f1d7f98ce42037c672e1"},(0,n.kt)("inlineCode",{parentName:"a"},"b28e530"))),(0,n.kt)("li",{parentName:"ul"},"fix(less variables):change font family ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e4bca9e0cb7ab9f1fd86e9f4c558382ec129e5a1"},(0,n.kt)("inlineCode",{parentName:"a"},"e4bca9e"))),(0,n.kt)("li",{parentName:"ul"},"fix(storybook):minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9fc53bcad61bbe0561d7a986dbba567d53777a8c"},(0,n.kt)("inlineCode",{parentName:"a"},"9fc53bc"))),(0,n.kt)("li",{parentName:"ul"},"fix(tag): fixes merged theme config ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/eb30363fda8a8a88155ee05268c4d7660fe99df1"},(0,n.kt)("inlineCode",{parentName:"a"},"eb30363"))),(0,n.kt)("li",{parentName:"ul"},"fix(Banner): prop types fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a270e5b4d6e571f219b5da31ca8f883f74da05e3"},(0,n.kt)("inlineCode",{parentName:"a"},"a270e5b")))),(0,n.kt)("h4",{id:"-enhancements-56"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(tag): splits Tags component to TagList and tag, changes default tags style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/78a5f8c245149706a1f7b825ef3e02da5ba86445"},(0,n.kt)("inlineCode",{parentName:"a"},"78a5f8c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner):add banner share pop up in banner story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c9688b2b697c879bbaed3cb3a688a0af7fc71234"},(0,n.kt)("inlineCode",{parentName:"a"},"c9688b2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tag): remove classes and actions that add background color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce9b6f92589618f6cb1e839a2cddc44381ef7406"},(0,n.kt)("inlineCode",{parentName:"a"},"ce9b6f9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner):change banner's image wrapper implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9153dd1073999e67c105b5ba90538bc963e17abc"},(0,n.kt)("inlineCode",{parentName:"a"},"9153dd1"))),(0,n.kt)("li",{parentName:"ul"},"change(package): bump release version to 1.10.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e984c1e1a6ea481a58a5b7a783d077b5769a621"},(0,n.kt)("inlineCode",{parentName:"a"},"7e984c1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): align cards and images, update less variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d47c9780bfbc23d1cba3578f181864074db97e98"},(0,n.kt)("inlineCode",{parentName:"a"},"d47c978"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add class inverted for default card ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/919a56e79c0243fa567144fadd4b842f75f1cf8f"},(0,n.kt)("inlineCode",{parentName:"a"},"919a56e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tag): changes component name ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e1db068bd7ac336a451a4514c61fe44557e14cc2"},(0,n.kt)("inlineCode",{parentName:"a"},"e1db068"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tag): changes color metallicBlue to bottleGreen ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e4b68acf95bb3e192914aab89b2122e0434bf72c"},(0,n.kt)("inlineCode",{parentName:"a"},"e4b68ac"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables): change tag list mobile view ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fcded3dbc67465eec6ef7f72d3fd599ec5cd3c13"},(0,n.kt)("inlineCode",{parentName:"a"},"fcded3d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tagList): update story to not use tag color classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8b5b61bfad9225c0538b713937ed39bbd0bd14e9"},(0,n.kt)("inlineCode",{parentName:"a"},"8b5b61b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner):minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff8c352b899b78528897547df0b20c357fd153cd"},(0,n.kt)("inlineCode",{parentName:"a"},"ff8c352"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner): add metadata field sub component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/327b7e77626c18ae783aea9efae0c7589f63d4f5"},(0,n.kt)("inlineCode",{parentName:"a"},"327b7e7"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): add and adjust remix icon for banner action ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1bf3ffaa16432746c5e5577f0b1643f6659b3f56"},(0,n.kt)("inlineCode",{parentName:"a"},"1bf3ffa"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): replace px with rem and adjust share popup padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a5683294570227d0b25a99e410eb824b2c6d643c"},(0,n.kt)("inlineCode",{parentName:"a"},"a568329"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner):add type class to metadata field and apply styles to it ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/86a286699146c7dda9e288e2183ec8cc86f35a23"},(0,n.kt)("inlineCode",{parentName:"a"},"86a2866"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables):change tag list styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/867008791545769aa003ef7a8a820a7e5a873e4b"},(0,n.kt)("inlineCode",{parentName:"a"},"8670087"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): share items display flex on desktop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ff86840e548f47cd597a0c76b23f996d4a9d74b"},(0,n.kt)("inlineCode",{parentName:"a"},"3ff8684"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): added background gradient, share popup, metadata show and hide #136 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2f5dccacf1e23f45f351b0be58c9bbda04da1518"},(0,n.kt)("inlineCode",{parentName:"a"},"2f5dcca"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): update gradient ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/570ee1e1e9778cb98757804fbd8ad7d9dee9ad13"},(0,n.kt)("inlineCode",{parentName:"a"},"570ee1e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tags): removes hardcoded ':' ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea58e86a79b46b5150d84ff2fbb6a7b8ba47876c"},(0,n.kt)("inlineCode",{parentName:"a"},"ea58e86"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): remove card border ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bc777397026f0efe8e569c8fd0e90d98b585b0eb"},(0,n.kt)("inlineCode",{parentName:"a"},"bc77739")))),(0,n.kt)("h4",{id:"-internal-changes-18"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(card) : add lint and prettier changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9d9a77363f7e4f7ec2ea4db5fa777dc97e086156"},(0,n.kt)("inlineCode",{parentName:"a"},"9d9a773"))),(0,n.kt)("li",{parentName:"ul"},"style(tag): remove comments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/501fcdfb8271f4a3558dadb96c546e71cfdef286"},(0,n.kt)("inlineCode",{parentName:"a"},"501fcdf"))),(0,n.kt)("li",{parentName:"ul"},"style(tag): stylelint and prettier changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/08b63864e8394fd86ada78df0b441cda52cd8063"},(0,n.kt)("inlineCode",{parentName:"a"},"08b6386")))),(0,n.kt)("h4",{id:"\ufe0f-others-47"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"1.10 release #140 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/88d33396845f00830789867663a9cd66ad88920f"},(0,n.kt)("inlineCode",{parentName:"a"},"88d3339"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/328ef2cda2d3470b5cb5ae2ef9854323f6b0f3c7"},(0,n.kt)("inlineCode",{parentName:"a"},"328ef2c"))),(0,n.kt)("li",{parentName:"ul"},"undo changes to Header.jsx committed wrongly in 4b6ab ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bfc4c51d39cf9c5151c39b099071174897de10b0"},(0,n.kt)("inlineCode",{parentName:"a"},"bfc4c51"))),(0,n.kt)("li",{parentName:"ul"},"Update 0-intro.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af75f81a84ddb9b78a77a96450976c6cd1223924"},(0,n.kt)("inlineCode",{parentName:"a"},"af75f81"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): lf fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ecf474ffbaab6796434d49c30fb09deafe9d1125"},(0,n.kt)("inlineCode",{parentName:"a"},"ecf474f"))),(0,n.kt)("li",{parentName:"ul"},"Update 0-intro.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93a073242693fa3c24c39532c2c462f58071e5c4"},(0,n.kt)("inlineCode",{parentName:"a"},"93a0732"))),(0,n.kt)("li",{parentName:"ul"},"modifies tags title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/33c3714660aa6cfbca7e362fd7baa8c396b60a0e"},(0,n.kt)("inlineCode",{parentName:"a"},"33c3714"))),(0,n.kt)("li",{parentName:"ul"},"reafactor(taglist): fixes tags root class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d09959f85d2d21cdc890a71457ed5840b5b2c53"},(0,n.kt)("inlineCode",{parentName:"a"},"7d09959")))),(0,n.kt)("h3",{id:"019---2022-03-25"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.8...0.1.9"},"0.1.9")," - 2022-03-25"),(0,n.kt)("h4",{id:"-new-features-28"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(all): 1.9 release #124 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0d3f6fbf32a4948e00410d9d0943a077863cb869"},(0,n.kt)("inlineCode",{parentName:"a"},"0d3f6fb"))),(0,n.kt)("li",{parentName:"ul"},"feat(callout): Align volto-slate callout with blockquote style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9e0bb49ffe66ebb8b8173af411873ab887b91058"},(0,n.kt)("inlineCode",{parentName:"a"},"9e0bb49")))),(0,n.kt)("h4",{id:"-bug-fixes-42"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(inpageNavigation): restore hidden on top functionality ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c554e6e02e0c82b74653498e2f3fd32a982002a4"},(0,n.kt)("inlineCode",{parentName:"a"},"c554e6e"))),(0,n.kt)("li",{parentName:"ul"},"fix(list): Fix TOC margin on 3rd level ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f17da79394e29baf62bae1247dd954cdd0362108"},(0,n.kt)("inlineCode",{parentName:"a"},"f17da79"))),(0,n.kt)("li",{parentName:"ul"},"fix(inpageNavigation) : add smooth scroll animation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/42f6564276b9214257e2dbc1e2a8f7e501625aee"},(0,n.kt)("inlineCode",{parentName:"a"},"42f6564")))),(0,n.kt)("h4",{id:"-enhancements-57"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update visual and mobile margins ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/64f05af91638d91d2c07217b8edc2fb70a5e7347"},(0,n.kt)("inlineCode",{parentName:"a"},"64f05af"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): restore union dropdown after implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7029c556a9adc1ab9b0269de666e0ed0530f67e"},(0,n.kt)("inlineCode",{parentName:"a"},"a7029c5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pullquote): adjust to the new figma design ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/78e4606ac299938021f9e525898ae7f5cede311f"},(0,n.kt)("inlineCode",{parentName:"a"},"78e4606"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumb): adjust font sizes and import remix divider ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5fcabaf589074716b34fb5d0904e14549d7f4ef2"},(0,n.kt)("inlineCode",{parentName:"a"},"5fcabaf"))),(0,n.kt)("li",{parentName:"ul"},"change(header): use viewport width for changing mobile text in header dropdowns ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5a7868e1725f8766ae1be68d3c27b1313f79196b"},(0,n.kt)("inlineCode",{parentName:"a"},"5a7868e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(inpageNavigation): adjust to the new figma design ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4073acfb87378224d071079467bcfa195b1fc6ac"},(0,n.kt)("inlineCode",{parentName:"a"},"4073acf"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tab): add max width for tab items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/366d279a94d5f388c6167e7afb72d108c77c4085"},(0,n.kt)("inlineCode",{parentName:"a"},"366d279"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables):change pullquote styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9ad94bb424a14713ffa605c7497c95bdefeb6e5f"},(0,n.kt)("inlineCode",{parentName:"a"},"9ad94bb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Pullquote):change quote positions and add Pullquote.Metadata sub component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6bce35fa3cc158d9d18a07d0faf812c5c38bae0b"},(0,n.kt)("inlineCode",{parentName:"a"},"6bce35f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(inpageNavigation): Update to remix icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19a606170b4163cf4f751a419ca36a4c163b566d"},(0,n.kt)("inlineCode",{parentName:"a"},"19a6061"))),(0,n.kt)("li",{parentName:"ul"},"refactor(inpageNavigation) : move icon & text to be in column ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/09539102489ec511cb2b6cd047d316ab8b87ed55"},(0,n.kt)("inlineCode",{parentName:"a"},"0953910"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumbs): modified breadcrumbs template to behave like breadrumb template ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/490a559bc99f3a9d174a344cf0be85086293578e"},(0,n.kt)("inlineCode",{parentName:"a"},"490a559"))),(0,n.kt)("li",{parentName:"ul"},"change(package): bump release version to 1.9.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/43a6e4b92fd05ca272fb140922213834ee426938"},(0,n.kt)("inlineCode",{parentName:"a"},"43a6e4b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumb): adjust font sizes and import remix divider #120 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/09a3a01910ed898b62a9535fe5d2a41cfdb3a91b"},(0,n.kt)("inlineCode",{parentName:"a"},"09a3a01"))),(0,n.kt)("li",{parentName:"ul"},"change(menu): modified secondaryPointingItemMaxWidth to a value that equals to 250 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea138a10257206fae32c4e9a30233a3ddfd424b6"},(0,n.kt)("inlineCode",{parentName:"a"},"ea138a1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pullquote): introduce meta section, use remix icons, integrate slate callouts #119 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fd740c9e72b2defa5cc858ac020f0cb051aa527c"},(0,n.kt)("inlineCode",{parentName:"a"},"fd740c9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): updated visuals and gradients #117 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e5c6d18dc3fb33e5dfa654ecebdc12c6f5f0cf32"},(0,n.kt)("inlineCode",{parentName:"a"},"e5c6d18"))),(0,n.kt)("li",{parentName:"ul"},"change(scrollToTop): feature inpage navigation revamp #121 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3cf20a82b723b8df0b53f16c737e5c8990f891f1"},(0,n.kt)("inlineCode",{parentName:"a"},"3cf20a8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update visual and gradient ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/764ec23a456397b478456f7d628baa4e6c0b4713"},(0,n.kt)("inlineCode",{parentName:"a"},"764ec23"))),(0,n.kt)("li",{parentName:"ul"},"change(header): use 12px font size for mobile resolution dropdowns ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6dad0fab24f37f87696bb50f5a592e88510d053e"},(0,n.kt)("inlineCode",{parentName:"a"},"6dad0fa"))),(0,n.kt)("li",{parentName:"ul"},"change(nav): added navDepth to 3 in order to enable mega menu integration ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4f73fdd0dfadcd63b2f4be7a691bf12dcd9bb76"},(0,n.kt)("inlineCode",{parentName:"a"},"c4f73fd")))),(0,n.kt)("h4",{id:"-internal-changes-19"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(inpageNavigation) : lint changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3641d78374063904c00f1ba19f2f234f7a43892b"},(0,n.kt)("inlineCode",{parentName:"a"},"3641d78"))),(0,n.kt)("li",{parentName:"ul"},"style(inpageNavigation) : add less variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0699c70c66403ff75bf41ba252a74e9f4379671c"},(0,n.kt)("inlineCode",{parentName:"a"},"0699c70"))),(0,n.kt)("li",{parentName:"ul"},"style(pullquote): create variable for icon font size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fea9b0a7c33237ad036522b4dde567718d640210"},(0,n.kt)("inlineCode",{parentName:"a"},"fea9b0a"))),(0,n.kt)("li",{parentName:"ul"},"style(inpageNavigation) : add lint & prettier changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f8dd012a964e0c1f0bc22c36826a4a94bd052759"},(0,n.kt)("inlineCode",{parentName:"a"},"f8dd012"))),(0,n.kt)("li",{parentName:"ul"},"style(inpageNavigation): remove comment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1aee011d032c1a2b7fe564a40688bc39ca457c18"},(0,n.kt)("inlineCode",{parentName:"a"},"1aee011")))),(0,n.kt)("h4",{id:"\ufe0f-others-48"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"perf(eol): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/85a3dc55c7676c0feb8dd5b39fe0cbb9d66a9370"},(0,n.kt)("inlineCode",{parentName:"a"},"85a3dc5"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/00776211ccfa1cb90d9fa0e5269f47f5b3845741"},(0,n.kt)("inlineCode",{parentName:"a"},"0077621"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f1bb1c630edb669b03929a978cc116bae012255"},(0,n.kt)("inlineCode",{parentName:"a"},"9f1bb1c"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2b19fec30d6086f486bdca631a9114d8369fe43"},(0,n.kt)("inlineCode",{parentName:"a"},"e2b19fe"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/03dbc9b027578934f89d9480d981e1bc28f38aa3"},(0,n.kt)("inlineCode",{parentName:"a"},"03dbc9b"))),(0,n.kt)("li",{parentName:"ul"},"Hide breadcrumbs on homepage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e2f609df8d4b6bdb826e539fc0c613406d357a5"},(0,n.kt)("inlineCode",{parentName:"a"},"3e2f609"))),(0,n.kt)("li",{parentName:"ul"},"bug(inpageNavigation): less layers structure fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8d34fbdd5130ed36157db1ff70e8b039faa9f81"},(0,n.kt)("inlineCode",{parentName:"a"},"b8d34fb"))),(0,n.kt)("li",{parentName:"ul"},"prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4b1c572411cbc58dec51d5eeefe9847675c2e41"},(0,n.kt)("inlineCode",{parentName:"a"},"d4b1c57"))),(0,n.kt)("li",{parentName:"ul"},"fefactor(tab): add max width for tab items #118 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/716c408fa4c73f3feb8e36e35fb1f6bb50ac264c"},(0,n.kt)("inlineCode",{parentName:"a"},"716c408"))),(0,n.kt)("li",{parentName:"ul"},"Add reversed option to Timeline grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7c9023245f2fc943380f79743b5f10c6b6f65264"},(0,n.kt)("inlineCode",{parentName:"a"},"7c90232"))),(0,n.kt)("li",{parentName:"ul"},"doc(grid): update grid showcases ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/83671a382e39a2736c2c1353098d5f4fc2a0e67e"},(0,n.kt)("inlineCode",{parentName:"a"},"83671a3"))),(0,n.kt)("li",{parentName:"ul"},"End of line ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7f46fb752ec8918325ebadd386ee88248e02566c"},(0,n.kt)("inlineCode",{parentName:"a"},"7f46fb7")))),(0,n.kt)("h3",{id:"018---2022-03-18"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.7...0.1.8"},"0.1.8")," - 2022-03-18"),(0,n.kt)("h4",{id:"-bug-fixes-43"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(card): avoid long links from spilling outside of card body area ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/95b8951ab87bfab7a68cc20b89b25aa15113aa9d"},(0,n.kt)("inlineCode",{parentName:"a"},"95b8951")))),(0,n.kt)("h4",{id:"-enhancements-58"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(typography): set heading sizes as detailed in docusaurus typography section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/189bf20409581587061ffa30ff2bf04d97f284cf"},(0,n.kt)("inlineCode",{parentName:"a"},"189bf20"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): content tweaks, inpage navigation section #112 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b62d1b1def7c3d8890ffbba30950e8e422e9ed89"},(0,n.kt)("inlineCode",{parentName:"a"},"b62d1b1")))),(0,n.kt)("h4",{id:"-internal-changes-20"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(docusaurus): fixed grid tablet breakpoint value ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c7fbc0912131396e3a1e35803968eda1eff77d40"},(0,n.kt)("inlineCode",{parentName:"a"},"c7fbc09")))),(0,n.kt)("h4",{id:"-documentation-changes-18"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): capitalization remove ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bf8fa4407e7110da1c6a911506d56800bd5c32d7"},(0,n.kt)("inlineCode",{parentName:"a"},"bf8fa44"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1c04976a141324f0dde01b139a77f611e6f51840"},(0,n.kt)("inlineCode",{parentName:"a"},"1c04976"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): comment address on pr 112 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e4fe3bed285eae8b2cff03b1ef558debc0b4edb"},(0,n.kt)("inlineCode",{parentName:"a"},"6e4fe3b"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): color minor update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/13f9fda09287da5b8733d17f9c7567b6b7df750a"},(0,n.kt)("inlineCode",{parentName:"a"},"13f9fda"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): tabs and breadcrump update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d0547e5ad09a8608335b1e77e24c891e49213694"},(0,n.kt)("inlineCode",{parentName:"a"},"d0547e5")))),(0,n.kt)("h4",{id:"\ufe0f-others-49"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"doc(colours): add more content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ec66248f1290369dcf63ee12f7b71a1630df887b"},(0,n.kt)("inlineCode",{parentName:"a"},"ec66248"))),(0,n.kt)("li",{parentName:"ul"},"Add divider content for metadata field in Banner ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f1e34bd6a199f6418fba909e9dfdf50b0100e860"},(0,n.kt)("inlineCode",{parentName:"a"},"f1e34bd"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.8.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fd6ba047e8f8b257c3c75d07a6caefad376f888a"},(0,n.kt)("inlineCode",{parentName:"a"},"fd6ba04")))),(0,n.kt)("h3",{id:"017---2022-03-15"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.6...0.1.7"},"0.1.7")," - 2022-03-15"),(0,n.kt)("h4",{id:"-new-features-29"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(less): add global gap sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c83f20280b8a7ab0b5c78e3df7646beebe08709"},(0,n.kt)("inlineCode",{parentName:"a"},"3c83f20"))),(0,n.kt)("li",{parentName:"ul"},"feat(icons): import remix css ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/29967fb39034910dce286880f347a670f77421b3"},(0,n.kt)("inlineCode",{parentName:"a"},"29967fb")))),(0,n.kt)("h4",{id:"-bug-fixes-44"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(menu): fix border overflow for tabs and pagination ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e88721f916affa2a6d2f03930eb4266f9a2b0fb9"},(0,n.kt)("inlineCode",{parentName:"a"},"e88721f"))),(0,n.kt)("li",{parentName:"ul"},"fix(accordion): responsive and accessibility issues ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c225935ceb9fdba45c6f94086a35e177495fe584"},(0,n.kt)("inlineCode",{parentName:"a"},"c225935")))),(0,n.kt)("h4",{id:"-enhancements-59"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(menu): update paddings for tabs and pagination ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/533a5093e6c306034cb16e0a88e045019677951e"},(0,n.kt)("inlineCode",{parentName:"a"},"533a509"))),(0,n.kt)("li",{parentName:"ul"},"refactor(accordion): import semantic icon for remix arrows ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9aa77d856d1e43f4ec3daaab37f06fa91ebd1eaf"},(0,n.kt)("inlineCode",{parentName:"a"},"9aa77d8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(all) icons, accordion, button and menu itml #108 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/52ed2ca19b5e8dea60f1ee7bfd9c3b6b49a49f7d"},(0,n.kt)("inlineCode",{parentName:"a"},"52ed2ca"))),(0,n.kt)("li",{parentName:"ul"},"change(storybook): segment stories now contain several elements ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/98a7654b0d4a7c30c7a2df35103ddb2740f3ca2d"},(0,n.kt)("inlineCode",{parentName:"a"},"98a7654"))),(0,n.kt)("li",{parentName:"ul"},"change(table): inherit header alignment instead of hard-coding values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ebb5193babfe8b99094db6778afdaf2d91b2c4dd"},(0,n.kt)("inlineCode",{parentName:"a"},"ebb5193"))),(0,n.kt)("li",{parentName:"ul"},"refactor(icons): add remix icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4c1a92b671b52c509386addc02e8919c93391fb"},(0,n.kt)("inlineCode",{parentName:"a"},"c4c1a92"))),(0,n.kt)("li",{parentName:"ul"},"refactor(container): restore mobile width to auto ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2df184c19a8685c69e6b9a55b147a97853cc6b74"},(0,n.kt)("inlineCode",{parentName:"a"},"2df184c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button): update action button hover color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bb09d718433f93091ca1b325471d48741825ca96"},(0,n.kt)("inlineCode",{parentName:"a"},"bb09d71")))),(0,n.kt)("h4",{id:"-internal-changes-21"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(docusaurus): docs delete ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f9d733287902ccb096f5a976a2928e43a43a8e7"},(0,n.kt)("inlineCode",{parentName:"a"},"5f9d733")))),(0,n.kt)("h4",{id:"-documentation-changes-19"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(colors): corrections ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/da64c4c6b58e8840ea98be75d442b90911197e28"},(0,n.kt)("inlineCode",{parentName:"a"},"da64c4c"))),(0,n.kt)("li",{parentName:"ul"},"docs(list): default list showcase ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8ded06231c14d1394f77559aeb2d5a7e3a0c1bf1"},(0,n.kt)("inlineCode",{parentName:"a"},"8ded062")))),(0,n.kt)("h4",{id:"\ufe0f-others-50"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"bug(form): input min-width more specific to not break volto interface ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3f5b5d498ea1a0e3bb6fd62af5930f6579029b11"},(0,n.kt)("inlineCode",{parentName:"a"},"3f5b5d4"))),(0,n.kt)("li",{parentName:"ul"},"Update package.json ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3dba28b5a3d28adbf946a8df3d9cc9b8ef4c68e0"},(0,n.kt)("inlineCode",{parentName:"a"},"3dba28b")))),(0,n.kt)("h3",{id:"016---2022-03-11"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.5...0.1.6"},"0.1.6")," - 2022-03-11"),(0,n.kt)("h4",{id:"-new-features-30"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(cards): add custom display for volto-block-image-cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/645096ac5a0aa3326834191f56ee8a77db0464f5"},(0,n.kt)("inlineCode",{parentName:"a"},"645096a"))),(0,n.kt)("li",{parentName:"ul"},"feat(PublicationCard):create publication card component & styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e5f9b7a9bb301f446b232b99f7db54e6a7470ae"},(0,n.kt)("inlineCode",{parentName:"a"},"3e5f9b7"))),(0,n.kt)("li",{parentName:"ul"},"feat(PublicationCard):create publication card component & styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/12cdd5d50dc4c05f2c2b83586df90c7b91c11a75"},(0,n.kt)("inlineCode",{parentName:"a"},"12cdd5d"))),(0,n.kt)("li",{parentName:"ul"},"feat(Related Content): create Related Content component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/77eda953196f9e686d4ec2c996d6902a614af4a0"},(0,n.kt)("inlineCode",{parentName:"a"},"77eda95"))),(0,n.kt)("li",{parentName:"ul"},"feat(Related Content): create Related Content component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/08d495baeae575a07813056176ac940d7edc91eb"},(0,n.kt)("inlineCode",{parentName:"a"},"08d495b"))),(0,n.kt)("li",{parentName:"ul"},"feat(pagination,related) added several r3 components #105 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/08d47c199286402c31a0ff0de38fd08533d2cd91"},(0,n.kt)("inlineCode",{parentName:"a"},"08d47c1")))),(0,n.kt)("h4",{id:"-bug-fixes-45"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(Related Content): limit publication card number to 4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e7df03214824a85911c26499c8975f88ffa9fe4d"},(0,n.kt)("inlineCode",{parentName:"a"},"e7df032"))),(0,n.kt)("li",{parentName:"ul"},"fix(less variables):rename publication card variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/55c6fb8e5e9660352ce1bf2bd38c4ef8834ce184"},(0,n.kt)("inlineCode",{parentName:"a"},"55c6fb8"))),(0,n.kt)("li",{parentName:"ul"},"fix(Publication Card): add link to card and arg name fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/36a7c961639b2ff07acd455ccf277dd0a93f753c"},(0,n.kt)("inlineCode",{parentName:"a"},"36a7c96"))),(0,n.kt)("li",{parentName:"ul"},"fix(radio): fix bullet scaling issue with firefox ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f02c95f18c77527f949f115471cf24302df4d49"},(0,n.kt)("inlineCode",{parentName:"a"},"5f02c95"))),(0,n.kt)("li",{parentName:"ul"},"fix(radio): fix bullet scaling issue with firefox ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dbb2e27b43e6d267a436a8475107ad01e940ec93"},(0,n.kt)("inlineCode",{parentName:"a"},"dbb2e27")))),(0,n.kt)("h4",{id:"-enhancements-60"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(form): remove custom classes and add container to form items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6b5442a3c56854bf30269f235099d8507ba588f7"},(0,n.kt)("inlineCode",{parentName:"a"},"6b5442a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form): remove custom classes and add container to form items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d1ec083647f854c09d8a64dffa6a5c829321049e"},(0,n.kt)("inlineCode",{parentName:"a"},"d1ec083"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form): update form wrapper component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7195768bbe86121fc82bebca29abfb20b50d77a"},(0,n.kt)("inlineCode",{parentName:"a"},"a719576"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form): update form wrapper component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0736ec7d671d756c13a69bd8bf93488805da27e2"},(0,n.kt)("inlineCode",{parentName:"a"},"0736ec7"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form): adjust form items to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4213cfb79430273e637b06a76af28c9cd660aa74"},(0,n.kt)("inlineCode",{parentName:"a"},"4213cfb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form): adjust form items to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/374ffbc1c380df1b1a5f9939fc658d9ecca4ae1b"},(0,n.kt)("inlineCode",{parentName:"a"},"374ffbc"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumb): remove custom class anf and new variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b3cb83d90e0be7f8a80f619d57bc90cae4f8f207"},(0,n.kt)("inlineCode",{parentName:"a"},"b3cb83d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumb): remove custom class anf and new variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5808ad3576439df010bebfb8fd423858ffc4e66"},(0,n.kt)("inlineCode",{parentName:"a"},"d5808ad"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): clear up unnecessary form elements controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f7e7d5bc285ea5115bc8770c7471729f06da891e"},(0,n.kt)("inlineCode",{parentName:"a"},"f7e7d5b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): small change in unordered list story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ffd87246df9dffcc064683e93d6f3aff35b3931"},(0,n.kt)("inlineCode",{parentName:"a"},"3ffd872"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): small change in unordered list story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6ce16e990f15ef8c61493359815405517756c32c"},(0,n.kt)("inlineCode",{parentName:"a"},"6ce16e9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pagination): fix menu overrides for tabs that affects pagination ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fe8c4ca32072518820ad38f8b334b38f52ef2df5"},(0,n.kt)("inlineCode",{parentName:"a"},"fe8c4ca"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pagination): fix menu overrides for tabs that affects pagination ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3f4b726c2a2047f6f9a65375074dd7ea38717f5c"},(0,n.kt)("inlineCode",{parentName:"a"},"3f4b726"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Loader):remove image & add background image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70fe041e06cfee946bb9557f9fcb5ff49d08c287"},(0,n.kt)("inlineCode",{parentName:"a"},"70fe041"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Loader):remove image & add background image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac3812684ee4377914801cd770890c78bdeecedf"},(0,n.kt)("inlineCode",{parentName:"a"},"ac38126"))),(0,n.kt)("li",{parentName:"ul"},"refactor(list): remove selection control ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a09b1798a62a6e192deb1d217d0c44b4b881ce6a"},(0,n.kt)("inlineCode",{parentName:"a"},"a09b179"))),(0,n.kt)("li",{parentName:"ul"},"refactor(list): remove selection control ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/17bf710d00a91acd35356dbaa9d5093ca80a8987"},(0,n.kt)("inlineCode",{parentName:"a"},"17bf710"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook):unordered list minor change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/df2b72730500aee5d0bbc82185222edacad38b2b"},(0,n.kt)("inlineCode",{parentName:"a"},"df2b727"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook):unordered list minor change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef6db73ce2236d0f653212d2f57c336f1f8d806e"},(0,n.kt)("inlineCode",{parentName:"a"},"ef6db73"))),(0,n.kt)("li",{parentName:"ul"},"refactor(colors): remove metalic blue color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b2f95b6dc3b1d8314827d56e88efa0dfc719aca2"},(0,n.kt)("inlineCode",{parentName:"a"},"b2f95b6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(colors): remove metalic blue color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1eea33f71fdde5834f82d244224c185fde3ab8ba"},(0,n.kt)("inlineCode",{parentName:"a"},"1eea33f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button): update variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b1774d8c7f32ded2eff654b0d16e45d944fe5690"},(0,n.kt)("inlineCode",{parentName:"a"},"b1774d8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button): update variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/061f3e3042f28575dbb1a70f09a62bda728815be"},(0,n.kt)("inlineCode",{parentName:"a"},"061f3e3"))),(0,n.kt)("li",{parentName:"ul"},"change(blockquote): treat slate as a variation of blockquote component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19bd9a5f67e573b71531fe34b29d2e08e0856eae"},(0,n.kt)("inlineCode",{parentName:"a"},"19bd9a5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(container): remove important from rules ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e984771ed59fe849246ae8a01d9d84f3f2f232c5"},(0,n.kt)("inlineCode",{parentName:"a"},"e984771"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook):add textarea control to add/remove fluid class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/475f540efa76d0993c3f7bd72d4c646385f4c909"},(0,n.kt)("inlineCode",{parentName:"a"},"475f540"))),(0,n.kt)("li",{parentName:"ul"},"refactor(container): remove important from rules ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1cc69848705d3d592221bf7fa7d43c8b0eb37f09"},(0,n.kt)("inlineCode",{parentName:"a"},"1cc6984"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): add required attribute to form fields ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fecee278b920c44dd0dd34ace81f9606258c8f7c"},(0,n.kt)("inlineCode",{parentName:"a"},"fecee27"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progressBar): update progress bar colors with vars ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4ef1f0f6eba9792901bc9e0ec5b01877e9da96e"},(0,n.kt)("inlineCode",{parentName:"a"},"c4ef1f0"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progressBar): update progress bar colors with vars ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a44d73c48b6ccc988508fed5c3fb585353fe0958"},(0,n.kt)("inlineCode",{parentName:"a"},"a44d73c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): add required attribute to form fields ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/21da79eafa9f23dcf01cac7e096da7fab2187450"},(0,n.kt)("inlineCode",{parentName:"a"},"21da79e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(list): adjust bullet size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2b29e4e429f939500bc7d7ebd5836b8bc24090ec"},(0,n.kt)("inlineCode",{parentName:"a"},"2b29e4e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(list): adjust bullet size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/61c341cfdad3fccdd7499f6957f91ab99159ea16"},(0,n.kt)("inlineCode",{parentName:"a"},"61c341c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): add inverted background to global variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1427e70f2b208531bbb91ab1a708430f1c03ea3a"},(0,n.kt)("inlineCode",{parentName:"a"},"1427e70"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): add inverted background to global variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea25dfa5589181b7d23bef153bae3ab279e70167"},(0,n.kt)("inlineCode",{parentName:"a"},"ea25dfa"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): remove custom class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/46cc5601e378c7bfcf927b7c25dae2a2d3f795fd"},(0,n.kt)("inlineCode",{parentName:"a"},"46cc560"))),(0,n.kt)("li",{parentName:"ul"},"refactor(container): update mobile width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d548a44d86745270778134028be597f559d7a0b4"},(0,n.kt)("inlineCode",{parentName:"a"},"d548a44"))),(0,n.kt)("li",{parentName:"ul"},"refactor(grid): replace px with rem units ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e792f51e4f41b8f3f53e297b9e5a01d5e2d9bfb1"},(0,n.kt)("inlineCode",{parentName:"a"},"e792f51"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): remove custom class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b5c8e7c2aeb2751d4b981eacc51e3dda58a922dc"},(0,n.kt)("inlineCode",{parentName:"a"},"b5c8e7c"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): updated template to change what's new title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e15f4d3c3e5d4199886bb4cfeda8dce6a4bf041"},(0,n.kt)("inlineCode",{parentName:"a"},"3e15f4d"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): added display variable for footer site logos ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5b3c2f6d85b3a42eefa8521a074a7581bfbd8fb"},(0,n.kt)("inlineCode",{parentName:"a"},"d5b3c2f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(grid): replace px with rem units ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f0331d00f537cf41ca184796386f60a88bfe6c86"},(0,n.kt)("inlineCode",{parentName:"a"},"f0331d0"))),(0,n.kt)("li",{parentName:"ul"},"change(github): auto deploy only on develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/11d6b4e9059674b6dd1fe655995231be03a910fb"},(0,n.kt)("inlineCode",{parentName:"a"},"11d6b4e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): implementation in preparation for Volto integration #20 #89 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/95b136d51ddbc5632c0fa1cc696c2297a8c4695c"},(0,n.kt)("inlineCode",{parentName:"a"},"95b136d"))),(0,n.kt)("li",{parentName:"ul"},"change(github): trigger autobuild when modifying templates contents ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/46094b1427793cd88da6f615b16b70e6cfaee9af"},(0,n.kt)("inlineCode",{parentName:"a"},"46094b1")))),(0,n.kt)("h4",{id:"-internal-changes-22"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(list): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f9e3b05effc0afeddc234b491bc86f2ec82a764f"},(0,n.kt)("inlineCode",{parentName:"a"},"f9e3b05"))),(0,n.kt)("li",{parentName:"ul"},"style(list): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8eb715b05b3bef2795d2485084386c6e910392cf"},(0,n.kt)("inlineCode",{parentName:"a"},"8eb715b"))),(0,n.kt)("li",{parentName:"ul"},"chore(github): merge changes from develop to develop-itml ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/063bd6ecc5e47321854ca4994a91bf0a43ab3e3e"},(0,n.kt)("inlineCode",{parentName:"a"},"063bd6e"))),(0,n.kt)("li",{parentName:"ul"},"chore(github): build deployment only on develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a5a1b0802b46d674d04ae099afc8510e3cb62222"},(0,n.kt)("inlineCode",{parentName:"a"},"a5a1b08"))),(0,n.kt)("li",{parentName:"ul"},"chore(github): build deployment only on develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bb455aa4308e6593c45bcb3a62b8058709d74f83"},(0,n.kt)("inlineCode",{parentName:"a"},"bb455aa"))),(0,n.kt)("li",{parentName:"ul"},"chore(github): merge changes from develop to develop-itml ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/129c12f60025db50bac5b2d3dd36e04a97d49499"},(0,n.kt)("inlineCode",{parentName:"a"},"129c12f")))),(0,n.kt)("h4",{id:"\ufe0f-others-51"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},'Revert "chore(github): merge changes from develop to develop-itml" ',(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca9520fe8d91f8924ea203eb32001e3e6518e472"},(0,n.kt)("inlineCode",{parentName:"a"},"ca9520f"))),(0,n.kt)("li",{parentName:"ul"},"refactor breadcrumbs component, make it functional and customizable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e902d6931060c5676d67842f95391379fcb3cccf"},(0,n.kt)("inlineCode",{parentName:"a"},"e902d69"))),(0,n.kt)("li",{parentName:"ul"},"rollback(cards): move custom display to volto-block-image-cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2564b1ec2cc52670c0f2abc92c49161f5cd1b006"},(0,n.kt)("inlineCode",{parentName:"a"},"2564b1e"))),(0,n.kt)("li",{parentName:"ul"},"bring back segment wrapper and make it attached ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8458f0321f44f22a605e7179485d97f41a0afa38"},(0,n.kt)("inlineCode",{parentName:"a"},"8458f03"))),(0,n.kt)("li",{parentName:"ul"},"no ",(0,n.kt)("inlineCode",{parentName:"li"},"display: flex")," for blockquote added from slate ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5595ce1b8173e6952ab3926dc5f3c988279a42dc"},(0,n.kt)("inlineCode",{parentName:"a"},"5595ce1"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about code length ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a5f36523682dde8d1e16f416a07cd0c8c615a386"},(0,n.kt)("inlineCode",{parentName:"a"},"a5f3652"))),(0,n.kt)("li",{parentName:"ul"},"Add indenting rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/15c44cbcb6a52d0fd0438ff9b5d0e5963a4b53a0"},(0,n.kt)("inlineCode",{parentName:"a"},"15c44cb"))),(0,n.kt)("li",{parentName:"ul"},"fix warning related to proptype ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/946c6c6bc9dece0985ae4b9f9cad6ece2be0ff2c"},(0,n.kt)("inlineCode",{parentName:"a"},"946c6c6"))),(0,n.kt)("li",{parentName:"ul"},"fix profile section css overflow ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/db5126fc902e191d1e18fb7e4c54877c8d8786e6"},(0,n.kt)("inlineCode",{parentName:"a"},"db5126f"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about import sorting ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/804e188eea30427053111310ad2d3edf6a4ec78b"},(0,n.kt)("inlineCode",{parentName:"a"},"804e188"))),(0,n.kt)("li",{parentName:"ul"},"don't use volto-slate ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6a029765d3a59ac65b3b5dd18c1a9624bae1d52a"},(0,n.kt)("inlineCode",{parentName:"a"},"6a02976"))),(0,n.kt)("li",{parentName:"ul"},"remove segment custom width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1d3ea40f98bbdc1eab95b4da739a659b5e29ec16"},(0,n.kt)("inlineCode",{parentName:"a"},"1d3ea40"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about naming vars ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f9020fa3073190681de36cf1dcdf62e69ac2c74"},(0,n.kt)("inlineCode",{parentName:"a"},"8f9020f"))),(0,n.kt)("li",{parentName:"ul"},"update style for accordion title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0b0d678c69d8b0765ff015b0355c01d57c643192"},(0,n.kt)("inlineCode",{parentName:"a"},"0b0d678"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.6.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e771e657e5bedca3630d05cda643c45da5369d4c"},(0,n.kt)("inlineCode",{parentName:"a"},"e771e65"))),(0,n.kt)("li",{parentName:"ul"},"update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bbcab87ef4c8475f347f0daf4ab7e428e69c2316"},(0,n.kt)("inlineCode",{parentName:"a"},"bbcab87"))),(0,n.kt)("li",{parentName:"ul"},"add margin to ","<","br",">"," element to simulate gap as in design ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c6685c11a14febfc9b6c592a9adc9a25a0b80458"},(0,n.kt)("inlineCode",{parentName:"a"},"c6685c1"))),(0,n.kt)("li",{parentName:"ul"},"make breadcrumbs default size as tiny ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/589581fa29a7e249e59393bebe9dfe284090db6f"},(0,n.kt)("inlineCode",{parentName:"a"},"589581f"))),(0,n.kt)("li",{parentName:"ul"},"remove uneeded style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/82a8fb1eb3a359d54bc59234e498eb122d07223c"},(0,n.kt)("inlineCode",{parentName:"a"},"82a8fb1"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about hardcoded values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e04e0df7cd47d575e649d1995ea5c64b2a431b05"},(0,n.kt)("inlineCode",{parentName:"a"},"e04e0df"))),(0,n.kt)("li",{parentName:"ul"},"Add file mode rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/65c9a9357a82a39bf54862eff9231264a6277ab5"},(0,n.kt)("inlineCode",{parentName:"a"},"65c9a93"))),(0,n.kt)("li",{parentName:"ul"},"Add DRY rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/66c9c3a6b05bf3395f5bda1a7c5af26a9962e66c"},(0,n.kt)("inlineCode",{parentName:"a"},"66c9c3a"))),(0,n.kt)("li",{parentName:"ul"},"set profile section overflow to auto ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/71ab47f89a433233c14b394c3824e607dd18a393"},(0,n.kt)("inlineCode",{parentName:"a"},"71ab47f"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using eea-website-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/647a6e3e2093f2c4884c356eb148453551c8f33f"},(0,n.kt)("inlineCode",{parentName:"a"},"647a6e3"))),(0,n.kt)("li",{parentName:"ul"},"removed override already present in card.less ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/50d2ab26f85c8f409da02ec128cc1df34848ca69"},(0,n.kt)("inlineCode",{parentName:"a"},"50d2ab2"))),(0,n.kt)("li",{parentName:"ul"},"update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7a1d482aa875ab2669ed688663228d79ce9b7bea"},(0,n.kt)("inlineCode",{parentName:"a"},"7a1d482"))),(0,n.kt)("li",{parentName:"ul"},"Add functional components rule; add classnames rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91a0b067c7a36002a6d49c5c0238f593b5a6ac6e"},(0,n.kt)("inlineCode",{parentName:"a"},"91a0b06"))),(0,n.kt)("li",{parentName:"ul"},"added comment about need for removal of this fix later ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/65b81665c1cc41991b4903bb44a5eb7fb8ec5f3b"},(0,n.kt)("inlineCode",{parentName:"a"},"65b8166")))),(0,n.kt)("h3",{id:"015---2022-03-08"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.4...0.1.5"},"0.1.5")," - 2022-03-08"),(0,n.kt)("h4",{id:"-new-features-31"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(cards): add custom display for volto-block-image-cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f49ffb65f41c78499f56251c2de267ce5617b4c5"},(0,n.kt)("inlineCode",{parentName:"a"},"f49ffb6"))),(0,n.kt)("li",{parentName:"ul"},"feat(KeyContent): add new component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2534c542c2fd729b31a9064a21dae2bd3cacb2e4"},(0,n.kt)("inlineCode",{parentName:"a"},"2534c54"))),(0,n.kt)("li",{parentName:"ul"},"feat(docusaurus): Updated developer guidelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca146ffd42cb31286a5c49fa09390d0a93270cfa"},(0,n.kt)("inlineCode",{parentName:"a"},"ca146ff"))),(0,n.kt)("li",{parentName:"ul"},"feat(storybook): add testimonial component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/55d97472d82f3819674e78f684e197625c9f854c"},(0,n.kt)("inlineCode",{parentName:"a"},"55d9747"))),(0,n.kt)("li",{parentName:"ul"},"feat(storybook): add AvatarGrid component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b6684456ea6fa17695734b5179b39be77644da93"},(0,n.kt)("inlineCode",{parentName:"a"},"b668445"))),(0,n.kt)("li",{parentName:"ul"},"feat(storybook):add Loader component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6758346a516f7c4be5d66dfdf198dbe2ffe3f01"},(0,n.kt)("inlineCode",{parentName:"a"},"f675834")))),(0,n.kt)("h4",{id:"-bug-fixes-46"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(breakpoints): fix largest screen breakpoint bug on scaling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e4a11c876c20187351fa9454b4fbf0de3e502bff"},(0,n.kt)("inlineCode",{parentName:"a"},"e4a11c8"))),(0,n.kt)("li",{parentName:"ul"},"fix(profile): section css overflow and padding issues #95 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bb9eb0f83307524bda5cf86aa0dfd678c65da653"},(0,n.kt)("inlineCode",{parentName:"a"},"bb9eb0f"))),(0,n.kt)("li",{parentName:"ul"},"fix(storybook): lint auto changes for AvatarGrid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8e74f17df77f8f9f96bf442dc178417bbfc04c6"},(0,n.kt)("inlineCode",{parentName:"a"},"b8e74f1"))),(0,n.kt)("li",{parentName:"ul"},"fix(components): add grid structure to various components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cc33546deda634cee6031bd6cde6eef3eaacb76a"},(0,n.kt)("inlineCode",{parentName:"a"},"cc33546"))),(0,n.kt)("li",{parentName:"ul"},"fix(header) re-added span tags removed in pull request #74 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/00702d7831b84aad52f10368dbef740baf581ab8"},(0,n.kt)("inlineCode",{parentName:"a"},"00702d7")))),(0,n.kt)("h4",{id:"-enhancements-61"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(button): styling updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/37afda5b00797d456e303fb585dad145b575b2ed"},(0,n.kt)("inlineCode",{parentName:"a"},"37afda5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tab): updates on variables and overrides ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/54bf703f9f34f2f945f4635cd4bc4728174c7d47"},(0,n.kt)("inlineCode",{parentName:"a"},"54bf703"))),(0,n.kt)("li",{parentName:"ul"},"change(blockquote): treat slate as a variation of blockquote component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5e8a8b8220c7c25a266f045442aae44303eb8701"},(0,n.kt)("inlineCode",{parentName:"a"},"5e8a8b8"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): added display variable for footer site logos ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2f942b4a80c3ed9eb94e8b71299f4ebf33501eea"},(0,n.kt)("inlineCode",{parentName:"a"},"2f942b4"))),(0,n.kt)("li",{parentName:"ul"},"refactor(checkbox/radio): remove header from message and adjust top position of bullet ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a072b30bb01cf59339960cfd3254584cfae57c6"},(0,n.kt)("inlineCode",{parentName:"a"},"4a072b3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(color): remove secondaryColorDarken variable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/74c8ba073cc92af3987d81d484768235b95fcffb"},(0,n.kt)("inlineCode",{parentName:"a"},"74c8ba0"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): updated template to change what's new title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/58f58c887560e707ced47ccbac6897d8ebcf45d2"},(0,n.kt)("inlineCode",{parentName:"a"},"58f58c8"))),(0,n.kt)("li",{parentName:"ul"},"change(github): auto deploy only on develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bfa35a32bf0fefd4433aec4f7f8ee2cfe53eaae5"},(0,n.kt)("inlineCode",{parentName:"a"},"bfa35a3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): implementation in preparation for Volto integration #20 #97 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cddda2090d3d17c086dfd0cdb8a4dab3f886bfcd"},(0,n.kt)("inlineCode",{parentName:"a"},"cddda20"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumbs): component, make it functional and pluggable #32 #94 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f42e802bdf29d02c76131379b168c8c2119864b"},(0,n.kt)("inlineCode",{parentName:"a"},"9f42e80"))),(0,n.kt)("li",{parentName:"ul"},"change(card): added styles for volto cards integration #92 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a46ac21e6229059fb982174610a733c44000a2b6"},(0,n.kt)("inlineCode",{parentName:"a"},"a46ac21"))),(0,n.kt)("li",{parentName:"ul"},"refactor(grid): remove column count from example ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac0e9cf8e9f6ea99ddf8d5a92e49903999cde262"},(0,n.kt)("inlineCode",{parentName:"a"},"ac0e9cf"))),(0,n.kt)("li",{parentName:"ul"},"change(github): trigger autobuild when modifying templates contents ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f7d1523e92c1c4b3e6285a48d5f8c776aecfa9c"},(0,n.kt)("inlineCode",{parentName:"a"},"5f7d152"))),(0,n.kt)("li",{parentName:"ul"},"refactor(grid): remove custom grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1d978a96a464b3285961d54cb1cbc7c9eaf35faf"},(0,n.kt)("inlineCode",{parentName:"a"},"1d978a9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Form):change form field wrapper implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/73cdd6daba19aefce091552a62a528a42b323228"},(0,n.kt)("inlineCode",{parentName:"a"},"73cdd6d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(message): update colors to match design ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/633ce311dc5a6a141ee514a9108753531aa661e4"},(0,n.kt)("inlineCode",{parentName:"a"},"633ce31"))),(0,n.kt)("li",{parentName:"ul"},"refactor(checkbox/radio): update variables and remove important rules ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ad533b4e3e821c126f62b558523057720d2573c8"},(0,n.kt)("inlineCode",{parentName:"a"},"ad533b4"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables): add variables to less for new components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/47df026655748865bc7af8f44d51e5a9fcf7ee34"},(0,n.kt)("inlineCode",{parentName:"a"},"47df026"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Tab): fix vertical tab alignment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/401bdf2868e8c8305ad2c3cefa3188b730348574"},(0,n.kt)("inlineCode",{parentName:"a"},"401bdf2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(lint changes): add lint changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6f6847fc19db7922c93cb5f52e50db845d053e04"},(0,n.kt)("inlineCode",{parentName:"a"},"6f6847f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(inpageNavigation): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/62f74ea3c08069da8615516a52df8415d50048d5"},(0,n.kt)("inlineCode",{parentName:"a"},"62f74ea"))),(0,n.kt)("li",{parentName:"ul"},"refactor(message): updates on styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4cf8501de961794baf5a8ecec99e4bcddc2d71b"},(0,n.kt)("inlineCode",{parentName:"a"},"b4cf850"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): update class name ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef0969bd873e9fdd0eb32593f7c3f995270ef44c"},(0,n.kt)("inlineCode",{parentName:"a"},"ef0969b"))),(0,n.kt)("li",{parentName:"ul"},"change(github): use develop for auto pushing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a32a723f8126292f62a71cb4c4f94a2c7dec7605"},(0,n.kt)("inlineCode",{parentName:"a"},"a32a723")))),(0,n.kt)("h4",{id:"-internal-changes-23"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(design-system): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/631fa90e2ec5352c01e2ee0824de4a45cc33de34"},(0,n.kt)("inlineCode",{parentName:"a"},"631fa90"))),(0,n.kt)("li",{parentName:"ul"},"style(checkbox/radio): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a04939fdb530ed998a40aeb5b85a748d5dace0cd"},(0,n.kt)("inlineCode",{parentName:"a"},"a04939f"))),(0,n.kt)("li",{parentName:"ul"},"style(design-system): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c753f0b378384150597283c97f657eafbfff296"},(0,n.kt)("inlineCode",{parentName:"a"},"3c753f0"))),(0,n.kt)("li",{parentName:"ul"},"style(message): stylelint fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5b75057cb3a7b366a940ca9d1ba577cd09dc7225"},(0,n.kt)("inlineCode",{parentName:"a"},"5b75057")))),(0,n.kt)("h4",{id:"-documentation-changes-20"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): visuals guidelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/544a9502dc046d7e8bc635c19480a8deb2b31379"},(0,n.kt)("inlineCode",{parentName:"a"},"544a950"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): search guidelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0fb229d8b6a042bd716a093faaf8a1461b70cdb8"},(0,n.kt)("inlineCode",{parentName:"a"},"0fb229d"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): loader page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/892a25dba66f3557af22f8f0f96db695ddf1b402"},(0,n.kt)("inlineCode",{parentName:"a"},"892a25d")))),(0,n.kt)("h4",{id:"\ufe0f-others-52"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Reformat header.less ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f99dfc82c165304ca5600ce5138c1233615ab69"},(0,n.kt)("inlineCode",{parentName:"a"},"1f99dfc"))),(0,n.kt)("li",{parentName:"ul"},"Close menu when changing path ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/65daea9ee34c64bd5e51104077bc745b68169cd2"},(0,n.kt)("inlineCode",{parentName:"a"},"65daea9"))),(0,n.kt)("li",{parentName:"ul"},"refactor breadcrumbs component, make it functional and customizable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ec374e20565eb0a5aed0ff67a02cd6f77eba1f0"},(0,n.kt)("inlineCode",{parentName:"a"},"4ec374e"))),(0,n.kt)("li",{parentName:"ul"},"rollback(cards): move custom display to volto-block-image-cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/79d4c8914b7184d559465135f046b60ee96301e1"},(0,n.kt)("inlineCode",{parentName:"a"},"79d4c89"))),(0,n.kt)("li",{parentName:"ul"},"Open overlay menu on global menu click ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cc749bc4266aae793b85d72c43c8a08b0c2fec48"},(0,n.kt)("inlineCode",{parentName:"a"},"cc749bc"))),(0,n.kt)("li",{parentName:"ul"},"bring back segment wrapper and make it attached ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f413ffaf641c161e8ff0f8010759cffd7e30238"},(0,n.kt)("inlineCode",{parentName:"a"},"9f413ff"))),(0,n.kt)("li",{parentName:"ul"},"Use renderMenuItem also in mobile menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/02de0bb4750062a310109256b6c6d29120287fd4"},(0,n.kt)("inlineCode",{parentName:"a"},"02de0bb"))),(0,n.kt)("li",{parentName:"ul"},"Fix clicking outside closes menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af526646559d1a00ade04dc24def26e5665a5a8c"},(0,n.kt)("inlineCode",{parentName:"a"},"af52664"))),(0,n.kt)("li",{parentName:"ul"},"Cleanup args in header story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2bf6a304b1149ec1204f08f318248ed52ad8fa3d"},(0,n.kt)("inlineCode",{parentName:"a"},"2bf6a30"))),(0,n.kt)("li",{parentName:"ul"},"fix warning related to proptype ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/824b9beff77aae139882cd50a1d670a02ec6f723"},(0,n.kt)("inlineCode",{parentName:"a"},"824b9be"))),(0,n.kt)("li",{parentName:"ul"},"fix profile section css overflow ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8fd265413149f1b5e033dffa0fbcb5ef5ecad15f"},(0,n.kt)("inlineCode",{parentName:"a"},"8fd2654"))),(0,n.kt)("li",{parentName:"ul"},"don't use volto-slate ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70ca3d4ec4e8e4dc633e957b842d94b708af8b82"},(0,n.kt)("inlineCode",{parentName:"a"},"70ca3d4"))),(0,n.kt)("li",{parentName:"ul"},"remove segment custom width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a60d84d5fe76578b7760aa1dad6eef9a20916a7"},(0,n.kt)("inlineCode",{parentName:"a"},"4a60d84"))),(0,n.kt)("li",{parentName:"ul"},"update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/96f4af0fb22605fd294472eb18f7f62e4bd7b0fb"},(0,n.kt)("inlineCode",{parentName:"a"},"96f4af0"))),(0,n.kt)("li",{parentName:"ul"},"Fix TopDropdownMenu component rendering in mobile ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4626def4e1f97f323f3fef130f5d531925ba15b"},(0,n.kt)("inlineCode",{parentName:"a"},"a4626de"))),(0,n.kt)("li",{parentName:"ul"},"Add usePrevious hook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/797faba3cad73288755f6c6e685448d780905189"},(0,n.kt)("inlineCode",{parentName:"a"},"797faba"))),(0,n.kt)("li",{parentName:"ul"},"make breadcrumbs default size as tiny ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c8e1c64f27596421e78927f11616093667b04c6"},(0,n.kt)("inlineCode",{parentName:"a"},"3c8e1c6"))),(0,n.kt)("li",{parentName:"ul"},"Update package.json ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fa020cb5dd85e28d0713b3e8a11aff5b2c1060af"},(0,n.kt)("inlineCode",{parentName:"a"},"fa020cb"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about hardcoded values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0c6912c82625c2e389fd75f0d0a051348781d407"},(0,n.kt)("inlineCode",{parentName:"a"},"0c6912c"))),(0,n.kt)("li",{parentName:"ul"},"set profile section overflow to auto ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8db62bbcd0258fee16411e94888c732a29b1949d"},(0,n.kt)("inlineCode",{parentName:"a"},"8db62bb"))),(0,n.kt)("li",{parentName:"ul"},"added comment about need for removal of this fix later ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6fdbd713dbfe795e7e81cfa37398774fad71c054"},(0,n.kt)("inlineCode",{parentName:"a"},"6fdbd71"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using eea-website-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6051724437a38675e659c797bb5586ef81286ec0"},(0,n.kt)("inlineCode",{parentName:"a"},"6051724"))),(0,n.kt)("li",{parentName:"ul"},"removed override already present in card.less ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93c4e5aac9cc85ff2cc6c04180f6655d5f5616dc"},(0,n.kt)("inlineCode",{parentName:"a"},"93c4e5a"))),(0,n.kt)("li",{parentName:"ul"},"Remove console.log calls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8a3a4cb32bfed2daa86339b15c0301eb01e19f23"},(0,n.kt)("inlineCode",{parentName:"a"},"8a3a4cb"))),(0,n.kt)("li",{parentName:"ul"},"update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/81bb7d4a02576887b80e978c32724580b772d57a"},(0,n.kt)("inlineCode",{parentName:"a"},"81bb7d4"))),(0,n.kt)("li",{parentName:"ul"},"Update comment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ffa24001728f824b8e7154c93c5aad8196bd92ea"},(0,n.kt)("inlineCode",{parentName:"a"},"ffa2400"))),(0,n.kt)("li",{parentName:"ul"},"merge develop into this branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ad5b388957b7d67f1b7ae06f2b80b1c30868d72a"},(0,n.kt)("inlineCode",{parentName:"a"},"ad5b388"))),(0,n.kt)("li",{parentName:"ul"},"WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a8d97f10b9768894a135549e9dc8f938b663f905"},(0,n.kt)("inlineCode",{parentName:"a"},"a8d97f1"))),(0,n.kt)("li",{parentName:"ul"},"Use header.less from develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/99edbc6ccd6023162dcce75b36d6b9451b06f6dc"},(0,n.kt)("inlineCode",{parentName:"a"},"99edbc6"))),(0,n.kt)("li",{parentName:"ul"},"WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/57b5783e2b03859f89c5926951ea232547b455cc"},(0,n.kt)("inlineCode",{parentName:"a"},"57b5783"))),(0,n.kt)("li",{parentName:"ul"},"WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/785da36b725bf14bff28a67da799c51bc5b4f20f"},(0,n.kt)("inlineCode",{parentName:"a"},"785da36"))),(0,n.kt)("li",{parentName:"ul"},"WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5d1eba9a1df2d2bb078f119ee99b0627ac55ae1d"},(0,n.kt)("inlineCode",{parentName:"a"},"5d1eba9"))),(0,n.kt)("li",{parentName:"ul"},"adds Tags ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e37fc1957ed8357bc2190239da4440bb98b0dabe"},(0,n.kt)("inlineCode",{parentName:"a"},"e37fc19"))),(0,n.kt)("li",{parentName:"ul"},"Add useClickOutside hook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70364c88631cbfa6e6854a99dde42ea2ad73221f"},(0,n.kt)("inlineCode",{parentName:"a"},"70364c8"))),(0,n.kt)("li",{parentName:"ul"},"Implement outside click handling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fa6f81823c47ca32209f3f1c8b1810b5447f97ec"},(0,n.kt)("inlineCode",{parentName:"a"},"fa6f818"))),(0,n.kt)("li",{parentName:"ul"},"Simplify overlay menu template ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/28b04784cf32ed4393e452c56680bffda411d526"},(0,n.kt)("inlineCode",{parentName:"a"},"28b0478"))),(0,n.kt)("li",{parentName:"ul"},"fixes less variables, fixes tags positioning ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cc19b9b537b5f21ceaba986bbd0182bb3b867ac7"},(0,n.kt)("inlineCode",{parentName:"a"},"cc19b9b"))),(0,n.kt)("li",{parentName:"ul"},"WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/15bc0f4287b705839f6fd5ac8835f03e2e99f1f1"},(0,n.kt)("inlineCode",{parentName:"a"},"15bc0f4"))),(0,n.kt)("li",{parentName:"ul"},"no ",(0,n.kt)("inlineCode",{parentName:"li"},"display: flex")," for blockquote added from slate ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/312a893e924dea4e7aed182be4a615bc3c4f04f8"},(0,n.kt)("inlineCode",{parentName:"a"},"312a893"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about code length ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/318cd48f8116a49897590137eebe2ce35285b813"},(0,n.kt)("inlineCode",{parentName:"a"},"318cd48"))),(0,n.kt)("li",{parentName:"ul"},"Add indenting rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d58968522ef82a7d5381fc4958ae2049562b7103"},(0,n.kt)("inlineCode",{parentName:"a"},"d589685"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about import sorting ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cd337c16650ae169e4b634b034f40f3cd887ceb8"},(0,n.kt)("inlineCode",{parentName:"a"},"cd337c1"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about naming vars ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b112de0dcaa4209cfe143dcd26ba929b4cbe0a42"},(0,n.kt)("inlineCode",{parentName:"a"},"b112de0"))),(0,n.kt)("li",{parentName:"ul"},"Bring back classNames from header subpopup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e477a5150bee569fadca300a3ccc3586e7d7ef4a"},(0,n.kt)("inlineCode",{parentName:"a"},"e477a51"))),(0,n.kt)("li",{parentName:"ul"},"removes tags hashtag from jsx ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6b8b3e94a6a1060304c1e5b228806985343ef6a0"},(0,n.kt)("inlineCode",{parentName:"a"},"6b8b3e9"))),(0,n.kt)("li",{parentName:"ul"},"WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d481324ff7a63e3cb0847b89fa188cc8781de4dc"},(0,n.kt)("inlineCode",{parentName:"a"},"d481324"))),(0,n.kt)("li",{parentName:"ul"},"fixes undefined on empty classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4b29080d646c44b02a28c4619f5285227fa2bf78"},(0,n.kt)("inlineCode",{parentName:"a"},"4b29080"))),(0,n.kt)("li",{parentName:"ul"},"stylelint changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a5ab83018bccd8fbfcf2160fe9c6c4fc24abe83a"},(0,n.kt)("inlineCode",{parentName:"a"},"a5ab830"))),(0,n.kt)("li",{parentName:"ul"},"Footer link color @white ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/578e4f7bb174cd46d50a8b5c5a97f8bbff510f11"},(0,n.kt)("inlineCode",{parentName:"a"},"578e4f7"))),(0,n.kt)("li",{parentName:"ul"},"add margin to ","<","br",">"," element to simulate gap as in design ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9ab9a97dc231fd3b704fedd99c742f425be4578c"},(0,n.kt)("inlineCode",{parentName:"a"},"9ab9a97"))),(0,n.kt)("li",{parentName:"ul"},"impors colors from site variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6117267716b76b17379ae989911c5d5f00e63259"},(0,n.kt)("inlineCode",{parentName:"a"},"6117267"))),(0,n.kt)("li",{parentName:"ul"},"small fix for the link in footer action ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/72df049aa644ac2a675057bf3a96440144acabfb"},(0,n.kt)("inlineCode",{parentName:"a"},"72df049"))),(0,n.kt)("li",{parentName:"ul"},"remove uneeded style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/66e9064de395b37caef1436aaee3a164b53ae406"},(0,n.kt)("inlineCode",{parentName:"a"},"66e9064"))),(0,n.kt)("li",{parentName:"ul"},"use proper naming conventions for var naming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/596e3143e28f23e60f20becd97276831c89d9684"},(0,n.kt)("inlineCode",{parentName:"a"},"596e314"))),(0,n.kt)("li",{parentName:"ul"},"Add file mode rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/805baa7db5ae1863bc85687f8f872c74a26647c8"},(0,n.kt)("inlineCode",{parentName:"a"},"805baa7"))),(0,n.kt)("li",{parentName:"ul"},"use less variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b43ac8d3bfc0231313f3d8bc719e373a127c6329"},(0,n.kt)("inlineCode",{parentName:"a"},"b43ac8d"))),(0,n.kt)("li",{parentName:"ul"},"Add DRY rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2f1584e769d0462c0385847630e3bbfe48a52339"},(0,n.kt)("inlineCode",{parentName:"a"},"2f1584e"))),(0,n.kt)("li",{parentName:"ul"},"Add functional components rule; add classnames rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1b2915ed3a4a3446e11058ac7de8937cf5755630"},(0,n.kt)("inlineCode",{parentName:"a"},"1b2915e"))),(0,n.kt)("li",{parentName:"ul"},"fix z-index of header ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d2a5d6bb822a298367ce58d867939318171a300"},(0,n.kt)("inlineCode",{parentName:"a"},"7d2a5d6"))),(0,n.kt)("li",{parentName:"ul"},"Remove comment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d120b16491406ea7cc26428dcf13ec2565868d0"},(0,n.kt)("inlineCode",{parentName:"a"},"7d120b1")))),(0,n.kt)("h3",{id:"014---2022-03-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.4-beta.0...0.1.4"},"0.1.4")," - 2022-03-01"),(0,n.kt)("h4",{id:"-enhancements-62"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(pagination): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/06cc3b6db6f56040264e4c70fe2e39ace14499d7"},(0,n.kt)("inlineCode",{parentName:"a"},"06cc3b6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Form):create form field wrapper file ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/95b9934a75ffd6b254b7bb9c119b8087c7565c13"},(0,n.kt)("inlineCode",{parentName:"a"},"95b9934"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): update margins for menu items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/230e476d133b3f7853a73f3f2ee372c6306bd43f"},(0,n.kt)("inlineCode",{parentName:"a"},"230e476"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): update gradient ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/47f2ea40c4f214a41af58ceb90839a05932b0b55"},(0,n.kt)("inlineCode",{parentName:"a"},"47f2ea4")))),(0,n.kt)("h4",{id:"-documentation-changes-21"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): divider page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c6bb2389f819a9ebd8e34db0e825f3e5f62130d4"},(0,n.kt)("inlineCode",{parentName:"a"},"c6bb238")))),(0,n.kt)("h4",{id:"\ufe0f-others-53"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"add footer links,align footer image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b039564e8cd3a0319ebe07f434f20bb7d7827fe1"},(0,n.kt)("inlineCode",{parentName:"a"},"b039564"))),(0,n.kt)("li",{parentName:"ul"},"cosmetics: remove formatting ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e02b08dc2adc8b89a5b9117b5a572c7080248c29"},(0,n.kt)("inlineCode",{parentName:"a"},"e02b08d"))),(0,n.kt)("li",{parentName:"ul"},"refactor Footer component to consume children and prop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/faafcffe07383ba55f5746cb971cdf706d988f78"},(0,n.kt)("inlineCode",{parentName:"a"},"faafcff"))),(0,n.kt)("li",{parentName:"ul"},"update footer stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4e5742872f21d9737f3de443fa0e9d1b6ba02637"},(0,n.kt)("inlineCode",{parentName:"a"},"4e57428"))),(0,n.kt)("li",{parentName:"ul"},"update stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/81973cac96ee48e9b294c45e32c0ec3d2956fe67"},(0,n.kt)("inlineCode",{parentName:"a"},"81973ca"))),(0,n.kt)("li",{parentName:"ul"},"Small improvements to footer ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6d1fdc000ab83932df62244142068f097aeeb85"},(0,n.kt)("inlineCode",{parentName:"a"},"f6d1fdc"))),(0,n.kt)("li",{parentName:"ul"},"fix header urls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e5908916823a1f5771ddbeb51b3e8af026425c49"},(0,n.kt)("inlineCode",{parentName:"a"},"e590891"))),(0,n.kt)("li",{parentName:"ul"},"Rename files in footer story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3de0c19d1ddeb69d8567026e1532fceb9221049a"},(0,n.kt)("inlineCode",{parentName:"a"},"3de0c19"))),(0,n.kt)("li",{parentName:"ul"},"add style for accordion title input on edit mode ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/598aa129f2dff0a2cb2ec57f551fa72481aa911e"},(0,n.kt)("inlineCode",{parentName:"a"},"598aa12"))),(0,n.kt)("li",{parentName:"ul"},"remove comments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2db0d2c2bbebe8bab8cf9801c5ea2650dde96b87"},(0,n.kt)("inlineCode",{parentName:"a"},"2db0d2c"))),(0,n.kt)("li",{parentName:"ul"},"Apply slate customization if volto-slate addon is used ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c066701dc359c6daf01703dac8fa61c2314c11cf"},(0,n.kt)("inlineCode",{parentName:"a"},"c066701"))),(0,n.kt)("li",{parentName:"ul"},"use relative links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af91a203bb30f5c9aa1335bfa8cdaa7857d577e2"},(0,n.kt)("inlineCode",{parentName:"a"},"af91a20"))),(0,n.kt)("li",{parentName:"ul"},"make footer anchor links white ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0c671e1bf52268505a5dc58196c285c04da33b10"},(0,n.kt)("inlineCode",{parentName:"a"},"0c671e1"))),(0,n.kt)("li",{parentName:"ul"},"use custom var for line-height ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f7f6c7ea605014741b9426b19008a4e6eda6704c"},(0,n.kt)("inlineCode",{parentName:"a"},"f7f6c7e"))),(0,n.kt)("li",{parentName:"ul"},"Update semantic.less ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4a90aed030a8927fa2ea949e4f44d23638c751a"},(0,n.kt)("inlineCode",{parentName:"a"},"a4a90ae"))),(0,n.kt)("li",{parentName:"ul"},"Bump release version ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c41a42bc2fd8174a2554e6dce1a1090eff4f3bd1"},(0,n.kt)("inlineCode",{parentName:"a"},"c41a42b"))),(0,n.kt)("li",{parentName:"ul"},"Update style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/89686990b2481f339c9bec7e7f9d35d9caab94c5"},(0,n.kt)("inlineCode",{parentName:"a"},"8968699"))),(0,n.kt)("li",{parentName:"ul"},"remove styling on header popups ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/86c499be61c0d2df46cb3469a47f0afae2e46c49"},(0,n.kt)("inlineCode",{parentName:"a"},"86c499b"))),(0,n.kt)("li",{parentName:"ul"},"remove search icon styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aca80fdc78859461cfee1d902b1d122d4a189b31"},(0,n.kt)("inlineCode",{parentName:"a"},"aca80fd"))),(0,n.kt)("li",{parentName:"ul"},"adjust popup height for computer screens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/47c5edb06c8d8cdb9af8ac64f68be0e0360eccaf"},(0,n.kt)("inlineCode",{parentName:"a"},"47c5edb"))),(0,n.kt)("li",{parentName:"ul"},"fix login container width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9a887e3b15aa63aab9be8738f599febcfe245b81"},(0,n.kt)("inlineCode",{parentName:"a"},"9a887e3"))),(0,n.kt)("li",{parentName:"ul"},"Typo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/90da95c67e965124da7f431e464bcbc15fa67894"},(0,n.kt)("inlineCode",{parentName:"a"},"90da95c"))),(0,n.kt)("li",{parentName:"ul"},"fix search-input icon line-height ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b087ff86d7753f3ee0bf90a9b07c4ee7ef5e336c"},(0,n.kt)("inlineCode",{parentName:"a"},"b087ff8"))),(0,n.kt)("li",{parentName:"ul"},"lint fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e9790ca72b8d3caf114c1b80b9c5837fb6a1a56e"},(0,n.kt)("inlineCode",{parentName:"a"},"e9790ca"))),(0,n.kt)("li",{parentName:"ul"},"Rename, reorganize logos ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1ef8d22df5a757258d8610818f44362046bc828d"},(0,n.kt)("inlineCode",{parentName:"a"},"1ef8d22")))),(0,n.kt)("h3",{id:"014-beta0---2022-02-25"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.3...0.1.4-beta.0"},"0.1.4-beta.0")," - 2022-02-25"),(0,n.kt)("h4",{id:"-new-features-32"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(github): added feature and bug reports templates with our guidelines as checkboxes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/15490937382ced93f5ac69cc1939256c0a468823"},(0,n.kt)("inlineCode",{parentName:"a"},"1549093")))),(0,n.kt)("h3",{id:"013---2022-02-25"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.2...0.1.3"},"0.1.3")," - 2022-02-25"),(0,n.kt)("h4",{id:"-bug-fixes-47"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(all): change eol to unix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/62e72244f78d43ce1c7b1a5ceb8405e4a617c88a"},(0,n.kt)("inlineCode",{parentName:"a"},"62e7224"))),(0,n.kt)("li",{parentName:"ul"},"fix(banner): separate url value ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f9c9140a6f8640bbb83a08f9c5c268f31ff7b6a8"},(0,n.kt)("inlineCode",{parentName:"a"},"f9c9140"))),(0,n.kt)("li",{parentName:"ul"},"fix(all): merge eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c68f6e0e7ab11d7451c8aabf194f62da0b6adb28"},(0,n.kt)("inlineCode",{parentName:"a"},"c68f6e0"))),(0,n.kt)("li",{parentName:"ul"},"fix(blockquote): align self property now uses a valid entry ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ec761634765105694386ce48153fb95c09339273"},(0,n.kt)("inlineCode",{parentName:"a"},"ec76163")))),(0,n.kt)("h4",{id:"-enhancements-63"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): new implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff013afc68fed97d085e3930f6d728b266786dc1"},(0,n.kt)("inlineCode",{parentName:"a"},"ff013af"))),(0,n.kt)("li",{parentName:"ul"},"change(volto): removed customizations made for ims theme from volto-eea-design-system ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bc8d514d82da0811c10eefe6dde16e0846497a4a"},(0,n.kt)("inlineCode",{parentName:"a"},"bc8d514"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Timeline): divide to sub components and change files to .jsx ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e2bd3b6c8dd064e7269819ce465b961a0cee849"},(0,n.kt)("inlineCode",{parentName:"a"},"3e2bd3b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4e5d08d565ef08e4e390ede4a611145a16ca2fa9"},(0,n.kt)("inlineCode",{parentName:"a"},"4e5d08d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): link header's menu to mega menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/08406d84e5bc1c7eb1358baff19ff6731f124b32"},(0,n.kt)("inlineCode",{parentName:"a"},"08406d8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Menu): change mega menu implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/455a51b9a9fbb00c6a89c42de226787c143176f7"},(0,n.kt)("inlineCode",{parentName:"a"},"455a51b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Grid):minor changes and delete extra files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/272585dfed0c0e82b26c1e6843484ad0981ba75f"},(0,n.kt)("inlineCode",{parentName:"a"},"272585d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(timeline): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b98641af00f23302b728094ed00a4563b6813387"},(0,n.kt)("inlineCode",{parentName:"a"},"b98641a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): fix link hover issue for tablet ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/564e9721aea7d4ed998d88764e37454bc3154d3d"},(0,n.kt)("inlineCode",{parentName:"a"},"564e972"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add remix icons and minor updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c9c97dd719187e996efabaee28ccbf23d43f03af"},(0,n.kt)("inlineCode",{parentName:"a"},"c9c97dd"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): change header buttons implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6608b8cfffb75dda90b01728dc4fe657cbd84069"},(0,n.kt)("inlineCode",{parentName:"a"},"6608b8c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): add sub components and change existing Main ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/74c35a3fe462bdad7b9b2a5a6e969043439fdf5b"},(0,n.kt)("inlineCode",{parentName:"a"},"74c35a3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(table): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab7a0e8d9e83edb3035d57285a5f85557bcd7576"},(0,n.kt)("inlineCode",{parentName:"a"},"ab7a0e8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Footer): delete Actions & ThemeSites files and clear imports ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7a78456f55742a1b356070303218342876641e52"},(0,n.kt)("inlineCode",{parentName:"a"},"7a78456"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/326655a48aeac65b32beadb48707d0193c952702"},(0,n.kt)("inlineCode",{parentName:"a"},"326655a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Breadcrumb): add react router link and minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/073a3a36215427dce274a533b10d2d0bb3526de9"},(0,n.kt)("inlineCode",{parentName:"a"},"073a3a3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): show menu on search & minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4d49a8ae6958b84bd2dbaf7bd5f62310037eb288"},(0,n.kt)("inlineCode",{parentName:"a"},"4d49a8a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(List): add extra default list story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/95665cdca945cba104a25d5efcbc56436dffbd7f"},(0,n.kt)("inlineCode",{parentName:"a"},"95665cd"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus) change generation of what's new section and bump package version ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6c35cff4d65bb44755376c85ff4de8c6b39af00b"},(0,n.kt)("inlineCode",{parentName:"a"},"6c35cff"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Footer): minor code changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/67cb4bc5f9d341da78e7816ed89f219d8ac2836e"},(0,n.kt)("inlineCode",{parentName:"a"},"67cb4bc"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Menu): add class to mega menu items for styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19baa342c29322d11371303dc0092f472da1eeee"},(0,n.kt)("inlineCode",{parentName:"a"},"19baa34"))),(0,n.kt)("li",{parentName:"ul"},"change(accordion): modified default accordion stories titles with real accordion names ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cf11cc81d7096d338c565180597822e51fcaa8b7"},(0,n.kt)("inlineCode",{parentName:"a"},"cf11cc8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): accessibility image alt fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7347a688c2f37f08390b189f8bfa990c26c7f75"},(0,n.kt)("inlineCode",{parentName:"a"},"a7347a6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): adjust to volto in progress ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/760becabf40dbbaed36dac6c37275c7e31aa2509"},(0,n.kt)("inlineCode",{parentName:"a"},"760beca"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): header items as storybook arguments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/388c752aa0694e78f5306c2b2efa4a34df4b9ca6"},(0,n.kt)("inlineCode",{parentName:"a"},"388c752"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): update less variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/35b0a98eced49212bb08c3c7d2ac6987a16ec6be"},(0,n.kt)("inlineCode",{parentName:"a"},"35b0a98"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): actions as buttons; don't hardcode url for banner image; subcomponentize Banner, add Banner.Action; add developer guidelines on inline styles and line endings; ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6dd5a41248e8bf4095744bd89217707f3ad820a1"},(0,n.kt)("inlineCode",{parentName:"a"},"6dd5a41"))),(0,n.kt)("li",{parentName:"ul"},"refactor(blockquote): fix responsive margins and sizes rems ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/209f94f5535d83678af5fd650dcc3892a94c8a34"},(0,n.kt)("inlineCode",{parentName:"a"},"209f94f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Input): label position and style change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/970074aacae0c1ffabe88be58779b332993a37fd"},(0,n.kt)("inlineCode",{parentName:"a"},"970074a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update dropdown menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32eb0fa5dbb431c5d8e74e4c3e28b0555dab8aea"},(0,n.kt)("inlineCode",{parentName:"a"},"32eb0fa"))),(0,n.kt)("li",{parentName:"ul"},"refactor(timeline): theming updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c80c9aa5eb08c3b58199c6f6faca06445640f9f8"},(0,n.kt)("inlineCode",{parentName:"a"},"c80c9aa"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Blockquote):remove image stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a6357caa641e18e7a19b834cd907ba8c7117367f"},(0,n.kt)("inlineCode",{parentName:"a"},"a6357ca"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus) proofread blockquote usage section and removed unused api section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0bb29fdb73bce90f842748abd978a388fff93932"},(0,n.kt)("inlineCode",{parentName:"a"},"0bb29fd"))),(0,n.kt)("li",{parentName:"ul"},"change(infrastructure) cherry-pick fix 9639243 skipping jenkins on auto commits ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fc744cda5a4e6d9da0ab6e7f92868d53f28f53c1"},(0,n.kt)("inlineCode",{parentName:"a"},"fc744cd"))),(0,n.kt)("li",{parentName:"ul"},"change(ci) build storybook and docusaurus only when pushing to develop-itml branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4de0cbf9bfc4ecb46605dca1048a38db844880e7"},(0,n.kt)("inlineCode",{parentName:"a"},"4de0cbf"))),(0,n.kt)("li",{parentName:"ul"},"change(infrastructure): modify whats new doc when committing the auto deployment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/39df33ed946a8167e4954cffb676144700e0ec38"},(0,n.kt)("inlineCode",{parentName:"a"},"39df33e"))),(0,n.kt)("li",{parentName:"ul"},"change(blockquote): introduce float argument for blockquote with image storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8fc72906c264b5e96702f8518e81d5724b494a5c"},(0,n.kt)("inlineCode",{parentName:"a"},"8fc7290"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pullquote): add word break ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2245e53dde6dd8abf437afa94e92bbedc60c9f8c"},(0,n.kt)("inlineCode",{parentName:"a"},"2245e53"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner): minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b9073b60e337eab40a992283b5b9e75d5cffe895"},(0,n.kt)("inlineCode",{parentName:"a"},"b9073b6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(table): fix th font weight ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a96a0a7a4cb450b5f947bc397495a2a41c605c87"},(0,n.kt)("inlineCode",{parentName:"a"},"a96a0a7"))),(0,n.kt)("li",{parentName:"ul"},"refactor(comment): remove avatar border radius ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d42c37bb8f71e20e1d0ec438c14e3c7ac00cf0ae"},(0,n.kt)("inlineCode",{parentName:"a"},"d42c37b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): adjust title size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7a24d9c07a5994fa46c39fdf1e827e0d1ae5e504"},(0,n.kt)("inlineCode",{parentName:"a"},"7a24d9c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Image): change image path ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a580da68a45bbe68d314f60e9495fc321489caf5"},(0,n.kt)("inlineCode",{parentName:"a"},"a580da6"))),(0,n.kt)("li",{parentName:"ul"},"change(infrastructure): specify that docs folder contains changes for deployment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a1ca9153b70e3525cd73423d059a8607f63fc2b9"},(0,n.kt)("inlineCode",{parentName:"a"},"a1ca915")))),(0,n.kt)("h4",{id:"-internal-changes-24"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(input) prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e83fa0c3e95e33d89ab668de38e6b0b12d9fb0d9"},(0,n.kt)("inlineCode",{parentName:"a"},"e83fa0c"))),(0,n.kt)("li",{parentName:"ul"},"chore(storybook): prettier fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/354c7b33c92a9f48ca9cbb0b96b6cec213e465c8"},(0,n.kt)("inlineCode",{parentName:"a"},"354c7b3"))),(0,n.kt)("li",{parentName:"ul"},"chore(design system): technical commit for edw integration tests ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f76035122d647e14b5151af3b39f0ab3e199af2"},(0,n.kt)("inlineCode",{parentName:"a"},"9f76035"))),(0,n.kt)("li",{parentName:"ul"},"style(storybook): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c9ad345268335c42e41d13b35c0da93e9770847"},(0,n.kt)("inlineCode",{parentName:"a"},"3c9ad34"))),(0,n.kt)("li",{parentName:"ul"},"chore(infrastructure) updated branch with changes from bitbucket ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/77866f8c7ac203db0645a74b7a7456b5c4de5dd7"},(0,n.kt)("inlineCode",{parentName:"a"},"77866f8")))),(0,n.kt)("h4",{id:"\ufe0f-others-54"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"doc(colours):fix color to better show primary ones ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/705b7899f9d687747d2deb27ac4d8b4429878de0"},(0,n.kt)("inlineCode",{parentName:"a"},"705b789"))),(0,n.kt)("li",{parentName:"ul"},"doc(colours):change font size to fit text in one line ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ad751660ec832e67a0c858e75685259b9ef8d82"},(0,n.kt)("inlineCode",{parentName:"a"},"4ad7516"))),(0,n.kt)("li",{parentName:"ul"},"bump package release to 1.3.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f3cfe4f5232ff96a9845d12da72008cf838c1010"},(0,n.kt)("inlineCode",{parentName:"a"},"f3cfe4f"))),(0,n.kt)("li",{parentName:"ul"},"Refactor banner into content subcomponent ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f8df238b4db90fdb841cdd5436a644e582f73b82"},(0,n.kt)("inlineCode",{parentName:"a"},"f8df238"))),(0,n.kt)("li",{parentName:"ul"},"lint fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cda322d8c013ef303b93b4b8d29594aa3bbd0bc1"},(0,n.kt)("inlineCode",{parentName:"a"},"cda322d"))),(0,n.kt)("li",{parentName:"ul"},"rollback don'ts grammar change and disable unresolved import for Banner.stories.jsx ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a1bd7154fa64451b6a521743955a57405dc7fb67"},(0,n.kt)("inlineCode",{parentName:"a"},"a1bd715"))),(0,n.kt)("li",{parentName:"ul"},"Add space line in component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4d1a5fbe9a9ea53701702d7ce33622795f5ab00"},(0,n.kt)("inlineCode",{parentName:"a"},"d4d1a5f")))),(0,n.kt)("h3",{id:"012---2022-02-17"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.2-beta.2...0.1.2"},"0.1.2")," - 2022-02-17"),(0,n.kt)("h4",{id:"-new-features-33"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(blockquote) added blockquote styles as a custom module ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d30662e23176cf7a5ab64aa322acd5a09a0c4130"},(0,n.kt)("inlineCode",{parentName:"a"},"d30662e")))),(0,n.kt)("h4",{id:"-bug-fixes-48"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(inpageNavigation): hide at the top of the page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/97ef50069cd9b29345fb68ce8b557a47577669a4"},(0,n.kt)("inlineCode",{parentName:"a"},"97ef500"))),(0,n.kt)("li",{parentName:"ul"},"fix(footer):missing image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac91a29a134c97af842c6be4987c60c44c4c96d8"},(0,n.kt)("inlineCode",{parentName:"a"},"ac91a29"))),(0,n.kt)("li",{parentName:"ul"},"fix(comment):fix broken image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8125dc179923f652ecd25003df8ecb4fb0aeffb9"},(0,n.kt)("inlineCode",{parentName:"a"},"8125dc1"))),(0,n.kt)("li",{parentName:"ul"},"fix(message): fix font loading ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fdc498e178a04315c88e005fbc1371ba954ff402"},(0,n.kt)("inlineCode",{parentName:"a"},"fdc498e"))),(0,n.kt)("li",{parentName:"ul"},"fix(logo): logo change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f8c8af4453774386d5d0432a078b049416d034b"},(0,n.kt)("inlineCode",{parentName:"a"},"5f8c8af")))),(0,n.kt)("h4",{id:"-enhancements-64"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): multiple components fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a3ff518323a3eab18edc5057c6f1233e5422a22"},(0,n.kt)("inlineCode",{parentName:"a"},"4a3ff51"))),(0,n.kt)("li",{parentName:"ul"},"change(infrastructure) re-enable integration tests for auto release stack ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce8daf8abc6eb9a6b7fd8579904a3e5642896e3a"},(0,n.kt)("inlineCode",{parentName:"a"},"ce8daf8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): global site files styling update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f3770f1756bca3898e2a67fa532a9d97b0fd1ef2"},(0,n.kt)("inlineCode",{parentName:"a"},"f3770f1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): multiple components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9277aaccb09aa03575b95851d55fc69b1f530e23"},(0,n.kt)("inlineCode",{parentName:"a"},"9277aac"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer) adjust to volto theming update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a59f1c354ceea661c60faabfdb6226c9f4ba1209"},(0,n.kt)("inlineCode",{parentName:"a"},"a59f1c3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): minor styling update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dd6b55c6c5331383a42f6865bd9bd0641feb9a3b"},(0,n.kt)("inlineCode",{parentName:"a"},"dd6b55c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): change header mega menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7559b57a08c2f0e9f3eb95167479ca041b998bc5"},(0,n.kt)("inlineCode",{parentName:"a"},"7559b57"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/451b9493b100dae80bed4b6629da725195dddff1"},(0,n.kt)("inlineCode",{parentName:"a"},"451b949"))),(0,n.kt)("li",{parentName:"ul"},"refactor(accordion): minor styling update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aeaf25f585c1379a2bd40de1c1bf03fee00ef76e"},(0,n.kt)("inlineCode",{parentName:"a"},"aeaf25f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bdff1768096443f2f453d76bf9958adabd309cb7"},(0,n.kt)("inlineCode",{parentName:"a"},"bdff176"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer):mobile responsiveness ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/14822bec78feebc2b06fc26d6992a481be2e3609"},(0,n.kt)("inlineCode",{parentName:"a"},"14822be"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): main and custom less files update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1607760bb1582c63ab1a6b978ac13bb0ca51b0c2"},(0,n.kt)("inlineCode",{parentName:"a"},"1607760"))),(0,n.kt)("li",{parentName:"ul"},"refactor(timeline): update after removing timeline addon ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f54d3806eb0a60379b46b03a04a6602ed465cd15"},(0,n.kt)("inlineCode",{parentName:"a"},"f54d380"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Footer): replace with subcomponents ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/378c652265213bafac9de1d946cb328fa2fe90cb"},(0,n.kt)("inlineCode",{parentName:"a"},"378c652"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): header change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/029e85039bb3f35a6ba4ff2870d98e1faa23661b"},(0,n.kt)("inlineCode",{parentName:"a"},"029e850"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): change header bar ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2b766fd62c86d22f01278c54d3a1dbfb696b095b"},(0,n.kt)("inlineCode",{parentName:"a"},"2b766fd"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus) use itml branch for docusaurus deployment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e286c50056aa6d0d5735cb330789b4e48a1f927"},(0,n.kt)("inlineCode",{parentName:"a"},"6e286c5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(accordion): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/971fcb824f6aa55ac28b4b275927b202d2c08ca6"},(0,n.kt)("inlineCode",{parentName:"a"},"971fcb8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): add sub components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7f955dbafa94c13e71ff587af70aa84d18da8da0"},(0,n.kt)("inlineCode",{parentName:"a"},"7f955db"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus) tweak auto deployment to always commit changes from docs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a2940daef1cf281bac87dec3cec68337053cc52d"},(0,n.kt)("inlineCode",{parentName:"a"},"a2940da"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): less and variables files created ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5b1a8aaf7f678dd60fb88149284058fcab617fd"},(0,n.kt)("inlineCode",{parentName:"a"},"d5b1a8a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(label): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c945e1600b4beb3667b389542adade317d285c6"},(0,n.kt)("inlineCode",{parentName:"a"},"3c945e1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(message): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e950fc56461540be24d9e5b2ff3c0bf8ad53738"},(0,n.kt)("inlineCode",{parentName:"a"},"3e950fc"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Footer): add sub components and props ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c3d14871887a83fb91792fbc8977c0439bcb16f2"},(0,n.kt)("inlineCode",{parentName:"a"},"c3d1487"))),(0,n.kt)("li",{parentName:"ul"},"refactor(modal): modal and confirm adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/83b60e94bdd3203a92a1b9038f9cc45011ba72a5"},(0,n.kt)("inlineCode",{parentName:"a"},"83b60e9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(comment): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/84348c36b5b750c324c89b5e3c462319bb9ebf46"},(0,n.kt)("inlineCode",{parentName:"a"},"84348c3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook):adjust headings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32f64f9b71d1cb8c96c9c37ba1850a2278f95287"},(0,n.kt)("inlineCode",{parentName:"a"},"32f64f9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): add comments to header menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c2c83b202e5117d8e0013101d8e922e9d93d21de"},(0,n.kt)("inlineCode",{parentName:"a"},"c2c83b2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Accordion): clear up accordion stories code ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4e59b8fa961b878591e9806e1ebbfdb841523077"},(0,n.kt)("inlineCode",{parentName:"a"},"4e59b8f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(segmant): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ab211e868296f377fddba203847549f0e5e07df"},(0,n.kt)("inlineCode",{parentName:"a"},"3ab211e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button) minor styling update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8782bb27c789a4aac97b380d718f4de129fdf682"},(0,n.kt)("inlineCode",{parentName:"a"},"8782bb2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): change image position ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cdd76d59ade86f3f989bf7d94e45e4d9b439115f"},(0,n.kt)("inlineCode",{parentName:"a"},"cdd76d5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumbs): update less variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/640817ee904f88a04f0e8f11b258f95b8db97039"},(0,n.kt)("inlineCode",{parentName:"a"},"640817e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(list): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1079c733e6ec634fedaab5b4630888a52b28e482"},(0,n.kt)("inlineCode",{parentName:"a"},"1079c73"))),(0,n.kt)("li",{parentName:"ul"},"refactor(timeline):adjust timeline module ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/213eb11e8e87940c18d81738609b4684329a5ce4"},(0,n.kt)("inlineCode",{parentName:"a"},"213eb11"))),(0,n.kt)("li",{parentName:"ul"},"refactor(blockquote):adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5eec87fc1b3017011266241c20b31217ac27c12d"},(0,n.kt)("inlineCode",{parentName:"a"},"5eec87f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progress): add progress bar colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ccf3c9823b2583fc70183554df7c4588fbf9ca13"},(0,n.kt)("inlineCode",{parentName:"a"},"ccf3c98"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pullquote):adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fee446668a8d65a717b42667af825cb5cec836b2"},(0,n.kt)("inlineCode",{parentName:"a"},"fee4466"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): change mobile mega menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c7ecf18a81024121218d580f201f324cf990829e"},(0,n.kt)("inlineCode",{parentName:"a"},"c7ecf18"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b726e49519914b02766bcd993b94ce9ff164e1df"},(0,n.kt)("inlineCode",{parentName:"a"},"b726e49"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button) adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/eb257f83541871ccc635842664722b914661770c"},(0,n.kt)("inlineCode",{parentName:"a"},"eb257f8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form): minor styling update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/79934b2cde2e806418a6422df2914321181f7a22"},(0,n.kt)("inlineCode",{parentName:"a"},"79934b2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Footer): create Actions & Sites sub components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/446840b99abd6897c1b59a9462d72b1f06f1dd4e"},(0,n.kt)("inlineCode",{parentName:"a"},"446840b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(inpageNavigation): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/85c631a9e9c1454f1f2530e4f1851089663dd610"},(0,n.kt)("inlineCode",{parentName:"a"},"85c631a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Inpage Navigation): changed button's display ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/36e5b4f107ce3535b607f7ed169c723a66ce6ac2"},(0,n.kt)("inlineCode",{parentName:"a"},"36e5b4f"))),(0,n.kt)("li",{parentName:"ul"},"enhancement(docusaurus) modified headings to be within release versions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19ace3038d6b4535b29634209e4d506e7dca2c2c"},(0,n.kt)("inlineCode",{parentName:"a"},"19ace30"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): move components to ui folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb91f88f628580f565eb01ea8627763bc2243dfb"},(0,n.kt)("inlineCode",{parentName:"a"},"cb91f88"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): change mega menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/de0fc6b3862a88ac04058b56020af23c1946ce41"},(0,n.kt)("inlineCode",{parentName:"a"},"de0fc6b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Pullquote): divide Pullquote to sub components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/34413c44ab9e318d67408f7497782b7de693deeb"},(0,n.kt)("inlineCode",{parentName:"a"},"34413c4"))),(0,n.kt)("li",{parentName:"ul"},"enhancement(docusaurus) replace changelog when auto-building docs Refs #145331 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/da25c0e25ffa80131ab4b5503b28e43385d9f827"},(0,n.kt)("inlineCode",{parentName:"a"},"da25c0e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(popup): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d0d192dc2b2a5edd422cf6a7b359c384ec4b1d55"},(0,n.kt)("inlineCode",{parentName:"a"},"d0d192d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ab6f914f487bea0df299de7da0bbd917733ee00"},(0,n.kt)("inlineCode",{parentName:"a"},"2ab6f91"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/89a16af86a165d7798b68b95ff3de215a92f0569"},(0,n.kt)("inlineCode",{parentName:"a"},"89a16af"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pullquotes) remove unnecessary variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e0d20a3febec060ac24c5498846e768d7068e8b9"},(0,n.kt)("inlineCode",{parentName:"a"},"e0d20a3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progress):adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d1ab950ee9cc14bbe95869d4f143fc428aad5a8d"},(0,n.kt)("inlineCode",{parentName:"a"},"d1ab950"))),(0,n.kt)("li",{parentName:"ul"},"refactor(blockquote) change variables names ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/36fd5be9bde1a3ceb8390639414f254fc26b8e76"},(0,n.kt)("inlineCode",{parentName:"a"},"36fd5be"))),(0,n.kt)("li",{parentName:"ul"},"refactor(comment): adjust font sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0311ed14c951eb9cba18a58f6f954c19601d838b"},(0,n.kt)("inlineCode",{parentName:"a"},"0311ed1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(InpageNavigation): clear up code ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1d7afdc8d751e61c3eef75360555807fdbef8619"},(0,n.kt)("inlineCode",{parentName:"a"},"1d7afdc"))),(0,n.kt)("li",{parentName:"ul"},"refactor(container): change variable name for computer padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/26d123f3e7e30a706b09efc10773694af79377f9"},(0,n.kt)("inlineCode",{parentName:"a"},"26d123f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(inpageNavigation): remove imports ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/25c1d1c3016695d92d104a12b22a6a9254f41b20"},(0,n.kt)("inlineCode",{parentName:"a"},"25c1d1c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): update ui index components exports ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce78d47880cab5849f4c01785cdd97a9b26771ec"},(0,n.kt)("inlineCode",{parentName:"a"},"ce78d47"))),(0,n.kt)("li",{parentName:"ul"},"change(infrastructure) auto build storybook when pushing to develop-itml branch of volto-eea-design-system ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e9aa5bc3de9c2e1c5dc55b5d317679bc14dd1cbd"},(0,n.kt)("inlineCode",{parentName:"a"},"e9aa5bc"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): delete demo stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8b58d0245f5bda7e2022a2ef9ace11015f13da01"},(0,n.kt)("inlineCode",{parentName:"a"},"8b58d02"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus) align deployment steps for building docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/37e4ce05d2772ac320a7ad561536189c5ea0a582"},(0,n.kt)("inlineCode",{parentName:"a"},"37e4ce0"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): remove components from customizations folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8930edeaf064ec316f1d086e1301a7e5269bfe4b"},(0,n.kt)("inlineCode",{parentName:"a"},"8930ede"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tab): minor styling update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1252ad0317ecf7e583dbb975b29a4c8e4c75330e"},(0,n.kt)("inlineCode",{parentName:"a"},"1252ad0"))),(0,n.kt)("li",{parentName:"ul"},"refactor(comment): change avatar src ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e5f9c4c02f5de5ae6480eedb45730bb76efbf7b4"},(0,n.kt)("inlineCode",{parentName:"a"},"e5f9c4c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner) : change file type and folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/878742ba0f95440ffbb5aec33f2cc4201dfacd43"},(0,n.kt)("inlineCode",{parentName:"a"},"878742b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form elements):changed text ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/919beea9deccec68ac0cdbbc1249ef4ab4c12230"},(0,n.kt)("inlineCode",{parentName:"a"},"919beea"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Image): change image src ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b9710849adf0cf4f10815186b6293bcc3881d68d"},(0,n.kt)("inlineCode",{parentName:"a"},"b971084"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Pullquote): add component propTypes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d32c5e69e76d7f369a286d29e49d767125550ebc"},(0,n.kt)("inlineCode",{parentName:"a"},"d32c5e6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(blockquote): adjust font sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d71a3cef7bfd4109c56b7fe8c07271c60a4bd19e"},(0,n.kt)("inlineCode",{parentName:"a"},"d71a3ce"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update font sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1c91c357a59669df0da0f4fc70d3aa420db27a14"},(0,n.kt)("inlineCode",{parentName:"a"},"1c91c35"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Blockquote): add component proTypes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea02649f92b0e41b1eb62a771330c2e53b3960e8"},(0,n.kt)("inlineCode",{parentName:"a"},"ea02649"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logo): update image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6113728e248c3e0fd0a467bb34406aa4403399e"},(0,n.kt)("inlineCode",{parentName:"a"},"f611372"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): restore config ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2c5239d92abe6be70b092e7e43f195308800f87"},(0,n.kt)("inlineCode",{parentName:"a"},"f2c5239"))),(0,n.kt)("li",{parentName:"ul"},"refactor(blockquote): update component name ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/572e655c033d93b32a48a61b1bf6383f6c993b26"},(0,n.kt)("inlineCode",{parentName:"a"},"572e655"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): fix story header import ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ceda6c7790964b150b95daf161d10364d6b67427"},(0,n.kt)("inlineCode",{parentName:"a"},"ceda6c7"))),(0,n.kt)("li",{parentName:"ul"},"change(infrastructure) auto build docusaurus when pushing to develop-itml branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7bebdf5e58f37400a8ae3d5f816c64c6b9ca3a5b"},(0,n.kt)("inlineCode",{parentName:"a"},"7bebdf5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): remove components from customization folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a9bb9b34e6961eaf16e54ed6f6ca4942944e8a0"},(0,n.kt)("inlineCode",{parentName:"a"},"4a9bb9b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner):story rename ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/56ff603d6c9cec7c22483a088624f5bd7911f717"},(0,n.kt)("inlineCode",{parentName:"a"},"56ff603"))),(0,n.kt)("li",{parentName:"ul"},"change(testing) removed navigation from cypress tests until component is finished ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5549f4c07cb0ffd725342f365aae07745d7e25f7"},(0,n.kt)("inlineCode",{parentName:"a"},"5549f4c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Segment): change to .jsx extension ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5cb35d81e8628832bab2e6ad50de6892e7e4370e"},(0,n.kt)("inlineCode",{parentName:"a"},"5cb35d8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Pullquote): change to .jsx extension ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/564cf7ea379703315f179ab922b4e0a02df63e47"},(0,n.kt)("inlineCode",{parentName:"a"},"564cf7e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(PopUp):change to .jsx extension ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dcb24ff252665a79fda2fec645e6f2a48ff71fd0"},(0,n.kt)("inlineCode",{parentName:"a"},"dcb24ff"))),(0,n.kt)("li",{parentName:"ul"},"refactor(InpageNavigation): change to .jsx extension ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dfefce3ebe55f8eb6f67974ccc33b0cb0bb13d9f"},(0,n.kt)("inlineCode",{parentName:"a"},"dfefce3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Blockquote): change to .jsx extension ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/44a164532c1ae969e4411e0cfb68b705ff2bfc1e"},(0,n.kt)("inlineCode",{parentName:"a"},"44a1645"))),(0,n.kt)("li",{parentName:"ul"},"refactor(heading): story name update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aa10f3412323321650e20401038d44b9bfdb507a"},(0,n.kt)("inlineCode",{parentName:"a"},"aa10f34")))),(0,n.kt)("h4",{id:"-internal-changes-25"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(footer): prettier fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/902c25712c88330db841240c9f1d6004e3e2674f"},(0,n.kt)("inlineCode",{parentName:"a"},"902c257"))),(0,n.kt)("li",{parentName:"ul"},"style(storybook): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/59f941dea9bf05f31257230f1a871c6eb0e98aae"},(0,n.kt)("inlineCode",{parentName:"a"},"59f941d")))),(0,n.kt)("h4",{id:"-documentation-changes-22"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus):multiple page updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2aba73ea6ff86c5a94789c707d98699fc1397e01"},(0,n.kt)("inlineCode",{parentName:"a"},"2aba73e"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus):update page content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/565697fecb4528cc5b4a6a43ca3ab9b026a2779e"},(0,n.kt)("inlineCode",{parentName:"a"},"565697f"))),(0,n.kt)("li",{parentName:"ul"},"docs(grid):update components grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/60eb083aa5d00840642caf73f6e0bb86b814aed5"},(0,n.kt)("inlineCode",{parentName:"a"},"60eb083"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): page adjustments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0641eacf9f4715acd4baaa651335ff84ac418009"},(0,n.kt)("inlineCode",{parentName:"a"},"0641eac"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus):updated various pages ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f860176a5f755d75d7b9558661e675fc678fe7ac"},(0,n.kt)("inlineCode",{parentName:"a"},"f860176"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): logo change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3af5e5c3acbf7ba4e152ca6944c500dbb0cf10ee"},(0,n.kt)("inlineCode",{parentName:"a"},"3af5e5c")))),(0,n.kt)("h4",{id:"\ufe0f-others-55"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"added sortable table stories and descriptions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d44dd7c651abe46c380b62efd3258c92223e99c"},(0,n.kt)("inlineCode",{parentName:"a"},"6d44dd7"))),(0,n.kt)("li",{parentName:"ul"},"Layout components theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/586101341f713bb072f2753d8df6e8b2ad6e4938"},(0,n.kt)("inlineCode",{parentName:"a"},"5861013"))),(0,n.kt)("li",{parentName:"ul"},"recovered files from origin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4ac04fde9c4297b09c834385f772e955b7f3b4a"},(0,n.kt)("inlineCode",{parentName:"a"},"a4ac04f"))),(0,n.kt)("li",{parentName:"ul"},"grid component & stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a5752e49aac05251905f7355234c3f9bc6b798f"},(0,n.kt)("inlineCode",{parentName:"a"},"4a5752e"))),(0,n.kt)("li",{parentName:"ul"},"Updated what's new section with actual commits from volto-eea-design-system repo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fc5e3c385d82ff7eccbd5841736f3ce292b2b7fd"},(0,n.kt)("inlineCode",{parentName:"a"},"fc5e3c3"))),(0,n.kt)("li",{parentName:"ul"},"Docusaurus title possible fix. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/db699e771b13bbd7e75c3bd84bb91ecf5d0459d8"},(0,n.kt)("inlineCode",{parentName:"a"},"db699e7"))),(0,n.kt)("li",{parentName:"ul"},"form elements stories added description & default values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6b4f6ebeed275a86f5ef6dafb13219db0c0fbbc6"},(0,n.kt)("inlineCode",{parentName:"a"},"6b4f6eb"))),(0,n.kt)("li",{parentName:"ul"},"removed API tabs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/58aa9286eb5d8cc520239aa6ee424ee5cd5446c3"},(0,n.kt)("inlineCode",{parentName:"a"},"58aa928"))),(0,n.kt)("li",{parentName:"ul"},"Layout updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/854f388c5b049e41217ddb444bc7bd0f2c61cdf6"},(0,n.kt)("inlineCode",{parentName:"a"},"854f388"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142123 removed extra customization of semantic.less: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab9de811b20b20a9f91ddc8b45b4de2eb9c47f6c"},(0,n.kt)("inlineCode",{parentName:"a"},"ab9de81"))),(0,n.kt)("li",{parentName:"ul"},"added page-header,footer and grid in docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/660c8e382068c179ca66831ae23588a4fb67cde6"},(0,n.kt)("inlineCode",{parentName:"a"},"660c8e3"))),(0,n.kt)("li",{parentName:"ul"},"Manual docs build and commit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/666eb6aff8535bb586a49579152fcf8a88961f35"},(0,n.kt)("inlineCode",{parentName:"a"},"666eb6a"))),(0,n.kt)("li",{parentName:"ul"},"added svg & png files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f1338d5bb02e17e402cea4b1584c7d01896097f9"},(0,n.kt)("inlineCode",{parentName:"a"},"f1338d5"))),(0,n.kt)("li",{parentName:"ul"},"added missing components to docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/934dfd8a98942c247deb2b5b8693604ad77cafa3"},(0,n.kt)("inlineCode",{parentName:"a"},"934dfd8"))),(0,n.kt)("li",{parentName:"ul"},"Control descriptions updated ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/56581ebc86a91fd012a98984b20f6daad25900fe"},(0,n.kt)("inlineCode",{parentName:"a"},"56581eb"))),(0,n.kt)("li",{parentName:"ul"},"Grid updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/700332d354aea84526ff22acf3bc2f8903c0f584"},(0,n.kt)("inlineCode",{parentName:"a"},"700332d"))),(0,n.kt)("li",{parentName:"ul"},"Button theming update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0ec68b6bd1ab060ac224a859180b9f750834c0b8"},(0,n.kt)("inlineCode",{parentName:"a"},"0ec68b6"))),(0,n.kt)("li",{parentName:"ul"},"site variebales & overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7251162f182f1528d72070aae8a5a14e9ec5ee93"},(0,n.kt)("inlineCode",{parentName:"a"},"7251162"))),(0,n.kt)("li",{parentName:"ul"},"Table and Tabs theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/49f08608e8be8475d561e1ce5c1bfbcfd21001f9"},(0,n.kt)("inlineCode",{parentName:"a"},"49f0860"))),(0,n.kt)("li",{parentName:"ul"},"Responsiveness updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48e1351104249fea610941793ff8ec3bf35d0699"},(0,n.kt)("inlineCode",{parentName:"a"},"48e1351"))),(0,n.kt)("li",{parentName:"ul"},"added various components to docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/550d71963b0957b1c5597bbdb2c699c411c649bd"},(0,n.kt)("inlineCode",{parentName:"a"},"550d719"))),(0,n.kt)("li",{parentName:"ul"},"Checkbox and radio updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24652a238f2c98fe5d8e8032e3320e0b3b4753e5"},(0,n.kt)("inlineCode",{parentName:"a"},"24652a2"))),(0,n.kt)("li",{parentName:"ul"},"remove images from typography and colour docs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8493e924f5af4ba7c2ed478d7bae6992b4ef6ed6"},(0,n.kt)("inlineCode",{parentName:"a"},"8493e92"))),(0,n.kt)("li",{parentName:"ul"},"added guidelines' text and finished all components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/02d75fcdc5a98633e4d563c7ec2863a9588b5506"},(0,n.kt)("inlineCode",{parentName:"a"},"02d75fc"))),(0,n.kt)("li",{parentName:"ul"},"added more missing components in docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8be82634c681a073b13a5a90ee2b699bd25b422a"},(0,n.kt)("inlineCode",{parentName:"a"},"8be8263"))),(0,n.kt)("li",{parentName:"ul"},"Prettier changes on docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f1e5eb796f2072e3b816a39a35cf48523405167"},(0,n.kt)("inlineCode",{parentName:"a"},"5f1e5eb"))),(0,n.kt)("li",{parentName:"ul"},"Grid updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ae099453e280de800a5a06c6fcbe074acc1f7bfd"},(0,n.kt)("inlineCode",{parentName:"a"},"ae09945"))),(0,n.kt)("li",{parentName:"ul"},"Minor fixes for tests ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3bdf3063d9bbc101f4b83c6aa4fc5fef5e87c776"},(0,n.kt)("inlineCode",{parentName:"a"},"3bdf306"))),(0,n.kt)("li",{parentName:"ul"},"Layout updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8b7a4dc8731cb02946e604a0dd73d2a45f61cd8b"},(0,n.kt)("inlineCode",{parentName:"a"},"8b7a4dc"))),(0,n.kt)("li",{parentName:"ul"},"Footer and TOC theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bb3d3c486f64e123b9009a76c6f054a8e2973230"},(0,n.kt)("inlineCode",{parentName:"a"},"bb3d3c4"))),(0,n.kt)("li",{parentName:"ul"},"Refs #145331 manually commit changelog until autobuild is stabilized ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93168b096b60fc6a208b20d1cbe610384be62f42"},(0,n.kt)("inlineCode",{parentName:"a"},"93168b0"))),(0,n.kt)("li",{parentName:"ul"},"label component changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/df8c0ff2d9646e4dcc7ed1a25a80712ca9ea2c9b"},(0,n.kt)("inlineCode",{parentName:"a"},"df8c0ff"))),(0,n.kt)("li",{parentName:"ul"},"added several sections to the theming guidelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff1a649d9c83794024e2db4f6349b3cac4fe79a0"},(0,n.kt)("inlineCode",{parentName:"a"},"ff1a649"))),(0,n.kt)("li",{parentName:"ul"},"Updated removed files. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/84f9b8cf7c469525367764909fa0d322532a13be"},(0,n.kt)("inlineCode",{parentName:"a"},"84f9b8c"))),(0,n.kt)("li",{parentName:"ul"},"added more docusaurus components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/52a3b9edd4c751225609dcaf2d16f08688e9cfeb"},(0,n.kt)("inlineCode",{parentName:"a"},"52a3b9e"))),(0,n.kt)("li",{parentName:"ul"},"Progress Bar ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f2efc9ded5a766df0c611a15f6a93f27bd14a37"},(0,n.kt)("inlineCode",{parentName:"a"},"9f2efc9"))),(0,n.kt)("li",{parentName:"ul"},"Modal and Confirm updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3b306c6fa5631e1e4e37456d483a69bc8cc3b234"},(0,n.kt)("inlineCode",{parentName:"a"},"3b306c6"))),(0,n.kt)("li",{parentName:"ul"},"Add proper changes to whatsnew meant in previous commit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/40f78e362ca607ef3893fff3d03c8ed1b4447c11"},(0,n.kt)("inlineCode",{parentName:"a"},"40f78e3"))),(0,n.kt)("li",{parentName:"ul"},"Form Descriptions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/de0dfbcb3a0a9610f1cbf7337f598b0c5338f2a3"},(0,n.kt)("inlineCode",{parentName:"a"},"de0dfbc"))),(0,n.kt)("li",{parentName:"ul"},"Prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1337e6fffb13fa8447488129d5dcd5af9e35e46a"},(0,n.kt)("inlineCode",{parentName:"a"},"1337e6f"))),(0,n.kt)("li",{parentName:"ul"},"Deleted files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b82f982fbfbaff4e74e35424c6122410e3830faf"},(0,n.kt)("inlineCode",{parentName:"a"},"b82f982"))),(0,n.kt)("li",{parentName:"ul"},"add new images for spacing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7b7b2c48317c45e3ff89162d703434f615c840e9"},(0,n.kt)("inlineCode",{parentName:"a"},"7b7b2c4"))),(0,n.kt)("li",{parentName:"ul"},"Messages Theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ad621a38c121f585125d5934c1939ba6a7198b33"},(0,n.kt)("inlineCode",{parentName:"a"},"ad621a3"))),(0,n.kt)("li",{parentName:"ul"},"added new content to docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1c83452be983d46f4128c33c25e69afef333f82a"},(0,n.kt)("inlineCode",{parentName:"a"},"1c83452"))),(0,n.kt)("li",{parentName:"ul"},"Minor less updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a36a8bbfeb201049fa13987894a5ec2ec167ed03"},(0,n.kt)("inlineCode",{parentName:"a"},"a36a8bb"))),(0,n.kt)("li",{parentName:"ul"},"Tabs and lists updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e37eef19e67c3c5720d5a9565e9884dc5c19f127"},(0,n.kt)("inlineCode",{parentName:"a"},"e37eef1"))),(0,n.kt)("li",{parentName:"ul"},"Inpage nav and timeline components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/76f0f82dc3a8f683268a4df7580b8f73a0cc1cb4"},(0,n.kt)("inlineCode",{parentName:"a"},"76f0f82"))),(0,n.kt)("li",{parentName:"ul"},"Prettier updated files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/679b9d2026091685d6982ab68e5088544ea0941e"},(0,n.kt)("inlineCode",{parentName:"a"},"679b9d2"))),(0,n.kt)("li",{parentName:"ul"},"dropdown initial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d8aef26dc905adbb0fb72c73d6188b50944931c9"},(0,n.kt)("inlineCode",{parentName:"a"},"d8aef26"))),(0,n.kt)("li",{parentName:"ul"},"Prettier changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f068af0b307d85146e1d8a529947c98988c506f7"},(0,n.kt)("inlineCode",{parentName:"a"},"f068af0"))),(0,n.kt)("li",{parentName:"ul"},"List initial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d3b96974bc35ad958b8cfc7921c1fbe345e5ebf"},(0,n.kt)("inlineCode",{parentName:"a"},"6d3b969"))),(0,n.kt)("li",{parentName:"ul"},"List story updated ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e96a6f6cff9a4db994df7cbf584842b18ca1c432"},(0,n.kt)("inlineCode",{parentName:"a"},"e96a6f6"))),(0,n.kt)("li",{parentName:"ul"},"Statistics updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/74bf63999cfeb0791b9475d3895a49a245be2cd3"},(0,n.kt)("inlineCode",{parentName:"a"},"74bf639"))),(0,n.kt)("li",{parentName:"ul"},"styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c169cc026189ca71e6e9cad17bde9d65d93ffbde"},(0,n.kt)("inlineCode",{parentName:"a"},"c169cc0"))),(0,n.kt)("li",{parentName:"ul"},"timeline comp storybook changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f42686ae19b619fa659730567bdceb369ecd4b0"},(0,n.kt)("inlineCode",{parentName:"a"},"1f42686"))),(0,n.kt)("li",{parentName:"ul"},"feature(docusaurus) added theming guidelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ded1f04a3197ac34640f98bcfe363c75a0a3745f"},(0,n.kt)("inlineCode",{parentName:"a"},"ded1f04"))),(0,n.kt)("li",{parentName:"ul"},"Properly commented out integration tests. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48b3a15f426db52b9fa27f6d7792c424b4939867"},(0,n.kt)("inlineCode",{parentName:"a"},"48b3a15"))),(0,n.kt)("li",{parentName:"ul"},"Reattempting commented out integrations tests. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3dd8211ecfca6c7891ef6851d0dc82899ab50f05"},(0,n.kt)("inlineCode",{parentName:"a"},"3dd8211"))),(0,n.kt)("li",{parentName:"ul"},"Button theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4231e1c264165ef6f7e2f2cd6fbd7c51159330b6"},(0,n.kt)("inlineCode",{parentName:"a"},"4231e1c"))),(0,n.kt)("li",{parentName:"ul"},"Card initial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/06dace5c4aa54d90ec4bcdc0b3fbc0883f825947"},(0,n.kt)("inlineCode",{parentName:"a"},"06dace5"))),(0,n.kt)("li",{parentName:"ul"},"form element storybook changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4b06aabddedbc281f23fc75a1e56476c4d1c1af"},(0,n.kt)("inlineCode",{parentName:"a"},"c4b06aa"))),(0,n.kt)("li",{parentName:"ul"},"Pagination theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2a80175762fbab23691d52f89cd38eb6f7740c4e"},(0,n.kt)("inlineCode",{parentName:"a"},"2a80175"))),(0,n.kt)("li",{parentName:"ul"},"Accordion theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8061bf90823a9172cfccb0ea1ed544ceda1c3fe9"},(0,n.kt)("inlineCode",{parentName:"a"},"8061bf9"))),(0,n.kt)("li",{parentName:"ul"},"global var updates and radio story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9526ee2fc8269db60ce912bfd4edfadbb55fed3a"},(0,n.kt)("inlineCode",{parentName:"a"},"9526ee2"))),(0,n.kt)("li",{parentName:"ul"},"created pullquote component & stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/df35563fb7ba2be403461c120b32ebffaa391736"},(0,n.kt)("inlineCode",{parentName:"a"},"df35563"))),(0,n.kt)("li",{parentName:"ul"},"Item stories added description & default values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9d459f2cd92e419813e7edf0f28dec4c750a5940"},(0,n.kt)("inlineCode",{parentName:"a"},"9d459f2"))),(0,n.kt)("li",{parentName:"ul"},"storybook clean up code ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bffd32603a70cf6cafa4874937f3fe218ba5de9d"},(0,n.kt)("inlineCode",{parentName:"a"},"bffd326"))),(0,n.kt)("li",{parentName:"ul"},"List updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/28f1b5352d83e144acdaae694cf20755a3b04106"},(0,n.kt)("inlineCode",{parentName:"a"},"28f1b53"))),(0,n.kt)("li",{parentName:"ul"},"Button classes updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/788c289549490d9ac5f1c40f1e39124349e1dbcd"},(0,n.kt)("inlineCode",{parentName:"a"},"788c289"))),(0,n.kt)("li",{parentName:"ul"},"Prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/678c9be717468fd2c8c425bec5999e81a66dabf6"},(0,n.kt)("inlineCode",{parentName:"a"},"678c9be"))),(0,n.kt)("li",{parentName:"ul"},"Removed header title from partial docusaurus components. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ed7c45e458504fa76ad500ab26f59a442b3c6952"},(0,n.kt)("inlineCode",{parentName:"a"},"ed7c45e"))),(0,n.kt)("li",{parentName:"ul"},"created banner component and stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9be170f2ccb20218a7bdae48c85f77acd69427ff"},(0,n.kt)("inlineCode",{parentName:"a"},"9be170f"))),(0,n.kt)("li",{parentName:"ul"},"Breadcrumb stories description & defaultValue -- clean up code ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/186ab65ca8635c853c919fc645c1ef0486e22a43"},(0,n.kt)("inlineCode",{parentName:"a"},"186ab65"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142123 added customization of semantic.less: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1e02356722fcb7528883b6dc3bf71279343fd1f7"},(0,n.kt)("inlineCode",{parentName:"a"},"1e02356"))),(0,n.kt)("li",{parentName:"ul"},"Card stories added description & default values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6b408f1ed24ee69ad8faacc6b36cf06e9917478"},(0,n.kt)("inlineCode",{parentName:"a"},"f6b408f"))),(0,n.kt)("li",{parentName:"ul"},"Statistic and accordion updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/16064ceeb6e1a7f097979365473c6a86ced4056f"},(0,n.kt)("inlineCode",{parentName:"a"},"16064ce"))),(0,n.kt)("li",{parentName:"ul"},"breadcrumb component & stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5bceb980502828c182a3998943ab086159c3fcb6"},(0,n.kt)("inlineCode",{parentName:"a"},"5bceb98"))),(0,n.kt)("li",{parentName:"ul"},"Container initial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3eb7155332f83bb8896a831e24cbae028413aba2"},(0,n.kt)("inlineCode",{parentName:"a"},"3eb7155"))),(0,n.kt)("li",{parentName:"ul"},"doc(docusaurus):Fix text for various parts ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bfd3fa2584a6e7aa2c26f3502b1ede912682905e"},(0,n.kt)("inlineCode",{parentName:"a"},"bfd3fa2"))),(0,n.kt)("li",{parentName:"ul"},"blockquote component & stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/879b6402f08112fedfffe6d66e72c37750593bb8"},(0,n.kt)("inlineCode",{parentName:"a"},"879b640"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 removed doc comments breaking doc building ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e6a6756b0533e6dbfdb636f9a9e6485e30187cad"},(0,n.kt)("inlineCode",{parentName:"a"},"e6a6756"))),(0,n.kt)("li",{parentName:"ul"},"Popup updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce2d641d8f5d940cbb93deefdabbbfb85ad20ad7"},(0,n.kt)("inlineCode",{parentName:"a"},"ce2d641"))),(0,n.kt)("li",{parentName:"ul"},"Global variables for colors and borders added ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e5fbd619d163acae03d3d1bb26e082390f90c21"},(0,n.kt)("inlineCode",{parentName:"a"},"6e5fbd6"))),(0,n.kt)("li",{parentName:"ul"},"Tab stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5429cfb7751d6ad31231f9cc19d8bd7e8d24d0b8"},(0,n.kt)("inlineCode",{parentName:"a"},"5429cfb"))),(0,n.kt)("li",{parentName:"ul"},"Confirm stories added description & default value ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/85cda14b1338dc986bbab5aa7846b4ef3ec8d0bd"},(0,n.kt)("inlineCode",{parentName:"a"},"85cda14"))),(0,n.kt)("li",{parentName:"ul"},"Kebab case class names ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b41cd078ab5b349dc1d15769832913dcc8e6786f"},(0,n.kt)("inlineCode",{parentName:"a"},"b41cd07"))),(0,n.kt)("li",{parentName:"ul"},"Card and Comment class updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/389946540d3def2ea81c5c7c489e79dc24d4efb3"},(0,n.kt)("inlineCode",{parentName:"a"},"3899465"))),(0,n.kt)("li",{parentName:"ul"},"Accordion updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c97ba39cc7823cb72180a858c0b8a69cc9434927"},(0,n.kt)("inlineCode",{parentName:"a"},"c97ba39"))),(0,n.kt)("li",{parentName:"ul"},"item stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/772e41f3d90034827afcb118c38ab075d3bb7bb9"},(0,n.kt)("inlineCode",{parentName:"a"},"772e41f"))),(0,n.kt)("li",{parentName:"ul"},"Accordion class updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9cdde86f14a17701d66b3d2850980251094934b5"},(0,n.kt)("inlineCode",{parentName:"a"},"9cdde86"))),(0,n.kt)("li",{parentName:"ul"},"Comment stories added description & default value ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb6f25bc1452330f4155ccf6a64df491740ed8da"},(0,n.kt)("inlineCode",{parentName:"a"},"cb6f25b"))),(0,n.kt)("li",{parentName:"ul"},"Accrodion stories description & default value ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab8fb883c3cbfeea1807bf1aaf72f5d8424933f4"},(0,n.kt)("inlineCode",{parentName:"a"},"ab8fb88"))),(0,n.kt)("li",{parentName:"ul"},"Pullquotes updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5984213ba9397ddb4c1932394a5cc368336cf0a"},(0,n.kt)("inlineCode",{parentName:"a"},"c598421"))),(0,n.kt)("li",{parentName:"ul"},"Modal and confirm class updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0ae47e6f55645c0d6318123a5783648326c16852"},(0,n.kt)("inlineCode",{parentName:"a"},"0ae47e6"))),(0,n.kt)("li",{parentName:"ul"},"Tab and paggination updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/96796fffb189d2fa3628423280f3622dcacb449f"},(0,n.kt)("inlineCode",{parentName:"a"},"96796ff"))),(0,n.kt)("li",{parentName:"ul"},"Form Updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e986a9f0fc48ddcbc17488a8bbbaec82cee92232"},(0,n.kt)("inlineCode",{parentName:"a"},"e986a9f"))),(0,n.kt)("li",{parentName:"ul"},"Classes renamed ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/73c8c3d622bb3b9c0b5cf09e340de4df6606a14c"},(0,n.kt)("inlineCode",{parentName:"a"},"73c8c3d"))),(0,n.kt)("li",{parentName:"ul"},"List and item less updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce0de1708ca410c7839f3ce9b5b3cfbdb6979939"},(0,n.kt)("inlineCode",{parentName:"a"},"ce0de17"))),(0,n.kt)("li",{parentName:"ul"},"Confirm theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/36e20ce0dd6cd159e9f8e519d22ab696a622efd9"},(0,n.kt)("inlineCode",{parentName:"a"},"36e20ce"))),(0,n.kt)("li",{parentName:"ul"},"container overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4b3970bd28df5939fd438f7fc58b5d1dfbe33719"},(0,n.kt)("inlineCode",{parentName:"a"},"4b3970b"))),(0,n.kt)("li",{parentName:"ul"},"Docusaurus theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fc4a8c5534b6eb85192a687890846b3a4bed9401"},(0,n.kt)("inlineCode",{parentName:"a"},"fc4a8c5"))),(0,n.kt)("li",{parentName:"ul"},"refacto(headings): update mobile headings sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b2e9f838766ffd73095ecf7eccc71629c09d6bc0"},(0,n.kt)("inlineCode",{parentName:"a"},"b2e9f83"))),(0,n.kt)("li",{parentName:"ul"},"list stories and style changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c61db53b153f8f0e51eddd6a6c82dd38e6278c82"},(0,n.kt)("inlineCode",{parentName:"a"},"c61db53"))),(0,n.kt)("li",{parentName:"ul"},"Tab theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e31e6c3b1f0d6b4dbd63425a1846914d8dfa318d"},(0,n.kt)("inlineCode",{parentName:"a"},"e31e6c3"))),(0,n.kt)("li",{parentName:"ul"},"Message and pagination classes updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c230687c48953208461aa92376588246d49dadaa"},(0,n.kt)("inlineCode",{parentName:"a"},"c230687"))),(0,n.kt)("li",{parentName:"ul"},"Segment initial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5724fe639e0f2aecbb1c633fe7e69b742ddfaf5"},(0,n.kt)("inlineCode",{parentName:"a"},"d5724fe"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 removed doc comments from api_markdown breaking doc building ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/efeacba82875c6b36ee1ef76792e86ca03ee6f35"},(0,n.kt)("inlineCode",{parentName:"a"},"efeacba"))),(0,n.kt)("li",{parentName:"ul"},"Timeline and responsiveness updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1ed152476e33bc41fdf9d89a6bc80f83af538373"},(0,n.kt)("inlineCode",{parentName:"a"},"1ed1524"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142123 use swap font-display for performance reasons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/083738f0834982b5684d67d75c080dc50b1c74ef"},(0,n.kt)("inlineCode",{parentName:"a"},"083738f"))),(0,n.kt)("li",{parentName:"ul"},"Breadcrumb stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3d0d17ca4f04123d55fda64c516b8f867ee1bd13"},(0,n.kt)("inlineCode",{parentName:"a"},"3d0d17c"))),(0,n.kt)("li",{parentName:"ul"},"Table component stories minor change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0bf40835204f57ab300e2c325309fddf5279d76b"},(0,n.kt)("inlineCode",{parentName:"a"},"0bf4083"))),(0,n.kt)("li",{parentName:"ul"},"List stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a64b304a3aa025873643d592de03cbfbc0d02d81"},(0,n.kt)("inlineCode",{parentName:"a"},"a64b304"))),(0,n.kt)("li",{parentName:"ul"},"blockquote component minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cdf71a883d3778e1bde25ec0b4a2f3e370b98b09"},(0,n.kt)("inlineCode",{parentName:"a"},"cdf71a8"))),(0,n.kt)("li",{parentName:"ul"},"ckeckbox stories minor change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d6e508f73a18d7ce9fcdb779026113659ce8950"},(0,n.kt)("inlineCode",{parentName:"a"},"6d6e508"))),(0,n.kt)("li",{parentName:"ul"},"image component storybook changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91290ec540ae913fff76f0dbed6c310668a2eeb3"},(0,n.kt)("inlineCode",{parentName:"a"},"91290ec"))),(0,n.kt)("li",{parentName:"ul"},"button overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5b78dd7b794e2e0ece2d5af9eb171e73b77ee93"},(0,n.kt)("inlineCode",{parentName:"a"},"d5b78dd"))),(0,n.kt)("li",{parentName:"ul"},"accordion overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fdcf7d58eea3ce9e68c49649fb4a788c8a801b49"},(0,n.kt)("inlineCode",{parentName:"a"},"fdcf7d5"))),(0,n.kt)("li",{parentName:"ul"},"Accordion component and stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5079247b2d4b96b2a7252692ea538ca620cbec38"},(0,n.kt)("inlineCode",{parentName:"a"},"5079247"))),(0,n.kt)("li",{parentName:"ul"},"Card theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/23bbb9d1b5751bc4877d02ae1c676ea28463ec39"},(0,n.kt)("inlineCode",{parentName:"a"},"23bbb9d"))),(0,n.kt)("li",{parentName:"ul"},"statistic overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2b11cb5ffb9c907563b37a3db8fea3b1ef3584bc"},(0,n.kt)("inlineCode",{parentName:"a"},"2b11cb5"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 build docs only on pull request like we do with storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/473bb87be53610a654d35c9b399de14824301385"},(0,n.kt)("inlineCode",{parentName:"a"},"473bb87"))),(0,n.kt)("li",{parentName:"ul"},"Card component stories minor change | added link icon ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/deb423af02643697c3781212b177487174d341f7"},(0,n.kt)("inlineCode",{parentName:"a"},"deb423a"))),(0,n.kt)("li",{parentName:"ul"},"comment component stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f1c5e75f1af24c5b39a2e61cf07c773abfa96f66"},(0,n.kt)("inlineCode",{parentName:"a"},"f1c5e75"))),(0,n.kt)("li",{parentName:"ul"},"Accordion component bug fixed ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/815e91df66ed738f3d91cadc8df151782829f545"},(0,n.kt)("inlineCode",{parentName:"a"},"815e91d"))),(0,n.kt)("li",{parentName:"ul"},"Refs #145331 use iso date to release so that we see also time ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ceedf08937ab683c3e624cd3c909bf4a4788f883"},(0,n.kt)("inlineCode",{parentName:"a"},"ceedf08"))),(0,n.kt)("li",{parentName:"ul"},"correct connfig for doco ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93e13135e7f00fe32f4db2d720db4159970da021"},(0,n.kt)("inlineCode",{parentName:"a"},"93e1313"))),(0,n.kt)("li",{parentName:"ul"},"Item updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fae93d43a0ad56c4c9b8ce7bf436ad4f47421744"},(0,n.kt)("inlineCode",{parentName:"a"},"fae93d4"))),(0,n.kt)("li",{parentName:"ul"},"added layout grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2e6be557bcd3bef836338380ef68acade1c6b3e3"},(0,n.kt)("inlineCode",{parentName:"a"},"2e6be55"))),(0,n.kt)("li",{parentName:"ul"},"tab overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87aaf32cac5a0dee0da5833217de68da62327f5a"},(0,n.kt)("inlineCode",{parentName:"a"},"87aaf32"))),(0,n.kt)("li",{parentName:"ul"},"message overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6dccfca52d9673f394d81bd40da0af1b1504af0c"},(0,n.kt)("inlineCode",{parentName:"a"},"6dccfca"))),(0,n.kt)("li",{parentName:"ul"},"segment storie changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/296371fa71e43c2341bee8069f66d5cd1f7aa5f8"},(0,n.kt)("inlineCode",{parentName:"a"},"296371f"))),(0,n.kt)("li",{parentName:"ul"},"progress component stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/df10c2ed1289ae770008c71e1545c1ac0a223fc5"},(0,n.kt)("inlineCode",{parentName:"a"},"df10c2e"))),(0,n.kt)("li",{parentName:"ul"},"message comp storybook changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c86b40563f655fd5833dd05119f04d0e4256e75f"},(0,n.kt)("inlineCode",{parentName:"a"},"c86b405"))),(0,n.kt)("li",{parentName:"ul"},"Accordion cmponent stories | minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6de0d816287a9beeb9e8a5a890a2e14f3457a792"},(0,n.kt)("inlineCode",{parentName:"a"},"6de0d81"))),(0,n.kt)("li",{parentName:"ul"},"Refs #145331 add all changes when auto building docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce11cce4fe3dadc16a0da56c36bc5db480e4ff91"},(0,n.kt)("inlineCode",{parentName:"a"},"ce11cce"))),(0,n.kt)("li",{parentName:"ul"},"perf(timeline):removed semantic timeline package ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0aeb34a189eb53a5fc0fc45d716da515b7ed0301"},(0,n.kt)("inlineCode",{parentName:"a"},"0aeb34a"))),(0,n.kt)("li",{parentName:"ul"},"Tablet Breakpoint update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b229c2739e75a00e403dd07c31eb0dac7700baac"},(0,n.kt)("inlineCode",{parentName:"a"},"b229c27"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 set storyBook Url to eea.github.io ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b7fdecbb5e9e6e7db0b128ab7fd3a98dd1dbbc74"},(0,n.kt)("inlineCode",{parentName:"a"},"b7fdecb"))),(0,n.kt)("li",{parentName:"ul"},"bump package version to signaling of a major release ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c835f1d8193685153b8a9b54edbc2e8d3d095321"},(0,n.kt)("inlineCode",{parentName:"a"},"c835f1d"))),(0,n.kt)("li",{parentName:"ul"},"small commit to trigger deployment of storybook and docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/be46ea3b581cccc82369c9cf6d4e29b02822cd71"},(0,n.kt)("inlineCode",{parentName:"a"},"be46ea3"))),(0,n.kt)("li",{parentName:"ul"},"doc(accordion):revert previous change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3de02da26472c17389366d933f3293f658fd783a"},(0,n.kt)("inlineCode",{parentName:"a"},"3de02da"))),(0,n.kt)("li",{parentName:"ul"},"fix typo for caption @desktop line-height pixel number ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/167155234a897334a03a4f3eadc71701185bb924"},(0,n.kt)("inlineCode",{parentName:"a"},"1671552"))),(0,n.kt)("li",{parentName:"ul"},"Commented out integration tests. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/574cfec852f39bdd30430d2ca3a466aec417180d"},(0,n.kt)("inlineCode",{parentName:"a"},"574cfec"))),(0,n.kt)("li",{parentName:"ul"},"popup overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a9555e3128bd0c92691410c202d9b26dd5a5e0c5"},(0,n.kt)("inlineCode",{parentName:"a"},"a9555e3"))),(0,n.kt)("li",{parentName:"ul"},"container component stories fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/692cfce5e795ac718855349424e7e8eb9c7518ec"},(0,n.kt)("inlineCode",{parentName:"a"},"692cfce"))),(0,n.kt)("li",{parentName:"ul"},"Added timeline to package json fixed ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2e93e0478a1502cccb8d7f866cef337a2546b6c"},(0,n.kt)("inlineCode",{parentName:"a"},"f2e93e0"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142123 modified import of volto-eea-design-system icon.less: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7fab7d2871f153c2db139e3258da071ace7c09d"},(0,n.kt)("inlineCode",{parentName:"a"},"a7fab7d"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142123 reference icon.less from this package: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5616e6d730f1a8cbc04784230c35f3490fd0f921"},(0,n.kt)("inlineCode",{parentName:"a"},"5616e6d"))),(0,n.kt)("li",{parentName:"ul"},"Menu component stories change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2797716aa050a8f70d2b6f0f19b7d01e5cd035be"},(0,n.kt)("inlineCode",{parentName:"a"},"2797716"))),(0,n.kt)("li",{parentName:"ul"},"Image stories minor change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ddb9f1dd56fe42e17df1eac5bfd93ee6eaac3179"},(0,n.kt)("inlineCode",{parentName:"a"},"ddb9f1d"))),(0,n.kt)("li",{parentName:"ul"},"card component stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6ccba1ec4a388ced5a3671bf88d4f18aefc8cff3"},(0,n.kt)("inlineCode",{parentName:"a"},"6ccba1e"))),(0,n.kt)("li",{parentName:"ul"},"Added timeline to package json ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93031d6b6b3215e98074700554d7546f9f17f320"},(0,n.kt)("inlineCode",{parentName:"a"},"93031d6"))),(0,n.kt)("li",{parentName:"ul"},"table stories code clean up ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b7b2a56e37b847a3a3fc3d78f2099aba052826c3"},(0,n.kt)("inlineCode",{parentName:"a"},"b7b2a56"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 removed extra baseUrl from docusaurus config ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/79f36da6a38866765025cedd4f5eeb63e273785c"},(0,n.kt)("inlineCode",{parentName:"a"},"79f36da"))),(0,n.kt)("li",{parentName:"ul"},"Accordion stories minor change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ffe808aabc77c6cb324e8fe097a97bb82c291c29"},(0,n.kt)("inlineCode",{parentName:"a"},"ffe808a"))),(0,n.kt)("li",{parentName:"ul"},"Theme assets ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3f4bea4b53e393bc3d926b63683265c0b5df32c2"},(0,n.kt)("inlineCode",{parentName:"a"},"3f4bea4"))),(0,n.kt)("li",{parentName:"ul"},"Merged with develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/167ec9f7847162965ad045259989cc31abaad7f1"},(0,n.kt)("inlineCode",{parentName:"a"},"167ec9f")))),(0,n.kt)("h3",{id:"012-beta2---2022-01-03"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.2-beta.1...0.1.2-beta.2"},"0.1.2-beta.2")," - 2022-01-03"),(0,n.kt)("h3",{id:"012-beta1---2021-12-22"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.2-beta.0...0.1.2-beta.1"},"0.1.2-beta.1")," - 2021-12-22"),(0,n.kt)("h4",{id:"\ufe0f-others-56"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Tab component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4690a6fc1e739eeeeaa3dc90ee35e05a22875bf8"},(0,n.kt)("inlineCode",{parentName:"a"},"4690a6f"))),(0,n.kt)("li",{parentName:"ul"},"Comment component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a87cb6ad7959ce939c9decbfaa08026d4f00a10e"},(0,n.kt)("inlineCode",{parentName:"a"},"a87cb6a"))),(0,n.kt)("li",{parentName:"ul"},"Form stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fc30c900e5adf5a27930aa64a79a632e2b7d84ae"},(0,n.kt)("inlineCode",{parentName:"a"},"fc30c90"))),(0,n.kt)("li",{parentName:"ul"},"Grid component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/798fdd0d0fecb7980308c831fc9dc111a36c5d9f"},(0,n.kt)("inlineCode",{parentName:"a"},"798fdd0"))),(0,n.kt)("li",{parentName:"ul"},"Image component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/be93385f1ea29846512eb7762d69bb98f33be7f2"},(0,n.kt)("inlineCode",{parentName:"a"},"be93385"))),(0,n.kt)("li",{parentName:"ul"},"Menu component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb1f9a82843bb4e3011be9813ae692c94d986495"},(0,n.kt)("inlineCode",{parentName:"a"},"cb1f9a8"))),(0,n.kt)("li",{parentName:"ul"},"Dropdown component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/57cf954599292e6a2f8a1644c6b6d61706ecaf60"},(0,n.kt)("inlineCode",{parentName:"a"},"57cf954"))),(0,n.kt)("li",{parentName:"ul"},"Header component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/264fd463734c9587e3a820f4d14527af89274e12"},(0,n.kt)("inlineCode",{parentName:"a"},"264fd46"))),(0,n.kt)("li",{parentName:"ul"},"Confirn component minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9a00bc174fb676e626d6cc93fac225e8a6165790"},(0,n.kt)("inlineCode",{parentName:"a"},"9a00bc1"))),(0,n.kt)("li",{parentName:"ul"},"Item component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6994fa00c0f91550f64d7345503df7f562480d32"},(0,n.kt)("inlineCode",{parentName:"a"},"6994fa0"))),(0,n.kt)("li",{parentName:"ul"},"Label component stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5cc5843327deeaa5ae2cedc03e6f0c314be6586a"},(0,n.kt)("inlineCode",{parentName:"a"},"5cc5843"))),(0,n.kt)("li",{parentName:"ul"},"Container component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e6e40b3a505c2e2fe88a36d74ea4e9728e3491f6"},(0,n.kt)("inlineCode",{parentName:"a"},"e6e40b3"))),(0,n.kt)("li",{parentName:"ul"},"Message component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ba9d377fd5b04274f1d42065eafa2401a1b0bbca"},(0,n.kt)("inlineCode",{parentName:"a"},"ba9d377"))),(0,n.kt)("li",{parentName:"ul"},"Breadcrumb component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff7a176141c3a59d71df98a0ed0b23b8c08787df"},(0,n.kt)("inlineCode",{parentName:"a"},"ff7a176"))),(0,n.kt)("li",{parentName:"ul"},"Modal component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af1fe6a84d058fb937b555f4dc3e0efceebefa04"},(0,n.kt)("inlineCode",{parentName:"a"},"af1fe6a"))),(0,n.kt)("li",{parentName:"ul"},"List stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0016042856fa2275aed373eebd6f996b837619a2"},(0,n.kt)("inlineCode",{parentName:"a"},"0016042"))),(0,n.kt)("li",{parentName:"ul"},"Button component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/690dfd234bee017c1f1cda7077265e6cf4a870e9"},(0,n.kt)("inlineCode",{parentName:"a"},"690dfd2"))),(0,n.kt)("li",{parentName:"ul"},"Radio component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/84eac30ab5b523ed09c56b9cca41b058cee3e5d2"},(0,n.kt)("inlineCode",{parentName:"a"},"84eac30"))),(0,n.kt)("li",{parentName:"ul"},"Progress component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e6763571afe637375e8260babd9f2219f29b432a"},(0,n.kt)("inlineCode",{parentName:"a"},"e676357"))),(0,n.kt)("li",{parentName:"ul"},"Pagination component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b1af226b9bd42097dc3c74be3d9ca3fab29b80f6"},(0,n.kt)("inlineCode",{parentName:"a"},"b1af226"))),(0,n.kt)("li",{parentName:"ul"},"Segment component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f8c7efcb9b1de209ff146dd315ea9d43b16f4db"},(0,n.kt)("inlineCode",{parentName:"a"},"5f8c7ef"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 eslint fixes for component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/badcb9158cb4a847380f66592b22c78b5117626a"},(0,n.kt)("inlineCode",{parentName:"a"},"badcb91"))),(0,n.kt)("li",{parentName:"ul"},"Table component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7c104b8e89272b0e2505d165184093ee2680c6f3"},(0,n.kt)("inlineCode",{parentName:"a"},"7c104b8"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 more eslint fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a88c091723af0b87cfa85c83307d9510d2bae65c"},(0,n.kt)("inlineCode",{parentName:"a"},"a88c091"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 warn for broken links instead of throwing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bd5821cb78e030aaf69de73dc4d3bdadbe320195"},(0,n.kt)("inlineCode",{parentName:"a"},"bd5821c"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 merge changes from develop-itml to develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bca28b968bc88720aff9e29e1a94a597a7375666"},(0,n.kt)("inlineCode",{parentName:"a"},"bca28b9"))),(0,n.kt)("li",{parentName:"ul"},"made tabs dynamic for api tab ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea37ecb3ec9fe0ace41d7650d59e209929d8e95f"},(0,n.kt)("inlineCode",{parentName:"a"},"ea37ecb"))),(0,n.kt)("li",{parentName:"ul"},"Basic storybook/Docusaurus components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/840ab60f22f7b73d8742fa7452f198d486c6ec5b"},(0,n.kt)("inlineCode",{parentName:"a"},"840ab60"))),(0,n.kt)("li",{parentName:"ul"},"created List directory & srories based on semantic-ui List component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51f19016b27228a4d391c88b7eee27357d6fdc0d"},(0,n.kt)("inlineCode",{parentName:"a"},"51f1901"))),(0,n.kt)("li",{parentName:"ul"},"made tabs as component easy to call for other components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/07bae4900a4076f3429d3a26978b92aabf6b23ba"},(0,n.kt)("inlineCode",{parentName:"a"},"07bae49"))),(0,n.kt)("li",{parentName:"ul"},"Popup Component | minor fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ff9908a9374f93b9eaf4d8ee8de24acdf5be3ec"},(0,n.kt)("inlineCode",{parentName:"a"},"2ff9908"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Tab component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/95e3a733921b42fbe2540fa39548284abff9fdc0"},(0,n.kt)("inlineCode",{parentName:"a"},"95e3a73"))),(0,n.kt)("li",{parentName:"ul"},"created Table directory and stories based on semantic-ui Table component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e16115daa000962ccd8d141e3c11fd099446a388"},(0,n.kt)("inlineCode",{parentName:"a"},"e16115d"))),(0,n.kt)("li",{parentName:"ul"},"List component stories - minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/de113430b487297417c4697178f9ee37412a5389"},(0,n.kt)("inlineCode",{parentName:"a"},"de11343"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Comment component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a20f8842e8cb5c937dfc450030ac9afcf78ffe11"},(0,n.kt)("inlineCode",{parentName:"a"},"a20f884"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Grid component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/360d2a897f36e86c58b0ba6ac3d4fc852d10287d"},(0,n.kt)("inlineCode",{parentName:"a"},"360d2a8"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Image component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c1d2bcaf886c96052af45fcce98243ea56c98a5"},(0,n.kt)("inlineCode",{parentName:"a"},"3c1d2bc"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Menu component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/17e3b37ae447d8cc86228fa6c0c48a8fd8be9d03"},(0,n.kt)("inlineCode",{parentName:"a"},"17e3b37"))),(0,n.kt)("li",{parentName:"ul"},"Added untracked files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/75f0afda10114e70348e23d480f8f74528531674"},(0,n.kt)("inlineCode",{parentName:"a"},"75f0afd"))),(0,n.kt)("li",{parentName:"ul"},"created Dropdown stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d6a25381078e0b3cabdb9270d5224b3886ab6af9"},(0,n.kt)("inlineCode",{parentName:"a"},"d6a2538"))),(0,n.kt)("li",{parentName:"ul"},"created Header component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8339798f3e7d40f1b5a033bf4d7303c756c38d3"},(0,n.kt)("inlineCode",{parentName:"a"},"b833979"))),(0,n.kt)("li",{parentName:"ul"},"created stories for semantic-ui Confirm component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6fddccc6cf97f9929da52064ceb379f9fc427b42"},(0,n.kt)("inlineCode",{parentName:"a"},"6fddccc"))),(0,n.kt)("li",{parentName:"ul"},"created Statistic directory and stories with semantic-ui Statistic component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cd62498dbd75d5dff0adf849ff95d22bb9dc3b34"},(0,n.kt)("inlineCode",{parentName:"a"},"cd62498"))),(0,n.kt)("li",{parentName:"ul"},"created Item component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/90ec2be7eede347352e318c70615c30e7d422073"},(0,n.kt)("inlineCode",{parentName:"a"},"90ec2be"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Container component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/41934f6c5961ae0ac034a496ac169a191c7a5288"},(0,n.kt)("inlineCode",{parentName:"a"},"41934f6"))),(0,n.kt)("li",{parentName:"ul"},"created Label component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/71732f68b3153320710fbf7fb78dac460b8a084f"},(0,n.kt)("inlineCode",{parentName:"a"},"71732f6"))),(0,n.kt)("li",{parentName:"ul"},"created Message component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/adcbeabe6d4e8c1bbd7bd925c5f7fd3109fb407c"},(0,n.kt)("inlineCode",{parentName:"a"},"adcbeab"))),(0,n.kt)("li",{parentName:"ul"},"created Modal component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c25409d8901ad4eba66fa66a9f5c34b0353569b9"},(0,n.kt)("inlineCode",{parentName:"a"},"c25409d"))),(0,n.kt)("li",{parentName:"ul"},"Breadcrumb component stories and minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6264d92bcf6565e284ae9dc0c7a918652bb3959e"},(0,n.kt)("inlineCode",{parentName:"a"},"6264d92"))),(0,n.kt)("li",{parentName:"ul"},"created Pagination component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/57cdad35e21fdacf303e407abcb8988e97e87242"},(0,n.kt)("inlineCode",{parentName:"a"},"57cdad3"))),(0,n.kt)("li",{parentName:"ul"},"created Segment component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d8d01d70dab9359be46eb1629b3198f871091c7a"},(0,n.kt)("inlineCode",{parentName:"a"},"d8d01d7"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Radio component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1fd062d8a08cbe8507f5154201632ea96f765a2c"},(0,n.kt)("inlineCode",{parentName:"a"},"1fd062d"))),(0,n.kt)("li",{parentName:"ul"},"Menu stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6ba5e0d00a26ffd4625fb51f759af3764cef28de"},(0,n.kt)("inlineCode",{parentName:"a"},"6ba5e0d"))),(0,n.kt)("li",{parentName:"ul"},"Statistic component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c874a520c9959b7673b5c86f63e53e90f006f22"},(0,n.kt)("inlineCode",{parentName:"a"},"3c874a5"))),(0,n.kt)("li",{parentName:"ul"},"Card component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/290bda8dac4c9bb4476108c2e4969fa283f935e2"},(0,n.kt)("inlineCode",{parentName:"a"},"290bda8"))),(0,n.kt)("li",{parentName:"ul"},"Accrordion stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ee3f592fbfaead01506fb6a4dbfb36d06269564"},(0,n.kt)("inlineCode",{parentName:"a"},"2ee3f59"))),(0,n.kt)("li",{parentName:"ul"},"renamed Demo folder to Layout ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b9f6d05708310889dd018961bf5df9d5edd66e12"},(0,n.kt)("inlineCode",{parentName:"a"},"b9f6d05"))),(0,n.kt)("li",{parentName:"ul"},"remove test exclusion ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/94dba3eaa864e25d34bcc33ab19494f83ecabb25"},(0,n.kt)("inlineCode",{parentName:"a"},"94dba3e"))),(0,n.kt)("li",{parentName:"ul"},"Accordion component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e672d59f86a79e69f15b5212e2953aa7c5fea1d1"},(0,n.kt)("inlineCode",{parentName:"a"},"e672d59"))),(0,n.kt)("li",{parentName:"ul"},"fix docusaurus url (removed trailing /) ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b6c59fc7733b3df47dca797906e8f7e40a2f4ada"},(0,n.kt)("inlineCode",{parentName:"a"},"b6c59fc"))),(0,n.kt)("li",{parentName:"ul"},"Item component stories - minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f0a99025b9093ecf2eb25fd4b4e401b5b532a481"},(0,n.kt)("inlineCode",{parentName:"a"},"f0a9902"))),(0,n.kt)("li",{parentName:"ul"},"eea logos and assets ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b435b511d64b0ca99bfd310d66bdbfd5985390cc"},(0,n.kt)("inlineCode",{parentName:"a"},"b435b51")))),(0,n.kt)("h3",{id:"012-beta0---2021-12-18"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.1...0.1.2-beta.0"},"0.1.2-beta.0")," - 2021-12-18"),(0,n.kt)("h4",{id:"\ufe0f-others-57"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Refs #140454 added github action to build docusaurus to the develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/abe6a72882a41c9bca3649a3a6697619038e1677"},(0,n.kt)("inlineCode",{parentName:"a"},"abe6a72")))),(0,n.kt)("h3",{id:"011---2021-12-16"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.1-beta.0...0.1.1"},"0.1.1")," - 2021-12-16"),(0,n.kt)("h4",{id:"\ufe0f-others-58"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Refs #140454 changed the following to volto-eea-design-system: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6791d413cf1b9e434970564d9e59ed56b41907f0"},(0,n.kt)("inlineCode",{parentName:"a"},"6791d41"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 corrected base url for docusaurus website build ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/98271b3d39e2e21dfb4a0e31c334dc9e87811e4a"},(0,n.kt)("inlineCode",{parentName:"a"},"98271b3"))),(0,n.kt)("li",{parentName:"ul"},"Initial test changes on design system/docusaurus. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9dad612f385cc9fde712809f07dbe2b7111432cf"},(0,n.kt)("inlineCode",{parentName:"a"},"9dad612"))),(0,n.kt)("li",{parentName:"ul"},"After prettier check ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9ec40b4fe9d8a18e99f774e1a96a55b286a9733a"},(0,n.kt)("inlineCode",{parentName:"a"},"9ec40b4"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 restore SearchWidget.jsx content and removed dummy text from docs intro page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7505df89d93ac99156834a0c50a8e2b174c506f8"},(0,n.kt)("inlineCode",{parentName:"a"},"7505df8"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 added references to eea and the storybook in the docusaurus footer ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/42bbfcdd67888c3a7a55875d67acae9f7eb753bb"},(0,n.kt)("inlineCode",{parentName:"a"},"42bbfcd"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 lint fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9502f2bdbd45262b38926def5b7b55efabf4c32c"},(0,n.kt)("inlineCode",{parentName:"a"},"9502f2b"))),(0,n.kt)("li",{parentName:"ul"},"Add SonarQube badges ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4e0a4053ff2313fc3939caab80d874470aca062"},(0,n.kt)("inlineCode",{parentName:"a"},"a4e0a40"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 brought changes from develop-itml and upgrades docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/207c873532e38fb7909cdc32a02bf50e575b66fa"},(0,n.kt)("inlineCode",{parentName:"a"},"207c873"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 removed extra content not needed by the docusaurus site ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bc68ebe8259c9b8ed6bc73df8102885554bbc4ed"},(0,n.kt)("inlineCode",{parentName:"a"},"bc68ebe"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 updated docusaurus to latest beta ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d68ed8a1660910067a09550626a5f0e8fbbeeac9"},(0,n.kt)("inlineCode",{parentName:"a"},"d68ed8a")))),(0,n.kt)("h3",{id:"011-beta0---2021-12-09"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.0...0.1.1-beta.0"},"0.1.1-beta.0")," - 2021-12-09"),(0,n.kt)("h4",{id:"\ufe0f-others-59"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Refs #140454 moved header and footer templates from volto-ims-theme: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2d5e56045c0b7d917153d95492dd340668b6222"},(0,n.kt)("inlineCode",{parentName:"a"},"e2d5e56"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 added website folder with docusaurus site skeleton ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6fd15f4365a207308c068fe7eb197c0717e93954"},(0,n.kt)("inlineCode",{parentName:"a"},"6fd15f4"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142794 added commented implementation of the header and footer area: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/773ad8784f4a03e4b600406999d3a274a3984d39"},(0,n.kt)("inlineCode",{parentName:"a"},"773ad87"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 changed the following: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4137ec42270c28cbe036ba11e9475f00a7a5cba3"},(0,n.kt)("inlineCode",{parentName:"a"},"4137ec4"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 removed storybook from volto-eea-design-system: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a129ffb485c4c55f19129a209d920da8f8f52418"},(0,n.kt)("inlineCode",{parentName:"a"},"a129ffb"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 added storybook as a dev dependency: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e04ae4e0294fbb4a09f367d1693a158d5a1e8f2f"},(0,n.kt)("inlineCode",{parentName:"a"},"e04ae4e"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 updated Breadcrumbs.jsx to latest version: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/63fe5076781f3cf2ce5c79641a5f1b45f298b476"},(0,n.kt)("inlineCode",{parentName:"a"},"63fe507"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 we should use jsx and not mdx for storybook tests ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3668e667f857cb3052b9d63cf27ec629fe1c8394"},(0,n.kt)("inlineCode",{parentName:"a"},"3668e66"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 updated eea-design-system readme with extra info on package contents ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d2efc3ddae7b91efc82cf3bce8fb8e42d696a780"},(0,n.kt)("inlineCode",{parentName:"a"},"d2efc3d"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142010 - Optimize Volto-addons gitflow pipelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3af46d2b14fa0b1ef44736f25b0f9ac93b23d18d"},(0,n.kt)("inlineCode",{parentName:"a"},"3af46d2"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 Renamed folders of docusaurus website: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/15bca7462ba1b3c626e2bf76597f6436aa5e9092"},(0,n.kt)("inlineCode",{parentName:"a"},"15bca74"))),(0,n.kt)("li",{parentName:"ul"},"Add demo story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/757c409271eb70baa54bff8bd7c71ba29aaa4f66"},(0,n.kt)("inlineCode",{parentName:"a"},"757c409"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142794 enabled minimum css so that header looks decent ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/adbe2335bacf5ae09541c3679a246a5ec28376a4"},(0,n.kt)("inlineCode",{parentName:"a"},"adbe233"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 use the develop branch for the readme linking, it's always more up to date ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/23dcf166d5d633df2a63ab6fa5bac4be086e99a3"},(0,n.kt)("inlineCode",{parentName:"a"},"23dcf16"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 added missing themes reference for the eea theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e9ca244fcedf0be420748b3e5347e98309b5d996"},(0,n.kt)("inlineCode",{parentName:"a"},"e9ca244"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 modified assets imports after move to volto-eea-design-system ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2250cc7ba4155c328837cea09e2e7d94afc984f8"},(0,n.kt)("inlineCode",{parentName:"a"},"2250cc7"))),(0,n.kt)("li",{parentName:"ul"},"Load footer in segment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/80d38a96284e7fa9416ba327a43e29eb94bebe55"},(0,n.kt)("inlineCode",{parentName:"a"},"80d38a9"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 bump package version to 1.1.0 from 0.1.1 from develop branch: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1314039ceb45d405af6bc4698b489bbd6562c6ae"},(0,n.kt)("inlineCode",{parentName:"a"},"1314039"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142794 keep toolbalWidth variables in case design system runs in an older version of Volto ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1a8b30562e4167fe36b095877db0b215d10cb620"},(0,n.kt)("inlineCode",{parentName:"a"},"1a8b305"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142794 changed the following: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fbb80b1dbd0e3078777b8b3496d4b207ba25639a"},(0,n.kt)("inlineCode",{parentName:"a"},"fbb80b1"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 moved storybook scripts to the scripts section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/705c4c365d26152d917c62991f3f8202bc75287d"},(0,n.kt)("inlineCode",{parentName:"a"},"705c4c3"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 removed dangling comma ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/514f24d503a1f05497696c22c7fdbf7bc19d4e54"},(0,n.kt)("inlineCode",{parentName:"a"},"514f24d"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 changed link to the start of the docs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0e16fdfc77e119da4e1f15183d9cb95ef9b4b6cf"},(0,n.kt)("inlineCode",{parentName:"a"},"0e16fdf"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 add h1 to the list of elements that are max 800px and centered ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d3c30f409aa4cb43810839f8960589456cc1b2e"},(0,n.kt)("inlineCode",{parentName:"a"},"7d3c30f"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using ims-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8d657d056cde5163cfe90ac66bc973f55d82e5e9"},(0,n.kt)("inlineCode",{parentName:"a"},"8d657d0")))),(0,n.kt)("h3",{id:"010---2021-11-17"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.0.1...0.1.0"},"0.1.0")," - 2021-11-17"),(0,n.kt)("h4",{id:"\ufe0f-others-60"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Refs #140454 changed the following to volto-eea-design-system: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/40d2af693e35abdda3ededc7aabcb17e9a12e781"},(0,n.kt)("inlineCode",{parentName:"a"},"40d2af6"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 elements folder now has the variables and overrides from pastanaga theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/595b4e60816d3e24950ede3afea6e5f2aa2d7008"},(0,n.kt)("inlineCode",{parentName:"a"},"595b4e6"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 use font awesome from SemanticUI instead of Pastanaga: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4e273ca1b9a2be1f169d12258ac2335c3ebeefff"},(0,n.kt)("inlineCode",{parentName:"a"},"4e273ca"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 removed the components customizations from volto-eea-design-system: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c98c260b549cd1db48bfe556e994692a4855b95d"},(0,n.kt)("inlineCode",{parentName:"a"},"c98c260"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 added customizations folder from volto-ims-theme to volto-eea-design-system: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff4bf44bd648ff179bd7c82d0cf80da968b291b0"},(0,n.kt)("inlineCode",{parentName:"a"},"ff4bf44"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 modules folder now has the variables and overrides from pastanaga theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2841b62c87e3242423bca1117c7e1793baa7974"},(0,n.kt)("inlineCode",{parentName:"a"},"f2841b6"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 customized Comments.jsx to remove unnecessary container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b2e95d7ae875a7fc85366c76ef35ce215dd7b5ff"},(0,n.kt)("inlineCode",{parentName:"a"},"b2e95d7"))),(0,n.kt)("li",{parentName:"ul"},"Refs #132149 added initial commit for volto-eea-design-system: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2934b911d589fde126f70363a61cbdd2e3dcf7c9"},(0,n.kt)("inlineCode",{parentName:"a"},"2934b91"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 collection folder now has the variables and overrides from pastanaga: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/213d4968e4efa380a389fb7ab40ec3196f030050"},(0,n.kt)("inlineCode",{parentName:"a"},"213d496"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 removed search widget customization, we can use volto-ims-theme for that file ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b7e8b0c4821584a84f940d8f780057122321aae7"},(0,n.kt)("inlineCode",{parentName:"a"},"b7e8b0c"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 stylelint quick fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5595925f68871135a07d703c8ba009b0172c7ccd"},(0,n.kt)("inlineCode",{parentName:"a"},"5595925"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 changed the following: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/769f4f9eca0ed9fffe0c8c49c56bcb123a203f3c"},(0,n.kt)("inlineCode",{parentName:"a"},"769f4f9"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 changed the following to the eea theme: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/06d8d86a7be81fd3feadf034eacfa61eb69743ab"},(0,n.kt)("inlineCode",{parentName:"a"},"06d8d86"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 eea site.variables now use all values from pastanaga's site.variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6535c0f4e1968822a232b017a55babd280716d88"},(0,n.kt)("inlineCode",{parentName:"a"},"6535c0f"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 simplified container overrides: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51250038527f2e4b1135a2b5bfc6adccc3f77a06"},(0,n.kt)("inlineCode",{parentName:"a"},"5125003"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/177d0ce854a8a963faa2aae9481cbcc7e340e0fa"},(0,n.kt)("inlineCode",{parentName:"a"},"177d0ce"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 globals folder now has the variables and overrides from pastanaga theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/116a0c338bd92dd14636a649476b4f00951e3734"},(0,n.kt)("inlineCode",{parentName:"a"},"116a0c3"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 changed the following: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2e7f42381b63e65bafac3b754d49b65daca9663d"},(0,n.kt)("inlineCode",{parentName:"a"},"2e7f423"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 modules folder now has the variables and overrides from pastanaga theme: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/27a201d57024a7c621f4943b8eb59a3247b6c89d"},(0,n.kt)("inlineCode",{parentName:"a"},"27a201d"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 text elements are now with a max width and centered within content-area: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bbed7bbfb3e79a371b7bf7dea2206cdbdcdfe76d"},(0,n.kt)("inlineCode",{parentName:"a"},"bbed7bb"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 added main.variables entries from pastanaga to eea theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1cbbc550436c889d1b297ae9e6880167fce28fe1"},(0,n.kt)("inlineCode",{parentName:"a"},"1cbbc55"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 modified theme image imports for component customizations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef3238a4d615fa1b496e83f4e6c4c0d27f3d68f4"},(0,n.kt)("inlineCode",{parentName:"a"},"ef3238a"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 modified container width to be auto: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2e8d2e0ebb3e4a55b7cf1b66c3dff222ef12aa18"},(0,n.kt)("inlineCode",{parentName:"a"},"2e8d2e0"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 modified several icons to use the \\f values instead of \\e: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c397145bc1e76916ae72a94faaf33f49bd9ca5a6"},(0,n.kt)("inlineCode",{parentName:"a"},"c397145"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 changed the following: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c518edacad9b8bed61ea50d318d8d43bf7f483a0"},(0,n.kt)("inlineCode",{parentName:"a"},"c518eda"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 ensure that main column isn't enlarged over the sidebar section on edit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f7a28684223494933bcd8ec1f6d86b1b3da17e10"},(0,n.kt)("inlineCode",{parentName:"a"},"f7a2868"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 changed the following to the form styling: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/eb92e054fe330730c1a44737cbbdf33985216cbb"},(0,n.kt)("inlineCode",{parentName:"a"},"eb92e05"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 modified path of theme folder location for image selection ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f8cca4594857ab4afd654f35e4ec97e4d3e04be4"},(0,n.kt)("inlineCode",{parentName:"a"},"f8cca45"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 added missing mobileScrollbarWidth variables introduced as part of the mobile navigation pull request ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/444c78d998199e703d7ecde01b3feb0d44c60977"},(0,n.kt)("inlineCode",{parentName:"a"},"444c78d"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 reference font and image path from ~volto-themes instead of relative ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ec93ed3a496673eed7d7ec07a2f76aaa6a29d7ca"},(0,n.kt)("inlineCode",{parentName:"a"},"ec93ed3"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 ensure that Volto doesn't crash when site module is set to eea: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51f2f27f5ba947b49b4b69fcf9b8890676cd1d7e"},(0,n.kt)("inlineCode",{parentName:"a"},"51f2f27"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 added tiny size prop to Breadcrumbs in order to have it as 12px ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/56a12e200c27c3a1826fa3088c34f762ed74dff7"},(0,n.kt)("inlineCode",{parentName:"a"},"56a12e2")))),(0,n.kt)("h3",{id:"001---2021-11-17"},"0.0.1 - 2021-11-17"),(0,n.kt)("h4",{id:"\ufe0f-others-61"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Initial commit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b0bdd445c95a20d088e00469f81028c16482640a"},(0,n.kt)("inlineCode",{parentName:"a"},"b0bdd44")))))}s.isMDXComponent=!0}}]); \ No newline at end of file diff --git a/docs/assets/js/41d5c757.c97b6622.js b/docs/assets/js/41d5c757.c97b6622.js new file mode 100644 index 0000000000..b6ed17f741 --- /dev/null +++ b/docs/assets/js/41d5c757.c97b6622.js @@ -0,0 +1 @@ +"use strict";(self.webpackChunkwebsite=self.webpackChunkwebsite||[]).push([[6245],{3905:(e,a,t)=>{t.d(a,{Zo:()=>c,kt:()=>h});var i=t(7294);function n(e,a,t){return a in e?Object.defineProperty(e,a,{value:t,enumerable:!0,configurable:!0,writable:!0}):e[a]=t,e}function o(e,a){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);a&&(i=i.filter((function(a){return Object.getOwnPropertyDescriptor(e,a).enumerable}))),t.push.apply(t,i)}return t}function m(e){for(var a=1;a=0||(n[t]=e[t]);return n}(e,a);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(i=0;i=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(n[t]=e[t])}return n}var d=i.createContext({}),r=function(e){var a=i.useContext(d),t=a;return e&&(t="function"==typeof e?e(a):m(m({},a),e)),t},c=function(e){var a=r(e.components);return i.createElement(d.Provider,{value:a},e.children)},s="mdxType",f={inlineCode:"code",wrapper:function(e){var a=e.children;return i.createElement(i.Fragment,{},a)}},p=i.forwardRef((function(e,a){var t=e.components,n=e.mdxType,o=e.originalType,d=e.parentName,c=l(e,["components","mdxType","originalType","parentName"]),s=r(t),p=n,h=s["".concat(d,".").concat(p)]||s[p]||f[p]||o;return t?i.createElement(h,m(m({ref:a},c),{},{components:t})):i.createElement(h,m({ref:a},c))}));function h(e,a){var t=arguments,n=a&&a.mdxType;if("string"==typeof e||n){var o=t.length,m=new Array(o);m[0]=p;var l={};for(var d in a)hasOwnProperty.call(a,d)&&(l[d]=a[d]);l.originalType=e,l[s]="string"==typeof e?e:n,m[1]=l;for(var r=2;r{t.r(a),t.d(a,{contentTitle:()=>m,default:()=>s,frontMatter:()=>o,metadata:()=>l,toc:()=>d});var i=t(7462),n=(t(7294),t(3905));const o={title:"What's new"},m=void 0,l={unversionedId:"whatsnew",id:"whatsnew",title:"What's new",description:"EEA Design System (1.0)",source:"@site/docs/2-whatsnew.md",sourceDirName:".",slug:"/whatsnew",permalink:"/volto-eea-design-system/docs/whatsnew",editUrl:"https://github.com/eea/volto-eea-design-system/edit/contribute-documentation/website/docs/2-whatsnew.md",tags:[],version:"current",sidebarPosition:2,frontMatter:{title:"What's new"},sidebar:"sidebar",previous:{title:"Introduction",permalink:"/volto-eea-design-system/docs/intro"},next:{title:"Web development",permalink:"/volto-eea-design-system/docs/category/web-development"}},d=[{value:"EEA Design System (1.0)",id:"eea-design-system-10",children:[{value:"Components ready to be used",id:"components-ready-to-be-used",children:[],level:4},{value:"Future releases",id:"future-releases",children:[],level:4}],level:3},{value:"Unreleased - 2023-04-06T13:47:14.894Z",id:"unreleased---2023-04-06t134714894z",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes",children:[],level:4}],level:3},{value:"1.0.6 - 2023-03-29",id:"106---2023-03-29",children:[{value:"\ud83d\ude80 New Features",id:"-new-features",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-1",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-1",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others",children:[],level:4}],level:3},{value:"1.0.5 - 2023-03-28",id:"105---2023-03-28",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-1",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-1",children:[],level:4}],level:3},{value:"1.0.4 - 2023-03-27",id:"104---2023-03-27",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-2",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-2",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-1",children:[],level:4}],level:3},{value:"1.0.3 - 2023-03-24",id:"103---2023-03-24",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-2",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-2",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-2",children:[],level:4}],level:3},{value:"1.0.2 - 2023-03-14",id:"102---2023-03-14",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-3",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-3",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-1",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-3",children:[],level:4}],level:3},{value:"1.0.1 - 2023-03-13",id:"101---2023-03-13",children:[],level:3},{value:"1.0.0 - 2023-03-13",id:"100---2023-03-13",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-4",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-4",children:[],level:4}],level:3},{value:"1.0.0-beta.6 - 2023-03-10",id:"100-beta6---2023-03-10",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-3",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-5",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-5",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-3",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-2",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-4",children:[],level:4}],level:3},{value:"1.0.0-beta.5 - 2023-03-07",id:"100-beta5---2023-03-07",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-6",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-4",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-5",children:[],level:4}],level:3},{value:"1.0.0-beta.4 - 2023-03-01",id:"100-beta4---2023-03-01",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-4",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-6",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-7",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-6",children:[],level:4}],level:3},{value:"1.0.0-beta.3 - 2023-02-21",id:"100-beta3---2023-02-21",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-5",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-7",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-8",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-5",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-3",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-7",children:[],level:4}],level:3},{value:"1.0.0-beta.2 - 2023-02-13",id:"100-beta2---2023-02-13",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-8",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-9",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-6",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-8",children:[],level:4}],level:3},{value:"1.0.0-beta.1 - 2023-02-09",id:"100-beta1---2023-02-09",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-6",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-10",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-9",children:[],level:4}],level:3},{value:"1.0.0-alpha.15 - 2023-02-08",id:"100-alpha15---2023-02-08",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-7",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-9",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-11",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-10",children:[],level:4}],level:3},{value:"1.0.0-alpha.14 - 2023-01-30",id:"100-alpha14---2023-01-30",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-12",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-11",children:[],level:4}],level:3},{value:"1.0.0-alpha.13.1 - 2023-01-30",id:"100-alpha131---2023-01-30",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-13",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-12",children:[],level:4}],level:3},{value:"1.0.0-alpha.13 - 2023-01-27",id:"100-alpha13---2023-01-27",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-8",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-10",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-14",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-13",children:[],level:4}],level:3},{value:"1.0.0-alpha.12 - 2023-01-24",id:"100-alpha12---2023-01-24",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-9",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-11",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-15",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-4",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-14",children:[],level:4}],level:3},{value:"1.0.0-alpha.11 - 2023-01-17",id:"100-alpha11---2023-01-17",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-10",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-12",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-16",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-5",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-15",children:[],level:4}],level:3},{value:"1.0.0-alpha.10 - 2023-01-13",id:"100-alpha10---2023-01-13",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-13",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-16",children:[],level:4}],level:3},{value:"1.0.0-alpha.9 - 2022-12-28",id:"100-alpha9---2022-12-28",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-17",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-17",children:[],level:4}],level:3},{value:"1.0.0-alpha.8 - 2022-12-23",id:"100-alpha8---2022-12-23",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-11",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-18",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-7",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-6",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-18",children:[],level:4}],level:3},{value:"1.0.0-alpha.7 - 2022-12-16",id:"100-alpha7---2022-12-16",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-12",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-14",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-19",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-19",children:[],level:4}],level:3},{value:"1.0.0-alpha.6 - 2022-12-07",id:"100-alpha6---2022-12-07",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-13",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-15",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-20",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-7",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-20",children:[],level:4}],level:3},{value:"1.0.0-alpha.5 - 2022-11-29",id:"100-alpha5---2022-11-29",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-14",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-16",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-21",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-8",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-8",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-21",children:[],level:4}],level:3},{value:"1.0.0-alpha.4 - 2022-11-22",id:"100-alpha4---2022-11-22",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-17",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-22",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-22",children:[],level:4}],level:3},{value:"1.0.0-alpha.3 - 2022-11-16",id:"100-alpha3---2022-11-16",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-15",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-18",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-23",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-9",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-23",children:[],level:4}],level:3},{value:"1.0.0-alpha.2 - 2022-10-28",id:"100-alpha2---2022-10-28",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-24",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-10",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-24",children:[],level:4}],level:3},{value:"1.0.0-alpha.1 - 2022-10-20",id:"100-alpha1---2022-10-20",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-25",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-11",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-9",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-25",children:[],level:4}],level:3},{value:"0.9.6 - 2022-12-16",id:"096---2022-12-16",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-26",children:[],level:4}],level:3},{value:"0.9.5 - 2022-10-20",id:"095---2022-10-20",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-19",children:[],level:4}],level:3},{value:"0.9.4 - 2022-10-19",id:"094---2022-10-19",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-20",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-26",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-27",children:[],level:4}],level:3},{value:"0.9.3 - 2022-10-04",id:"093---2022-10-04",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-21",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-27",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-10",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-28",children:[],level:4}],level:3},{value:"0.9.2 - 2022-09-27",id:"092---2022-09-27",children:[],level:3},{value:"0.9.1 - 2022-09-27",id:"091---2022-09-27",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-28",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-29",children:[],level:4}],level:3},{value:"0.9.0 - 2022-09-19",id:"090---2022-09-19",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-16",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-22",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-29",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-12",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-11",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-30",children:[],level:4}],level:3},{value:"0.8.1 - 2022-08-26",id:"081---2022-08-26",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-23",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-30",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-12",children:[],level:4}],level:3},{value:"0.8.0 - 2022-08-20",id:"080---2022-08-20",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-17",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-24",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-31",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-31",children:[],level:4}],level:3},{value:"0.7.6 - 2022-08-15",id:"076---2022-08-15",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-32",children:[],level:4}],level:3},{value:"0.7.5 - 2022-08-11",id:"075---2022-08-11",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-33",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-32",children:[],level:4}],level:3},{value:"0.7.3 - 2022-08-04",id:"073---2022-08-04",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-34",children:[],level:4}],level:3},{value:"0.7.2 - 2022-08-03",id:"072---2022-08-03",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-25",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-33",children:[],level:4}],level:3},{value:"0.7.1 - 2022-08-01",id:"071---2022-08-01",children:[],level:3},{value:"0.7.0 - 2022-08-01",id:"070---2022-08-01",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-18",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-26",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-35",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-34",children:[],level:4}],level:3},{value:"0.6.5 - 2022-07-06",id:"065---2022-07-06",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-27",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-36",children:[],level:4}],level:3},{value:"0.6.1 - 2022-07-01",id:"061---2022-07-01",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-19",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-37",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-13",children:[],level:4}],level:3},{value:"0.6.0 - 2022-07-01",id:"060---2022-07-01",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-28",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-38",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-14",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-13",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-35",children:[],level:4}],level:3},{value:"0.5.5 - 2022-06-23",id:"055---2022-06-23",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-29",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-39",children:[],level:4}],level:3},{value:"0.5.4 - 2022-06-16",id:"054---2022-06-16",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-30",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-40",children:[],level:4}],level:3},{value:"0.5.3 - 2022-06-16",id:"053---2022-06-16",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-31",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-41",children:[],level:4}],level:3},{value:"0.5.2 - 2022-06-14",id:"052---2022-06-14",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-20",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-42",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-15",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-36",children:[],level:4}],level:3},{value:"0.5.1 - 2022-06-13",id:"051---2022-06-13",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-43",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-37",children:[],level:4}],level:3},{value:"0.5.0 - 2022-06-11",id:"050---2022-06-11",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-21",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-32",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-44",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-38",children:[],level:4}],level:3},{value:"0.4.5 - 2022-06-08",id:"045---2022-06-08",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-45",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-39",children:[],level:4}],level:3},{value:"0.4.4 - 2022-06-08",id:"044---2022-06-08",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-22",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-33",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-46",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-14",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-40",children:[],level:4}],level:3},{value:"0.4.3 - 2022-06-03",id:"043---2022-06-03",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-34",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-47",children:[],level:4}],level:3},{value:"0.4.2 - 2022-06-02",id:"042---2022-06-02",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-48",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-15",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-41",children:[],level:4}],level:3},{value:"0.4.1 - 2022-06-02",id:"041---2022-06-02",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-23",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-35",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-49",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-16",children:[],level:4}],level:3},{value:"0.4.0 - 2022-06-01",id:"040---2022-06-01",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-24",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-36",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-50",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-16",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-42",children:[],level:4}],level:3},{value:"0.3.1 - 2022-05-19",id:"031---2022-05-19",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-37",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-51",children:[],level:4}],level:3},{value:"0.3.0 - 2022-05-17",id:"030---2022-05-17",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-25",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-38",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-52",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-43",children:[],level:4}],level:3},{value:"0.2.4 - 2022-05-13",id:"024---2022-05-13",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-53",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-44",children:[],level:4}],level:3},{value:"0.2.3 - 2022-04-29",id:"023---2022-04-29",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-26",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-54",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-17",children:[],level:4}],level:3},{value:"0.2.2 - 2022-04-22",id:"022---2022-04-22",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-39",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-55",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-17",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-45",children:[],level:4}],level:3},{value:"0.2.1 - 2022-04-08",id:"021---2022-04-08",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-40",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-46",children:[],level:4}],level:3},{value:"0.2.0 - 2022-04-04",id:"020---2022-04-04",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-27",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-41",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-56",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-18",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-47",children:[],level:4}],level:3},{value:"0.1.9 - 2022-03-25",id:"019---2022-03-25",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-28",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-42",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-57",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-19",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-48",children:[],level:4}],level:3},{value:"0.1.8 - 2022-03-18",id:"018---2022-03-18",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-43",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-58",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-20",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-18",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-49",children:[],level:4}],level:3},{value:"0.1.7 - 2022-03-15",id:"017---2022-03-15",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-29",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-44",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-59",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-21",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-19",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-50",children:[],level:4}],level:3},{value:"0.1.6 - 2022-03-11",id:"016---2022-03-11",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-30",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-45",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-60",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-22",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-51",children:[],level:4}],level:3},{value:"0.1.5 - 2022-03-08",id:"015---2022-03-08",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-31",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-46",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-61",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-23",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-20",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-52",children:[],level:4}],level:3},{value:"0.1.4 - 2022-03-01",id:"014---2022-03-01",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-62",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-21",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-53",children:[],level:4}],level:3},{value:"0.1.4-beta.0 - 2022-02-25",id:"014-beta0---2022-02-25",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-32",children:[],level:4}],level:3},{value:"0.1.3 - 2022-02-25",id:"013---2022-02-25",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-47",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-63",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-24",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-54",children:[],level:4}],level:3},{value:"0.1.2 - 2022-02-17",id:"012---2022-02-17",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-33",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-48",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-64",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-25",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-22",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-55",children:[],level:4}],level:3},{value:"0.1.2-beta.2 - 2022-01-03",id:"012-beta2---2022-01-03",children:[],level:3},{value:"0.1.2-beta.1 - 2021-12-22",id:"012-beta1---2021-12-22",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-56",children:[],level:4}],level:3},{value:"0.1.2-beta.0 - 2021-12-18",id:"012-beta0---2021-12-18",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-57",children:[],level:4}],level:3},{value:"0.1.1 - 2021-12-16",id:"011---2021-12-16",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-58",children:[],level:4}],level:3},{value:"0.1.1-beta.0 - 2021-12-09",id:"011-beta0---2021-12-09",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-59",children:[],level:4}],level:3},{value:"0.1.0 - 2021-11-17",id:"010---2021-11-17",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-60",children:[],level:4}],level:3},{value:"0.0.1 - 2021-11-17",id:"001---2021-11-17",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-61",children:[],level:4}],level:3}],r={toc:d},c="wrapper";function s(e){let{components:a,...t}=e;return(0,n.kt)(c,(0,i.Z)({},r,t,{components:a,mdxType:"MDXLayout"}),(0,n.kt)("h3",{id:"eea-design-system-10"},"EEA Design System (1.0)"),(0,n.kt)("h4",{id:"components-ready-to-be-used"},"Components ready to be used"),(0,n.kt)("p",null,"The following components are ready to be used as Volto ",(0,n.kt)("inlineCode",{parentName:"p"},"blocks"),", ",(0,n.kt)("inlineCode",{parentName:"p"},"slate")," integration, or via the advanced ",(0,n.kt)("inlineCode",{parentName:"p"},"block styler"),":"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Accordion ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Call to Action ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Callout - part of the Description ",(0,n.kt)("inlineCode",{parentName:"li"},"block"),", ",(0,n.kt)("inlineCode",{parentName:"li"},"slate")),(0,n.kt)("li",{parentName:"ul"},"Card - part of the Teaser ",(0,n.kt)("inlineCode",{parentName:"li"},"block")," and Listing ",(0,n.kt)("inlineCode",{parentName:"li"},"block"),", it includes several variations like round card e.g., used for Avatar"),(0,n.kt)("li",{parentName:"ul"},"Divider ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Headings ",(0,n.kt)("inlineCode",{parentName:"li"},"slate")),(0,n.kt)("li",{parentName:"ul"},"Hero ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Item ",(0,n.kt)("inlineCode",{parentName:"li"},"block")," - used for text with an icon (remixicon or custom SVG/image) on the left/right"),(0,n.kt)("li",{parentName:"ul"},"List ",(0,n.kt)("inlineCode",{parentName:"li"},"slate")," - ordered and unordered"),(0,n.kt)("li",{parentName:"ul"},"Quote ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Statistic ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Tag ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Table ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Tabs ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Timeline ",(0,n.kt)("inlineCode",{parentName:"li"},"block"))),(0,n.kt)("h4",{id:"future-releases"},"Future releases"),(0,n.kt)("p",null,"Below is a non-exhaustive list of the work-in-progress which is planned for future releases:"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Navigation Portlet (used on the left/right hand of content)"),(0,n.kt)("li",{parentName:"ul"},"Spacing/padding system. We want to add the ability for editors to consistently apply various spacing/padding on certain components in order to allow a better alignment when components are used together."),(0,n.kt)("li",{parentName:"ul"},"Improve docusaurus and storybook with more components, controls, and variations in order to better reflect what is possible in Volto.")),(0,n.kt)("p",null,"Generated by ",(0,n.kt)("a",{parentName:"p",href:"https://github.com/CookPete/auto-changelog"},(0,n.kt)("inlineCode",{parentName:"a"},"auto-changelog")),"."),(0,n.kt)("h3",{id:"unreleased---2023-04-06t134714894z"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.6...HEAD"},"Unreleased")," - 2023-04-06T13:47:14.894Z"),(0,n.kt)("h4",{id:"-bug-fixes"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(header): external url in header now takes you to the correct url #330 from eea/header-external-url-fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/086c61d683a7ac67dea221aa39ffe4cef05a9a68"},(0,n.kt)("inlineCode",{parentName:"a"},"086c61d"))),(0,n.kt)("li",{parentName:"ul"},"fix(item): flex variant on edit when inside blockchooser #333 from eea/fix-item-csss ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/65b9099779180feeb7d10384928bb0a3224b947d"},(0,n.kt)("inlineCode",{parentName:"a"},"65b9099"))),(0,n.kt)("li",{parentName:"ul"},"fix: dont run isInternalURL twice ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a48984e0cb224944aed3846447c416511d080779"},(0,n.kt)("inlineCode",{parentName:"a"},"a48984e"))),(0,n.kt)("li",{parentName:"ul"},"fix: github autoformat ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/be9774981032759b3284a6fb93490a204a817c7a"},(0,n.kt)("inlineCode",{parentName:"a"},"be97749"))),(0,n.kt)("li",{parentName:"ul"},"fix: external url in header ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9e3aea649ca6f9446324d5d351cdfcde08332f84"},(0,n.kt)("inlineCode",{parentName:"a"},"9e3aea6"))),(0,n.kt)("li",{parentName:"ul"},"fix: check if client method change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7c53b83a54e4e7d3c5329c46de03cdf7aabedf13"},(0,n.kt)("inlineCode",{parentName:"a"},"7c53b83"))),(0,n.kt)("li",{parentName:"ul"},"fix(item): use child selector instead of descendent as it interferes with blockchooser refs #157040 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ad4ca3725c595c8dbeaff69f730928313c1779ec"},(0,n.kt)("inlineCode",{parentName:"a"},"ad4ca37")))),(0,n.kt)("h4",{id:"-enhancements"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): align menu items with demo site for better testing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/82a5c84cfde81dd8243f3f9a2d1fcaa8ac4b1463"},(0,n.kt)("inlineCode",{parentName:"a"},"82a5c84"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumbs): updates on structure and story for accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/770c8c0bce88c5d9301ab0293a8e4865849bfeb2"},(0,n.kt)("inlineCode",{parentName:"a"},"770c8c0"))),(0,n.kt)("li",{parentName:"ul"},"change(logo): update eionet svg ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c87fc750a3dc376205a643eefced410a41b22c6"},(0,n.kt)("inlineCode",{parentName:"a"},"3c87fc7"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): Restructure Topics and Countries lists ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d816e7ab9cdf2f202ab994201c16241cfb26c33a"},(0,n.kt)("inlineCode",{parentName:"a"},"d816e7a"))),(0,n.kt)("li",{parentName:"ul"},"change(mega-menu): use lists for navigation, enhance voice over support for better accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d13137f024d6357514b85f184d219eb81dd585f2"},(0,n.kt)("inlineCode",{parentName:"a"},"d13137f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): firefox accessibility errors fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c7d35b92b90940b466ea016dbbb3f1c6dfa0c3ab"},(0,n.kt)("inlineCode",{parentName:"a"},"c7d35b9"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumbs): label modification for better screen reader output ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c967bef63ac6f622f5936235dd5590831a674d15"},(0,n.kt)("inlineCode",{parentName:"a"},"c967bef"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): clean up function after test ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/883eb73cbc3db6a1fadd0200118eafdce91b7aab"},(0,n.kt)("inlineCode",{parentName:"a"},"883eb73"))),(0,n.kt)("li",{parentName:"ul"},"change(mega-menu): added code to align countries left column subtitle with the right column ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1aa33dd7ac7154a91515eef688f276d664d5d7f3"},(0,n.kt)("inlineCode",{parentName:"a"},"1aa33dd"))),(0,n.kt)("li",{parentName:"ul"},"change(mega-menu): sub-title padding tweaks for better spacing normalization ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e08668dd9fd948e57628e5582e7a4a7f08d96451"},(0,n.kt)("inlineCode",{parentName:"a"},"e08668d"))),(0,n.kt)("li",{parentName:"ul"},"change(logos): updated eionet logo used in the site footer #318 from eea/footer-logo-update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70671d03bbc228e3013e382cb51e6764a83b01a8"},(0,n.kt)("inlineCode",{parentName:"a"},"70671d0"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumbs,mega-menu): better screen readers support, see links instead of groups #309 from eea/firefox-accessibility-tab-issues ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d6b0b4adba8f04799491025fb41ac97e875bcce0"},(0,n.kt)("inlineCode",{parentName:"a"},"d6b0b4a"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumbs): fixed sizing of breadcrumbs list items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1761e984a6ffebbcca0c7b88128a01235fc6b903"},(0,n.kt)("inlineCode",{parentName:"a"},"1761e98")))),(0,n.kt)("h4",{id:"-internal-changes"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(megaMenu): remove comments and unused properties ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fa5f8f878421d879026aacd86e5390112b8852a1"},(0,n.kt)("inlineCode",{parentName:"a"},"fa5f8f8")))),(0,n.kt)("h4",{id:"-documentation-changes"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(footer): logo update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ad982d63423442bc292cd7553ad3163b33b337bb"},(0,n.kt)("inlineCode",{parentName:"a"},"ad982d6")))),(0,n.kt)("h3",{id:"106---2023-03-29"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.5...1.0.6"},"1.0.6")," - 2023-03-29"),(0,n.kt)("h4",{id:"-new-features"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat: add viewport-(width/height) less functions and fixed banner image url #329 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e8e70bdc81f4f301a9dce370867a873e55563048"},(0,n.kt)("inlineCode",{parentName:"a"},"e8e70bd"))),(0,n.kt)("li",{parentName:"ul"},"feat: add viewport-(width/height) less functions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/68300a3c34e66954c7ef3a6e52baa37431fbfa9e"},(0,n.kt)("inlineCode",{parentName:"a"},"68300a3")))),(0,n.kt)("h4",{id:"-enhancements-1"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): set full class name for remix icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f435e10034b04cab4aeb301d8521559f98be299e"},(0,n.kt)("inlineCode",{parentName:"a"},"f435e10"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner.jsx): use flattenToAppURL helper function to get image source URL ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24b13d7c09a498ca889d413135c9abc4e6cab9ad"},(0,n.kt)("inlineCode",{parentName:"a"},"24b13d7")))),(0,n.kt)("h4",{id:"-internal-changes-1"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(theme): update container width and margins in eea theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e4446a3af641ddca03f1f2833dd6e79535feb98"},(0,n.kt)("inlineCode",{parentName:"a"},"3e4446a")))),(0,n.kt)("h4",{id:"\ufe0f-others"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"horizontal overflow hidden in view mode ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f395f276df003480a219bae639f87bebcf35799f"},(0,n.kt)("inlineCode",{parentName:"a"},"f395f27")))),(0,n.kt)("h3",{id:"105---2023-03-28"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.4...1.0.5"},"1.0.5")," - 2023-03-28"),(0,n.kt)("h4",{id:"-new-features-1"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat: improve full-width class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70bba7e295dd237e7c579ef0446ff05e0c8529d8"},(0,n.kt)("inlineCode",{parentName:"a"},"70bba7e")))),(0,n.kt)("h4",{id:"-bug-fixes-1"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(banner): Add missing divider for time tag #327 from eea/banner-metadata ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c46a58336ec9eb2ce75d2637f3197f417e8ca326"},(0,n.kt)("inlineCode",{parentName:"a"},"c46a583"))),(0,n.kt)("li",{parentName:"ul"},"fix(banner): Add missing divider for time tag ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d68c395d368a267baef4422df6e72f63d099b75"},(0,n.kt)("inlineCode",{parentName:"a"},"7d68c39")))),(0,n.kt)("h3",{id:"104---2023-03-27"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.3...1.0.4"},"1.0.4")," - 2023-03-27"),(0,n.kt)("h4",{id:"-new-features-2"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(copyright): Add copyright prefix - Image - refs #250724 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6a727723c15aee499ed7cedc9f364c5e2c8014bb"},(0,n.kt)("inlineCode",{parentName:"a"},"6a72772")))),(0,n.kt)("h4",{id:"-internal-changes-2"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(copyright): Cleanup useless min-height - refs #250724 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2457df6376ac1a4d00f87eee90e61f66f7ffebb"},(0,n.kt)("inlineCode",{parentName:"a"},"f2457df")))),(0,n.kt)("h4",{id:"\ufe0f-others-1"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cfd6eba8b01eceff4e28ab7ab51b2457672ac172"},(0,n.kt)("inlineCode",{parentName:"a"},"cfd6eba")))),(0,n.kt)("h3",{id:"103---2023-03-24"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.2...1.0.3"},"1.0.3")," - 2023-03-24"),(0,n.kt)("h4",{id:"-bug-fixes-2"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix: improve full-width class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93222590a630b27f3dfccb7df0a50070c9c9901c"},(0,n.kt)("inlineCode",{parentName:"a"},"9322259"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): Remove z-index from subsite logo #320 from eea/subsite-logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/50911009918faf7d3064d97ea7b685ad71970521"},(0,n.kt)("inlineCode",{parentName:"a"},"5091100"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): Remove z-index from subsite logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d433a9788d76db0f1c08ef6bb2313f479c2bb19b"},(0,n.kt)("inlineCode",{parentName:"a"},"d433a97")))),(0,n.kt)("h4",{id:"-enhancements-2"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(header): Add search popup customizations from eea-website-theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/43e5a78be8efa1098ea0fc87f43f40f2b5d482c1"},(0,n.kt)("inlineCode",{parentName:"a"},"43e5a78"))),(0,n.kt)("li",{parentName:"ul"},"change(popup): create custom popup for better accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/036aac95509b6d78b2d3b251578a7de878e28371"},(0,n.kt)("inlineCode",{parentName:"a"},"036aac9"))),(0,n.kt)("li",{parentName:"ul"},"change(popup): added most important popup properties from Semantic ui implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/61f65bc0e5806aaac33b54db36d5360fd05a48cc"},(0,n.kt)("inlineCode",{parentName:"a"},"61f65bc"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): use custom-made Popup for better accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/10d0fcfb28ca97efe9fa5c0f6c9c350b76a73140"},(0,n.kt)("inlineCode",{parentName:"a"},"10d0fcf"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): use custom-made Popup for better accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9108bee5f671505be5199e72a4749bb0af0c0cb9"},(0,n.kt)("inlineCode",{parentName:"a"},"9108bee"))),(0,n.kt)("li",{parentName:"ul"},"change(popup): added also the basic property ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4497acddde258ed31cda09f4d905e003a1e4611"},(0,n.kt)("inlineCode",{parentName:"a"},"a4497ac"))),(0,n.kt)("li",{parentName:"ul"},"change(colors): update gray-4 color value #321 from eea/update-gray-4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f458ff0965debd3629cdd78362244836d0d42687"},(0,n.kt)("inlineCode",{parentName:"a"},"f458ff0"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): MetadataField now uses proper time tag when value is datetime ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4c4d34d5905a6771a281fc3db1174b4998c8fa8"},(0,n.kt)("inlineCode",{parentName:"a"},"b4c4d34"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): updated gray-4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b890df7693880fb965e41752eda64df992a1cdc4"},(0,n.kt)("inlineCode",{parentName:"a"},"b890df7"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): Fix error and empty div if no social links are present #319 from eea/footer-social ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/89222466b76a4720af73c0d516074efec0757c34"},(0,n.kt)("inlineCode",{parentName:"a"},"8922246"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): Fix error and empty div if no social links are present ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5d934a6545ae783ff41dc9e3eda389c571d1369b"},(0,n.kt)("inlineCode",{parentName:"a"},"5d934a6")))),(0,n.kt)("h4",{id:"\ufe0f-others-2"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"lint ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca41def7a3743a8328f26cec868bd20395b62446"},(0,n.kt)("inlineCode",{parentName:"a"},"ca41def"))),(0,n.kt)("li",{parentName:"ul"},"refactor ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9789201c7966cd711bfa85fe448f6f6df2583eaf"},(0,n.kt)("inlineCode",{parentName:"a"},"9789201"))),(0,n.kt)("li",{parentName:"ul"},"lint ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/646dfaa729b51367ce7545ea928837a481a5485a"},(0,n.kt)("inlineCode",{parentName:"a"},"646dfaa"))),(0,n.kt)("li",{parentName:"ul"},"(feat):Page Header Banner accessibility #316 from eea/accesibility-banner ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e587f4657de137273053480a3536a066ab032a29"},(0,n.kt)("inlineCode",{parentName:"a"},"e587f46"))),(0,n.kt)("li",{parentName:"ul"},"storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c8c77de372060328d535b190f30747797db0d23a"},(0,n.kt)("inlineCode",{parentName:"a"},"c8c77de"))),(0,n.kt)("li",{parentName:"ul"},"banner accesibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5e2f23bae30b5bb14d3f607e0cfeb85d0cfe4a9f"},(0,n.kt)("inlineCode",{parentName:"a"},"5e2f23b"))),(0,n.kt)("li",{parentName:"ul"},"prettier ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6ed78e50ee68accca10b06b0790c231ddeb1a1fa"},(0,n.kt)("inlineCode",{parentName:"a"},"6ed78e5"))),(0,n.kt)("li",{parentName:"ul"},"cleaning ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4391aa6c6611d1a15f5977eb150416909ad83bc1"},(0,n.kt)("inlineCode",{parentName:"a"},"4391aa6"))),(0,n.kt)("li",{parentName:"ul"},"lint 3 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2e0bed19a24d8abfa230212cd8c09f8313dc00f2"},(0,n.kt)("inlineCode",{parentName:"a"},"2e0bed1"))),(0,n.kt)("li",{parentName:"ul"},"lint 1 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4c958034870a9861c542359144e3c56f9157994"},(0,n.kt)("inlineCode",{parentName:"a"},"b4c9580")))),(0,n.kt)("h3",{id:"102---2023-03-14"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.1...1.0.2"},"1.0.2")," - 2023-03-14"),(0,n.kt)("h4",{id:"-bug-fixes-3"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(megamenu): topic menu title is now placed before content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6004bcb2683dedf6d6e18e61f33fde84a54c38d5"},(0,n.kt)("inlineCode",{parentName:"a"},"6004bcb"))),(0,n.kt)("li",{parentName:"ul"},"fix(megamenu): removed in depth nav_title renaming that set title wrongly to a-z topics ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/899ca0e2ba5f8f9eb61e4280d786f74a17c186b7"},(0,n.kt)("inlineCode",{parentName:"a"},"899ca0e")))),(0,n.kt)("h4",{id:"-enhancements-3"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(megamenu): removed special styling from at a glance mega menu section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fd0c4c8a06bb4c4aa26f57c453132d13d30bc691"},(0,n.kt)("inlineCode",{parentName:"a"},"fd0c4c8"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): renamed thematic information platforms to environmental information systems ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e7004a7ea39451dbf97e1faed222b0cc5a12d6ce"},(0,n.kt)("inlineCode",{parentName:"a"},"e7004a7"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): updated static image of footer sections ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ff3185edf9257c790d2a124d3f937f61d84e147"},(0,n.kt)("inlineCode",{parentName:"a"},"4ff3185")))),(0,n.kt)("h4",{id:"-documentation-changes-1"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(What's new): Update 'What's new' ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d7ed9d619aa60d087c3821a972ebe5bf5766521a"},(0,n.kt)("inlineCode",{parentName:"a"},"d7ed9d6")))),(0,n.kt)("h4",{id:"\ufe0f-others-3"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fixed accordion selector typo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f4cabc8f2222cf587af9e04b0ea196799b84202f"},(0,n.kt)("inlineCode",{parentName:"a"},"f4cabc8")))),(0,n.kt)("h3",{id:"101---2023-03-13"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0...1.0.1"},"1.0.1")," - 2023-03-13"),(0,n.kt)("h3",{id:"100---2023-03-13"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-beta.6...1.0.0"},"1.0.0")," - 2023-03-13"),(0,n.kt)("h4",{id:"-bug-fixes-4"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(Footer): Open internal links within the same page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5b3e409c71281800bb0fd137a1bac256efaca2b5"},(0,n.kt)("inlineCode",{parentName:"a"},"5b3e409")))),(0,n.kt)("h4",{id:"-enhancements-4"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(banner): use huge scale instead of full image for better performance ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/381c58e3521436f562d9e1727428a18435e2c0f3"},(0,n.kt)("inlineCode",{parentName:"a"},"381c58e")))),(0,n.kt)("h3",{id:"100-beta6---2023-03-10"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-beta.5...1.0.0-beta.6"},"1.0.0-beta.6")," - 2023-03-10"),(0,n.kt)("h4",{id:"-new-features-3"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(site): serve Roboto fonts from eea design system package instead of google fonts #311 from eea/roboto-library ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6a1b3e3864a0bc8602e9c434ff70746bba59f44"},(0,n.kt)("inlineCode",{parentName:"a"},"f6a1b3e")))),(0,n.kt)("h4",{id:"-bug-fixes-5"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix: full-width is now properly sized ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e2e3482d658febbd692112608df14279bed05e7"},(0,n.kt)("inlineCode",{parentName:"a"},"6e2e348"))),(0,n.kt)("li",{parentName:"ul"},"fix(storybook): add fontDisplay ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/078966a6a5c7277d36fcd31bb4c0704bcc43e523"},(0,n.kt)("inlineCode",{parentName:"a"},"078966a")))),(0,n.kt)("h4",{id:"-enhancements-5"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(image): copyright position fixes, moved image floating to image-block-container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53422e0ea345a7cb6e8cb07bf9006b48d86ded58"},(0,n.kt)("inlineCode",{parentName:"a"},"53422e0"))),(0,n.kt)("li",{parentName:"ul"},"change(colors:) update the design system colour palette #312 from eea/update-color-palette ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a5fb69465717dbdc0fe8091640a0e46f66199b65"},(0,n.kt)("inlineCode",{parentName:"a"},"a5fb694"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): added roboto library ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19de7b19fe795870102000bfebbf452d88b3a7b1"},(0,n.kt)("inlineCode",{parentName:"a"},"19de7b1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): added roboto library ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e9916215728dda0ff423f8196e7442588058042e"},(0,n.kt)("inlineCode",{parentName:"a"},"e991621"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): update colours ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3a2c1e1da8f0224e08f9f8afac3f0a74f7ce91d3"},(0,n.kt)("inlineCode",{parentName:"a"},"3a2c1e1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): restored site variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a48478bae9bdf1d9275be999e1ec8382f10a2fec"},(0,n.kt)("inlineCode",{parentName:"a"},"a48478b"))),(0,n.kt)("li",{parentName:"ul"},"change(copyright): implemented copyright hover design ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6b1244163de7ff58d1529fdd791502c862ee48ec"},(0,n.kt)("inlineCode",{parentName:"a"},"6b12441")))),(0,n.kt)("h4",{id:"-internal-changes-3"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(storybook): switched google fonts to true ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a8cae46582356cc24ec3cd7ec47e692bc67a6a5"},(0,n.kt)("inlineCode",{parentName:"a"},"4a8cae4"))),(0,n.kt)("li",{parentName:"ul"},"chore(colours): changed back yellow 6 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87c9bbc0ec9a2a0f4bf8eeb03525d43ce6f502be"},(0,n.kt)("inlineCode",{parentName:"a"},"87c9bbc"))),(0,n.kt)("li",{parentName:"ul"},"chore(lint): lint ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9b0f1256a8b0a583ac7724a8d88259c615d7e0c7"},(0,n.kt)("inlineCode",{parentName:"a"},"9b0f125"))),(0,n.kt)("li",{parentName:"ul"},"chore(storybook): lint ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/29bc809ab2e9fa4207b8b067785e6b17e91db3b4"},(0,n.kt)("inlineCode",{parentName:"a"},"29bc809")))),(0,n.kt)("h4",{id:"-documentation-changes-2"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(colours): colours update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/161007e2480aa79517c4ca772364a12a0756f1af"},(0,n.kt)("inlineCode",{parentName:"a"},"161007e"))),(0,n.kt)("li",{parentName:"ul"},"docs(colours): accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee342aa6af3863d243222eaa89709be2ba61f988"},(0,n.kt)("inlineCode",{parentName:"a"},"ee342aa")))),(0,n.kt)("h4",{id:"\ufe0f-others-4"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"test(cypress): Use latest stable Volto for testing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/20516617ae045f48c37a7ac7ad05c3d1090339b3"},(0,n.kt)("inlineCode",{parentName:"a"},"2051661"))),(0,n.kt)("li",{parentName:"ul"},"Update What's new section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/caa4b5d93affa7b63a332eaed9e73ea161a508cf"},(0,n.kt)("inlineCode",{parentName:"a"},"caa4b5d"))),(0,n.kt)("li",{parentName:"ul"},"Prepare final release 1.0.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef4383d05b295cbbb377f877522b9f83cd0873ef"},(0,n.kt)("inlineCode",{parentName:"a"},"ef4383d"))),(0,n.kt)("li",{parentName:"ul"},"lint fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/599f5098904f607bd694dd5d2e642c8820f11b3c"},(0,n.kt)("inlineCode",{parentName:"a"},"599f509"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/80cd3df3534e46e52ba246256c3d990a52753bbd"},(0,n.kt)("inlineCode",{parentName:"a"},"80cd3df")))),(0,n.kt)("h3",{id:"100-beta5---2023-03-07"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-beta.4...1.0.0-beta.5"},"1.0.0-beta.5")," - 2023-03-07"),(0,n.kt)("h4",{id:"-enhancements-6"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(carousel): tweak size of carousel dots for better touch interaction ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e1fb8230806de2e157a9a5ea87e63765769565b4"},(0,n.kt)("inlineCode",{parentName:"a"},"e1fb823"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): removed min width and height from links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac33219fb77f23bb5148355551a7aad9f453d2e7"},(0,n.kt)("inlineCode",{parentName:"a"},"ac33219")))),(0,n.kt)("h4",{id:"-internal-changes-4"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(hiddenStructure): Add hiddenStructure utility to be used with h1 heading on frontpage - refs #158717 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/672cca2401003f56e5ea104f18103ea090e38fd7"},(0,n.kt)("inlineCode",{parentName:"a"},"672cca2")))),(0,n.kt)("h4",{id:"\ufe0f-others-5"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fixed less build failure due to changes in footer.less ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/190bc8cfa88191b45808f1e27c6e2737ee3d15b1"},(0,n.kt)("inlineCode",{parentName:"a"},"190bc8c"))),(0,n.kt)("li",{parentName:"ul"},"lazyload bg img on footer also ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ae07162ba1b27bff58fed70eaabc28c78c5f45a3"},(0,n.kt)("inlineCode",{parentName:"a"},"ae07162"))),(0,n.kt)("li",{parentName:"ul"},"lazyload footer images ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a0633c9ec4ccfb63a48eb4e4c4a63c90daac1a37"},(0,n.kt)("inlineCode",{parentName:"a"},"a0633c9"))),(0,n.kt)("li",{parentName:"ul"},"Increase performance - mobile friendly ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/07d86c8e77568f91d50b3a45248de9427140a295"},(0,n.kt)("inlineCode",{parentName:"a"},"07d86c8"))),(0,n.kt)("li",{parentName:"ul"},"better useOnScreen hook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c214b6b76443f81c795ce2f3aa457562ec088b30"},(0,n.kt)("inlineCode",{parentName:"a"},"c214b6b"))),(0,n.kt)("li",{parentName:"ul"},"role change for accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5e758e0a7fa8c56ba688d0a43de5890686f14ea3"},(0,n.kt)("inlineCode",{parentName:"a"},"5e758e0"))),(0,n.kt)("li",{parentName:"ul"},"minimum tap dimension for mobile ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a25e9a8ba8a8a0f24d287ed7513e549ae2caab0f"},(0,n.kt)("inlineCode",{parentName:"a"},"a25e9a8"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-beta.5 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e4417e121477511c350ae3fbe4e70aadb445ed86"},(0,n.kt)("inlineCode",{parentName:"a"},"e4417e1"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using eea-website-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b227cf8a8c44b9d91e9fda8a7999fb0a42bacdca"},(0,n.kt)("inlineCode",{parentName:"a"},"b227cf8"))),(0,n.kt)("li",{parentName:"ul"},"feature(mobile): increased performance by lazy loading footer images #303 from eea/increase_performance ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/80d1df1c459680331d486f9e8e6a95c9db0adbf6"},(0,n.kt)("inlineCode",{parentName:"a"},"80d1df1"))),(0,n.kt)("li",{parentName:"ul"},"useOnScreen default export ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e6cfdd4dcb814aad328f97be7af41af071ccba6"},(0,n.kt)("inlineCode",{parentName:"a"},"3e6cfdd"))),(0,n.kt)("li",{parentName:"ul"},"use aria-labels on dropdown ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/27e144315416ceace0f01def03b5b24640f5c7da"},(0,n.kt)("inlineCode",{parentName:"a"},"27e1443"))),(0,n.kt)("li",{parentName:"ul"},"prettier ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7f838470c1bcc4e2be115d514d92a1b686a5e9b"},(0,n.kt)("inlineCode",{parentName:"a"},"a7f8384")))),(0,n.kt)("h3",{id:"100-beta4---2023-03-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-beta.3...1.0.0-beta.4"},"1.0.0-beta.4")," - 2023-03-01"),(0,n.kt)("h4",{id:"-new-features-4"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(footer): Add footer description ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ad0f714556c5b8c2fd95a2caea5c3a1e82c75d1"},(0,n.kt)("inlineCode",{parentName:"a"},"2ad0f71"))),(0,n.kt)("li",{parentName:"ul"},"feat(footer): Add footer description #306 from eea/footer-description ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bf655d133dd75b217c34b3d4303ad450a59f2c51"},(0,n.kt)("inlineCode",{parentName:"a"},"bf655d1")))),(0,n.kt)("h4",{id:"-bug-fixes-6"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(footer): Don't show empty row if description is not present ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ca7f7d3247668ae8583b8cd629856aac82eb07d"},(0,n.kt)("inlineCode",{parentName:"a"},"2ca7f7d"))),(0,n.kt)("li",{parentName:"ul"},"fix(footer): Add class for children ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c50d15cd6ed46d78ef10d48fd851ed7c4b5ddea"},(0,n.kt)("inlineCode",{parentName:"a"},"3c50d15"))),(0,n.kt)("li",{parentName:"ul"},"fix(search): Fix search links color #307 from eea/search-accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a76f48bab3a7d3f6b748eaa85b33266401372e40"},(0,n.kt)("inlineCode",{parentName:"a"},"a76f48b"))),(0,n.kt)("li",{parentName:"ul"},"fix(search): Fix search links color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/69c42effc5bdc3d31f18de74d77a3b7cc0018dc5"},(0,n.kt)("inlineCode",{parentName:"a"},"69c42ef")))),(0,n.kt)("h4",{id:"-enhancements-7"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(carousel): tweak card width and padding for better arrow alignment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e184f70062d622e1ec53e8e1e2b012c080e62d77"},(0,n.kt)("inlineCode",{parentName:"a"},"e184f70"))),(0,n.kt)("li",{parentName:"ul"},"change(storybook): include footer description in storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e904aa0850e101d736e8d045e822d9a58b75ff6a"},(0,n.kt)("inlineCode",{parentName:"a"},"e904aa0")))),(0,n.kt)("h4",{id:"\ufe0f-others-6"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-beta.4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8c335c56c5a2a76ea87f9da318055770f904e649"},(0,n.kt)("inlineCode",{parentName:"a"},"8c335c5"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/38b03333066416915b056f8ac45da4de87ed7184"},(0,n.kt)("inlineCode",{parentName:"a"},"38b0333")))),(0,n.kt)("h3",{id:"100-beta3---2023-02-21"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-beta.2...1.0.0-beta.3"},"1.0.0-beta.3")," - 2023-02-21"),(0,n.kt)("h4",{id:"-new-features-5"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(accordion): storybook accessibility by using buttons for titles #297 from eea/accessibility-accordion ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/809d52b203ef40fab735006b3b8358d68682f7cf"},(0,n.kt)("inlineCode",{parentName:"a"},"809d52b")))),(0,n.kt)("h4",{id:"-bug-fixes-7"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(dropdown): remove close on blur so that we can navigate links using keyboard ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5442715e022b3eb2eeb709ff597f815947ac45bd"},(0,n.kt)("inlineCode",{parentName:"a"},"5442715")))),(0,n.kt)("h4",{id:"-enhancements-8"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(language): dropdown to use links for proper keyboard navigation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6a7de30d9d229443d6d2070d9649129e6d35badf"},(0,n.kt)("inlineCode",{parentName:"a"},"6a7de30"))),(0,n.kt)("li",{parentName:"ul"},"refactor(images): cleared unused/renamed images assets ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/821f5c1da5c1e2350818cd9b8b82bc0b1893370d"},(0,n.kt)("inlineCode",{parentName:"a"},"821f5c1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Accessibility): add box-shadow on focus-visible components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b1adcc315a89c7d3431e542e8d1b6ec479a346e2"},(0,n.kt)("inlineCode",{parentName:"a"},"b1adcc3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(images): remove unused docusaurus svgs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5ef14cdb1923d803feb673559d41b3064211653"},(0,n.kt)("inlineCode",{parentName:"a"},"c5ef14c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add escape key functionality, actions from div to button to have proper focus state ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8081aa4e3b77f8a3dc89aa358408d75e3dca5579"},(0,n.kt)("inlineCode",{parentName:"a"},"8081aa4"))),(0,n.kt)("li",{parentName:"ul"},"change(language): restore dropdown duplication in order to properly show and hide language dropdown ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb28888ff19bd9894b58403e674f69de42ad8d09"},(0,n.kt)("inlineCode",{parentName:"a"},"cb28888"))),(0,n.kt)("li",{parentName:"ul"},"change(search): to reflect changes from eea-website-theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2cc35e0da6e6eac1473724293fcf6cd6b0a914b5"},(0,n.kt)("inlineCode",{parentName:"a"},"2cc35e0"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update p with h3 heading tag for header ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca1477b554f56423d40a33d8ee788c3f3bd3e341"},(0,n.kt)("inlineCode",{parentName:"a"},"ca1477b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer images): removed unused/renamed ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/186de6b23906e05ec700c3db5180a4d7f7e5ed68"},(0,n.kt)("inlineCode",{parentName:"a"},"186de6b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Accordion): div titles to buttons, test in mobile mega menu accordions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/eaad4b479e37ebf5ac004cfc5759e0be603000a7"},(0,n.kt)("inlineCode",{parentName:"a"},"eaad4b4"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): cleanup decorative images ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fedc4d4dc156f9c1394fcedcebece4fb87dc70b6"},(0,n.kt)("inlineCode",{parentName:"a"},"fedc4d4"))),(0,n.kt)("li",{parentName:"ul"},"change(accessibility): style outline instead of box-shadow ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53209f3b28c9a1dd54a8a86ab418b8bc2a8e01b3"},(0,n.kt)("inlineCode",{parentName:"a"},"53209f3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Footer): update mobile header size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/01ab7f0d9abe688b3d96aaec018838e1abefec73"},(0,n.kt)("inlineCode",{parentName:"a"},"01ab7f0"))),(0,n.kt)("li",{parentName:"ul"},"change(header): set the logo class directly on the link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f8fba508f925d9e6b86720fcb2c7dcfffee4ab5e"},(0,n.kt)("inlineCode",{parentName:"a"},"f8fba50"))),(0,n.kt)("li",{parentName:"ul"},"refactor(images): clear docusaurus unused pngs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/db5c61124182e3030f753f6baa294fbdecaa3798"},(0,n.kt)("inlineCode",{parentName:"a"},"db5c611"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header-images): removed unused ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8250d94421d9d1ee13144e71bc0938af2b7309f5"},(0,n.kt)("inlineCode",{parentName:"a"},"8250d94"))),(0,n.kt)("li",{parentName:"ul"},"change(language): hide language dropdown by default ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cc6064f72dcb4dbf96e9b05205cc796775d75205"},(0,n.kt)("inlineCode",{parentName:"a"},"cc6064f"))),(0,n.kt)("li",{parentName:"ul"},"change(header): top dropdown menu keyboard navigation #293 from eea/accessibility-megamenu-searchbox ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1e6fa658e52b9d5e6cc38f065b5707b592005241"},(0,n.kt)("inlineCode",{parentName:"a"},"1e6fa65"))),(0,n.kt)("li",{parentName:"ul"},"change(button): set focus styling for buttons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/33ebfcacb014fca365ae58079bfa5429d9007e54"},(0,n.kt)("inlineCode",{parentName:"a"},"33ebfca"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): Avoid devtools warning in FooterActions #304 from eea/avoid_warning ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d774824c5d3d0998b3440ac83152428cfa821087"},(0,n.kt)("inlineCode",{parentName:"a"},"d774824"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): Accessibility update p with h3 heading tag for theme sites title #302 from eea/footer-accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5bf70de97aee216a0b88f5843a290c6bcb5da6f2"},(0,n.kt)("inlineCode",{parentName:"a"},"5bf70de"))),(0,n.kt)("li",{parentName:"ul"},"change(documentation): Rename all image files to follow the agreed convention #301 from eea/refactor-image-filenames ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cfe44ef79943af9b9179df1b8ec5f8c743e8bb39"},(0,n.kt)("inlineCode",{parentName:"a"},"cfe44ef")))),(0,n.kt)("h4",{id:"-internal-changes-5"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(header): react syntax fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3add1271c785a92bea0ef925d7bc562cef1e0d92"},(0,n.kt)("inlineCode",{parentName:"a"},"3add127"))),(0,n.kt)("li",{parentName:"ul"},"chore(docusaurus): ignore website/.yarn ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0b33ffd1dda61b126e3cc5ff48888124d6aee41b"},(0,n.kt)("inlineCode",{parentName:"a"},"0b33ffd")))),(0,n.kt)("h4",{id:"-documentation-changes-3"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(guidelines): add image name convention ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/290747c8df6919199577bc7fce6a0e337cb57853"},(0,n.kt)("inlineCode",{parentName:"a"},"290747c")))),(0,n.kt)("h4",{id:"\ufe0f-others-7"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Avoid warning in FooterActions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0fe73d70e44e32be73049f3b5cf826de42115942"},(0,n.kt)("inlineCode",{parentName:"a"},"0fe73d7"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-beta.3 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/386c9032d39317b0bb95191bd59e3b7a99bded69"},(0,n.kt)("inlineCode",{parentName:"a"},"386c903")))),(0,n.kt)("h3",{id:"100-beta2---2023-02-13"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-beta.1...1.0.0-beta.2"},"1.0.0-beta.2")," - 2023-02-13"),(0,n.kt)("h4",{id:"-bug-fixes-8"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(footer): action and copyright #300 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/579f3e436e9608b38a2407a16c070345462bfccc"},(0,n.kt)("inlineCode",{parentName:"a"},"579f3e4"))),(0,n.kt)("li",{parentName:"ul"},"fix(footer): action or copyright links are simple a tags for external link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9af5070187ec975e58387f133afedcf1bbc47a50"},(0,n.kt)("inlineCode",{parentName:"a"},"9af5070"))),(0,n.kt)("li",{parentName:"ul"},"fix(accessibility): added navigation and footer id's for skip link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48354b908e7d1a87b4e1a965d225e8f1b3e0ac59"},(0,n.kt)("inlineCode",{parentName:"a"},"48354b9")))),(0,n.kt)("h4",{id:"-enhancements-9"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(footer): typos and modified footer links to be center aligned ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac23f046bcac06525985dff7520bb2766dec44ec"},(0,n.kt)("inlineCode",{parentName:"a"},"ac23f04"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): added gap for actions and copyright ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d32ddd3c28a48c6c2fb73dea373bb5873b6f76b"},(0,n.kt)("inlineCode",{parentName:"a"},"7d32ddd"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): modified footer gap ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8a820ac90c7d6664e4d4655c2c06edfa976c64e"},(0,n.kt)("inlineCode",{parentName:"a"},"b8a820a"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): removed extra text and date from copyright section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af47bbec298678fece6f879fbc18fe2e01ab0894"},(0,n.kt)("inlineCode",{parentName:"a"},"af47bbe"))),(0,n.kt)("li",{parentName:"ul"},"change(navigation): raise z-index of go to top link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/485ca7291da7a156b6b580c42e46d4f3602211bb"},(0,n.kt)("inlineCode",{parentName:"a"},"485ca72")))),(0,n.kt)("h4",{id:"-internal-changes-6"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(docs): Update eea.hbs template to beta - refs #158717 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/196538ed7bb9dab36a0efb4cef84e96dd3038ff8"},(0,n.kt)("inlineCode",{parentName:"a"},"196538e")))),(0,n.kt)("h4",{id:"\ufe0f-others-8"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change version to beta 2 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cbb07981454b28de840561eca281888e8bc29f9e"},(0,n.kt)("inlineCode",{parentName:"a"},"cbb0798"))),(0,n.kt)("li",{parentName:"ul"},"Beta release ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ad51b3c2bbb75f19af14fa56afdbddf57b6c95e"},(0,n.kt)("inlineCode",{parentName:"a"},"4ad51b3")))),(0,n.kt)("h3",{id:"100-beta1---2023-02-09"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.15...1.0.0-beta.1"},"1.0.0-beta.1")," - 2023-02-09"),(0,n.kt)("h4",{id:"-new-features-6"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(search): Add search suggestions style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6b2b77bbaba11541606ae2bc1f4e8ffc823f470d"},(0,n.kt)("inlineCode",{parentName:"a"},"6b2b77b"))),(0,n.kt)("li",{parentName:"ul"},"feat(search): Add search suggestions style #296 from eea/search-suggestions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3b0c956f569ebdc8400b88249c45067a1f881264"},(0,n.kt)("inlineCode",{parentName:"a"},"3b0c956")))),(0,n.kt)("h4",{id:"-enhancements-10"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(search): Add proper margin for search popup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/190c9f5be570215586086f42aebc7e36d6a26ea2"},(0,n.kt)("inlineCode",{parentName:"a"},"190c9f5")))),(0,n.kt)("h4",{id:"\ufe0f-others-9"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Extra bottom padding for header menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4f38c7a96d93fbcd47de4ec60176de2a667c5643"},(0,n.kt)("inlineCode",{parentName:"a"},"4f38c7a"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-beta.1 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4384ae28597c725f66ab0f1361ffd5167ee5e3a1"},(0,n.kt)("inlineCode",{parentName:"a"},"4384ae2"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c2ee90c1754f17a304897839adf482bc2a111212"},(0,n.kt)("inlineCode",{parentName:"a"},"c2ee90c")))),(0,n.kt)("h3",{id:"100-alpha15---2023-02-08"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.14...1.0.0-alpha.15"},"1.0.0-alpha.15")," - 2023-02-08"),(0,n.kt)("h4",{id:"-new-features-7"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(Card): add teaser card grid story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53cac0b0d1c40ad6ad8c9dc91c5d24bfb160f98e"},(0,n.kt)("inlineCode",{parentName:"a"},"53cac0b"))),(0,n.kt)("li",{parentName:"ul"},"feat(utilities): Complete list of text-align utilities - refs #160747 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/224fab602184b8974f588c91a7412e3d03e4e2f7"},(0,n.kt)("inlineCode",{parentName:"a"},"224fab6"))),(0,n.kt)("li",{parentName:"ul"},"feat(small): CSS for small HTML tag - refs #160747 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ad3c0adec4efa7cead69153d399c6452131c94cc"},(0,n.kt)("inlineCode",{parentName:"a"},"ad3c0ad"))),(0,n.kt)("li",{parentName:"ul"},"feat(fw-light): Add font weight light utility - refs #160747 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c44cf57db5845fbb9c07233aeedab79e1438f80f"},(0,n.kt)("inlineCode",{parentName:"a"},"c44cf57")))),(0,n.kt)("h4",{id:"-bug-fixes-9"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(card): teaser card dimensions on tablet size #290 from eea/teaser-card-grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/013fdf5cad347aee14bdc51553dbd95d972a7c66"},(0,n.kt)("inlineCode",{parentName:"a"},"013fdf5")))),(0,n.kt)("h4",{id:"-enhancements-11"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(card): added extra content for teaser card story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/30690ae6c499682853cb19db10b0cdc13c6f9508"},(0,n.kt)("inlineCode",{parentName:"a"},"30690ae"))),(0,n.kt)("li",{parentName:"ul"},"refactor(style-menu): add text-color to paragraphs styles #291 from eea/stylemenu-theme-colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2d783075b8089184e50b1763226af0d60ed11786"},(0,n.kt)("inlineCode",{parentName:"a"},"2d78307"))),(0,n.kt)("li",{parentName:"ul"},"change(header): Small fix in search popup #292 from eea/search-popup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/86c130539455b9a00b4b088b1871a98b9756df79"},(0,n.kt)("inlineCode",{parentName:"a"},"86c1305"))),(0,n.kt)("li",{parentName:"ul"},"refactor(style-menu): add text-color to paragraphs styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3446bc2704603bbfead7ff6c72d4e3a1ce81c7d4"},(0,n.kt)("inlineCode",{parentName:"a"},"3446bc2"))),(0,n.kt)("li",{parentName:"ul"},"change(color): darkCyan is now replaced everywhere by the new green ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef3791de6e2ea23487791c717eefc575e21fd283"},(0,n.kt)("inlineCode",{parentName:"a"},"ef3791d"))),(0,n.kt)("li",{parentName:"ul"},"change(header): Small fix in search popup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3d622ea99df5a1f1088f70998e38fd5bf43997cf"},(0,n.kt)("inlineCode",{parentName:"a"},"3d622ea")))),(0,n.kt)("h4",{id:"\ufe0f-others-10"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Release alpha 15 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3b72b29aaf9b3e1bfb7015808aafbd73a7167895"},(0,n.kt)("inlineCode",{parentName:"a"},"3b72b29")))),(0,n.kt)("h3",{id:"100-alpha14---2023-01-30"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.13.1...1.0.0-alpha.14"},"1.0.0-alpha.14")," - 2023-01-30"),(0,n.kt)("h4",{id:"-enhancements-12"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(mobile menu): integrate a-z topic with menu rendering logic #287 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/05d4c04603e6572cd6f9b255faa03c4636d8efdb"},(0,n.kt)("inlineCode",{parentName:"a"},"05d4c04"))),(0,n.kt)("li",{parentName:"ul"},"change(mobile menu): integrate a-z topic with menu rendering logic ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/246d3d839b773e2f6e1fff7fed5f9aa7a4968daa"},(0,n.kt)("inlineCode",{parentName:"a"},"246d3d8")))),(0,n.kt)("h4",{id:"\ufe0f-others-11"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"bump release to alpha 14 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/92f01975a809553ed122824c8407c74da9132c23"},(0,n.kt)("inlineCode",{parentName:"a"},"92f0197"))),(0,n.kt)("li",{parentName:"ul"},"link fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e1c12a132a1a99d773af359ebce071fb37c7e661"},(0,n.kt)("inlineCode",{parentName:"a"},"e1c12a1")))),(0,n.kt)("h3",{id:"100-alpha131---2023-01-30"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.13...1.0.0-alpha.13.1"},"1.0.0-alpha.13.1")," - 2023-01-30"),(0,n.kt)("h4",{id:"-enhancements-13"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(mobile menu): hardcode a-z topics to '/en/topics-in-depth' #286 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6436224e1922fb5d4b4053c874cebe5c57b2a6b9"},(0,n.kt)("inlineCode",{parentName:"a"},"6436224"))),(0,n.kt)("li",{parentName:"ul"},"change(mobile menu): hardcode a-z topics to '/en/topics-in-depth' ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5235b52047a80a8b626aa5ef3ef304c4d9a82003"},(0,n.kt)("inlineCode",{parentName:"a"},"5235b52")))),(0,n.kt)("h4",{id:"\ufe0f-others-12"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change release to 13.1 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70aa5648e7d9e14796445323b6ebaf7733cc7fd8"},(0,n.kt)("inlineCode",{parentName:"a"},"70aa564")))),(0,n.kt)("h3",{id:"100-alpha13---2023-01-27"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.12...1.0.0-alpha.13"},"1.0.0-alpha.13")," - 2023-01-27"),(0,n.kt)("h4",{id:"-new-features-8"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(utilities): added has--bg--top center and bottom utility classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/051e6d7c33aca7947802ddaa9fe68ac41ed7fe11"},(0,n.kt)("inlineCode",{parentName:"a"},"051e6d7")))),(0,n.kt)("h4",{id:"-bug-fixes-10"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(header): update green color used in page header #284 from eea/fix-banner-background ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/29d54db06487d18a367202725e525ac26e5b7c58"},(0,n.kt)("inlineCode",{parentName:"a"},"29d54db")))),(0,n.kt)("h4",{id:"-enhancements-14"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(site): added fixes from customVolto.css to design package ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51ba9b5df0186bdf075d803dea6032bac52e540f"},(0,n.kt)("inlineCode",{parentName:"a"},"51ba9b5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner): update banner background green color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fd4a552d9ff7a2973ebd6d18b6fbfd9bba5d98c6"},(0,n.kt)("inlineCode",{parentName:"a"},"fd4a552"))),(0,n.kt)("li",{parentName:"ul"},"change(mobile menu): changed link for a-z topics to point to in depth ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/721bf237d23d2a8e47fc2132912646c4ce182c9d"},(0,n.kt)("inlineCode",{parentName:"a"},"721bf23")))),(0,n.kt)("h4",{id:"\ufe0f-others-13"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"1.0.0-alpha.13 release #285 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c96694005e2d4160876f6a900db13940d42266d5"},(0,n.kt)("inlineCode",{parentName:"a"},"c966940"))),(0,n.kt)("li",{parentName:"ul"},"bump next version to alpha 13 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/897e9069062282f1b5cd8d86a02b8e54c40a4690"},(0,n.kt)("inlineCode",{parentName:"a"},"897e906"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5780dc7abeb24da5e77b043a34593ff7a44f350d"},(0,n.kt)("inlineCode",{parentName:"a"},"5780dc7")))),(0,n.kt)("h3",{id:"100-alpha12---2023-01-24"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.11...1.0.0-alpha.12"},"1.0.0-alpha.12")," - 2023-01-24"),(0,n.kt)("h4",{id:"-new-features-9"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(card, colors): visited color change and title on image option for cards #283 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e638ee6b77885fd5989179aa9e6532e46e475247"},(0,n.kt)("inlineCode",{parentName:"a"},"e638ee6")))),(0,n.kt)("h4",{id:"-bug-fixes-11"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(mobile menu): sub links when an accordion section is active ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bb3be81416340ad0e3e992cd4e75642fc50f8ad3"},(0,n.kt)("inlineCode",{parentName:"a"},"bb3be81")))),(0,n.kt)("h4",{id:"-enhancements-15"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(Card): create card template for stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2fa77f3f93935dd01cd5e3d77437fe8dc03721da"},(0,n.kt)("inlineCode",{parentName:"a"},"2fa77f3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Card): add image with title css ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e6e63e2362a27b0bbf4b8dd968f11a0dc87da2a"},(0,n.kt)("inlineCode",{parentName:"a"},"6e6e63e"))),(0,n.kt)("li",{parentName:"ul"},"change(card): implement title on image within image section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff6cc600978355e04dde704d014d2cbe27df1298"},(0,n.kt)("inlineCode",{parentName:"a"},"ff6cc60"))),(0,n.kt)("li",{parentName:"ul"},"change(card): added image card section, tweaked mobile heading size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0f879e15d22ae066f020d8188ef3e355c27d016c"},(0,n.kt)("inlineCode",{parentName:"a"},"0f879e1"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): moved image gradient overlay to a mixin.less file ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8b4928a87bfe5fae6f64c93d7c8f1f7a3045816c"},(0,n.kt)("inlineCode",{parentName:"a"},"8b4928a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): Update titles value and size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c35ad5c76caa00556f8a501d2e7d516464790dc4"},(0,n.kt)("inlineCode",{parentName:"a"},"c35ad5c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): applied image naming convention ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee7bc290084e198f9f94e40fbf44c6d9cb19d1ba"},(0,n.kt)("inlineCode",{parentName:"a"},"ee7bc29"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): added image for all storybook card examples ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3f194130bb6fb7b9ab04a7e1305f26fa135c23d2"},(0,n.kt)("inlineCode",{parentName:"a"},"3f19413"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): restored label value of metadata field when type isn't date ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/571a4f27fe73d0465b6482f70dd70b2dc47dffe8"},(0,n.kt)("inlineCode",{parentName:"a"},"571a4f2"))),(0,n.kt)("li",{parentName:"ul"},"change(card): title padding value for a more balance look ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/74b65563d973eb9c6afc534935e253f2705fe9ee"},(0,n.kt)("inlineCode",{parentName:"a"},"74b6556"))),(0,n.kt)("li",{parentName:"ul"},"change(card): removed uppercase transform from title on image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2948ae16f748911929910ac53d1e0acf96952317"},(0,n.kt)("inlineCode",{parentName:"a"},"2948ae1"))),(0,n.kt)("li",{parentName:"ul"},"change(colors, Docusaurus): Visited link colour change and thematic logo replacement #278 from eea/refactor-visited-link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f82d9781cc3b34443f181565c2ec1892d534f8e2"},(0,n.kt)("inlineCode",{parentName:"a"},"f82d978"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): visited link variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b209b2f7703641926c6d4b1f7162eef39b2a1ad8"},(0,n.kt)("inlineCode",{parentName:"a"},"b209b2f")))),(0,n.kt)("h4",{id:"-documentation-changes-4"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(colors): visited link update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ece77fec130de1d9d8014d40e7da975bf57061ee"},(0,n.kt)("inlineCode",{parentName:"a"},"ece77fe")))),(0,n.kt)("h4",{id:"\ufe0f-others-14"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix typos in footer gradient variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/40066405d97af838e986370101371a8162029e02"},(0,n.kt)("inlineCode",{parentName:"a"},"4006640"))),(0,n.kt)("li",{parentName:"ul"},"change version to alpha 12 instead of 1 final ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32250253f5d7fe9f01126136ad86b8a4f2f5c700"},(0,n.kt)("inlineCode",{parentName:"a"},"3225025"))),(0,n.kt)("li",{parentName:"ul"},"feature(card): new card variation with title on top of image #267 from eea/title-on-image-card ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2c0ca95700bb162bc1273c83f2fc4f591de8dcf0"},(0,n.kt)("inlineCode",{parentName:"a"},"2c0ca95"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/477d997513ef5152ab98e080ad07f927b5869705"},(0,n.kt)("inlineCode",{parentName:"a"},"477d997")))),(0,n.kt)("h3",{id:"100-alpha11---2023-01-17"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.10...1.0.0-alpha.11"},"1.0.0-alpha.11")," - 2023-01-17"),(0,n.kt)("h4",{id:"-new-features-10"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(docusaurus): Header and footer elements section #277 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0df271c4c79bd8a24750cfe44d69f32cb04a1b63"},(0,n.kt)("inlineCode",{parentName:"a"},"0df271c")))),(0,n.kt)("h4",{id:"-bug-fixes-12"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(banner): storybook date input and simplified gradient opacity ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7674d767bb770342828d6bea6953ce45b823943f"},(0,n.kt)("inlineCode",{parentName:"a"},"7674d76"))),(0,n.kt)("li",{parentName:"ul"},"fix(banner): re-added title class on banner title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d157994934c3da9af4e3dd37844f910bddf8377"},(0,n.kt)("inlineCode",{parentName:"a"},"6d15799")))),(0,n.kt)("h4",{id:"-enhancements-16"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(banner): sync storybook and Volto component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c9087cc8edc3fb27e0b96b509354861ec306f22a"},(0,n.kt)("inlineCode",{parentName:"a"},"c9087cc"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): removed margin from title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/17e592c4f3fd16a78069af50574e2ac608166a0f"},(0,n.kt)("inlineCode",{parentName:"a"},"17e592c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): sync storybook and Volto component #275 from eea/sync-page-banner-theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4331fb4a6d5744e7d7d6a001bca91265a22587fd"},(0,n.kt)("inlineCode",{parentName:"a"},"4331fb4")))),(0,n.kt)("h4",{id:"-documentation-changes-5"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(footer): updates on header elements ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b41c550475dc5a2eefcad5d75439601d079613e2"},(0,n.kt)("inlineCode",{parentName:"a"},"b41c550"))),(0,n.kt)("li",{parentName:"ul"},"docs(footer): add elements anatomy ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d9f0872f93a6f7572f798b2c001d3af00eb282e3"},(0,n.kt)("inlineCode",{parentName:"a"},"d9f0872")))),(0,n.kt)("h4",{id:"\ufe0f-others-15"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"add(banner): banner title css ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d0032474d2b57eb63a4b50a882ced2ee743a48e6"},(0,n.kt)("inlineCode",{parentName:"a"},"d003247"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-alpha.11 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/07e8f858b0bdeaa6a348c0bfc2b785f26017e1ea"},(0,n.kt)("inlineCode",{parentName:"a"},"07e8f85"))),(0,n.kt)("li",{parentName:"ul"},"renamed image elements as requested in review ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8541fb6739d3c935ed8d44a220114546b2aef682"},(0,n.kt)("inlineCode",{parentName:"a"},"8541fb6"))),(0,n.kt)("li",{parentName:"ul"},"remove(banner-gradiant): image gradiant in favour of text ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1b58520490be5e17ea4ce6fc98329d467dad3960"},(0,n.kt)("inlineCode",{parentName:"a"},"1b58520"))),(0,n.kt)("li",{parentName:"ul"},"update(gradient): use 8deg angle ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6fd597d8d7a83fdf8a27939e4c69dfc3975b6a81"},(0,n.kt)("inlineCode",{parentName:"a"},"6fd597d"))),(0,n.kt)("li",{parentName:"ul"},"update(gradiant): make it 0deg ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1bb2696375eef233b509e27d9d464b8343421430"},(0,n.kt)("inlineCode",{parentName:"a"},"1bb2696"))),(0,n.kt)("li",{parentName:"ul"},"remove(comment) referencing old verison of title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4226d42e34b119e057cf4e9878b6a99172cb976a"},(0,n.kt)("inlineCode",{parentName:"a"},"4226d42")))),(0,n.kt)("h3",{id:"100-alpha10---2023-01-13"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.9...1.0.0-alpha.10"},"1.0.0-alpha.10")," - 2023-01-13"),(0,n.kt)("h4",{id:"-bug-fixes-13"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(subsite): Fix logo size on subsite section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/65fff54503a9ace573dc7198f6bedb372e65d211"},(0,n.kt)("inlineCode",{parentName:"a"},"65fff54"))),(0,n.kt)("li",{parentName:"ul"},"fix(subsite): Fix logo size on subsite section #279 from eea/subsite-fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f6cf94811dbebc2081c0ca812570a72dd977b06"},(0,n.kt)("inlineCode",{parentName:"a"},"8f6cf94"))),(0,n.kt)("li",{parentName:"ul"},"fix(mega-menu): show sub grid only if there are children ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ddfbd82aab2be723ae230d703f72a8cd489f17d8"},(0,n.kt)("inlineCode",{parentName:"a"},"ddfbd82")))),(0,n.kt)("h4",{id:"\ufe0f-others-16"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Add variable definitions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/293fe65e2f24e6290e1286229169a77f9be4750e"},(0,n.kt)("inlineCode",{parentName:"a"},"293fe65"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-alpha.10 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7014d080ce114bd0bc039abeecbd7229333b0971"},(0,n.kt)("inlineCode",{parentName:"a"},"7014d08"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using advisory-board-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef58a6f5ad8deea26b1395a86778fe1159b7617b"},(0,n.kt)("inlineCode",{parentName:"a"},"ef58a6f"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/31d461662b9184a7bbe190e86f3c47fab39229fe"},(0,n.kt)("inlineCode",{parentName:"a"},"31d4616")))),(0,n.kt)("h3",{id:"100-alpha9---2022-12-28"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.8...1.0.0-alpha.9"},"1.0.0-alpha.9")," - 2022-12-28"),(0,n.kt)("h4",{id:"-enhancements-17"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(contextnav): Default title is text, custom title is link #273 from eea/context-nav-link-title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef7bdb7c40cd12c3d7e059074aa5797b8cb3378c"},(0,n.kt)("inlineCode",{parentName:"a"},"ef7bdb7")))),(0,n.kt)("h4",{id:"\ufe0f-others-17"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Show document and folder content-type in Navigation listing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8471db3b3d555e8602f1076d0f96a2ba38a12247"},(0,n.kt)("inlineCode",{parentName:"a"},"8471db3"))),(0,n.kt)("li",{parentName:"ul"},"Default title is text, custom title is link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1ae95b05b67423121566448c6b0cededca4b2b1d"},(0,n.kt)("inlineCode",{parentName:"a"},"1ae95b0"))),(0,n.kt)("li",{parentName:"ul"},"Context nav title link to # ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a27a6b78bcda0eb6037f73f1d36b06e00e3ffc52"},(0,n.kt)("inlineCode",{parentName:"a"},"a27a6b7")))),(0,n.kt)("h3",{id:"100-alpha8---2022-12-23"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.7...1.0.0-alpha.8"},"1.0.0-alpha.8")," - 2022-12-23"),(0,n.kt)("h4",{id:"-new-features-11"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(copyright): Align copyright options with Volto integration - refs #158210 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6bac7f6a9ad969af4be1c8c08a18a1144d5bad63"},(0,n.kt)("inlineCode",{parentName:"a"},"6bac7f6")))),(0,n.kt)("h4",{id:"-enhancements-18"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(logo): import theme site logos to the story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2f29136ca457f2419ca25a5292a036b2cd0fc402"},(0,n.kt)("inlineCode",{parentName:"a"},"2f29136"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logo): update logo and mega search gradient ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e11f44d59334fc02e3833a133b20e7b2240a2022"},(0,n.kt)("inlineCode",{parentName:"a"},"e11f44d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logos): convert logo names to lowercase ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/07b822864490b4cc63bef94f3306466ba5933e16"},(0,n.kt)("inlineCode",{parentName:"a"},"07b8228"))),(0,n.kt)("li",{parentName:"ul"},"change(item): use default logic of setting align class on content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6b5b47c10ce5a6d3710bedd492aa3d362d62d225"},(0,n.kt)("inlineCode",{parentName:"a"},"6b5b47c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logo): update logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/170efe5bfc7fd4988f4a4d4aac18ace32c360cd6"},(0,n.kt)("inlineCode",{parentName:"a"},"170efe5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logos): convert storybook logo names to lowercase ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4b24ec8796f8fffd87158a55f4ac19624ebe04c"},(0,n.kt)("inlineCode",{parentName:"a"},"c4b24ec"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logo): add eea roboto font logo variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/de1224a97568c0b48b509c65170a6080d8a058d4"},(0,n.kt)("inlineCode",{parentName:"a"},"de1224a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logo): add container and segment to logo story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/61eff16fcd080194fe1187656d67ef73a7dd4d6c"},(0,n.kt)("inlineCode",{parentName:"a"},"61eff16"))),(0,n.kt)("li",{parentName:"ul"},"change(item): removed requirement for aligned classes to be on content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/30c0d5d2de7ac05172cfb726b60a8bd763de7b31"},(0,n.kt)("inlineCode",{parentName:"a"},"30c0d5d"))),(0,n.kt)("li",{parentName:"ul"},"change(logos): cleanup eea logo reference to only eea-logo and eea-logo-white.svg ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2796e054a21a9025036c8b2882afe23a6984cd37"},(0,n.kt)("inlineCode",{parentName:"a"},"2796e05")))),(0,n.kt)("h4",{id:"-internal-changes-7"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(npmignore): Reduce npmjs package size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/164c8a5ad0f7241eb8e30c53eccfdff9cec1fb93"},(0,n.kt)("inlineCode",{parentName:"a"},"164c8a5"))),(0,n.kt)("li",{parentName:"ul"},"chore(npmignore): Reduce npmjs package size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ade9d5ba3411efc47cdd3b461fd60b2b7389f9be"},(0,n.kt)("inlineCode",{parentName:"a"},"ade9d5b"))),(0,n.kt)("li",{parentName:"ul"},"chore(docs): renamed logo mdx to md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/52e9d46bb2decabdc935eeee84dacc3e063e3616"},(0,n.kt)("inlineCode",{parentName:"a"},"52e9d46")))),(0,n.kt)("h4",{id:"-documentation-changes-6"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(logos): svgs without classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/28a58336ac57deb3eec7287b6fbf5cd58ada8a7e"},(0,n.kt)("inlineCode",{parentName:"a"},"28a5833"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): add dark mode logos ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ccc1609643cff5f851942ab95198d44252ddb22e"},(0,n.kt)("inlineCode",{parentName:"a"},"ccc1609"))),(0,n.kt)("li",{parentName:"ul"},"docs(logo): update eea logos and add logo wrapper ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91cdd6636dfb102e4712177ad5fa7e952eb6ea45"},(0,n.kt)("inlineCode",{parentName:"a"},"91cdd66"))),(0,n.kt)("li",{parentName:"ul"},"docs(logo): update logos on docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/760e1012892ab28b25e8d9b0de50cfa0ba07addf"},(0,n.kt)("inlineCode",{parentName:"a"},"760e101"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): updated svgs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dc224e1dbcf46a29b0639afde694d44221affe27"},(0,n.kt)("inlineCode",{parentName:"a"},"dc224e1"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): add thematic logos ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5a21a3076e506e6bd7f82fa97697f81825e87255"},(0,n.kt)("inlineCode",{parentName:"a"},"5a21a30"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): add zipped svgs for download ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5855bf83b471a9849ee71370d7eee4f6a1d12a44"},(0,n.kt)("inlineCode",{parentName:"a"},"5855bf8"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): wisef logo update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f90b59d03c1c4eaa760dd981e082f237c09e96f"},(0,n.kt)("inlineCode",{parentName:"a"},"8f90b59"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): move to static, add download ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8c1fd5f9a64bd8fb976687fe5ed96bc515b95393"},(0,n.kt)("inlineCode",{parentName:"a"},"8c1fd5f"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): improve eea logo visibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/82188abb99aa080d7bea15975497e03c653d311c"},(0,n.kt)("inlineCode",{parentName:"a"},"82188ab"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): change eea logo to svg ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f57b846ca9d635f5af4d1adeee280a5adcaf7b5f"},(0,n.kt)("inlineCode",{parentName:"a"},"f57b846")))),(0,n.kt)("h4",{id:"\ufe0f-others-18"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"logo update or docusaurus thematic logo listing #274 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dde90beb68ac129e476ece22e7ced4640786f094"},(0,n.kt)("inlineCode",{parentName:"a"},"dde90be"))),(0,n.kt)("li",{parentName:"ul"},"(feat): Add ability to disable the language select from website top menu - refs #158616 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/411c8e4afaf0b2b9edfdeeecdca22aa4cc41f329"},(0,n.kt)("inlineCode",{parentName:"a"},"411c8e4"))),(0,n.kt)("li",{parentName:"ul"},"Proof reading page header section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/230239e1b22734fb8606656985bc5e513731e244"},(0,n.kt)("inlineCode",{parentName:"a"},"230239e"))),(0,n.kt)("li",{parentName:"ul"},"bump package version ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4628bed134abc76e38a243d4e98143e19cef989"},(0,n.kt)("inlineCode",{parentName:"a"},"b4628be"))),(0,n.kt)("li",{parentName:"ul"},"feature(docusaurus, storybook): logos selection for sites plus inverted options #253 from eea/doc-logo-page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dbfc90d035dc40e9d4054347f00fde4de486d63d"},(0,n.kt)("inlineCode",{parentName:"a"},"dbfc90d"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using advisory-board-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4769e987d525f5dcafac8e6cf8a89fd8111667d"},(0,n.kt)("inlineCode",{parentName:"a"},"c4769e9"))),(0,n.kt)("li",{parentName:"ul"},"test(Jenkins): Run tests and cypress with latest canary @plone/volto ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/92feea09796c9ef0530f65fa1d34139905133215"},(0,n.kt)("inlineCode",{parentName:"a"},"92feea0")))),(0,n.kt)("h3",{id:"100-alpha7---2022-12-16"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.6...1.0.0-alpha.7"},"1.0.0-alpha.7")," - 2022-12-16"),(0,n.kt)("h4",{id:"-new-features-12"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(item): normalized size for image or icon items #258 from eea/refactor-items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/945170f1503be68aa3fc1bd950a97eeebfd81037"},(0,n.kt)("inlineCode",{parentName:"a"},"945170f")))),(0,n.kt)("h4",{id:"-bug-fixes-14"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(card): rounded after removal of has--rounded--true style class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4727afdecf3d25e3e5bc98d472b976d60154183"},(0,n.kt)("inlineCode",{parentName:"a"},"d4727af"))),(0,n.kt)("li",{parentName:"ul"},"fix(item): removed margin set for description which pushed the text from icon ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d9d40310fcfb1bd214bd901b79dcbac41e9a8518"},(0,n.kt)("inlineCode",{parentName:"a"},"d9d4031"))),(0,n.kt)("li",{parentName:"ul"},"fix(project): Proper paths if volto-eea-design-system package is not installed, but in development #270 from eea/correct_paths ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0f8ee8d770f1b26d4315be8f615d58a61acbafc8"},(0,n.kt)("inlineCode",{parentName:"a"},"0f8ee8d")))),(0,n.kt)("h4",{id:"-enhancements-19"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(item): update icon variations and paddings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6a407b3e7f743eb7b73247bcc5d489685d567bc6"},(0,n.kt)("inlineCode",{parentName:"a"},"6a407b3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): update spacing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2fd91c4aa1a76dd2f7099d3f24f94067e95e06a1"},(0,n.kt)("inlineCode",{parentName:"a"},"2fd91c4"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): initial values for new sizes & add description class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3546296f0cacb96411c8c67b98e9763e2b843b05"},(0,n.kt)("inlineCode",{parentName:"a"},"3546296"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): add icon and more size options ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1120bb62d9ab908c5c97a4871a66e3c08c5c7ece"},(0,n.kt)("inlineCode",{parentName:"a"},"1120bb6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): update image and icon sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8025735121aaa0024a5783afbde0f6be3715618"},(0,n.kt)("inlineCode",{parentName:"a"},"b802573"))),(0,n.kt)("li",{parentName:"ul"},"change(item): set same height as width on item images ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/69cbd23ca53dd68ae9f7c00a69ed2d8820746305"},(0,n.kt)("inlineCode",{parentName:"a"},"69cbd23"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): update item part 2 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9812ae2e41ac86cfd4c56e13af8af570b752966f"},(0,n.kt)("inlineCode",{parentName:"a"},"9812ae2"))),(0,n.kt)("li",{parentName:"ul"},"change(item): rename large to big class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24ff1275b9a0556b85ab86757bc0c84f50357e7d"},(0,n.kt)("inlineCode",{parentName:"a"},"24ff127"))),(0,n.kt)("li",{parentName:"ul"},"change(item): added tiny size that outputs 24px icon sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ea96363a957f9033cb5bfe2d7fd311e92377493"},(0,n.kt)("inlineCode",{parentName:"a"},"2ea9636"))),(0,n.kt)("li",{parentName:"ul"},"change(image): added preview image size default to 400px ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a0aa867e932d1b3c0bf449553726d6feb645853e"},(0,n.kt)("inlineCode",{parentName:"a"},"a0aa867"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): update operator for condition controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/149ccb2f1e498c27e5550214cdee25eb808ab27e"},(0,n.kt)("inlineCode",{parentName:"a"},"149ccb2")))),(0,n.kt)("h4",{id:"\ufe0f-others-19"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Proper paths if the package is not installed, but in development ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7a2655f7cf9d3c687f172eefcf2b4cff4b12f832"},(0,n.kt)("inlineCode",{parentName:"a"},"7a2655f"))),(0,n.kt)("li",{parentName:"ul"},"Update .project.eslintrc.js ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a2fd3f23473325976c2b146e066eeb538d140dce"},(0,n.kt)("inlineCode",{parentName:"a"},"a2fd3f2"))),(0,n.kt)("li",{parentName:"ul"},"added back descriptionDistance variable until package release ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3af811a8d86a132e16de118697ba5a4302a8a4da"},(0,n.kt)("inlineCode",{parentName:"a"},"3af811a"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-alpha.7 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e66bcc296b389bc55073e7f99681534977dce3a"},(0,n.kt)("inlineCode",{parentName:"a"},"7e66bcc"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using cca-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce47e9b163bcb4eda988e3a87718b54ffbd3f99f"},(0,n.kt)("inlineCode",{parentName:"a"},"ce47e9b"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb531c933c907bdbb88c9de0f1df2eb7ce899a4c"},(0,n.kt)("inlineCode",{parentName:"a"},"cb531c9")))),(0,n.kt)("h3",{id:"100-alpha6---2022-12-07"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.5...1.0.0-alpha.6"},"1.0.0-alpha.6")," - 2022-12-07"),(0,n.kt)("h4",{id:"-new-features-13"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(copyright): create copyright component and import it in banner ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8fcde9df2915585e2336024436cef76642820d75"},(0,n.kt)("inlineCode",{parentName:"a"},"8fcde9d"))),(0,n.kt)("li",{parentName:"ul"},"feat(Header): add hideSearch prop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/13ddfe59a6bd7fe2050b70ac4524a6f6c5c169ea"},(0,n.kt)("inlineCode",{parentName:"a"},"13ddfe5"))),(0,n.kt)("li",{parentName:"ul"},"feat(Docusaurus): Image copyright information #257 from eea/image-copyright-info ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/21195153240da052acb7171f7904449ed7854cb3"},(0,n.kt)("inlineCode",{parentName:"a"},"2119515")))),(0,n.kt)("h4",{id:"-bug-fixes-15"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(tags): content gap when using tags-content wrapper ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4eb9b89d4ea09f936b7fcdc22a84105fd8639af"},(0,n.kt)("inlineCode",{parentName:"a"},"c4eb9b8")))),(0,n.kt)("h4",{id:"-enhancements-20"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(hero): add copyright component to hero ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0fa88fad3e7b48789dc6d0462b9f78dd359b8949"},(0,n.kt)("inlineCode",{parentName:"a"},"0fa88fa"))),(0,n.kt)("li",{parentName:"ul"},"change(copyright): implementation to add classes on content sections ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e10bde674f2b1f722ec6c70734e4a72c018f4afe"},(0,n.kt)("inlineCode",{parentName:"a"},"e10bde6"))),(0,n.kt)("li",{parentName:"ul"},"change(copyright): removed color variant ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/747b8a27155569247d4975837587e3320327fce9"},(0,n.kt)("inlineCode",{parentName:"a"},"747b8a2"))),(0,n.kt)("li",{parentName:"ul"},"change(copyright): removed copyrightVariant from Banner and Hero stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac62e079d4eafb818f9cae25880a04d9e069d107"},(0,n.kt)("inlineCode",{parentName:"a"},"ac62e07"))),(0,n.kt)("li",{parentName:"ul"},"change(tagList): modified implementation to align to volto-tags-block ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7a57a3d4bf7ede4b5ab5f3ef045d664aaaf67f2c"},(0,n.kt)("inlineCode",{parentName:"a"},"7a57a3d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(copyright): remove data section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/52cb09dc363bb0a2e363ec86dcefb4c57e07a14d"},(0,n.kt)("inlineCode",{parentName:"a"},"52cb09d"))),(0,n.kt)("li",{parentName:"ul"},"change(copyright): line height to match page header implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a56254e7588cfc6aca999f550084d79dca6e9a6c"},(0,n.kt)("inlineCode",{parentName:"a"},"a56254e"))),(0,n.kt)("li",{parentName:"ul"},"change(copyright): now uses text color css variable with fallback to white ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee7268ba359f079dfce45fd0fe91f75ae5c37e94"},(0,n.kt)("inlineCode",{parentName:"a"},"ee7268b")))),(0,n.kt)("h4",{id:"-documentation-changes-7"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(copyright): copyright documentation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a90ed766e60b5eb5b027beb36d2b1967d2c41fa3"},(0,n.kt)("inlineCode",{parentName:"a"},"a90ed76")))),(0,n.kt)("h4",{id:"\ufe0f-others-20"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Update usage_markdown.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f76d4a242f795451d64ef2d192d0006a0ed5eac1"},(0,n.kt)("inlineCode",{parentName:"a"},"f76d4a2"))),(0,n.kt)("li",{parentName:"ul"},"grammar fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb2a5a5fd9dfc01eccc179721b06988742f5b2e2"},(0,n.kt)("inlineCode",{parentName:"a"},"cb2a5a5"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-alpha.6 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6ca32f03c1860781d3c1c4ff9558713ad8acac95"},(0,n.kt)("inlineCode",{parentName:"a"},"6ca32f0"))),(0,n.kt)("li",{parentName:"ul"},"feature(copyright): image information #250 from eea/feature-copyright ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a8618c7f0230a19b6c973aa2c9646463de9eeffb"},(0,n.kt)("inlineCode",{parentName:"a"},"a8618c7"))),(0,n.kt)("li",{parentName:"ul"},"lint fix by introducing local variable tagsGap ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7b6c0ae2ebfed06221700faf9a0d0c2bdeb60d99"},(0,n.kt)("inlineCode",{parentName:"a"},"7b6c0ae"))),(0,n.kt)("li",{parentName:"ul"},"Update 3-images.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1b0ef033f9c8a36aaa739f268263f24a6d0fb473"},(0,n.kt)("inlineCode",{parentName:"a"},"1b0ef03")))),(0,n.kt)("h3",{id:"100-alpha5---2022-11-29"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.4...1.0.0-alpha.5"},"1.0.0-alpha.5")," - 2022-11-29"),(0,n.kt)("h4",{id:"-new-features-14"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(Iconography): import and showcase remix icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/777112f7e77ce8c74c3fd4384bff6ec9694aba04"},(0,n.kt)("inlineCode",{parentName:"a"},"777112f")))),(0,n.kt)("h4",{id:"-bug-fixes-16"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(docusaurus): right bar overflow fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/197c763624f70556c62379bc0751763725d0fed3"},(0,n.kt)("inlineCode",{parentName:"a"},"197c763"))),(0,n.kt)("li",{parentName:"ul"},"fix(lists): bullet position by using padding instead of margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0ecae2e7fe61b98d8795f876a525fbbc873bf799"},(0,n.kt)("inlineCode",{parentName:"a"},"0ecae2e"))),(0,n.kt)("li",{parentName:"ul"},"fix(label): color for yellow variant as white isn't accessible on yellow color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91d8880a829d2728c49a1953f6d2d8c2c812990c"},(0,n.kt)("inlineCode",{parentName:"a"},"91d8880"))),(0,n.kt)("li",{parentName:"ul"},"fix(contentBox): avoid text decoration for header-link added on cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ccb592db6f465cec59124b94fb6918b513bb761"},(0,n.kt)("inlineCode",{parentName:"a"},"3ccb592"))),(0,n.kt)("li",{parentName:"ul"},"fix(label): margin value for ribbon image left and right margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f8e1129734709d6034539a6522105af9d43fef20"},(0,n.kt)("inlineCode",{parentName:"a"},"f8e1129")))),(0,n.kt)("h4",{id:"-enhancements-21"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): eea color palette in separate file ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6c855df9c2238f8d21860ade4578aa969b68448e"},(0,n.kt)("inlineCode",{parentName:"a"},"6c855df"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): classes for color boxes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/80219d52bc63842d8e6382dbbe7d43cdc8a29b9c"},(0,n.kt)("inlineCode",{parentName:"a"},"80219d5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): move supplementary, state and link colors to partials ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2776be32615d7a6bdd8561a523fb9cfb1a85e38b"},(0,n.kt)("inlineCode",{parentName:"a"},"2776be3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): fix side menu / moved more content in palette partial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f5b70775471369ca8f3193784b9bc66caa8fb76f"},(0,n.kt)("inlineCode",{parentName:"a"},"f5b7077"))),(0,n.kt)("li",{parentName:"ul"},"change(tag): set gap on tags element for margin between tag elements ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/726bc6da821a366a5afa03659e614cc73ed02c0b"},(0,n.kt)("inlineCode",{parentName:"a"},"726bc6d")))),(0,n.kt)("h4",{id:"-internal-changes-8"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(colours): fix wrong class name ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51ad0a8232f7f35cae05f5861d7822db852b3f8d"},(0,n.kt)("inlineCode",{parentName:"a"},"51ad0a8")))),(0,n.kt)("h4",{id:"-documentation-changes-8"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): Iconography updates, thematic platforms ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2a0e596bd002290e0759d8c5e568da4d318f7d59"},(0,n.kt)("inlineCode",{parentName:"a"},"2a0e596"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): thematic pages integration ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea7a4220a93d3fd2f437b51462f7f19d99f52595"},(0,n.kt)("inlineCode",{parentName:"a"},"ea7a422"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): color updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cc13b5499a9ae13bb45925a057f8ff4d6a2e4643"},(0,n.kt)("inlineCode",{parentName:"a"},"cc13b54"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): fix swatches accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/306cb74d3e06390a9c15da9b8b29c9d3c8f0f6c5"},(0,n.kt)("inlineCode",{parentName:"a"},"306cb74"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): typography and colors fixes according to comments on PR ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ae20a7258cc88465fa0937895c2999952736f456"},(0,n.kt)("inlineCode",{parentName:"a"},"ae20a72"))),(0,n.kt)("li",{parentName:"ul"},"docs(colours): adjust logos heights ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/854d4fb761be7307e83e5dd2eb0fe5a0117727c5"},(0,n.kt)("inlineCode",{parentName:"a"},"854d4fb"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): merge designer and dev units ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/65c240eddbf20b3fc870d301b96837f49ad9caca"},(0,n.kt)("inlineCode",{parentName:"a"},"65c240e"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): readded extra font sizes, fixed fluid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4a5d892538a9713d14ac718b1bf2c771be09810"},(0,n.kt)("inlineCode",{parentName:"a"},"a4a5d89"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): changed em to percentages ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4176007ff4b421bc988b618488e0ba6b550f9fe"},(0,n.kt)("inlineCode",{parentName:"a"},"d417600"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): minors updates and instructions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/84ac8828e430b4af2b461534b4e2f81189080145"},(0,n.kt)("inlineCode",{parentName:"a"},"84ac882"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): blue-grey-6 adjustment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e7ab2d15d3a617bc5b3713897f3e3521d9e2720a"},(0,n.kt)("inlineCode",{parentName:"a"},"e7ab2d1"))),(0,n.kt)("li",{parentName:"ul"},"docs(colours): added active colour ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/574f7a95ea8a9510d03a104ad72fafafcae5d738"},(0,n.kt)("inlineCode",{parentName:"a"},"574f7a9"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): switch FISE logo to png ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/335471fd95bbd78cd7bd80b960272baa0a32e1c5"},(0,n.kt)("inlineCode",{parentName:"a"},"335471f"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): updated visited ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0248fd164cbf85168945797244977c305c67608d"},(0,n.kt)("inlineCode",{parentName:"a"},"0248fd1"))),(0,n.kt)("li",{parentName:"ul"},"docs(FISE): replaced logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f7d833127f769d79f099618b98789c6929b4ba08"},(0,n.kt)("inlineCode",{parentName:"a"},"f7d8331")))),(0,n.kt)("h4",{id:"\ufe0f-others-21"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"perf(docusaurus): added remixicon and roboto locally ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b67b1a72bc9cdc7c62a25967e81b430f8b62d558"},(0,n.kt)("inlineCode",{parentName:"a"},"b67b1a7"))),(0,n.kt)("li",{parentName:"ul"},"feature(Docusaurus): Updates on color palette information including thematic websites #231 from eea/refactor-docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ec7843dea07f626dc1c71ae1baa8bb5b0caa52f3"},(0,n.kt)("inlineCode",{parentName:"a"},"ec7843d"))),(0,n.kt)("li",{parentName:"ul"},"Upgrade Jenkinsfile storybook to yarn 3 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d20de8d6e21a14660b7b5125a80218a8a6f19e62"},(0,n.kt)("inlineCode",{parentName:"a"},"d20de8d"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/563fbc5fac0d4b0295690d0a3a4e04271753f18a"},(0,n.kt)("inlineCode",{parentName:"a"},"563fbc5")))),(0,n.kt)("h3",{id:"100-alpha4---2022-11-22"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.3...1.0.0-alpha.4"},"1.0.0-alpha.4")," - 2022-11-22"),(0,n.kt)("h4",{id:"-bug-fixes-17"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(cards-storybook): load slick carousel css for arrow and pagination styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1159b1beea0d7f7e026f1f1181fea91b7ac38ffa"},(0,n.kt)("inlineCode",{parentName:"a"},"1159b1b")))),(0,n.kt)("h4",{id:"-enhancements-22"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(cards): refactor cards theming implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4e454238d540ef306f4c1a4f8e9a94c7aa10189"},(0,n.kt)("inlineCode",{parentName:"a"},"d4e4542"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): allow rounded, inverted and theme parameter to be set by has classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4b4ad893fc5d39629b4e8d874327f31ea2e7d885"},(0,n.kt)("inlineCode",{parentName:"a"},"4b4ad89"))),(0,n.kt)("li",{parentName:"ul"},"change(card): expect has classes on the card directly ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6a9e38bcae0656685a99b47800d556813663d2ee"},(0,n.kt)("inlineCode",{parentName:"a"},"6a9e38b"))),(0,n.kt)("li",{parentName:"ul"},"change(utilities): added has text classes to the text alignment utilities ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e6974c634551fe0d19a9c9da269f5c6fbaefab7a"},(0,n.kt)("inlineCode",{parentName:"a"},"e6974c6"))),(0,n.kt)("li",{parentName:"ul"},"change(utilities): modified class name for text align using has naming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/579a0cbe0f704eb9305119fdd162f4f29c8086d5"},(0,n.kt)("inlineCode",{parentName:"a"},"579a0cb"))),(0,n.kt)("li",{parentName:"ul"},"change(theme): ensure that only direct children of container have a default top and bottom margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7f8b8dcc72827004d366e1c531311cf8734053fc"},(0,n.kt)("inlineCode",{parentName:"a"},"7f8b8dc"))),(0,n.kt)("li",{parentName:"ul"},"change(build): upgrade action to trigger workflow and wait to latest version ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c63ad3fdae7972bb2c722dea3d046861fa0ac086"},(0,n.kt)("inlineCode",{parentName:"a"},"c63ad3f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): theming implementation to allow has theming classes #265 from eea/card-refactoring ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24edc99d85c0c619fc763a8774a96f7208f529a5"},(0,n.kt)("inlineCode",{parentName:"a"},"24edc99"))),(0,n.kt)("li",{parentName:"ul"},"change(theme): add slick-carousel dependency ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2eec7d7233adf86b9c4f61670eb87d9754ff94c"},(0,n.kt)("inlineCode",{parentName:"a"},"f2eec7d")))),(0,n.kt)("h4",{id:"\ufe0f-others-22"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Update eea.github.io on all commits in develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3d0b8d745138bd2e0219560c8c895ce2c56dbf04"},(0,n.kt)("inlineCode",{parentName:"a"},"3d0b8d7"))),(0,n.kt)("li",{parentName:"ul"},"Exclude mockups from npm package ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/634af8e3ddabec36a18597d8d7638888269875fc"},(0,n.kt)("inlineCode",{parentName:"a"},"634af8e"))),(0,n.kt)("li",{parentName:"ul"},"fix rounded selector ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1fa15442f03d3f3d9ef59afa14075b061483cf3a"},(0,n.kt)("inlineCode",{parentName:"a"},"1fa1544"))),(0,n.kt)("li",{parentName:"ul"},"Trigger re-build ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3566dd2b4d2cd12496e05b792c85a78de550dd50"},(0,n.kt)("inlineCode",{parentName:"a"},"3566dd2"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea47f6f10097f23f635d98f0c5483bebf8378fc4"},(0,n.kt)("inlineCode",{parentName:"a"},"ea47f6f")))),(0,n.kt)("h3",{id:"100-alpha3---2022-11-16"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.2...1.0.0-alpha.3"},"1.0.0-alpha.3")," - 2022-11-16"),(0,n.kt)("h4",{id:"-new-features-15"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(Header): Add subsite section styling #263 from eea/subsite ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/00398b8a6c5d83241c30d0ba85d95c115edf2480"},(0,n.kt)("inlineCode",{parentName:"a"},"00398b8")))),(0,n.kt)("h4",{id:"-bug-fixes-18"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(search): position now changed by default to absolute from relative ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51b08fc217e25c1391a2bac0b42a8c3f7ae091c7"},(0,n.kt)("inlineCode",{parentName:"a"},"51b08fc"))),(0,n.kt)("li",{parentName:"ul"},"fix(megaMenu): remove paddings for buttons added by active class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ec33ebfe23a6064c88383ab465bd45edee2dba9b"},(0,n.kt)("inlineCode",{parentName:"a"},"ec33ebf")))),(0,n.kt)("h4",{id:"-enhancements-23"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(components): load overrides files for our defined semantic files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/adde7a9519f38fa779d8d038f3b6817281f0b4a2"},(0,n.kt)("inlineCode",{parentName:"a"},"adde7a9"))),(0,n.kt)("li",{parentName:"ul"},"change(container): fullwidth now take into account devices without hover ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5a35a65ce4928972027325bd01265db3f046f0e8"},(0,n.kt)("inlineCode",{parentName:"a"},"5a35a65"))),(0,n.kt)("li",{parentName:"ul"},"change(container): ensure only the top level elements behave like containers ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/98b85d1fb285919a8851454fa3007131b2a0ffc3"},(0,n.kt)("inlineCode",{parentName:"a"},"98b85d1"))),(0,n.kt)("li",{parentName:"ul"},"change(container): modified column-block grid to remove margin and padding when using full width class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/35c1cee7b3b35e7c361562ab7a430240f0117cc3"},(0,n.kt)("inlineCode",{parentName:"a"},"35c1cee"))),(0,n.kt)("li",{parentName:"ul"},"change(mega-menu): hide home link and accordion content from mobile menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1a691729b6d61c0daf46c5de035c1c55b0fda0d9"},(0,n.kt)("inlineCode",{parentName:"a"},"1a69172"))),(0,n.kt)("li",{parentName:"ul"},"change(container): width from min width 1280px to 1365px max width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/66e551e532da2cc5e9716e5179f943f172663be4"},(0,n.kt)("inlineCode",{parentName:"a"},"66e551e"))),(0,n.kt)("li",{parentName:"ul"},"change(container): removed app extras and view setting of layout sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6dc1ee602634df85140f6db75e41293b72eacf1"},(0,n.kt)("inlineCode",{parentName:"a"},"f6dc1ee"))),(0,n.kt)("li",{parentName:"ul"},"change(views): customized DefaultView to pass class into page-document area ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91123aad429f4bb086110b4997e43e9809a97581"},(0,n.kt)("inlineCode",{parentName:"a"},"91123aa"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): desktop - use buttons for menu section titles and readjust content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb9315f2b999193b7b64cec27c49fc8dda306899"},(0,n.kt)("inlineCode",{parentName:"a"},"cb9315f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): add nav_title and nav_description attributes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0d7a5686daab2ecec87d78728437d8f994606448"},(0,n.kt)("inlineCode",{parentName:"a"},"0d7a568"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): style sub-title and nav-description ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b2a48fd3588ffdc75f61f0b8d52284d13edf2d92"},(0,n.kt)("inlineCode",{parentName:"a"},"b2a48fd"))),(0,n.kt)("li",{parentName:"ul"},"refactor(sidemenu): add third level list and items & update active indication ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2d87da9fddca2b867f3d065a007c0b921587a61"},(0,n.kt)("inlineCode",{parentName:"a"},"e2d87da"))),(0,n.kt)("li",{parentName:"ul"},"change(columns): implement narrow, container and wide width classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9696b5457e50ba3186406a584da16f5248c14439"},(0,n.kt)("inlineCode",{parentName:"a"},"9696b54"))),(0,n.kt)("li",{parentName:"ul"},"change(container): story to add classes that modify the max width of the containers ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/37948f89ee797738bd8bbb0023bc5dca018d7331"},(0,n.kt)("inlineCode",{parentName:"a"},"37948f8"))),(0,n.kt)("li",{parentName:"ul"},"change(container): affect only left and right margin of containers ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/183265b7dd8d20359b6c3956ea05b62df6e70f75"},(0,n.kt)("inlineCode",{parentName:"a"},"183265b"))),(0,n.kt)("li",{parentName:"ul"},"change(containers): modified class names after layout checks ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1dc3689509001031f0afd30422f517de5316e47a"},(0,n.kt)("inlineCode",{parentName:"a"},"1dc3689"))),(0,n.kt)("li",{parentName:"ul"},"refactor(sidemenu): add is_in_path and is_current attributes for an active example ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a3fe7fd8da93db0a065d4408ce154c9d8c26b568"},(0,n.kt)("inlineCode",{parentName:"a"},"a3fe7fd"))),(0,n.kt)("li",{parentName:"ul"},"change(container): story to avoid adding containerwidth property to container div ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c13d83cdbc8741bf4075cdfcd884f39f3f71d73c"},(0,n.kt)("inlineCode",{parentName:"a"},"c13d83c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): mobile - use buttons for menu section titles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7b632fd29a8ac815d2e590509baa51f1279e659"},(0,n.kt)("inlineCode",{parentName:"a"},"a7b632f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): update padding variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5f25838ba9ec367a58c98c929921ebf09cd8ad8"},(0,n.kt)("inlineCode",{parentName:"a"},"c5f2583"))),(0,n.kt)("li",{parentName:"ul"},"change(views): moved narrow style bellow the default container width styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/72fa58dce9ea03a1e4f409a9f9aab21b01efbfc8"},(0,n.kt)("inlineCode",{parentName:"a"},"72fa58d"))),(0,n.kt)("li",{parentName:"ul"},"change(listing): removed container from default view page-document area ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/69f3d8f422e3cb95e89937929aaef48b5569bcdf"},(0,n.kt)("inlineCode",{parentName:"a"},"69f3d8f"))),(0,n.kt)("li",{parentName:"ul"},"change(views): rename classes names to width_view and added app extras layout component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/745b7720839754d1e248795cb1263f8c02f5f3c2"},(0,n.kt)("inlineCode",{parentName:"a"},"745b772"))),(0,n.kt)("li",{parentName:"ul"},"change(container): use important flag for left and right margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a49c83abe9a045d28118a680558de5416a0516a3"},(0,n.kt)("inlineCode",{parentName:"a"},"a49c83a"))),(0,n.kt)("li",{parentName:"ul"},"change(container): add variables for edit and add section of containers ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2e2c335dc82c120d15d4c536c400ae742f68fe7"},(0,n.kt)("inlineCode",{parentName:"a"},"f2e2c33"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): update sub-title paddings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/992f919bb5155c8e6fc169e43adf00dcae41f400"},(0,n.kt)("inlineCode",{parentName:"a"},"992f919"))),(0,n.kt)("li",{parentName:"ul"},"change(site): add a 1rem margin top and bottom on all styled classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dabf6c1162fe23cef61a2053eefd7e687f649a56"},(0,n.kt)("inlineCode",{parentName:"a"},"dabf6c1"))),(0,n.kt)("li",{parentName:"ul"},"change(homepage): removed hiding of staging banner from homepage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ba2cd7fc17cdf1bf58381aa58e05acad0ac77ba"},(0,n.kt)("inlineCode",{parentName:"a"},"4ba2cd7"))),(0,n.kt)("li",{parentName:"ul"},"change(container): unset values of page-document on 1200+ browser width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dd5bea37d414e2a8689eaf6cc99c7b3a3d4b0e08"},(0,n.kt)("inlineCode",{parentName:"a"},"dd5bea3"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): set children to be appended to the right of the menu title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b69c23a20ef2ded1f0382650ff8e85d1bead6941"},(0,n.kt)("inlineCode",{parentName:"a"},"b69c23a"))),(0,n.kt)("li",{parentName:"ul"},"change(theme): modified wide width to point to 1320px as it's perfectly divisible by 4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f825737d6dafd595024bb4537eab624a47a9ad0"},(0,n.kt)("inlineCode",{parentName:"a"},"8f82573"))),(0,n.kt)("li",{parentName:"ul"},"change(theme): modified wide width to point to 1368px as it's perfectly divisible by 4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2349fee36ee72783665a0b101d684389f1fdf834"},(0,n.kt)("inlineCode",{parentName:"a"},"2349fee"))),(0,n.kt)("li",{parentName:"ul"},"change(container): renamed content-text-width to container-text-width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6f788c282348292dd4b5deb47ffe83ca4573e5c8"},(0,n.kt)("inlineCode",{parentName:"a"},"6f788c2"))),(0,n.kt)("li",{parentName:"ul"},"change(listing): provide ui container fallback if no class is passed to default view ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af9e94ded1e301f4c811749badbcc1f59e6d0de5"},(0,n.kt)("inlineCode",{parentName:"a"},"af9e94d"))),(0,n.kt)("li",{parentName:"ul"},"change(narrow-view): re-added container class to page-document ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/56b44a6e09d45f96c106dc471bb2e1cde58ef10f"},(0,n.kt)("inlineCode",{parentName:"a"},"56b44a6"))),(0,n.kt)("li",{parentName:"ul"},"change(view): set container width for view-viewview class as well ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/29dc324319d6dc2450dd0e906c1b4c93fd65ed56"},(0,n.kt)("inlineCode",{parentName:"a"},"29dc324")))),(0,n.kt)("h4",{id:"-internal-changes-9"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style: load header/footer overrides ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e5b5e0fc00c61d81f45c12f119bd2f06a91b1b5c"},(0,n.kt)("inlineCode",{parentName:"a"},"e5b5e0f"))),(0,n.kt)("li",{parentName:"ul"},"style(megaMenu): restore item description color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8a19bbb4866cdeb31d87b782587c499e621055b7"},(0,n.kt)("inlineCode",{parentName:"a"},"8a19bbb"))),(0,n.kt)("li",{parentName:"ul"},"style(megaMenu): restore accordion content bottom padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8e0c5a79f06247d353511b412b0122c6f614f5ec"},(0,n.kt)("inlineCode",{parentName:"a"},"8e0c5a7")))),(0,n.kt)("h4",{id:"\ufe0f-others-23"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Add subsite styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e79c0ed7931d6287dbeb3bab1e9155b8707481a3"},(0,n.kt)("inlineCode",{parentName:"a"},"e79c0ed"))),(0,n.kt)("li",{parentName:"ul"},"WIP settings column grid width when using full size class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/affc7ac99527aa92d5a192d90dc8c9ec46a66404"},(0,n.kt)("inlineCode",{parentName:"a"},"affc7ac"))),(0,n.kt)("li",{parentName:"ul"},"code cleanup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2cdc3e590b6d36865f16890c45ce56d32963e1d0"},(0,n.kt)("inlineCode",{parentName:"a"},"2cdc3e5"))),(0,n.kt)("li",{parentName:"ul"},"fix eslint ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/30c52e4eb443555ca44c1b35df064e73d52c0a8b"},(0,n.kt)("inlineCode",{parentName:"a"},"30c52e4"))),(0,n.kt)("li",{parentName:"ul"},"test(estlint): Fix .project.eslintrc.js ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aaeaa07b27491551daba29bbfdd7cab4a54b6bec"},(0,n.kt)("inlineCode",{parentName:"a"},"aaeaa07"))),(0,n.kt)("li",{parentName:"ul"},"modified left value of full width classes with toolbars ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70d82d47fbc2c00a3a709de0d5c087c8443a1eae"},(0,n.kt)("inlineCode",{parentName:"a"},"70d82d4"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-alpha.3 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8fc86a7d0bf4ad06ab339b3066ff56ea61d48878"},(0,n.kt)("inlineCode",{parentName:"a"},"8fc86a7"))),(0,n.kt)("li",{parentName:"ul"},"feature(content): added NarrowView useful for modifying the containers from content-area ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d937df7c262e8d8cc6e78eebec736e28263fc657"},(0,n.kt)("inlineCode",{parentName:"a"},"d937df7"))),(0,n.kt)("li",{parentName:"ul"},"jslint fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/98461593605344d0b6d8cba81f91d1cafc2653cd"},(0,n.kt)("inlineCode",{parentName:"a"},"9846159"))),(0,n.kt)("li",{parentName:"ul"},"Feature(container): flexible container size #260 from eea/feature-flexible-container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f84c5b67afe9cbe01b2a44a8f92a9a554e1036a"},(0,n.kt)("inlineCode",{parentName:"a"},"8f84c5b"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using circularity-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/76a41c786995fd54afe4d1c345de939f683ffa70"},(0,n.kt)("inlineCode",{parentName:"a"},"76a41c7"))),(0,n.kt)("li",{parentName:"ul"},"fix broken variable call for contentBox.variables introduced in previous commit by mistake ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d249c1160d19bedb174a2fde3fdab48d9ce297d4"},(0,n.kt)("inlineCode",{parentName:"a"},"d249c11"))),(0,n.kt)("li",{parentName:"ul"},"clean up ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/89f3cb33d70a14806a953f0acd1807e94169ee5c"},(0,n.kt)("inlineCode",{parentName:"a"},"89f3cb3"))),(0,n.kt)("li",{parentName:"ul"},"removed console log from code ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fad86ae581dd81d0c29fc03d8528e57cadadd3fb"},(0,n.kt)("inlineCode",{parentName:"a"},"fad86ae")))),(0,n.kt)("h3",{id:"100-alpha2---2022-10-28"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.1...1.0.0-alpha.2"},"1.0.0-alpha.2")," - 2022-10-28"),(0,n.kt)("h4",{id:"-enhancements-24"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(documentation): grammarly proof-read suggestions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f609be3758673b0d479d99baee69e7238a5b7f9"},(0,n.kt)("inlineCode",{parentName:"a"},"9f609be"))),(0,n.kt)("li",{parentName:"ul"},"refactor(volto-slate): Upgrade to @plone/volto-slate - refs #153447 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/853d9d189dd17859e3999fbf53507df7083eefb4"},(0,n.kt)("inlineCode",{parentName:"a"},"853d9d1")))),(0,n.kt)("h4",{id:"-internal-changes-10"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(docs): Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e33113a0541d082d93f61c7494bcce2ac5f79a8c"},(0,n.kt)("inlineCode",{parentName:"a"},"e33113a")))),(0,n.kt)("h4",{id:"\ufe0f-others-24"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"test(cypress): Upgrade to Cypress 10 / Razzle 4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c1c1f4b280945a9f0b77eb0b59de003c1360bac9"},(0,n.kt)("inlineCode",{parentName:"a"},"c1c1f4b"))),(0,n.kt)("li",{parentName:"ul"},"more explanations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a8b22728659125ba6ea6fb41f29571a8f1b9953b"},(0,n.kt)("inlineCode",{parentName:"a"},"a8b2272"))),(0,n.kt)("li",{parentName:"ul"},"add announcement bar, showing that EEA DS is WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e14aeac02cf922493aff4f83c8d80af95cc63eb9"},(0,n.kt)("inlineCode",{parentName:"a"},"e14aeac"))),(0,n.kt)("li",{parentName:"ul"},"Update dependencies ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee30a2bad3769163d3ab4d996c0a7be8fcb4bc6e"},(0,n.kt)("inlineCode",{parentName:"a"},"ee30a2b")))),(0,n.kt)("h3",{id:"100-alpha1---2022-10-20"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.6...1.0.0-alpha.1"},"1.0.0-alpha.1")," - 2022-10-20"),(0,n.kt)("h4",{id:"-enhancements-25"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update svg and tablet contact link sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6aba061a5d37e84da706e94a2ce1140ffca81d43"},(0,n.kt)("inlineCode",{parentName:"a"},"6aba061"))),(0,n.kt)("li",{parentName:"ul"},"change(blockquote): renamed to Callout reflecting the correct naming from Storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/61a518c84f08b03d29b99aafce3d9108ae56b3a7"},(0,n.kt)("inlineCode",{parentName:"a"},"61a518c"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): Shadow removed from logo & tablet updates #252 from eea/fix-footer ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6df783d6571cb1b477202bf1d503763d98db66bf"},(0,n.kt)("inlineCode",{parentName:"a"},"6df783d"))),(0,n.kt)("li",{parentName:"ul"},"change(colors): updated theme classes for text to use css variable colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb089fd9a40b67430e0d4efaa2cb51902a46de4f"},(0,n.kt)("inlineCode",{parentName:"a"},"cb089fd")))),(0,n.kt)("h4",{id:"-internal-changes-11"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(footer): reduce social icons margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6a9cf7a6da4a46d9b85a63fbdfc8d421ae4c0d8"},(0,n.kt)("inlineCode",{parentName:"a"},"f6a9cf7")))),(0,n.kt)("h4",{id:"-documentation-changes-9"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(alpha): Update included components in 1.0 alpha version - refs #154387 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fcc5af9bb9163d158ccd6ce452d7f80ac26f7ac0"},(0,n.kt)("inlineCode",{parentName:"a"},"fcc5af9"))),(0,n.kt)("li",{parentName:"ul"},"docs(callout): Rename Blockqoute to Callout in docusaurus - refs #154387 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8d733ac7b00273581575ceddd1a4480ba67fa498"},(0,n.kt)("inlineCode",{parentName:"a"},"8d733ac")))),(0,n.kt)("h4",{id:"\ufe0f-others-25"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-alpha.1 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70e4d97c6a2b13f3b98efe1e2ba93174be2df476"},(0,n.kt)("inlineCode",{parentName:"a"},"70e4d97")))),(0,n.kt)("h3",{id:"096---2022-12-16"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.5...0.9.6"},"0.9.6")," - 2022-12-16"),(0,n.kt)("h4",{id:"\ufe0f-others-26"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Release 0.9.6 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ae19b837678ef5a6a26ebe7c69577e446b13ed50"},(0,n.kt)("inlineCode",{parentName:"a"},"ae19b83"))),(0,n.kt)("li",{parentName:"ul"},"feature(copyright): image information #250 from eea/feature-copyright ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7b323ed27e15f9b4265618099089526c97aa89a1"},(0,n.kt)("inlineCode",{parentName:"a"},"7b323ed"))),(0,n.kt)("li",{parentName:"ul"},"Release-it ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f5671de5a36a721f86a2f8ae4077fd2e0ffafb5"},(0,n.kt)("inlineCode",{parentName:"a"},"1f5671d")))),(0,n.kt)("h3",{id:"095---2022-10-20"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.4...0.9.5"},"0.9.5")," - 2022-10-20"),(0,n.kt)("h4",{id:"-bug-fixes-19"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(statistic): margin and slate colors when using the inverted options ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f263dea1940594ad00b3548c8640ca378fee5563"},(0,n.kt)("inlineCode",{parentName:"a"},"f263dea")))),(0,n.kt)("h3",{id:"094---2022-10-19"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.3...0.9.4"},"0.9.4")," - 2022-10-19"),(0,n.kt)("h4",{id:"-bug-fixes-20"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(edit-interface): block chooser and power user menu item colors when inside content-box ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7aee4f1619a0d798b5fd8d90844a780c25aca019"},(0,n.kt)("inlineCode",{parentName:"a"},"7aee4f1"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): hero text going over the logo and menu on mobile resolutions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1434508f5995d4316dfb2fd18fdc7926a4ece6ee"},(0,n.kt)("inlineCode",{parentName:"a"},"1434508"))),(0,n.kt)("li",{parentName:"ul"},"fix(content-box): z-index of box-inner and added underline to slate links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c8b7c7e41df39e1bf6377401a7aad4220287d454"},(0,n.kt)("inlineCode",{parentName:"a"},"c8b7c7e"))),(0,n.kt)("li",{parentName:"ul"},"fix(content-box): adding of underline to links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c2f5f0f45963e48342edb0046d84b945ffe4b6a8"},(0,n.kt)("inlineCode",{parentName:"a"},"c2f5f0f")))),(0,n.kt)("h4",{id:"-enhancements-26"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(banner,colors): content box theme aware colors banner changes#254 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bcb9a8cde0cb0f927a68c0872e590e5ab853f824"},(0,n.kt)("inlineCode",{parentName:"a"},"bcb9a8c"))),(0,n.kt)("li",{parentName:"ul"},"change(Banner): Add subtitle subcomponent ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bb67f4c83a2ff0e17958116fc4a52a426ba64a70"},(0,n.kt)("inlineCode",{parentName:"a"},"bb67f4c"))),(0,n.kt)("li",{parentName:"ul"},"change(item): moved svg filter definitions to item.overrides ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/de703661065648968903bb6b46efc13d19c51d2b"},(0,n.kt)("inlineCode",{parentName:"a"},"de70366"))),(0,n.kt)("li",{parentName:"ul"},"change(accordion): accordion titles with themes colors can now be modified by css variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2ac13ea56a74b2f7a22abc274bc94c770fbe3a2"},(0,n.kt)("inlineCode",{parentName:"a"},"e2ac13e"))),(0,n.kt)("li",{parentName:"ul"},"change(colors): in lists and callouts to allow color changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/940d1b8ed815b1a38f78d7602f0b221b48fe21f9"},(0,n.kt)("inlineCode",{parentName:"a"},"940d1b8"))),(0,n.kt)("li",{parentName:"ul"},"change(colors): added backgroundColorSupplementary color variable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f5262af2b90d2ffd9dd5560232f3bf47bcc85e3"},(0,n.kt)("inlineCode",{parentName:"a"},"1f5262a"))),(0,n.kt)("li",{parentName:"ul"},"change(list,bullet): color is no longer primary instead it's text color css variant ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8c046704871c7202406ff71b280a8a34e195e54d"},(0,n.kt)("inlineCode",{parentName:"a"},"8c04670"))),(0,n.kt)("li",{parentName:"ul"},"change(statistics): use theme colors with css variable for easy color customization ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fb72a012e81eba73fbace58317a52b5cdda31ee5"},(0,n.kt)("inlineCode",{parentName:"a"},"fb72a01"))),(0,n.kt)("li",{parentName:"ul"},"change(Banner): Show label in metadata field ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1acda3c53739b610b501a53baf10226769929d2d"},(0,n.kt)("inlineCode",{parentName:"a"},"1acda3c"))),(0,n.kt)("li",{parentName:"ul"},"change(tags, items): use text color with css variable for content color for easy customization ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6660e2e49c6e732a13283ad7c922c5a5091bffc1"},(0,n.kt)("inlineCode",{parentName:"a"},"6660e2e"))),(0,n.kt)("li",{parentName:"ul"},"change(styling): modified naming of theme css variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a332961e1c4d55cdee3a8bcdf652f53cf03e251b"},(0,n.kt)("inlineCode",{parentName:"a"},"a332961"))),(0,n.kt)("li",{parentName:"ul"},"change(colors): added backgroundColor color variable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b7e68311f77a724c49a3cf858a76239ca5f6876c"},(0,n.kt)("inlineCode",{parentName:"a"},"b7e6831"))),(0,n.kt)("li",{parentName:"ul"},"change(quote): use secondary css var for easier color replacement ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7a3231228c2eb9b420cc7b59a4a07fba96643e5e"},(0,n.kt)("inlineCode",{parentName:"a"},"7a32312"))),(0,n.kt)("li",{parentName:"ul"},"change(statistics): tweaked margin of statistics so that they don't overflow over context boxes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4a8e33dfaa716f38ac9ce5448d400c74ef9ba62"},(0,n.kt)("inlineCode",{parentName:"a"},"b4a8e33"))),(0,n.kt)("li",{parentName:"ul"},"change(accordion): allow customization of accordion title background color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6590baf1716867eabe897e765ae1924122ba2333"},(0,n.kt)("inlineCode",{parentName:"a"},"6590baf"))),(0,n.kt)("li",{parentName:"ul"},"change(colors): introduced css variables for primary colors #247 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac8082590f978ab953ece70082e06b124c292ddf"},(0,n.kt)("inlineCode",{parentName:"a"},"ac80825"))),(0,n.kt)("li",{parentName:"ul"},"change(content-box): override primary text color to white as well ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/28b43c72b9fcfeb153ac7e734bbbca67f2e42111"},(0,n.kt)("inlineCode",{parentName:"a"},"28b43c7")))),(0,n.kt)("h4",{id:"\ufe0f-others-27"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Include changes in the storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4d9fa4c631a6a1ec0d7d525721fd32c5ff01d9c"},(0,n.kt)("inlineCode",{parentName:"a"},"a4d9fa4")))),(0,n.kt)("h3",{id:"093---2022-10-04"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.2...0.9.3"},"0.9.3")," - 2022-10-04"),(0,n.kt)("h4",{id:"-bug-fixes-21"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(card, contentBox): meta font size, removed header override of cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7f94b9ca8c65a887ced5c4812563a2226fca869"},(0,n.kt)("inlineCode",{parentName:"a"},"a7f94b9"))),(0,n.kt)("li",{parentName:"ul"},"fix(List): Ordered list item story - refs #155248 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c70a2bceecf4ce9497cbe0e9cdb30944fff2287d"},(0,n.kt)("inlineCode",{parentName:"a"},"c70a2bc"))),(0,n.kt)("li",{parentName:"ul"},"fix(OrderedList): li third level margin left - refs #155248 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fba5cb9d3897d2827951cd218405b1ae7c8e818a"},(0,n.kt)("inlineCode",{parentName:"a"},"fba5cb9"))),(0,n.kt)("li",{parentName:"ul"},"fix(cards): inherit color of card description ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ceda79971663785c81292b85ae07b7f9f922213c"},(0,n.kt)("inlineCode",{parentName:"a"},"ceda799"))),(0,n.kt)("li",{parentName:"ul"},"fix(accordion): Fix content default padding - refs #153783 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/566adf7a53c48fb24044eeba1d159d5ce715ecc6"},(0,n.kt)("inlineCode",{parentName:"a"},"566adf7")))),(0,n.kt)("h4",{id:"-enhancements-27"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(site): committed fixed from custom into eea design package ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9b9a1fd3648796a502ca4eb3abd08b61b33bdff2"},(0,n.kt)("inlineCode",{parentName:"a"},"9b9a1fd"))),(0,n.kt)("li",{parentName:"ul"},"change(jenkins): added yarn policy for storybook building ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3d1b844efeea40b99c00c9aa97089e0a0be58a57"},(0,n.kt)("inlineCode",{parentName:"a"},"3d1b844"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): typography updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/60a93a4aece4e478ae13c2dfe697fd3703aa178a"},(0,n.kt)("inlineCode",{parentName:"a"},"60a93a4"))),(0,n.kt)("li",{parentName:"ul"},"change(item): added item image coloring when applying theming classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0403fe4974f37a46ec7418d9b8492ad74d7c5688"},(0,n.kt)("inlineCode",{parentName:"a"},"0403fe4"))),(0,n.kt)("li",{parentName:"ul"},"change(accordion, site): change text color to tertiary instead of black ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/464105842508a62216aa0a3f28e9565af1b93232"},(0,n.kt)("inlineCode",{parentName:"a"},"4641058"))),(0,n.kt)("li",{parentName:"ul"},"change(accordion): allow customization of accordion title with css variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/15e7d27f02c640df582f51a51ef36e645723f842"},(0,n.kt)("inlineCode",{parentName:"a"},"15e7d27"))),(0,n.kt)("li",{parentName:"ul"},"change(content-box): added css variables that will set text color and background for children ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/86cac531cc94386b6022e1be80dba826b39f2443"},(0,n.kt)("inlineCode",{parentName:"a"},"86cac53"))),(0,n.kt)("li",{parentName:"ul"},"change(tabs): allow customization of tab active and hover color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4370f4270dcaa29b1193fc2347567b748f6d5d82"},(0,n.kt)("inlineCode",{parentName:"a"},"4370f42"))),(0,n.kt)("li",{parentName:"ul"},"change(tabs): color for tabs-block section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6778c923618e725194120d7f35e2ee7d66e1be8e"},(0,n.kt)("inlineCode",{parentName:"a"},"6778c92"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): by default date is set to appear on the right of the meta section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b7b80e86b69a0179f1e48748bef909bbd2a98d58"},(0,n.kt)("inlineCode",{parentName:"a"},"b7b80e8"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): carousel dots are now relative positioned ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/daa40a4ab6532497830d5f7536bf0a7f20d9cd00"},(0,n.kt)("inlineCode",{parentName:"a"},"daa40a4")))),(0,n.kt)("h4",{id:"-documentation-changes-10"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(typography): update, local fonts ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/39a32d9aa4dec21c0e7df32aa5798432fc6bd403"},(0,n.kt)("inlineCode",{parentName:"a"},"39a32d9"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): token fix to match used values for heightheight and letterspacing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91693ecd2dd367cd83fa2752756557d463e214a7"},(0,n.kt)("inlineCode",{parentName:"a"},"91693ec"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): token fix to match used values for lineheight ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff41b56b4365a3e70ac20e548c7c74671e7c584c"},(0,n.kt)("inlineCode",{parentName:"a"},"ff41b56"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): remove semibold ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6eb3e0856f01aacf6d294f68e7d845f74f752685"},(0,n.kt)("inlineCode",{parentName:"a"},"6eb3e08")))),(0,n.kt)("h4",{id:"\ufe0f-others-28"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"test(cypress): Fix md5 dependency ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/17f618e7c5eef01759494e787a8c9cb96449fbca"},(0,n.kt)("inlineCode",{parentName:"a"},"17f618e")))),(0,n.kt)("h3",{id:"092---2022-09-27"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.1...0.9.2"},"0.9.2")," - 2022-09-27"),(0,n.kt)("h3",{id:"091---2022-09-27"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.0...0.9.1"},"0.9.1")," - 2022-09-27"),(0,n.kt)("h4",{id:"-enhancements-28"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(cards): added ability to change the text alignment using css variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ed532ac20c82a6933c4f12613c80ce92eec78405"},(0,n.kt)("inlineCode",{parentName:"a"},"ed532ac"))),(0,n.kt)("li",{parentName:"ul"},"change(styles): use flex-end values only instead of end to avoid babel warning ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24244b22ea69b9f4dc3006597c7836f814b74cf2"},(0,n.kt)("inlineCode",{parentName:"a"},"24244b2"))),(0,n.kt)("li",{parentName:"ul"},"change(rounded): image size, border radius to ensure more image are turned into rounded options ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51e23c1bb38f277b2bfbad5d814925eb61d17668"},(0,n.kt)("inlineCode",{parentName:"a"},"51e23c1")))),(0,n.kt)("h4",{id:"\ufe0f-others-29"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Merge pull request #243 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/576564ce395ee6ac9e74bcb19d5c4f0b4cd3c33b"},(0,n.kt)("inlineCode",{parentName:"a"},"576564c"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using eea-website-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a5be6eec78dae230626e61ea2c77e7f3c62510d"},(0,n.kt)("inlineCode",{parentName:"a"},"4a5be6e"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b251255a7ed14d8290717726d86eaf54b87aa2d4"},(0,n.kt)("inlineCode",{parentName:"a"},"b251255")))),(0,n.kt)("h3",{id:"090---2022-09-19"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.8.1...0.9.0"},"0.9.0")," - 2022-09-19"),(0,n.kt)("h4",{id:"-new-features-16"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(countUp): intall countup package and import it in statistics ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/10ba7cf2975ffc33cc8e6965998b7ab7ec58b1ab"},(0,n.kt)("inlineCode",{parentName:"a"},"10ba7cf"))),(0,n.kt)("li",{parentName:"ul"},"feat(docusaurus): custom editUrl function for the components usage pages - taskman refs #154076 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93c4240f269d72e4e353665dacd57d079a31afac"},(0,n.kt)("inlineCode",{parentName:"a"},"93c4240"))),(0,n.kt)("li",{parentName:"ul"},"feat(site): Styling scroll-to-text fragments #238 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1883fcf4e80055f68bdff4d66fc6db3ccad4614a"},(0,n.kt)("inlineCode",{parentName:"a"},"1883fcf"))),(0,n.kt)("li",{parentName:"ul"},"feat(docusaurus): added Edit this page link in footer of each page - taskman refs #154076 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2cf8746e42631ea2e214223e208bdbfb76ffafa7"},(0,n.kt)("inlineCode",{parentName:"a"},"2cf8746")))),(0,n.kt)("h4",{id:"-bug-fixes-22"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(header): Prevent dropdown closing when clicking inside content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/838f34006260ce7c331fd933a595e95d78e1a927"},(0,n.kt)("inlineCode",{parentName:"a"},"838f340"))),(0,n.kt)("li",{parentName:"ul"},"fix(cards): position of bullets and arrow clicking on events page 148723 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/22ef8282247401b0f8cf5a44f2e65f0b469cc6fa"},(0,n.kt)("inlineCode",{parentName:"a"},"22ef828"))),(0,n.kt)("li",{parentName:"ul"},"fix(cards): rounded images show up now even when card parent is cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48f5e81a5b76168435537d92aec35ab3a184b4d2"},(0,n.kt)("inlineCode",{parentName:"a"},"48f5e81"))),(0,n.kt)("li",{parentName:"ul"},"fix(statistic): add a min-width to content so unwrapped statistics don't break ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7c5d511c35d50f3afabf77f14b27e5760c49051f"},(0,n.kt)("inlineCode",{parentName:"a"},"7c5d511"))),(0,n.kt)("li",{parentName:"ul"},"fix(sideNavigation): add role list to list item ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/58f322b732c995349ba588db3bac6a1ffea40f89"},(0,n.kt)("inlineCode",{parentName:"a"},"58f322b"))),(0,n.kt)("li",{parentName:"ul"},"fix(sideNavigation): remove unused useState import ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f9ea6779d2c584203b77f11b3127f39aba7799f3"},(0,n.kt)("inlineCode",{parentName:"a"},"f9ea677")))),(0,n.kt)("h4",{id:"-enhancements-29"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(sideNavigation): implement the design to the initial navigation & make component dynamic ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b673d63a45e56e1d05354d8675c01b15ec9543f5"},(0,n.kt)("inlineCode",{parentName:"a"},"b673d63"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update top bar ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/626bdd5805bde1e97b91d83dae7adc1d39c62234"},(0,n.kt)("inlineCode",{parentName:"a"},"626bdd5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): create custom export and add links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f9ed560a68d261e9e6a9b6fa3c44944a252e596"},(0,n.kt)("inlineCode",{parentName:"a"},"9f9ed56"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): update inverted style and add background variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7578dc6a408094fbc215218b3ffe21a878841568"},(0,n.kt)("inlineCode",{parentName:"a"},"7578dc6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): remove horizontal display on mobiles & update columns control ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/58f00e12851c4a1af1bb200d0577d76f6222df3c"},(0,n.kt)("inlineCode",{parentName:"a"},"58f00e1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): minor fixes spotted in testing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0f0f3aba7ea282c4ecc4f602f9ff3144c04e2146"},(0,n.kt)("inlineCode",{parentName:"a"},"0f0f3ab"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update main section heights ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d669f012f1b831952dbb73b7d40134b1243ba7e4"},(0,n.kt)("inlineCode",{parentName:"a"},"d669f01"))),(0,n.kt)("li",{parentName:"ul"},"refactor(sideNavigation): remove green border and divider ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/939cd9bf2a9a7338fd770550a8396586c5f610b3"},(0,n.kt)("inlineCode",{parentName:"a"},"939cd9b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(link): update colors for link states ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e9f59950838f9119131797550945963c2965dcf"},(0,n.kt)("inlineCode",{parentName:"a"},"3e9f599"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): styles img tag outside of .image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee892745a4748da12007ba5cedab16c1810c1dd9"},(0,n.kt)("inlineCode",{parentName:"a"},"ee89274"))),(0,n.kt)("li",{parentName:"ul"},"refactor(sideNavigation): update controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a3e8430d88ee52fd92f4f8c2d6f5e01ea82dd9eb"},(0,n.kt)("inlineCode",{parentName:"a"},"a3e8430"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): fix firefox issue for fit content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87aa113667ea53d83d479cd52347e7298e60e9b0"},(0,n.kt)("inlineCode",{parentName:"a"},"87aa113"))),(0,n.kt)("li",{parentName:"ul"},"change(statistics): rearrange controls order ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b19ae70568f18873732ff62ee82251c9256a214d"},(0,n.kt)("inlineCode",{parentName:"a"},"b19ae70"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): add max width to wrap text for all content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/758f8ce09f78a6343ac0226e5d332c0216dea95b"},(0,n.kt)("inlineCode",{parentName:"a"},"758f8ce"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): add max width to label so it wraps the text ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/824a12702f133485a1c254e267d9e75c1b22048c"},(0,n.kt)("inlineCode",{parentName:"a"},"824a127"))),(0,n.kt)("li",{parentName:"ul"},"change(Side menu & in page navigation): styling according to figma design #221 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b2df858a2dc88f61d686ad0991e711dc763f4cc6"},(0,n.kt)("inlineCode",{parentName:"a"},"b2df858"))),(0,n.kt)("li",{parentName:"ul"},"change(header): align header with latest figma changes #232 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/135cd68307c6ebdc5d48b361d1696457c6f99b4c"},(0,n.kt)("inlineCode",{parentName:"a"},"135cd68"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): integration when cards also contain call to action buttons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f0d876616b211c79dde5b18c1fe862ff019073a1"},(0,n.kt)("inlineCode",{parentName:"a"},"f0d8766"))),(0,n.kt)("li",{parentName:"ul"},"refactor(iconography): icon group headings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b9ccd8031049d6b91c5676930ea3e44d9587435d"},(0,n.kt)("inlineCode",{parentName:"a"},"b9ccd80"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add variables for some sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8eae84ef665d7b3331090a8a8ac6b714ecdacbb3"},(0,n.kt)("inlineCode",{parentName:"a"},"8eae84e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Statisctic): Rename slateVariation to extraVariation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a07c5896c8c4b8f3179622f335e3f02e68dadfbd"},(0,n.kt)("inlineCode",{parentName:"a"},"a07c589"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): started example on how to add headings for iconography ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53cf8431446954eee6c5d27be31e15c075ffe16d"},(0,n.kt)("inlineCode",{parentName:"a"},"53cf843"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): remove center alignment of rounded cards body area, only the image is now centered ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fdfac4876903272b437c7dcf0e65f7cfe66bbf66"},(0,n.kt)("inlineCode",{parentName:"a"},"fdfac48"))),(0,n.kt)("li",{parentName:"ul"},"change(color): updated link colors #234 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/feabfe7a3b6d6b89bfd4065a32bae8148ddc5a4c"},(0,n.kt)("inlineCode",{parentName:"a"},"feabfe7"))),(0,n.kt)("li",{parentName:"ul"},"change(mockup): Access to figma style tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0bb25bec495f9046a15924ee92f4f17152148ba8"},(0,n.kt)("inlineCode",{parentName:"a"},"0bb25be"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): update margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5190f56e134d672ccb9d5d1a8efacac4d41530d3"},(0,n.kt)("inlineCode",{parentName:"a"},"5190f56"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button): adjust vertical margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/db6d44102171738907b4b03fcc5f526463f59389"},(0,n.kt)("inlineCode",{parentName:"a"},"db6d441")))),(0,n.kt)("h4",{id:"-internal-changes-12"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(statistic): update decimal point ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7976aa4cac4c56e70e196eb62791a2b3f2aba749"},(0,n.kt)("inlineCode",{parentName:"a"},"7976aa4"))),(0,n.kt)("li",{parentName:"ul"},"style(link): update visited link color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d3b18b305bb2bd2f20bb2509584a6bc86b0e252c"},(0,n.kt)("inlineCode",{parentName:"a"},"d3b18b3")))),(0,n.kt)("h4",{id:"-documentation-changes-11"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(iconography): added icons, guidelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0073f1d42600be1d14bff406083b112014a2061f"},(0,n.kt)("inlineCode",{parentName:"a"},"0073f1d")))),(0,n.kt)("h4",{id:"\ufe0f-others-30"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Delete 2-test-new-page.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/749eff9b81e1c08068650cff1aba6cd574ea403b"},(0,n.kt)("inlineCode",{parentName:"a"},"749eff9"))),(0,n.kt)("li",{parentName:"ul"},"Create 2-test-new-page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab623ffc27f65e3e5fdcfe627009df1799582325"},(0,n.kt)("inlineCode",{parentName:"a"},"ab623ff"))),(0,n.kt)("li",{parentName:"ul"},"Release 0.9.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/eb7e2e57b5f2778e709b67deee3624f6e9f9e716"},(0,n.kt)("inlineCode",{parentName:"a"},"eb7e2e5"))),(0,n.kt)("li",{parentName:"ul"},"stylelint fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/114e3f97c6209f100aae2d6e24c595b7ba0a6500"},(0,n.kt)("inlineCode",{parentName:"a"},"114e3f9"))),(0,n.kt)("li",{parentName:"ul"},"Move text fragments style to site.overrides ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8368cbe2cecfc296a2fc81dd0bb49cb9e9a9314c"},(0,n.kt)("inlineCode",{parentName:"a"},"8368cbe"))),(0,n.kt)("li",{parentName:"ul"},"Styling scroll-to-text fragments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1bb39148717cdac922c403a0cdbfa3681a65dd9f"},(0,n.kt)("inlineCode",{parentName:"a"},"1bb3914"))),(0,n.kt)("li",{parentName:"ul"},"Update Header.stories.js ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9036c74d54640df2ccfcfdea9ddcdb29787d8ae2"},(0,n.kt)("inlineCode",{parentName:"a"},"9036c74"))),(0,n.kt)("li",{parentName:"ul"},"feature(Docusaurus): Reflect usage of remixicon in iconography page #239 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0802b32c13d978e380960befb78647dadb2d7e53"},(0,n.kt)("inlineCode",{parentName:"a"},"0802b32"))),(0,n.kt)("li",{parentName:"ul"},"Update 1-design.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/146115a13ac7a1943b6878df42f0b8e7f1fcd3f1"},(0,n.kt)("inlineCode",{parentName:"a"},"146115a"))),(0,n.kt)("li",{parentName:"ul"},"Test workflow for contribution - taskman refs #154076 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dcb924f79306ba26bb5168ac0a12d82c0c354caa"},(0,n.kt)("inlineCode",{parentName:"a"},"dcb924f"))),(0,n.kt)("li",{parentName:"ul"},"perf(figma): access to style tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/27d8dbe3c282e187f93bc4d93a0c9aa5c8162b00"},(0,n.kt)("inlineCode",{parentName:"a"},"27d8dbe"))),(0,n.kt)("li",{parentName:"ul"},"Rename 2-test-new-page to 2-test-new-page.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4e3be106cc4739e60ee5038901dbb626cf17f2e7"},(0,n.kt)("inlineCode",{parentName:"a"},"4e3be10")))),(0,n.kt)("h3",{id:"081---2022-08-26"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.8.0...0.8.1"},"0.8.1")," - 2022-08-26"),(0,n.kt)("h4",{id:"-bug-fixes-23"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(message): fix size controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee51e1dca4f84aeb9e39be525016f751acc147de"},(0,n.kt)("inlineCode",{parentName:"a"},"ee51e1d"))),(0,n.kt)("li",{parentName:"ul"},"fix(docusaurus): intro page hero title color now that headers are using tertiary color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/618e3cb7ac5533b1c087aea10452947c8676ab4e"},(0,n.kt)("inlineCode",{parentName:"a"},"618e3cb")))),(0,n.kt)("h4",{id:"-enhancements-30"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(message): restore semantic variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1c16621b4862efc64d82d475798ed40938c65f5e"},(0,n.kt)("inlineCode",{parentName:"a"},"1c16621"))),(0,n.kt)("li",{parentName:"ul"},"refactor(messages): mix semantc and token colors for messages ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/12efa75c30956df9958058242be4b8732819a5a1"},(0,n.kt)("inlineCode",{parentName:"a"},"12efa75"))),(0,n.kt)("li",{parentName:"ul"},"refactor(emotiveColors): temp update for tests ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/61a720c1ddbbad2c5bab17c8b2f890618f2a747c"},(0,n.kt)("inlineCode",{parentName:"a"},"61a720c"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): removed line between sections and moved actions back to the bottom of footer ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d9f33e4cf5a517acfbae497d6cb2fdccb048c281"},(0,n.kt)("inlineCode",{parentName:"a"},"d9f33e4"))),(0,n.kt)("li",{parentName:"ul"},"change(storybook): headings storybook now uses tertiary color by default reflecting site options ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1061e7749de2d4fe1233ccdc7f6f835ad491504a"},(0,n.kt)("inlineCode",{parentName:"a"},"1061e77"))),(0,n.kt)("li",{parentName:"ul"},"refactor(message): add container to story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1259ecead7162d2a46f5e802ba07e7e0dcb72e42"},(0,n.kt)("inlineCode",{parentName:"a"},"1259ece"))),(0,n.kt)("li",{parentName:"ul"},"refactor(message): remove override with custom background color on error ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9b40cd7ef2cca901e65a812585943c2e2d867b5f"},(0,n.kt)("inlineCode",{parentName:"a"},"9b40cd7"))),(0,n.kt)("li",{parentName:"ul"},"refactor(message): add header controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/960c2f7b524b1f049bb2f666e3e8278feca506da"},(0,n.kt)("inlineCode",{parentName:"a"},"960c2f7"))),(0,n.kt)("li",{parentName:"ul"},"change(message): use semantic colors for messages #204 from eea/refactor-message ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/22d2c43cd55a82621f2da3103652677b4b45db1a"},(0,n.kt)("inlineCode",{parentName:"a"},"22d2c43")))),(0,n.kt)("h4",{id:"-documentation-changes-12"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(figma): added figma files to repo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6bd4144ffc9c563ce224a07fe942fc4f2615c53f"},(0,n.kt)("inlineCode",{parentName:"a"},"6bd4144")))),(0,n.kt)("h3",{id:"080---2022-08-20"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.7.6...0.8.0"},"0.8.0")," - 2022-08-20"),(0,n.kt)("h4",{id:"-new-features-17"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(IconCard): card with icon instead of image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a85a1791e3a1245474dcafc4fd833350156dccb4"},(0,n.kt)("inlineCode",{parentName:"a"},"a85a179")))),(0,n.kt)("h4",{id:"-bug-fixes-24"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(docusaurus): typography guideline now has real font values for headings, body, caption and small text ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9508db918687b524c4d464539b9a4667399abb43"},(0,n.kt)("inlineCode",{parentName:"a"},"9508db9"))),(0,n.kt)("li",{parentName:"ul"},"fix(card): fix content gaps, adjust new meta section and update text color for default ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f1a78e14fc9a4b809572bd5d4d45bd10711c6eaa"},(0,n.kt)("inlineCode",{parentName:"a"},"f1a78e1"))),(0,n.kt)("li",{parentName:"ul"},"fix(item): remove duplicate argType ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dde0be5f7fe362143e248f7e53aa1d2e5df1fda0"},(0,n.kt)("inlineCode",{parentName:"a"},"dde0be5"))),(0,n.kt)("li",{parentName:"ul"},"fix(iconCard): add aria-label at links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/44f64c7127c0ccabbbf81eb5a838ee0f63284cea"},(0,n.kt)("inlineCode",{parentName:"a"},"44f64c7"))),(0,n.kt)("li",{parentName:"ul"},"fix(card): merge fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/df440ecd89eeb228f6f28df9109b84460cdfd523"},(0,n.kt)("inlineCode",{parentName:"a"},"df440ec"))),(0,n.kt)("li",{parentName:"ul"},"fix(heroblock): color even on edit page by inheriting color instead of using the tertiary color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac53fb74dedafcce231d1ca72843eff8a589c530"},(0,n.kt)("inlineCode",{parentName:"a"},"ac53fb7"))),(0,n.kt)("li",{parentName:"ul"},"fix(tab): add tabindex for accessibility error ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab512be71b86a3b696a228840e34d297928485ab"},(0,n.kt)("inlineCode",{parentName:"a"},"ab512be"))),(0,n.kt)("li",{parentName:"ul"},"fix(carousel): restore missing variable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1728312162d102aa2812eb3c7a55dac83bca8a04"},(0,n.kt)("inlineCode",{parentName:"a"},"1728312"))),(0,n.kt)("li",{parentName:"ul"},"fix(carousel): restore flex grow for cards and opacity for arrows ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce71305ab3fed5ff5c09b577e970050d3b29a2cb"},(0,n.kt)("inlineCode",{parentName:"a"},"ce71305")))),(0,n.kt)("h4",{id:"-enhancements-31"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(carousel) add links in carousel cards & update structure and variables of less files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f99cb219f3a95f5aab49a180434a4f5e0db14462"},(0,n.kt)("inlineCode",{parentName:"a"},"f99cb21"))),(0,n.kt)("li",{parentName:"ul"},"refactor(iconCard): add control for variations and link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5e1b6a1c7ab9fdce138c5643bc01763a02bed287"},(0,n.kt)("inlineCode",{parentName:"a"},"5e1b6a1"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus, fonts): documented font letter spacing modification ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/522712aeddb55f4ff96fdf4e8bea26f4575504ec"},(0,n.kt)("inlineCode",{parentName:"a"},"522712a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): css updates for card variations and styling updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c8b4a43dd25c50e77e8c71fa8fbc45cd70bde94e"},(0,n.kt)("inlineCode",{parentName:"a"},"c8b4a43"))),(0,n.kt)("li",{parentName:"ul"},"refactor(publicationCard): add links and fix accessibily issue ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/80adf6ce0f01e577c34ddba8b345a1fc562f6711"},(0,n.kt)("inlineCode",{parentName:"a"},"80adf6c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add new section in meta and remove links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bfb82ae9635d26ef478db3d63b39f67b25d11fd5"},(0,n.kt)("inlineCode",{parentName:"a"},"bfb82ae"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): add stackable functionality ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8d714fad0465cc71650dcb41236d5667ccc3e789"},(0,n.kt)("inlineCode",{parentName:"a"},"8d714fa"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): update meta section and controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5e28e12bacec6a226659553b8244aeb0165378c9"},(0,n.kt)("inlineCode",{parentName:"a"},"5e28e12"))),(0,n.kt)("li",{parentName:"ul"},"refactor(roundedCard): remove unnecessary code and controls and add all variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6305c54df14faada4058c602af2e33dbc4fad39d"},(0,n.kt)("inlineCode",{parentName:"a"},"6305c54"))),(0,n.kt)("li",{parentName:"ul"},"refactor(roundedCard): add optional link for image and header ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a6d3bf27031d189c403c4a099b09a9066a1620a2"},(0,n.kt)("inlineCode",{parentName:"a"},"a6d3bf2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add tertiary hover and update css selectors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca069484da914520c92f7d67ac92c476ff2ee4a2"},(0,n.kt)("inlineCode",{parentName:"a"},"ca06948"))),(0,n.kt)("li",{parentName:"ul"},"change(fonts): updated font sizes with values given in figma ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4b0ae48ab140d8bbbf6ccbf46eda8d957195ca50"},(0,n.kt)("inlineCode",{parentName:"a"},"4b0ae48"))),(0,n.kt)("li",{parentName:"ul"},"change(style): color, space and adjust line-height as described in docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3366da262ba2dc1c34f57964accf4d6ef6ed37e1"},(0,n.kt)("inlineCode",{parentName:"a"},"3366da2"))),(0,n.kt)("li",{parentName:"ul"},"change(headings): only h2-h6 get tertiary color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d81308c4c0d52d5610a922146f5b426d9eaf323"},(0,n.kt)("inlineCode",{parentName:"a"},"7d81308"))),(0,n.kt)("li",{parentName:"ul"},"change(site): removed Archivo import as we should only use Roboto font ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a6af0564667075d2012c114acb2ad8e1f39b926f"},(0,n.kt)("inlineCode",{parentName:"a"},"a6af056"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): use tertiary color for headings and body color mirroring the design system styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/145fe7348a19b51784a2879225d1b71a642eed45"},(0,n.kt)("inlineCode",{parentName:"a"},"145fe73"))),(0,n.kt)("li",{parentName:"ul"},"change(fonts): modified headings font size as well as line height ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f0771ea1942b6ef436a03c256491a690a52d7413"},(0,n.kt)("inlineCode",{parentName:"a"},"f0771ea"))),(0,n.kt)("li",{parentName:"ul"},"change(fonts): updated font sizes with values given in figma ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f16eef7128ed4f2e7fe97b1ec77f651dc062b771"},(0,n.kt)("inlineCode",{parentName:"a"},"f16eef7"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): use Roboto font from google fonts also for docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/adca8e911faac2d541eb2b9fecf1d9db5b8f9b4c"},(0,n.kt)("inlineCode",{parentName:"a"},"adca8e9"))),(0,n.kt)("li",{parentName:"ul"},"change(headers): added headerColor variable so that thematic sites can easily choose another heading color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f09d2c5e95e82077cc7dfef43a5c56fc73d435c3"},(0,n.kt)("inlineCode",{parentName:"a"},"f09d2c5"))),(0,n.kt)("li",{parentName:"ul"},"change(fonts): typo fixes for typography section of docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cae4b02b20ff578f5cad7c4238c36baa3cae545a"},(0,n.kt)("inlineCode",{parentName:"a"},"cae4b02"))),(0,n.kt)("li",{parentName:"ul"},"change(fonts): modified footer and header values afer global font size changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f160d354b36dc2bee0707b6d63097d5f08408abe"},(0,n.kt)("inlineCode",{parentName:"a"},"f160d35"))),(0,n.kt)("li",{parentName:"ul"},"refactor(iconCards): run prettier ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fe84e46adbc385098385120d14e7583b890db027"},(0,n.kt)("inlineCode",{parentName:"a"},"fe84e46"))),(0,n.kt)("li",{parentName:"ul"},"change(typography): inherit header colors with @headerColor variable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91d93577772534f67bb74df0c9ed260bbaccdd4c"},(0,n.kt)("inlineCode",{parentName:"a"},"91d9357"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumb): use tertiary color also for breadcrumb ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5cbd44bcabae36bcb99a1e987d701e2ea75434b"},(0,n.kt)("inlineCode",{parentName:"a"},"c5cbd44"))),(0,n.kt)("li",{parentName:"ul"},"change(heading): on homepage on the first hero set font size to h1 and inherit color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5711096e45c57b0c3c871f8dcf870c05405d217d"},(0,n.kt)("inlineCode",{parentName:"a"},"5711096"))),(0,n.kt)("li",{parentName:"ul"},"refactor(carousel): update card titles to display styling fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/edd966b5648be51f2d4056c68489648574506656"},(0,n.kt)("inlineCode",{parentName:"a"},"edd966b"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): use the tertiary color for body and heading colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/11c4ed4683df4527ce79155bc65424789e3864af"},(0,n.kt)("inlineCode",{parentName:"a"},"11c4ed4"))),(0,n.kt)("li",{parentName:"ul"},"change(typography): modified lineheight-0 after headers now use 1.2 instead of 1.25 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/04d78a8b0094d9187548e1e3b16d6fbf2248821c"},(0,n.kt)("inlineCode",{parentName:"a"},"04d78a8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add links to cards and replace description with title in carousel ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0258737d26bbb3015ee6222ec878e0477001f615"},(0,n.kt)("inlineCode",{parentName:"a"},"0258737")))),(0,n.kt)("h4",{id:"\ufe0f-others-31"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feature(heading): and cards refactoring #227 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/334fbda2d5b751858d4cc8cae832ca7f5c1ad6c2"},(0,n.kt)("inlineCode",{parentName:"a"},"334fbda"))),(0,n.kt)("li",{parentName:"ul"},"Update package.json ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3870cf3265f0dab4e181c94a6657b9fa408bf186"},(0,n.kt)("inlineCode",{parentName:"a"},"3870cf3"))),(0,n.kt)("li",{parentName:"ul"},"Header refactor 153536 #226 from eea/header-refactor-153536 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87a6fe73211eb028861e099a67e90d365c5111ea"},(0,n.kt)("inlineCode",{parentName:"a"},"87a6fe7"))),(0,n.kt)("li",{parentName:"ul"},"feature(item): icon is now stackable moving the icon on top #220 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b716acfc850345d666d99840445798cdae201a63"},(0,n.kt)("inlineCode",{parentName:"a"},"b716acf")))),(0,n.kt)("h3",{id:"076---2022-08-15"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.7.5...0.7.6"},"0.7.6")," - 2022-08-15"),(0,n.kt)("h4",{id:"-enhancements-32"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(footer): Footer updates 147837 #225 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fa9ae580c7fd45fb4983672167cb5b0b33cc6279"},(0,n.kt)("inlineCode",{parentName:"a"},"fa9ae58"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): initial redesign of main section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8e85617157cdc31a7470acfcd72b85d8fadd1bce"},(0,n.kt)("inlineCode",{parentName:"a"},"8e85617"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): restructure theme sites logo columns ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dcba45a0bfd832c7d5d1e092db8ea4040eceda57"},(0,n.kt)("inlineCode",{parentName:"a"},"dcba45a"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): set actions before thematic section on mobile ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/db25f966a214c94677192215181453e9d59ca957"},(0,n.kt)("inlineCode",{parentName:"a"},"db25f96"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): fix missing key warning from react dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/77f72d5bdc719805a6314058c741387ee7155d28"},(0,n.kt)("inlineCode",{parentName:"a"},"77f72d5"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): Footer updates 147837 #222 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32fed231f1209caeddb18e0bb75d670f20bafb88"},(0,n.kt)("inlineCode",{parentName:"a"},"32fed23")))),(0,n.kt)("h3",{id:"075---2022-08-11"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.7.3...0.7.5"},"0.7.5")," - 2022-08-11"),(0,n.kt)("h4",{id:"-enhancements-33"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(megamenu): mobile improvements with See all links, active elements and non accordion children #224 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6767b99fea3925b35e9dede0a67ea90242e5e730"},(0,n.kt)("inlineCode",{parentName:"a"},"6767b99"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): render accordion only if children have children ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/be63ce2a8e240eac26eedeff0ca104813afbc6b3"},(0,n.kt)("inlineCode",{parentName:"a"},"be63ce2"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): mobile menu design tweaks as seen in latest figma ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/26d74dc063f0b3f8d541c714a10038d79145047e"},(0,n.kt)("inlineCode",{parentName:"a"},"26d74dc"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): removed icon from at a change menu items and they are no longer bold as requested ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/043e77219979711d2f25845c6811b546e791fbf7"},(0,n.kt)("inlineCode",{parentName:"a"},"043e772"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): reset first level panels after each item pass ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/175351bdc9bab5c2d02b2717c24071ba62d4b924"},(0,n.kt)("inlineCode",{parentName:"a"},"175351b"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): mobile menu improvements #223 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b3cabfe3ddc42c2ea39ae20d01bb6fd0db478ecc"},(0,n.kt)("inlineCode",{parentName:"a"},"b3cabfe"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): fixed key error warnings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/075bf0167554869e9fc2f4938c972112e4afa2f7"},(0,n.kt)("inlineCode",{parentName:"a"},"075bf01"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): handle default active sub accordion ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6192a9938b53522682953cb73d7ccfc6ef9c1aec"},(0,n.kt)("inlineCode",{parentName:"a"},"6192a99"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): enable active border only for items not titles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fb0b8696dd73cbf3083c3006a7cff5a1901a6bac"},(0,n.kt)("inlineCode",{parentName:"a"},"fb0b869")))),(0,n.kt)("h4",{id:"\ufe0f-others-32"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Update package.json ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e21e00dc1e0b54daef2c71311a9da709bc1f7e6d"},(0,n.kt)("inlineCode",{parentName:"a"},"e21e00d")))),(0,n.kt)("h3",{id:"073---2022-08-04"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.7.2...0.7.3"},"0.7.3")," - 2022-08-04"),(0,n.kt)("h4",{id:"-enhancements-34"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(megamenu): added icon on mega menu header section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d0ad4d80fc4941e0cdbd8a2d81415387f86efc1c"},(0,n.kt)("inlineCode",{parentName:"a"},"d0ad4d8")))),(0,n.kt)("h3",{id:"072---2022-08-03"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.7.1...0.7.2"},"0.7.2")," - 2022-08-03"),(0,n.kt)("h4",{id:"-bug-fixes-25"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(contentBox): z-index of content hidden by bg when using content-box-inner ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5a7dac923d648d8fe9c9a9cbb8001969d32aea2"},(0,n.kt)("inlineCode",{parentName:"a"},"c5a7dac")))),(0,n.kt)("h4",{id:"\ufe0f-others-33"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Set focus on search input field in the popup on click ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d12c05106d9b95df1885ffa12cb284a0e50e0dfd"},(0,n.kt)("inlineCode",{parentName:"a"},"d12c051"))),(0,n.kt)("li",{parentName:"ul"},"Make cypress tests work with both slate and draft selectors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4d8e5b1d7719637a46eac8232891fc5ed1f51b6f"},(0,n.kt)("inlineCode",{parentName:"a"},"4d8e5b1")))),(0,n.kt)("h3",{id:"071---2022-08-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.7.0...0.7.1"},"0.7.1")," - 2022-08-01"),(0,n.kt)("h3",{id:"070---2022-08-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.6.5...0.7.0"},"0.7.0")," - 2022-08-01"),(0,n.kt)("h4",{id:"-new-features-18"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(accordion,buttons): primary, secondary and tertiary variations #209 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c34617f7a7d7b6b7568c3127f4ae0f52bd57cf8a"},(0,n.kt)("inlineCode",{parentName:"a"},"c34617f")))),(0,n.kt)("h4",{id:"-bug-fixes-26"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(megamenu): key warning errors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ecd27921546204dfa4aa23d25188876e52cda7a"},(0,n.kt)("inlineCode",{parentName:"a"},"4ecd279"))),(0,n.kt)("li",{parentName:"ul"},"fix(container): add padding also for block editors when we are on the add page not just edit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b857aad7855c30c5059b0f0f7c0f720826a71aa7"},(0,n.kt)("inlineCode",{parentName:"a"},"b857aad"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): bump opacity of gradient class to get rid of green hue of header text ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2011b40d384ae5b54a0525e6d9afc88c02f6ca90"},(0,n.kt)("inlineCode",{parentName:"a"},"2011b40"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): remove console log ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3a200233609bbcea39d8e519dc292a132a98aaa3"},(0,n.kt)("inlineCode",{parentName:"a"},"3a20023")))),(0,n.kt)("h4",{id:"-enhancements-35"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(callToAction): add tertiary variant and restructure exports ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac6695ab3066c41739ec4852f0ec3c3bb6cea346"},(0,n.kt)("inlineCode",{parentName:"a"},"ac6695a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(accordion): add color variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3504c15cc861803dc263fb2ad3b6a478043ced33"},(0,n.kt)("inlineCode",{parentName:"a"},"3504c15"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): WIP bringing back rendering of item with callback and path modification ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e43d4340ea82afde950e5fee44a76119060fc28"},(0,n.kt)("inlineCode",{parentName:"a"},"6e43d43"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): add slide down transition and update targetRefs on close ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/96671574f5f7dd992269c42e509598f62bba516d"},(0,n.kt)("inlineCode",{parentName:"a"},"9667157"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): use renderMenuItem in order to render menu items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9ed5cbdf120ee2c92e5f14c09e5289a5abe3f8b0"},(0,n.kt)("inlineCode",{parentName:"a"},"9ed5cbd"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): replaced eionet logo with an svg variant and tweaked size of eionet to match size of eea logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32ce4623ad454edec864ad6c8b45cbf99465bede"},(0,n.kt)("inlineCode",{parentName:"a"},"32ce462"))),(0,n.kt)("li",{parentName:"ul"},"refactor(callToAction): update tertiary state colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/159668ac526a98032392bcbd2c115dc448193152"},(0,n.kt)("inlineCode",{parentName:"a"},"159668a"))),(0,n.kt)("li",{parentName:"ul"},"change(accordion): style default accordion using the grey from semantic ui ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e24907df397457bd9704905aa29ea5d7e1d396cd"},(0,n.kt)("inlineCode",{parentName:"a"},"e24907d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(accordion): add variations and create a default export ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a9c68ffe933c9d700e46db3e0cbbd9e3820c7c7"},(0,n.kt)("inlineCode",{parentName:"a"},"4a9c68f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(colors): add tertiary shades for element states ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1e24a7e13b50f1ee7bd9bd44f3b2eb8e4460c691"},(0,n.kt)("inlineCode",{parentName:"a"},"1e24a7e"))),(0,n.kt)("li",{parentName:"ul"},"change(tests): try to modify tests to use slate instead of draft ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a2e248593433a7a8bf612008c12a3a20a0049d86"},(0,n.kt)("inlineCode",{parentName:"a"},"a2e2485"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): set active class on storybook list items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/112bff195cd07e789b352ae239a148a168b4d877"},(0,n.kt)("inlineCode",{parentName:"a"},"112bff1"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): add border for active element of menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5e7dfa539dc0d126dfb057ac2d293c94b31561bb"},(0,n.kt)("inlineCode",{parentName:"a"},"5e7dfa5"))),(0,n.kt)("li",{parentName:"ul"},"change(package): condition modification of navDepth settings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dd21dadf34f87f08223be3b98c06e7a2f0714326"},(0,n.kt)("inlineCode",{parentName:"a"},"dd21dad"))),(0,n.kt)("li",{parentName:"ul"},"change(mega menu): use non variable to fix build of volto-kitkat-frontend ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ecd652405ba616c9defc86fd793f8c066c0af1e"},(0,n.kt)("inlineCode",{parentName:"a"},"3ecd652"))),(0,n.kt)("li",{parentName:"ul"},"change(header): prefix mega-menu active class for adding border ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32898cb19c20ee7696c51b99cd9df25a333ae6e9"},(0,n.kt)("inlineCode",{parentName:"a"},"32898cb"))),(0,n.kt)("li",{parentName:"ul"},"change(tests): use data-slate-editor instead of contents that was found in draft js instead of slate ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1e0413cf117c098b188e00249c323f2f718b9299"},(0,n.kt)("inlineCode",{parentName:"a"},"1e0413c"))),(0,n.kt)("li",{parentName:"ul"},"change(stories): hide variant control from button link story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/43f8c412f6762edbed9c60e613736d5b60677cd1"},(0,n.kt)("inlineCode",{parentName:"a"},"43f8c41"))),(0,n.kt)("li",{parentName:"ul"},"change(stories): hide variant control from button link story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aea712668331f5681028d961b42a05655f1113d3"},(0,n.kt)("inlineCode",{parentName:"a"},"aea7126")))),(0,n.kt)("h4",{id:"\ufe0f-others-34"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feature(theme): added context navigation component story and default style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5a6955fe935cf6a07f6593164014ed4c9e77d88f"},(0,n.kt)("inlineCode",{parentName:"a"},"5a6955f"))),(0,n.kt)("li",{parentName:"ul"},"feature(megamenu): open default accordions on mobile navigation based on pathname ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cc299c1047f96aa5f85cdc4bb8bb9b3b4fb9ca5e"},(0,n.kt)("inlineCode",{parentName:"a"},"cc299c1"))),(0,n.kt)("li",{parentName:"ul"},"fix eslint warnings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3b30282ea4df59f2d05644cae5c1d703b4dc48b3"},(0,n.kt)("inlineCode",{parentName:"a"},"3b30282"))),(0,n.kt)("li",{parentName:"ul"},"bump release version to 0.7.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fa82cbd7d50765c322bc5c7c58abb5675e0aadad"},(0,n.kt)("inlineCode",{parentName:"a"},"fa82cbd"))),(0,n.kt)("li",{parentName:"ul"},"Theme fixes, mega menu selected element both in desktop and mobile #211 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4827292a9badb02f178b7431cc63e11070784ea"},(0,n.kt)("inlineCode",{parentName:"a"},"b482729"))),(0,n.kt)("li",{parentName:"ul"},"feature(mega-menu): added menu slide down animation #208 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4360d0ef570fbfcc9989170219f7826e5ed780cf"},(0,n.kt)("inlineCode",{parentName:"a"},"4360d0e")))),(0,n.kt)("h3",{id:"065---2022-07-06"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.6.1...0.6.5"},"0.6.5")," - 2022-07-06"),(0,n.kt)("h4",{id:"-bug-fixes-27"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(header): double click to close dropdown is no longer required ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8a2ed0d1e671d12239ecaf250e68b3187c12a53"},(0,n.kt)("inlineCode",{parentName:"a"},"b8a2ed0"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): menu generation when atAGlance isn't found ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d68b03c05f7671e7ea154efe0199c29a3734fbcf"},(0,n.kt)("inlineCode",{parentName:"a"},"d68b03c"))),(0,n.kt)("li",{parentName:"ul"},"fix(menu): removed minHeight that enlarged the global menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/133be1e43d9b7778fd94388629400c5f2b707ff4"},(0,n.kt)("inlineCode",{parentName:"a"},"133be1e"))),(0,n.kt)("li",{parentName:"ul"},"fix(hero): image dimensions when full width and height isn't enabled ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4114f731cce63dc520bfd00cd487943181cec2ee"},(0,n.kt)("inlineCode",{parentName:"a"},"4114f73"))),(0,n.kt)("li",{parentName:"ul"},"fix(contentBox): removed negative z-index that hid fullwidth bg color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bd60faff53205da95d94930517f2ac830ec523d1"},(0,n.kt)("inlineCode",{parentName:"a"},"bd60faf")))),(0,n.kt)("h4",{id:"-enhancements-36"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(hero): tweaked hero block height and padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/994b6f8943c061657792df8adcbdee5da487ce43"},(0,n.kt)("inlineCode",{parentName:"a"},"994b6f8"))),(0,n.kt)("li",{parentName:"ul"},"change(item): tweak size and padding of icon when used inside item ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dbdef191e70bf59dcfddf63c8f9f9a1343266a59"},(0,n.kt)("inlineCode",{parentName:"a"},"dbdef19"))),(0,n.kt)("li",{parentName:"ul"},"change(typography): updated letterspacing values and clarified values used for certain type tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8a13bf8b3691d288209532842fb2c80962d652c0"},(0,n.kt)("inlineCode",{parentName:"a"},"8a13bf8"))),(0,n.kt)("li",{parentName:"ul"},"change(item): enable theming for icon and text color and added tertiary option ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d4444feedd1cd7e6e8f8da630b4b53a19050d1b"},(0,n.kt)("inlineCode",{parentName:"a"},"6d4444f"))),(0,n.kt)("li",{parentName:"ul"},"change(header): top section chevron sizes and margin as requested in enhancements document ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b307c74a671c10a5a6703dcb2126c3c36679c6f5"},(0,n.kt)("inlineCode",{parentName:"a"},"b307c74"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): add underline to links when applied to headers and use tertiary color by default ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/874f956c61e65ddbb6a240865f3946bb84247712"},(0,n.kt)("inlineCode",{parentName:"a"},"874f956"))),(0,n.kt)("li",{parentName:"ul"},"change(utilities): wrap in quotes h2 and h3 of quoted-wrapper ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8aa471604fb127cfa535373bb90a44b4204dd0f4"},(0,n.kt)("inlineCode",{parentName:"a"},"8aa4716"))),(0,n.kt)("li",{parentName:"ul"},"change(package): bump package version to 0.6.5 denoting bug fixes release ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0585aebaeb9e3483ba230110d99a1a875590ad66"},(0,n.kt)("inlineCode",{parentName:"a"},"0585aeb")))),(0,n.kt)("h3",{id:"061---2022-07-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.6.0...0.6.1"},"0.6.1")," - 2022-07-01"),(0,n.kt)("h4",{id:"-new-features-19"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(UnderlinedTitle): create story and necessary utilities ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8beb56b64ca76fb9f0f6df0f3554e64449a64868"},(0,n.kt)("inlineCode",{parentName:"a"},"8beb56b"))),(0,n.kt)("li",{parentName:"ul"},"feat(headers): added underlined titles with theming support ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af675616f9e002458501cf8b90742514153a298f"},(0,n.kt)("inlineCode",{parentName:"a"},"af67561")))),(0,n.kt)("h4",{id:"-enhancements-37"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(heading): move underline story and update controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2c9bfd279eafc44435d223be326f9496856c2154"},(0,n.kt)("inlineCode",{parentName:"a"},"2c9bfd2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(underlineTitle): add content box for different variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/087891535059d6c2d7d2c2accded20f6ba601bb5"},(0,n.kt)("inlineCode",{parentName:"a"},"0878915"))),(0,n.kt)("li",{parentName:"ul"},"refactor(underlinedTitle): add control for changing heading size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/211f5158bff2b437aac60f26ba63f9adb6be540a"},(0,n.kt)("inlineCode",{parentName:"a"},"211f515"))),(0,n.kt)("li",{parentName:"ul"},"refactor(underlinedTitle): Restore text variation dropdown control ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bd8c61129d2c80475af8d0e9310412d5c3a82169"},(0,n.kt)("inlineCode",{parentName:"a"},"bd8c611"))),(0,n.kt)("li",{parentName:"ul"},"refactor(utilities): add color variation for headings and text ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e3a779ec4fa3b712fcd32124f6f83ab784d2223"},(0,n.kt)("inlineCode",{parentName:"a"},"7e3a779"))),(0,n.kt)("li",{parentName:"ul"},"refactor(utilities): update border bottom utility and restore line height for headings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7fe4a7b9fee579d213fe3945a4e548ff089784bd"},(0,n.kt)("inlineCode",{parentName:"a"},"7fe4a7b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(headings): update the line height of headers according to docusaurus instructions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9da19b3e1ea1fd93431e00edf3dc9a443e94f27a"},(0,n.kt)("inlineCode",{parentName:"a"},"9da19b3")))),(0,n.kt)("h4",{id:"-internal-changes-13"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(countup): package for statistics ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/26fcd09bbd8d44119d5ca957542863be8c64836b"},(0,n.kt)("inlineCode",{parentName:"a"},"26fcd09")))),(0,n.kt)("h3",{id:"060---2022-07-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.5.5...0.6.0"},"0.6.0")," - 2022-07-01"),(0,n.kt)("h4",{id:"-bug-fixes-28"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(item): adjust the container in stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a848c46b5bf3153ec993a21a530e120bae872407"},(0,n.kt)("inlineCode",{parentName:"a"},"a848c46"))),(0,n.kt)("li",{parentName:"ul"},"fix(tag): align start for tags on mobile, update path for Tag List and add containers ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b9de8452c42ed6d16028ce147f2d7a062b895d67"},(0,n.kt)("inlineCode",{parentName:"a"},"b9de845"))),(0,n.kt)("li",{parentName:"ul"},"fix(item): update image width & height on mobiles and add 3 line clamp for description ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0cd2c46c945ff85b55183994990fae9cf450f3d1"},(0,n.kt)("inlineCode",{parentName:"a"},"0cd2c46"))),(0,n.kt)("li",{parentName:"ul"},"fix(pageheader): metadata font size on mobile to be readable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0a9b1fa7db6f0b11265f9eb4d28f25b23bedc79a"},(0,n.kt)("inlineCode",{parentName:"a"},"0a9b1fa"))),(0,n.kt)("li",{parentName:"ul"},"fix(breadcrumb): fixed variable name for breadcrumb item ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2b547eb43e0db4aa9bb63b4e4ba7f541f357fbd0"},(0,n.kt)("inlineCode",{parentName:"a"},"2b547eb")))),(0,n.kt)("h4",{id:"-enhancements-38"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(Item):create item story with custom default class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/069ae02a7cc2b15b7e6732e46f52d07eaa4502b1"},(0,n.kt)("inlineCode",{parentName:"a"},"069ae02"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pagination): add pastanage menu overrides and remove any eea theme css from default story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/508081090baaeb455130c760c6c0e7e23972d84a"},(0,n.kt)("inlineCode",{parentName:"a"},"5080810"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): update variables from px to rem ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/30eed78c170e5719ba4fb85c3a171db3f97d63c8"},(0,n.kt)("inlineCode",{parentName:"a"},"30eed78"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Item):add default item mobile padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/35184655e3225b8ad63626c8e521b5dcf59eaa3b"},(0,n.kt)("inlineCode",{parentName:"a"},"3518465"))),(0,n.kt)("li",{parentName:"ul"},"change(site): added fixes from custom ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0fe4d80586c8877d58905ec40aa7df19c2f4e32f"},(0,n.kt)("inlineCode",{parentName:"a"},"0fe4d80"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Pagination): add default pagination stopry and rename previous as Secondary ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a5e3e13b40d4d1d0c96f1efaa3a0c326d60c6d93"},(0,n.kt)("inlineCode",{parentName:"a"},"a5e3e13"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pagination): comment out secondary pagination and its styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bcf4cff1cff490718751475354b8fb32da174383"},(0,n.kt)("inlineCode",{parentName:"a"},"bcf4cff"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tags): remove content class and add flex wrap ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d6333ca7e61a588d8ffe4d0d2e02005c0aa12379"},(0,n.kt)("inlineCode",{parentName:"a"},"d6333ca"))),(0,n.kt)("li",{parentName:"ul"},"change(logo): use a real svg logo for white eea logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3b80dc7698c3dbab5d3834cc62f5102c2ace0166"},(0,n.kt)("inlineCode",{parentName:"a"},"3b80dc7"))),(0,n.kt)("li",{parentName:"ul"},"change(header): show eea information systems on tablet as well ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce82cebb554eb11a35ea2b3ee0c62bc645716476"},(0,n.kt)("inlineCode",{parentName:"a"},"ce82ceb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): update letter spacing tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f8753b7527b1bf7271102666a8662a74b2b1775"},(0,n.kt)("inlineCode",{parentName:"a"},"5f8753b"))),(0,n.kt)("li",{parentName:"ul"},"change(letterspacing): updated letter spacing positive values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b31818f292ce7ce8711084116a7b4df78cca33f0"},(0,n.kt)("inlineCode",{parentName:"a"},"b31818f"))),(0,n.kt)("li",{parentName:"ul"},"change(pageheader): add bottom margin on mobile for sharing dropdown actions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d3cda4732ec94dac91b36ef10014fbbe08a0a470"},(0,n.kt)("inlineCode",{parentName:"a"},"d3cda47"))),(0,n.kt)("li",{parentName:"ul"},"change(pageheader): removed blogger, reddit and stumbleupon sharing links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e4acc4e83c120cda59d94f04867a53e21bf322ab"},(0,n.kt)("inlineCode",{parentName:"a"},"e4acc4e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Item): add default item background color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c978c8d05355065466a8a661844237a9df103b94"},(0,n.kt)("inlineCode",{parentName:"a"},"c978c8d"))),(0,n.kt)("li",{parentName:"ul"},"change(package): bump package version ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f01f72ba6b09b6aae00c54e446bafddb48c4cd1"},(0,n.kt)("inlineCode",{parentName:"a"},"1f01f72")))),(0,n.kt)("h4",{id:"-internal-changes-14"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(item): update item image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e585e9d8c85a3627696b55c0505e29e8a8c33f7f"},(0,n.kt)("inlineCode",{parentName:"a"},"e585e9d")))),(0,n.kt)("h4",{id:"-documentation-changes-13"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(colors): token usage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c433ec6fcf190f85ab1dd81ea3e63eeb381d0c28"},(0,n.kt)("inlineCode",{parentName:"a"},"c433ec6"))),(0,n.kt)("li",{parentName:"ul"},"docs(Docusaurus): typography and spacing updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48d1269dce396aec26db1d1e2f777851a26eaa81"},(0,n.kt)("inlineCode",{parentName:"a"},"48d1269"))),(0,n.kt)("li",{parentName:"ul"},"docs(Docusaurus): various fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a972a31f7932d29d61a46da251c0c98994516365"},(0,n.kt)("inlineCode",{parentName:"a"},"a972a31"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/66d95e4fee695a20de47f5476712034f9f07f4a8"},(0,n.kt)("inlineCode",{parentName:"a"},"66d95e4")))),(0,n.kt)("h4",{id:"\ufe0f-others-35"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Tabs block custom border left/top ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca4cce05ddb603a26d729dfe31f0f11fda7563fb"},(0,n.kt)("inlineCode",{parentName:"a"},"ca4cce0"))),(0,n.kt)("li",{parentName:"ul"},"Fix sidebar tabs in Volto CSS ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c287db5abbfe068d4b255c41fd58d0433d2640c4"},(0,n.kt)("inlineCode",{parentName:"a"},"c287db5")))),(0,n.kt)("h3",{id:"055---2022-06-23"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.5.4...0.5.5"},"0.5.5")," - 2022-06-23"),(0,n.kt)("h4",{id:"-bug-fixes-29"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(contentBox): color of cards when inside content-boxes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/76a452031473f43928dee1d3ee705d06101e6a21"},(0,n.kt)("inlineCode",{parentName:"a"},"76a4520")))),(0,n.kt)("h4",{id:"-enhancements-39"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(homepage): moved fixes of homepage to custom and colored carousel arrow ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0a226ef3f5d328d45513764bec02d58241417db0"},(0,n.kt)("inlineCode",{parentName:"a"},"0a226ef")))),(0,n.kt)("h3",{id:"054---2022-06-16"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.5.3...0.5.4"},"0.5.4")," - 2022-06-16"),(0,n.kt)("h4",{id:"-bug-fixes-30"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(block-style): Content box preview in sidebar ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6362766f5e8dabf778e3864d2bb08966a55fc078"},(0,n.kt)("inlineCode",{parentName:"a"},"6362766"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): ensure transparency goes as high as the search icon ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4470e132e1e70fba3fdfb33fc63a1cc9d62700e8"},(0,n.kt)("inlineCode",{parentName:"a"},"4470e13")))),(0,n.kt)("h4",{id:"-enhancements-40"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(contentBox): add background as before element instead of using full-width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e0a5962c1b9cb0d3ef9a8d7b7208eded34eb3ce"},(0,n.kt)("inlineCode",{parentName:"a"},"7e0a596"))),(0,n.kt)("li",{parentName:"ul"},"change(content-box): content box links are now underlined ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f7976f50f5807a884522d6dba871a2757a1c5a98"},(0,n.kt)("inlineCode",{parentName:"a"},"f7976f5"))),(0,n.kt)("li",{parentName:"ul"},"change(homepage): added fixes from custom ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c3e03331d328f4fd7c6689f93bc1f1156013b8a9"},(0,n.kt)("inlineCode",{parentName:"a"},"c3e0333"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): add margin top with the height of the top section on edit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fefa6bb0f513e221ddb587f081c0e7d0c3067dfd"},(0,n.kt)("inlineCode",{parentName:"a"},"fefa6bb"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): fix default card color when inside content-boxes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6fdf3aabf9515289b36a5822e21edc5d282c4536"},(0,n.kt)("inlineCode",{parentName:"a"},"6fdf3aa"))),(0,n.kt)("li",{parentName:"ul"},"change(container): removed override of content-box-inner container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/66fe7d45adc631c3ebf0e8dd11de19d7ff60b894"},(0,n.kt)("inlineCode",{parentName:"a"},"66fe7d4")))),(0,n.kt)("h3",{id:"053---2022-06-16"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.5.2...0.5.3"},"0.5.3")," - 2022-06-16"),(0,n.kt)("h4",{id:"-bug-fixes-31"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(homepage): hero and homepage fixes for #151156 #198 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/43d4efc508750e0e9cbb93b9bffc3721be452c5a"},(0,n.kt)("inlineCode",{parentName:"a"},"43d4efc"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): fixed top section width on edit page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce5898b5ee41ea6959a2c454b3fb98216d71feb3"},(0,n.kt)("inlineCode",{parentName:"a"},"ce5898b")))),(0,n.kt)("h4",{id:"-enhancements-41"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(hero): added min height to hero-block-image-wrapper ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3cc37c027597573281710c9db98c687057d261dd"},(0,n.kt)("inlineCode",{parentName:"a"},"3cc37c0"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): spaced hero block has a 3rem margin top and bottom ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c463b033dda601bfd475b282bc0003200a053d45"},(0,n.kt)("inlineCode",{parentName:"a"},"c463b03"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): added extra top margin on hero-block-body from tablet and up within homepage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/64142c3c45f6a8ea6502842055a2341dcf16088c"},(0,n.kt)("inlineCode",{parentName:"a"},"64142c3"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): tweak min height of hero block ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e1271b4b5fdcd8205f0bec8b88ab9ae31f62251f"},(0,n.kt)("inlineCode",{parentName:"a"},"e1271b4"))),(0,n.kt)("li",{parentName:"ul"},"change(card,contentBox): use inherit for text color to inherit black from body ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c1ba3b6ddc16ddc7394aba8d78cad73b5a8c34cb"},(0,n.kt)("inlineCode",{parentName:"a"},"c1ba3b6"))),(0,n.kt)("li",{parentName:"ul"},"change(container): on section-edit modify only left and right padding values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fe6e3ec764643ec01e20ae9dbdde921774ef04cd"},(0,n.kt)("inlineCode",{parentName:"a"},"fe6e3ec"))),(0,n.kt)("li",{parentName:"ul"},"change(utilities): bump z-index of overlay class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ede3209556b620d2252bb03d4c994a92b6708fd2"},(0,n.kt)("inlineCode",{parentName:"a"},"ede3209"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): fixed variable reference for margin of body from homepage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/092b90b2a902b71cc96132ca3c96108edda56342"},(0,n.kt)("inlineCode",{parentName:"a"},"092b90b")))),(0,n.kt)("h3",{id:"052---2022-06-14"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.5.1...0.5.2"},"0.5.2")," - 2022-06-14"),(0,n.kt)("h4",{id:"-new-features-20"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(contentBox) : add new Content Box component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ebbb47fe685f9809aa3572263be376d9688371e"},(0,n.kt)("inlineCode",{parentName:"a"},"2ebbb47"))),(0,n.kt)("li",{parentName:"ul"},"feat(ContentBox): Add primary, secondary, tertiary themes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87cb2fe7e4cd5c2872299756f493e371abcbb05f"},(0,n.kt)("inlineCode",{parentName:"a"},"87cb2fe"))),(0,n.kt)("li",{parentName:"ul"},"feat(ContentBox): Update storybook with available themes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93b26b2f5f1d627aa8049df61257499e4798dd79"},(0,n.kt)("inlineCode",{parentName:"a"},"93b26b2")))),(0,n.kt)("h4",{id:"-enhancements-42"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(contentBox): restructure the component to be more flexible ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f0d2de67e43fafa10052871f99ac841c83cf8157"},(0,n.kt)("inlineCode",{parentName:"a"},"f0d2de6")))),(0,n.kt)("h4",{id:"-internal-changes-15"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(contentBox) : add lint changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5aaf740594f0001b1672bb6dc18d973f55c881f0"},(0,n.kt)("inlineCode",{parentName:"a"},"5aaf740")))),(0,n.kt)("h4",{id:"\ufe0f-others-36"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"perf(eol): change to lf ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/78b2955ff73d9436134d1a6399040b2d7c7f5714"},(0,n.kt)("inlineCode",{parentName:"a"},"78b2955"))),(0,n.kt)("li",{parentName:"ul"},"Cleanup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2b128dface95b560588a343f1ddf7bbaf3efb320"},(0,n.kt)("inlineCode",{parentName:"a"},"2b128df")))),(0,n.kt)("h3",{id:"051---2022-06-13"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.5.0...0.5.1"},"0.5.1")," - 2022-06-13"),(0,n.kt)("h4",{id:"-enhancements-43"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(header): changed homepage text color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/64ce8b61f8f2150513e09bf2926b48aa2ae1071c"},(0,n.kt)("inlineCode",{parentName:"a"},"64ce8b6"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): added styles for adding dark overlay to hero ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bf1d292fecfa8a6b222558f0d93f48e19bf6b8ea"},(0,n.kt)("inlineCode",{parentName:"a"},"bf1d292"))),(0,n.kt)("li",{parentName:"ul"},"change(homepage): hide stagingBanner on homepage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fb6e319dd10f4d148cc8f3b33dafc43280a0254f"},(0,n.kt)("inlineCode",{parentName:"a"},"fb6e319"))),(0,n.kt)("li",{parentName:"ul"},"change(header): use variable for homepage hero-block padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/89ff3441f269281ffb3da32cd3e5c64715b3204b"},(0,n.kt)("inlineCode",{parentName:"a"},"89ff344"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): modified grey-4 color to point to a 10% shade from original color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b406283e61c7356bec9d453567cd1ccde496880d"},(0,n.kt)("inlineCode",{parentName:"a"},"b406283"))),(0,n.kt)("li",{parentName:"ul"},"change(header): added min-height for mega menu needed for 1 items menus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/18814f48fb743c88d05554e9a1773f8d85dec86c"},(0,n.kt)("inlineCode",{parentName:"a"},"18814f4"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): hero section block integration #192 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ea2f40583951016c164c9abdf22d8e809d207fe"},(0,n.kt)("inlineCode",{parentName:"a"},"4ea2f40")))),(0,n.kt)("h4",{id:"\ufe0f-others-37"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Add hero block style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fa39656fd661d8af95f483a6f33a08e4c93c42f1"},(0,n.kt)("inlineCode",{parentName:"a"},"fa39656"))),(0,n.kt)("li",{parentName:"ul"},"Add padding if hero block is not full-width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/808b83957d6a866cc31c928f414fa8fa5da517a1"},(0,n.kt)("inlineCode",{parentName:"a"},"808b839"))),(0,n.kt)("li",{parentName:"ul"},"Cleanup available languages ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0c490512a6a6524efe9a37b4b61ab0061a240abb"},(0,n.kt)("inlineCode",{parentName:"a"},"0c49051"))),(0,n.kt)("li",{parentName:"ul"},"Use 1.5 rem ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1125cd7c65332fc5961ffbbbd2d2ab6bcc8b1b5b"},(0,n.kt)("inlineCode",{parentName:"a"},"1125cd7")))),(0,n.kt)("h3",{id:"050---2022-06-11"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.4.5...0.5.0"},"0.5.0")," - 2022-06-11"),(0,n.kt)("h4",{id:"-new-features-21"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(hero): added storybook implementation of hero component #172 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/17b9d1693e31bf7b3b41ca84be7bd21f07065674"},(0,n.kt)("inlineCode",{parentName:"a"},"17b9d16"))),(0,n.kt)("li",{parentName:"ul"},"feat(hero): add hero block component and stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6019fc843ec14a8afc7558e92c2d4b4bb14ee199"},(0,n.kt)("inlineCode",{parentName:"a"},"6019fc8")))),(0,n.kt)("h4",{id:"-bug-fixes-32"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(header): Internal links in mega menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d8ca13558c3e8c336800791f2fea8a8d33a2b602"},(0,n.kt)("inlineCode",{parentName:"a"},"d8ca135"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): show active menu when clicking on children ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a54fa67a1a92e2ab4216e6d149f66e1ee53aab89"},(0,n.kt)("inlineCode",{parentName:"a"},"a54fa67"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): accessibility and dropdown possition fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/505ac36a27d86e620fb5af515a0b8b5979610f0a"},(0,n.kt)("inlineCode",{parentName:"a"},"505ac36"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): fix accessibility issue by David ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/783dcec0d140e6e6e568d0f82833dcbf8a5c7d3d"},(0,n.kt)("inlineCode",{parentName:"a"},"783dcec"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): dropdowns disappear on resize ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/52338fd3e711f4918612e052dc2034a8d9bd40bd"},(0,n.kt)("inlineCode",{parentName:"a"},"52338fd"))),(0,n.kt)("li",{parentName:"ul"},"fix(header-topdropdown): dedupe html elements for topdropdowns ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cd8a2a7ea091e81b736438f7c2a87c254af1b092"},(0,n.kt)("inlineCode",{parentName:"a"},"cd8a2a7"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): transparency class should apply on the current bg color or image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f9a0033c5538cb19f08f26cf28d47954cc52607d"},(0,n.kt)("inlineCode",{parentName:"a"},"f9a0033"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): mobile dropdown now visible ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/34371b436f2ec100f3920f78de49983ba16679b0"},(0,n.kt)("inlineCode",{parentName:"a"},"34371b4"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): dropdown disappears after window resize #116 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fc7dd8bd7911421fb734a696a2dd5d3ad3b652b0"},(0,n.kt)("inlineCode",{parentName:"a"},"fc7dd8b"))),(0,n.kt)("li",{parentName:"ul"},"fix(header-topdropdown): dedupe html dropdown elements for topdropdowns #115 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f10a7a8743a5fb2cecd0c3374ec9d894e914143f"},(0,n.kt)("inlineCode",{parentName:"a"},"f10a7a8")))),(0,n.kt)("h4",{id:"-enhancements-44"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): update mega menu in header component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2d1ce454553d116efa96288079b8b77649e10abb"},(0,n.kt)("inlineCode",{parentName:"a"},"2d1ce45"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update structure and variables of top bar ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af709094f94f0cc2e2309b1aedb376e45dc7f136"},(0,n.kt)("inlineCode",{parentName:"a"},"af70909"))),(0,n.kt)("li",{parentName:"ul"},"change(header): renamed mega menu items href attribute to url ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ed8144589f87a9ad219c97193863c999a72cb6d"},(0,n.kt)("inlineCode",{parentName:"a"},"3ed8144"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update main section and and add color variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2f0fd1de7c04eff4b2a9b62d03dd13a1b0d69bc"},(0,n.kt)("inlineCode",{parentName:"a"},"f2f0fd1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): minor updates on colors and widths ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a70129fd929fedb344a47e049cca94274e84a3b1"},(0,n.kt)("inlineCode",{parentName:"a"},"a70129f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero): add full-heigh control to adjust height ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a45cb7c599cdc11426207001e67d8f7d727233fe"},(0,n.kt)("inlineCode",{parentName:"a"},"a45cb7c"))),(0,n.kt)("li",{parentName:"ul"},"change(header): disable sticky setting until feature is more stable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1d7af954c85cb6a8a657c1625e4ae863e562346a"},(0,n.kt)("inlineCode",{parentName:"a"},"1d7af95"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero):make button variant and inverted different button controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e182ca9ecdb76507205d84f83cad6a79dd74a03"},(0,n.kt)("inlineCode",{parentName:"a"},"7e182ca"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header):main bar sticky on scroll up ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9c9e7c6f9651c0663a1eab1856d7324a73afb2de"},(0,n.kt)("inlineCode",{parentName:"a"},"9c9e7c6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(headings): update heading sizes for mobile ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19f3ccacaf2c744b5f5c2ec8635773de7ef0016b"},(0,n.kt)("inlineCode",{parentName:"a"},"19f3cca"))),(0,n.kt)("li",{parentName:"ul"},"change(header): hide first link(home) from header menu on site ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ae7f3b9385620eb3d840dd90f512e37cd8556a6d"},(0,n.kt)("inlineCode",{parentName:"a"},"ae7f3b9"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): typo correction and key setting on list.items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/96d2c4fbfa722d22a215e8d27f1400e65fe9476e"},(0,n.kt)("inlineCode",{parentName:"a"},"96d2c4f"))),(0,n.kt)("li",{parentName:"ul"},"change(header): use Link instead of a tag for menu items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9812b3fba7b8305399d6972daf135b8a2d88e876"},(0,n.kt)("inlineCode",{parentName:"a"},"9812b3f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add control for inverted logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/023ca45e6f263166211cbea0d63b1938d11221da"},(0,n.kt)("inlineCode",{parentName:"a"},"023ca45"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero): move quoted utility to h2 tag ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7376676b4875494f16c49945f6b5dac19c6b8009"},(0,n.kt)("inlineCode",{parentName:"a"},"7376676"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add link for menu title inside desktop mega menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24355d000b2bd808b2031cd2b78e60cafb9ad5b1"},(0,n.kt)("inlineCode",{parentName:"a"},"24355d0"))),(0,n.kt)("li",{parentName:"ul"},"refactor(utilities): update hex with color token ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8dc65ef55a62dcb32b6eb8a684524a8dc1fa6ba6"},(0,n.kt)("inlineCode",{parentName:"a"},"8dc65ef"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): and mega menu to latest spec #114 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/44fcf68be242f97ced852b28ac3ab820dc0e1045"},(0,n.kt)("inlineCode",{parentName:"a"},"44fcf68"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update search input and file endings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/afab36f96f245e197eff528cb1d9e6fea45bc7ba"},(0,n.kt)("inlineCode",{parentName:"a"},"afab36f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add control that toggles transparency class on main section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8d4bdb9c527f102ffd3718f32bf1a43309a9bb4"},(0,n.kt)("inlineCode",{parentName:"a"},"b8d4bdb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): restore union dropdown after implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e98bab497ee10ad89d2dfed76c7117b633206fe"},(0,n.kt)("inlineCode",{parentName:"a"},"7e98bab"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): minor responsive fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/16a000634505c9e8f8b310860a30b62798a0fb87"},(0,n.kt)("inlineCode",{parentName:"a"},"16a0006"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero): align hero's text and meta seperately ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4fa958f7c7cc6d331a8eb7aaf25dc44d6cd3632a"},(0,n.kt)("inlineCode",{parentName:"a"},"4fa958f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero):add button variant controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f362a7b2ec273131fa0876f23b74c740c7217b3a"},(0,n.kt)("inlineCode",{parentName:"a"},"f362a7b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update search input ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/368962eabb668e2ec1bdcd18ae81658e7b1d911b"},(0,n.kt)("inlineCode",{parentName:"a"},"368962e"))),(0,n.kt)("li",{parentName:"ul"},"change(header): mark top level active menu item ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/665c449bc2667cc1471a4b97923c897ad3506792"},(0,n.kt)("inlineCode",{parentName:"a"},"665c449"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero):prettier & style changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d84688440417a430afd9fd24f4c8cfeef0121203"},(0,n.kt)("inlineCode",{parentName:"a"},"d846884"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add control for main section stickiness ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2f07572f78074137e7e6a49585273210ed5cedcb"},(0,n.kt)("inlineCode",{parentName:"a"},"2f07572"))),(0,n.kt)("li",{parentName:"ul"},"change(header): use viewport width for changing mobile text in header dropdowns ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b50fa585c0abeedc04a46395f08e50a9e112c430"},(0,n.kt)("inlineCode",{parentName:"a"},"b50fa58"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add fluid font sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f2743e39107fd1bd00a54e03bf92963eb9853f2"},(0,n.kt)("inlineCode",{parentName:"a"},"5f2743e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header) add position sticky & transparent for main section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/29df772edfe23b1752aa3d184659eea90c3c9221"},(0,n.kt)("inlineCode",{parentName:"a"},"29df772"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero): update variables with new design tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1d9792231c50f12fd68364e201054f6ab0926665"},(0,n.kt)("inlineCode",{parentName:"a"},"1d97922"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Language List): render language dropdown as ul and li elements ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3617442da78af07d3f473d0c43c47dd48c9b2ac3"},(0,n.kt)("inlineCode",{parentName:"a"},"3617442"))),(0,n.kt)("li",{parentName:"ul"},"change(header): introduced item class to the mega menu link content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/00ca376ea4cf1de4851e84567b97c374ee7f66e3"},(0,n.kt)("inlineCode",{parentName:"a"},"00ca376"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Language List): add less variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7ccc1ccf57419b6eecbf71d479db72b84428d43a"},(0,n.kt)("inlineCode",{parentName:"a"},"7ccc1cc"))),(0,n.kt)("li",{parentName:"ul"},"change(header): disabled active menu when clicking on globalnav links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3f7b5eedb038b51fbae8a14a683dc6adc919549b"},(0,n.kt)("inlineCode",{parentName:"a"},"3f7b5ee"))),(0,n.kt)("li",{parentName:"ul"},"change(header): target link instead of span directly ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9e865fbb5b256196756c3d84de397296ac0b447a"},(0,n.kt)("inlineCode",{parentName:"a"},"9e865fb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): remove unused imports ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e232db6ce0b2553be79d98d8497fa06f548b772"},(0,n.kt)("inlineCode",{parentName:"a"},"7e232db")))),(0,n.kt)("h4",{id:"\ufe0f-others-38"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Add item themes; override .block .ui.image width based on size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/06010db21398638d46d2e007317d72a7aff7e7d9"},(0,n.kt)("inlineCode",{parentName:"a"},"06010db"))),(0,n.kt)("li",{parentName:"ul"},"Move item icon themes to item.overrides ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/31e8921f4ee4d92ba3a9c58275b41dd3101cffd2"},(0,n.kt)("inlineCode",{parentName:"a"},"31e8921"))),(0,n.kt)("li",{parentName:"ul"},"Override only the width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8d4927084e5daedcb69e6f3a57cab73a9016a55f"},(0,n.kt)("inlineCode",{parentName:"a"},"8d49270"))),(0,n.kt)("li",{parentName:"ul"},"Override tile image in .block parrent ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/005655ddff6f45e211f1ff8156b0b7efa1e47a2e"},(0,n.kt)("inlineCode",{parentName:"a"},"005655d"))),(0,n.kt)("li",{parentName:"ul"},"Update package.json ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9dc38165a95deca1faf2dfccdc03fd6cab3d8c54"},(0,n.kt)("inlineCode",{parentName:"a"},"9dc3816"))),(0,n.kt)("li",{parentName:"ul"},"feature(item): added themes to item icons #190 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a6a2907df09575a18fb6e81dc52e8d6651eff118"},(0,n.kt)("inlineCode",{parentName:"a"},"a6a2907"))),(0,n.kt)("li",{parentName:"ul"},"update storybook header.topdropdown ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e58ac0821af56c06272e3373383647cbbff20978"},(0,n.kt)("inlineCode",{parentName:"a"},"e58ac08"))),(0,n.kt)("li",{parentName:"ul"},"use volto-screen-helper width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea156aad1100166ba78635163cfacdcfb913c1d4"},(0,n.kt)("inlineCode",{parentName:"a"},"ea156aa"))),(0,n.kt)("li",{parentName:"ul"},"Add divider content for metadata field in Banner ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/327ad1c5fdca0d376d04fd36084b940e5dd016ab"},(0,n.kt)("inlineCode",{parentName:"a"},"327ad1c"))),(0,n.kt)("li",{parentName:"ul"},"rename to viewportWidth ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32162e7c695774bbb68ac63a0008e8b148f1e9f5"},(0,n.kt)("inlineCode",{parentName:"a"},"32162e7"))),(0,n.kt)("li",{parentName:"ul"},"don't connect component to store ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/470b8bade5e8f2eaabb20a7bb02c8e82ca42f8a0"},(0,n.kt)("inlineCode",{parentName:"a"},"470b8ba"))),(0,n.kt)("li",{parentName:"ul"},"Add end of line ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51639d804a2b84f66373fb77c569bcc43b22e303"},(0,n.kt)("inlineCode",{parentName:"a"},"51639d8"))),(0,n.kt)("li",{parentName:"ul"},"behave as mobile under 480 only ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/11b99e15cb83245a32bb04f3937f5b95a60b1e95"},(0,n.kt)("inlineCode",{parentName:"a"},"11b99e1"))),(0,n.kt)("li",{parentName:"ul"},"make it account for all mobile-s,m,l ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/69e23ae8d12042f241dc53c9e296c340d5b17089"},(0,n.kt)("inlineCode",{parentName:"a"},"69e23ae")))),(0,n.kt)("h3",{id:"045---2022-06-08"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.4.4...0.4.5"},"0.4.5")," - 2022-06-08"),(0,n.kt)("h4",{id:"-enhancements-45"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(tabs): Add style for tabs accordion template #187 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fb8adbf84ac564a14d45bb6e8f4e1661811672d5"},(0,n.kt)("inlineCode",{parentName:"a"},"fb8adbf"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): avoid react error by providing key prop to grid column ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef0b1937d614a889a0c2117e483a834ed1aec1e3"},(0,n.kt)("inlineCode",{parentName:"a"},"ef0b193")))),(0,n.kt)("h4",{id:"\ufe0f-others-39"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Cleanup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4b9637ebd2d6c015f8d4323551c6cbc4b7506df"},(0,n.kt)("inlineCode",{parentName:"a"},"d4b9637"))),(0,n.kt)("li",{parentName:"ul"},"Add style for tabs accordion template ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a10998372a268b99991f7dda55103149f29d00cb"},(0,n.kt)("inlineCode",{parentName:"a"},"a109983")))),(0,n.kt)("h3",{id:"044---2022-06-08"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.4.3...0.4.4"},"0.4.4")," - 2022-06-08"),(0,n.kt)("h4",{id:"-new-features-22"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(divider): create story for divider ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b10a2e08b14962bed9f13317754f4124ee60d313"},(0,n.kt)("inlineCode",{parentName:"a"},"b10a2e0")))),(0,n.kt)("h4",{id:"-bug-fixes-33"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(divider): restore space between classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c595c152c144463f33757157ed7d6797ae31ceed"},(0,n.kt)("inlineCode",{parentName:"a"},"c595c15"))),(0,n.kt)("li",{parentName:"ul"},"fix(divider): Text colors and transform ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e524e1002bb0700ea69782cf5a95c6073ab383d2"},(0,n.kt)("inlineCode",{parentName:"a"},"e524e10"))),(0,n.kt)("li",{parentName:"ul"},"fix(footer): story aria labels for social media links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/254bdc7ba944943f5d08a71f9d0a3a31bdc06044"},(0,n.kt)("inlineCode",{parentName:"a"},"254bdc7")))),(0,n.kt)("h4",{id:"-enhancements-46"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update logos and less structure ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/66b8e0f12825968d94f7d572f2823d9a8a3a239b"},(0,n.kt)("inlineCode",{parentName:"a"},"66b8e0f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): first footer updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d18a2ee59d0deb143075d8dfeb949898ad1f6399"},(0,n.kt)("inlineCode",{parentName:"a"},"d18a2ee"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): logo updates and adjustments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/101bc9dfe4136240457f335de867a83c28d59339"},(0,n.kt)("inlineCode",{parentName:"a"},"101bc9d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): use tokens and adjust spacing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2cb166949913f725271050e863b38e7630748135"},(0,n.kt)("inlineCode",{parentName:"a"},"2cb1669"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): moved SubFooter logic to SubFooter.jsx from Footer story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/902383a0bb3446dc69237099bd429ead5e30a6c1"},(0,n.kt)("inlineCode",{parentName:"a"},"902383a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Divider):add divider with content inside story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2d66dca901fa189d69b65239dc34b1969097be8"},(0,n.kt)("inlineCode",{parentName:"a"},"e2d66dc"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): added managed by section as properties ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9328fc3084baf22439e1892d256d9a167b911849"},(0,n.kt)("inlineCode",{parentName:"a"},"9328fc3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(divider): remove custom divider ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4870d2252ad216e82213fa1f94cc39609ae676d"},(0,n.kt)("inlineCode",{parentName:"a"},"d4870d2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Divider_:remove green color class & add tertiary ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/95f30186bc1768e08f00ad7d5ffa2a70402ac553"},(0,n.kt)("inlineCode",{parentName:"a"},"95f3018"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): use remix icons for social links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5ef9aa2cebb6f96857a1920cefbf7e367b4d7c28"},(0,n.kt)("inlineCode",{parentName:"a"},"5ef9aa2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Divider):remove clean class and use fitted prop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8d2be350dcc44fd56b5fbfb791fb6b2a45bd8a52"},(0,n.kt)("inlineCode",{parentName:"a"},"8d2be35"))),(0,n.kt)("li",{parentName:"ul"},"change(Divider): Rename color property to theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0deffc823609d23131a85bc180e4a3f5a67a64aa"},(0,n.kt)("inlineCode",{parentName:"a"},"0deffc8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update links and logo align ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7afbab9b37982a557ac8bfa4430205ce912c3b8b"},(0,n.kt)("inlineCode",{parentName:"a"},"7afbab9"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): tweaked column sizes to the values before my changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fdf271868e44bce2904cc28c6fa924ee4c9ba759"},(0,n.kt)("inlineCode",{parentName:"a"},"fdf2718"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): to latest figma design #182 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e0ba2b659db9dc1b140d853840a06bd3ce31cab"},(0,n.kt)("inlineCode",{parentName:"a"},"3e0ba2b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): move subfooter logic to the proper component #185 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/303457719128c9699dd34939bd8db2b647977667"},(0,n.kt)("inlineCode",{parentName:"a"},"3034577"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b0b872b1415c9792a5886f619195f9c0471ea564"},(0,n.kt)("inlineCode",{parentName:"a"},"b0b872b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(testimonial): update divider ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/784450abdf395318fe89d8d3d0a1e398393cc93c"},(0,n.kt)("inlineCode",{parentName:"a"},"784450a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(testimonial): changed divider color to secondary ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/84282f960ab22ccb8403e975c055c61d1023193a"},(0,n.kt)("inlineCode",{parentName:"a"},"84282f9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(divider): remove custom divider from theme config ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a0409e8df3c9ba043717140455369a3630f0da85"},(0,n.kt)("inlineCode",{parentName:"a"},"a0409e8")))),(0,n.kt)("h4",{id:"-documentation-changes-14"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(divider): switch to secondary color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/239844be374a2f6bc4667e7ab3d2f52bfdc181ad"},(0,n.kt)("inlineCode",{parentName:"a"},"239844b"))),(0,n.kt)("li",{parentName:"ul"},"docs(divider): showcase path fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5ea03f60034edc918054aa273e44b84b2537716"},(0,n.kt)("inlineCode",{parentName:"a"},"d5ea03f")))),(0,n.kt)("h4",{id:"\ufe0f-others-40"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Remove unnecessary spaces ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d137981430809345bfb3ad494e7ab981c93c3e51"},(0,n.kt)("inlineCode",{parentName:"a"},"d137981"))),(0,n.kt)("li",{parentName:"ul"},"lint fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/657cf4ed917c4ff992aa033c3d9f4884a949d86d"},(0,n.kt)("inlineCode",{parentName:"a"},"657cf4e"))),(0,n.kt)("li",{parentName:"ul"},"perf(storybook): added storybook favicon ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/38eabc3124c85dd56bf5c68c0fb1e967c39055ec"},(0,n.kt)("inlineCode",{parentName:"a"},"38eabc3")))),(0,n.kt)("h3",{id:"043---2022-06-03"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.4.2...0.4.3"},"0.4.3")," - 2022-06-03"),(0,n.kt)("h4",{id:"-bug-fixes-34"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(edit): Fix columns/accordion inner toolbar padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fafbb525baa60c339906dc6a33d2f9418d050be6"},(0,n.kt)("inlineCode",{parentName:"a"},"fafbb52")))),(0,n.kt)("h4",{id:"-enhancements-47"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): completed removal of description from guides ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/42424b9213ece8d8df84d40f1b73e142cb0ffc6b"},(0,n.kt)("inlineCode",{parentName:"a"},"42424b9")))),(0,n.kt)("h3",{id:"042---2022-06-02"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.4.1...0.4.2"},"0.4.2")," - 2022-06-02"),(0,n.kt)("h4",{id:"-enhancements-48"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): moved color swatches around in the color guide ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8a395fce52a32cf92449a24d3d4cce5abf25a284"},(0,n.kt)("inlineCode",{parentName:"a"},"8a395fc"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): removed description from components and introduced category listing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f220bf0785f5aaede8c25c4164120b09de67b018"},(0,n.kt)("inlineCode",{parentName:"a"},"f220bf0"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): rename gap to space and added em spaces ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f5b042d311518ec3fb32c7f259c39ff62d4547f8"},(0,n.kt)("inlineCode",{parentName:"a"},"f5b042d"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): moved extra docs to webdev section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1ce0797b91418272e4e405467cd1468292620005"},(0,n.kt)("inlineCode",{parentName:"a"},"1ce0797"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): moved md_components files into webdev/md_components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/73c1c08a270d504fa6f2ba2579bcb3e6e25fb112"},(0,n.kt)("inlineCode",{parentName:"a"},"73c1c08"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): added category yml for all sections ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/17405728e3f44828da50890b9fc0f4e8a07f8bf2"},(0,n.kt)("inlineCode",{parentName:"a"},"1740572"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): color guideline updates and spacing tokens documentation #148 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c1154ba172c3b3b40b565c2bcb590f1a5e6b25a4"},(0,n.kt)("inlineCode",{parentName:"a"},"c1154ba"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): modified story links to avoid broken usage tabs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/78dc8d8f4e7cade3ab0e911e6dc002eefc1e7986"},(0,n.kt)("inlineCode",{parentName:"a"},"78dc8d8"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): renamed several file id's so that they match the incremental naming sequence ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/11299c9a4c41ca901926f852227dbca0bc1aee17"},(0,n.kt)("inlineCode",{parentName:"a"},"11299c9")))),(0,n.kt)("h4",{id:"-documentation-changes-15"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(Docusaurus): timeline, testimonial, quote and tags ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aaa54ecbe182872ffc7fff275d5065ebe790d348"},(0,n.kt)("inlineCode",{parentName:"a"},"aaa54ec"))),(0,n.kt)("li",{parentName:"ul"},"docs(spacing): add relative gap tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/92abc8fff2c7006e2c64684048e7783216a230bb"},(0,n.kt)("inlineCode",{parentName:"a"},"92abc8f"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): updated colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a28c99e60867c1eaa1b7b68d4154ccaa8c9ef958"},(0,n.kt)("inlineCode",{parentName:"a"},"a28c99e"))),(0,n.kt)("li",{parentName:"ul"},"docs(tags/content): new page about tags and content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/60be40268a77606c53fc45641bc22166b50b75e7"},(0,n.kt)("inlineCode",{parentName:"a"},"60be402"))),(0,n.kt)("li",{parentName:"ul"},"docs(Docusaurus): labeled icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6a0f61ede3a36c7d66d9b3091b93b0b5ff9a445"},(0,n.kt)("inlineCode",{parentName:"a"},"f6a0f61"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): add font size and line height tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ff65e47cfe56eb3efe976300b764ba13f8685ce"},(0,n.kt)("inlineCode",{parentName:"a"},"2ff65e4"))),(0,n.kt)("li",{parentName:"ul"},"docs(spacing): add spacing gap tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2d53727f8e817588421efea464e849c9f9e16dce"},(0,n.kt)("inlineCode",{parentName:"a"},"2d53727"))),(0,n.kt)("li",{parentName:"ul"},"docs(spacing): add missing gaps ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/442db468830150c8e4ad5f91775fc5b3c47dd655"},(0,n.kt)("inlineCode",{parentName:"a"},"442db46"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): minor fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e66513f08cff598881ce1051b482ddadf8e0593"},(0,n.kt)("inlineCode",{parentName:"a"},"6e66513"))),(0,n.kt)("li",{parentName:"ul"},"docs(spacing): aligned images ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e946fe59457b861a31939e99adf4b380777e01e0"},(0,n.kt)("inlineCode",{parentName:"a"},"e946fe5"))),(0,n.kt)("li",{parentName:"ul"},"docs(spacing): new image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fcd3294d53db76580b8bffc9678a09fd65b33113"},(0,n.kt)("inlineCode",{parentName:"a"},"fcd3294")))),(0,n.kt)("h4",{id:"\ufe0f-others-41"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"merge changes from develop into docusaurus token documentation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a9401384ddf5fcfbf29e50d34f3d7851be85f19a"},(0,n.kt)("inlineCode",{parentName:"a"},"a940138"))),(0,n.kt)("li",{parentName:"ul"},"perf(docs): restructuring order ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f4134d81d1cc59b8ba0d8669415b5eb31c0513d"},(0,n.kt)("inlineCode",{parentName:"a"},"8f4134d")))),(0,n.kt)("h3",{id:"041---2022-06-02"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.4.0...0.4.1"},"0.4.1")," - 2022-06-02"),(0,n.kt)("h4",{id:"-new-features-23"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(languageLabeledIcon) : add new component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/110558eeec37d5b5f616a95298a313ba230dd6f4"},(0,n.kt)("inlineCode",{parentName:"a"},"110558e"))),(0,n.kt)("li",{parentName:"ul"},"feat(LanguageLabeledIcon):add new component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d00200c278e1dab02b449b460a325e0f2e7b8ccd"},(0,n.kt)("inlineCode",{parentName:"a"},"d00200c"))),(0,n.kt)("li",{parentName:"ul"},"feat(newTabLabeledIcon) : add new component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f5cd31257a306a58c1d9cdbf7cb428701412369"},(0,n.kt)("inlineCode",{parentName:"a"},"8f5cd31"))),(0,n.kt)("li",{parentName:"ul"},"feat(labeledIconGroup) : add new component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/787d648342d78c4f9d28fde9d08e83089ef7b08f"},(0,n.kt)("inlineCode",{parentName:"a"},"787d648"))),(0,n.kt)("li",{parentName:"ul"},"feat(DownLoadLabeledIcon) : add new component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6ea2fa1ec17ce235401a8ac741afa8fede920d26"},(0,n.kt)("inlineCode",{parentName:"a"},"6ea2fa1")))),(0,n.kt)("h4",{id:"-bug-fixes-35"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(LabeledIcon) : fix lint errors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91b042f8c16bd3e99659c1c24a5f2a946c72b03f"},(0,n.kt)("inlineCode",{parentName:"a"},"91b042f"))),(0,n.kt)("li",{parentName:"ul"},"fix(LabeledIconGroup) : fix links for tests ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/daa10653ca37f3e83302e2ebcc566b5f5ec4c4d9"},(0,n.kt)("inlineCode",{parentName:"a"},"daa1065"))),(0,n.kt)("li",{parentName:"ul"},"fix(LanguageLabeledIcon):bug fix & languages change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1436e2bc270f8f079f07b7909254bd2e6e087084"},(0,n.kt)("inlineCode",{parentName:"a"},"1436e2b"))),(0,n.kt)("li",{parentName:"ul"},"fix(LabeledIconGroup):fix based on Langauge & Download Labeled icon components changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3015864ce740f534aa204402f85a9f392e342513"},(0,n.kt)("inlineCode",{parentName:"a"},"3015864"))),(0,n.kt)("li",{parentName:"ul"},"fix(newTabLabeledIcon) : add link item ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b1a9ada3dd7dae9e1841cfde5319a6ab37b15de2"},(0,n.kt)("inlineCode",{parentName:"a"},"b1a9ada"))),(0,n.kt)("li",{parentName:"ul"},"fix(Labeled Icons):minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/00f3022cdc2bfad634707f0d6d05768868f599be"},(0,n.kt)("inlineCode",{parentName:"a"},"00f3022")))),(0,n.kt)("h4",{id:"-enhancements-49"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcons): adjust new tab labeled icon to figma and replace px with rems ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/904615d789ea711678f43ce9f9d02a450289031f"},(0,n.kt)("inlineCode",{parentName:"a"},"904615d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(LanguageLabeledIcon):implement with pop up ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0f3dd8f0388484f94351a0ab0798ab53e84c9229"},(0,n.kt)("inlineCode",{parentName:"a"},"0f3dd8f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcon): add group wrapper in labeled icon stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4b7dd314230145b6239fd800d41f546ab5d9eebb"},(0,n.kt)("inlineCode",{parentName:"a"},"4b7dd31"))),(0,n.kt)("li",{parentName:"ul"},"refactor(DownloadLabeledIcon):implement with pop up ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aa61f9b7d449c08c08bc4c004da6a0458598c828"},(0,n.kt)("inlineCode",{parentName:"a"},"aa61f9b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcons): adjust language labeled icon to figma ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5741e3d2e95665ef12670335b12d29cfbf998fdc"},(0,n.kt)("inlineCode",{parentName:"a"},"5741e3d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcons): adjust download icon to figma and replace px with rems ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ae85307a62526fed75ef0b1d37ad59076370b5a"},(0,n.kt)("inlineCode",{parentName:"a"},"4ae8530"))),(0,n.kt)("li",{parentName:"ul"},"refactor(LanguageLabeledIcons):minor storybook change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/78f55442a80cbc2f716ba81274ed08204e3c502a"},(0,n.kt)("inlineCode",{parentName:"a"},"78f5544"))),(0,n.kt)("li",{parentName:"ul"},"refactor(LanguageLabeledIcon): set language code to uppercase and minor storybook change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac286931282c0a69bc6d7803e96cbe302db8994f"},(0,n.kt)("inlineCode",{parentName:"a"},"ac28693"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcon): adjust paddings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9c1ecddc52c81be1d952d0af67862a284eba9eec"},(0,n.kt)("inlineCode",{parentName:"a"},"9c1ecdd"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcons): update margins for group labeled icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5fa5ca9103a5d8ad1510c90cc8c46d0c82abcc63"},(0,n.kt)("inlineCode",{parentName:"a"},"5fa5ca9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcons): add variable for icon color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f9d3cba5115c5c91aaaca49c1f834950400673a"},(0,n.kt)("inlineCode",{parentName:"a"},"9f9d3cb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcons): update colors on download links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c04264229c91bfdea927fd22f4ee1e8ddbcebd5c"},(0,n.kt)("inlineCode",{parentName:"a"},"c042642")))),(0,n.kt)("h4",{id:"-internal-changes-16"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(labeledIconGroup) : lint changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/535cee4795dff75b35856cb4406a9bd33ee07ca4"},(0,n.kt)("inlineCode",{parentName:"a"},"535cee4"))),(0,n.kt)("li",{parentName:"ul"},"style(downloadLabeledIcon) : fix styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d8e3acb3bac1a4174d4bb526d6188cb5e5f8faa"},(0,n.kt)("inlineCode",{parentName:"a"},"6d8e3ac"))),(0,n.kt)("li",{parentName:"ul"},"style(downloadLabeledIcon) : fix alignment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/455801701d2958515885ba2c398312f0c56057b0"},(0,n.kt)("inlineCode",{parentName:"a"},"4558017"))),(0,n.kt)("li",{parentName:"ul"},"chore(LabeledIconGroup) : lint changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab364763bb2526adbbb7fc3c656a16b497568940"},(0,n.kt)("inlineCode",{parentName:"a"},"ab36476")))),(0,n.kt)("h3",{id:"040---2022-06-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.3.1...0.4.0"},"0.4.0")," - 2022-06-01"),(0,n.kt)("h4",{id:"-new-features-24"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(Carousel): create carousel for cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2b0d73798b4fcbf2897d7a8167d9b4d3b3374fb2"},(0,n.kt)("inlineCode",{parentName:"a"},"2b0d737"))),(0,n.kt)("li",{parentName:"ul"},"feat(ItemwithIcons): Initial Item group with icons, new item variation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7f4ea476264856845a07cd24be6ec86ccd21ed8d"},(0,n.kt)("inlineCode",{parentName:"a"},"7f4ea47"))),(0,n.kt)("li",{parentName:"ul"},"feat(utilities): add file and basic utilities ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/05c88b294a49590e3fb355fb6e113f5020442915"},(0,n.kt)("inlineCode",{parentName:"a"},"05c88b2"))),(0,n.kt)("li",{parentName:"ul"},"feat(utilities): add file with basic utilities classes #173 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/855185ff22c77efb75cc5c7850d181254b4c4927"},(0,n.kt)("inlineCode",{parentName:"a"},"855185f")))),(0,n.kt)("h4",{id:"-bug-fixes-36"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(tokens): hsla function for shadows ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8e5d37a6e88321b1e2daf995b407c4ddd6e866e"},(0,n.kt)("inlineCode",{parentName:"a"},"b8e5d37"))),(0,n.kt)("li",{parentName:"ul"},"fix(tokens): remove css var from less file ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a9c422476b412287713a6b475406615c3aed2aca"},(0,n.kt)("inlineCode",{parentName:"a"},"a9c4224"))),(0,n.kt)("li",{parentName:"ul"},"fix(carousel):add storybook controls descriptions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/269a60383ed1e54fc57e26d4eed6b37d1da32236"},(0,n.kt)("inlineCode",{parentName:"a"},"269a603"))),(0,n.kt)("li",{parentName:"ul"},"fix(item): remove image width css from item.less ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7b21cb2d5ddf6a6f72646f47fd268a0bd7af757d"},(0,n.kt)("inlineCode",{parentName:"a"},"7b21cb2"))),(0,n.kt)("li",{parentName:"ul"},"fix(table): Set responsive breakpoint to @tabletBreakpoint ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/067e01842030bfa5639e2a55cb8af5047bb2996f"},(0,n.kt)("inlineCode",{parentName:"a"},"067e018")))),(0,n.kt)("h4",{id:"-enhancements-50"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(item): import item.less in theme definitions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c51637480192dbece828616010174648ac865e2e"},(0,n.kt)("inlineCode",{parentName:"a"},"c516374"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Label):add corner,ribbon & basic label stories and styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2bbbb947113a59127f91b86917ef0edbf36ab16"},(0,n.kt)("inlineCode",{parentName:"a"},"e2bbbb9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Label):style changes based on label importance class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce4d5d1a5bf1b1183242a253e37c509d61f82b8c"},(0,n.kt)("inlineCode",{parentName:"a"},"ce4d5d1"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): rename gap to space and added em spaces ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/719efc44070ef87f049a92e4da96bb111e9fc8ff"},(0,n.kt)("inlineCode",{parentName:"a"},"719efc4"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): add classes for size, set default to tile and add controls for grouped items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5a0405abba4e5f5d36f899dc9e47f43a96d5e49"},(0,n.kt)("inlineCode",{parentName:"a"},"d5a0405"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): add borders, shadows, shapes and z-index tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7069106c2b0ada9cdbad63249b4ada7fde72e05f"},(0,n.kt)("inlineCode",{parentName:"a"},"7069106"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): name spacing tokens gaps and added missing values up to 80px as documented ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9fbd912a6f027150149d82678f88885a939120b0"},(0,n.kt)("inlineCode",{parentName:"a"},"9fbd912"))),(0,n.kt)("li",{parentName:"ul"},"refactor(quote): Rename sourceInfo to extra info ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/76c2b400de4814fe79f303bfd2a82842c848231c"},(0,n.kt)("inlineCode",{parentName:"a"},"76c2b40"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): WIP replacing unstackable with row ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e3a44de4b2dd26667e80e0d131c55b08f3c527d9"},(0,n.kt)("inlineCode",{parentName:"a"},"e3a44de"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tocens): add color design tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/13bb165e103a25aadb9da6414773dc0d35081d88"},(0,n.kt)("inlineCode",{parentName:"a"},"13bb165"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): adjust margins to match figma designs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6334581b336a2f486e85199f371126beea47b92f"},(0,n.kt)("inlineCode",{parentName:"a"},"6334581"))),(0,n.kt)("li",{parentName:"ul"},"refactor(carousel): remove title from story and color on card hover ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/12a1d7c3bd5e7ba6edf4eb20a2d7a6f8f22955f9"},(0,n.kt)("inlineCode",{parentName:"a"},"12a1d7c"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): updated sizes with 4-8-16px increments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f53d655df2b24053a5d331c56dfd14bd3602dfd"},(0,n.kt)("inlineCode",{parentName:"a"},"1f53d65"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): added size tokens to be used for width of elements ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cda5dea1f6ad1ae980c89999d323d7b385894025"},(0,n.kt)("inlineCode",{parentName:"a"},"cda5dea"))),(0,n.kt)("li",{parentName:"ul"},"change(utilities): values need important rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/96150d9a22cb6be6f338f1e9d052cbd65e3602fc"},(0,n.kt)("inlineCode",{parentName:"a"},"96150d9"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): added also rem space values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aedbbddaf7f8be88ed2f8a2b8c21b60752896c53"},(0,n.kt)("inlineCode",{parentName:"a"},"aedbbdd"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): updated z-index tokens with negative values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/404efe4244d67276b435e60a1d7a69aaa90e3d8a"},(0,n.kt)("inlineCode",{parentName:"a"},"404efe4"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): add 14px font size token ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8d8695dce62e7f29af01447308460e4fe3f72b21"},(0,n.kt)("inlineCode",{parentName:"a"},"8d8695d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): restructured and improved sections navigation #174 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b47b0266ffd6baeaf1a5aea1a7ab22c909976de1"},(0,n.kt)("inlineCode",{parentName:"a"},"b47b026"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): add 12 and 14px font size token #176 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/368114729536f03dd85c2d3565b984c3bdfe3a72"},(0,n.kt)("inlineCode",{parentName:"a"},"3681147"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): remove conditional border radius ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f0fe5ada7b74e9c87623dd2b2774283dd89b9a58"},(0,n.kt)("inlineCode",{parentName:"a"},"f0fe5ad")))),(0,n.kt)("h4",{id:"-documentation-changes-16"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(website): created new sections, improved website navigation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/243f0be4d7fa6e988da0ca0f586f5ea478573eef"},(0,n.kt)("inlineCode",{parentName:"a"},"243f0be"))),(0,n.kt)("li",{parentName:"ul"},"docs(homepage): adding design system homepage with links for upcoming sections ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c9a968508acff74d1182e68cf049046dafd564c5"},(0,n.kt)("inlineCode",{parentName:"a"},"c9a9685"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): copyedit, improved navigation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/998762a5bd40d08f619c00743b66d82b43aed653"},(0,n.kt)("inlineCode",{parentName:"a"},"998762a"))),(0,n.kt)("li",{parentName:"ul"},"docs(website): restructuring, moved current DS docs to new folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8bb612f1313dfc739d7912aa2e3252f468e1122f"},(0,n.kt)("inlineCode",{parentName:"a"},"8bb612f"))),(0,n.kt)("li",{parentName:"ul"},"docs(homepage): copy editing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee37d6f1d282b973af744f4305c0eb94c0993113"},(0,n.kt)("inlineCode",{parentName:"a"},"ee37d6f")))),(0,n.kt)("h4",{id:"\ufe0f-others-42"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Release 0.4.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f4bc50928ab877f3670b181dbe6e8cfff7fa2daa"},(0,n.kt)("inlineCode",{parentName:"a"},"f4bc509"))),(0,n.kt)("li",{parentName:"ul"},"feature(homepage): added Item group with icons #167 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ec99f53aeb183b24073be4014a9c2ec30d5235c"},(0,n.kt)("inlineCode",{parentName:"a"},"2ec99f5"))),(0,n.kt)("li",{parentName:"ul"},"feature(tokens): added borders, z-index, shadows tokens #171 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/74c178837cedc7ee9fc55effde1096dc03245574"},(0,n.kt)("inlineCode",{parentName:"a"},"74c1788"))),(0,n.kt)("li",{parentName:"ul"},"feature(tokens): added initial color design tokens #169 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/da3eae05d07783aa5eadaed5d508ee3be8acc47d"},(0,n.kt)("inlineCode",{parentName:"a"},"da3eae0"))),(0,n.kt)("li",{parentName:"ul"},"perf(carousel): added slick library ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca9be5125efa864bc30a0178274d744c5b2bc500"},(0,n.kt)("inlineCode",{parentName:"a"},"ca9be51")))),(0,n.kt)("h3",{id:"031---2022-05-19"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.3.0...0.3.1"},"0.3.1")," - 2022-05-19"),(0,n.kt)("h4",{id:"-bug-fixes-37"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(input,segment): toggle inputs and padding fixes within Volto sidebar forms ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/de030d617325a8f9d028a5c1615faa160fcdd763"},(0,n.kt)("inlineCode",{parentName:"a"},"de030d6")))),(0,n.kt)("h4",{id:"-enhancements-51"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(login): restored width of login container to 376px ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0564293346b2402c3c86009b61066da4200662b8"},(0,n.kt)("inlineCode",{parentName:"a"},"0564293")))),(0,n.kt)("h3",{id:"030---2022-05-17"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.2.4...0.3.0"},"0.3.0")," - 2022-05-17"),(0,n.kt)("h4",{id:"-new-features-25"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(Callout):create Callout component with Blockquote style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3d486b1c2c7f74ee8bc4b3a5e1bf3993ac98f6dd"},(0,n.kt)("inlineCode",{parentName:"a"},"3d486b1"))),(0,n.kt)("li",{parentName:"ul"},"feat(callout): Align the Callout component with Volto slate component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e9343ff7008cd3d60700929e8861c7bdd06df4d3"},(0,n.kt)("inlineCode",{parentName:"a"},"e9343ff")))),(0,n.kt)("h4",{id:"-bug-fixes-38"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(testimonial): fix storybook arg names ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b9df52f7151ef759fd672d365b2d74f6db535ad0"},(0,n.kt)("inlineCode",{parentName:"a"},"b9df52f"))),(0,n.kt)("li",{parentName:"ul"},"fix(table): tweak responsive table for extra long headers ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7f9f9e25f7c57d4bf7edd2546a7579b892867b5c"},(0,n.kt)("inlineCode",{parentName:"a"},"7f9f9e2"))),(0,n.kt)("li",{parentName:"ul"},"fix(quote): fix color and padding issue ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/310d6b37bdf5df3da2d2103eab8f4fa5020c95ab"},(0,n.kt)("inlineCode",{parentName:"a"},"310d6b3"))),(0,n.kt)("li",{parentName:"ul"},"fix(accordion): Fix accordion active title color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/57af1650a0b830e01c79e21b130784190defbcc0"},(0,n.kt)("inlineCode",{parentName:"a"},"57af165"))),(0,n.kt)("li",{parentName:"ul"},"fix(testimonial): remove info arguement ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9593d95f6352fb5aea48c3611b27b4bc6a9ae7e4"},(0,n.kt)("inlineCode",{parentName:"a"},"9593d95")))),(0,n.kt)("h4",{id:"-enhancements-52"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(Table):add responsive mobile table story and styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aed69e698e5b89e33a4c331570755934267492af"},(0,n.kt)("inlineCode",{parentName:"a"},"aed69e6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(testimonial): adjust to volto design | fix avatar image size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/546070e494ad187c50913b5742dab49ce5475a84"},(0,n.kt)("inlineCode",{parentName:"a"},"546070e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Quote):rename Pullquote component to Quote ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9384a0c129b8e4eed637e51a9669c41d8ade69d4"},(0,n.kt)("inlineCode",{parentName:"a"},"9384a0c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Quote):rename Quote.Metadata to Quote.SourceInfo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dfae8b1c147659d24dfd1a13fb4c3098e5865a12"},(0,n.kt)("inlineCode",{parentName:"a"},"dfae8b1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Quote): rename Author to Source ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d400f6a0ec0062f58782b4e170f4a1a9a31c56c"},(0,n.kt)("inlineCode",{parentName:"a"},"6d400f6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Quote):move Testimonial component under Quote folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2467c2089577d67ef5689a2507cb860a837f6a0"},(0,n.kt)("inlineCode",{parentName:"a"},"e2467c2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(testimonial): readjust rounded card ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b41933417a44dabcf829a3346d91c142dd6472d3"},(0,n.kt)("inlineCode",{parentName:"a"},"b419334"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Table):wrap table with semantic ui container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24ac2bb4813df33547f684220e1e12af5ca6df7e"},(0,n.kt)("inlineCode",{parentName:"a"},"24ac2bb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Testimonial):minor storybook bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7b6d128c6be3b2481d4765cebca82af6cafbea05"},(0,n.kt)("inlineCode",{parentName:"a"},"7b6d128"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Callout): wrap story with semantic ui container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ead362d88f43fa1380e8be5481cbc38c055060f8"},(0,n.kt)("inlineCode",{parentName:"a"},"ead362d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(quote): update action name to match the functionality ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/caf2e359cada8056f280d2cd137776d64f82a2af"},(0,n.kt)("inlineCode",{parentName:"a"},"caf2e35"))),(0,n.kt)("li",{parentName:"ul"},"refactor(table): add borders to responsive table with celled attribute ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8a71a670fb34a11fbe4cef7365b91c6be84b5b54"},(0,n.kt)("inlineCode",{parentName:"a"},"8a71a67"))),(0,n.kt)("li",{parentName:"ul"},"change(table): make use of headerSortableWhiteSpace variable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fd836fbe82e92864a628bf4d9d3093674890f722"},(0,n.kt)("inlineCode",{parentName:"a"},"fd836fb"))),(0,n.kt)("li",{parentName:"ul"},"change(table): use the @mobileLandscapeBreakpoint for max 480px media query ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/90880ab324b6a66c7741819dd0d913504751454f"},(0,n.kt)("inlineCode",{parentName:"a"},"90880ab"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Quote):rename pullquote to Quote in Testimonial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f54da192ab3b0823b0d6c77254f8954ab94506c8"},(0,n.kt)("inlineCode",{parentName:"a"},"f54da19"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Testimonial): change card class name ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e995c32bc70780e4315c4dc02d6b6fa9a0c5b29d"},(0,n.kt)("inlineCode",{parentName:"a"},"e995c32"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Testimonial): prettier changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/904594b9814c3d8900656f0e4c8d3a99481efe94"},(0,n.kt)("inlineCode",{parentName:"a"},"904594b")))),(0,n.kt)("h4",{id:"\ufe0f-others-43"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feature(tokens): added tokens folder for design tokens we can use in the system ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a542172cfd84dde0286b4332e66a617a1f3d13bf"},(0,n.kt)("inlineCode",{parentName:"a"},"a542172"))),(0,n.kt)("li",{parentName:"ul"},"perf(lint): fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2ef3abb9daa8fee3dd103adc14246c412951427"},(0,n.kt)("inlineCode",{parentName:"a"},"f2ef3ab"))),(0,n.kt)("li",{parentName:"ul"},"Release 0.3.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8724b2809027b2e359dcd64e418a33cade4ad487"},(0,n.kt)("inlineCode",{parentName:"a"},"8724b28")))),(0,n.kt)("h3",{id:"024---2022-05-13"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.2.3...0.2.4"},"0.2.4")," - 2022-05-13"),(0,n.kt)("h4",{id:"-enhancements-53"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(segment): brought back overrides from pastanaga into our theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/14efd021f81898bb0f2d3f1a2e8677445420591a"},(0,n.kt)("inlineCode",{parentName:"a"},"14efd02"))),(0,n.kt)("li",{parentName:"ul"},"change(container): removed padding from containers restoring thus the defaults ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c2ed813cf2f7ce284e33f2e94e02ff16678c2d05"},(0,n.kt)("inlineCode",{parentName:"a"},"c2ed813"))),(0,n.kt)("li",{parentName:"ul"},"change(grid-story): added container as grid width is influenced by container width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/459f4813ee3c5325a3db22d417ac5f23063bd4d2"},(0,n.kt)("inlineCode",{parentName:"a"},"459f481"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumb): removed padding from breadcrumb added by container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5df5675a519085badc030416e5bb784a9f73321"},(0,n.kt)("inlineCode",{parentName:"a"},"c5df567"))),(0,n.kt)("li",{parentName:"ul"},"change(container): modified all outputted widths to align to grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f29cefa4bfee1fe50844c8450de39ef4b0915d4"},(0,n.kt)("inlineCode",{parentName:"a"},"9f29cef"))),(0,n.kt)("li",{parentName:"ul"},"change(breakpoints): restore Semantic UI breakpoints, adding extra needed values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e7f5b1e4fac6453458078bb02cdc66c328843b59"},(0,n.kt)("inlineCode",{parentName:"a"},"e7f5b1e"))),(0,n.kt)("li",{parentName:"ul"},"change(container): restore maxWidth to 100% now that the last value is 1120px ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8b55c58d3bbc8967b20de19a828aedd2f1473ee5"},(0,n.kt)("inlineCode",{parentName:"a"},"8b55c58"))),(0,n.kt)("li",{parentName:"ul"},"change(header): wrap header globalnav links useful for editing section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/10d4f56624510eb63155ab330dcf0475b0728ed4"},(0,n.kt)("inlineCode",{parentName:"a"},"10d4f56"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumb): added vertical variant to the breadcrumbs like we do in Volto ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f405f8437be6be221b055a41c5d391f4cc94385d"},(0,n.kt)("inlineCode",{parentName:"a"},"f405f84"))),(0,n.kt)("li",{parentName:"ul"},"change(breakpoints): added also contentBreakpoint for backward compatibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b6c9212378a37639e6154d8d8e837169bcbac8b5"},(0,n.kt)("inlineCode",{parentName:"a"},"b6c9212")))),(0,n.kt)("h4",{id:"\ufe0f-others-44"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"[JENKINSFILE]"," Add failure comment, no jenkins fail ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c325bf14f3fb0da150f2a56cda0a9f03d8d8a628"},(0,n.kt)("inlineCode",{parentName:"a"},"c325bf1"))),(0,n.kt)("li",{parentName:"ul"},"prettier changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/134da52549b9d5eac5a12b7ad3005073500ac2c4"},(0,n.kt)("inlineCode",{parentName:"a"},"134da52"))),(0,n.kt)("li",{parentName:"ul"},"[JENKINSFILE]"," format PR comments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/739438c64950c745d630d1998314a2bed595b23a"},(0,n.kt)("inlineCode",{parentName:"a"},"739438c"))),(0,n.kt)("li",{parentName:"ul"},"[JENKINSFILE]"," mention comment author in comment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/39a26aa1ff0f35e93e8df9f442c29c5ab79ff493"},(0,n.kt)("inlineCode",{parentName:"a"},"39a26aa"))),(0,n.kt)("li",{parentName:"ul"},"[JENKINSFILE]"," remove debug, add error per stage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/903eecdb6bcbb8d73cff5e447d80c85e2a2c906d"},(0,n.kt)("inlineCode",{parentName:"a"},"903eecd")))),(0,n.kt)("h3",{id:"023---2022-04-29"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.2.2...0.2.3"},"0.2.3")," - 2022-04-29"),(0,n.kt)("h4",{id:"-new-features-26"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(CallToAction):add feat call to action ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab53642f27c996f929ff871d0794add39bab6c23"},(0,n.kt)("inlineCode",{parentName:"a"},"ab53642")))),(0,n.kt)("h4",{id:"-enhancements-54"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(button): add container to stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6c02c1953e102f2d90ab23023d6b4dfc738ced2e"},(0,n.kt)("inlineCode",{parentName:"a"},"6c02c19"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tab): update vertical tab columns and content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b473fabee196a3ec420e29160448d2be3d1685cc"},(0,n.kt)("inlineCode",{parentName:"a"},"b473fab"))),(0,n.kt)("li",{parentName:"ul"},'refactor(call to action):render call to action with Button as="a" ',(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e7dfabfc2f006505b0f1c802dc6fb48611518bcb"},(0,n.kt)("inlineCode",{parentName:"a"},"e7dfabf"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button): update inverted button colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c822021ab37939632416ce74c0cc88a64b98a3c1"},(0,n.kt)("inlineCode",{parentName:"a"},"c822021"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Tab):scrollbar change in mobile & vertical tab fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0e34cbf459e67b6910217f30a44a1e81f33df622"},(0,n.kt)("inlineCode",{parentName:"a"},"0e34cbf"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): added icon class to share icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48e866e4251dd517c0477cd5a42cec1a98e2f16d"},(0,n.kt)("inlineCode",{parentName:"a"},"48e866e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Button): move button to forms folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/94996fcdf1ea7e55c63dd44e10edf1b44b9bdef5"},(0,n.kt)("inlineCode",{parentName:"a"},"94996fc"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Tab):minor change in secondary pointing menu variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/280b6c41a2107bccb38500f54eb5663ef62c7ae3"},(0,n.kt)("inlineCode",{parentName:"a"},"280b6c4")))),(0,n.kt)("h4",{id:"-documentation-changes-17"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(button): import call to action stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e4eed44e3519ae3dba7d16e252271a964fcb7a4b"},(0,n.kt)("inlineCode",{parentName:"a"},"e4eed44")))),(0,n.kt)("h3",{id:"022---2022-04-22"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.2.1...0.2.2"},"0.2.2")," - 2022-04-22"),(0,n.kt)("h4",{id:"-bug-fixes-39"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(publicationCard): restore line endings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/582859e0ab4fa969662d4cf3e60fe75b160f052a"},(0,n.kt)("inlineCode",{parentName:"a"},"582859e"))),(0,n.kt)("li",{parentName:"ul"},"fix(form): added back overrides from Pastanaga theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a3f7ff810cdeb55b009c2dadc6753d01bbd10d8c"},(0,n.kt)("inlineCode",{parentName:"a"},"a3f7ff8"))),(0,n.kt)("li",{parentName:"ul"},"fix(OrderedList) : add list only if sub list exists ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8acbc8d5a492b411b169b106ab64bb78563f891f"},(0,n.kt)("inlineCode",{parentName:"a"},"8acbc8d"))),(0,n.kt)("li",{parentName:"ul"},"fix(label): update highlight label color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d55bbb03a5d28b2f269c1a1ca447c67dcdc7a748"},(0,n.kt)("inlineCode",{parentName:"a"},"d55bbb0"))),(0,n.kt)("li",{parentName:"ul"},"fix(publication card): run prettier ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/81a5bfc123ce69c44562a5585e41a630fe0bbf5a"},(0,n.kt)("inlineCode",{parentName:"a"},"81a5bfc"))),(0,n.kt)("li",{parentName:"ul"},"fix(avatar) : fix naming convention for arg ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/84fc5fa8faa7887f45cd52e58aa6fa6f8b951d26"},(0,n.kt)("inlineCode",{parentName:"a"},"84fc5fa"))),(0,n.kt)("li",{parentName:"ul"},"fix(tab): restore mobile font sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/58f39be02a45ade92873b86597c33763379e0f44"},(0,n.kt)("inlineCode",{parentName:"a"},"58f39be"))),(0,n.kt)("li",{parentName:"ul"},"fix(addForm): add min height to add form and fixed block chooser overflow ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca4415d49b973378894ec9270501beafbefff776"},(0,n.kt)("inlineCode",{parentName:"a"},"ca4415d"))),(0,n.kt)("li",{parentName:"ul"},"fix(OrderedList): adjust margins to fourth sublists ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/663d384790920f164d51edb304c411275972fbb7"},(0,n.kt)("inlineCode",{parentName:"a"},"663d384"))),(0,n.kt)("li",{parentName:"ul"},"fix(dropdown): being hidden because of third party css ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d353dfd65e93d08a3c8584adeeebea50bf7efe8"},(0,n.kt)("inlineCode",{parentName:"a"},"7d353df"))),(0,n.kt)("li",{parentName:"ul"},"fix(modal): overflow hidden as clearfix of last child from modal ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4923f5165a0a7e8d2dd33ea4c35f9f951372909"},(0,n.kt)("inlineCode",{parentName:"a"},"b4923f5"))),(0,n.kt)("li",{parentName:"ul"},"fix(RelatedContent):fix merge conflict ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/adc34bfdac7d668aa27578eb2a4844c136e0360f"},(0,n.kt)("inlineCode",{parentName:"a"},"adc34bf"))),(0,n.kt)("li",{parentName:"ul"},"fix(button): labeled class needs to be placed after left or right keyword ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53d1204fe52665fe1023747da359d3100d45e58f"},(0,n.kt)("inlineCode",{parentName:"a"},"53d1204")))),(0,n.kt)("h4",{id:"-enhancements-55"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(card): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e10e3d610a313c4e1995676130e2677f0ebab070"},(0,n.kt)("inlineCode",{parentName:"a"},"e10e3d6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add card variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e16d05b4afa678b9089987b42a8257323a78093f"},(0,n.kt)("inlineCode",{parentName:"a"},"e16d05b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): remove stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0deb0cab6d7fd73957b149325960c266c33cdc6f"},(0,n.kt)("inlineCode",{parentName:"a"},"0deb0ca"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):delete primary and secondary card stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f95d227a026ecc34b29cc3e4938c3d13906cfd8"},(0,n.kt)("inlineCode",{parentName:"a"},"1f95d22"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Avatar) : remake avatar as card variant ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea77cdd1acafd2ea288f11074423705e5d6b7412"},(0,n.kt)("inlineCode",{parentName:"a"},"ea77cdd"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add styles for card variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7407bd30e722f2d7b1a9d75a8c7cf155bf1c4996"},(0,n.kt)("inlineCode",{parentName:"a"},"7407bd3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): add story with related content inside of a tab ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dca008a35b27e4a75c13ef965ab8764df0d3b357"},(0,n.kt)("inlineCode",{parentName:"a"},"dca008a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): Rename variables from avatar to rounded ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/be0131631cf8e303f4077fe93b6685fd6b34bf46"},(0,n.kt)("inlineCode",{parentName:"a"},"be01316"))),(0,n.kt)("li",{parentName:"ul"},"refactor(avatar): update less variables and layer structure ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f965db1dd17d90e7165f66d39fdda9016c2eae91"},(0,n.kt)("inlineCode",{parentName:"a"},"f965db1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(PublicationCard):remake publication card to be a semantic card variation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5a0c6ab21c22a53aa6e34fafecfae15a3d435391"},(0,n.kt)("inlineCode",{parentName:"a"},"5a0c6ab"))),(0,n.kt)("li",{parentName:"ul"},"change(button): simplified button styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fe892d6f2f59aecf3f9e8b04f18b55fb0d384021"},(0,n.kt)("inlineCode",{parentName:"a"},"fe892d6"))),(0,n.kt)("li",{parentName:"ul"},"change(button): simplified storybook naming and examples ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9a7df4f46c24a234dd8bb290336ac8e7d5c7422b"},(0,n.kt)("inlineCode",{parentName:"a"},"9a7df4f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Avatar) : convert avatar component to card variation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2004a941c18f8fe21f96f88d3288446fd5e283e8"},(0,n.kt)("inlineCode",{parentName:"a"},"2004a94"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Related Content): change in grid and add see all button ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/955450e974c89aa2297eaa28d278e5098fea7705"},(0,n.kt)("inlineCode",{parentName:"a"},"955450e"))),(0,n.kt)("li",{parentName:"ul"},"change(button): added back button.overrides from pastanaga theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3b55acbf8b8df0e3daa475ab12e4db44693a4053"},(0,n.kt)("inlineCode",{parentName:"a"},"3b55acb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add card class control ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/68c91a9bf7e78874e12e868a0c466f12715a0698"},(0,n.kt)("inlineCode",{parentName:"a"},"68c91a9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):delete publication card variables & overrides files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6be8a037118762cf2280fbe44ba097a0cb7a79e0"},(0,n.kt)("inlineCode",{parentName:"a"},"6be8a03"))),(0,n.kt)("li",{parentName:"ul"},"refactor(OrderedList): rename TOC to Ordered List and add container to the story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e00c4db8e623651eb2ec9ad45de6e3d8c2693b2b"},(0,n.kt)("inlineCode",{parentName:"a"},"e00c4db"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add card grid fluid story with no columns ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f38251ca3fa04a9b586468ead44bbfe8ae110fbb"},(0,n.kt)("inlineCode",{parentName:"a"},"f38251c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(list): remove horizontal control ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f5e576a37452ed368d6f9cf4d55960e737d48ad"},(0,n.kt)("inlineCode",{parentName:"a"},"1f5e576"))),(0,n.kt)("li",{parentName:"ul"},"refactor(avatarGrid): update less variables and layer structure ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/db554a894ca10ba50ff425883000177854ea2455"},(0,n.kt)("inlineCode",{parentName:"a"},"db554a8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Related Content):show button when there are more hidden cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/57ff1c8d485d16c34002da22bd765069e6eb3df0"},(0,n.kt)("inlineCode",{parentName:"a"},"57ff1c8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(RelatedContent):change to use new card variant instead of publication card component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7cf424ae885d9b657a7635fc67a74a8af4c4e905"},(0,n.kt)("inlineCode",{parentName:"a"},"7cf424a"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumb): brought back pastanaga overrides to breadcrumbs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bca1c939c1d49dab1d4b8e72c0999d78383fd643"},(0,n.kt)("inlineCode",{parentName:"a"},"bca1c93"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):delete publication card folder & story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/68bf77306d710651bb2177d429f42b8efc127db2"},(0,n.kt)("inlineCode",{parentName:"a"},"68bf773"))),(0,n.kt)("li",{parentName:"ul"},"change(buttons): modified basic and circular variant behavior ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c06fed9fa74216cf76971b7789dad231a5125ce8"},(0,n.kt)("inlineCode",{parentName:"a"},"c06fed9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):tertiary variation minor story update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87b8dca0b8ef6c6f0fbf1ea6bc71b7b8b6ee9205"},(0,n.kt)("inlineCode",{parentName:"a"},"87b8dca"))),(0,n.kt)("li",{parentName:"ul"},"refactor(DescriptionList): add container to story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d647c1a17097eae9bdfaf8eb8068f6d1d0b13972"},(0,n.kt)("inlineCode",{parentName:"a"},"d647c1a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(List):render ordered list with ol,li tags ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87813c1a942ce498f89b51fe79a59b117afd28b0"},(0,n.kt)("inlineCode",{parentName:"a"},"87813c1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(OrderedList) : change table of contents story to ordered list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb6197c872a97f1b990c675554b1da9b0a8f7959"},(0,n.kt)("inlineCode",{parentName:"a"},"cb6197c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(publicationCard): update tag and name variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c109ad98f257fea233f31d767c4a037a2758be2d"},(0,n.kt)("inlineCode",{parentName:"a"},"c109ad9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(UnorderedList): update list as ul, list items as li and add container to strory ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2c096e117125a7fb943a5d2e665c0077761b271c"},(0,n.kt)("inlineCode",{parentName:"a"},"2c096e1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):organize controls and minor bug fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f3f6e35df077e348ea1e0c2e5c5bd73d4af5aef9"},(0,n.kt)("inlineCode",{parentName:"a"},"f3f6e35"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables): publication card style changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5a84e99ebea6345e45fac3b7ffc077ec42dfb45"},(0,n.kt)("inlineCode",{parentName:"a"},"c5a84e9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables): add less to related content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e1a55438a9fc9dd141a9515c5363d834732a0c4d"},(0,n.kt)("inlineCode",{parentName:"a"},"e1a5543"))),(0,n.kt)("li",{parentName:"ul"},"refactor(RelatedContent):delete publication card component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ed0ed4a1497224b669386f6d0942a79d00555ea"},(0,n.kt)("inlineCode",{parentName:"a"},"2ed0ed4"))),(0,n.kt)("li",{parentName:"ul"},"change(button): basic button is again without padding, border and background ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5a907c721bda1d065153b108d6c9dc0ee20a886d"},(0,n.kt)("inlineCode",{parentName:"a"},"5a907c7"))),(0,n.kt)("li",{parentName:"ul"},"refactor(PublicationCard):remove link wrapper ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5911a0db1967c58311a6776864f92bc0692052fa"},(0,n.kt)("inlineCode",{parentName:"a"},"5911a0d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables): change publication card height per viewport ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d7a525615672f387a2c8a0457bcde5c08aec45dd"},(0,n.kt)("inlineCode",{parentName:"a"},"d7a5256"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Timeline):change timeline icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b2fe0bf9a7a4583f1f10765a9f8c3c989412d472"},(0,n.kt)("inlineCode",{parentName:"a"},"b2fe0bf"))),(0,n.kt)("li",{parentName:"ul"},"refactor(publicationCard): replace px with rems ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53bf8da5e42343de7f7f940c266beb5e530dd63a"},(0,n.kt)("inlineCode",{parentName:"a"},"53bf8da"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Related Content): change in related content grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bf856ce66f9a74cb440cf8a7c93f62cd0d3965e9"},(0,n.kt)("inlineCode",{parentName:"a"},"bf856ce"))),(0,n.kt)("li",{parentName:"ul"},"refactor(List):render description list with dl,dt,dd tags ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ec669a74da08f7a82bb4a1a0a2d752b6ee5ba4bb"},(0,n.kt)("inlineCode",{parentName:"a"},"ec669a7"))),(0,n.kt)("li",{parentName:"ul"},"change(button): show only labeled variant for buttons with icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bf499446dc02e4be8d6452a3e0cba5797b8a005e"},(0,n.kt)("inlineCode",{parentName:"a"},"bf49944"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): import image for rounded card ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca5a47ea2cd713336c7c8ecdebebbdacd681282f"},(0,n.kt)("inlineCode",{parentName:"a"},"ca5a47e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progress): add container to story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dfb33bb8f3560d43e3e7300560bb557591c0a6ba"},(0,n.kt)("inlineCode",{parentName:"a"},"dfb33bb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): add publication card story with different description sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/23af97bc708ac70d70b92efe9a782548c65aabc5"},(0,n.kt)("inlineCode",{parentName:"a"},"23af97b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(List):render default list with dl & dt tags ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ece2280eb06481b3fd42e7a1ffec5c71c08e736f"},(0,n.kt)("inlineCode",{parentName:"a"},"ece2280"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): add publication cards stories with longer description ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/37adefa500c8a85a5b0b86e5b17c687828ea21fc"},(0,n.kt)("inlineCode",{parentName:"a"},"37adefa"))),(0,n.kt)("li",{parentName:"ul"},"change(button): basic icon buttons no longer have box shadows ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c2f3ea38ec3c62dce37612ac1e666a0b064309f7"},(0,n.kt)("inlineCode",{parentName:"a"},"c2f3ea3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): remove story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/afc5f7903a0049563355e3c9292fdd89fa532740"},(0,n.kt)("inlineCode",{parentName:"a"},"afc5f79"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables): change card description line number per device ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6946fdae2a1ede28a0e5971736817b3ae19bf290"},(0,n.kt)("inlineCode",{parentName:"a"},"6946fda"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): update rounded card image path ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8db3a85a45e8e05a3fe86ab824e7550d437222c3"},(0,n.kt)("inlineCode",{parentName:"a"},"8db3a85"))),(0,n.kt)("li",{parentName:"ul"},"refactor(DefaultList): add container to story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f971193369007a45fea7d517cdf0fc2314ebda69"},(0,n.kt)("inlineCode",{parentName:"a"},"f971193"))),(0,n.kt)("li",{parentName:"ul"},"change(button): bumped z-index of sidenav expand button ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/445ed8a8ede4e458814f380bee0600dbb8ff42f6"},(0,n.kt)("inlineCode",{parentName:"a"},"445ed8a"))),(0,n.kt)("li",{parentName:"ul"},"change(progress,label): color accessibility fixes #151 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/09cf6e34ed5a57bfbfc8fe95787591387776df86"},(0,n.kt)("inlineCode",{parentName:"a"},"09cf6e3"))),(0,n.kt)("li",{parentName:"ul"},"change(button): text button now has an underline with a focus border like other buttons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cdd90436bf0c4f8acaca8bf27afef672fb0f3a89"},(0,n.kt)("inlineCode",{parentName:"a"},"cdd9043"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): update card variation grids path ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/756589cff5d3607994d6cf092cb5dd0e36d51903"},(0,n.kt)("inlineCode",{parentName:"a"},"756589c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): minor fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3a880d7d14c89137b2a33342aed1a31c1b2b3939"},(0,n.kt)("inlineCode",{parentName:"a"},"3a880d7"))),(0,n.kt)("li",{parentName:"ul"},"change(button): primary color is blue and secondary is green ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53e0a0c6d32a04c52d089914a224b010b04a8846"},(0,n.kt)("inlineCode",{parentName:"a"},"53e0a0c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(List):change styles to match with the tags lists are rendered ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2673890449579a0421d8ac1c89ad4c5e850322d7"},(0,n.kt)("inlineCode",{parentName:"a"},"2673890"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progress): update colors for accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea2f454f73c859ac21c4fe6e415a2442a6c3d64c"},(0,n.kt)("inlineCode",{parentName:"a"},"ea2f454"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): move avatarGrid & relatedContent to Card folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1959d521de222c95aa13d9b3db249d133f879ccd"},(0,n.kt)("inlineCode",{parentName:"a"},"1959d52"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Timeline): change storybook timeline colors to fix accessibility issues ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/79da8dca48c709fd1df83b858296126f5e5c5753"},(0,n.kt)("inlineCode",{parentName:"a"},"79da8dc"))),(0,n.kt)("li",{parentName:"ul"},"change(segment): restore light grey background color for secondary segments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8716b08a977cacf5dbdab8ab23c714bb03066b0c"},(0,n.kt)("inlineCode",{parentName:"a"},"8716b08"))),(0,n.kt)("li",{parentName:"ul"},"refactor(relatedContent): adjust column paddings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8a1520d1b958b65e968bffdba22c3484916a475e"},(0,n.kt)("inlineCode",{parentName:"a"},"8a1520d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): clear up code ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ada154b5ab562dc7605604de8002a9d3461e594"},(0,n.kt)("inlineCode",{parentName:"a"},"3ada154"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): use the rounded class for avatar grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8c000f3c37103e0068b6d6554783da8188603442"},(0,n.kt)("inlineCode",{parentName:"a"},"8c000f3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card) Update rounded card class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/140b58746673a864d7ea218c4f8a02dc70207af4"},(0,n.kt)("inlineCode",{parentName:"a"},"140b587"))),(0,n.kt)("li",{parentName:"ul"},"refactor(avatar): add variable for image border radius ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c23341c66d34a9dfa572be4df24f1faf4325d58e"},(0,n.kt)("inlineCode",{parentName:"a"},"c23341c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(label): add container to story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/565101fff2c8860deedd599b7b0cff0660c663f6"},(0,n.kt)("inlineCode",{parentName:"a"},"565101f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progress): update value color for accessibility error ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6fc76f8ff3df4bf2b83863687e5ab6bd5e4cd1ef"},(0,n.kt)("inlineCode",{parentName:"a"},"6fc76f8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):use jsx extension ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/413d3284869a35f39f886df7862db6a52e8cc18e"},(0,n.kt)("inlineCode",{parentName:"a"},"413d328")))),(0,n.kt)("h4",{id:"-internal-changes-17"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(Avatar) : add container to stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/41b748cd23002d597d9b6fbb7947a443ef40f9b2"},(0,n.kt)("inlineCode",{parentName:"a"},"41b748c"))),(0,n.kt)("li",{parentName:"ul"},"style(OrderedList): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ed95e4dea2f33d46ca604e1b2c30d63b5596c03d"},(0,n.kt)("inlineCode",{parentName:"a"},"ed95e4d")))),(0,n.kt)("h4",{id:"\ufe0f-others-45"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"perf(eol): change to LF ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c71e42e4a8cf49c4a3b943bfdc8a94c9a9cc4940"},(0,n.kt)("inlineCode",{parentName:"a"},"c71e42e"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): linux eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e0bb30132904f92b9755356f6b5ccbf72075425"},(0,n.kt)("inlineCode",{parentName:"a"},"6e0bb30"))),(0,n.kt)("li",{parentName:"ul"},"lint fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a68866d4058f7412a2635371adebc370b6445281"},(0,n.kt)("inlineCode",{parentName:"a"},"a68866d"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): lf fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7054b2067b0802c5bd04e185cba76e2577ccfdd1"},(0,n.kt)("inlineCode",{parentName:"a"},"7054b20"))),(0,n.kt)("li",{parentName:"ul"},"doco(list): update Ordered List showcase ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/75e40bf4487ea334c9ebc2dd6c2a392d82e662f3"},(0,n.kt)("inlineCode",{parentName:"a"},"75e40bf"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): lf fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19235e585ac50c3669f654a93798b8998894f900"},(0,n.kt)("inlineCode",{parentName:"a"},"19235e5"))),(0,n.kt)("li",{parentName:"ul"},"fixed js syntax error from previous commit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/37dc1f5c1506040c1f155afdea76c4ed739ddda2"},(0,n.kt)("inlineCode",{parentName:"a"},"37dc1f5"))),(0,n.kt)("li",{parentName:"ul"},"Next relese: 0.2.2 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b3fb40ff5e46d7519b6356fdaf7326780bd89d9e"},(0,n.kt)("inlineCode",{parentName:"a"},"b3fb40f")))),(0,n.kt)("h3",{id:"021---2022-04-08"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.2.0...0.2.1"},"0.2.1")," - 2022-04-08"),(0,n.kt)("h4",{id:"-bug-fixes-40"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(version): Switch to 2.0.0.alpha.1 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/83b8b8ebba4f1eb31514b16476ac23a5d2b03ea9"},(0,n.kt)("inlineCode",{parentName:"a"},"83b8b8e")))),(0,n.kt)("h4",{id:"\ufe0f-others-46"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"cleanup(loader): Remove useless HTML ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d1d180c714ea225c1ad269360413a5e5e4b39f22"},(0,n.kt)("inlineCode",{parentName:"a"},"d1d180c")))),(0,n.kt)("h3",{id:"020---2022-04-04"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.9...0.2.0"},"0.2.0")," - 2022-04-04"),(0,n.kt)("h4",{id:"-new-features-27"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(card) : add new default card color-schme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/965adea8eef6d8729790f6d2bd5e71daeee15d75"},(0,n.kt)("inlineCode",{parentName:"a"},"965adea"))),(0,n.kt)("li",{parentName:"ul"},"feat(label): Handle slate links and footnotes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f382431219df29be498fe5063f3d579f0b918068"},(0,n.kt)("inlineCode",{parentName:"a"},"f382431")))),(0,n.kt)("h4",{id:"-bug-fixes-41"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(buttons,toggles): border and background color when active 147629 #139 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea36f31e986110d6c28c104d01666104ac38e2ba"},(0,n.kt)("inlineCode",{parentName:"a"},"ea36f31"))),(0,n.kt)("li",{parentName:"ul"},"fix(checkboxes): background color when they are toggles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4b6ab67085b7514c4f0ab2322e8f45de8bc09449"},(0,n.kt)("inlineCode",{parentName:"a"},"4b6ab67"))),(0,n.kt)("li",{parentName:"ul"},"fix(buttons): border set on basic buttons appearing on svg elements of Volto UI ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/69ca73f33b562b3f87bf11ce43a52ac01f83b951"},(0,n.kt)("inlineCode",{parentName:"a"},"69ca73f"))),(0,n.kt)("li",{parentName:"ul"},"fix(label): Zotero/Footnotes inside label ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0ee4d584f2771b739ed5f2332cb33aad61391786"},(0,n.kt)("inlineCode",{parentName:"a"},"0ee4d58"))),(0,n.kt)("li",{parentName:"ul"},"fix(card) : add control for image url in storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b28e5303ba04c6aee673f1d7f98ce42037c672e1"},(0,n.kt)("inlineCode",{parentName:"a"},"b28e530"))),(0,n.kt)("li",{parentName:"ul"},"fix(less variables):change font family ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e4bca9e0cb7ab9f1fd86e9f4c558382ec129e5a1"},(0,n.kt)("inlineCode",{parentName:"a"},"e4bca9e"))),(0,n.kt)("li",{parentName:"ul"},"fix(storybook):minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9fc53bcad61bbe0561d7a986dbba567d53777a8c"},(0,n.kt)("inlineCode",{parentName:"a"},"9fc53bc"))),(0,n.kt)("li",{parentName:"ul"},"fix(tag): fixes merged theme config ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/eb30363fda8a8a88155ee05268c4d7660fe99df1"},(0,n.kt)("inlineCode",{parentName:"a"},"eb30363"))),(0,n.kt)("li",{parentName:"ul"},"fix(Banner): prop types fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a270e5b4d6e571f219b5da31ca8f883f74da05e3"},(0,n.kt)("inlineCode",{parentName:"a"},"a270e5b")))),(0,n.kt)("h4",{id:"-enhancements-56"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(tag): splits Tags component to TagList and tag, changes default tags style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/78a5f8c245149706a1f7b825ef3e02da5ba86445"},(0,n.kt)("inlineCode",{parentName:"a"},"78a5f8c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner):add banner share pop up in banner story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c9688b2b697c879bbaed3cb3a688a0af7fc71234"},(0,n.kt)("inlineCode",{parentName:"a"},"c9688b2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tag): remove classes and actions that add background color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce9b6f92589618f6cb1e839a2cddc44381ef7406"},(0,n.kt)("inlineCode",{parentName:"a"},"ce9b6f9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner):change banner's image wrapper implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9153dd1073999e67c105b5ba90538bc963e17abc"},(0,n.kt)("inlineCode",{parentName:"a"},"9153dd1"))),(0,n.kt)("li",{parentName:"ul"},"change(package): bump release version to 1.10.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e984c1e1a6ea481a58a5b7a783d077b5769a621"},(0,n.kt)("inlineCode",{parentName:"a"},"7e984c1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): align cards and images, update less variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d47c9780bfbc23d1cba3578f181864074db97e98"},(0,n.kt)("inlineCode",{parentName:"a"},"d47c978"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add class inverted for default card ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/919a56e79c0243fa567144fadd4b842f75f1cf8f"},(0,n.kt)("inlineCode",{parentName:"a"},"919a56e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tag): changes component name ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e1db068bd7ac336a451a4514c61fe44557e14cc2"},(0,n.kt)("inlineCode",{parentName:"a"},"e1db068"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tag): changes color metallicBlue to bottleGreen ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e4b68acf95bb3e192914aab89b2122e0434bf72c"},(0,n.kt)("inlineCode",{parentName:"a"},"e4b68ac"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables): change tag list mobile view ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fcded3dbc67465eec6ef7f72d3fd599ec5cd3c13"},(0,n.kt)("inlineCode",{parentName:"a"},"fcded3d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tagList): update story to not use tag color classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8b5b61bfad9225c0538b713937ed39bbd0bd14e9"},(0,n.kt)("inlineCode",{parentName:"a"},"8b5b61b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner):minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff8c352b899b78528897547df0b20c357fd153cd"},(0,n.kt)("inlineCode",{parentName:"a"},"ff8c352"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner): add metadata field sub component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/327b7e77626c18ae783aea9efae0c7589f63d4f5"},(0,n.kt)("inlineCode",{parentName:"a"},"327b7e7"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): add and adjust remix icon for banner action ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1bf3ffaa16432746c5e5577f0b1643f6659b3f56"},(0,n.kt)("inlineCode",{parentName:"a"},"1bf3ffa"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): replace px with rem and adjust share popup padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a5683294570227d0b25a99e410eb824b2c6d643c"},(0,n.kt)("inlineCode",{parentName:"a"},"a568329"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner):add type class to metadata field and apply styles to it ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/86a286699146c7dda9e288e2183ec8cc86f35a23"},(0,n.kt)("inlineCode",{parentName:"a"},"86a2866"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables):change tag list styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/867008791545769aa003ef7a8a820a7e5a873e4b"},(0,n.kt)("inlineCode",{parentName:"a"},"8670087"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): share items display flex on desktop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ff86840e548f47cd597a0c76b23f996d4a9d74b"},(0,n.kt)("inlineCode",{parentName:"a"},"3ff8684"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): added background gradient, share popup, metadata show and hide #136 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2f5dccacf1e23f45f351b0be58c9bbda04da1518"},(0,n.kt)("inlineCode",{parentName:"a"},"2f5dcca"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): update gradient ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/570ee1e1e9778cb98757804fbd8ad7d9dee9ad13"},(0,n.kt)("inlineCode",{parentName:"a"},"570ee1e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tags): removes hardcoded ':' ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea58e86a79b46b5150d84ff2fbb6a7b8ba47876c"},(0,n.kt)("inlineCode",{parentName:"a"},"ea58e86"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): remove card border ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bc777397026f0efe8e569c8fd0e90d98b585b0eb"},(0,n.kt)("inlineCode",{parentName:"a"},"bc77739")))),(0,n.kt)("h4",{id:"-internal-changes-18"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(card) : add lint and prettier changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9d9a77363f7e4f7ec2ea4db5fa777dc97e086156"},(0,n.kt)("inlineCode",{parentName:"a"},"9d9a773"))),(0,n.kt)("li",{parentName:"ul"},"style(tag): remove comments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/501fcdfb8271f4a3558dadb96c546e71cfdef286"},(0,n.kt)("inlineCode",{parentName:"a"},"501fcdf"))),(0,n.kt)("li",{parentName:"ul"},"style(tag): stylelint and prettier changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/08b63864e8394fd86ada78df0b441cda52cd8063"},(0,n.kt)("inlineCode",{parentName:"a"},"08b6386")))),(0,n.kt)("h4",{id:"\ufe0f-others-47"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"1.10 release #140 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/88d33396845f00830789867663a9cd66ad88920f"},(0,n.kt)("inlineCode",{parentName:"a"},"88d3339"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/328ef2cda2d3470b5cb5ae2ef9854323f6b0f3c7"},(0,n.kt)("inlineCode",{parentName:"a"},"328ef2c"))),(0,n.kt)("li",{parentName:"ul"},"undo changes to Header.jsx committed wrongly in 4b6ab ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bfc4c51d39cf9c5151c39b099071174897de10b0"},(0,n.kt)("inlineCode",{parentName:"a"},"bfc4c51"))),(0,n.kt)("li",{parentName:"ul"},"Update 0-intro.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af75f81a84ddb9b78a77a96450976c6cd1223924"},(0,n.kt)("inlineCode",{parentName:"a"},"af75f81"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): lf fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ecf474ffbaab6796434d49c30fb09deafe9d1125"},(0,n.kt)("inlineCode",{parentName:"a"},"ecf474f"))),(0,n.kt)("li",{parentName:"ul"},"Update 0-intro.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93a073242693fa3c24c39532c2c462f58071e5c4"},(0,n.kt)("inlineCode",{parentName:"a"},"93a0732"))),(0,n.kt)("li",{parentName:"ul"},"modifies tags title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/33c3714660aa6cfbca7e362fd7baa8c396b60a0e"},(0,n.kt)("inlineCode",{parentName:"a"},"33c3714"))),(0,n.kt)("li",{parentName:"ul"},"reafactor(taglist): fixes tags root class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d09959f85d2d21cdc890a71457ed5840b5b2c53"},(0,n.kt)("inlineCode",{parentName:"a"},"7d09959")))),(0,n.kt)("h3",{id:"019---2022-03-25"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.8...0.1.9"},"0.1.9")," - 2022-03-25"),(0,n.kt)("h4",{id:"-new-features-28"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(all): 1.9 release #124 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0d3f6fbf32a4948e00410d9d0943a077863cb869"},(0,n.kt)("inlineCode",{parentName:"a"},"0d3f6fb"))),(0,n.kt)("li",{parentName:"ul"},"feat(callout): Align volto-slate callout with blockquote style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9e0bb49ffe66ebb8b8173af411873ab887b91058"},(0,n.kt)("inlineCode",{parentName:"a"},"9e0bb49")))),(0,n.kt)("h4",{id:"-bug-fixes-42"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(inpageNavigation): restore hidden on top functionality ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c554e6e02e0c82b74653498e2f3fd32a982002a4"},(0,n.kt)("inlineCode",{parentName:"a"},"c554e6e"))),(0,n.kt)("li",{parentName:"ul"},"fix(list): Fix TOC margin on 3rd level ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f17da79394e29baf62bae1247dd954cdd0362108"},(0,n.kt)("inlineCode",{parentName:"a"},"f17da79"))),(0,n.kt)("li",{parentName:"ul"},"fix(inpageNavigation) : add smooth scroll animation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/42f6564276b9214257e2dbc1e2a8f7e501625aee"},(0,n.kt)("inlineCode",{parentName:"a"},"42f6564")))),(0,n.kt)("h4",{id:"-enhancements-57"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update visual and mobile margins ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/64f05af91638d91d2c07217b8edc2fb70a5e7347"},(0,n.kt)("inlineCode",{parentName:"a"},"64f05af"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): restore union dropdown after implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7029c556a9adc1ab9b0269de666e0ed0530f67e"},(0,n.kt)("inlineCode",{parentName:"a"},"a7029c5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pullquote): adjust to the new figma design ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/78e4606ac299938021f9e525898ae7f5cede311f"},(0,n.kt)("inlineCode",{parentName:"a"},"78e4606"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumb): adjust font sizes and import remix divider ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5fcabaf589074716b34fb5d0904e14549d7f4ef2"},(0,n.kt)("inlineCode",{parentName:"a"},"5fcabaf"))),(0,n.kt)("li",{parentName:"ul"},"change(header): use viewport width for changing mobile text in header dropdowns ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5a7868e1725f8766ae1be68d3c27b1313f79196b"},(0,n.kt)("inlineCode",{parentName:"a"},"5a7868e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(inpageNavigation): adjust to the new figma design ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4073acfb87378224d071079467bcfa195b1fc6ac"},(0,n.kt)("inlineCode",{parentName:"a"},"4073acf"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tab): add max width for tab items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/366d279a94d5f388c6167e7afb72d108c77c4085"},(0,n.kt)("inlineCode",{parentName:"a"},"366d279"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables):change pullquote styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9ad94bb424a14713ffa605c7497c95bdefeb6e5f"},(0,n.kt)("inlineCode",{parentName:"a"},"9ad94bb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Pullquote):change quote positions and add Pullquote.Metadata sub component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6bce35fa3cc158d9d18a07d0faf812c5c38bae0b"},(0,n.kt)("inlineCode",{parentName:"a"},"6bce35f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(inpageNavigation): Update to remix icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19a606170b4163cf4f751a419ca36a4c163b566d"},(0,n.kt)("inlineCode",{parentName:"a"},"19a6061"))),(0,n.kt)("li",{parentName:"ul"},"refactor(inpageNavigation) : move icon & text to be in column ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/09539102489ec511cb2b6cd047d316ab8b87ed55"},(0,n.kt)("inlineCode",{parentName:"a"},"0953910"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumbs): modified breadcrumbs template to behave like breadrumb template ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/490a559bc99f3a9d174a344cf0be85086293578e"},(0,n.kt)("inlineCode",{parentName:"a"},"490a559"))),(0,n.kt)("li",{parentName:"ul"},"change(package): bump release version to 1.9.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/43a6e4b92fd05ca272fb140922213834ee426938"},(0,n.kt)("inlineCode",{parentName:"a"},"43a6e4b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumb): adjust font sizes and import remix divider #120 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/09a3a01910ed898b62a9535fe5d2a41cfdb3a91b"},(0,n.kt)("inlineCode",{parentName:"a"},"09a3a01"))),(0,n.kt)("li",{parentName:"ul"},"change(menu): modified secondaryPointingItemMaxWidth to a value that equals to 250 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea138a10257206fae32c4e9a30233a3ddfd424b6"},(0,n.kt)("inlineCode",{parentName:"a"},"ea138a1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pullquote): introduce meta section, use remix icons, integrate slate callouts #119 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fd740c9e72b2defa5cc858ac020f0cb051aa527c"},(0,n.kt)("inlineCode",{parentName:"a"},"fd740c9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): updated visuals and gradients #117 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e5c6d18dc3fb33e5dfa654ecebdc12c6f5f0cf32"},(0,n.kt)("inlineCode",{parentName:"a"},"e5c6d18"))),(0,n.kt)("li",{parentName:"ul"},"change(scrollToTop): feature inpage navigation revamp #121 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3cf20a82b723b8df0b53f16c737e5c8990f891f1"},(0,n.kt)("inlineCode",{parentName:"a"},"3cf20a8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update visual and gradient ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/764ec23a456397b478456f7d628baa4e6c0b4713"},(0,n.kt)("inlineCode",{parentName:"a"},"764ec23"))),(0,n.kt)("li",{parentName:"ul"},"change(header): use 12px font size for mobile resolution dropdowns ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6dad0fab24f37f87696bb50f5a592e88510d053e"},(0,n.kt)("inlineCode",{parentName:"a"},"6dad0fa"))),(0,n.kt)("li",{parentName:"ul"},"change(nav): added navDepth to 3 in order to enable mega menu integration ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4f73fdd0dfadcd63b2f4be7a691bf12dcd9bb76"},(0,n.kt)("inlineCode",{parentName:"a"},"c4f73fd")))),(0,n.kt)("h4",{id:"-internal-changes-19"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(inpageNavigation) : lint changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3641d78374063904c00f1ba19f2f234f7a43892b"},(0,n.kt)("inlineCode",{parentName:"a"},"3641d78"))),(0,n.kt)("li",{parentName:"ul"},"style(inpageNavigation) : add less variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0699c70c66403ff75bf41ba252a74e9f4379671c"},(0,n.kt)("inlineCode",{parentName:"a"},"0699c70"))),(0,n.kt)("li",{parentName:"ul"},"style(pullquote): create variable for icon font size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fea9b0a7c33237ad036522b4dde567718d640210"},(0,n.kt)("inlineCode",{parentName:"a"},"fea9b0a"))),(0,n.kt)("li",{parentName:"ul"},"style(inpageNavigation) : add lint & prettier changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f8dd012a964e0c1f0bc22c36826a4a94bd052759"},(0,n.kt)("inlineCode",{parentName:"a"},"f8dd012"))),(0,n.kt)("li",{parentName:"ul"},"style(inpageNavigation): remove comment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1aee011d032c1a2b7fe564a40688bc39ca457c18"},(0,n.kt)("inlineCode",{parentName:"a"},"1aee011")))),(0,n.kt)("h4",{id:"\ufe0f-others-48"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"perf(eol): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/85a3dc55c7676c0feb8dd5b39fe0cbb9d66a9370"},(0,n.kt)("inlineCode",{parentName:"a"},"85a3dc5"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/00776211ccfa1cb90d9fa0e5269f47f5b3845741"},(0,n.kt)("inlineCode",{parentName:"a"},"0077621"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f1bb1c630edb669b03929a978cc116bae012255"},(0,n.kt)("inlineCode",{parentName:"a"},"9f1bb1c"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2b19fec30d6086f486bdca631a9114d8369fe43"},(0,n.kt)("inlineCode",{parentName:"a"},"e2b19fe"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/03dbc9b027578934f89d9480d981e1bc28f38aa3"},(0,n.kt)("inlineCode",{parentName:"a"},"03dbc9b"))),(0,n.kt)("li",{parentName:"ul"},"Hide breadcrumbs on homepage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e2f609df8d4b6bdb826e539fc0c613406d357a5"},(0,n.kt)("inlineCode",{parentName:"a"},"3e2f609"))),(0,n.kt)("li",{parentName:"ul"},"bug(inpageNavigation): less layers structure fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8d34fbdd5130ed36157db1ff70e8b039faa9f81"},(0,n.kt)("inlineCode",{parentName:"a"},"b8d34fb"))),(0,n.kt)("li",{parentName:"ul"},"prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4b1c572411cbc58dec51d5eeefe9847675c2e41"},(0,n.kt)("inlineCode",{parentName:"a"},"d4b1c57"))),(0,n.kt)("li",{parentName:"ul"},"fefactor(tab): add max width for tab items #118 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/716c408fa4c73f3feb8e36e35fb1f6bb50ac264c"},(0,n.kt)("inlineCode",{parentName:"a"},"716c408"))),(0,n.kt)("li",{parentName:"ul"},"Add reversed option to Timeline grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7c9023245f2fc943380f79743b5f10c6b6f65264"},(0,n.kt)("inlineCode",{parentName:"a"},"7c90232"))),(0,n.kt)("li",{parentName:"ul"},"doc(grid): update grid showcases ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/83671a382e39a2736c2c1353098d5f4fc2a0e67e"},(0,n.kt)("inlineCode",{parentName:"a"},"83671a3"))),(0,n.kt)("li",{parentName:"ul"},"End of line ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7f46fb752ec8918325ebadd386ee88248e02566c"},(0,n.kt)("inlineCode",{parentName:"a"},"7f46fb7")))),(0,n.kt)("h3",{id:"018---2022-03-18"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.7...0.1.8"},"0.1.8")," - 2022-03-18"),(0,n.kt)("h4",{id:"-bug-fixes-43"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(card): avoid long links from spilling outside of card body area ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/95b8951ab87bfab7a68cc20b89b25aa15113aa9d"},(0,n.kt)("inlineCode",{parentName:"a"},"95b8951")))),(0,n.kt)("h4",{id:"-enhancements-58"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(typography): set heading sizes as detailed in docusaurus typography section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/189bf20409581587061ffa30ff2bf04d97f284cf"},(0,n.kt)("inlineCode",{parentName:"a"},"189bf20"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): content tweaks, inpage navigation section #112 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b62d1b1def7c3d8890ffbba30950e8e422e9ed89"},(0,n.kt)("inlineCode",{parentName:"a"},"b62d1b1")))),(0,n.kt)("h4",{id:"-internal-changes-20"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(docusaurus): fixed grid tablet breakpoint value ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c7fbc0912131396e3a1e35803968eda1eff77d40"},(0,n.kt)("inlineCode",{parentName:"a"},"c7fbc09")))),(0,n.kt)("h4",{id:"-documentation-changes-18"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): capitalization remove ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bf8fa4407e7110da1c6a911506d56800bd5c32d7"},(0,n.kt)("inlineCode",{parentName:"a"},"bf8fa44"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1c04976a141324f0dde01b139a77f611e6f51840"},(0,n.kt)("inlineCode",{parentName:"a"},"1c04976"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): comment address on pr 112 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e4fe3bed285eae8b2cff03b1ef558debc0b4edb"},(0,n.kt)("inlineCode",{parentName:"a"},"6e4fe3b"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): color minor update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/13f9fda09287da5b8733d17f9c7567b6b7df750a"},(0,n.kt)("inlineCode",{parentName:"a"},"13f9fda"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): tabs and breadcrump update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d0547e5ad09a8608335b1e77e24c891e49213694"},(0,n.kt)("inlineCode",{parentName:"a"},"d0547e5")))),(0,n.kt)("h4",{id:"\ufe0f-others-49"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"doc(colours): add more content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ec66248f1290369dcf63ee12f7b71a1630df887b"},(0,n.kt)("inlineCode",{parentName:"a"},"ec66248"))),(0,n.kt)("li",{parentName:"ul"},"Add divider content for metadata field in Banner ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f1e34bd6a199f6418fba909e9dfdf50b0100e860"},(0,n.kt)("inlineCode",{parentName:"a"},"f1e34bd"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.8.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fd6ba047e8f8b257c3c75d07a6caefad376f888a"},(0,n.kt)("inlineCode",{parentName:"a"},"fd6ba04")))),(0,n.kt)("h3",{id:"017---2022-03-15"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.6...0.1.7"},"0.1.7")," - 2022-03-15"),(0,n.kt)("h4",{id:"-new-features-29"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(less): add global gap sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c83f20280b8a7ab0b5c78e3df7646beebe08709"},(0,n.kt)("inlineCode",{parentName:"a"},"3c83f20"))),(0,n.kt)("li",{parentName:"ul"},"feat(icons): import remix css ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/29967fb39034910dce286880f347a670f77421b3"},(0,n.kt)("inlineCode",{parentName:"a"},"29967fb")))),(0,n.kt)("h4",{id:"-bug-fixes-44"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(menu): fix border overflow for tabs and pagination ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e88721f916affa2a6d2f03930eb4266f9a2b0fb9"},(0,n.kt)("inlineCode",{parentName:"a"},"e88721f"))),(0,n.kt)("li",{parentName:"ul"},"fix(accordion): responsive and accessibility issues ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c225935ceb9fdba45c6f94086a35e177495fe584"},(0,n.kt)("inlineCode",{parentName:"a"},"c225935")))),(0,n.kt)("h4",{id:"-enhancements-59"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(menu): update paddings for tabs and pagination ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/533a5093e6c306034cb16e0a88e045019677951e"},(0,n.kt)("inlineCode",{parentName:"a"},"533a509"))),(0,n.kt)("li",{parentName:"ul"},"refactor(accordion): import semantic icon for remix arrows ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9aa77d856d1e43f4ec3daaab37f06fa91ebd1eaf"},(0,n.kt)("inlineCode",{parentName:"a"},"9aa77d8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(all) icons, accordion, button and menu itml #108 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/52ed2ca19b5e8dea60f1ee7bfd9c3b6b49a49f7d"},(0,n.kt)("inlineCode",{parentName:"a"},"52ed2ca"))),(0,n.kt)("li",{parentName:"ul"},"change(storybook): segment stories now contain several elements ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/98a7654b0d4a7c30c7a2df35103ddb2740f3ca2d"},(0,n.kt)("inlineCode",{parentName:"a"},"98a7654"))),(0,n.kt)("li",{parentName:"ul"},"change(table): inherit header alignment instead of hard-coding values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ebb5193babfe8b99094db6778afdaf2d91b2c4dd"},(0,n.kt)("inlineCode",{parentName:"a"},"ebb5193"))),(0,n.kt)("li",{parentName:"ul"},"refactor(icons): add remix icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4c1a92b671b52c509386addc02e8919c93391fb"},(0,n.kt)("inlineCode",{parentName:"a"},"c4c1a92"))),(0,n.kt)("li",{parentName:"ul"},"refactor(container): restore mobile width to auto ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2df184c19a8685c69e6b9a55b147a97853cc6b74"},(0,n.kt)("inlineCode",{parentName:"a"},"2df184c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button): update action button hover color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bb09d718433f93091ca1b325471d48741825ca96"},(0,n.kt)("inlineCode",{parentName:"a"},"bb09d71")))),(0,n.kt)("h4",{id:"-internal-changes-21"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(docusaurus): docs delete ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f9d733287902ccb096f5a976a2928e43a43a8e7"},(0,n.kt)("inlineCode",{parentName:"a"},"5f9d733")))),(0,n.kt)("h4",{id:"-documentation-changes-19"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(colors): corrections ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/da64c4c6b58e8840ea98be75d442b90911197e28"},(0,n.kt)("inlineCode",{parentName:"a"},"da64c4c"))),(0,n.kt)("li",{parentName:"ul"},"docs(list): default list showcase ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8ded06231c14d1394f77559aeb2d5a7e3a0c1bf1"},(0,n.kt)("inlineCode",{parentName:"a"},"8ded062")))),(0,n.kt)("h4",{id:"\ufe0f-others-50"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"bug(form): input min-width more specific to not break volto interface ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3f5b5d498ea1a0e3bb6fd62af5930f6579029b11"},(0,n.kt)("inlineCode",{parentName:"a"},"3f5b5d4"))),(0,n.kt)("li",{parentName:"ul"},"Update package.json ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3dba28b5a3d28adbf946a8df3d9cc9b8ef4c68e0"},(0,n.kt)("inlineCode",{parentName:"a"},"3dba28b")))),(0,n.kt)("h3",{id:"016---2022-03-11"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.5...0.1.6"},"0.1.6")," - 2022-03-11"),(0,n.kt)("h4",{id:"-new-features-30"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(cards): add custom display for volto-block-image-cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/645096ac5a0aa3326834191f56ee8a77db0464f5"},(0,n.kt)("inlineCode",{parentName:"a"},"645096a"))),(0,n.kt)("li",{parentName:"ul"},"feat(PublicationCard):create publication card component & styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e5f9b7a9bb301f446b232b99f7db54e6a7470ae"},(0,n.kt)("inlineCode",{parentName:"a"},"3e5f9b7"))),(0,n.kt)("li",{parentName:"ul"},"feat(PublicationCard):create publication card component & styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/12cdd5d50dc4c05f2c2b83586df90c7b91c11a75"},(0,n.kt)("inlineCode",{parentName:"a"},"12cdd5d"))),(0,n.kt)("li",{parentName:"ul"},"feat(Related Content): create Related Content component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/77eda953196f9e686d4ec2c996d6902a614af4a0"},(0,n.kt)("inlineCode",{parentName:"a"},"77eda95"))),(0,n.kt)("li",{parentName:"ul"},"feat(Related Content): create Related Content component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/08d495baeae575a07813056176ac940d7edc91eb"},(0,n.kt)("inlineCode",{parentName:"a"},"08d495b"))),(0,n.kt)("li",{parentName:"ul"},"feat(pagination,related) added several r3 components #105 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/08d47c199286402c31a0ff0de38fd08533d2cd91"},(0,n.kt)("inlineCode",{parentName:"a"},"08d47c1")))),(0,n.kt)("h4",{id:"-bug-fixes-45"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(Related Content): limit publication card number to 4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e7df03214824a85911c26499c8975f88ffa9fe4d"},(0,n.kt)("inlineCode",{parentName:"a"},"e7df032"))),(0,n.kt)("li",{parentName:"ul"},"fix(less variables):rename publication card variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/55c6fb8e5e9660352ce1bf2bd38c4ef8834ce184"},(0,n.kt)("inlineCode",{parentName:"a"},"55c6fb8"))),(0,n.kt)("li",{parentName:"ul"},"fix(Publication Card): add link to card and arg name fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/36a7c961639b2ff07acd455ccf277dd0a93f753c"},(0,n.kt)("inlineCode",{parentName:"a"},"36a7c96"))),(0,n.kt)("li",{parentName:"ul"},"fix(radio): fix bullet scaling issue with firefox ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f02c95f18c77527f949f115471cf24302df4d49"},(0,n.kt)("inlineCode",{parentName:"a"},"5f02c95"))),(0,n.kt)("li",{parentName:"ul"},"fix(radio): fix bullet scaling issue with firefox ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dbb2e27b43e6d267a436a8475107ad01e940ec93"},(0,n.kt)("inlineCode",{parentName:"a"},"dbb2e27")))),(0,n.kt)("h4",{id:"-enhancements-60"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(form): remove custom classes and add container to form items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6b5442a3c56854bf30269f235099d8507ba588f7"},(0,n.kt)("inlineCode",{parentName:"a"},"6b5442a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form): remove custom classes and add container to form items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d1ec083647f854c09d8a64dffa6a5c829321049e"},(0,n.kt)("inlineCode",{parentName:"a"},"d1ec083"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form): update form wrapper component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7195768bbe86121fc82bebca29abfb20b50d77a"},(0,n.kt)("inlineCode",{parentName:"a"},"a719576"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form): update form wrapper component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0736ec7d671d756c13a69bd8bf93488805da27e2"},(0,n.kt)("inlineCode",{parentName:"a"},"0736ec7"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form): adjust form items to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4213cfb79430273e637b06a76af28c9cd660aa74"},(0,n.kt)("inlineCode",{parentName:"a"},"4213cfb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form): adjust form items to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/374ffbc1c380df1b1a5f9939fc658d9ecca4ae1b"},(0,n.kt)("inlineCode",{parentName:"a"},"374ffbc"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumb): remove custom class anf and new variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b3cb83d90e0be7f8a80f619d57bc90cae4f8f207"},(0,n.kt)("inlineCode",{parentName:"a"},"b3cb83d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumb): remove custom class anf and new variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5808ad3576439df010bebfb8fd423858ffc4e66"},(0,n.kt)("inlineCode",{parentName:"a"},"d5808ad"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): clear up unnecessary form elements controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f7e7d5bc285ea5115bc8770c7471729f06da891e"},(0,n.kt)("inlineCode",{parentName:"a"},"f7e7d5b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): small change in unordered list story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ffd87246df9dffcc064683e93d6f3aff35b3931"},(0,n.kt)("inlineCode",{parentName:"a"},"3ffd872"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): small change in unordered list story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6ce16e990f15ef8c61493359815405517756c32c"},(0,n.kt)("inlineCode",{parentName:"a"},"6ce16e9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pagination): fix menu overrides for tabs that affects pagination ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fe8c4ca32072518820ad38f8b334b38f52ef2df5"},(0,n.kt)("inlineCode",{parentName:"a"},"fe8c4ca"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pagination): fix menu overrides for tabs that affects pagination ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3f4b726c2a2047f6f9a65375074dd7ea38717f5c"},(0,n.kt)("inlineCode",{parentName:"a"},"3f4b726"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Loader):remove image & add background image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70fe041e06cfee946bb9557f9fcb5ff49d08c287"},(0,n.kt)("inlineCode",{parentName:"a"},"70fe041"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Loader):remove image & add background image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac3812684ee4377914801cd770890c78bdeecedf"},(0,n.kt)("inlineCode",{parentName:"a"},"ac38126"))),(0,n.kt)("li",{parentName:"ul"},"refactor(list): remove selection control ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a09b1798a62a6e192deb1d217d0c44b4b881ce6a"},(0,n.kt)("inlineCode",{parentName:"a"},"a09b179"))),(0,n.kt)("li",{parentName:"ul"},"refactor(list): remove selection control ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/17bf710d00a91acd35356dbaa9d5093ca80a8987"},(0,n.kt)("inlineCode",{parentName:"a"},"17bf710"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook):unordered list minor change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/df2b72730500aee5d0bbc82185222edacad38b2b"},(0,n.kt)("inlineCode",{parentName:"a"},"df2b727"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook):unordered list minor change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef6db73ce2236d0f653212d2f57c336f1f8d806e"},(0,n.kt)("inlineCode",{parentName:"a"},"ef6db73"))),(0,n.kt)("li",{parentName:"ul"},"refactor(colors): remove metalic blue color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b2f95b6dc3b1d8314827d56e88efa0dfc719aca2"},(0,n.kt)("inlineCode",{parentName:"a"},"b2f95b6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(colors): remove metalic blue color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1eea33f71fdde5834f82d244224c185fde3ab8ba"},(0,n.kt)("inlineCode",{parentName:"a"},"1eea33f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button): update variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b1774d8c7f32ded2eff654b0d16e45d944fe5690"},(0,n.kt)("inlineCode",{parentName:"a"},"b1774d8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button): update variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/061f3e3042f28575dbb1a70f09a62bda728815be"},(0,n.kt)("inlineCode",{parentName:"a"},"061f3e3"))),(0,n.kt)("li",{parentName:"ul"},"change(blockquote): treat slate as a variation of blockquote component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19bd9a5f67e573b71531fe34b29d2e08e0856eae"},(0,n.kt)("inlineCode",{parentName:"a"},"19bd9a5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(container): remove important from rules ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e984771ed59fe849246ae8a01d9d84f3f2f232c5"},(0,n.kt)("inlineCode",{parentName:"a"},"e984771"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook):add textarea control to add/remove fluid class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/475f540efa76d0993c3f7bd72d4c646385f4c909"},(0,n.kt)("inlineCode",{parentName:"a"},"475f540"))),(0,n.kt)("li",{parentName:"ul"},"refactor(container): remove important from rules ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1cc69848705d3d592221bf7fa7d43c8b0eb37f09"},(0,n.kt)("inlineCode",{parentName:"a"},"1cc6984"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): add required attribute to form fields ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fecee278b920c44dd0dd34ace81f9606258c8f7c"},(0,n.kt)("inlineCode",{parentName:"a"},"fecee27"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progressBar): update progress bar colors with vars ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4ef1f0f6eba9792901bc9e0ec5b01877e9da96e"},(0,n.kt)("inlineCode",{parentName:"a"},"c4ef1f0"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progressBar): update progress bar colors with vars ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a44d73c48b6ccc988508fed5c3fb585353fe0958"},(0,n.kt)("inlineCode",{parentName:"a"},"a44d73c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): add required attribute to form fields ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/21da79eafa9f23dcf01cac7e096da7fab2187450"},(0,n.kt)("inlineCode",{parentName:"a"},"21da79e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(list): adjust bullet size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2b29e4e429f939500bc7d7ebd5836b8bc24090ec"},(0,n.kt)("inlineCode",{parentName:"a"},"2b29e4e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(list): adjust bullet size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/61c341cfdad3fccdd7499f6957f91ab99159ea16"},(0,n.kt)("inlineCode",{parentName:"a"},"61c341c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): add inverted background to global variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1427e70f2b208531bbb91ab1a708430f1c03ea3a"},(0,n.kt)("inlineCode",{parentName:"a"},"1427e70"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): add inverted background to global variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea25dfa5589181b7d23bef153bae3ab279e70167"},(0,n.kt)("inlineCode",{parentName:"a"},"ea25dfa"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): remove custom class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/46cc5601e378c7bfcf927b7c25dae2a2d3f795fd"},(0,n.kt)("inlineCode",{parentName:"a"},"46cc560"))),(0,n.kt)("li",{parentName:"ul"},"refactor(container): update mobile width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d548a44d86745270778134028be597f559d7a0b4"},(0,n.kt)("inlineCode",{parentName:"a"},"d548a44"))),(0,n.kt)("li",{parentName:"ul"},"refactor(grid): replace px with rem units ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e792f51e4f41b8f3f53e297b9e5a01d5e2d9bfb1"},(0,n.kt)("inlineCode",{parentName:"a"},"e792f51"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): remove custom class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b5c8e7c2aeb2751d4b981eacc51e3dda58a922dc"},(0,n.kt)("inlineCode",{parentName:"a"},"b5c8e7c"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): updated template to change what's new title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e15f4d3c3e5d4199886bb4cfeda8dce6a4bf041"},(0,n.kt)("inlineCode",{parentName:"a"},"3e15f4d"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): added display variable for footer site logos ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5b3c2f6d85b3a42eefa8521a074a7581bfbd8fb"},(0,n.kt)("inlineCode",{parentName:"a"},"d5b3c2f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(grid): replace px with rem units ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f0331d00f537cf41ca184796386f60a88bfe6c86"},(0,n.kt)("inlineCode",{parentName:"a"},"f0331d0"))),(0,n.kt)("li",{parentName:"ul"},"change(github): auto deploy only on develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/11d6b4e9059674b6dd1fe655995231be03a910fb"},(0,n.kt)("inlineCode",{parentName:"a"},"11d6b4e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): implementation in preparation for Volto integration #20 #89 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/95b136d51ddbc5632c0fa1cc696c2297a8c4695c"},(0,n.kt)("inlineCode",{parentName:"a"},"95b136d"))),(0,n.kt)("li",{parentName:"ul"},"change(github): trigger autobuild when modifying templates contents ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/46094b1427793cd88da6f615b16b70e6cfaee9af"},(0,n.kt)("inlineCode",{parentName:"a"},"46094b1")))),(0,n.kt)("h4",{id:"-internal-changes-22"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(list): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f9e3b05effc0afeddc234b491bc86f2ec82a764f"},(0,n.kt)("inlineCode",{parentName:"a"},"f9e3b05"))),(0,n.kt)("li",{parentName:"ul"},"style(list): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8eb715b05b3bef2795d2485084386c6e910392cf"},(0,n.kt)("inlineCode",{parentName:"a"},"8eb715b"))),(0,n.kt)("li",{parentName:"ul"},"chore(github): merge changes from develop to develop-itml ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/063bd6ecc5e47321854ca4994a91bf0a43ab3e3e"},(0,n.kt)("inlineCode",{parentName:"a"},"063bd6e"))),(0,n.kt)("li",{parentName:"ul"},"chore(github): build deployment only on develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a5a1b0802b46d674d04ae099afc8510e3cb62222"},(0,n.kt)("inlineCode",{parentName:"a"},"a5a1b08"))),(0,n.kt)("li",{parentName:"ul"},"chore(github): build deployment only on develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bb455aa4308e6593c45bcb3a62b8058709d74f83"},(0,n.kt)("inlineCode",{parentName:"a"},"bb455aa"))),(0,n.kt)("li",{parentName:"ul"},"chore(github): merge changes from develop to develop-itml ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/129c12f60025db50bac5b2d3dd36e04a97d49499"},(0,n.kt)("inlineCode",{parentName:"a"},"129c12f")))),(0,n.kt)("h4",{id:"\ufe0f-others-51"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},'Revert "chore(github): merge changes from develop to develop-itml" ',(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca9520fe8d91f8924ea203eb32001e3e6518e472"},(0,n.kt)("inlineCode",{parentName:"a"},"ca9520f"))),(0,n.kt)("li",{parentName:"ul"},"refactor breadcrumbs component, make it functional and customizable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e902d6931060c5676d67842f95391379fcb3cccf"},(0,n.kt)("inlineCode",{parentName:"a"},"e902d69"))),(0,n.kt)("li",{parentName:"ul"},"rollback(cards): move custom display to volto-block-image-cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2564b1ec2cc52670c0f2abc92c49161f5cd1b006"},(0,n.kt)("inlineCode",{parentName:"a"},"2564b1e"))),(0,n.kt)("li",{parentName:"ul"},"bring back segment wrapper and make it attached ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8458f0321f44f22a605e7179485d97f41a0afa38"},(0,n.kt)("inlineCode",{parentName:"a"},"8458f03"))),(0,n.kt)("li",{parentName:"ul"},"no ",(0,n.kt)("inlineCode",{parentName:"li"},"display: flex")," for blockquote added from slate ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5595ce1b8173e6952ab3926dc5f3c988279a42dc"},(0,n.kt)("inlineCode",{parentName:"a"},"5595ce1"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about code length ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a5f36523682dde8d1e16f416a07cd0c8c615a386"},(0,n.kt)("inlineCode",{parentName:"a"},"a5f3652"))),(0,n.kt)("li",{parentName:"ul"},"Add indenting rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/15c44cbcb6a52d0fd0438ff9b5d0e5963a4b53a0"},(0,n.kt)("inlineCode",{parentName:"a"},"15c44cb"))),(0,n.kt)("li",{parentName:"ul"},"fix warning related to proptype ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/946c6c6bc9dece0985ae4b9f9cad6ece2be0ff2c"},(0,n.kt)("inlineCode",{parentName:"a"},"946c6c6"))),(0,n.kt)("li",{parentName:"ul"},"fix profile section css overflow ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/db5126fc902e191d1e18fb7e4c54877c8d8786e6"},(0,n.kt)("inlineCode",{parentName:"a"},"db5126f"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about import sorting ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/804e188eea30427053111310ad2d3edf6a4ec78b"},(0,n.kt)("inlineCode",{parentName:"a"},"804e188"))),(0,n.kt)("li",{parentName:"ul"},"don't use volto-slate ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6a029765d3a59ac65b3b5dd18c1a9624bae1d52a"},(0,n.kt)("inlineCode",{parentName:"a"},"6a02976"))),(0,n.kt)("li",{parentName:"ul"},"remove segment custom width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1d3ea40f98bbdc1eab95b4da739a659b5e29ec16"},(0,n.kt)("inlineCode",{parentName:"a"},"1d3ea40"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about naming vars ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f9020fa3073190681de36cf1dcdf62e69ac2c74"},(0,n.kt)("inlineCode",{parentName:"a"},"8f9020f"))),(0,n.kt)("li",{parentName:"ul"},"update style for accordion title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0b0d678c69d8b0765ff015b0355c01d57c643192"},(0,n.kt)("inlineCode",{parentName:"a"},"0b0d678"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.6.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e771e657e5bedca3630d05cda643c45da5369d4c"},(0,n.kt)("inlineCode",{parentName:"a"},"e771e65"))),(0,n.kt)("li",{parentName:"ul"},"update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bbcab87ef4c8475f347f0daf4ab7e428e69c2316"},(0,n.kt)("inlineCode",{parentName:"a"},"bbcab87"))),(0,n.kt)("li",{parentName:"ul"},"add margin to ","<","br",">"," element to simulate gap as in design ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c6685c11a14febfc9b6c592a9adc9a25a0b80458"},(0,n.kt)("inlineCode",{parentName:"a"},"c6685c1"))),(0,n.kt)("li",{parentName:"ul"},"make breadcrumbs default size as tiny ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/589581fa29a7e249e59393bebe9dfe284090db6f"},(0,n.kt)("inlineCode",{parentName:"a"},"589581f"))),(0,n.kt)("li",{parentName:"ul"},"remove uneeded style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/82a8fb1eb3a359d54bc59234e498eb122d07223c"},(0,n.kt)("inlineCode",{parentName:"a"},"82a8fb1"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about hardcoded values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e04e0df7cd47d575e649d1995ea5c64b2a431b05"},(0,n.kt)("inlineCode",{parentName:"a"},"e04e0df"))),(0,n.kt)("li",{parentName:"ul"},"Add file mode rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/65c9a9357a82a39bf54862eff9231264a6277ab5"},(0,n.kt)("inlineCode",{parentName:"a"},"65c9a93"))),(0,n.kt)("li",{parentName:"ul"},"Add DRY rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/66c9c3a6b05bf3395f5bda1a7c5af26a9962e66c"},(0,n.kt)("inlineCode",{parentName:"a"},"66c9c3a"))),(0,n.kt)("li",{parentName:"ul"},"set profile section overflow to auto ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/71ab47f89a433233c14b394c3824e607dd18a393"},(0,n.kt)("inlineCode",{parentName:"a"},"71ab47f"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using eea-website-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/647a6e3e2093f2c4884c356eb148453551c8f33f"},(0,n.kt)("inlineCode",{parentName:"a"},"647a6e3"))),(0,n.kt)("li",{parentName:"ul"},"removed override already present in card.less ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/50d2ab26f85c8f409da02ec128cc1df34848ca69"},(0,n.kt)("inlineCode",{parentName:"a"},"50d2ab2"))),(0,n.kt)("li",{parentName:"ul"},"update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7a1d482aa875ab2669ed688663228d79ce9b7bea"},(0,n.kt)("inlineCode",{parentName:"a"},"7a1d482"))),(0,n.kt)("li",{parentName:"ul"},"Add functional components rule; add classnames rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91a0b067c7a36002a6d49c5c0238f593b5a6ac6e"},(0,n.kt)("inlineCode",{parentName:"a"},"91a0b06"))),(0,n.kt)("li",{parentName:"ul"},"added comment about need for removal of this fix later ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/65b81665c1cc41991b4903bb44a5eb7fb8ec5f3b"},(0,n.kt)("inlineCode",{parentName:"a"},"65b8166")))),(0,n.kt)("h3",{id:"015---2022-03-08"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.4...0.1.5"},"0.1.5")," - 2022-03-08"),(0,n.kt)("h4",{id:"-new-features-31"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(cards): add custom display for volto-block-image-cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f49ffb65f41c78499f56251c2de267ce5617b4c5"},(0,n.kt)("inlineCode",{parentName:"a"},"f49ffb6"))),(0,n.kt)("li",{parentName:"ul"},"feat(KeyContent): add new component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2534c542c2fd729b31a9064a21dae2bd3cacb2e4"},(0,n.kt)("inlineCode",{parentName:"a"},"2534c54"))),(0,n.kt)("li",{parentName:"ul"},"feat(docusaurus): Updated developer guidelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca146ffd42cb31286a5c49fa09390d0a93270cfa"},(0,n.kt)("inlineCode",{parentName:"a"},"ca146ff"))),(0,n.kt)("li",{parentName:"ul"},"feat(storybook): add testimonial component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/55d97472d82f3819674e78f684e197625c9f854c"},(0,n.kt)("inlineCode",{parentName:"a"},"55d9747"))),(0,n.kt)("li",{parentName:"ul"},"feat(storybook): add AvatarGrid component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b6684456ea6fa17695734b5179b39be77644da93"},(0,n.kt)("inlineCode",{parentName:"a"},"b668445"))),(0,n.kt)("li",{parentName:"ul"},"feat(storybook):add Loader component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6758346a516f7c4be5d66dfdf198dbe2ffe3f01"},(0,n.kt)("inlineCode",{parentName:"a"},"f675834")))),(0,n.kt)("h4",{id:"-bug-fixes-46"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(breakpoints): fix largest screen breakpoint bug on scaling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e4a11c876c20187351fa9454b4fbf0de3e502bff"},(0,n.kt)("inlineCode",{parentName:"a"},"e4a11c8"))),(0,n.kt)("li",{parentName:"ul"},"fix(profile): section css overflow and padding issues #95 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bb9eb0f83307524bda5cf86aa0dfd678c65da653"},(0,n.kt)("inlineCode",{parentName:"a"},"bb9eb0f"))),(0,n.kt)("li",{parentName:"ul"},"fix(storybook): lint auto changes for AvatarGrid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8e74f17df77f8f9f96bf442dc178417bbfc04c6"},(0,n.kt)("inlineCode",{parentName:"a"},"b8e74f1"))),(0,n.kt)("li",{parentName:"ul"},"fix(components): add grid structure to various components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cc33546deda634cee6031bd6cde6eef3eaacb76a"},(0,n.kt)("inlineCode",{parentName:"a"},"cc33546"))),(0,n.kt)("li",{parentName:"ul"},"fix(header) re-added span tags removed in pull request #74 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/00702d7831b84aad52f10368dbef740baf581ab8"},(0,n.kt)("inlineCode",{parentName:"a"},"00702d7")))),(0,n.kt)("h4",{id:"-enhancements-61"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(button): styling updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/37afda5b00797d456e303fb585dad145b575b2ed"},(0,n.kt)("inlineCode",{parentName:"a"},"37afda5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tab): updates on variables and overrides ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/54bf703f9f34f2f945f4635cd4bc4728174c7d47"},(0,n.kt)("inlineCode",{parentName:"a"},"54bf703"))),(0,n.kt)("li",{parentName:"ul"},"change(blockquote): treat slate as a variation of blockquote component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5e8a8b8220c7c25a266f045442aae44303eb8701"},(0,n.kt)("inlineCode",{parentName:"a"},"5e8a8b8"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): added display variable for footer site logos ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2f942b4a80c3ed9eb94e8b71299f4ebf33501eea"},(0,n.kt)("inlineCode",{parentName:"a"},"2f942b4"))),(0,n.kt)("li",{parentName:"ul"},"refactor(checkbox/radio): remove header from message and adjust top position of bullet ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a072b30bb01cf59339960cfd3254584cfae57c6"},(0,n.kt)("inlineCode",{parentName:"a"},"4a072b3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(color): remove secondaryColorDarken variable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/74c8ba073cc92af3987d81d484768235b95fcffb"},(0,n.kt)("inlineCode",{parentName:"a"},"74c8ba0"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): updated template to change what's new title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/58f58c887560e707ced47ccbac6897d8ebcf45d2"},(0,n.kt)("inlineCode",{parentName:"a"},"58f58c8"))),(0,n.kt)("li",{parentName:"ul"},"change(github): auto deploy only on develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bfa35a32bf0fefd4433aec4f7f8ee2cfe53eaae5"},(0,n.kt)("inlineCode",{parentName:"a"},"bfa35a3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): implementation in preparation for Volto integration #20 #97 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cddda2090d3d17c086dfd0cdb8a4dab3f886bfcd"},(0,n.kt)("inlineCode",{parentName:"a"},"cddda20"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumbs): component, make it functional and pluggable #32 #94 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f42e802bdf29d02c76131379b168c8c2119864b"},(0,n.kt)("inlineCode",{parentName:"a"},"9f42e80"))),(0,n.kt)("li",{parentName:"ul"},"change(card): added styles for volto cards integration #92 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a46ac21e6229059fb982174610a733c44000a2b6"},(0,n.kt)("inlineCode",{parentName:"a"},"a46ac21"))),(0,n.kt)("li",{parentName:"ul"},"refactor(grid): remove column count from example ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac0e9cf8e9f6ea99ddf8d5a92e49903999cde262"},(0,n.kt)("inlineCode",{parentName:"a"},"ac0e9cf"))),(0,n.kt)("li",{parentName:"ul"},"change(github): trigger autobuild when modifying templates contents ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f7d1523e92c1c4b3e6285a48d5f8c776aecfa9c"},(0,n.kt)("inlineCode",{parentName:"a"},"5f7d152"))),(0,n.kt)("li",{parentName:"ul"},"refactor(grid): remove custom grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1d978a96a464b3285961d54cb1cbc7c9eaf35faf"},(0,n.kt)("inlineCode",{parentName:"a"},"1d978a9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Form):change form field wrapper implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/73cdd6daba19aefce091552a62a528a42b323228"},(0,n.kt)("inlineCode",{parentName:"a"},"73cdd6d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(message): update colors to match design ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/633ce311dc5a6a141ee514a9108753531aa661e4"},(0,n.kt)("inlineCode",{parentName:"a"},"633ce31"))),(0,n.kt)("li",{parentName:"ul"},"refactor(checkbox/radio): update variables and remove important rules ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ad533b4e3e821c126f62b558523057720d2573c8"},(0,n.kt)("inlineCode",{parentName:"a"},"ad533b4"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables): add variables to less for new components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/47df026655748865bc7af8f44d51e5a9fcf7ee34"},(0,n.kt)("inlineCode",{parentName:"a"},"47df026"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Tab): fix vertical tab alignment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/401bdf2868e8c8305ad2c3cefa3188b730348574"},(0,n.kt)("inlineCode",{parentName:"a"},"401bdf2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(lint changes): add lint changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6f6847fc19db7922c93cb5f52e50db845d053e04"},(0,n.kt)("inlineCode",{parentName:"a"},"6f6847f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(inpageNavigation): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/62f74ea3c08069da8615516a52df8415d50048d5"},(0,n.kt)("inlineCode",{parentName:"a"},"62f74ea"))),(0,n.kt)("li",{parentName:"ul"},"refactor(message): updates on styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4cf8501de961794baf5a8ecec99e4bcddc2d71b"},(0,n.kt)("inlineCode",{parentName:"a"},"b4cf850"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): update class name ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef0969bd873e9fdd0eb32593f7c3f995270ef44c"},(0,n.kt)("inlineCode",{parentName:"a"},"ef0969b"))),(0,n.kt)("li",{parentName:"ul"},"change(github): use develop for auto pushing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a32a723f8126292f62a71cb4c4f94a2c7dec7605"},(0,n.kt)("inlineCode",{parentName:"a"},"a32a723")))),(0,n.kt)("h4",{id:"-internal-changes-23"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(design-system): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/631fa90e2ec5352c01e2ee0824de4a45cc33de34"},(0,n.kt)("inlineCode",{parentName:"a"},"631fa90"))),(0,n.kt)("li",{parentName:"ul"},"style(checkbox/radio): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a04939fdb530ed998a40aeb5b85a748d5dace0cd"},(0,n.kt)("inlineCode",{parentName:"a"},"a04939f"))),(0,n.kt)("li",{parentName:"ul"},"style(design-system): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c753f0b378384150597283c97f657eafbfff296"},(0,n.kt)("inlineCode",{parentName:"a"},"3c753f0"))),(0,n.kt)("li",{parentName:"ul"},"style(message): stylelint fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5b75057cb3a7b366a940ca9d1ba577cd09dc7225"},(0,n.kt)("inlineCode",{parentName:"a"},"5b75057")))),(0,n.kt)("h4",{id:"-documentation-changes-20"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): visuals guidelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/544a9502dc046d7e8bc635c19480a8deb2b31379"},(0,n.kt)("inlineCode",{parentName:"a"},"544a950"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): search guidelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0fb229d8b6a042bd716a093faaf8a1461b70cdb8"},(0,n.kt)("inlineCode",{parentName:"a"},"0fb229d"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): loader page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/892a25dba66f3557af22f8f0f96db695ddf1b402"},(0,n.kt)("inlineCode",{parentName:"a"},"892a25d")))),(0,n.kt)("h4",{id:"\ufe0f-others-52"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Reformat header.less ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f99dfc82c165304ca5600ce5138c1233615ab69"},(0,n.kt)("inlineCode",{parentName:"a"},"1f99dfc"))),(0,n.kt)("li",{parentName:"ul"},"Close menu when changing path ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/65daea9ee34c64bd5e51104077bc745b68169cd2"},(0,n.kt)("inlineCode",{parentName:"a"},"65daea9"))),(0,n.kt)("li",{parentName:"ul"},"refactor breadcrumbs component, make it functional and customizable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ec374e20565eb0a5aed0ff67a02cd6f77eba1f0"},(0,n.kt)("inlineCode",{parentName:"a"},"4ec374e"))),(0,n.kt)("li",{parentName:"ul"},"rollback(cards): move custom display to volto-block-image-cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/79d4c8914b7184d559465135f046b60ee96301e1"},(0,n.kt)("inlineCode",{parentName:"a"},"79d4c89"))),(0,n.kt)("li",{parentName:"ul"},"Open overlay menu on global menu click ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cc749bc4266aae793b85d72c43c8a08b0c2fec48"},(0,n.kt)("inlineCode",{parentName:"a"},"cc749bc"))),(0,n.kt)("li",{parentName:"ul"},"bring back segment wrapper and make it attached ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f413ffaf641c161e8ff0f8010759cffd7e30238"},(0,n.kt)("inlineCode",{parentName:"a"},"9f413ff"))),(0,n.kt)("li",{parentName:"ul"},"Use renderMenuItem also in mobile menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/02de0bb4750062a310109256b6c6d29120287fd4"},(0,n.kt)("inlineCode",{parentName:"a"},"02de0bb"))),(0,n.kt)("li",{parentName:"ul"},"Fix clicking outside closes menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af526646559d1a00ade04dc24def26e5665a5a8c"},(0,n.kt)("inlineCode",{parentName:"a"},"af52664"))),(0,n.kt)("li",{parentName:"ul"},"Cleanup args in header story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2bf6a304b1149ec1204f08f318248ed52ad8fa3d"},(0,n.kt)("inlineCode",{parentName:"a"},"2bf6a30"))),(0,n.kt)("li",{parentName:"ul"},"fix warning related to proptype ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/824b9beff77aae139882cd50a1d670a02ec6f723"},(0,n.kt)("inlineCode",{parentName:"a"},"824b9be"))),(0,n.kt)("li",{parentName:"ul"},"fix profile section css overflow ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8fd265413149f1b5e033dffa0fbcb5ef5ecad15f"},(0,n.kt)("inlineCode",{parentName:"a"},"8fd2654"))),(0,n.kt)("li",{parentName:"ul"},"don't use volto-slate ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70ca3d4ec4e8e4dc633e957b842d94b708af8b82"},(0,n.kt)("inlineCode",{parentName:"a"},"70ca3d4"))),(0,n.kt)("li",{parentName:"ul"},"remove segment custom width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a60d84d5fe76578b7760aa1dad6eef9a20916a7"},(0,n.kt)("inlineCode",{parentName:"a"},"4a60d84"))),(0,n.kt)("li",{parentName:"ul"},"update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/96f4af0fb22605fd294472eb18f7f62e4bd7b0fb"},(0,n.kt)("inlineCode",{parentName:"a"},"96f4af0"))),(0,n.kt)("li",{parentName:"ul"},"Fix TopDropdownMenu component rendering in mobile ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4626def4e1f97f323f3fef130f5d531925ba15b"},(0,n.kt)("inlineCode",{parentName:"a"},"a4626de"))),(0,n.kt)("li",{parentName:"ul"},"Add usePrevious hook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/797faba3cad73288755f6c6e685448d780905189"},(0,n.kt)("inlineCode",{parentName:"a"},"797faba"))),(0,n.kt)("li",{parentName:"ul"},"make breadcrumbs default size as tiny ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c8e1c64f27596421e78927f11616093667b04c6"},(0,n.kt)("inlineCode",{parentName:"a"},"3c8e1c6"))),(0,n.kt)("li",{parentName:"ul"},"Update package.json ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fa020cb5dd85e28d0713b3e8a11aff5b2c1060af"},(0,n.kt)("inlineCode",{parentName:"a"},"fa020cb"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about hardcoded values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0c6912c82625c2e389fd75f0d0a051348781d407"},(0,n.kt)("inlineCode",{parentName:"a"},"0c6912c"))),(0,n.kt)("li",{parentName:"ul"},"set profile section overflow to auto ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8db62bbcd0258fee16411e94888c732a29b1949d"},(0,n.kt)("inlineCode",{parentName:"a"},"8db62bb"))),(0,n.kt)("li",{parentName:"ul"},"added comment about need for removal of this fix later ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6fdbd713dbfe795e7e81cfa37398774fad71c054"},(0,n.kt)("inlineCode",{parentName:"a"},"6fdbd71"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using eea-website-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6051724437a38675e659c797bb5586ef81286ec0"},(0,n.kt)("inlineCode",{parentName:"a"},"6051724"))),(0,n.kt)("li",{parentName:"ul"},"removed override already present in card.less ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93c4e5aac9cc85ff2cc6c04180f6655d5f5616dc"},(0,n.kt)("inlineCode",{parentName:"a"},"93c4e5a"))),(0,n.kt)("li",{parentName:"ul"},"Remove console.log calls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8a3a4cb32bfed2daa86339b15c0301eb01e19f23"},(0,n.kt)("inlineCode",{parentName:"a"},"8a3a4cb"))),(0,n.kt)("li",{parentName:"ul"},"update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/81bb7d4a02576887b80e978c32724580b772d57a"},(0,n.kt)("inlineCode",{parentName:"a"},"81bb7d4"))),(0,n.kt)("li",{parentName:"ul"},"Update comment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ffa24001728f824b8e7154c93c5aad8196bd92ea"},(0,n.kt)("inlineCode",{parentName:"a"},"ffa2400"))),(0,n.kt)("li",{parentName:"ul"},"merge develop into this branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ad5b388957b7d67f1b7ae06f2b80b1c30868d72a"},(0,n.kt)("inlineCode",{parentName:"a"},"ad5b388"))),(0,n.kt)("li",{parentName:"ul"},"WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a8d97f10b9768894a135549e9dc8f938b663f905"},(0,n.kt)("inlineCode",{parentName:"a"},"a8d97f1"))),(0,n.kt)("li",{parentName:"ul"},"Use header.less from develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/99edbc6ccd6023162dcce75b36d6b9451b06f6dc"},(0,n.kt)("inlineCode",{parentName:"a"},"99edbc6"))),(0,n.kt)("li",{parentName:"ul"},"WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/57b5783e2b03859f89c5926951ea232547b455cc"},(0,n.kt)("inlineCode",{parentName:"a"},"57b5783"))),(0,n.kt)("li",{parentName:"ul"},"WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/785da36b725bf14bff28a67da799c51bc5b4f20f"},(0,n.kt)("inlineCode",{parentName:"a"},"785da36"))),(0,n.kt)("li",{parentName:"ul"},"WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5d1eba9a1df2d2bb078f119ee99b0627ac55ae1d"},(0,n.kt)("inlineCode",{parentName:"a"},"5d1eba9"))),(0,n.kt)("li",{parentName:"ul"},"adds Tags ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e37fc1957ed8357bc2190239da4440bb98b0dabe"},(0,n.kt)("inlineCode",{parentName:"a"},"e37fc19"))),(0,n.kt)("li",{parentName:"ul"},"Add useClickOutside hook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70364c88631cbfa6e6854a99dde42ea2ad73221f"},(0,n.kt)("inlineCode",{parentName:"a"},"70364c8"))),(0,n.kt)("li",{parentName:"ul"},"Implement outside click handling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fa6f81823c47ca32209f3f1c8b1810b5447f97ec"},(0,n.kt)("inlineCode",{parentName:"a"},"fa6f818"))),(0,n.kt)("li",{parentName:"ul"},"Simplify overlay menu template ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/28b04784cf32ed4393e452c56680bffda411d526"},(0,n.kt)("inlineCode",{parentName:"a"},"28b0478"))),(0,n.kt)("li",{parentName:"ul"},"fixes less variables, fixes tags positioning ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cc19b9b537b5f21ceaba986bbd0182bb3b867ac7"},(0,n.kt)("inlineCode",{parentName:"a"},"cc19b9b"))),(0,n.kt)("li",{parentName:"ul"},"WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/15bc0f4287b705839f6fd5ac8835f03e2e99f1f1"},(0,n.kt)("inlineCode",{parentName:"a"},"15bc0f4"))),(0,n.kt)("li",{parentName:"ul"},"no ",(0,n.kt)("inlineCode",{parentName:"li"},"display: flex")," for blockquote added from slate ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/312a893e924dea4e7aed182be4a615bc3c4f04f8"},(0,n.kt)("inlineCode",{parentName:"a"},"312a893"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about code length ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/318cd48f8116a49897590137eebe2ce35285b813"},(0,n.kt)("inlineCode",{parentName:"a"},"318cd48"))),(0,n.kt)("li",{parentName:"ul"},"Add indenting rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d58968522ef82a7d5381fc4958ae2049562b7103"},(0,n.kt)("inlineCode",{parentName:"a"},"d589685"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about import sorting ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cd337c16650ae169e4b634b034f40f3cd887ceb8"},(0,n.kt)("inlineCode",{parentName:"a"},"cd337c1"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about naming vars ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b112de0dcaa4209cfe143dcd26ba929b4cbe0a42"},(0,n.kt)("inlineCode",{parentName:"a"},"b112de0"))),(0,n.kt)("li",{parentName:"ul"},"Bring back classNames from header subpopup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e477a5150bee569fadca300a3ccc3586e7d7ef4a"},(0,n.kt)("inlineCode",{parentName:"a"},"e477a51"))),(0,n.kt)("li",{parentName:"ul"},"removes tags hashtag from jsx ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6b8b3e94a6a1060304c1e5b228806985343ef6a0"},(0,n.kt)("inlineCode",{parentName:"a"},"6b8b3e9"))),(0,n.kt)("li",{parentName:"ul"},"WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d481324ff7a63e3cb0847b89fa188cc8781de4dc"},(0,n.kt)("inlineCode",{parentName:"a"},"d481324"))),(0,n.kt)("li",{parentName:"ul"},"fixes undefined on empty classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4b29080d646c44b02a28c4619f5285227fa2bf78"},(0,n.kt)("inlineCode",{parentName:"a"},"4b29080"))),(0,n.kt)("li",{parentName:"ul"},"stylelint changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a5ab83018bccd8fbfcf2160fe9c6c4fc24abe83a"},(0,n.kt)("inlineCode",{parentName:"a"},"a5ab830"))),(0,n.kt)("li",{parentName:"ul"},"Footer link color @white ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/578e4f7bb174cd46d50a8b5c5a97f8bbff510f11"},(0,n.kt)("inlineCode",{parentName:"a"},"578e4f7"))),(0,n.kt)("li",{parentName:"ul"},"add margin to ","<","br",">"," element to simulate gap as in design ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9ab9a97dc231fd3b704fedd99c742f425be4578c"},(0,n.kt)("inlineCode",{parentName:"a"},"9ab9a97"))),(0,n.kt)("li",{parentName:"ul"},"impors colors from site variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6117267716b76b17379ae989911c5d5f00e63259"},(0,n.kt)("inlineCode",{parentName:"a"},"6117267"))),(0,n.kt)("li",{parentName:"ul"},"small fix for the link in footer action ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/72df049aa644ac2a675057bf3a96440144acabfb"},(0,n.kt)("inlineCode",{parentName:"a"},"72df049"))),(0,n.kt)("li",{parentName:"ul"},"remove uneeded style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/66e9064de395b37caef1436aaee3a164b53ae406"},(0,n.kt)("inlineCode",{parentName:"a"},"66e9064"))),(0,n.kt)("li",{parentName:"ul"},"use proper naming conventions for var naming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/596e3143e28f23e60f20becd97276831c89d9684"},(0,n.kt)("inlineCode",{parentName:"a"},"596e314"))),(0,n.kt)("li",{parentName:"ul"},"Add file mode rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/805baa7db5ae1863bc85687f8f872c74a26647c8"},(0,n.kt)("inlineCode",{parentName:"a"},"805baa7"))),(0,n.kt)("li",{parentName:"ul"},"use less variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b43ac8d3bfc0231313f3d8bc719e373a127c6329"},(0,n.kt)("inlineCode",{parentName:"a"},"b43ac8d"))),(0,n.kt)("li",{parentName:"ul"},"Add DRY rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2f1584e769d0462c0385847630e3bbfe48a52339"},(0,n.kt)("inlineCode",{parentName:"a"},"2f1584e"))),(0,n.kt)("li",{parentName:"ul"},"Add functional components rule; add classnames rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1b2915ed3a4a3446e11058ac7de8937cf5755630"},(0,n.kt)("inlineCode",{parentName:"a"},"1b2915e"))),(0,n.kt)("li",{parentName:"ul"},"fix z-index of header ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d2a5d6bb822a298367ce58d867939318171a300"},(0,n.kt)("inlineCode",{parentName:"a"},"7d2a5d6"))),(0,n.kt)("li",{parentName:"ul"},"Remove comment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d120b16491406ea7cc26428dcf13ec2565868d0"},(0,n.kt)("inlineCode",{parentName:"a"},"7d120b1")))),(0,n.kt)("h3",{id:"014---2022-03-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.4-beta.0...0.1.4"},"0.1.4")," - 2022-03-01"),(0,n.kt)("h4",{id:"-enhancements-62"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(pagination): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/06cc3b6db6f56040264e4c70fe2e39ace14499d7"},(0,n.kt)("inlineCode",{parentName:"a"},"06cc3b6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Form):create form field wrapper file ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/95b9934a75ffd6b254b7bb9c119b8087c7565c13"},(0,n.kt)("inlineCode",{parentName:"a"},"95b9934"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): update margins for menu items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/230e476d133b3f7853a73f3f2ee372c6306bd43f"},(0,n.kt)("inlineCode",{parentName:"a"},"230e476"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): update gradient ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/47f2ea40c4f214a41af58ceb90839a05932b0b55"},(0,n.kt)("inlineCode",{parentName:"a"},"47f2ea4")))),(0,n.kt)("h4",{id:"-documentation-changes-21"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): divider page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c6bb2389f819a9ebd8e34db0e825f3e5f62130d4"},(0,n.kt)("inlineCode",{parentName:"a"},"c6bb238")))),(0,n.kt)("h4",{id:"\ufe0f-others-53"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"add footer links,align footer image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b039564e8cd3a0319ebe07f434f20bb7d7827fe1"},(0,n.kt)("inlineCode",{parentName:"a"},"b039564"))),(0,n.kt)("li",{parentName:"ul"},"cosmetics: remove formatting ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e02b08dc2adc8b89a5b9117b5a572c7080248c29"},(0,n.kt)("inlineCode",{parentName:"a"},"e02b08d"))),(0,n.kt)("li",{parentName:"ul"},"refactor Footer component to consume children and prop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/faafcffe07383ba55f5746cb971cdf706d988f78"},(0,n.kt)("inlineCode",{parentName:"a"},"faafcff"))),(0,n.kt)("li",{parentName:"ul"},"update footer stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4e5742872f21d9737f3de443fa0e9d1b6ba02637"},(0,n.kt)("inlineCode",{parentName:"a"},"4e57428"))),(0,n.kt)("li",{parentName:"ul"},"update stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/81973cac96ee48e9b294c45e32c0ec3d2956fe67"},(0,n.kt)("inlineCode",{parentName:"a"},"81973ca"))),(0,n.kt)("li",{parentName:"ul"},"Small improvements to footer ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6d1fdc000ab83932df62244142068f097aeeb85"},(0,n.kt)("inlineCode",{parentName:"a"},"f6d1fdc"))),(0,n.kt)("li",{parentName:"ul"},"fix header urls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e5908916823a1f5771ddbeb51b3e8af026425c49"},(0,n.kt)("inlineCode",{parentName:"a"},"e590891"))),(0,n.kt)("li",{parentName:"ul"},"Rename files in footer story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3de0c19d1ddeb69d8567026e1532fceb9221049a"},(0,n.kt)("inlineCode",{parentName:"a"},"3de0c19"))),(0,n.kt)("li",{parentName:"ul"},"add style for accordion title input on edit mode ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/598aa129f2dff0a2cb2ec57f551fa72481aa911e"},(0,n.kt)("inlineCode",{parentName:"a"},"598aa12"))),(0,n.kt)("li",{parentName:"ul"},"remove comments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2db0d2c2bbebe8bab8cf9801c5ea2650dde96b87"},(0,n.kt)("inlineCode",{parentName:"a"},"2db0d2c"))),(0,n.kt)("li",{parentName:"ul"},"Apply slate customization if volto-slate addon is used ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c066701dc359c6daf01703dac8fa61c2314c11cf"},(0,n.kt)("inlineCode",{parentName:"a"},"c066701"))),(0,n.kt)("li",{parentName:"ul"},"use relative links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af91a203bb30f5c9aa1335bfa8cdaa7857d577e2"},(0,n.kt)("inlineCode",{parentName:"a"},"af91a20"))),(0,n.kt)("li",{parentName:"ul"},"make footer anchor links white ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0c671e1bf52268505a5dc58196c285c04da33b10"},(0,n.kt)("inlineCode",{parentName:"a"},"0c671e1"))),(0,n.kt)("li",{parentName:"ul"},"use custom var for line-height ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f7f6c7ea605014741b9426b19008a4e6eda6704c"},(0,n.kt)("inlineCode",{parentName:"a"},"f7f6c7e"))),(0,n.kt)("li",{parentName:"ul"},"Update semantic.less ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4a90aed030a8927fa2ea949e4f44d23638c751a"},(0,n.kt)("inlineCode",{parentName:"a"},"a4a90ae"))),(0,n.kt)("li",{parentName:"ul"},"Bump release version ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c41a42bc2fd8174a2554e6dce1a1090eff4f3bd1"},(0,n.kt)("inlineCode",{parentName:"a"},"c41a42b"))),(0,n.kt)("li",{parentName:"ul"},"Update style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/89686990b2481f339c9bec7e7f9d35d9caab94c5"},(0,n.kt)("inlineCode",{parentName:"a"},"8968699"))),(0,n.kt)("li",{parentName:"ul"},"remove styling on header popups ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/86c499be61c0d2df46cb3469a47f0afae2e46c49"},(0,n.kt)("inlineCode",{parentName:"a"},"86c499b"))),(0,n.kt)("li",{parentName:"ul"},"remove search icon styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aca80fdc78859461cfee1d902b1d122d4a189b31"},(0,n.kt)("inlineCode",{parentName:"a"},"aca80fd"))),(0,n.kt)("li",{parentName:"ul"},"adjust popup height for computer screens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/47c5edb06c8d8cdb9af8ac64f68be0e0360eccaf"},(0,n.kt)("inlineCode",{parentName:"a"},"47c5edb"))),(0,n.kt)("li",{parentName:"ul"},"fix login container width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9a887e3b15aa63aab9be8738f599febcfe245b81"},(0,n.kt)("inlineCode",{parentName:"a"},"9a887e3"))),(0,n.kt)("li",{parentName:"ul"},"Typo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/90da95c67e965124da7f431e464bcbc15fa67894"},(0,n.kt)("inlineCode",{parentName:"a"},"90da95c"))),(0,n.kt)("li",{parentName:"ul"},"fix search-input icon line-height ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b087ff86d7753f3ee0bf90a9b07c4ee7ef5e336c"},(0,n.kt)("inlineCode",{parentName:"a"},"b087ff8"))),(0,n.kt)("li",{parentName:"ul"},"lint fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e9790ca72b8d3caf114c1b80b9c5837fb6a1a56e"},(0,n.kt)("inlineCode",{parentName:"a"},"e9790ca"))),(0,n.kt)("li",{parentName:"ul"},"Rename, reorganize logos ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1ef8d22df5a757258d8610818f44362046bc828d"},(0,n.kt)("inlineCode",{parentName:"a"},"1ef8d22")))),(0,n.kt)("h3",{id:"014-beta0---2022-02-25"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.3...0.1.4-beta.0"},"0.1.4-beta.0")," - 2022-02-25"),(0,n.kt)("h4",{id:"-new-features-32"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(github): added feature and bug reports templates with our guidelines as checkboxes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/15490937382ced93f5ac69cc1939256c0a468823"},(0,n.kt)("inlineCode",{parentName:"a"},"1549093")))),(0,n.kt)("h3",{id:"013---2022-02-25"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.2...0.1.3"},"0.1.3")," - 2022-02-25"),(0,n.kt)("h4",{id:"-bug-fixes-47"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(all): change eol to unix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/62e72244f78d43ce1c7b1a5ceb8405e4a617c88a"},(0,n.kt)("inlineCode",{parentName:"a"},"62e7224"))),(0,n.kt)("li",{parentName:"ul"},"fix(banner): separate url value ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f9c9140a6f8640bbb83a08f9c5c268f31ff7b6a8"},(0,n.kt)("inlineCode",{parentName:"a"},"f9c9140"))),(0,n.kt)("li",{parentName:"ul"},"fix(all): merge eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c68f6e0e7ab11d7451c8aabf194f62da0b6adb28"},(0,n.kt)("inlineCode",{parentName:"a"},"c68f6e0"))),(0,n.kt)("li",{parentName:"ul"},"fix(blockquote): align self property now uses a valid entry ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ec761634765105694386ce48153fb95c09339273"},(0,n.kt)("inlineCode",{parentName:"a"},"ec76163")))),(0,n.kt)("h4",{id:"-enhancements-63"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): new implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff013afc68fed97d085e3930f6d728b266786dc1"},(0,n.kt)("inlineCode",{parentName:"a"},"ff013af"))),(0,n.kt)("li",{parentName:"ul"},"change(volto): removed customizations made for ims theme from volto-eea-design-system ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bc8d514d82da0811c10eefe6dde16e0846497a4a"},(0,n.kt)("inlineCode",{parentName:"a"},"bc8d514"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Timeline): divide to sub components and change files to .jsx ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e2bd3b6c8dd064e7269819ce465b961a0cee849"},(0,n.kt)("inlineCode",{parentName:"a"},"3e2bd3b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4e5d08d565ef08e4e390ede4a611145a16ca2fa9"},(0,n.kt)("inlineCode",{parentName:"a"},"4e5d08d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): link header's menu to mega menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/08406d84e5bc1c7eb1358baff19ff6731f124b32"},(0,n.kt)("inlineCode",{parentName:"a"},"08406d8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Menu): change mega menu implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/455a51b9a9fbb00c6a89c42de226787c143176f7"},(0,n.kt)("inlineCode",{parentName:"a"},"455a51b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Grid):minor changes and delete extra files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/272585dfed0c0e82b26c1e6843484ad0981ba75f"},(0,n.kt)("inlineCode",{parentName:"a"},"272585d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(timeline): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b98641af00f23302b728094ed00a4563b6813387"},(0,n.kt)("inlineCode",{parentName:"a"},"b98641a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): fix link hover issue for tablet ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/564e9721aea7d4ed998d88764e37454bc3154d3d"},(0,n.kt)("inlineCode",{parentName:"a"},"564e972"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add remix icons and minor updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c9c97dd719187e996efabaee28ccbf23d43f03af"},(0,n.kt)("inlineCode",{parentName:"a"},"c9c97dd"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): change header buttons implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6608b8cfffb75dda90b01728dc4fe657cbd84069"},(0,n.kt)("inlineCode",{parentName:"a"},"6608b8c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): add sub components and change existing Main ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/74c35a3fe462bdad7b9b2a5a6e969043439fdf5b"},(0,n.kt)("inlineCode",{parentName:"a"},"74c35a3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(table): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab7a0e8d9e83edb3035d57285a5f85557bcd7576"},(0,n.kt)("inlineCode",{parentName:"a"},"ab7a0e8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Footer): delete Actions & ThemeSites files and clear imports ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7a78456f55742a1b356070303218342876641e52"},(0,n.kt)("inlineCode",{parentName:"a"},"7a78456"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/326655a48aeac65b32beadb48707d0193c952702"},(0,n.kt)("inlineCode",{parentName:"a"},"326655a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Breadcrumb): add react router link and minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/073a3a36215427dce274a533b10d2d0bb3526de9"},(0,n.kt)("inlineCode",{parentName:"a"},"073a3a3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): show menu on search & minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4d49a8ae6958b84bd2dbaf7bd5f62310037eb288"},(0,n.kt)("inlineCode",{parentName:"a"},"4d49a8a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(List): add extra default list story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/95665cdca945cba104a25d5efcbc56436dffbd7f"},(0,n.kt)("inlineCode",{parentName:"a"},"95665cd"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus) change generation of what's new section and bump package version ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6c35cff4d65bb44755376c85ff4de8c6b39af00b"},(0,n.kt)("inlineCode",{parentName:"a"},"6c35cff"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Footer): minor code changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/67cb4bc5f9d341da78e7816ed89f219d8ac2836e"},(0,n.kt)("inlineCode",{parentName:"a"},"67cb4bc"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Menu): add class to mega menu items for styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19baa342c29322d11371303dc0092f472da1eeee"},(0,n.kt)("inlineCode",{parentName:"a"},"19baa34"))),(0,n.kt)("li",{parentName:"ul"},"change(accordion): modified default accordion stories titles with real accordion names ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cf11cc81d7096d338c565180597822e51fcaa8b7"},(0,n.kt)("inlineCode",{parentName:"a"},"cf11cc8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): accessibility image alt fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7347a688c2f37f08390b189f8bfa990c26c7f75"},(0,n.kt)("inlineCode",{parentName:"a"},"a7347a6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): adjust to volto in progress ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/760becabf40dbbaed36dac6c37275c7e31aa2509"},(0,n.kt)("inlineCode",{parentName:"a"},"760beca"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): header items as storybook arguments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/388c752aa0694e78f5306c2b2efa4a34df4b9ca6"},(0,n.kt)("inlineCode",{parentName:"a"},"388c752"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): update less variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/35b0a98eced49212bb08c3c7d2ac6987a16ec6be"},(0,n.kt)("inlineCode",{parentName:"a"},"35b0a98"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): actions as buttons; don't hardcode url for banner image; subcomponentize Banner, add Banner.Action; add developer guidelines on inline styles and line endings; ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6dd5a41248e8bf4095744bd89217707f3ad820a1"},(0,n.kt)("inlineCode",{parentName:"a"},"6dd5a41"))),(0,n.kt)("li",{parentName:"ul"},"refactor(blockquote): fix responsive margins and sizes rems ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/209f94f5535d83678af5fd650dcc3892a94c8a34"},(0,n.kt)("inlineCode",{parentName:"a"},"209f94f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Input): label position and style change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/970074aacae0c1ffabe88be58779b332993a37fd"},(0,n.kt)("inlineCode",{parentName:"a"},"970074a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update dropdown menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32eb0fa5dbb431c5d8e74e4c3e28b0555dab8aea"},(0,n.kt)("inlineCode",{parentName:"a"},"32eb0fa"))),(0,n.kt)("li",{parentName:"ul"},"refactor(timeline): theming updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c80c9aa5eb08c3b58199c6f6faca06445640f9f8"},(0,n.kt)("inlineCode",{parentName:"a"},"c80c9aa"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Blockquote):remove image stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a6357caa641e18e7a19b834cd907ba8c7117367f"},(0,n.kt)("inlineCode",{parentName:"a"},"a6357ca"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus) proofread blockquote usage section and removed unused api section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0bb29fdb73bce90f842748abd978a388fff93932"},(0,n.kt)("inlineCode",{parentName:"a"},"0bb29fd"))),(0,n.kt)("li",{parentName:"ul"},"change(infrastructure) cherry-pick fix 9639243 skipping jenkins on auto commits ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fc744cda5a4e6d9da0ab6e7f92868d53f28f53c1"},(0,n.kt)("inlineCode",{parentName:"a"},"fc744cd"))),(0,n.kt)("li",{parentName:"ul"},"change(ci) build storybook and docusaurus only when pushing to develop-itml branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4de0cbf9bfc4ecb46605dca1048a38db844880e7"},(0,n.kt)("inlineCode",{parentName:"a"},"4de0cbf"))),(0,n.kt)("li",{parentName:"ul"},"change(infrastructure): modify whats new doc when committing the auto deployment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/39df33ed946a8167e4954cffb676144700e0ec38"},(0,n.kt)("inlineCode",{parentName:"a"},"39df33e"))),(0,n.kt)("li",{parentName:"ul"},"change(blockquote): introduce float argument for blockquote with image storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8fc72906c264b5e96702f8518e81d5724b494a5c"},(0,n.kt)("inlineCode",{parentName:"a"},"8fc7290"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pullquote): add word break ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2245e53dde6dd8abf437afa94e92bbedc60c9f8c"},(0,n.kt)("inlineCode",{parentName:"a"},"2245e53"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner): minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b9073b60e337eab40a992283b5b9e75d5cffe895"},(0,n.kt)("inlineCode",{parentName:"a"},"b9073b6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(table): fix th font weight ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a96a0a7a4cb450b5f947bc397495a2a41c605c87"},(0,n.kt)("inlineCode",{parentName:"a"},"a96a0a7"))),(0,n.kt)("li",{parentName:"ul"},"refactor(comment): remove avatar border radius ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d42c37bb8f71e20e1d0ec438c14e3c7ac00cf0ae"},(0,n.kt)("inlineCode",{parentName:"a"},"d42c37b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): adjust title size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7a24d9c07a5994fa46c39fdf1e827e0d1ae5e504"},(0,n.kt)("inlineCode",{parentName:"a"},"7a24d9c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Image): change image path ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a580da68a45bbe68d314f60e9495fc321489caf5"},(0,n.kt)("inlineCode",{parentName:"a"},"a580da6"))),(0,n.kt)("li",{parentName:"ul"},"change(infrastructure): specify that docs folder contains changes for deployment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a1ca9153b70e3525cd73423d059a8607f63fc2b9"},(0,n.kt)("inlineCode",{parentName:"a"},"a1ca915")))),(0,n.kt)("h4",{id:"-internal-changes-24"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(input) prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e83fa0c3e95e33d89ab668de38e6b0b12d9fb0d9"},(0,n.kt)("inlineCode",{parentName:"a"},"e83fa0c"))),(0,n.kt)("li",{parentName:"ul"},"chore(storybook): prettier fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/354c7b33c92a9f48ca9cbb0b96b6cec213e465c8"},(0,n.kt)("inlineCode",{parentName:"a"},"354c7b3"))),(0,n.kt)("li",{parentName:"ul"},"chore(design system): technical commit for edw integration tests ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f76035122d647e14b5151af3b39f0ab3e199af2"},(0,n.kt)("inlineCode",{parentName:"a"},"9f76035"))),(0,n.kt)("li",{parentName:"ul"},"style(storybook): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c9ad345268335c42e41d13b35c0da93e9770847"},(0,n.kt)("inlineCode",{parentName:"a"},"3c9ad34"))),(0,n.kt)("li",{parentName:"ul"},"chore(infrastructure) updated branch with changes from bitbucket ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/77866f8c7ac203db0645a74b7a7456b5c4de5dd7"},(0,n.kt)("inlineCode",{parentName:"a"},"77866f8")))),(0,n.kt)("h4",{id:"\ufe0f-others-54"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"doc(colours):fix color to better show primary ones ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/705b7899f9d687747d2deb27ac4d8b4429878de0"},(0,n.kt)("inlineCode",{parentName:"a"},"705b789"))),(0,n.kt)("li",{parentName:"ul"},"doc(colours):change font size to fit text in one line ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ad751660ec832e67a0c858e75685259b9ef8d82"},(0,n.kt)("inlineCode",{parentName:"a"},"4ad7516"))),(0,n.kt)("li",{parentName:"ul"},"bump package release to 1.3.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f3cfe4f5232ff96a9845d12da72008cf838c1010"},(0,n.kt)("inlineCode",{parentName:"a"},"f3cfe4f"))),(0,n.kt)("li",{parentName:"ul"},"Refactor banner into content subcomponent ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f8df238b4db90fdb841cdd5436a644e582f73b82"},(0,n.kt)("inlineCode",{parentName:"a"},"f8df238"))),(0,n.kt)("li",{parentName:"ul"},"lint fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cda322d8c013ef303b93b4b8d29594aa3bbd0bc1"},(0,n.kt)("inlineCode",{parentName:"a"},"cda322d"))),(0,n.kt)("li",{parentName:"ul"},"rollback don'ts grammar change and disable unresolved import for Banner.stories.jsx ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a1bd7154fa64451b6a521743955a57405dc7fb67"},(0,n.kt)("inlineCode",{parentName:"a"},"a1bd715"))),(0,n.kt)("li",{parentName:"ul"},"Add space line in component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4d1a5fbe9a9ea53701702d7ce33622795f5ab00"},(0,n.kt)("inlineCode",{parentName:"a"},"d4d1a5f")))),(0,n.kt)("h3",{id:"012---2022-02-17"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.2-beta.2...0.1.2"},"0.1.2")," - 2022-02-17"),(0,n.kt)("h4",{id:"-new-features-33"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(blockquote) added blockquote styles as a custom module ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d30662e23176cf7a5ab64aa322acd5a09a0c4130"},(0,n.kt)("inlineCode",{parentName:"a"},"d30662e")))),(0,n.kt)("h4",{id:"-bug-fixes-48"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(inpageNavigation): hide at the top of the page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/97ef50069cd9b29345fb68ce8b557a47577669a4"},(0,n.kt)("inlineCode",{parentName:"a"},"97ef500"))),(0,n.kt)("li",{parentName:"ul"},"fix(footer):missing image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac91a29a134c97af842c6be4987c60c44c4c96d8"},(0,n.kt)("inlineCode",{parentName:"a"},"ac91a29"))),(0,n.kt)("li",{parentName:"ul"},"fix(comment):fix broken image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8125dc179923f652ecd25003df8ecb4fb0aeffb9"},(0,n.kt)("inlineCode",{parentName:"a"},"8125dc1"))),(0,n.kt)("li",{parentName:"ul"},"fix(message): fix font loading ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fdc498e178a04315c88e005fbc1371ba954ff402"},(0,n.kt)("inlineCode",{parentName:"a"},"fdc498e"))),(0,n.kt)("li",{parentName:"ul"},"fix(logo): logo change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f8c8af4453774386d5d0432a078b049416d034b"},(0,n.kt)("inlineCode",{parentName:"a"},"5f8c8af")))),(0,n.kt)("h4",{id:"-enhancements-64"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): multiple components fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a3ff518323a3eab18edc5057c6f1233e5422a22"},(0,n.kt)("inlineCode",{parentName:"a"},"4a3ff51"))),(0,n.kt)("li",{parentName:"ul"},"change(infrastructure) re-enable integration tests for auto release stack ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce8daf8abc6eb9a6b7fd8579904a3e5642896e3a"},(0,n.kt)("inlineCode",{parentName:"a"},"ce8daf8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): global site files styling update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f3770f1756bca3898e2a67fa532a9d97b0fd1ef2"},(0,n.kt)("inlineCode",{parentName:"a"},"f3770f1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): multiple components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9277aaccb09aa03575b95851d55fc69b1f530e23"},(0,n.kt)("inlineCode",{parentName:"a"},"9277aac"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer) adjust to volto theming update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a59f1c354ceea661c60faabfdb6226c9f4ba1209"},(0,n.kt)("inlineCode",{parentName:"a"},"a59f1c3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): minor styling update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dd6b55c6c5331383a42f6865bd9bd0641feb9a3b"},(0,n.kt)("inlineCode",{parentName:"a"},"dd6b55c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): change header mega menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7559b57a08c2f0e9f3eb95167479ca041b998bc5"},(0,n.kt)("inlineCode",{parentName:"a"},"7559b57"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/451b9493b100dae80bed4b6629da725195dddff1"},(0,n.kt)("inlineCode",{parentName:"a"},"451b949"))),(0,n.kt)("li",{parentName:"ul"},"refactor(accordion): minor styling update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aeaf25f585c1379a2bd40de1c1bf03fee00ef76e"},(0,n.kt)("inlineCode",{parentName:"a"},"aeaf25f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bdff1768096443f2f453d76bf9958adabd309cb7"},(0,n.kt)("inlineCode",{parentName:"a"},"bdff176"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer):mobile responsiveness ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/14822bec78feebc2b06fc26d6992a481be2e3609"},(0,n.kt)("inlineCode",{parentName:"a"},"14822be"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): main and custom less files update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1607760bb1582c63ab1a6b978ac13bb0ca51b0c2"},(0,n.kt)("inlineCode",{parentName:"a"},"1607760"))),(0,n.kt)("li",{parentName:"ul"},"refactor(timeline): update after removing timeline addon ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f54d3806eb0a60379b46b03a04a6602ed465cd15"},(0,n.kt)("inlineCode",{parentName:"a"},"f54d380"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Footer): replace with subcomponents ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/378c652265213bafac9de1d946cb328fa2fe90cb"},(0,n.kt)("inlineCode",{parentName:"a"},"378c652"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): header change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/029e85039bb3f35a6ba4ff2870d98e1faa23661b"},(0,n.kt)("inlineCode",{parentName:"a"},"029e850"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): change header bar ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2b766fd62c86d22f01278c54d3a1dbfb696b095b"},(0,n.kt)("inlineCode",{parentName:"a"},"2b766fd"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus) use itml branch for docusaurus deployment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e286c50056aa6d0d5735cb330789b4e48a1f927"},(0,n.kt)("inlineCode",{parentName:"a"},"6e286c5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(accordion): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/971fcb824f6aa55ac28b4b275927b202d2c08ca6"},(0,n.kt)("inlineCode",{parentName:"a"},"971fcb8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): add sub components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7f955dbafa94c13e71ff587af70aa84d18da8da0"},(0,n.kt)("inlineCode",{parentName:"a"},"7f955db"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus) tweak auto deployment to always commit changes from docs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a2940daef1cf281bac87dec3cec68337053cc52d"},(0,n.kt)("inlineCode",{parentName:"a"},"a2940da"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): less and variables files created ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5b1a8aaf7f678dd60fb88149284058fcab617fd"},(0,n.kt)("inlineCode",{parentName:"a"},"d5b1a8a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(label): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c945e1600b4beb3667b389542adade317d285c6"},(0,n.kt)("inlineCode",{parentName:"a"},"3c945e1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(message): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e950fc56461540be24d9e5b2ff3c0bf8ad53738"},(0,n.kt)("inlineCode",{parentName:"a"},"3e950fc"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Footer): add sub components and props ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c3d14871887a83fb91792fbc8977c0439bcb16f2"},(0,n.kt)("inlineCode",{parentName:"a"},"c3d1487"))),(0,n.kt)("li",{parentName:"ul"},"refactor(modal): modal and confirm adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/83b60e94bdd3203a92a1b9038f9cc45011ba72a5"},(0,n.kt)("inlineCode",{parentName:"a"},"83b60e9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(comment): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/84348c36b5b750c324c89b5e3c462319bb9ebf46"},(0,n.kt)("inlineCode",{parentName:"a"},"84348c3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook):adjust headings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32f64f9b71d1cb8c96c9c37ba1850a2278f95287"},(0,n.kt)("inlineCode",{parentName:"a"},"32f64f9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): add comments to header menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c2c83b202e5117d8e0013101d8e922e9d93d21de"},(0,n.kt)("inlineCode",{parentName:"a"},"c2c83b2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Accordion): clear up accordion stories code ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4e59b8fa961b878591e9806e1ebbfdb841523077"},(0,n.kt)("inlineCode",{parentName:"a"},"4e59b8f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(segmant): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ab211e868296f377fddba203847549f0e5e07df"},(0,n.kt)("inlineCode",{parentName:"a"},"3ab211e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button) minor styling update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8782bb27c789a4aac97b380d718f4de129fdf682"},(0,n.kt)("inlineCode",{parentName:"a"},"8782bb2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): change image position ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cdd76d59ade86f3f989bf7d94e45e4d9b439115f"},(0,n.kt)("inlineCode",{parentName:"a"},"cdd76d5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumbs): update less variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/640817ee904f88a04f0e8f11b258f95b8db97039"},(0,n.kt)("inlineCode",{parentName:"a"},"640817e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(list): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1079c733e6ec634fedaab5b4630888a52b28e482"},(0,n.kt)("inlineCode",{parentName:"a"},"1079c73"))),(0,n.kt)("li",{parentName:"ul"},"refactor(timeline):adjust timeline module ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/213eb11e8e87940c18d81738609b4684329a5ce4"},(0,n.kt)("inlineCode",{parentName:"a"},"213eb11"))),(0,n.kt)("li",{parentName:"ul"},"refactor(blockquote):adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5eec87fc1b3017011266241c20b31217ac27c12d"},(0,n.kt)("inlineCode",{parentName:"a"},"5eec87f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progress): add progress bar colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ccf3c9823b2583fc70183554df7c4588fbf9ca13"},(0,n.kt)("inlineCode",{parentName:"a"},"ccf3c98"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pullquote):adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fee446668a8d65a717b42667af825cb5cec836b2"},(0,n.kt)("inlineCode",{parentName:"a"},"fee4466"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): change mobile mega menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c7ecf18a81024121218d580f201f324cf990829e"},(0,n.kt)("inlineCode",{parentName:"a"},"c7ecf18"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b726e49519914b02766bcd993b94ce9ff164e1df"},(0,n.kt)("inlineCode",{parentName:"a"},"b726e49"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button) adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/eb257f83541871ccc635842664722b914661770c"},(0,n.kt)("inlineCode",{parentName:"a"},"eb257f8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form): minor styling update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/79934b2cde2e806418a6422df2914321181f7a22"},(0,n.kt)("inlineCode",{parentName:"a"},"79934b2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Footer): create Actions & Sites sub components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/446840b99abd6897c1b59a9462d72b1f06f1dd4e"},(0,n.kt)("inlineCode",{parentName:"a"},"446840b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(inpageNavigation): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/85c631a9e9c1454f1f2530e4f1851089663dd610"},(0,n.kt)("inlineCode",{parentName:"a"},"85c631a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Inpage Navigation): changed button's display ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/36e5b4f107ce3535b607f7ed169c723a66ce6ac2"},(0,n.kt)("inlineCode",{parentName:"a"},"36e5b4f"))),(0,n.kt)("li",{parentName:"ul"},"enhancement(docusaurus) modified headings to be within release versions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19ace3038d6b4535b29634209e4d506e7dca2c2c"},(0,n.kt)("inlineCode",{parentName:"a"},"19ace30"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): move components to ui folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb91f88f628580f565eb01ea8627763bc2243dfb"},(0,n.kt)("inlineCode",{parentName:"a"},"cb91f88"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): change mega menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/de0fc6b3862a88ac04058b56020af23c1946ce41"},(0,n.kt)("inlineCode",{parentName:"a"},"de0fc6b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Pullquote): divide Pullquote to sub components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/34413c44ab9e318d67408f7497782b7de693deeb"},(0,n.kt)("inlineCode",{parentName:"a"},"34413c4"))),(0,n.kt)("li",{parentName:"ul"},"enhancement(docusaurus) replace changelog when auto-building docs Refs #145331 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/da25c0e25ffa80131ab4b5503b28e43385d9f827"},(0,n.kt)("inlineCode",{parentName:"a"},"da25c0e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(popup): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d0d192dc2b2a5edd422cf6a7b359c384ec4b1d55"},(0,n.kt)("inlineCode",{parentName:"a"},"d0d192d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ab6f914f487bea0df299de7da0bbd917733ee00"},(0,n.kt)("inlineCode",{parentName:"a"},"2ab6f91"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/89a16af86a165d7798b68b95ff3de215a92f0569"},(0,n.kt)("inlineCode",{parentName:"a"},"89a16af"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pullquotes) remove unnecessary variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e0d20a3febec060ac24c5498846e768d7068e8b9"},(0,n.kt)("inlineCode",{parentName:"a"},"e0d20a3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progress):adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d1ab950ee9cc14bbe95869d4f143fc428aad5a8d"},(0,n.kt)("inlineCode",{parentName:"a"},"d1ab950"))),(0,n.kt)("li",{parentName:"ul"},"refactor(blockquote) change variables names ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/36fd5be9bde1a3ceb8390639414f254fc26b8e76"},(0,n.kt)("inlineCode",{parentName:"a"},"36fd5be"))),(0,n.kt)("li",{parentName:"ul"},"refactor(comment): adjust font sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0311ed14c951eb9cba18a58f6f954c19601d838b"},(0,n.kt)("inlineCode",{parentName:"a"},"0311ed1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(InpageNavigation): clear up code ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1d7afdc8d751e61c3eef75360555807fdbef8619"},(0,n.kt)("inlineCode",{parentName:"a"},"1d7afdc"))),(0,n.kt)("li",{parentName:"ul"},"refactor(container): change variable name for computer padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/26d123f3e7e30a706b09efc10773694af79377f9"},(0,n.kt)("inlineCode",{parentName:"a"},"26d123f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(inpageNavigation): remove imports ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/25c1d1c3016695d92d104a12b22a6a9254f41b20"},(0,n.kt)("inlineCode",{parentName:"a"},"25c1d1c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): update ui index components exports ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce78d47880cab5849f4c01785cdd97a9b26771ec"},(0,n.kt)("inlineCode",{parentName:"a"},"ce78d47"))),(0,n.kt)("li",{parentName:"ul"},"change(infrastructure) auto build storybook when pushing to develop-itml branch of volto-eea-design-system ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e9aa5bc3de9c2e1c5dc55b5d317679bc14dd1cbd"},(0,n.kt)("inlineCode",{parentName:"a"},"e9aa5bc"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): delete demo stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8b58d0245f5bda7e2022a2ef9ace11015f13da01"},(0,n.kt)("inlineCode",{parentName:"a"},"8b58d02"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus) align deployment steps for building docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/37e4ce05d2772ac320a7ad561536189c5ea0a582"},(0,n.kt)("inlineCode",{parentName:"a"},"37e4ce0"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): remove components from customizations folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8930edeaf064ec316f1d086e1301a7e5269bfe4b"},(0,n.kt)("inlineCode",{parentName:"a"},"8930ede"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tab): minor styling update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1252ad0317ecf7e583dbb975b29a4c8e4c75330e"},(0,n.kt)("inlineCode",{parentName:"a"},"1252ad0"))),(0,n.kt)("li",{parentName:"ul"},"refactor(comment): change avatar src ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e5f9c4c02f5de5ae6480eedb45730bb76efbf7b4"},(0,n.kt)("inlineCode",{parentName:"a"},"e5f9c4c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner) : change file type and folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/878742ba0f95440ffbb5aec33f2cc4201dfacd43"},(0,n.kt)("inlineCode",{parentName:"a"},"878742b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form elements):changed text ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/919beea9deccec68ac0cdbbc1249ef4ab4c12230"},(0,n.kt)("inlineCode",{parentName:"a"},"919beea"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Image): change image src ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b9710849adf0cf4f10815186b6293bcc3881d68d"},(0,n.kt)("inlineCode",{parentName:"a"},"b971084"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Pullquote): add component propTypes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d32c5e69e76d7f369a286d29e49d767125550ebc"},(0,n.kt)("inlineCode",{parentName:"a"},"d32c5e6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(blockquote): adjust font sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d71a3cef7bfd4109c56b7fe8c07271c60a4bd19e"},(0,n.kt)("inlineCode",{parentName:"a"},"d71a3ce"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update font sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1c91c357a59669df0da0f4fc70d3aa420db27a14"},(0,n.kt)("inlineCode",{parentName:"a"},"1c91c35"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Blockquote): add component proTypes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea02649f92b0e41b1eb62a771330c2e53b3960e8"},(0,n.kt)("inlineCode",{parentName:"a"},"ea02649"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logo): update image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6113728e248c3e0fd0a467bb34406aa4403399e"},(0,n.kt)("inlineCode",{parentName:"a"},"f611372"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): restore config ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2c5239d92abe6be70b092e7e43f195308800f87"},(0,n.kt)("inlineCode",{parentName:"a"},"f2c5239"))),(0,n.kt)("li",{parentName:"ul"},"refactor(blockquote): update component name ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/572e655c033d93b32a48a61b1bf6383f6c993b26"},(0,n.kt)("inlineCode",{parentName:"a"},"572e655"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): fix story header import ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ceda6c7790964b150b95daf161d10364d6b67427"},(0,n.kt)("inlineCode",{parentName:"a"},"ceda6c7"))),(0,n.kt)("li",{parentName:"ul"},"change(infrastructure) auto build docusaurus when pushing to develop-itml branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7bebdf5e58f37400a8ae3d5f816c64c6b9ca3a5b"},(0,n.kt)("inlineCode",{parentName:"a"},"7bebdf5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): remove components from customization folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a9bb9b34e6961eaf16e54ed6f6ca4942944e8a0"},(0,n.kt)("inlineCode",{parentName:"a"},"4a9bb9b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner):story rename ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/56ff603d6c9cec7c22483a088624f5bd7911f717"},(0,n.kt)("inlineCode",{parentName:"a"},"56ff603"))),(0,n.kt)("li",{parentName:"ul"},"change(testing) removed navigation from cypress tests until component is finished ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5549f4c07cb0ffd725342f365aae07745d7e25f7"},(0,n.kt)("inlineCode",{parentName:"a"},"5549f4c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Segment): change to .jsx extension ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5cb35d81e8628832bab2e6ad50de6892e7e4370e"},(0,n.kt)("inlineCode",{parentName:"a"},"5cb35d8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Pullquote): change to .jsx extension ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/564cf7ea379703315f179ab922b4e0a02df63e47"},(0,n.kt)("inlineCode",{parentName:"a"},"564cf7e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(PopUp):change to .jsx extension ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dcb24ff252665a79fda2fec645e6f2a48ff71fd0"},(0,n.kt)("inlineCode",{parentName:"a"},"dcb24ff"))),(0,n.kt)("li",{parentName:"ul"},"refactor(InpageNavigation): change to .jsx extension ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dfefce3ebe55f8eb6f67974ccc33b0cb0bb13d9f"},(0,n.kt)("inlineCode",{parentName:"a"},"dfefce3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Blockquote): change to .jsx extension ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/44a164532c1ae969e4411e0cfb68b705ff2bfc1e"},(0,n.kt)("inlineCode",{parentName:"a"},"44a1645"))),(0,n.kt)("li",{parentName:"ul"},"refactor(heading): story name update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aa10f3412323321650e20401038d44b9bfdb507a"},(0,n.kt)("inlineCode",{parentName:"a"},"aa10f34")))),(0,n.kt)("h4",{id:"-internal-changes-25"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(footer): prettier fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/902c25712c88330db841240c9f1d6004e3e2674f"},(0,n.kt)("inlineCode",{parentName:"a"},"902c257"))),(0,n.kt)("li",{parentName:"ul"},"style(storybook): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/59f941dea9bf05f31257230f1a871c6eb0e98aae"},(0,n.kt)("inlineCode",{parentName:"a"},"59f941d")))),(0,n.kt)("h4",{id:"-documentation-changes-22"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus):multiple page updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2aba73ea6ff86c5a94789c707d98699fc1397e01"},(0,n.kt)("inlineCode",{parentName:"a"},"2aba73e"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus):update page content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/565697fecb4528cc5b4a6a43ca3ab9b026a2779e"},(0,n.kt)("inlineCode",{parentName:"a"},"565697f"))),(0,n.kt)("li",{parentName:"ul"},"docs(grid):update components grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/60eb083aa5d00840642caf73f6e0bb86b814aed5"},(0,n.kt)("inlineCode",{parentName:"a"},"60eb083"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): page adjustments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0641eacf9f4715acd4baaa651335ff84ac418009"},(0,n.kt)("inlineCode",{parentName:"a"},"0641eac"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus):updated various pages ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f860176a5f755d75d7b9558661e675fc678fe7ac"},(0,n.kt)("inlineCode",{parentName:"a"},"f860176"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): logo change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3af5e5c3acbf7ba4e152ca6944c500dbb0cf10ee"},(0,n.kt)("inlineCode",{parentName:"a"},"3af5e5c")))),(0,n.kt)("h4",{id:"\ufe0f-others-55"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"added sortable table stories and descriptions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d44dd7c651abe46c380b62efd3258c92223e99c"},(0,n.kt)("inlineCode",{parentName:"a"},"6d44dd7"))),(0,n.kt)("li",{parentName:"ul"},"Layout components theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/586101341f713bb072f2753d8df6e8b2ad6e4938"},(0,n.kt)("inlineCode",{parentName:"a"},"5861013"))),(0,n.kt)("li",{parentName:"ul"},"recovered files from origin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4ac04fde9c4297b09c834385f772e955b7f3b4a"},(0,n.kt)("inlineCode",{parentName:"a"},"a4ac04f"))),(0,n.kt)("li",{parentName:"ul"},"grid component & stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a5752e49aac05251905f7355234c3f9bc6b798f"},(0,n.kt)("inlineCode",{parentName:"a"},"4a5752e"))),(0,n.kt)("li",{parentName:"ul"},"Updated what's new section with actual commits from volto-eea-design-system repo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fc5e3c385d82ff7eccbd5841736f3ce292b2b7fd"},(0,n.kt)("inlineCode",{parentName:"a"},"fc5e3c3"))),(0,n.kt)("li",{parentName:"ul"},"Docusaurus title possible fix. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/db699e771b13bbd7e75c3bd84bb91ecf5d0459d8"},(0,n.kt)("inlineCode",{parentName:"a"},"db699e7"))),(0,n.kt)("li",{parentName:"ul"},"form elements stories added description & default values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6b4f6ebeed275a86f5ef6dafb13219db0c0fbbc6"},(0,n.kt)("inlineCode",{parentName:"a"},"6b4f6eb"))),(0,n.kt)("li",{parentName:"ul"},"removed API tabs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/58aa9286eb5d8cc520239aa6ee424ee5cd5446c3"},(0,n.kt)("inlineCode",{parentName:"a"},"58aa928"))),(0,n.kt)("li",{parentName:"ul"},"Layout updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/854f388c5b049e41217ddb444bc7bd0f2c61cdf6"},(0,n.kt)("inlineCode",{parentName:"a"},"854f388"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142123 removed extra customization of semantic.less: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab9de811b20b20a9f91ddc8b45b4de2eb9c47f6c"},(0,n.kt)("inlineCode",{parentName:"a"},"ab9de81"))),(0,n.kt)("li",{parentName:"ul"},"added page-header,footer and grid in docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/660c8e382068c179ca66831ae23588a4fb67cde6"},(0,n.kt)("inlineCode",{parentName:"a"},"660c8e3"))),(0,n.kt)("li",{parentName:"ul"},"Manual docs build and commit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/666eb6aff8535bb586a49579152fcf8a88961f35"},(0,n.kt)("inlineCode",{parentName:"a"},"666eb6a"))),(0,n.kt)("li",{parentName:"ul"},"added svg & png files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f1338d5bb02e17e402cea4b1584c7d01896097f9"},(0,n.kt)("inlineCode",{parentName:"a"},"f1338d5"))),(0,n.kt)("li",{parentName:"ul"},"added missing components to docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/934dfd8a98942c247deb2b5b8693604ad77cafa3"},(0,n.kt)("inlineCode",{parentName:"a"},"934dfd8"))),(0,n.kt)("li",{parentName:"ul"},"Control descriptions updated ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/56581ebc86a91fd012a98984b20f6daad25900fe"},(0,n.kt)("inlineCode",{parentName:"a"},"56581eb"))),(0,n.kt)("li",{parentName:"ul"},"Grid updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/700332d354aea84526ff22acf3bc2f8903c0f584"},(0,n.kt)("inlineCode",{parentName:"a"},"700332d"))),(0,n.kt)("li",{parentName:"ul"},"Button theming update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0ec68b6bd1ab060ac224a859180b9f750834c0b8"},(0,n.kt)("inlineCode",{parentName:"a"},"0ec68b6"))),(0,n.kt)("li",{parentName:"ul"},"site variebales & overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7251162f182f1528d72070aae8a5a14e9ec5ee93"},(0,n.kt)("inlineCode",{parentName:"a"},"7251162"))),(0,n.kt)("li",{parentName:"ul"},"Table and Tabs theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/49f08608e8be8475d561e1ce5c1bfbcfd21001f9"},(0,n.kt)("inlineCode",{parentName:"a"},"49f0860"))),(0,n.kt)("li",{parentName:"ul"},"Responsiveness updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48e1351104249fea610941793ff8ec3bf35d0699"},(0,n.kt)("inlineCode",{parentName:"a"},"48e1351"))),(0,n.kt)("li",{parentName:"ul"},"added various components to docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/550d71963b0957b1c5597bbdb2c699c411c649bd"},(0,n.kt)("inlineCode",{parentName:"a"},"550d719"))),(0,n.kt)("li",{parentName:"ul"},"Checkbox and radio updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24652a238f2c98fe5d8e8032e3320e0b3b4753e5"},(0,n.kt)("inlineCode",{parentName:"a"},"24652a2"))),(0,n.kt)("li",{parentName:"ul"},"remove images from typography and colour docs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8493e924f5af4ba7c2ed478d7bae6992b4ef6ed6"},(0,n.kt)("inlineCode",{parentName:"a"},"8493e92"))),(0,n.kt)("li",{parentName:"ul"},"added guidelines' text and finished all components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/02d75fcdc5a98633e4d563c7ec2863a9588b5506"},(0,n.kt)("inlineCode",{parentName:"a"},"02d75fc"))),(0,n.kt)("li",{parentName:"ul"},"added more missing components in docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8be82634c681a073b13a5a90ee2b699bd25b422a"},(0,n.kt)("inlineCode",{parentName:"a"},"8be8263"))),(0,n.kt)("li",{parentName:"ul"},"Prettier changes on docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f1e5eb796f2072e3b816a39a35cf48523405167"},(0,n.kt)("inlineCode",{parentName:"a"},"5f1e5eb"))),(0,n.kt)("li",{parentName:"ul"},"Grid updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ae099453e280de800a5a06c6fcbe074acc1f7bfd"},(0,n.kt)("inlineCode",{parentName:"a"},"ae09945"))),(0,n.kt)("li",{parentName:"ul"},"Minor fixes for tests ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3bdf3063d9bbc101f4b83c6aa4fc5fef5e87c776"},(0,n.kt)("inlineCode",{parentName:"a"},"3bdf306"))),(0,n.kt)("li",{parentName:"ul"},"Layout updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8b7a4dc8731cb02946e604a0dd73d2a45f61cd8b"},(0,n.kt)("inlineCode",{parentName:"a"},"8b7a4dc"))),(0,n.kt)("li",{parentName:"ul"},"Footer and TOC theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bb3d3c486f64e123b9009a76c6f054a8e2973230"},(0,n.kt)("inlineCode",{parentName:"a"},"bb3d3c4"))),(0,n.kt)("li",{parentName:"ul"},"Refs #145331 manually commit changelog until autobuild is stabilized ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93168b096b60fc6a208b20d1cbe610384be62f42"},(0,n.kt)("inlineCode",{parentName:"a"},"93168b0"))),(0,n.kt)("li",{parentName:"ul"},"label component changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/df8c0ff2d9646e4dcc7ed1a25a80712ca9ea2c9b"},(0,n.kt)("inlineCode",{parentName:"a"},"df8c0ff"))),(0,n.kt)("li",{parentName:"ul"},"added several sections to the theming guidelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff1a649d9c83794024e2db4f6349b3cac4fe79a0"},(0,n.kt)("inlineCode",{parentName:"a"},"ff1a649"))),(0,n.kt)("li",{parentName:"ul"},"Updated removed files. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/84f9b8cf7c469525367764909fa0d322532a13be"},(0,n.kt)("inlineCode",{parentName:"a"},"84f9b8c"))),(0,n.kt)("li",{parentName:"ul"},"added more docusaurus components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/52a3b9edd4c751225609dcaf2d16f08688e9cfeb"},(0,n.kt)("inlineCode",{parentName:"a"},"52a3b9e"))),(0,n.kt)("li",{parentName:"ul"},"Progress Bar ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f2efc9ded5a766df0c611a15f6a93f27bd14a37"},(0,n.kt)("inlineCode",{parentName:"a"},"9f2efc9"))),(0,n.kt)("li",{parentName:"ul"},"Modal and Confirm updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3b306c6fa5631e1e4e37456d483a69bc8cc3b234"},(0,n.kt)("inlineCode",{parentName:"a"},"3b306c6"))),(0,n.kt)("li",{parentName:"ul"},"Add proper changes to whatsnew meant in previous commit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/40f78e362ca607ef3893fff3d03c8ed1b4447c11"},(0,n.kt)("inlineCode",{parentName:"a"},"40f78e3"))),(0,n.kt)("li",{parentName:"ul"},"Form Descriptions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/de0dfbcb3a0a9610f1cbf7337f598b0c5338f2a3"},(0,n.kt)("inlineCode",{parentName:"a"},"de0dfbc"))),(0,n.kt)("li",{parentName:"ul"},"Prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1337e6fffb13fa8447488129d5dcd5af9e35e46a"},(0,n.kt)("inlineCode",{parentName:"a"},"1337e6f"))),(0,n.kt)("li",{parentName:"ul"},"Deleted files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b82f982fbfbaff4e74e35424c6122410e3830faf"},(0,n.kt)("inlineCode",{parentName:"a"},"b82f982"))),(0,n.kt)("li",{parentName:"ul"},"add new images for spacing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7b7b2c48317c45e3ff89162d703434f615c840e9"},(0,n.kt)("inlineCode",{parentName:"a"},"7b7b2c4"))),(0,n.kt)("li",{parentName:"ul"},"Messages Theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ad621a38c121f585125d5934c1939ba6a7198b33"},(0,n.kt)("inlineCode",{parentName:"a"},"ad621a3"))),(0,n.kt)("li",{parentName:"ul"},"added new content to docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1c83452be983d46f4128c33c25e69afef333f82a"},(0,n.kt)("inlineCode",{parentName:"a"},"1c83452"))),(0,n.kt)("li",{parentName:"ul"},"Minor less updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a36a8bbfeb201049fa13987894a5ec2ec167ed03"},(0,n.kt)("inlineCode",{parentName:"a"},"a36a8bb"))),(0,n.kt)("li",{parentName:"ul"},"Tabs and lists updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e37eef19e67c3c5720d5a9565e9884dc5c19f127"},(0,n.kt)("inlineCode",{parentName:"a"},"e37eef1"))),(0,n.kt)("li",{parentName:"ul"},"Inpage nav and timeline components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/76f0f82dc3a8f683268a4df7580b8f73a0cc1cb4"},(0,n.kt)("inlineCode",{parentName:"a"},"76f0f82"))),(0,n.kt)("li",{parentName:"ul"},"Prettier updated files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/679b9d2026091685d6982ab68e5088544ea0941e"},(0,n.kt)("inlineCode",{parentName:"a"},"679b9d2"))),(0,n.kt)("li",{parentName:"ul"},"dropdown initial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d8aef26dc905adbb0fb72c73d6188b50944931c9"},(0,n.kt)("inlineCode",{parentName:"a"},"d8aef26"))),(0,n.kt)("li",{parentName:"ul"},"Prettier changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f068af0b307d85146e1d8a529947c98988c506f7"},(0,n.kt)("inlineCode",{parentName:"a"},"f068af0"))),(0,n.kt)("li",{parentName:"ul"},"List initial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d3b96974bc35ad958b8cfc7921c1fbe345e5ebf"},(0,n.kt)("inlineCode",{parentName:"a"},"6d3b969"))),(0,n.kt)("li",{parentName:"ul"},"List story updated ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e96a6f6cff9a4db994df7cbf584842b18ca1c432"},(0,n.kt)("inlineCode",{parentName:"a"},"e96a6f6"))),(0,n.kt)("li",{parentName:"ul"},"Statistics updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/74bf63999cfeb0791b9475d3895a49a245be2cd3"},(0,n.kt)("inlineCode",{parentName:"a"},"74bf639"))),(0,n.kt)("li",{parentName:"ul"},"styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c169cc026189ca71e6e9cad17bde9d65d93ffbde"},(0,n.kt)("inlineCode",{parentName:"a"},"c169cc0"))),(0,n.kt)("li",{parentName:"ul"},"timeline comp storybook changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f42686ae19b619fa659730567bdceb369ecd4b0"},(0,n.kt)("inlineCode",{parentName:"a"},"1f42686"))),(0,n.kt)("li",{parentName:"ul"},"feature(docusaurus) added theming guidelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ded1f04a3197ac34640f98bcfe363c75a0a3745f"},(0,n.kt)("inlineCode",{parentName:"a"},"ded1f04"))),(0,n.kt)("li",{parentName:"ul"},"Properly commented out integration tests. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48b3a15f426db52b9fa27f6d7792c424b4939867"},(0,n.kt)("inlineCode",{parentName:"a"},"48b3a15"))),(0,n.kt)("li",{parentName:"ul"},"Reattempting commented out integrations tests. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3dd8211ecfca6c7891ef6851d0dc82899ab50f05"},(0,n.kt)("inlineCode",{parentName:"a"},"3dd8211"))),(0,n.kt)("li",{parentName:"ul"},"Button theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4231e1c264165ef6f7e2f2cd6fbd7c51159330b6"},(0,n.kt)("inlineCode",{parentName:"a"},"4231e1c"))),(0,n.kt)("li",{parentName:"ul"},"Card initial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/06dace5c4aa54d90ec4bcdc0b3fbc0883f825947"},(0,n.kt)("inlineCode",{parentName:"a"},"06dace5"))),(0,n.kt)("li",{parentName:"ul"},"form element storybook changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4b06aabddedbc281f23fc75a1e56476c4d1c1af"},(0,n.kt)("inlineCode",{parentName:"a"},"c4b06aa"))),(0,n.kt)("li",{parentName:"ul"},"Pagination theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2a80175762fbab23691d52f89cd38eb6f7740c4e"},(0,n.kt)("inlineCode",{parentName:"a"},"2a80175"))),(0,n.kt)("li",{parentName:"ul"},"Accordion theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8061bf90823a9172cfccb0ea1ed544ceda1c3fe9"},(0,n.kt)("inlineCode",{parentName:"a"},"8061bf9"))),(0,n.kt)("li",{parentName:"ul"},"global var updates and radio story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9526ee2fc8269db60ce912bfd4edfadbb55fed3a"},(0,n.kt)("inlineCode",{parentName:"a"},"9526ee2"))),(0,n.kt)("li",{parentName:"ul"},"created pullquote component & stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/df35563fb7ba2be403461c120b32ebffaa391736"},(0,n.kt)("inlineCode",{parentName:"a"},"df35563"))),(0,n.kt)("li",{parentName:"ul"},"Item stories added description & default values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9d459f2cd92e419813e7edf0f28dec4c750a5940"},(0,n.kt)("inlineCode",{parentName:"a"},"9d459f2"))),(0,n.kt)("li",{parentName:"ul"},"storybook clean up code ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bffd32603a70cf6cafa4874937f3fe218ba5de9d"},(0,n.kt)("inlineCode",{parentName:"a"},"bffd326"))),(0,n.kt)("li",{parentName:"ul"},"List updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/28f1b5352d83e144acdaae694cf20755a3b04106"},(0,n.kt)("inlineCode",{parentName:"a"},"28f1b53"))),(0,n.kt)("li",{parentName:"ul"},"Button classes updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/788c289549490d9ac5f1c40f1e39124349e1dbcd"},(0,n.kt)("inlineCode",{parentName:"a"},"788c289"))),(0,n.kt)("li",{parentName:"ul"},"Prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/678c9be717468fd2c8c425bec5999e81a66dabf6"},(0,n.kt)("inlineCode",{parentName:"a"},"678c9be"))),(0,n.kt)("li",{parentName:"ul"},"Removed header title from partial docusaurus components. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ed7c45e458504fa76ad500ab26f59a442b3c6952"},(0,n.kt)("inlineCode",{parentName:"a"},"ed7c45e"))),(0,n.kt)("li",{parentName:"ul"},"created banner component and stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9be170f2ccb20218a7bdae48c85f77acd69427ff"},(0,n.kt)("inlineCode",{parentName:"a"},"9be170f"))),(0,n.kt)("li",{parentName:"ul"},"Breadcrumb stories description & defaultValue -- clean up code ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/186ab65ca8635c853c919fc645c1ef0486e22a43"},(0,n.kt)("inlineCode",{parentName:"a"},"186ab65"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142123 added customization of semantic.less: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1e02356722fcb7528883b6dc3bf71279343fd1f7"},(0,n.kt)("inlineCode",{parentName:"a"},"1e02356"))),(0,n.kt)("li",{parentName:"ul"},"Card stories added description & default values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6b408f1ed24ee69ad8faacc6b36cf06e9917478"},(0,n.kt)("inlineCode",{parentName:"a"},"f6b408f"))),(0,n.kt)("li",{parentName:"ul"},"Statistic and accordion updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/16064ceeb6e1a7f097979365473c6a86ced4056f"},(0,n.kt)("inlineCode",{parentName:"a"},"16064ce"))),(0,n.kt)("li",{parentName:"ul"},"breadcrumb component & stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5bceb980502828c182a3998943ab086159c3fcb6"},(0,n.kt)("inlineCode",{parentName:"a"},"5bceb98"))),(0,n.kt)("li",{parentName:"ul"},"Container initial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3eb7155332f83bb8896a831e24cbae028413aba2"},(0,n.kt)("inlineCode",{parentName:"a"},"3eb7155"))),(0,n.kt)("li",{parentName:"ul"},"doc(docusaurus):Fix text for various parts ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bfd3fa2584a6e7aa2c26f3502b1ede912682905e"},(0,n.kt)("inlineCode",{parentName:"a"},"bfd3fa2"))),(0,n.kt)("li",{parentName:"ul"},"blockquote component & stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/879b6402f08112fedfffe6d66e72c37750593bb8"},(0,n.kt)("inlineCode",{parentName:"a"},"879b640"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 removed doc comments breaking doc building ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e6a6756b0533e6dbfdb636f9a9e6485e30187cad"},(0,n.kt)("inlineCode",{parentName:"a"},"e6a6756"))),(0,n.kt)("li",{parentName:"ul"},"Popup updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce2d641d8f5d940cbb93deefdabbbfb85ad20ad7"},(0,n.kt)("inlineCode",{parentName:"a"},"ce2d641"))),(0,n.kt)("li",{parentName:"ul"},"Global variables for colors and borders added ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e5fbd619d163acae03d3d1bb26e082390f90c21"},(0,n.kt)("inlineCode",{parentName:"a"},"6e5fbd6"))),(0,n.kt)("li",{parentName:"ul"},"Tab stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5429cfb7751d6ad31231f9cc19d8bd7e8d24d0b8"},(0,n.kt)("inlineCode",{parentName:"a"},"5429cfb"))),(0,n.kt)("li",{parentName:"ul"},"Confirm stories added description & default value ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/85cda14b1338dc986bbab5aa7846b4ef3ec8d0bd"},(0,n.kt)("inlineCode",{parentName:"a"},"85cda14"))),(0,n.kt)("li",{parentName:"ul"},"Kebab case class names ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b41cd078ab5b349dc1d15769832913dcc8e6786f"},(0,n.kt)("inlineCode",{parentName:"a"},"b41cd07"))),(0,n.kt)("li",{parentName:"ul"},"Card and Comment class updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/389946540d3def2ea81c5c7c489e79dc24d4efb3"},(0,n.kt)("inlineCode",{parentName:"a"},"3899465"))),(0,n.kt)("li",{parentName:"ul"},"Accordion updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c97ba39cc7823cb72180a858c0b8a69cc9434927"},(0,n.kt)("inlineCode",{parentName:"a"},"c97ba39"))),(0,n.kt)("li",{parentName:"ul"},"item stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/772e41f3d90034827afcb118c38ab075d3bb7bb9"},(0,n.kt)("inlineCode",{parentName:"a"},"772e41f"))),(0,n.kt)("li",{parentName:"ul"},"Accordion class updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9cdde86f14a17701d66b3d2850980251094934b5"},(0,n.kt)("inlineCode",{parentName:"a"},"9cdde86"))),(0,n.kt)("li",{parentName:"ul"},"Comment stories added description & default value ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb6f25bc1452330f4155ccf6a64df491740ed8da"},(0,n.kt)("inlineCode",{parentName:"a"},"cb6f25b"))),(0,n.kt)("li",{parentName:"ul"},"Accrodion stories description & default value ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab8fb883c3cbfeea1807bf1aaf72f5d8424933f4"},(0,n.kt)("inlineCode",{parentName:"a"},"ab8fb88"))),(0,n.kt)("li",{parentName:"ul"},"Pullquotes updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5984213ba9397ddb4c1932394a5cc368336cf0a"},(0,n.kt)("inlineCode",{parentName:"a"},"c598421"))),(0,n.kt)("li",{parentName:"ul"},"Modal and confirm class updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0ae47e6f55645c0d6318123a5783648326c16852"},(0,n.kt)("inlineCode",{parentName:"a"},"0ae47e6"))),(0,n.kt)("li",{parentName:"ul"},"Tab and paggination updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/96796fffb189d2fa3628423280f3622dcacb449f"},(0,n.kt)("inlineCode",{parentName:"a"},"96796ff"))),(0,n.kt)("li",{parentName:"ul"},"Form Updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e986a9f0fc48ddcbc17488a8bbbaec82cee92232"},(0,n.kt)("inlineCode",{parentName:"a"},"e986a9f"))),(0,n.kt)("li",{parentName:"ul"},"Classes renamed ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/73c8c3d622bb3b9c0b5cf09e340de4df6606a14c"},(0,n.kt)("inlineCode",{parentName:"a"},"73c8c3d"))),(0,n.kt)("li",{parentName:"ul"},"List and item less updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce0de1708ca410c7839f3ce9b5b3cfbdb6979939"},(0,n.kt)("inlineCode",{parentName:"a"},"ce0de17"))),(0,n.kt)("li",{parentName:"ul"},"Confirm theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/36e20ce0dd6cd159e9f8e519d22ab696a622efd9"},(0,n.kt)("inlineCode",{parentName:"a"},"36e20ce"))),(0,n.kt)("li",{parentName:"ul"},"container overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4b3970bd28df5939fd438f7fc58b5d1dfbe33719"},(0,n.kt)("inlineCode",{parentName:"a"},"4b3970b"))),(0,n.kt)("li",{parentName:"ul"},"Docusaurus theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fc4a8c5534b6eb85192a687890846b3a4bed9401"},(0,n.kt)("inlineCode",{parentName:"a"},"fc4a8c5"))),(0,n.kt)("li",{parentName:"ul"},"refacto(headings): update mobile headings sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b2e9f838766ffd73095ecf7eccc71629c09d6bc0"},(0,n.kt)("inlineCode",{parentName:"a"},"b2e9f83"))),(0,n.kt)("li",{parentName:"ul"},"list stories and style changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c61db53b153f8f0e51eddd6a6c82dd38e6278c82"},(0,n.kt)("inlineCode",{parentName:"a"},"c61db53"))),(0,n.kt)("li",{parentName:"ul"},"Tab theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e31e6c3b1f0d6b4dbd63425a1846914d8dfa318d"},(0,n.kt)("inlineCode",{parentName:"a"},"e31e6c3"))),(0,n.kt)("li",{parentName:"ul"},"Message and pagination classes updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c230687c48953208461aa92376588246d49dadaa"},(0,n.kt)("inlineCode",{parentName:"a"},"c230687"))),(0,n.kt)("li",{parentName:"ul"},"Segment initial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5724fe639e0f2aecbb1c633fe7e69b742ddfaf5"},(0,n.kt)("inlineCode",{parentName:"a"},"d5724fe"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 removed doc comments from api_markdown breaking doc building ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/efeacba82875c6b36ee1ef76792e86ca03ee6f35"},(0,n.kt)("inlineCode",{parentName:"a"},"efeacba"))),(0,n.kt)("li",{parentName:"ul"},"Timeline and responsiveness updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1ed152476e33bc41fdf9d89a6bc80f83af538373"},(0,n.kt)("inlineCode",{parentName:"a"},"1ed1524"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142123 use swap font-display for performance reasons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/083738f0834982b5684d67d75c080dc50b1c74ef"},(0,n.kt)("inlineCode",{parentName:"a"},"083738f"))),(0,n.kt)("li",{parentName:"ul"},"Breadcrumb stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3d0d17ca4f04123d55fda64c516b8f867ee1bd13"},(0,n.kt)("inlineCode",{parentName:"a"},"3d0d17c"))),(0,n.kt)("li",{parentName:"ul"},"Table component stories minor change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0bf40835204f57ab300e2c325309fddf5279d76b"},(0,n.kt)("inlineCode",{parentName:"a"},"0bf4083"))),(0,n.kt)("li",{parentName:"ul"},"List stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a64b304a3aa025873643d592de03cbfbc0d02d81"},(0,n.kt)("inlineCode",{parentName:"a"},"a64b304"))),(0,n.kt)("li",{parentName:"ul"},"blockquote component minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cdf71a883d3778e1bde25ec0b4a2f3e370b98b09"},(0,n.kt)("inlineCode",{parentName:"a"},"cdf71a8"))),(0,n.kt)("li",{parentName:"ul"},"ckeckbox stories minor change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d6e508f73a18d7ce9fcdb779026113659ce8950"},(0,n.kt)("inlineCode",{parentName:"a"},"6d6e508"))),(0,n.kt)("li",{parentName:"ul"},"image component storybook changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91290ec540ae913fff76f0dbed6c310668a2eeb3"},(0,n.kt)("inlineCode",{parentName:"a"},"91290ec"))),(0,n.kt)("li",{parentName:"ul"},"button overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5b78dd7b794e2e0ece2d5af9eb171e73b77ee93"},(0,n.kt)("inlineCode",{parentName:"a"},"d5b78dd"))),(0,n.kt)("li",{parentName:"ul"},"accordion overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fdcf7d58eea3ce9e68c49649fb4a788c8a801b49"},(0,n.kt)("inlineCode",{parentName:"a"},"fdcf7d5"))),(0,n.kt)("li",{parentName:"ul"},"Accordion component and stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5079247b2d4b96b2a7252692ea538ca620cbec38"},(0,n.kt)("inlineCode",{parentName:"a"},"5079247"))),(0,n.kt)("li",{parentName:"ul"},"Card theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/23bbb9d1b5751bc4877d02ae1c676ea28463ec39"},(0,n.kt)("inlineCode",{parentName:"a"},"23bbb9d"))),(0,n.kt)("li",{parentName:"ul"},"statistic overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2b11cb5ffb9c907563b37a3db8fea3b1ef3584bc"},(0,n.kt)("inlineCode",{parentName:"a"},"2b11cb5"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 build docs only on pull request like we do with storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/473bb87be53610a654d35c9b399de14824301385"},(0,n.kt)("inlineCode",{parentName:"a"},"473bb87"))),(0,n.kt)("li",{parentName:"ul"},"Card component stories minor change | added link icon ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/deb423af02643697c3781212b177487174d341f7"},(0,n.kt)("inlineCode",{parentName:"a"},"deb423a"))),(0,n.kt)("li",{parentName:"ul"},"comment component stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f1c5e75f1af24c5b39a2e61cf07c773abfa96f66"},(0,n.kt)("inlineCode",{parentName:"a"},"f1c5e75"))),(0,n.kt)("li",{parentName:"ul"},"Accordion component bug fixed ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/815e91df66ed738f3d91cadc8df151782829f545"},(0,n.kt)("inlineCode",{parentName:"a"},"815e91d"))),(0,n.kt)("li",{parentName:"ul"},"Refs #145331 use iso date to release so that we see also time ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ceedf08937ab683c3e624cd3c909bf4a4788f883"},(0,n.kt)("inlineCode",{parentName:"a"},"ceedf08"))),(0,n.kt)("li",{parentName:"ul"},"correct connfig for doco ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93e13135e7f00fe32f4db2d720db4159970da021"},(0,n.kt)("inlineCode",{parentName:"a"},"93e1313"))),(0,n.kt)("li",{parentName:"ul"},"Item updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fae93d43a0ad56c4c9b8ce7bf436ad4f47421744"},(0,n.kt)("inlineCode",{parentName:"a"},"fae93d4"))),(0,n.kt)("li",{parentName:"ul"},"added layout grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2e6be557bcd3bef836338380ef68acade1c6b3e3"},(0,n.kt)("inlineCode",{parentName:"a"},"2e6be55"))),(0,n.kt)("li",{parentName:"ul"},"tab overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87aaf32cac5a0dee0da5833217de68da62327f5a"},(0,n.kt)("inlineCode",{parentName:"a"},"87aaf32"))),(0,n.kt)("li",{parentName:"ul"},"message overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6dccfca52d9673f394d81bd40da0af1b1504af0c"},(0,n.kt)("inlineCode",{parentName:"a"},"6dccfca"))),(0,n.kt)("li",{parentName:"ul"},"segment storie changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/296371fa71e43c2341bee8069f66d5cd1f7aa5f8"},(0,n.kt)("inlineCode",{parentName:"a"},"296371f"))),(0,n.kt)("li",{parentName:"ul"},"progress component stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/df10c2ed1289ae770008c71e1545c1ac0a223fc5"},(0,n.kt)("inlineCode",{parentName:"a"},"df10c2e"))),(0,n.kt)("li",{parentName:"ul"},"message comp storybook changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c86b40563f655fd5833dd05119f04d0e4256e75f"},(0,n.kt)("inlineCode",{parentName:"a"},"c86b405"))),(0,n.kt)("li",{parentName:"ul"},"Accordion cmponent stories | minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6de0d816287a9beeb9e8a5a890a2e14f3457a792"},(0,n.kt)("inlineCode",{parentName:"a"},"6de0d81"))),(0,n.kt)("li",{parentName:"ul"},"Refs #145331 add all changes when auto building docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce11cce4fe3dadc16a0da56c36bc5db480e4ff91"},(0,n.kt)("inlineCode",{parentName:"a"},"ce11cce"))),(0,n.kt)("li",{parentName:"ul"},"perf(timeline):removed semantic timeline package ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0aeb34a189eb53a5fc0fc45d716da515b7ed0301"},(0,n.kt)("inlineCode",{parentName:"a"},"0aeb34a"))),(0,n.kt)("li",{parentName:"ul"},"Tablet Breakpoint update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b229c2739e75a00e403dd07c31eb0dac7700baac"},(0,n.kt)("inlineCode",{parentName:"a"},"b229c27"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 set storyBook Url to eea.github.io ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b7fdecbb5e9e6e7db0b128ab7fd3a98dd1dbbc74"},(0,n.kt)("inlineCode",{parentName:"a"},"b7fdecb"))),(0,n.kt)("li",{parentName:"ul"},"bump package version to signaling of a major release ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c835f1d8193685153b8a9b54edbc2e8d3d095321"},(0,n.kt)("inlineCode",{parentName:"a"},"c835f1d"))),(0,n.kt)("li",{parentName:"ul"},"small commit to trigger deployment of storybook and docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/be46ea3b581cccc82369c9cf6d4e29b02822cd71"},(0,n.kt)("inlineCode",{parentName:"a"},"be46ea3"))),(0,n.kt)("li",{parentName:"ul"},"doc(accordion):revert previous change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3de02da26472c17389366d933f3293f658fd783a"},(0,n.kt)("inlineCode",{parentName:"a"},"3de02da"))),(0,n.kt)("li",{parentName:"ul"},"fix typo for caption @desktop line-height pixel number ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/167155234a897334a03a4f3eadc71701185bb924"},(0,n.kt)("inlineCode",{parentName:"a"},"1671552"))),(0,n.kt)("li",{parentName:"ul"},"Commented out integration tests. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/574cfec852f39bdd30430d2ca3a466aec417180d"},(0,n.kt)("inlineCode",{parentName:"a"},"574cfec"))),(0,n.kt)("li",{parentName:"ul"},"popup overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a9555e3128bd0c92691410c202d9b26dd5a5e0c5"},(0,n.kt)("inlineCode",{parentName:"a"},"a9555e3"))),(0,n.kt)("li",{parentName:"ul"},"container component stories fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/692cfce5e795ac718855349424e7e8eb9c7518ec"},(0,n.kt)("inlineCode",{parentName:"a"},"692cfce"))),(0,n.kt)("li",{parentName:"ul"},"Added timeline to package json fixed ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2e93e0478a1502cccb8d7f866cef337a2546b6c"},(0,n.kt)("inlineCode",{parentName:"a"},"f2e93e0"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142123 modified import of volto-eea-design-system icon.less: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7fab7d2871f153c2db139e3258da071ace7c09d"},(0,n.kt)("inlineCode",{parentName:"a"},"a7fab7d"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142123 reference icon.less from this package: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5616e6d730f1a8cbc04784230c35f3490fd0f921"},(0,n.kt)("inlineCode",{parentName:"a"},"5616e6d"))),(0,n.kt)("li",{parentName:"ul"},"Menu component stories change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2797716aa050a8f70d2b6f0f19b7d01e5cd035be"},(0,n.kt)("inlineCode",{parentName:"a"},"2797716"))),(0,n.kt)("li",{parentName:"ul"},"Image stories minor change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ddb9f1dd56fe42e17df1eac5bfd93ee6eaac3179"},(0,n.kt)("inlineCode",{parentName:"a"},"ddb9f1d"))),(0,n.kt)("li",{parentName:"ul"},"card component stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6ccba1ec4a388ced5a3671bf88d4f18aefc8cff3"},(0,n.kt)("inlineCode",{parentName:"a"},"6ccba1e"))),(0,n.kt)("li",{parentName:"ul"},"Added timeline to package json ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93031d6b6b3215e98074700554d7546f9f17f320"},(0,n.kt)("inlineCode",{parentName:"a"},"93031d6"))),(0,n.kt)("li",{parentName:"ul"},"table stories code clean up ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b7b2a56e37b847a3a3fc3d78f2099aba052826c3"},(0,n.kt)("inlineCode",{parentName:"a"},"b7b2a56"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 removed extra baseUrl from docusaurus config ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/79f36da6a38866765025cedd4f5eeb63e273785c"},(0,n.kt)("inlineCode",{parentName:"a"},"79f36da"))),(0,n.kt)("li",{parentName:"ul"},"Accordion stories minor change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ffe808aabc77c6cb324e8fe097a97bb82c291c29"},(0,n.kt)("inlineCode",{parentName:"a"},"ffe808a"))),(0,n.kt)("li",{parentName:"ul"},"Theme assets ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3f4bea4b53e393bc3d926b63683265c0b5df32c2"},(0,n.kt)("inlineCode",{parentName:"a"},"3f4bea4"))),(0,n.kt)("li",{parentName:"ul"},"Merged with develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/167ec9f7847162965ad045259989cc31abaad7f1"},(0,n.kt)("inlineCode",{parentName:"a"},"167ec9f")))),(0,n.kt)("h3",{id:"012-beta2---2022-01-03"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.2-beta.1...0.1.2-beta.2"},"0.1.2-beta.2")," - 2022-01-03"),(0,n.kt)("h3",{id:"012-beta1---2021-12-22"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.2-beta.0...0.1.2-beta.1"},"0.1.2-beta.1")," - 2021-12-22"),(0,n.kt)("h4",{id:"\ufe0f-others-56"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Tab component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4690a6fc1e739eeeeaa3dc90ee35e05a22875bf8"},(0,n.kt)("inlineCode",{parentName:"a"},"4690a6f"))),(0,n.kt)("li",{parentName:"ul"},"Comment component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a87cb6ad7959ce939c9decbfaa08026d4f00a10e"},(0,n.kt)("inlineCode",{parentName:"a"},"a87cb6a"))),(0,n.kt)("li",{parentName:"ul"},"Form stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fc30c900e5adf5a27930aa64a79a632e2b7d84ae"},(0,n.kt)("inlineCode",{parentName:"a"},"fc30c90"))),(0,n.kt)("li",{parentName:"ul"},"Grid component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/798fdd0d0fecb7980308c831fc9dc111a36c5d9f"},(0,n.kt)("inlineCode",{parentName:"a"},"798fdd0"))),(0,n.kt)("li",{parentName:"ul"},"Image component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/be93385f1ea29846512eb7762d69bb98f33be7f2"},(0,n.kt)("inlineCode",{parentName:"a"},"be93385"))),(0,n.kt)("li",{parentName:"ul"},"Menu component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb1f9a82843bb4e3011be9813ae692c94d986495"},(0,n.kt)("inlineCode",{parentName:"a"},"cb1f9a8"))),(0,n.kt)("li",{parentName:"ul"},"Dropdown component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/57cf954599292e6a2f8a1644c6b6d61706ecaf60"},(0,n.kt)("inlineCode",{parentName:"a"},"57cf954"))),(0,n.kt)("li",{parentName:"ul"},"Header component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/264fd463734c9587e3a820f4d14527af89274e12"},(0,n.kt)("inlineCode",{parentName:"a"},"264fd46"))),(0,n.kt)("li",{parentName:"ul"},"Confirn component minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9a00bc174fb676e626d6cc93fac225e8a6165790"},(0,n.kt)("inlineCode",{parentName:"a"},"9a00bc1"))),(0,n.kt)("li",{parentName:"ul"},"Item component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6994fa00c0f91550f64d7345503df7f562480d32"},(0,n.kt)("inlineCode",{parentName:"a"},"6994fa0"))),(0,n.kt)("li",{parentName:"ul"},"Label component stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5cc5843327deeaa5ae2cedc03e6f0c314be6586a"},(0,n.kt)("inlineCode",{parentName:"a"},"5cc5843"))),(0,n.kt)("li",{parentName:"ul"},"Container component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e6e40b3a505c2e2fe88a36d74ea4e9728e3491f6"},(0,n.kt)("inlineCode",{parentName:"a"},"e6e40b3"))),(0,n.kt)("li",{parentName:"ul"},"Message component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ba9d377fd5b04274f1d42065eafa2401a1b0bbca"},(0,n.kt)("inlineCode",{parentName:"a"},"ba9d377"))),(0,n.kt)("li",{parentName:"ul"},"Breadcrumb component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff7a176141c3a59d71df98a0ed0b23b8c08787df"},(0,n.kt)("inlineCode",{parentName:"a"},"ff7a176"))),(0,n.kt)("li",{parentName:"ul"},"Modal component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af1fe6a84d058fb937b555f4dc3e0efceebefa04"},(0,n.kt)("inlineCode",{parentName:"a"},"af1fe6a"))),(0,n.kt)("li",{parentName:"ul"},"List stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0016042856fa2275aed373eebd6f996b837619a2"},(0,n.kt)("inlineCode",{parentName:"a"},"0016042"))),(0,n.kt)("li",{parentName:"ul"},"Button component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/690dfd234bee017c1f1cda7077265e6cf4a870e9"},(0,n.kt)("inlineCode",{parentName:"a"},"690dfd2"))),(0,n.kt)("li",{parentName:"ul"},"Radio component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/84eac30ab5b523ed09c56b9cca41b058cee3e5d2"},(0,n.kt)("inlineCode",{parentName:"a"},"84eac30"))),(0,n.kt)("li",{parentName:"ul"},"Progress component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e6763571afe637375e8260babd9f2219f29b432a"},(0,n.kt)("inlineCode",{parentName:"a"},"e676357"))),(0,n.kt)("li",{parentName:"ul"},"Pagination component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b1af226b9bd42097dc3c74be3d9ca3fab29b80f6"},(0,n.kt)("inlineCode",{parentName:"a"},"b1af226"))),(0,n.kt)("li",{parentName:"ul"},"Segment component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f8c7efcb9b1de209ff146dd315ea9d43b16f4db"},(0,n.kt)("inlineCode",{parentName:"a"},"5f8c7ef"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 eslint fixes for component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/badcb9158cb4a847380f66592b22c78b5117626a"},(0,n.kt)("inlineCode",{parentName:"a"},"badcb91"))),(0,n.kt)("li",{parentName:"ul"},"Table component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7c104b8e89272b0e2505d165184093ee2680c6f3"},(0,n.kt)("inlineCode",{parentName:"a"},"7c104b8"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 more eslint fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a88c091723af0b87cfa85c83307d9510d2bae65c"},(0,n.kt)("inlineCode",{parentName:"a"},"a88c091"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 warn for broken links instead of throwing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bd5821cb78e030aaf69de73dc4d3bdadbe320195"},(0,n.kt)("inlineCode",{parentName:"a"},"bd5821c"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 merge changes from develop-itml to develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bca28b968bc88720aff9e29e1a94a597a7375666"},(0,n.kt)("inlineCode",{parentName:"a"},"bca28b9"))),(0,n.kt)("li",{parentName:"ul"},"made tabs dynamic for api tab ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea37ecb3ec9fe0ace41d7650d59e209929d8e95f"},(0,n.kt)("inlineCode",{parentName:"a"},"ea37ecb"))),(0,n.kt)("li",{parentName:"ul"},"Basic storybook/Docusaurus components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/840ab60f22f7b73d8742fa7452f198d486c6ec5b"},(0,n.kt)("inlineCode",{parentName:"a"},"840ab60"))),(0,n.kt)("li",{parentName:"ul"},"created List directory & srories based on semantic-ui List component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51f19016b27228a4d391c88b7eee27357d6fdc0d"},(0,n.kt)("inlineCode",{parentName:"a"},"51f1901"))),(0,n.kt)("li",{parentName:"ul"},"made tabs as component easy to call for other components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/07bae4900a4076f3429d3a26978b92aabf6b23ba"},(0,n.kt)("inlineCode",{parentName:"a"},"07bae49"))),(0,n.kt)("li",{parentName:"ul"},"Popup Component | minor fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ff9908a9374f93b9eaf4d8ee8de24acdf5be3ec"},(0,n.kt)("inlineCode",{parentName:"a"},"2ff9908"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Tab component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/95e3a733921b42fbe2540fa39548284abff9fdc0"},(0,n.kt)("inlineCode",{parentName:"a"},"95e3a73"))),(0,n.kt)("li",{parentName:"ul"},"created Table directory and stories based on semantic-ui Table component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e16115daa000962ccd8d141e3c11fd099446a388"},(0,n.kt)("inlineCode",{parentName:"a"},"e16115d"))),(0,n.kt)("li",{parentName:"ul"},"List component stories - minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/de113430b487297417c4697178f9ee37412a5389"},(0,n.kt)("inlineCode",{parentName:"a"},"de11343"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Comment component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a20f8842e8cb5c937dfc450030ac9afcf78ffe11"},(0,n.kt)("inlineCode",{parentName:"a"},"a20f884"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Grid component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/360d2a897f36e86c58b0ba6ac3d4fc852d10287d"},(0,n.kt)("inlineCode",{parentName:"a"},"360d2a8"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Image component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c1d2bcaf886c96052af45fcce98243ea56c98a5"},(0,n.kt)("inlineCode",{parentName:"a"},"3c1d2bc"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Menu component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/17e3b37ae447d8cc86228fa6c0c48a8fd8be9d03"},(0,n.kt)("inlineCode",{parentName:"a"},"17e3b37"))),(0,n.kt)("li",{parentName:"ul"},"Added untracked files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/75f0afda10114e70348e23d480f8f74528531674"},(0,n.kt)("inlineCode",{parentName:"a"},"75f0afd"))),(0,n.kt)("li",{parentName:"ul"},"created Dropdown stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d6a25381078e0b3cabdb9270d5224b3886ab6af9"},(0,n.kt)("inlineCode",{parentName:"a"},"d6a2538"))),(0,n.kt)("li",{parentName:"ul"},"created Header component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8339798f3e7d40f1b5a033bf4d7303c756c38d3"},(0,n.kt)("inlineCode",{parentName:"a"},"b833979"))),(0,n.kt)("li",{parentName:"ul"},"created stories for semantic-ui Confirm component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6fddccc6cf97f9929da52064ceb379f9fc427b42"},(0,n.kt)("inlineCode",{parentName:"a"},"6fddccc"))),(0,n.kt)("li",{parentName:"ul"},"created Statistic directory and stories with semantic-ui Statistic component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cd62498dbd75d5dff0adf849ff95d22bb9dc3b34"},(0,n.kt)("inlineCode",{parentName:"a"},"cd62498"))),(0,n.kt)("li",{parentName:"ul"},"created Item component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/90ec2be7eede347352e318c70615c30e7d422073"},(0,n.kt)("inlineCode",{parentName:"a"},"90ec2be"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Container component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/41934f6c5961ae0ac034a496ac169a191c7a5288"},(0,n.kt)("inlineCode",{parentName:"a"},"41934f6"))),(0,n.kt)("li",{parentName:"ul"},"created Label component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/71732f68b3153320710fbf7fb78dac460b8a084f"},(0,n.kt)("inlineCode",{parentName:"a"},"71732f6"))),(0,n.kt)("li",{parentName:"ul"},"created Message component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/adcbeabe6d4e8c1bbd7bd925c5f7fd3109fb407c"},(0,n.kt)("inlineCode",{parentName:"a"},"adcbeab"))),(0,n.kt)("li",{parentName:"ul"},"created Modal component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c25409d8901ad4eba66fa66a9f5c34b0353569b9"},(0,n.kt)("inlineCode",{parentName:"a"},"c25409d"))),(0,n.kt)("li",{parentName:"ul"},"Breadcrumb component stories and minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6264d92bcf6565e284ae9dc0c7a918652bb3959e"},(0,n.kt)("inlineCode",{parentName:"a"},"6264d92"))),(0,n.kt)("li",{parentName:"ul"},"created Pagination component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/57cdad35e21fdacf303e407abcb8988e97e87242"},(0,n.kt)("inlineCode",{parentName:"a"},"57cdad3"))),(0,n.kt)("li",{parentName:"ul"},"created Segment component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d8d01d70dab9359be46eb1629b3198f871091c7a"},(0,n.kt)("inlineCode",{parentName:"a"},"d8d01d7"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Radio component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1fd062d8a08cbe8507f5154201632ea96f765a2c"},(0,n.kt)("inlineCode",{parentName:"a"},"1fd062d"))),(0,n.kt)("li",{parentName:"ul"},"Menu stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6ba5e0d00a26ffd4625fb51f759af3764cef28de"},(0,n.kt)("inlineCode",{parentName:"a"},"6ba5e0d"))),(0,n.kt)("li",{parentName:"ul"},"Statistic component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c874a520c9959b7673b5c86f63e53e90f006f22"},(0,n.kt)("inlineCode",{parentName:"a"},"3c874a5"))),(0,n.kt)("li",{parentName:"ul"},"Card component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/290bda8dac4c9bb4476108c2e4969fa283f935e2"},(0,n.kt)("inlineCode",{parentName:"a"},"290bda8"))),(0,n.kt)("li",{parentName:"ul"},"Accrordion stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ee3f592fbfaead01506fb6a4dbfb36d06269564"},(0,n.kt)("inlineCode",{parentName:"a"},"2ee3f59"))),(0,n.kt)("li",{parentName:"ul"},"renamed Demo folder to Layout ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b9f6d05708310889dd018961bf5df9d5edd66e12"},(0,n.kt)("inlineCode",{parentName:"a"},"b9f6d05"))),(0,n.kt)("li",{parentName:"ul"},"remove test exclusion ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/94dba3eaa864e25d34bcc33ab19494f83ecabb25"},(0,n.kt)("inlineCode",{parentName:"a"},"94dba3e"))),(0,n.kt)("li",{parentName:"ul"},"Accordion component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e672d59f86a79e69f15b5212e2953aa7c5fea1d1"},(0,n.kt)("inlineCode",{parentName:"a"},"e672d59"))),(0,n.kt)("li",{parentName:"ul"},"fix docusaurus url (removed trailing /) ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b6c59fc7733b3df47dca797906e8f7e40a2f4ada"},(0,n.kt)("inlineCode",{parentName:"a"},"b6c59fc"))),(0,n.kt)("li",{parentName:"ul"},"Item component stories - minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f0a99025b9093ecf2eb25fd4b4e401b5b532a481"},(0,n.kt)("inlineCode",{parentName:"a"},"f0a9902"))),(0,n.kt)("li",{parentName:"ul"},"eea logos and assets ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b435b511d64b0ca99bfd310d66bdbfd5985390cc"},(0,n.kt)("inlineCode",{parentName:"a"},"b435b51")))),(0,n.kt)("h3",{id:"012-beta0---2021-12-18"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.1...0.1.2-beta.0"},"0.1.2-beta.0")," - 2021-12-18"),(0,n.kt)("h4",{id:"\ufe0f-others-57"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Refs #140454 added github action to build docusaurus to the develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/abe6a72882a41c9bca3649a3a6697619038e1677"},(0,n.kt)("inlineCode",{parentName:"a"},"abe6a72")))),(0,n.kt)("h3",{id:"011---2021-12-16"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.1-beta.0...0.1.1"},"0.1.1")," - 2021-12-16"),(0,n.kt)("h4",{id:"\ufe0f-others-58"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Refs #140454 changed the following to volto-eea-design-system: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6791d413cf1b9e434970564d9e59ed56b41907f0"},(0,n.kt)("inlineCode",{parentName:"a"},"6791d41"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 corrected base url for docusaurus website build ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/98271b3d39e2e21dfb4a0e31c334dc9e87811e4a"},(0,n.kt)("inlineCode",{parentName:"a"},"98271b3"))),(0,n.kt)("li",{parentName:"ul"},"Initial test changes on design system/docusaurus. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9dad612f385cc9fde712809f07dbe2b7111432cf"},(0,n.kt)("inlineCode",{parentName:"a"},"9dad612"))),(0,n.kt)("li",{parentName:"ul"},"After prettier check ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9ec40b4fe9d8a18e99f774e1a96a55b286a9733a"},(0,n.kt)("inlineCode",{parentName:"a"},"9ec40b4"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 restore SearchWidget.jsx content and removed dummy text from docs intro page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7505df89d93ac99156834a0c50a8e2b174c506f8"},(0,n.kt)("inlineCode",{parentName:"a"},"7505df8"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 added references to eea and the storybook in the docusaurus footer ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/42bbfcdd67888c3a7a55875d67acae9f7eb753bb"},(0,n.kt)("inlineCode",{parentName:"a"},"42bbfcd"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 lint fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9502f2bdbd45262b38926def5b7b55efabf4c32c"},(0,n.kt)("inlineCode",{parentName:"a"},"9502f2b"))),(0,n.kt)("li",{parentName:"ul"},"Add SonarQube badges ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4e0a4053ff2313fc3939caab80d874470aca062"},(0,n.kt)("inlineCode",{parentName:"a"},"a4e0a40"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 brought changes from develop-itml and upgrades docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/207c873532e38fb7909cdc32a02bf50e575b66fa"},(0,n.kt)("inlineCode",{parentName:"a"},"207c873"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 removed extra content not needed by the docusaurus site ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bc68ebe8259c9b8ed6bc73df8102885554bbc4ed"},(0,n.kt)("inlineCode",{parentName:"a"},"bc68ebe"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 updated docusaurus to latest beta ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d68ed8a1660910067a09550626a5f0e8fbbeeac9"},(0,n.kt)("inlineCode",{parentName:"a"},"d68ed8a")))),(0,n.kt)("h3",{id:"011-beta0---2021-12-09"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.0...0.1.1-beta.0"},"0.1.1-beta.0")," - 2021-12-09"),(0,n.kt)("h4",{id:"\ufe0f-others-59"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Refs #140454 moved header and footer templates from volto-ims-theme: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2d5e56045c0b7d917153d95492dd340668b6222"},(0,n.kt)("inlineCode",{parentName:"a"},"e2d5e56"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 added website folder with docusaurus site skeleton ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6fd15f4365a207308c068fe7eb197c0717e93954"},(0,n.kt)("inlineCode",{parentName:"a"},"6fd15f4"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142794 added commented implementation of the header and footer area: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/773ad8784f4a03e4b600406999d3a274a3984d39"},(0,n.kt)("inlineCode",{parentName:"a"},"773ad87"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 changed the following: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4137ec42270c28cbe036ba11e9475f00a7a5cba3"},(0,n.kt)("inlineCode",{parentName:"a"},"4137ec4"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 removed storybook from volto-eea-design-system: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a129ffb485c4c55f19129a209d920da8f8f52418"},(0,n.kt)("inlineCode",{parentName:"a"},"a129ffb"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 added storybook as a dev dependency: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e04ae4e0294fbb4a09f367d1693a158d5a1e8f2f"},(0,n.kt)("inlineCode",{parentName:"a"},"e04ae4e"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 updated Breadcrumbs.jsx to latest version: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/63fe5076781f3cf2ce5c79641a5f1b45f298b476"},(0,n.kt)("inlineCode",{parentName:"a"},"63fe507"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 we should use jsx and not mdx for storybook tests ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3668e667f857cb3052b9d63cf27ec629fe1c8394"},(0,n.kt)("inlineCode",{parentName:"a"},"3668e66"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 updated eea-design-system readme with extra info on package contents ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d2efc3ddae7b91efc82cf3bce8fb8e42d696a780"},(0,n.kt)("inlineCode",{parentName:"a"},"d2efc3d"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142010 - Optimize Volto-addons gitflow pipelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3af46d2b14fa0b1ef44736f25b0f9ac93b23d18d"},(0,n.kt)("inlineCode",{parentName:"a"},"3af46d2"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 Renamed folders of docusaurus website: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/15bca7462ba1b3c626e2bf76597f6436aa5e9092"},(0,n.kt)("inlineCode",{parentName:"a"},"15bca74"))),(0,n.kt)("li",{parentName:"ul"},"Add demo story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/757c409271eb70baa54bff8bd7c71ba29aaa4f66"},(0,n.kt)("inlineCode",{parentName:"a"},"757c409"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142794 enabled minimum css so that header looks decent ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/adbe2335bacf5ae09541c3679a246a5ec28376a4"},(0,n.kt)("inlineCode",{parentName:"a"},"adbe233"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 use the develop branch for the readme linking, it's always more up to date ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/23dcf166d5d633df2a63ab6fa5bac4be086e99a3"},(0,n.kt)("inlineCode",{parentName:"a"},"23dcf16"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 added missing themes reference for the eea theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e9ca244fcedf0be420748b3e5347e98309b5d996"},(0,n.kt)("inlineCode",{parentName:"a"},"e9ca244"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 modified assets imports after move to volto-eea-design-system ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2250cc7ba4155c328837cea09e2e7d94afc984f8"},(0,n.kt)("inlineCode",{parentName:"a"},"2250cc7"))),(0,n.kt)("li",{parentName:"ul"},"Load footer in segment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/80d38a96284e7fa9416ba327a43e29eb94bebe55"},(0,n.kt)("inlineCode",{parentName:"a"},"80d38a9"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 bump package version to 1.1.0 from 0.1.1 from develop branch: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1314039ceb45d405af6bc4698b489bbd6562c6ae"},(0,n.kt)("inlineCode",{parentName:"a"},"1314039"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142794 keep toolbalWidth variables in case design system runs in an older version of Volto ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1a8b30562e4167fe36b095877db0b215d10cb620"},(0,n.kt)("inlineCode",{parentName:"a"},"1a8b305"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142794 changed the following: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fbb80b1dbd0e3078777b8b3496d4b207ba25639a"},(0,n.kt)("inlineCode",{parentName:"a"},"fbb80b1"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 moved storybook scripts to the scripts section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/705c4c365d26152d917c62991f3f8202bc75287d"},(0,n.kt)("inlineCode",{parentName:"a"},"705c4c3"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 removed dangling comma ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/514f24d503a1f05497696c22c7fdbf7bc19d4e54"},(0,n.kt)("inlineCode",{parentName:"a"},"514f24d"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 changed link to the start of the docs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0e16fdfc77e119da4e1f15183d9cb95ef9b4b6cf"},(0,n.kt)("inlineCode",{parentName:"a"},"0e16fdf"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 add h1 to the list of elements that are max 800px and centered ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d3c30f409aa4cb43810839f8960589456cc1b2e"},(0,n.kt)("inlineCode",{parentName:"a"},"7d3c30f"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using ims-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8d657d056cde5163cfe90ac66bc973f55d82e5e9"},(0,n.kt)("inlineCode",{parentName:"a"},"8d657d0")))),(0,n.kt)("h3",{id:"010---2021-11-17"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.0.1...0.1.0"},"0.1.0")," - 2021-11-17"),(0,n.kt)("h4",{id:"\ufe0f-others-60"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Refs #140454 changed the following to volto-eea-design-system: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/40d2af693e35abdda3ededc7aabcb17e9a12e781"},(0,n.kt)("inlineCode",{parentName:"a"},"40d2af6"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 elements folder now has the variables and overrides from pastanaga theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/595b4e60816d3e24950ede3afea6e5f2aa2d7008"},(0,n.kt)("inlineCode",{parentName:"a"},"595b4e6"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 use font awesome from SemanticUI instead of Pastanaga: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4e273ca1b9a2be1f169d12258ac2335c3ebeefff"},(0,n.kt)("inlineCode",{parentName:"a"},"4e273ca"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 removed the components customizations from volto-eea-design-system: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c98c260b549cd1db48bfe556e994692a4855b95d"},(0,n.kt)("inlineCode",{parentName:"a"},"c98c260"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 added customizations folder from volto-ims-theme to volto-eea-design-system: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff4bf44bd648ff179bd7c82d0cf80da968b291b0"},(0,n.kt)("inlineCode",{parentName:"a"},"ff4bf44"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 modules folder now has the variables and overrides from pastanaga theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2841b62c87e3242423bca1117c7e1793baa7974"},(0,n.kt)("inlineCode",{parentName:"a"},"f2841b6"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 customized Comments.jsx to remove unnecessary container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b2e95d7ae875a7fc85366c76ef35ce215dd7b5ff"},(0,n.kt)("inlineCode",{parentName:"a"},"b2e95d7"))),(0,n.kt)("li",{parentName:"ul"},"Refs #132149 added initial commit for volto-eea-design-system: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2934b911d589fde126f70363a61cbdd2e3dcf7c9"},(0,n.kt)("inlineCode",{parentName:"a"},"2934b91"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 collection folder now has the variables and overrides from pastanaga: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/213d4968e4efa380a389fb7ab40ec3196f030050"},(0,n.kt)("inlineCode",{parentName:"a"},"213d496"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 removed search widget customization, we can use volto-ims-theme for that file ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b7e8b0c4821584a84f940d8f780057122321aae7"},(0,n.kt)("inlineCode",{parentName:"a"},"b7e8b0c"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 stylelint quick fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5595925f68871135a07d703c8ba009b0172c7ccd"},(0,n.kt)("inlineCode",{parentName:"a"},"5595925"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 changed the following: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/769f4f9eca0ed9fffe0c8c49c56bcb123a203f3c"},(0,n.kt)("inlineCode",{parentName:"a"},"769f4f9"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 changed the following to the eea theme: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/06d8d86a7be81fd3feadf034eacfa61eb69743ab"},(0,n.kt)("inlineCode",{parentName:"a"},"06d8d86"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 eea site.variables now use all values from pastanaga's site.variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6535c0f4e1968822a232b017a55babd280716d88"},(0,n.kt)("inlineCode",{parentName:"a"},"6535c0f"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 simplified container overrides: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51250038527f2e4b1135a2b5bfc6adccc3f77a06"},(0,n.kt)("inlineCode",{parentName:"a"},"5125003"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/177d0ce854a8a963faa2aae9481cbcc7e340e0fa"},(0,n.kt)("inlineCode",{parentName:"a"},"177d0ce"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 globals folder now has the variables and overrides from pastanaga theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/116a0c338bd92dd14636a649476b4f00951e3734"},(0,n.kt)("inlineCode",{parentName:"a"},"116a0c3"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 changed the following: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2e7f42381b63e65bafac3b754d49b65daca9663d"},(0,n.kt)("inlineCode",{parentName:"a"},"2e7f423"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 modules folder now has the variables and overrides from pastanaga theme: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/27a201d57024a7c621f4943b8eb59a3247b6c89d"},(0,n.kt)("inlineCode",{parentName:"a"},"27a201d"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 text elements are now with a max width and centered within content-area: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bbed7bbfb3e79a371b7bf7dea2206cdbdcdfe76d"},(0,n.kt)("inlineCode",{parentName:"a"},"bbed7bb"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 added main.variables entries from pastanaga to eea theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1cbbc550436c889d1b297ae9e6880167fce28fe1"},(0,n.kt)("inlineCode",{parentName:"a"},"1cbbc55"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 modified theme image imports for component customizations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef3238a4d615fa1b496e83f4e6c4c0d27f3d68f4"},(0,n.kt)("inlineCode",{parentName:"a"},"ef3238a"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 modified container width to be auto: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2e8d2e0ebb3e4a55b7cf1b66c3dff222ef12aa18"},(0,n.kt)("inlineCode",{parentName:"a"},"2e8d2e0"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 modified several icons to use the \\f values instead of \\e: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c397145bc1e76916ae72a94faaf33f49bd9ca5a6"},(0,n.kt)("inlineCode",{parentName:"a"},"c397145"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 changed the following: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c518edacad9b8bed61ea50d318d8d43bf7f483a0"},(0,n.kt)("inlineCode",{parentName:"a"},"c518eda"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 ensure that main column isn't enlarged over the sidebar section on edit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f7a28684223494933bcd8ec1f6d86b1b3da17e10"},(0,n.kt)("inlineCode",{parentName:"a"},"f7a2868"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 changed the following to the form styling: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/eb92e054fe330730c1a44737cbbdf33985216cbb"},(0,n.kt)("inlineCode",{parentName:"a"},"eb92e05"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 modified path of theme folder location for image selection ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f8cca4594857ab4afd654f35e4ec97e4d3e04be4"},(0,n.kt)("inlineCode",{parentName:"a"},"f8cca45"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 added missing mobileScrollbarWidth variables introduced as part of the mobile navigation pull request ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/444c78d998199e703d7ecde01b3feb0d44c60977"},(0,n.kt)("inlineCode",{parentName:"a"},"444c78d"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 reference font and image path from ~volto-themes instead of relative ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ec93ed3a496673eed7d7ec07a2f76aaa6a29d7ca"},(0,n.kt)("inlineCode",{parentName:"a"},"ec93ed3"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 ensure that Volto doesn't crash when site module is set to eea: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51f2f27f5ba947b49b4b69fcf9b8890676cd1d7e"},(0,n.kt)("inlineCode",{parentName:"a"},"51f2f27"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 added tiny size prop to Breadcrumbs in order to have it as 12px ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/56a12e200c27c3a1826fa3088c34f762ed74dff7"},(0,n.kt)("inlineCode",{parentName:"a"},"56a12e2")))),(0,n.kt)("h3",{id:"001---2021-11-17"},"0.0.1 - 2021-11-17"),(0,n.kt)("h4",{id:"\ufe0f-others-61"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Initial commit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b0bdd445c95a20d088e00469f81028c16482640a"},(0,n.kt)("inlineCode",{parentName:"a"},"b0bdd44")))))}s.isMDXComponent=!0}}]); \ No newline at end of file diff --git a/docs/assets/js/runtime~main.17fc11c4.js b/docs/assets/js/runtime~main.46d2157e.js similarity index 99% rename from docs/assets/js/runtime~main.17fc11c4.js rename to docs/assets/js/runtime~main.46d2157e.js index 6ecca26f5c..81104dba95 100644 --- a/docs/assets/js/runtime~main.17fc11c4.js +++ b/docs/assets/js/runtime~main.46d2157e.js @@ -1 +1 @@ -(()=>{"use strict";var e,d,a,f,c,b={},t={};function r(e){var d=t[e];if(void 0!==d)return d.exports;var a=t[e]={id:e,loaded:!1,exports:{}};return b[e].call(a.exports,a,a.exports,r),a.loaded=!0,a.exports}r.m=b,r.c=t,e=[],r.O=(d,a,f,c)=>{if(!a){var b=1/0;for(i=0;i=c)&&Object.keys(r.O).every((e=>r.O[e](a[o])))?a.splice(o--,1):(t=!1,c0&&e[i-1][2]>c;i--)e[i]=e[i-1];e[i]=[a,f,c]},r.n=e=>{var d=e&&e.__esModule?()=>e.default:()=>e;return r.d(d,{a:d}),d},a=Object.getPrototypeOf?e=>Object.getPrototypeOf(e):e=>e.__proto__,r.t=function(e,f){if(1&f&&(e=this(e)),8&f)return e;if("object"==typeof e&&e){if(4&f&&e.__esModule)return e;if(16&f&&"function"==typeof e.then)return e}var c=Object.create(null);r.r(c);var b={};d=d||[null,a({}),a([]),a(a)];for(var t=2&f&&e;"object"==typeof t&&!~d.indexOf(t);t=a(t))Object.getOwnPropertyNames(t).forEach((d=>b[d]=()=>e[d]));return b.default=()=>e,r.d(c,b),c},r.d=(e,d)=>{for(var a in d)r.o(d,a)&&!r.o(e,a)&&Object.defineProperty(e,a,{enumerable:!0,get:d[a]})},r.f={},r.e=e=>Promise.all(Object.keys(r.f).reduce(((d,a)=>(r.f[a](e,d),d)),[])),r.u=e=>"assets/js/"+({53:"935f2afb",123:"3fc91083",296:"a64f9232",432:"323ff172",554:"8fd6869d",585:"c74413f4",596:"ca221c65",698:"56bbe726",918:"1e6d2369",952:"4442ee2e",1129:"30e35848",1327:"9c235974",1356:"7ca1ae16",1500:"3508f21e",1704:"6c6ad4cd",2099:"f4f5dc73",2163:"0bef62f9",2263:"e9a55e4f",2282:"9a6dc4ea",2305:"686ae6d4",2359:"d61699b0",2438:"d9dbb717",2453:"a5822498",2463:"42e0342b",2543:"86298114",2582:"63791757",2672:"bdd5fc8f",2678:"9b6f4efd",2853:"06df40a2",2873:"398224d0",3018:"2d344845",3166:"f9ee06b1",3293:"b78356b1",3305:"1f485700",3412:"792760cc",3436:"860b2a9d",3608:"9e4087bc",3661:"39f50359",3808:"fe8a233d",3822:"77dd8181",3902:"a8b15fb1",3934:"aa38dcb9",4009:"8050142d",4195:"c4f5d8e4",4419:"f601d3af",4521:"1a10606c",5294:"76fe1567",5386:"54e4468f",5435:"24202412",5437:"a186f965",5886:"7e4403b7",6061:"046f8cb9",6196:"c3faf33a",6245:"41d5c757",6304:"1c178b4f",6515:"f8c0402f",6570:"23d147e2",6671:"8effdd7e",6966:"c7d85666",7098:"d727d0d1",7426:"671d942a",7492:"b0f56568",7578:"3aee128f",7918:"17896441",8027:"2d39cd59",8150:"85201c01",8362:"0b225811",8518:"627750f7",8635:"0a8b14be",9003:"072ed0e5",9053:"75066279",9110:"7810a5ba",9173:"6d890e16",9184:"b3c62368",9213:"6dda7ddb",9221:"797402ac",9340:"d6e43592",9456:"aed7c9bd",9514:"1be78505",9744:"224603d4",9817:"14eb3368"}[e]||e)+"."+{53:"af8c3126",123:"1fc5f8a1",296:"a3fe1499",432:"8e77499f",554:"9012c388",585:"88e2ed16",596:"c934dcb0",698:"02ecf8a0",918:"74ff9fcc",952:"51f99e28",1129:"07372634",1327:"37d0ed39",1356:"02804555",1500:"929876a1",1704:"6511d866",2099:"2a653be0",2163:"096fabb0",2263:"3980a0d4",2282:"f1d8d943",2305:"600335dc",2359:"e041662b",2438:"e1067b46",2453:"7f593cf2",2463:"6d5f3ad4",2543:"52def2ee",2582:"b5f68b7e",2672:"25d9da0a",2678:"b0273f83",2853:"23875b5f",2873:"b722ee28",3018:"1383b54d",3166:"136c147f",3293:"655674df",3305:"1237957a",3412:"08f0edc4",3436:"cba9bde3",3608:"6e912446",3661:"593bba5c",3808:"a7fce259",3822:"dbb98ec9",3902:"73af5b7e",3934:"a4f5c736",4009:"1e9f60f9",4195:"684c270e",4419:"4a574066",4521:"216f709e",4608:"46768f56",5294:"86227180",5386:"f96775e6",5435:"67d0c84c",5437:"e2c081c8",5886:"f539fb56",6061:"24207895",6196:"aa89e306",6245:"5c8c3dc5",6304:"6abca704",6515:"6a8c6376",6570:"dd09dcfc",6671:"78438c01",6966:"3b2a23c4",7098:"451ca2c2",7426:"361333e3",7492:"01af3d6a",7578:"465c5637",7918:"6d7b2f82",8027:"c3e1229f",8150:"e3153012",8362:"69f9ed96",8518:"6f79a50b",8635:"9eacda40",9003:"b1cc3b3e",9053:"90332cf0",9110:"cbdafccc",9173:"3ab4f8fe",9184:"9ae02f15",9213:"3a3aae20",9221:"261f0d22",9340:"c521528a",9456:"3112a237",9514:"a4a3adad",9744:"bcc78ee9",9817:"d6f1bb65"}[e]+".js",r.miniCssF=e=>"assets/css/styles.6aa5c4cf.css",r.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),r.o=(e,d)=>Object.prototype.hasOwnProperty.call(e,d),f={},c="website:",r.l=(e,d,a,b)=>{if(f[e])f[e].push(d);else{var t,o;if(void 0!==a)for(var n=document.getElementsByTagName("script"),i=0;i{t.onerror=t.onload=null,clearTimeout(u);var c=f[e];if(delete f[e],t.parentNode&&t.parentNode.removeChild(t),c&&c.forEach((e=>e(a))),d)return d(a)},u=setTimeout(l.bind(null,void 0,{type:"timeout",target:t}),12e4);t.onerror=l.bind(null,t.onerror),t.onload=l.bind(null,t.onload),o&&document.head.appendChild(t)}},r.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r.p="/volto-eea-design-system/",r.gca=function(e){return e={17896441:"7918",24202412:"5435",63791757:"2582",75066279:"9053",86298114:"2543","935f2afb":"53","3fc91083":"123",a64f9232:"296","323ff172":"432","8fd6869d":"554",c74413f4:"585",ca221c65:"596","56bbe726":"698","1e6d2369":"918","4442ee2e":"952","30e35848":"1129","9c235974":"1327","7ca1ae16":"1356","3508f21e":"1500","6c6ad4cd":"1704",f4f5dc73:"2099","0bef62f9":"2163",e9a55e4f:"2263","9a6dc4ea":"2282","686ae6d4":"2305",d61699b0:"2359",d9dbb717:"2438",a5822498:"2453","42e0342b":"2463",bdd5fc8f:"2672","9b6f4efd":"2678","06df40a2":"2853","398224d0":"2873","2d344845":"3018",f9ee06b1:"3166",b78356b1:"3293","1f485700":"3305","792760cc":"3412","860b2a9d":"3436","9e4087bc":"3608","39f50359":"3661",fe8a233d:"3808","77dd8181":"3822",a8b15fb1:"3902",aa38dcb9:"3934","8050142d":"4009",c4f5d8e4:"4195",f601d3af:"4419","1a10606c":"4521","76fe1567":"5294","54e4468f":"5386",a186f965:"5437","7e4403b7":"5886","046f8cb9":"6061",c3faf33a:"6196","41d5c757":"6245","1c178b4f":"6304",f8c0402f:"6515","23d147e2":"6570","8effdd7e":"6671",c7d85666:"6966",d727d0d1:"7098","671d942a":"7426",b0f56568:"7492","3aee128f":"7578","2d39cd59":"8027","85201c01":"8150","0b225811":"8362","627750f7":"8518","0a8b14be":"8635","072ed0e5":"9003","7810a5ba":"9110","6d890e16":"9173",b3c62368:"9184","6dda7ddb":"9213","797402ac":"9221",d6e43592:"9340",aed7c9bd:"9456","1be78505":"9514","224603d4":"9744","14eb3368":"9817"}[e]||e,r.p+r.u(e)},(()=>{var e={1303:0,532:0};r.f.j=(d,a)=>{var f=r.o(e,d)?e[d]:void 0;if(0!==f)if(f)a.push(f[2]);else if(/^(1303|532)$/.test(d))e[d]=0;else{var c=new Promise(((a,c)=>f=e[d]=[a,c]));a.push(f[2]=c);var b=r.p+r.u(d),t=new Error;r.l(b,(a=>{if(r.o(e,d)&&(0!==(f=e[d])&&(e[d]=void 0),f)){var c=a&&("load"===a.type?"missing":a.type),b=a&&a.target&&a.target.src;t.message="Loading chunk "+d+" failed.\n("+c+": "+b+")",t.name="ChunkLoadError",t.type=c,t.request=b,f[1](t)}}),"chunk-"+d,d)}},r.O.j=d=>0===e[d];var d=(d,a)=>{var f,c,b=a[0],t=a[1],o=a[2],n=0;if(b.some((d=>0!==e[d]))){for(f in t)r.o(t,f)&&(r.m[f]=t[f]);if(o)var i=o(r)}for(d&&d(a);n{"use strict";var e,d,a,f,c,b={},t={};function r(e){var d=t[e];if(void 0!==d)return d.exports;var a=t[e]={id:e,loaded:!1,exports:{}};return b[e].call(a.exports,a,a.exports,r),a.loaded=!0,a.exports}r.m=b,r.c=t,e=[],r.O=(d,a,f,c)=>{if(!a){var b=1/0;for(i=0;i=c)&&Object.keys(r.O).every((e=>r.O[e](a[o])))?a.splice(o--,1):(t=!1,c0&&e[i-1][2]>c;i--)e[i]=e[i-1];e[i]=[a,f,c]},r.n=e=>{var d=e&&e.__esModule?()=>e.default:()=>e;return r.d(d,{a:d}),d},a=Object.getPrototypeOf?e=>Object.getPrototypeOf(e):e=>e.__proto__,r.t=function(e,f){if(1&f&&(e=this(e)),8&f)return e;if("object"==typeof e&&e){if(4&f&&e.__esModule)return e;if(16&f&&"function"==typeof e.then)return e}var c=Object.create(null);r.r(c);var b={};d=d||[null,a({}),a([]),a(a)];for(var t=2&f&&e;"object"==typeof t&&!~d.indexOf(t);t=a(t))Object.getOwnPropertyNames(t).forEach((d=>b[d]=()=>e[d]));return b.default=()=>e,r.d(c,b),c},r.d=(e,d)=>{for(var a in d)r.o(d,a)&&!r.o(e,a)&&Object.defineProperty(e,a,{enumerable:!0,get:d[a]})},r.f={},r.e=e=>Promise.all(Object.keys(r.f).reduce(((d,a)=>(r.f[a](e,d),d)),[])),r.u=e=>"assets/js/"+({53:"935f2afb",123:"3fc91083",296:"a64f9232",432:"323ff172",554:"8fd6869d",585:"c74413f4",596:"ca221c65",698:"56bbe726",918:"1e6d2369",952:"4442ee2e",1129:"30e35848",1327:"9c235974",1356:"7ca1ae16",1500:"3508f21e",1704:"6c6ad4cd",2099:"f4f5dc73",2163:"0bef62f9",2263:"e9a55e4f",2282:"9a6dc4ea",2305:"686ae6d4",2359:"d61699b0",2438:"d9dbb717",2453:"a5822498",2463:"42e0342b",2543:"86298114",2582:"63791757",2672:"bdd5fc8f",2678:"9b6f4efd",2853:"06df40a2",2873:"398224d0",3018:"2d344845",3166:"f9ee06b1",3293:"b78356b1",3305:"1f485700",3412:"792760cc",3436:"860b2a9d",3608:"9e4087bc",3661:"39f50359",3808:"fe8a233d",3822:"77dd8181",3902:"a8b15fb1",3934:"aa38dcb9",4009:"8050142d",4195:"c4f5d8e4",4419:"f601d3af",4521:"1a10606c",5294:"76fe1567",5386:"54e4468f",5435:"24202412",5437:"a186f965",5886:"7e4403b7",6061:"046f8cb9",6196:"c3faf33a",6245:"41d5c757",6304:"1c178b4f",6515:"f8c0402f",6570:"23d147e2",6671:"8effdd7e",6966:"c7d85666",7098:"d727d0d1",7426:"671d942a",7492:"b0f56568",7578:"3aee128f",7918:"17896441",8027:"2d39cd59",8150:"85201c01",8362:"0b225811",8518:"627750f7",8635:"0a8b14be",9003:"072ed0e5",9053:"75066279",9110:"7810a5ba",9173:"6d890e16",9184:"b3c62368",9213:"6dda7ddb",9221:"797402ac",9340:"d6e43592",9456:"aed7c9bd",9514:"1be78505",9744:"224603d4",9817:"14eb3368"}[e]||e)+"."+{53:"af8c3126",123:"1fc5f8a1",296:"a3fe1499",432:"8e77499f",554:"9012c388",585:"88e2ed16",596:"c934dcb0",698:"02ecf8a0",918:"74ff9fcc",952:"51f99e28",1129:"07372634",1327:"37d0ed39",1356:"02804555",1500:"929876a1",1704:"6511d866",2099:"2a653be0",2163:"096fabb0",2263:"3980a0d4",2282:"f1d8d943",2305:"600335dc",2359:"e041662b",2438:"e1067b46",2453:"7f593cf2",2463:"6d5f3ad4",2543:"52def2ee",2582:"b5f68b7e",2672:"25d9da0a",2678:"b0273f83",2853:"23875b5f",2873:"b722ee28",3018:"1383b54d",3166:"136c147f",3293:"655674df",3305:"1237957a",3412:"08f0edc4",3436:"cba9bde3",3608:"6e912446",3661:"593bba5c",3808:"a7fce259",3822:"dbb98ec9",3902:"73af5b7e",3934:"a4f5c736",4009:"1e9f60f9",4195:"684c270e",4419:"4a574066",4521:"216f709e",4608:"46768f56",5294:"86227180",5386:"f96775e6",5435:"67d0c84c",5437:"e2c081c8",5886:"f539fb56",6061:"24207895",6196:"aa89e306",6245:"c97b6622",6304:"6abca704",6515:"6a8c6376",6570:"dd09dcfc",6671:"78438c01",6966:"3b2a23c4",7098:"451ca2c2",7426:"361333e3",7492:"01af3d6a",7578:"465c5637",7918:"6d7b2f82",8027:"c3e1229f",8150:"e3153012",8362:"69f9ed96",8518:"6f79a50b",8635:"9eacda40",9003:"b1cc3b3e",9053:"90332cf0",9110:"cbdafccc",9173:"3ab4f8fe",9184:"9ae02f15",9213:"3a3aae20",9221:"261f0d22",9340:"c521528a",9456:"3112a237",9514:"a4a3adad",9744:"bcc78ee9",9817:"d6f1bb65"}[e]+".js",r.miniCssF=e=>"assets/css/styles.6aa5c4cf.css",r.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),r.o=(e,d)=>Object.prototype.hasOwnProperty.call(e,d),f={},c="website:",r.l=(e,d,a,b)=>{if(f[e])f[e].push(d);else{var t,o;if(void 0!==a)for(var n=document.getElementsByTagName("script"),i=0;i{t.onerror=t.onload=null,clearTimeout(u);var c=f[e];if(delete f[e],t.parentNode&&t.parentNode.removeChild(t),c&&c.forEach((e=>e(a))),d)return d(a)},u=setTimeout(l.bind(null,void 0,{type:"timeout",target:t}),12e4);t.onerror=l.bind(null,t.onerror),t.onload=l.bind(null,t.onload),o&&document.head.appendChild(t)}},r.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r.p="/volto-eea-design-system/",r.gca=function(e){return e={17896441:"7918",24202412:"5435",63791757:"2582",75066279:"9053",86298114:"2543","935f2afb":"53","3fc91083":"123",a64f9232:"296","323ff172":"432","8fd6869d":"554",c74413f4:"585",ca221c65:"596","56bbe726":"698","1e6d2369":"918","4442ee2e":"952","30e35848":"1129","9c235974":"1327","7ca1ae16":"1356","3508f21e":"1500","6c6ad4cd":"1704",f4f5dc73:"2099","0bef62f9":"2163",e9a55e4f:"2263","9a6dc4ea":"2282","686ae6d4":"2305",d61699b0:"2359",d9dbb717:"2438",a5822498:"2453","42e0342b":"2463",bdd5fc8f:"2672","9b6f4efd":"2678","06df40a2":"2853","398224d0":"2873","2d344845":"3018",f9ee06b1:"3166",b78356b1:"3293","1f485700":"3305","792760cc":"3412","860b2a9d":"3436","9e4087bc":"3608","39f50359":"3661",fe8a233d:"3808","77dd8181":"3822",a8b15fb1:"3902",aa38dcb9:"3934","8050142d":"4009",c4f5d8e4:"4195",f601d3af:"4419","1a10606c":"4521","76fe1567":"5294","54e4468f":"5386",a186f965:"5437","7e4403b7":"5886","046f8cb9":"6061",c3faf33a:"6196","41d5c757":"6245","1c178b4f":"6304",f8c0402f:"6515","23d147e2":"6570","8effdd7e":"6671",c7d85666:"6966",d727d0d1:"7098","671d942a":"7426",b0f56568:"7492","3aee128f":"7578","2d39cd59":"8027","85201c01":"8150","0b225811":"8362","627750f7":"8518","0a8b14be":"8635","072ed0e5":"9003","7810a5ba":"9110","6d890e16":"9173",b3c62368:"9184","6dda7ddb":"9213","797402ac":"9221",d6e43592:"9340",aed7c9bd:"9456","1be78505":"9514","224603d4":"9744","14eb3368":"9817"}[e]||e,r.p+r.u(e)},(()=>{var e={1303:0,532:0};r.f.j=(d,a)=>{var f=r.o(e,d)?e[d]:void 0;if(0!==f)if(f)a.push(f[2]);else if(/^(1303|532)$/.test(d))e[d]=0;else{var c=new Promise(((a,c)=>f=e[d]=[a,c]));a.push(f[2]=c);var b=r.p+r.u(d),t=new Error;r.l(b,(a=>{if(r.o(e,d)&&(0!==(f=e[d])&&(e[d]=void 0),f)){var c=a&&("load"===a.type?"missing":a.type),b=a&&a.target&&a.target.src;t.message="Loading chunk "+d+" failed.\n("+c+": "+b+")",t.name="ChunkLoadError",t.type=c,t.request=b,f[1](t)}}),"chunk-"+d,d)}},r.O.j=d=>0===e[d];var d=(d,a)=>{var f,c,b=a[0],t=a[1],o=a[2],n=0;if(b.some((d=>0!==e[d]))){for(f in t)r.o(t,f)&&(r.m[f]=t[f]);if(o)var i=o(r)}for(d&&d(a);n Archive | EEA Design System - +

Archive

Archive

- + \ No newline at end of file diff --git a/docs/docs/category/components/index.html b/docs/docs/category/components/index.html index d61e24d0c2..a9c7addbb6 100644 --- a/docs/docs/category/components/index.html +++ b/docs/docs/category/components/index.html @@ -5,13 +5,13 @@ Components | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/category/forms/index.html b/docs/docs/category/forms/index.html index 0841f74a89..a442cd9cd4 100644 --- a/docs/docs/category/forms/index.html +++ b/docs/docs/category/forms/index.html @@ -5,13 +5,13 @@ Forms | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/category/guidelines/index.html b/docs/docs/category/guidelines/index.html index cb7dbb9fa9..ab9535147a 100644 --- a/docs/docs/category/guidelines/index.html +++ b/docs/docs/category/guidelines/index.html @@ -5,13 +5,13 @@ Guidelines | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/category/maps-and-charts/index.html b/docs/docs/category/maps-and-charts/index.html index 0039753330..e1e8b546c1 100644 --- a/docs/docs/category/maps-and-charts/index.html +++ b/docs/docs/category/maps-and-charts/index.html @@ -5,13 +5,13 @@ Maps and charts | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/category/publications/index.html b/docs/docs/category/publications/index.html index 6701fbab61..356cf40658 100644 --- a/docs/docs/category/publications/index.html +++ b/docs/docs/category/publications/index.html @@ -5,13 +5,13 @@ Publications | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/category/quotes/index.html b/docs/docs/category/quotes/index.html index bc2e83a77d..b1321f3403 100644 --- a/docs/docs/category/quotes/index.html +++ b/docs/docs/category/quotes/index.html @@ -5,13 +5,13 @@ Quotes | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/category/resources/index.html b/docs/docs/category/resources/index.html index 6e210c3b0d..8ef620581a 100644 --- a/docs/docs/category/resources/index.html +++ b/docs/docs/category/resources/index.html @@ -5,13 +5,13 @@ Resources | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/category/search/index.html b/docs/docs/category/search/index.html index 3aeccd27ff..038b97bf55 100644 --- a/docs/docs/category/search/index.html +++ b/docs/docs/category/search/index.html @@ -5,13 +5,13 @@ Search | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/category/templates/index.html b/docs/docs/category/templates/index.html index 681b34efff..d3d4bcf44d 100644 --- a/docs/docs/category/templates/index.html +++ b/docs/docs/category/templates/index.html @@ -5,13 +5,13 @@ Templates | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/category/utilities/index.html b/docs/docs/category/utilities/index.html index f730888b53..b5907eda7a 100644 --- a/docs/docs/category/utilities/index.html +++ b/docs/docs/category/utilities/index.html @@ -5,13 +5,13 @@ Utilities | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/category/visuals/index.html b/docs/docs/category/visuals/index.html index 28021cb641..508e588e03 100644 --- a/docs/docs/category/visuals/index.html +++ b/docs/docs/category/visuals/index.html @@ -5,13 +5,13 @@ Visuals | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/category/web-content/index.html b/docs/docs/category/web-content/index.html index aee1c5b752..30f6da7e72 100644 --- a/docs/docs/category/web-content/index.html +++ b/docs/docs/category/web-content/index.html @@ -5,13 +5,13 @@ Web content | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/category/web-development/index.html b/docs/docs/category/web-development/index.html index 10046daeae..8e3cd1a7c0 100644 --- a/docs/docs/category/web-development/index.html +++ b/docs/docs/category/web-development/index.html @@ -5,13 +5,13 @@ Web development | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/dataguide/intro/index.html b/docs/docs/dataguide/intro/index.html index 521d59ea55..e8111efd6e 100644 --- a/docs/docs/dataguide/intro/index.html +++ b/docs/docs/dataguide/intro/index.html @@ -5,13 +5,13 @@ Dos and don'ts | EEA Design System - +
- + \ No newline at end of file diff --git a/docs/docs/intro/index.html b/docs/docs/intro/index.html index 20979c7b91..33542ff16f 100644 --- a/docs/docs/intro/index.html +++ b/docs/docs/intro/index.html @@ -5,13 +5,13 @@ Introduction | EEA Design System - +

Introduction

We created the EEA Design System (EEA-DS) to standardize the visual language and user experience of the EEA’s online applications.

This also allows us to be more effecient when creating online applications instead of reinventing the wheel over and over.

EEA-DS was built by a multi-disciplinary team of developers, designers, UX researchers, writers and data scientists. Combining the expertise of all of these roles allowed us to create a design system with a wide range of elements and for various target users (Web Designer, Web Writer/Content manager, Web Developer and Data scientist).

What is a design system?

A design system is a catalogue of everything that makes up your digital product including user interface elements, writing style, guiding principles, coding standards, visual design, etc. using reusable components for easy development.

All library elements are accompanied by:

  • documentation explaining what a component is and how it should be used
  • a visual demonstration
  • HTML/CSS code for implementation
- + \ No newline at end of file diff --git a/docs/docs/pubguide/design/index.html b/docs/docs/pubguide/design/index.html index e60d77e7c5..18a91e1cb1 100644 --- a/docs/docs/pubguide/design/index.html +++ b/docs/docs/pubguide/design/index.html @@ -5,14 +5,14 @@ Design guidelines | EEA Design System - +
- + \ No newline at end of file diff --git a/docs/docs/pubguide/writing/index.html b/docs/docs/pubguide/writing/index.html index d226f9cde1..54cdb596fb 100644 --- a/docs/docs/pubguide/writing/index.html +++ b/docs/docs/pubguide/writing/index.html @@ -5,13 +5,13 @@ Writing guidelines | EEA Design System - +
- + \ No newline at end of file diff --git a/docs/docs/webcontent/intro/index.html b/docs/docs/webcontent/intro/index.html index 3b05ad0257..51e196278e 100644 --- a/docs/docs/webcontent/intro/index.html +++ b/docs/docs/webcontent/intro/index.html @@ -5,13 +5,13 @@ Guidelines | EEA Design System - +
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Accordion/index.html b/docs/docs/webdev/Components/Accordion/index.html index 94973ca745..098e3d2837 100644 --- a/docs/docs/webdev/Components/Accordion/index.html +++ b/docs/docs/webdev/Components/Accordion/index.html @@ -5,13 +5,13 @@ Accordion | EEA Design System - +

Accordion

The accordion component is used to generate vertically stacked content in a page. It is intended to save vertical space by hiding content, reducing scrolling.

Accordions contain labels with the relevant information. Users can click on the accordion to read additional information. For this reason, accordion labels (collapsed state) should be as descriptive and concise as possible.

Do's

  • use labels that are representative of the content inside the (initially hidden) container
  • order logically (such as 1st quarter, 2nd quarter, 3rd quarter, 4th quarter)
  • make sure this component is required in order to shorten the page

Don'ts

  • don't use unless users will benefit from hidden information
  • don't use actionable items (i.e. forms, accordions, buttons, CTAs, etc.) or pictures in the content container as they will have decreased visibility
  • don't hide important information that should be present at all times
  • don't use long labels, ideally keep it to one line, maximum 2

When to use

  • when you need to present multiple sections of content in a simple way on one page, without overwhelming the user (especially applicable to mobile)
  • when it’s not critical for every user to read every section of content, adding value
  • when you can make extensive and complex content easier to digest through descriptive labels

When not to use

  • don't use when pages are short (reading time: under 3 minutes)
  • don't use when information would be better structured horizontally (does not need comparison between sections) - use tabs instead
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Breadcrumb/index.html b/docs/docs/webdev/Components/Breadcrumb/index.html index aac730e558..e28e26b5aa 100644 --- a/docs/docs/webdev/Components/Breadcrumb/index.html +++ b/docs/docs/webdev/Components/Breadcrumb/index.html @@ -5,13 +5,13 @@ Breadcrumb | EEA Design System - +

Breadcrumb

The Breadcrumb informs the users on their current location relative to the homepage of the website and allows them to navigate to higher levels. It is a series links except the last item in the group, which is the current page.

Do's

  • the first element of the breadcrumb must always be labelled "Home" and must link to the homepage of the actual site where the current user page is located

Don'ts

  • use long labels which creates visual clutter
  • breadcrumb links cannot exceed 220px in length else they will be truncated

When to use

  • if your website's navigational structure is a tree of more than 2 levels

When not to use

  • if your website's navigational structure has less than 3 levels of depth
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Buttons/index.html b/docs/docs/webdev/Components/Buttons/index.html index e6aab4336d..7c54a346af 100644 --- a/docs/docs/webdev/Components/Buttons/index.html +++ b/docs/docs/webdev/Components/Buttons/index.html @@ -5,13 +5,13 @@ Buttons | EEA Design System - +

Buttons

Buttons trigger an action in a web page. There are 4 variants of the button component with different levels of importance and usages.

Primary Button

Use for basic and successful actions. They direct the user’s attention to the primary action the application is suggesting that the user take.

Do's

  • make sure the button‘s microcopy represents the action such as “Submit“ or “Register“
  • use an icon only when it is necessary
  • use to perform a new action, task, move to next step

Don'ts

  • don't assign an action that should be assigned for a CTA (Call To Action) or other variations of buttons
  • don't use an icon when it is not relevant or necessary to the action

When not to use

  • don't use for navigation
  • don't use for downloads
  • don't use when the primary action is negative - use secondary button
  • don't use when the action can't be undone, such as delete

Secondary Button

Use for medium-emphasis actions. They contain actions that are important but aren’t the primary action. They are used to indicate a secondary action that compliments a primary action or to reduce visual noise when there are many actions of equal importance on the page.

Do's

  • ensure the button performs an action, such as "Cancel", "Delete," "Remove" or "Replace" as the secondary action next to the primary button
  • use an icon only when it is necessary

Don'ts

  • don't use for primary positive actions – such as Submit, Send, Accept, Apply or navigation
  • don't use on its own
  • don't use for navigation
  • don't use an icon when it is not relevant or necessary to the action

Inverted Button

When to use

  • use inverted and inverted-green only on white or light color background
  • use inverted-dark only on dark background

Use for low-emphasis actions or for buttons that could have a long length text. It can be grouped with other buttons or placed independently.

When to use

  • use with low emphasis in a button group
  • use on pages/cards when the main focus should be the content and not the button
  • when there is a single action intended

When not to use

  • do not use for navigation purpose
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Callout/index.html b/docs/docs/webdev/Components/Callout/index.html index 2af3973dca..7198fa67fc 100644 --- a/docs/docs/webdev/Components/Callout/index.html +++ b/docs/docs/webdev/Components/Callout/index.html @@ -5,13 +5,13 @@ Callout | EEA Design System - +

Callout

The callout component is used to capture users' attention of an excerpt, testimonial, or a quote cited from the article or other sources. The design style makes the quoted section more distinguishable than the rest of the content in the web page.

Do's

  • always name the source of the quoted content
  • limit the quote to no longer than 80 characters
  • use the image variant to add a portrait of the quoted person

Don'ts

  • do not apply more than two callout components on the webpage
  • for the image variant, do not use a photoshopped composition of images

When to use

  • quoting something important

When not to use

  • to emphasize text style
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Cards/index.html b/docs/docs/webdev/Components/Cards/index.html index 2987e140ec..4d43a946e8 100644 --- a/docs/docs/webdev/Components/Cards/index.html +++ b/docs/docs/webdev/Components/Cards/index.html @@ -5,14 +5,14 @@ Card | EEA Design System - +

Card

Cards component is used as an entry point to more detailed information. The component can include various sets of elements to serve users' specific needs.

Do's

  • use cards to emphasize on contents
  • only display the most relevant information on each card illustration: card with a thumbnail, title, description
  • keep the amount of links on the cards as low as possible

Don'ts

  • overuse cards
  • limit the amount of cards to small groups of items
  • limit to 3-4 cards within a row
  • display too many links on a cards, the main and ideally only action on card should remain to navigate to the content it represent

When to use

  • browsing for information (as opposed to searching)

  • grouping heterogeneous types of content

  • allowing users to scan through content in small portions

    • to display structured content
    • to make information discoverable
  • the user goals that the card-based web design best responds to:

    • scrolling through
    • scanning through
    • browsing through

When not to use

  • searching for information (as opposed to browsing)
  • on small screen display avoid using too many cards as they force users to scroll down and rely on their short-term memory. This creates a cognitive overload, a negative user experience
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Comment/index.html b/docs/docs/webdev/Components/Comment/index.html index 7ea553a96f..4422a86c70 100644 --- a/docs/docs/webdev/Components/Comment/index.html +++ b/docs/docs/webdev/Components/Comment/index.html @@ -5,13 +5,13 @@ Comment | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Confirm/index.html b/docs/docs/webdev/Components/Confirm/index.html index 55511a30ee..9175a712dc 100644 --- a/docs/docs/webdev/Components/Confirm/index.html +++ b/docs/docs/webdev/Components/Confirm/index.html @@ -5,13 +5,13 @@ Confirm | EEA Design System - +

Confirm

A confirmation dialog asks users whether they are sure that they want to proceed with an action.

Do’s

  • use a confirmation dialog before actions that cannot be undone
  • be specific and inform users about the consequence of their actions.

Don’ts

  • do not use confirmation dialogs for routine actions
  • avoid giving confirmation dialogs a default Yes answer
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Content/index.html b/docs/docs/webdev/Components/Content/index.html index 1bf444276e..d54f540074 100644 --- a/docs/docs/webdev/Components/Content/index.html +++ b/docs/docs/webdev/Components/Content/index.html @@ -5,7 +5,7 @@ Content | EEA Design System - + @@ -18,7 +18,7 @@ Don’t indent paragraphs, use whitespace before. While most longform print design uses indented lines to distinguish paragraphs, it’s more conventional on the web to use unindented paragraphs separated by whitespace. Use at least 1em of whitespace between paragraphs. To properly separate paragraphs from one another, use the equivalent of one blank line of whitespace between them. Using more than 1.5em disturbs the flow of the text, and using less than 0.5em doesn’t provide enough separation. Headings should be closer to the text they introduce than the text that preceeds them. It’s important that headings are more visually connected to the text for which they’re the heading than the text of the previous section to reduce ambiguity and cognitive dissonance. Use at least 1.5 times the amount of whitespace above the heading as below it.

- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Divider/index.html b/docs/docs/webdev/Components/Divider/index.html index c80f146663..11c903d56e 100644 --- a/docs/docs/webdev/Components/Divider/index.html +++ b/docs/docs/webdev/Components/Divider/index.html @@ -5,13 +5,13 @@ Divider | EEA Design System - +

Divider

Dividers are used throughout all types of design to establish content hierarchy and separate themes. Deceptively simple, they are one of the main contributors to our visual style.

Kinds of Visual Dividers

Talking about dividers, we can analyze them in two aspects: their appearance and their functions. Starting with the visual part, there are 4 basic and broadly used methods of dividing content in our user interfaces:

  • Lines

  • Color contrast

  • Negative space

  • Images

Lines have belonged to the top methods of separating the pieces of content since time immemorial, both in print production and in digital interfaces. They are recognized easily in this role, so users won’t need to think twice.

Don’ts

Too many lines can overload the screen with visual noise and create unnecessary visual tension. Use lines only if the content cannot be effectively divided in another way.

When to use

  • when whitespace is not enough of a separator

  • in lists, separate items to show they are individual and unrelated items when each item is long and otherwise difficult to scan

  • in layouts, when background color changes (e.g. from Gray 100 to White)

When not to use

  • for surrounding an item, use a border instead

  • for grouping content, use a card or table

Color Contrast is another effective type of visual divider. Contrast is one of the key factors influencing scannability and visual hierarchy of the page or screen. With all that, color contrast can effective separate different option, items, or interactive zones, that means work as a visual divider.

Negative space (aka white space) means empty space on the screen around and often inside the elements. Yet, empty does not mean passive or wasted: as well as any other element of the screen, it works supporting a positive user experience. Negative space is one of the most popular kinds of visual dividers, especially in interfaces built on the idea of minimalism and simplicity. Negative space turns into an effective and elegant visual divider that also let the interface to breathe and avoid clutter.

Images of all kinds present one more effective visual divider. In this role, they are especially popular in the interfaces with lots of text content pages. Photos, illustrations, 3D graphics, as well as animated images, help to balance the text content, increase scannability and readability levels, effectively divide the visual blocks, as well as add fun and emotional appeal.

- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Forms/Checkbox/index.html b/docs/docs/webdev/Components/Forms/Checkbox/index.html index 91e7a46421..e23d689089 100644 --- a/docs/docs/webdev/Components/Forms/Checkbox/index.html +++ b/docs/docs/webdev/Components/Forms/Checkbox/index.html @@ -5,13 +5,13 @@ Checkbox | EEA Design System - +

Checkbox

The checkbox is a form input for users to choose one or more options from the list of selections.

Dos

  • always make sure each checkbox has a short, distinct and indicative checkbox label
  • use checkbox labels as click targets (clicking the label will select that option)
  • arrange them vertically, in a single column layout
  • group related fields
  • order logically
  • indicate whether the input group is optional or mandatory
  • make use of helper text if there are further directions or hints the users may need in completing their goal
  • write specific and clear error messages, so users understand how to properly address and recover from the error

Don'ts

  • don't add them without grouping first, in a logical order
  • don't restrict the number of checkboxes that can be ticked at any time
  • don't nest elements under the checkbox - keep all the options on the same level

When to use

  • use in any situation where the input information is known to the organisation
  • when users need to select options or toggle settings
  • in forms with multiple non-exclusive options
  • in search filters
  • to turn a setting option on or off

When not to use

  • do not use it when you have mutually exclusive items
  • do not use it if the checkbox selection will perform an action
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Forms/Dropdown/index.html b/docs/docs/webdev/Components/Forms/Dropdown/index.html index a249b4f6d7..ec794a7e9f 100644 --- a/docs/docs/webdev/Components/Forms/Dropdown/index.html +++ b/docs/docs/webdev/Components/Forms/Dropdown/index.html @@ -5,13 +5,13 @@ Dropdown | EEA Design System - +

Dropdown

Default single select

The select component, is a widget which displays a list of selectable items from which the user can select one values.

Do's

  • write short, distinct and indicative headings for the items listed inside the dropdown
  • use dropdown select menu labels as click targets (clicking the label will trigger the action)
  • indicate whether the input is optional
  • make use of helper text if there are further directions or hints the users may need in completing their goal (example: you must be a current resident of this country)
  • write specific and clear error message texts, so users understand how to address the error

Don'ts

  • don't use as navigation
  • don't use it for multi-select

When to use

  • when there are more than 5 options to select from

When not to use

  • when you want users to read all options
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Forms/Radio/index.html b/docs/docs/webdev/Components/Forms/Radio/index.html index a84b75fd71..88ee4e7fe9 100644 --- a/docs/docs/webdev/Components/Forms/Radio/index.html +++ b/docs/docs/webdev/Components/Forms/Radio/index.html @@ -5,13 +5,13 @@ Radio | EEA Design System - +

Radio

Radio buttons provides a selection with two or more options. Only one option can be selected.

Do's

  • use labels as click targets (clicking the label will select that option)
  • group related fields
  • order logically (e.g. ages 18-25, ages 25-35, ages, 35-50, over 65)
  • indicate whether the input group is optional - if it's mandatory, have a neutral option (e.g. other, n/a) selected by default
  • make use of helper text if there are further directions or hints the users may need in completing their goal
  • write specific and clear error messages, so users understand how to address the error

Don'ts

  • don't add them without grouping first
  • don't nest elements under radio buttons - keep all the options on the same level

When to use

  • when you have under 10 items
  • when users need to select options or toggle settings, for example
  • in forms with multiple non-exclusive options (e.g. search filters)
  • only one selection can be made

When not to use

  • avoid when more than one option can be selected - use checkboxes instead
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Forms/TextArea/index.html b/docs/docs/webdev/Components/Forms/TextArea/index.html index 904bdd5959..54bb1e8539 100644 --- a/docs/docs/webdev/Components/Forms/TextArea/index.html +++ b/docs/docs/webdev/Components/Forms/TextArea/index.html @@ -5,13 +5,13 @@ Text Area | EEA Design System - +

Text Area

A text area is an input field allowing users to enter multiple lines of text. Use in any situation where the user needs to input a large, or unknown, amount of data.

Do's

  • allow copy/paste for ease of use
  • match the text field to the expected size of the input - make it wide enough for the user to see their entire entry
  • write specific and clear error message texts, so users understand how to address the error

Don'ts

  • don't use placeholder text in the text field - this may not be read by screen reading software, leading to accessibility issues
  • don't have a mandatory minimum input of characters
  • don't restrict the use of uncommon or special characters
  • don't disable copy and paste functions
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Forms/TextInput/index.html b/docs/docs/webdev/Components/Forms/TextInput/index.html index 49684e3ac1..1435d2d6f6 100644 --- a/docs/docs/webdev/Components/Forms/TextInput/index.html +++ b/docs/docs/webdev/Components/Forms/TextInput/index.html @@ -5,13 +5,13 @@ Text Input | EEA Design System - +

Text Input

A text field is an input that can be used on a form, sign-in or any place where data is requested from the user.

Do's

  • minimise the number of input fields - only ask for necessary information
  • arrange them vertically for better layout and readability
  • group related fields together
  • order input fields logically, matching real-world task succession and interactions
  • always label each text area with a short, descriptive title, placed above the text area
  • indicate whether the input field is optional or mandatory
  • make use of helper text if there are further directions or hints the users may need in completing their goal (example: Must be at least 6 characters and contain a number and a special character)
  • allow copy/paste for ease of use
  • if a character counter is necessary, place it below the text area
  • match the text field area to the expected size of the input - make it wide enough for the user to see their entire entry
  • write specific and descriptive error message for easy comprehension

Don'ts

  • don't use placeholder text in the text area - this may not be read by screen reading software, leading to accessibility issues
  • don't have a mandatory minimum input of characters
  • don't restrict the use of uncommon or special characters
  • don't disable copyand paste functions

When to use

  • use in any situation where the user needs to input limited amount of data (name, email address, age, etc)

When not to use

  • do not use where the user needs to input a large, or unknown amount of data
  • do not use when the user must respond with specific options which are known to the organisation
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Headings/index.html b/docs/docs/webdev/Components/Headings/index.html index 7bcad8b4c5..c59ba123a2 100644 --- a/docs/docs/webdev/Components/Headings/index.html +++ b/docs/docs/webdev/Components/Headings/index.html @@ -5,13 +5,13 @@ Headings | EEA Design System - +

Headings

Effective headings are recognizable immediately, and help readers understand the flow of content on the page.

How to Use

  • employ visual contrast to make headings stand out. Headings need to appear separate from the rest of the content on the page
  • size matters: Headings should be big
  • use headings as titles. If we’re labeling a section of a website, the heading serves as the title for the section
  • be concise. Keep headings short. In some cases, it’s even okay to drop articles like “the” and “a,” as they can be assumed
  • not all headings should be bold
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Image/index.html b/docs/docs/webdev/Components/Image/index.html index 4342fc7e4f..3951e020c2 100644 --- a/docs/docs/webdev/Components/Image/index.html +++ b/docs/docs/webdev/Components/Image/index.html @@ -5,13 +5,13 @@ Image | EEA Design System - +

Image

Images must have natural snapshots that show unique situations.

Do’s

  • use stylistic tools such as light, perspective, color, focus and composition to tell stories that are authentic and believable.
  • the content of the photographs should be positive, optimistic, natural, realistic, warm, and welcoming. Framing should be playful and feel spontaneous
  • use image copyrights to be respectful of the author’s ownership rights

Don’ts

  • do not use images that are too dark or do not have enough contrast
  • do not use overlaying gradients
  • images that are too static or that appear too symmetrical should not be used
  • do not use images that are over exposed or over saturated
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Inpage-Navigation/index.html b/docs/docs/webdev/Components/Inpage-Navigation/index.html index 0cb8fdca87..5203b10906 100644 --- a/docs/docs/webdev/Components/Inpage-Navigation/index.html +++ b/docs/docs/webdev/Components/Inpage-Navigation/index.html @@ -5,13 +5,13 @@ Inpage Navigation | EEA Design System - +

Inpage Navigation

A Back to Top button, which is a shortcut that allows users to quickly navigate to the top of the page.

When users get at the bottom of a really long page, they often will need to get back to the top to:

  • see the navigation menu and choose a new destination
  • access filtering and sorting features
  • enter or edit a query in the search box

When the page is really long (for example, because of infinite scrolling), it becomes too tedious to scroll back up through screens and screens of content. Hence the role of the Back to Top button.

Do's

  • use a 'Back to Top button' for pages that are longer than 4 screens. For relatively short page lengths, 'Back to Top links' are overkill
  • place a persistent 'Back to Top button' in the lower right side of the page. This is where people expect to see it. This position is out of the way, but noticeable. When the button is placed in a different place on the screen, it is often ignored
  • label the button 'Back to Top'. This phrase is most descriptive. An icon only (.e.g., an arrow pointing up) can be ambiguous and, depending on the graphical realization, may not convey the right meaning
  • keep the button small so it doesn’t cover important page elements. But, if you are on a touch screen, make it big enough so people can tap it
  • make the button stand out visually on the page rather than blend in. When Back to Top blends too much with the background content, users are less likely to notice and use it
  • consider delaying the appearance of a 'Back to Top' option until after users scroll a few pages and indicate that they want to scroll up (e.g., move the scroll bar up, flick up on the page). Thus, the button appears only when it is most likely needed, without covering up important parts of the screen the rest of the time
  • make the button stationary. Once it appears, don’t allow it to move. Moving elements cause major distractions, since the eye is automatically attracted to any movement on the screen
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Item/index.html b/docs/docs/webdev/Components/Item/index.html index 4117d96a7f..f0fc89df54 100644 --- a/docs/docs/webdev/Components/Item/index.html +++ b/docs/docs/webdev/Components/Item/index.html @@ -5,13 +5,13 @@ Item | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Labeled-icons/index.html b/docs/docs/webdev/Components/Labeled-icons/index.html index ea83dda6a3..705ae61491 100644 --- a/docs/docs/webdev/Components/Labeled-icons/index.html +++ b/docs/docs/webdev/Components/Labeled-icons/index.html @@ -5,13 +5,13 @@ Labeled icons | EEA Design System - +

Labeled icons

The labeled icons are used as a visual represenation of every available action below data products.

Do's

  • keep the labels as short as possible
  • always choose icons that the users can easily identify

Don'ts

  • don't use more than 5-6 labeled icons at once
  • dont use less than two in one row
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Labels/index.html b/docs/docs/webdev/Components/Labels/index.html index db6d65d81b..6d465fb46b 100644 --- a/docs/docs/webdev/Components/Labels/index.html +++ b/docs/docs/webdev/Components/Labels/index.html @@ -5,13 +5,13 @@ Label | EEA Design System - +

Label

Labels are used to indicate the different states for items in a list. They bring supplementary meaning by adding an indicative state (label) that is visually distinct (background colour) from other elements.

Do's

  • keep the message consistent on a single list of items and express meaning based on the content in which it is being used (e.g. "canceled" for events)
  • keep the label succinct (1-2 words)

Don'ts

  • don't use 2 labels at the same time (in one list)

When to use

  • when you have items in a list with multiple states (e.g. featured item & generic list item; canceled, rescheduled & upcoming event)

When not to use

  • when all items in a list have the same state (e.g. search list items)
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Lists/index.html b/docs/docs/webdev/Components/Lists/index.html index e6a20d6e46..cdb878e6b2 100644 --- a/docs/docs/webdev/Components/Lists/index.html +++ b/docs/docs/webdev/Components/Lists/index.html @@ -5,13 +5,13 @@ List | EEA Design System - +

List

Used to present chunks of information in a concise and scannable way, lists help to organise content related to a single topic, grouping together a set of items or text options.

Ordered lists

Ordered lists display a set of items in a sequential and logical order, indicated by a number in front of the label. Common use cases include counting, ranking or sequencing, but can be used in everything that has a hierarchy. Different list styles can be applied to list items, like numbers, roman numerals or letters, which can be used interchangeably when nesting (e.g. nested item 1 & 2 under item 3).

Do's

  • make sure the items are placed in hierarchical order so that the relation, rank or order is obvious to the user
  • indicate the external links, if linking to any pages external to the EEA
  • for easy to read purpose, try to use labels that are relatively consistent in characters & width

Don'ts

  • do not nest lists deeper than 3 levels

When to use

  • use ordered lists when you need to display items in a specific order or to indicate hierarchy

When not to use

  • do not use it for navigation purpose
  • do not use it when all items have equal value or importance
  • do not use when you have one or more overarching categories that require descriptions

Unordered list

Unordered lists are used to group related content without any particular order, with bullet points placed in front of the labels. Common use cases are much broader than ordered lists. They are used for a set of items that can be arranged in any specific order. Different bullet list styles are available to unordered list items, such as disc, circle, square or hyphen when nesting (eg. 2 sub-points under point 2).

Do's

  • indicate the external links, if linking to any pages external to the EEA
  • for easy to read purpose, try to use labels that are relatively consistent in characters & width

Don'ts

  • do not nest lists deeper than 3 levels in order to avoid clutters

When to use

  • use it when you need to display items that do not have a specific order or hierarchy

When not to use

  • do not use it for navigation purpose
  • do not use it when items can be ranked, counted or sequenced
  • do not use when you have one or more overarching categories or terms require descriptions

Description lists

Description lists are used to display and organise content with a descriptions. Common use cases include glossary, or a list of speakers with their biographies.

Do's

  • keep label short and meaningful
  • order logically according to their hierarchy, significance and degree of relatedness
  • avoid using long sentences
  • try to use labels that are relatively consistent in characters & width
  • add a meaningful description or explanation of each term

Don'ts

  • do not use an active voice
  • do not nest description lists

When to use

  • use a description list when the terms in the list require a specific description or explanation
  • on content pages to add additional information(such as latest update on the content of a page) or link to pages of interest

When not to use

  • do not use it for navigation purpose
  • do not use it when items can be ranked, counted or sequenced
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Loader/index.html b/docs/docs/webdev/Components/Loader/index.html index a080636d58..a9aa9f8a2e 100644 --- a/docs/docs/webdev/Components/Loader/index.html +++ b/docs/docs/webdev/Components/Loader/index.html @@ -5,13 +5,13 @@ Loader | EEA Design System - +

Loader

Loaders can be used to indicate progress on long actions/waits which meet some or preferably all of these characteristics:

  • the action/wait is blocking user flow. That is, it's difficult or impossible for the user to proceed with the flow she is on without waiting.

    • e.g. The user asked a question and the answer is being retrieved from a server

    • e.g. The user scrolled to the bottom of page feed and new content is being loaded

  • the action is long enough that a user may feel anxious if there is no indication of progress. For short actions or waits having a short-lived throbber is not a great idea because it can confuse users

  • it's difficult or impossible to indicate exact progress. If it's possible to indicate progress (eg percentage complete) then progress bars or widgets are more appropriately communicative and less likely to frustrate users

Dont ‘s

Do not use it for actions that take less than 1 sec.

- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Logo/index.html b/docs/docs/webdev/Components/Logo/index.html index 4aef6208c5..91b85bacbf 100644 --- a/docs/docs/webdev/Components/Logo/index.html +++ b/docs/docs/webdev/Components/Logo/index.html @@ -5,13 +5,13 @@ Logo | EEA Design System - +

Logo

To ensure consistency, it is important that the EEA logo appears only in the colours specified in these guidelines.

When applying the logo to images ensure that it is against a light, uncluttered background.

To ensure logo's integrity and visibility, it must always be kept clear of competing text, images or graphic elements. It must be surrounded by a minimum clear space οf 16px as indicated below.

EEA LOGO - Dark version

The only time the white version of the EEA logo appears on is against the dark background of the footer.

- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Messages/index.html b/docs/docs/webdev/Components/Messages/index.html index b3d1a9bbf7..3a819518a8 100644 --- a/docs/docs/webdev/Components/Messages/index.html +++ b/docs/docs/webdev/Components/Messages/index.html @@ -5,13 +5,13 @@ Messages | EEA Design System - +

Messages

Messages component contains important information to alert users to take a certain actions.

Do's

  • keep the message brief and clear
  • use consistent messages for the same information/success/warning/error throughout your site

Don'ts

  • overuse messages - users may ignore them and they can get in the way of a user completing their task
  • write messages that are neutral. For example, instead of The postal code you entered is invalid, the message should say Please enter a valid postal code

When to use

  • when the information is essential to convey to the users in order to go to the next step
  • success message: the user has performed an action which was successfully completed
  • warning message: the user needs to know about the potential dangers of completing their task (for example: "you are about replace/erase your data")
  • error message: the user tried to perform an action that failed because of a problem (for example: a file could not be uploaded because it wasn't the correct type of file)

When not to use

  • don't use to show non critical information
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Modal/index.html b/docs/docs/webdev/Components/Modal/index.html index 5c464af168..0c9d1cf3dc 100644 --- a/docs/docs/webdev/Components/Modal/index.html +++ b/docs/docs/webdev/Components/Modal/index.html @@ -5,13 +5,13 @@ Modal | EEA Design System - +

Modal

Modals appear on top of the main content and require user interaction. This dialog disables the main content until the user explicitly interacts with the modal dialog.

Do’s

  • use modal dialogs for important warnings, to prevent or correct critical errors
  • use modal dialogs to request the user to enter information critical to continuing the current process
  • modal dialogs can be used to fragment a complex workflow into simpler steps

Don’ts

  • do not use modal dialogs for nonessential information that is not related to the current user flow
  • avoid modal dialogs that interrupt high-stake processes
  • avoid modal dialogues for complex decision making that require additional sources of information unavailable in the modal
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Pagination/index.html b/docs/docs/webdev/Components/Pagination/index.html index f5bb88ca94..b3a7ec4648 100644 --- a/docs/docs/webdev/Components/Pagination/index.html +++ b/docs/docs/webdev/Components/Pagination/index.html @@ -5,13 +5,13 @@ Pagination | EEA Design System - +

Pagination

Pagination component is the control to navigate through multiple pages.

Do's

  • place the pagination below the list of items

Don'ts

  • don't replace this component with an "infinite scrolling" feature

When to use

  • to show long lists otherwise redundant scrolling in one page

When not to use

  • don't use to break unrelated content on different pages
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Popup/index.html b/docs/docs/webdev/Components/Popup/index.html index 6f20c8fada..78eae04b13 100644 --- a/docs/docs/webdev/Components/Popup/index.html +++ b/docs/docs/webdev/Components/Popup/index.html @@ -5,14 +5,14 @@ Popup | EEA Design System - +

Popup

A popup (also known as an overlay) is a window or dialog that appears on top of the page content. A popup can be classified according to two dimensions:

  • whether the user can interact with the rest of the page, and it is called 'Modal' when the content on the page is disabled until the user explicitly interacts with the overlay or 'Nonmodal' when users can still interact with the background content (for example, by selecting links or tapping buttons) while the overlay remains visible
  • whether the background is dimmed the popup is called a 'Lightbox'

Do’s

  • present the content in the popup when it’s contextually relevant to the user
  • if you must present critical information (e.g., important warnings to prevent or correct errors) in a popup, be sure to show only one at a time

Don’ts

  • do not show a popup before the main page content loads
  • do not display a popup right after the user logs in
  • you should not ask for feedback before people have done anything meaningful
  • do not show multiple popups one after another
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Progress/index.html b/docs/docs/webdev/Components/Progress/index.html index 4c32d99aad..feb40da39b 100644 --- a/docs/docs/webdev/Components/Progress/index.html +++ b/docs/docs/webdev/Components/Progress/index.html @@ -5,13 +5,13 @@ Progress | EEA Design System - +

Progress

Progress indicators tell users that more time is needed to process the last user action (for instance, to load a file, or to install a new update), and how much time remains.

Do’s

  • use a progress indicator for any action that takes longer than about 1.0 second
  • use Looped animation only for fast actions. The animated-spinner icon is an example of this common progress indicator. This indicator should be used for actions that take between 2-10 seconds
  • percent-done animation: Use for actions that take 10 seconds or more.

Don’ts

  • do not use static progress indicators
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Quote/Quote/index.html b/docs/docs/webdev/Components/Quote/Quote/index.html index 198a912d90..adeb3e3894 100644 --- a/docs/docs/webdev/Components/Quote/Quote/index.html +++ b/docs/docs/webdev/Components/Quote/Quote/index.html @@ -5,13 +5,13 @@ Quote | EEA Design System - +

Quote

Quote is a key phrase, quotation, or excerpt that has been pulled from an article and used as a page layout graphic element, serving to entice readers into the article or to highlight a key topic.

Dont's

  • Do not use more than one quote per page
  • Do not use long text or job title
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Quote/Testimonial/index.html b/docs/docs/webdev/Components/Quote/Testimonial/index.html index 168aebc5cc..c7d64cc36a 100644 --- a/docs/docs/webdev/Components/Quote/Testimonial/index.html +++ b/docs/docs/webdev/Components/Quote/Testimonial/index.html @@ -5,13 +5,13 @@ Testimonial | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Search/Filters/index.html b/docs/docs/webdev/Components/Search/Filters/index.html index 8224b1977b..ee6eb47f78 100644 --- a/docs/docs/webdev/Components/Search/Filters/index.html +++ b/docs/docs/webdev/Components/Search/Filters/index.html @@ -5,13 +5,13 @@ Filters | EEA Design System - +

Filters

The filter options must cover the most important aspects of whatever users will be filtering, based on relevance to users’ needs.

To design a filter that serves our users, we need to answer the following questions:

  • which characteristics are most influential to users in making their choice?

  • what words do users use to describe these characteristics?

  • do users understand our labels, or do they look like jargon to them?

  • which filter values are the most popular or most used?

    How to use Search filters

  • make sure users can find the search filters:

    • on desktop, users tend to find and use them easily when they are placed to the top and top left area of the page
    • on mobile where usually they are behind a button or drawer Keep them at the top and don’t rely on just an icon. Remove any ambiguity by adding a label to the icon or removing the icon altogether and just have text
  • ensure the options are relevant to users. When it comes to filters, matching the user’s mental model of how they would choose something in the physical world, is important in helping them choose something on a website

  • clearly display the selections to users. Feedback is an important heuristic for the usability of a website. So, once users have found the filters, understood the options they have, and made their selections – it’s important to let them know their choices have been applied to the list of products

  • allow a combination of filters. A big part of filters’ effectiveness will come down to using a number of them at the same time, letting the filters interact to produce the best results

  • live filtering updates. Live update for filtering UIs is great because the user gets to immediately see the changed results they are getting

  • include a ‘Clear all’ interaction. Let the users clear all applied filters with one click to action

  • show the number of results. Another key element in communicating feedback is to display the number of results. This provides users with feedback as to how effective their input was to reduce the result list and save time

  • make Important filters easily found. Users often do not reach useful filters because they are hidden at the bottom of a long menu. Filters at the top of the menu are the most used ones

Don’ts

Do not use live filtering updates

  • on mobile devices. Their screens are simply too small to pack the results, filters, and the live update feedback, without a visual overload

  • when handling a lot of data. For users doing a lot of research, having to wait for the results to update after each individual filter would be simply unbearable

In this case let the user batch their filters and click on an apply button before any actual updating takes place.

- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Search/Searchbox/index.html b/docs/docs/webdev/Components/Search/Searchbox/index.html index f22413089f..7e3cb0351a 100644 --- a/docs/docs/webdev/Components/Search/Searchbox/index.html +++ b/docs/docs/webdev/Components/Search/Searchbox/index.html @@ -5,13 +5,13 @@ Searchbox | EEA Design System - +

Searchbox

Search lets users assert independence from websites' attempt to direct how they use it. Therefore, many users go straight to the homepage search function.

Search is also users' escape hatch when they are stuck in navigation. When they cannot find a reasonable place to go next, they often turn to the site's search function. This is why you should make search available from every page on the site; you cannot predict where users will be when they decide they are lost.

Do's

  • use placeholder text. Placeholder text provides context as to what can be searched and describes the action of the input

  • use a magnifying glass icon. The magnifying glass is universally recognized as a symbol for search and one which users can easily identify

  • provide a button to submit search queries. Inputs should be accessible. Ensure users can return results using their keyboard as well as clicking a button or the magnifying glass icon

  • consider the search icon position. In most cases, it is beneficial to place the Icon to the right of placeholder text. This allows the Icon to act as the submit button and makes more sense hierarchically as queries are entered first, and results returned after

  • use input widths which are appropriate for the typical query length. The width of the Input field should be wide enough to contain the typical search query. If an Input field is too narrow, it results in scrolling and decreases usability. It is recommended to use a minimum width of 27 characters

- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Search/Suggestions/index.html b/docs/docs/webdev/Components/Search/Suggestions/index.html index cee6a60eaf..67f0c638dd 100644 --- a/docs/docs/webdev/Components/Search/Suggestions/index.html +++ b/docs/docs/webdev/Components/Search/Suggestions/index.html @@ -5,13 +5,13 @@ Suggestions | EEA Design System - +

Suggestions

Auto-suggestion is a powerful tool that reduces data input. Typical users are very poor at query formulation: if they don’t get good results on the first try, later search attempts rarely succeed. When autocomplete suggestions work well, they help the user articulate better search queries.

Usage

  • ensure that auto-suggestions are useful. Poorly designed auto-suggestions can confuse and distract users. Thus, use spelling auto-corrections, recognition of root words, and predictive text in order to improve the tool

  • present less than 10 items in the list of suggestions (and without a scrollbar) so the information doesn’t become overwhelming

  • allow for keyboard navigation for the list of suggestions. Once a user scrolls down past the last item, they should return to the top of the list. The Esc key should allow users to exit the list

  • highlight differences between the inputted information and suggested information. For example, the input text might have a standard weight, while suggested terms are bolded

- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Segment/index.html b/docs/docs/webdev/Components/Segment/index.html index 9ba9ace3b6..0ee0ff9ed1 100644 --- a/docs/docs/webdev/Components/Segment/index.html +++ b/docs/docs/webdev/Components/Segment/index.html @@ -5,13 +5,13 @@ Segment | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Statistic/index.html b/docs/docs/webdev/Components/Statistic/index.html index 821a1a71c3..375dcdae45 100644 --- a/docs/docs/webdev/Components/Statistic/index.html +++ b/docs/docs/webdev/Components/Statistic/index.html @@ -5,13 +5,13 @@ Statistic | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Tab/index.html b/docs/docs/webdev/Components/Tab/index.html index cbd1ad37ff..a1348d69e3 100644 --- a/docs/docs/webdev/Components/Tab/index.html +++ b/docs/docs/webdev/Components/Tab/index.html @@ -5,14 +5,14 @@ Tab | EEA Design System - +

Tab

The tabs component lets users navigate between related sections of content, displaying one section at a time.

Do’s

Tabs can be useful for users to quickly switch between related information if:

  • your content can be usefully separated into sections
  • the first section is more relevant than the others for most users
  • users will not need to view all the sections at once

Don’ts

Tabs hide content from users and not everyone will notice them or understand how they work. Do not use tabs if your users might need to:

  • read all the content in order, for example, to understand a step-by-step process
  • compare information in different tabs

Having to memorize information and switch between tabs can be frustrating. Test your content without tabs first.

Consider if it is better to:

  • simplify and reduce the amount of content
  • split the content across multiple pages
  • keep the content on a single page, separated by headings
  • use a table of contents to let users navigate quickly to specific sections of content

Tab labels

  • use short tab labels to appear in a single row. In exceptions, they can use a second line if needed, with a tab max width of 250px. Alternatively, you can use scrollable tabs to allow room for longer titles
  • don’t truncate labels unless required, as truncated text can impede comprehension
  • tab labels should consist of 1 – 2 words: Labels on tabs should clearly describe their function or destination within 2 words at most. Constraining yourself to 1 – 2 words will also help you in thinking more about selecting the best words for your tab labels.
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Table/index.html b/docs/docs/webdev/Components/Table/index.html index 72231dd348..f28c0dbe40 100644 --- a/docs/docs/webdev/Components/Table/index.html +++ b/docs/docs/webdev/Components/Table/index.html @@ -5,13 +5,13 @@ Table | EEA Design System - +

Table

Tables are used to structure complex data in an organised way that is more user friendly and discoverable.

Do's

  • reduce the table width to fit the content
  • align content left to right within cells
  • use a dash ( - ) in null data cells
  • adjusts the styling to render a small/large table

Don'ts

  • don't spell out numbers
  • don't use colour alone to convey information

When to use

  • use when you want to show structured information, or static data
  • use when you want to help users to compare information

When not to use

  • when you don't have any relationship among content you want to present
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Tags/index.html b/docs/docs/webdev/Components/Tags/index.html index c195671f3e..9d833c74c3 100644 --- a/docs/docs/webdev/Components/Tags/index.html +++ b/docs/docs/webdev/Components/Tags/index.html @@ -5,13 +5,13 @@ Tags | EEA Design System - +

Tags

Labels, Tags, or Badges are all types of classification component that help to categorize, organize, and label elements. Tags are used to call attention to new or updated content.

Do's

  • use them to draw attention to new, important content. Tags can focus attention on important content on that might otherwise be missed
  • when needed to filter results with one or more tags
  • to indicate the number of new or unread items within a container. For example, to indicate the number of unread emails within a person’s inbox

Don'ts

  • if your tags aren’t interactive, disable hover, focus, and active styles
  • don’t mix interactive and static tags
  • don’t overdo it. If everything on a page is called out as important, nothing commands unique attention.
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Timeline/index.html b/docs/docs/webdev/Components/Timeline/index.html index 2293c308cd..3d3ebacea5 100644 --- a/docs/docs/webdev/Components/Timeline/index.html +++ b/docs/docs/webdev/Components/Timeline/index.html @@ -5,13 +5,13 @@ Timeline | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Visuals/Charts/index.html b/docs/docs/webdev/Components/Visuals/Charts/index.html index e18d301398..1638870c3f 100644 --- a/docs/docs/webdev/Components/Visuals/Charts/index.html +++ b/docs/docs/webdev/Components/Visuals/Charts/index.html @@ -5,13 +5,13 @@ Charts | EEA Design System - +

Charts

Static and Interactive

Data accuracy and integrity come first. Don’t distort or confuse the information for embellishment or partiality. Emphasize clarity and transparency. Reduce cognitive load and focus on what matters. Every action, color, and visual element should support data insights and understanding.

More information can be referenced here https://www.eea.europa.eu/data-and-maps/daviz/learn-more/chart-dos-and-donts

Use the interactive chart if:

  • you want to give the user the possibility to visually filter data

  • you want the user to gain insights before filtering large datasets

Do not use the interactive chart if:

  • you want to visualize data without using it for filtering

  • you are not using the visual filter bar

- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Visuals/Dashboard/index.html b/docs/docs/webdev/Components/Visuals/Dashboard/index.html index 6e5c8afe00..e10dd08caa 100644 --- a/docs/docs/webdev/Components/Visuals/Dashboard/index.html +++ b/docs/docs/webdev/Components/Visuals/Dashboard/index.html @@ -5,13 +5,13 @@ Dashboard | EEA Design System - +

Dashboard

A good dashboard design means:

  • information available at the fingertip
  • metrics are clear
  • intuitive design
  • customizable
  • summarized data

Do’s

  • reside on a single screen
  • support the aims and objectives of the intended user
  • show what the underlying data means:  This can be done through adequate labelling, logical grouping of related visualisations and the use of clear statistical and verbal descriptions
  • summarise data and provide a means to dig deeper into the data 
  • make optimal use of the available space: Double your margins

Don’ts

  • don’t hide information or rely on interactions too much
  • don’t flood the user with data
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Visuals/Maps/index.html b/docs/docs/webdev/Components/Visuals/Maps/index.html index d52f6e1aa0..e636888510 100644 --- a/docs/docs/webdev/Components/Visuals/Maps/index.html +++ b/docs/docs/webdev/Components/Visuals/Maps/index.html @@ -5,13 +5,13 @@ Maps | EEA Design System - +

Maps

Static

There are five main design principles in map design.

  • legibility
  • visual contrast
  • figure-ground organization
  • hierarchical organization, and
  • balance

Together these principles form a system for seeing and understanding the relative importance of the content in the map and on the page.

What are the qualities of a good map?

  • clear idea of what the map is trying to demonstrate
  • easy to interpret legend or key
  • good use of symbols to demonstrate a clear point
  • good sources/metadata
  • clear features not overcrowded

Styles

  • do not use underlined text! This is difficult for low-vision users to read and indicates a possible hyperlink
  • italics should be used as little as possible, for water labels and short labels only
  • bolding of fonts is a good way to call out features, but avoid it for continuous, readable text
  • although ALL CAPS labels stand out, they are harder to read and should be used sparingly

Map Objects

  • avoid overlapping points or annotations, when possible. Try to place them offset from a line
  • there should be visible whitespace between symbols; touching symbols blend together for users with low vision
  • there should be a 2x size difference in levels of information

Colors

  • use a limited color palette. Limited color palette works the best for all UIs, and map UI is not an exception. It’s much easier to create visual harmony with a limited color palette. You should use between 10 to 12 colors for a full-body color palette, depending on the complexity of your map. Choose colors for individuals with visual impairments such as color-blindness (i.e. don’t use red-green color schemes)
  • try to use the same hue for similar features. For example, features related to transportation (bus stops, railway stations, etc.) should share the same hue. The same hue will help users to decode visual elements without reading text, and this will help you to create a more cohesive UI.
  • always consider accessibility. Many people have limited color vision, so you also need to take this into account when selecting colors to ensure that you have a proper contrast ratio

Text

  • choose fonts that have a variety of styles, such as bold, extra bold, italic, bold italic light, etc to differentiate between different kinds of features on your map
  • use one version of fonts for the map body and one for the explainer text outside the map

Interactive Maps

Interactive maps are high risk, high reward. Highly interactive maps can be too difficult for new users, yet they can also allow users to learn and explore at their own pace. It is always important to test designs on multiple people with varying degrees of technical expertise to see how they interact differently with the layout. Interactive map design should reflect what the cartographer is trying to convey (beauty vs. function) and never sacrifice visual hierarchy or great styling for interactivity.

Tips for designing effective interactive maps:

  • simplify the interface
  • panels should be the minimum possible size so they don’t clutter the space
  • don’t innovate to the point where users don’t know what to do
  • use panel opacity and margins to help them blend with your basemap and look cohesive
  • leave space for the maps to be used on mobile devices. This means avoiding permanent panels

Pop-ups and markers

  • keep pop-ups concise
  • only one pop-up on the screen at a time (generally)
  • cluster markers for better readability
  • use a legend when you have multiple types of markers
  • remove unnecessary padding and margins from popups
  • use a slight shadow to “lift” pop-ups off the map
- + \ No newline at end of file diff --git a/docs/docs/webdev/Guidelines/colours/index.html b/docs/docs/webdev/Guidelines/colours/index.html index 48580c0987..cd72ef60a3 100644 --- a/docs/docs/webdev/Guidelines/colours/index.html +++ b/docs/docs/webdev/Guidelines/colours/index.html @@ -5,14 +5,14 @@ Colours | EEA Design System - +

Colours

Communication is key

Although we value an aesthetically pleasing use of colour, clear communication is our focus. We use colours to support the purpose of the content, communicating things like hierarchy of information, interactive states, and the difference between distinct elements.

Accessibility

Accessibility is crucial and AA colour contrast must be achieved. It is up to the designer to ensure these standards are met but please refer to the accessibility guide for support. The colour system is designed to generate themes that meet WCAG 2.1 compliant contrast ratios. This makes things easier to find, identify, and interact with. It also makes the whole experience more accessible for visitors who are colour blind or who have low vision. However, you should never convey information using colour alone.

Legend:
AA: Compatible with WCAG AA requirements
AAA: Compatible with WCAG AAA requirements
AA L: Compatible with WCAG AA requirements only for Large text (WCAG defines large text as text that is 18pt and larger, or 14pt and larger if it is bold.)

You can find more on WCAG requirements here

Brand Colours

This colour should be eye-catching but not harsh. It can be liberally applied to your layout as its main identity. A primary colour is the colour displayed most frequently across your screens and components. Brand colours are extracted from the EEA logo in order to help users to easily identify the brand.

#007B6C
EEA GREEN
#004B7F
EEA BLUE

Shades

#C8FFF8
#A0E5DC
#78CAC0
#50B0A4
#289588
#007B6C
#005248

#A0D7FF
#47B3FF
#0A99FF
#0083E0
#006BB8
#004B7F
#003052

Supplementary colours

These colours highlight or complement the primary colours. These are to be used sparingly to make the UI elements stand out. These colours can be used together together or separately.

#3D5265
AAA
#F9F9F9
AAA
ΕΕΑ main background colour is white but the secondary colours can also be used as background to compliment text elements or components.

You can use #F9F9F9 as background with #3D5265 text (10.44:1 AAA) or, you can use #3D5265 background with #F9F9F9 text (10.44:1 AAA)

Shades

#DAE8F4
#ACCAE5
#87A7C3
#6989A5
#4C677F
#3D5265
#2E3E4C

#FFFFFF
#F9F9F9
#E6E7E8
#BCBEC0
#747678
#323232
#000000

Core colours

#3D5265
Text colour
#FFFFFF
Background colour
#007B6C
Highlight
(EEA Green)
#006BB8
Default
#004B7F
Hover
#753AAD
Visited
#003052
Active

Discrete colours

#3D5265
Usually used with a small text style
#323232
Used with a background

State colours

These are the colours that communicate purpose. They help users convey messages. For example, Green has a positive connotation. We use Green to convey success, confirmation messages, etc.

#B83230
ERROR
#FF9933
WARNING
#007B6C
SUCCESS
#004B7F
INFO









Thematic Platforms

info

All thematic platforms use EEA Supplementary colours, state colours, link colours and discrete colours.


Biodiversity

Brand Colours

This colour should be eye-catching but not harsh. It can be liberally applied to your layout as its main identity. A primary colour is the colour displayed most frequently across your screens and components. Brand colours are extracted from the Biodiversity logo in order to help users to easily identify the brand.

#289588
#FAC50D

Shades

#C8FFF8
#A0E5DC
#78CAC0
#50B0A4
#289588
#007B6C
#005248

#FEF6CD
#FBEC9B
#FAD936
#FAC50D
#FDAF20
#FF9933
#C35527

Core colours

#3D5265
Text colour
#FFFFFF
Background colour
#005248
Elements
#289588
Highlight










Forest Information System

Brand Colours

This colour should be eye-catching but not harsh. It can be liberally applied to your layout as its main identity. A primary colour is the colour displayed most frequently across your screens and components. Brand colours are extracted from the Forest information system logo in order to help users to easily identify the brand.

#007B6C
#005248

Shades

#C8FFF8
#A0E5DC
#78CAC0
#50B0A4
#289588
#007B6C
#005248

Core colours

#3D5265
Text colour
#FFFFFF
Background colour
#005248
Elements
#007B6C
Highlight










Wise Freshwater

Brand Colours

This colour should be eye-catching but not harsh. It can be liberally applied to your layout as its main identity. A primary colour is the colour displayed most frequently across your screens and components. Brand colours are extracted from the Wise Freshwater logo in order to help users to easily identify the brand.

#0083E0
#004B7F

Shades

#A0D7FF
#47B3FF
#0A99FF
#0083E0
#006BB8
#004B7F
#003052

Core colours

#3D5265
Text colour
#FFFFFF
Background colour
#0083E0
Elements
#004B7F
Highlight










Wise Marine

Brand Colours

This colour should be eye-catching but not harsh. It can be liberally applied to your layout as its main identity. A primary colour is the colour displayed most frequently across your screens and components. Brand colours are extracted from the Wise Marine logo in order to help users to easily identify the brand.

#004B7F
#0083E0

Shades

#A0D7FF
#47B3FF
#0A99FF
#0083E0
#006BB8
#004B7F
#003052

Core colours

#3D5265
Text colour
#FFFFFF
Background colour
#0083E0
Elements
#004B7F
Highlight









EEA complete colour palette

Not all colours have to be used - sometimes a simple colour scheme works best. Accessible text and background colour combinations are included and marked with their accesibility level.

#FFF6EC
brown-0
#FFEDD8
brown-1
#E7BC91
brown-2
#BC8A5F
brown-3
#8B5E34
brown-4
#603808
brown-5
#3D2201
brown-6

#EFEBF2
purple-0
#DFD6E7
purple-1
#BEADCE
purple-2
#9E84B6
purple-3
#753AAD
purple-4
#5C3285
purple-5
#3C096C
purple-6
#FBEEF8
red-0
#F6DDF0
red-1
#E7B2C0
red-2
#D78890
red-3
#C65B59
red-4
#B83230
red-5
#5C1918
red-6

#FEF6CD
yellow-0
#FBEC9B
yellow-1
#FAD936
yellow-2
#FAC50D
yellow-3
#FDAF20
yellow-4
#FF9933
yellow-5
#C35527
yellow-6
#C8FFF8
green-0
#A0E5DC
green-1
#78CAC0
green-2
#50B0A4
green-3
#289588
green-4
#007B6C
green-5
#005248
green-6

#A0D7FF
blue-0
#47B3FF
blue-1
#0A99FF
blue-2
#0083E0
blue-3
#006BB8
blue-4
#004B7F
blue-5
#003052
blue-6
#DAE8F4
blue-grey-0
#ACCAE5
blue-grey-1
#87A7C3
blue-grey-2
#6989A5
blue-grey-3
#4C677F
blue-grey-4
#3D5265
blue-grey-5
#2E3E4C
blue-grey-6

#FFFFFF
grey-0
#F9F9F9
grey-1
#E6E7E8
grey-2
#BCBEC0
grey-3
#747678
grey-4
#323232
grey-5
#000000
grey-6

Tools for creating colour palettes

You can use the following tools for creating colour wheels and additional shades for every main colour at each of EEA's network sites.

https://color.adobe.com/create/color-wheel

https://coolors.co/

Colours for maps

For optional creation of additional colour shades to use in maps and charts you can use the following tools.

https://colorbrewer2.org

https://carto.com/carto-colors/

- + \ No newline at end of file diff --git a/docs/docs/webdev/Guidelines/iconography/index.html b/docs/docs/webdev/Guidelines/iconography/index.html index 3487a0d007..1eebb043fc 100644 --- a/docs/docs/webdev/Guidelines/iconography/index.html +++ b/docs/docs/webdev/Guidelines/iconography/index.html @@ -5,14 +5,14 @@ Iconography | EEA Design System - +

Iconography

In our websites we use the Remix icon set

Remix Icon is a set of open-source neutral-style system symbols elaborately crafted for designers and developers. All of the icons are free for both personal and commercial use. (http://remixicon.com/)

We use icons to help our users understand the core idea of the content quickly or enhance the aesthetic appeal of the interface.

Consistency is key with icons, and all your icons should be the same size when you build them. Our grid is based on 8s, you'd want to build at 16, 24, or 32.

Choose a common size to build all your icons to, and then allow your engineers to scale to other sizes that might be needed by other designers. You don't want to build the same icon over and over at a multitude of sizes.

For product icons, use 1 color. Anything more than that and your components are going to become too complex and difficult for other designers to leverage. Anything with 3 or more colors is an illustration, not an icon.

Grids

The pixel grid is the fundamental grid that uses the smallest increment: a pixel. When building icons, you always want to align objects to the pixel grid, especially straight lines. But, you can build other shapes on the pixel grid. You want to build things on the pixel grid, not just because it will render more nicely, but because it makes your life easier. Spacing things evenly is much easier when you're using a grid. It helps you stay consistent with your placement, and overall will make your icons look better.

The optical grid helps us figure out where the center of mass of the icon is, as well as how large it is perceived by the human eye. Circles and curved objects take up less visual space than squares. It is best to put your icons in a fixed size container so that they’re all identical dimensions when exported. Adding this intrinsic padding supports the optical/perceptive weighting without additional effort in dev later.

In building the optical grid, you should give padding at the edge that’s equal to your stroke weight, or possibly double if using a 1px stroke.

Strokes and fills

Making sure our icons are all styled the same way is very important. We might have use cases for applying a fill to show something is selected, for instance, but you definitely want to create a set with one style, and possibly create the other variant.

Typically, filled icons have higher recognizability. Stroked icons give us great ability to create tiny details. When choosing which style is more appropriate, you should also consider your overall brand.

If you're going to create stroked icons, strokes all need to be the same weight. The space between strokes not be thinner than your stroke weight.

Don’ts

When possible, avoid type in icons. Icons are meant to be global. If you do need type (for instance, currency symbols), draw it yourself, rather than using a typeface.

Icon set

ri-home-line

ri-home-fill

ri-home-2-line

ri-home-2-fill

ri-home-3-line

ri-home-3-fill

ri-home-4-line

ri-home-4-fill

ri-home-5-line

ri-home-5-fill

ri-home-6-line

ri-home-6-fill

ri-home-7-line

ri-home-7-fill

ri-home-8-line

ri-home-8-fill

ri-home-gear-line

ri-home-gear-fill

ri-home-wifi-line

ri-home-wifi-fill

ri-home-smile-line

ri-home-smile-fill

ri-home-smile-2-line

ri-home-smile-2-fill

ri-home-heart-line

ri-home-heart-fill

ri-building-line

ri-building-fill

ri-building-2-line

ri-building-2-fill

ri-building-3-line

ri-building-3-fill

ri-building-4-line

ri-building-4-fill

ri-hotel-line

ri-hotel-fill

ri-community-line

ri-community-fill

ri-government-line

ri-government-fill

ri-bank-line

ri-bank-fill

ri-store-line

ri-store-fill

ri-store-2-line

ri-store-2-fill

ri-store-3-line

ri-store-3-fill

ri-hospital-line

ri-hospital-fill

ri-ancient-gate-line

ri-ancient-gate-fill

ri-ancient-pavilion-line

ri-ancient-pavilion-fill

Buildings

ri-mail-line

ri-mail-fill

ri-mail-open-line

ri-mail-open-fill

ri-mail-send-line

ri-mail-send-fill

ri-mail-unread-line

ri-mail-unread-fill

ri-mail-add-line

ri-mail-add-fill

ri-mail-check-line

ri-mail-check-fill

ri-mail-close-line

ri-mail-close-fill

ri-mail-download-line

ri-mail-download-fill

ri-mail-forbid-line

ri-mail-forbid-fill

ri-mail-lock-line

ri-mail-lock-fill

ri-mail-settings-line

ri-mail-settings-fill

ri-mail-star-line

ri-mail-star-fill

ri-mail-volume-line

ri-mail-volume-fill

ri-inbox-line

ri-inbox-fill

ri-inbox-archive-line

ri-inbox-archive-fill

ri-inbox-unarchive-line

ri-inbox-unarchive-fill

ri-cloud-line

ri-cloud-fill

ri-cloud-off-line

ri-cloud-off-fill

ri-attachment-line

ri-attachment-fill

ri-profile-line

ri-profile-fill

ri-archive-line

ri-archive-fill

ri-archive-drawer-line

ri-archive-drawer-fill

ri-at-line

ri-at-fill

ri-award-line

ri-award-fill

ri-medal-line

ri-medal-fill

ri-medal-2-line

ri-medal-2-fill

ri-bar-chart-line

ri-bar-chart-fill

ri-bar-chart-horizontal-line

ri-bar-chart-horizontal-fill

ri-bar-chart-2-line

ri-bar-chart-2-fill

ri-bar-chart-box-line

ri-bar-chart-box-fill

ri-bar-chart-grouped-line

ri-bar-chart-grouped-fill

ri-bubble-chart-line

ri-bubble-chart-fill

ri-pie-chart-line

ri-pie-chart-fill

ri-pie-chart-2-line

ri-pie-chart-2-fill

ri-pie-chart-box-line

ri-pie-chart-box-fill

ri-donut-chart-line

ri-donut-chart-fill

ri-line-chart-line

ri-line-chart-fill

ri-bookmark-line

ri-bookmark-fill

ri-bookmark-2-line

ri-bookmark-2-fill

ri-bookmark-3-line

ri-bookmark-3-fill

ri-briefcase-line

ri-briefcase-fill

ri-briefcase-2-line

ri-briefcase-2-fill

ri-briefcase-3-line

ri-briefcase-3-fill

ri-briefcase-4-line

ri-briefcase-4-fill

ri-briefcase-5-line

ri-briefcase-5-fill

ri-calculator-line

ri-calculator-fill

ri-calendar-line

ri-calendar-fill

ri-calendar-2-line

ri-calendar-2-fill

ri-calendar-event-line

ri-calendar-event-fill

ri-calendar-todo-line

ri-calendar-todo-fill

ri-calendar-check-line

ri-calendar-check-fill

ri-customer-service-line

ri-customer-service-fill

ri-customer-service-2-line

ri-customer-service-2-fill

ri-flag-line

ri-flag-fill

ri-flag-2-line

ri-flag-2-fill

ri-global-line

ri-global-fill

ri-honour-line

ri-honour-fill

ri-links-line

ri-links-fill

ri-printer-line

ri-printer-fill

ri-printer-cloud-line

ri-printer-cloud-fill

ri-record-mail-line

ri-record-mail-fill

ri-reply-line

ri-reply-fill

ri-reply-all-line

ri-reply-all-fill

ri-send-plane-line

ri-send-plane-fill

ri-send-plane-2-line

ri-send-plane-2-fill

ri-projector-line

ri-projector-fill

ri-projector-2-line

ri-projector-2-fill

ri-slideshow-line

ri-slideshow-fill

ri-slideshow-2-line

ri-slideshow-2-fill

ri-slideshow-3-line

ri-slideshow-3-fill

ri-slideshow-4-line

ri-slideshow-4-fill

ri-window-line

ri-window-fill

ri-window-2-line

ri-window-2-fill

ri-stack-line

ri-stack-fill

ri-service-line

ri-service-fill

ri-registered-line

ri-registered-fill

ri-trademark-line

ri-trademark-fill

ri-advertisement-line

ri-advertisement-fill

ri-copyleft-line

ri-copyleft-fill

ri-copyright-line

ri-copyright-fill

ri-creative-commons-line

ri-creative-commons-fill

ri-creative-commons-by-line

ri-creative-commons-by-fill

ri-creative-commons-nc-line

ri-creative-commons-nc-fill

ri-creative-commons-nd-line

ri-creative-commons-nd-fill

ri-creative-commons-sa-line

ri-creative-commons-sa-fill

ri-creative-commons-zero-line

ri-creative-commons-zero-fill

Business

ri-chat-1-line

ri-chat-1-fill

ri-chat-2-line

ri-chat-2-fill

ri-chat-3-line

ri-chat-3-fill

ri-chat-4-line

ri-chat-4-fill

ri-message-line

ri-message-fill

ri-message-2-line

ri-message-2-fill

ri-message-3-line

ri-message-3-fill

ri-chat-check-line

ri-chat-check-fill

ri-chat-delete-line

ri-chat-delete-fill

ri-chat-forward-line

ri-chat-forward-fill

ri-chat-upload-line

ri-chat-upload-fill

ri-chat-download-line

ri-chat-download-fill

ri-chat-new-line

ri-chat-new-fill

ri-chat-settings-line

ri-chat-settings-fill

ri-chat-smile-line

ri-chat-smile-fill

ri-chat-smile-2-line

ri-chat-smile-2-fill

ri-chat-smile-3-line

ri-chat-smile-3-fill

ri-chat-heart-line

ri-chat-heart-fill

ri-chat-off-line

ri-chat-off-fill

ri-feedback-line

ri-feedback-fill

ri-discuss-line

ri-discuss-fill

ri-question-answer-line

ri-question-answer-fill

ri-questionnaire-line

ri-questionnaire-fill

ri-video-chat-line

ri-video-chat-fill

ri-chat-voice-line

ri-chat-voice-fill

ri-chat-quote-line

ri-chat-quote-fill

ri-chat-follow-up-line

ri-chat-follow-up-fill

ri-chat-poll-line

ri-chat-poll-fill

ri-chat-history-line

ri-chat-history-fill

ri-chat-private-line

ri-chat-private-fill

Communication

ri-pencil-line

ri-pencil-fill

ri-edit-line

ri-edit-fill

ri-edit-2-line

ri-edit-2-fill

ri-ball-pen-line

ri-ball-pen-fill

ri-quill-pen-line

ri-quill-pen-fill

ri-pen-nib-line

ri-pen-nib-fill

ri-ink-bottle-line

ri-ink-bottle-fill

ri-mark-pen-line

ri-mark-pen-fill

ri-markup-line

ri-markup-fill

ri-edit-box-line

ri-edit-box-fill

ri-edit-circle-line

ri-edit-circle-fill

ri-sip-line

ri-sip-fill

ri-brush-line

ri-brush-fill

ri-brush-2-line

ri-brush-2-fill

ri-brush-3-line

ri-brush-3-fill

ri-brush-4-line

ri-brush-4-fill

ri-paint-brush-line

ri-paint-brush-fill

ri-contrast-line

ri-contrast-fill

ri-contrast-2-line

ri-contrast-2-fill

ri-drop-line

ri-drop-fill

ri-blur-off-line

ri-blur-off-fill

ri-contrast-drop-line

ri-contrast-drop-fill

ri-contrast-drop-2-line

ri-contrast-drop-2-fill

ri-compasses-line

ri-compasses-fill

ri-compasses-2-line

ri-compasses-2-fill

ri-scissors-line

ri-scissors-fill

ri-scissors-cut-line

ri-scissors-cut-fill

ri-scissors-2-line

ri-scissors-2-fill

ri-slice-line

ri-slice-fill

ri-eraser-line

ri-eraser-fill

ri-ruler-line

ri-ruler-fill

ri-ruler-2-line

ri-ruler-2-fill

ri-pencil-ruler-line

ri-pencil-ruler-fill

ri-pencil-ruler-2-line

ri-pencil-ruler-2-fill

ri-t-box-line

ri-t-box-fill

ri-input-method-line

ri-input-method-fill

ri-artboard-line

ri-artboard-fill

ri-artboard-2-line

ri-artboard-2-fill

ri-crop-line

ri-crop-fill

ri-crop-2-line

ri-crop-2-fill

ri-screenshot-line

ri-screenshot-fill

ri-screenshot-2-line

ri-screenshot-2-fill

ri-drag-move-line

ri-drag-move-fill

ri-drag-move-2-line

ri-drag-move-2-fill

ri-focus-line

ri-focus-fill

ri-focus-2-line

ri-focus-2-fill

ri-focus-3-line

ri-focus-3-fill

ri-paint-line

ri-paint-fill

ri-palette-line

ri-palette-fill

ri-pantone-line

ri-pantone-fill

ri-shape-line

ri-shape-fill

ri-shape-2-line

ri-shape-2-fill

ri-magic-line

ri-magic-fill

ri-anticlockwise-line

ri-anticlockwise-fill

ri-anticlockwise-2-line

ri-anticlockwise-2-fill

ri-clockwise-line

ri-clockwise-fill

ri-clockwise-2-line

ri-clockwise-2-fill

ri-hammer-line

ri-hammer-fill

ri-tools-line

ri-tools-fill

ri-drag-drop-line

ri-drag-drop-fill

ri-table-line

ri-table-fill

ri-table-alt-line

ri-table-alt-fill

ri-layout-line

ri-layout-fill

ri-layout-2-line

ri-layout-2-fill

ri-layout-3-line

ri-layout-3-fill

ri-layout-4-line

ri-layout-4-fill

ri-layout-5-line

ri-layout-5-fill

ri-layout-6-line

ri-layout-6-fill

ri-layout-column-line

ri-layout-column-fill

ri-layout-row-line

ri-layout-row-fill

ri-layout-top-line

ri-layout-top-fill

ri-layout-right-line

ri-layout-right-fill

ri-layout-bottom-line

ri-layout-bottom-fill

ri-layout-left-line

ri-layout-left-fill

ri-layout-top-2-line

ri-layout-top-2-fill

ri-layout-right-2-line

ri-layout-right-2-fill

ri-layout-bottom-2-line

ri-layout-bottom-2-fill

ri-layout-left-2-line

ri-layout-left-2-fill

ri-layout-grid-line

ri-layout-grid-fill

ri-layout-masonry-line

ri-layout-masonry-fill

ri-collage-line

ri-collage-fill

ri-grid-line

ri-grid-fill

Design

ri-bug-line

ri-bug-fill

ri-bug-2-line

ri-bug-2-fill

ri-code-line

ri-code-fill

ri-code-s-line

ri-code-s-fill

ri-code-s-slash-line

ri-code-s-slash-fill

ri-code-box-line

ri-code-box-fill

ri-terminal-box-line

ri-terminal-box-fill

ri-terminal-line

ri-terminal-fill

ri-terminal-window-line

ri-terminal-window-fill

ri-parentheses-line

ri-parentheses-fill

ri-brackets-line

ri-brackets-fill

ri-braces-line

ri-braces-fill

ri-command-line

ri-command-fill

ri-cursor-line

ri-cursor-fill

ri-git-commit-line

ri-git-commit-fill

ri-git-pull-request-line

ri-git-pull-request-fill

ri-git-merge-line

ri-git-merge-fill

ri-git-branch-line

ri-git-branch-fill

ri-git-repository-line

ri-git-repository-fill

ri-git-repository-commits-line

ri-git-repository-commits-fill

ri-git-repository-private-line

ri-git-repository-private-fill

ri-html5-line

ri-html5-fill

ri-css3-line

ri-css3-fill

Development

ri-tv-line

ri-tv-fill

ri-tv-2-line

ri-tv-2-fill

ri-computer-line

ri-computer-fill

ri-mac-line

ri-mac-fill

ri-macbook-line

ri-macbook-fill

ri-cellphone-line

ri-cellphone-fill

ri-smartphone-line

ri-smartphone-fill

ri-tablet-line

ri-tablet-fill

ri-device-line

ri-device-fill

ri-phone-line

ri-phone-fill

ri-database-line

ri-database-fill

ri-database-2-line

ri-database-2-fill

ri-server-line

ri-server-fill

ri-hard-drive-line

ri-hard-drive-fill

ri-hard-drive-2-line

ri-hard-drive-2-fill

ri-install-line

ri-install-fill

ri-uninstall-line

ri-uninstall-fill

ri-save-line

ri-save-fill

ri-save-2-line

ri-save-2-fill

ri-save-3-line

ri-save-3-fill

ri-sd-card-line

ri-sd-card-fill

ri-sd-card-mini-line

ri-sd-card-mini-fill

ri-sim-card-line

ri-sim-card-fill

ri-sim-card-2-line

ri-sim-card-2-fill

ri-dual-sim-1-line

ri-dual-sim-1-fill

ri-dual-sim-2-line

ri-dual-sim-2-fill

ri-u-disk-line

ri-u-disk-fill

ri-battery-line

ri-battery-fill

ri-battery-charge-line

ri-battery-charge-fill

ri-battery-low-line

ri-battery-low-fill

ri-battery-2-line

ri-battery-2-fill

ri-battery-2-charge-line

ri-battery-2-charge-fill

ri-battery-saver-line

ri-battery-saver-fill

ri-battery-share-line

ri-battery-share-fill

ri-cast-line

ri-cast-fill

ri-airplay-line

ri-airplay-fill

ri-cpu-line

ri-cpu-fill

ri-gradienter-line

ri-gradienter-fill

ri-keyboard-line

ri-keyboard-fill

ri-keyboard-box-line

ri-keyboard-box-fill

ri-mouse-line

ri-mouse-fill

ri-sensor-line

ri-sensor-fill

ri-router-line

ri-router-fill

ri-radar-line

ri-radar-fill

ri-gamepad-line

ri-gamepad-fill

ri-remote-control-line

ri-remote-control-fill

ri-remote-control-2-line

ri-remote-control-2-fill

ri-device-recover-line

ri-device-recover-fill

ri-hotspot-line

ri-hotspot-fill

ri-phone-find-line

ri-phone-find-fill

ri-phone-lock-line

ri-phone-lock-fill

ri-rotate-lock-line

ri-rotate-lock-fill

ri-restart-line

ri-restart-fill

ri-shut-down-line

ri-shut-down-fill

ri-fingerprint-line

ri-fingerprint-fill

ri-fingerprint-2-line

ri-fingerprint-2-fill

ri-barcode-line

ri-barcode-fill

ri-barcode-box-line

ri-barcode-box-fill

ri-qr-code-line

ri-qr-code-fill

ri-qr-scan-line

ri-qr-scan-fill

ri-qr-scan-2-line

ri-qr-scan-2-fill

ri-scan-line

ri-scan-fill

ri-scan-2-line

ri-scan-2-fill

ri-rss-line

ri-rss-fill

ri-gps-line

ri-gps-fill

ri-base-station-line

ri-base-station-fill

ri-bluetooth-line

ri-bluetooth-fill

ri-bluetooth-connect-line

ri-bluetooth-connect-fill

ri-wifi-line

ri-wifi-fill

ri-wifi-off-line

ri-wifi-off-fill

ri-signal-wifi-line

ri-signal-wifi-fill

ri-signal-wifi-1-line

ri-signal-wifi-1-fill

ri-signal-wifi-2-line

ri-signal-wifi-2-fill

ri-signal-wifi-3-line

ri-signal-wifi-3-fill

ri-signal-wifi-error-line

ri-signal-wifi-error-fill

ri-signal-wifi-off-line

ri-signal-wifi-off-fill

ri-wireless-charging-line

ri-wireless-charging-fill

ri-dashboard-2-line

ri-dashboard-2-fill

ri-dashboard-3-line

ri-dashboard-3-fill

ri-usb-line

ri-usb-fill

Device

ri-file-line

ri-file-fill

ri-file-2-line

ri-file-2-fill

ri-file-3-line

ri-file-3-fill

ri-file-4-line

ri-file-4-fill

ri-sticky-note-line

ri-sticky-note-fill

ri-sticky-note-2-line

ri-sticky-note-2-fill

ri-file-edit-line

ri-file-edit-fill

ri-draft-line

ri-draft-fill

ri-file-paper-line

ri-file-paper-fill

ri-file-paper-2-line

ri-file-paper-2-fill

ri-file-text-line

ri-file-text-fill

ri-file-list-line

ri-file-list-fill

ri-file-list-2-line

ri-file-list-2-fill

ri-file-list-3-line

ri-file-list-3-fill

ri-bill-line

ri-bill-fill

ri-file-copy-line

ri-file-copy-fill

ri-file-copy-2-line

ri-file-copy-2-fill

ri-clipboard-line

ri-clipboard-fill

ri-survey-line

ri-survey-fill

ri-article-line

ri-article-fill

ri-newspaper-line

ri-newspaper-fill

ri-file-zip-line

ri-file-zip-fill

ri-file-mark-line

ri-file-mark-fill

ri-task-line

ri-task-fill

ri-todo-line

ri-todo-fill

ri-book-line

ri-book-fill

ri-book-mark-line

ri-book-mark-fill

ri-book-2-line

ri-book-2-fill

ri-book-3-line

ri-book-3-fill

ri-book-open-line

ri-book-open-fill

ri-book-read-line

ri-book-read-fill

ri-contacts-book-line

ri-contacts-book-fill

ri-contacts-book-2-line

ri-contacts-book-2-fill

ri-contacts-book-upload-line

ri-contacts-book-upload-fill

ri-booklet-line

ri-booklet-fill

ri-file-code-line

ri-file-code-fill

ri-file-pdf-line

ri-file-pdf-fill

ri-file-word-line

ri-file-word-fill

ri-file-ppt-line

ri-file-ppt-fill

ri-file-excel-line

ri-file-excel-fill

ri-file-word-2-line

ri-file-word-2-fill

ri-file-ppt-2-line

ri-file-ppt-2-fill

ri-file-excel-2-line

ri-file-excel-2-fill

ri-file-hwp-line

ri-file-hwp-fill

ri-keynote-line

ri-keynote-fill

ri-numbers-line

ri-numbers-fill

ri-pages-line

ri-pages-fill

ri-file-search-line

ri-file-search-fill

ri-file-add-line

ri-file-add-fill

ri-file-reduce-line

ri-file-reduce-fill

ri-file-settings-line

ri-file-settings-fill

ri-file-upload-line

ri-file-upload-fill

ri-file-transfer-line

ri-file-transfer-fill

ri-file-download-line

ri-file-download-fill

ri-file-lock-line

ri-file-lock-fill

ri-file-chart-line

ri-file-chart-fill

ri-file-chart-2-line

ri-file-chart-2-fill

ri-file-music-line

ri-file-music-fill

ri-file-gif-line

ri-file-gif-fill

ri-file-forbid-line

ri-file-forbid-fill

ri-file-info-line

ri-file-info-fill

ri-file-warning-line

ri-file-warning-fill

ri-file-unknow-line

ri-file-unknow-fill

ri-file-user-line

ri-file-user-fill

ri-file-shield-line

ri-file-shield-fill

ri-file-shield-2-line

ri-file-shield-2-fill

ri-file-damage-line

ri-file-damage-fill

ri-file-history-line

ri-file-history-fill

ri-file-shred-line

ri-file-shred-fill

ri-file-cloud-line

ri-file-cloud-fill

ri-folder-line

ri-folder-fill

ri-folder-2-line

ri-folder-2-fill

ri-folder-3-line

ri-folder-3-fill

ri-folder-4-line

ri-folder-4-fill

ri-folder-5-line

ri-folder-5-fill

ri-folders-line

ri-folders-fill

ri-folder-add-line

ri-folder-add-fill

ri-folder-reduce-line

ri-folder-reduce-fill

ri-folder-settings-line

ri-folder-settings-fill

ri-folder-upload-line

ri-folder-upload-fill

ri-folder-transfer-line

ri-folder-transfer-fill

ri-folder-download-line

ri-folder-download-fill

ri-folder-lock-line

ri-folder-lock-fill

ri-folder-chart-line

ri-folder-chart-fill

ri-folder-chart-2-line

ri-folder-chart-2-fill

ri-folder-music-line

ri-folder-music-fill

ri-folder-forbid-line

ri-folder-forbid-fill

ri-folder-info-line

ri-folder-info-fill

ri-folder-warning-line

ri-folder-warning-fill

ri-folder-unknow-line

ri-folder-unknow-fill

ri-folder-user-line

ri-folder-user-fill

ri-folder-shield-line

ri-folder-shield-fill

ri-folder-shield-2-line

ri-folder-shield-2-fill

ri-folder-shared-line

ri-folder-shared-fill

ri-folder-received-line

ri-folder-received-fill

ri-folder-open-line

ri-folder-open-fill

ri-folder-keyhole-line

ri-folder-keyhole-fill

ri-folder-zip-line

ri-folder-zip-fill

ri-folder-history-line

ri-folder-history-fill

ri-markdown-line

ri-markdown-fill

Document

ri-bold

ri-italic

ri-heading

ri-text

ri-font-color

ri-font-size

ri-font-size-2

ri-underline

ri-emphasis

ri-emphasis-cn

ri-strikethrough

ri-strikethrough-2

ri-format-clear

ri-align-left

ri-align-center

ri-align-right

ri-align-justify

ri-align-top

ri-align-vertically

ri-align-bottom

ri-list-check

ri-list-check-2

ri-list-ordered

ri-list-unordered

ri-indent-decrease

ri-indent-increase

ri-line-height

ri-text-spacing

ri-text-wrap

ri-attachment-2

ri-link

ri-link-unlink

ri-link-m

ri-link-unlink-m

ri-separator

ri-space

ri-page-separator

ri-code-view

ri-double-quotes-l

ri-double-quotes-r

ri-single-quotes-l

ri-single-quotes-r

ri-table-2

ri-subscript

ri-subscript-2

ri-superscript

ri-superscript-2

ri-paragraph

ri-text-direction-l

ri-text-direction-r

ri-functions

ri-omega

ri-hashtag

ri-asterisk

ri-question-mark

ri-translate

ri-translate-2

ri-a-b

ri-english-input

ri-pinyin-input

ri-wubi-input

ri-input-cursor-move

ri-number-1

ri-number-2

ri-number-3

ri-number-4

ri-number-5

ri-number-6

ri-number-7

ri-number-8

ri-number-9

ri-number-0

ri-sort-asc

ri-sort-desc

ri-bring-forward

ri-send-backward

ri-bring-to-front

ri-send-to-back

ri-h-1

ri-h-2

ri-h-3

ri-h-4

ri-h-5

ri-h-6

ri-insert-column-left

ri-insert-column-right

ri-insert-row-top

ri-insert-row-bottom

ri-delete-column

ri-delete-row

ri-merge-cells-horizontal

ri-merge-cells-vertical

ri-split-cells-horizontal

ri-split-cells-vertical

ri-flow-chart

ri-mind-map

ri-node-tree

ri-organization-chart

ri-rounded-corner

Editor

ri-wallet-line

ri-wallet-fill

ri-wallet-2-line

ri-wallet-2-fill

ri-wallet-3-line

ri-wallet-3-fill

ri-bank-card-line

ri-bank-card-fill

ri-bank-card-2-line

ri-bank-card-2-fill

ri-secure-payment-line

ri-secure-payment-fill

ri-refund-line

ri-refund-fill

ri-refund-2-line

ri-refund-2-fill

ri-safe-line

ri-safe-fill

ri-safe-2-line

ri-safe-2-fill

ri-price-tag-line

ri-price-tag-fill

ri-price-tag-2-line

ri-price-tag-2-fill

ri-price-tag-3-line

ri-price-tag-3-fill

ri-ticket-line

ri-ticket-fill

ri-ticket-2-line

ri-ticket-2-fill

ri-coupon-line

ri-coupon-fill

ri-coupon-2-line

ri-coupon-2-fill

ri-coupon-3-line

ri-coupon-3-fill

ri-coupon-4-line

ri-coupon-4-fill

ri-coupon-5-line

ri-coupon-5-fill

ri-shopping-bag-line

ri-shopping-bag-fill

ri-shopping-bag-2-line

ri-shopping-bag-2-fill

ri-shopping-bag-3-line

ri-shopping-bag-3-fill

ri-shopping-basket-line

ri-shopping-basket-fill

ri-shopping-basket-2-line

ri-shopping-basket-2-fill

ri-shopping-cart-line

ri-shopping-cart-fill

ri-shopping-cart-2-line

ri-shopping-cart-2-fill

ri-vip-line

ri-vip-fill

ri-vip-crown-line

ri-vip-crown-fill

ri-vip-crown-2-line

ri-vip-crown-2-fill

ri-vip-diamond-line

ri-vip-diamond-fill

ri-trophy-line

ri-trophy-fill

ri-exchange-line

ri-exchange-fill

ri-exchange-box-line

ri-exchange-box-fill

ri-swap-line

ri-swap-fill

ri-swap-box-line

ri-swap-box-fill

ri-exchange-dollar-line

ri-exchange-dollar-fill

ri-exchange-cny-line

ri-exchange-cny-fill

ri-exchange-funds-line

ri-exchange-funds-fill

ri-increase-decrease-line

ri-increase-decrease-fill

ri-percent-line

ri-percent-fill

ri-copper-coin-line

ri-copper-coin-fill

ri-copper-diamond-line

ri-copper-diamond-fill

ri-money-cny-box-line

ri-money-cny-box-fill

ri-money-cny-circle-line

ri-money-cny-circle-fill

ri-money-dollar-box-line

ri-money-dollar-box-fill

ri-money-dollar-circle-line

ri-money-dollar-circle-fill

ri-money-euro-box-line

ri-money-euro-box-fill

ri-money-euro-circle-line

ri-money-euro-circle-fill

ri-money-pound-box-line

ri-money-pound-box-fill

ri-money-pound-circle-line

ri-money-pound-circle-fill

ri-bit-coin-line

ri-bit-coin-fill

ri-coin-line

ri-coin-fill

ri-coins-line

ri-coins-fill

ri-currency-line

ri-currency-fill

ri-funds-line

ri-funds-fill

ri-funds-box-line

ri-funds-box-fill

ri-red-packet-line

ri-red-packet-fill

ri-water-flash-line

ri-water-flash-fill

ri-stock-line

ri-stock-fill

ri-auction-line

ri-auction-fill

ri-gift-line

ri-gift-fill

ri-gift-2-line

ri-gift-2-fill

ri-hand-coin-line

ri-hand-coin-fill

ri-hand-heart-line

ri-hand-heart-fill

ri-24-hours-line

ri-24-hours-fill

Finance

ri-heart-line

ri-heart-fill

ri-heart-2-line

ri-heart-2-fill

ri-heart-3-line

ri-heart-3-fill

ri-heart-add-line

ri-heart-add-fill

ri-dislike-line

ri-dislike-fill

ri-hearts-line

ri-hearts-fill

ri-heart-pulse-line

ri-heart-pulse-fill

ri-pulse-line

ri-pulse-fill

ri-empathize-line

ri-empathize-fill

ri-nurse-line

ri-nurse-fill

ri-dossier-line

ri-dossier-fill

ri-health-book-line

ri-health-book-fill

ri-first-aid-kit-line

ri-first-aid-kit-fill

ri-capsule-line

ri-capsule-fill

ri-medicine-bottle-line

ri-medicine-bottle-fill

ri-flask-line

ri-flask-fill

ri-test-tube-line

ri-test-tube-fill

ri-microscope-line

ri-microscope-fill

ri-hand-sanitizer-line

ri-hand-sanitizer-fill

ri-mental-health-line

ri-mental-health-fill

ri-psychotherapy-line

ri-psychotherapy-fill

ri-stethoscope-line

ri-stethoscope-fill

ri-syringe-line

ri-syringe-fill

ri-thermometer-line

ri-thermometer-fill

ri-infrared-thermometer-line

ri-infrared-thermometer-fill

ri-surgical-mask-line

ri-surgical-mask-fill

ri-virus-line

ri-virus-fill

ri-lungs-line

ri-lungs-fill

ri-rest-time-line

ri-rest-time-fill

ri-zzz-line

ri-zzz-fill

Health & Medical

ri-alipay-line

ri-alipay-fill

ri-amazon-line

ri-amazon-fill

ri-android-line

ri-android-fill

ri-angularjs-line

ri-angularjs-fill

ri-app-store-line

ri-app-store-fill

ri-apple-line

ri-apple-fill

ri-baidu-line

ri-baidu-fill

ri-behance-line

ri-behance-fill

ri-bilibili-line

ri-bilibili-fill

ri-centos-line

ri-centos-fill

ri-chrome-line

ri-chrome-fill

ri-codepen-line

ri-codepen-fill

ri-coreos-line

ri-coreos-fill

ri-dingding-line

ri-dingding-fill

ri-discord-line

ri-discord-fill

ri-disqus-line

ri-disqus-fill

ri-douban-line

ri-douban-fill

ri-dribbble-line

ri-dribbble-fill

ri-drive-line

ri-drive-fill

ri-dropbox-line

ri-dropbox-fill

ri-edge-line

ri-edge-fill

ri-evernote-line

ri-evernote-fill

ri-facebook-line

ri-facebook-fill

ri-facebook-circle-line

ri-facebook-circle-fill

ri-facebook-box-line

ri-facebook-box-fill

ri-finder-line

ri-finder-fill

ri-firefox-line

ri-firefox-fill

ri-flutter-line

ri-flutter-fill

ri-gatsby-line

ri-gatsby-fill

ri-github-line

ri-github-fill

ri-gitlab-line

ri-gitlab-fill

ri-google-line

ri-google-fill

ri-google-play-line

ri-google-play-fill

ri-honor-of-kings-line

ri-honor-of-kings-fill

ri-ie-line

ri-ie-fill

ri-instagram-line

ri-instagram-fill

ri-invision-line

ri-invision-fill

ri-kakao-talk-line

ri-kakao-talk-fill

ri-line-line

ri-line-fill

ri-linkedin-line

ri-linkedin-fill

ri-linkedin-box-line

ri-linkedin-box-fill

ri-mastercard-line

ri-mastercard-fill

ri-mastodon-line

ri-mastodon-fill

ri-medium-line

ri-medium-fill

ri-messenger-line

ri-messenger-fill

ri-microsoft-line

ri-microsoft-fill

ri-mini-program-line

ri-mini-program-fill

ri-netease-cloud-music-line

ri-netease-cloud-music-fill

ri-netflix-line

ri-netflix-fill

ri-npmjs-line

ri-npmjs-fill

ri-open-source-line

ri-open-source-fill

ri-opera-line

ri-opera-fill

ri-patreon-line

ri-patreon-fill

ri-paypal-line

ri-paypal-fill

ri-pinterest-line

ri-pinterest-fill

ri-pixelfed-line

ri-pixelfed-fill

ri-playstation-line

ri-playstation-fill

ri-product-hunt-line

ri-product-hunt-fill

ri-qq-line

ri-qq-fill

ri-reactjs-line

ri-reactjs-fill

ri-reddit-line

ri-reddit-fill

ri-remixicon-line

ri-remixicon-fill

ri-safari-line

ri-safari-fill

ri-skype-line

ri-skype-fill

ri-slack-line

ri-slack-fill

ri-snapchat-line

ri-snapchat-fill

ri-soundcloud-line

ri-soundcloud-fill

ri-spectrum-line

ri-spectrum-fill

ri-spotify-line

ri-spotify-fill

ri-stack-overflow-line

ri-stack-overflow-fill

ri-stackshare-line

ri-stackshare-fill

ri-steam-line

ri-steam-fill

ri-switch-line

ri-switch-fill

ri-taobao-line

ri-taobao-fill

ri-telegram-line

ri-telegram-fill

ri-trello-line

ri-trello-fill

ri-tumblr-line

ri-tumblr-fill

ri-twitch-line

ri-twitch-fill

ri-twitter-line

ri-twitter-fill

ri-ubuntu-line

ri-ubuntu-fill

ri-unsplash-line

ri-unsplash-fill

ri-vimeo-line

ri-vimeo-fill

ri-visa-line

ri-visa-fill

ri-vuejs-line

ri-vuejs-fill

ri-wechat-line

ri-wechat-fill

ri-wechat-2-line

ri-wechat-2-fill

ri-wechat-pay-line

ri-wechat-pay-fill

ri-weibo-line

ri-weibo-fill

ri-whatsapp-line

ri-whatsapp-fill

ri-windows-line

ri-windows-fill

ri-xbox-line

ri-xbox-fill

ri-xing-line

ri-xing-fill

ri-youtube-line

ri-youtube-fill

ri-zcool-line

ri-zcool-fill

ri-zhihu-line

ri-zhihu-fill

Logos

ri-map-pin-line

ri-map-pin-fill

ri-map-pin-2-line

ri-map-pin-2-fill

ri-map-pin-3-line

ri-map-pin-3-fill

ri-map-pin-4-line

ri-map-pin-4-fill

ri-map-pin-5-line

ri-map-pin-5-fill

ri-map-pin-add-line

ri-map-pin-add-fill

ri-map-pin-range-line

ri-map-pin-range-fill

ri-map-pin-time-line

ri-map-pin-time-fill

ri-map-pin-user-line

ri-map-pin-user-fill

ri-pin-distance-line

ri-pin-distance-fill

ri-pushpin-line

ri-pushpin-fill

ri-pushpin-2-line

ri-pushpin-2-fill

ri-compass-line

ri-compass-fill

ri-compass-2-line

ri-compass-2-fill

ri-compass-3-line

ri-compass-3-fill

ri-compass-4-line

ri-compass-4-fill

ri-compass-discover-line

ri-compass-discover-fill

ri-anchor-line

ri-anchor-fill

ri-china-railway-line

ri-china-railway-fill

ri-space-ship-line

ri-space-ship-fill

ri-rocket-line

ri-rocket-fill

ri-rocket-2-line

ri-rocket-2-fill

ri-map-line

ri-map-fill

ri-map-2-line

ri-map-2-fill

ri-treasure-map-line

ri-treasure-map-fill

ri-road-map-line

ri-road-map-fill

ri-earth-line

ri-earth-fill

ri-globe-line

ri-globe-fill

ri-parking-line

ri-parking-fill

ri-parking-box-line

ri-parking-box-fill

ri-route-line

ri-route-fill

ri-guide-line

ri-guide-fill

ri-gas-station-line

ri-gas-station-fill

ri-charging-pile-line

ri-charging-pile-fill

ri-charging-pile-2-line

ri-charging-pile-2-fill

ri-car-line

ri-car-fill

ri-car-washing-line

ri-car-washing-fill

ri-roadster-line

ri-roadster-fill

ri-taxi-line

ri-taxi-fill

ri-taxi-wifi-line

ri-taxi-wifi-fill

ri-police-car-line

ri-police-car-fill

ri-bus-line

ri-bus-fill

ri-bus-2-line

ri-bus-2-fill

ri-bus-wifi-line

ri-bus-wifi-fill

ri-truck-line

ri-truck-fill

ri-train-line

ri-train-fill

ri-train-wifi-line

ri-train-wifi-fill

ri-subway-line

ri-subway-fill

ri-subway-wifi-line

ri-subway-wifi-fill

ri-flight-takeoff-line

ri-flight-takeoff-fill

ri-flight-land-line

ri-flight-land-fill

ri-plane-line

ri-plane-fill

ri-sailboat-line

ri-sailboat-fill

ri-ship-line

ri-ship-fill

ri-ship-2-line

ri-ship-2-fill

ri-bike-line

ri-bike-fill

ri-e-bike-line

ri-e-bike-fill

ri-e-bike-2-line

ri-e-bike-2-fill

ri-takeaway-line

ri-takeaway-fill

ri-motorbike-line

ri-motorbike-fill

ri-caravan-line

ri-caravan-fill

ri-walk-line

ri-walk-fill

ri-run-line

ri-run-fill

ri-riding-line

ri-riding-fill

ri-barricade-line

ri-barricade-fill

ri-footprint-line

ri-footprint-fill

ri-traffic-light-line

ri-traffic-light-fill

ri-signal-tower-line

ri-signal-tower-fill

ri-restaurant-line

ri-restaurant-fill

ri-restaurant-2-line

ri-restaurant-2-fill

ri-cup-line

ri-cup-fill

ri-goblet-line

ri-goblet-fill

ri-hotel-bed-line

ri-hotel-bed-fill

ri-navigation-line

ri-navigation-fill

ri-oil-line

ri-oil-fill

ri-direction-line

ri-direction-fill

ri-steering-line

ri-steering-fill

ri-steering-2-line

ri-steering-2-fill

ri-lifebuoy-line

ri-lifebuoy-fill

ri-passport-line

ri-passport-fill

ri-suitcase-line

ri-suitcase-fill

ri-suitcase-2-line

ri-suitcase-2-fill

ri-suitcase-3-line

ri-suitcase-3-fill

ri-luggage-deposit-line

ri-luggage-deposit-fill

ri-luggage-cart-line

ri-luggage-cart-fill

Map

ri-image-line

ri-image-fill

ri-image-2-line

ri-image-2-fill

ri-image-add-line

ri-image-add-fill

ri-image-edit-line

ri-image-edit-fill

ri-landscape-line

ri-landscape-fill

ri-gallery-line

ri-gallery-fill

ri-gallery-upload-line

ri-gallery-upload-fill

ri-video-line

ri-video-fill

ri-movie-line

ri-movie-fill

ri-movie-2-line

ri-movie-2-fill

ri-film-line

ri-film-fill

ri-clapperboard-line

ri-clapperboard-fill

ri-vidicon-line

ri-vidicon-fill

ri-vidicon-2-line

ri-vidicon-2-fill

ri-live-line

ri-live-fill

ri-video-add-line

ri-video-add-fill

ri-video-upload-line

ri-video-upload-fill

ri-video-download-line

ri-video-download-fill

ri-dv-line

ri-dv-fill

ri-camera-line

ri-camera-fill

ri-camera-off-line

ri-camera-off-fill

ri-camera-2-line

ri-camera-2-fill

ri-camera-3-line

ri-camera-3-fill

ri-camera-lens-line

ri-camera-lens-fill

ri-camera-switch-line

ri-camera-switch-fill

ri-polaroid-line

ri-polaroid-fill

ri-polaroid-2-line

ri-polaroid-2-fill

ri-phone-camera-line

ri-phone-camera-fill

ri-webcam-line

ri-webcam-fill

ri-mv-line

ri-mv-fill

ri-music-line

ri-music-fill

ri-music-2-line

ri-music-2-fill

ri-disc-line

ri-disc-fill

ri-album-line

ri-album-fill

ri-dvd-line

ri-dvd-fill

ri-headphone-line

ri-headphone-fill

ri-radio-line

ri-radio-fill

ri-radio-2-line

ri-radio-2-fill

ri-tape-line

ri-tape-fill

ri-mic-line

ri-mic-fill

ri-mic-2-line

ri-mic-2-fill

ri-mic-off-line

ri-mic-off-fill

ri-volume-down-line

ri-volume-down-fill

ri-volume-mute-line

ri-volume-mute-fill

ri-volume-up-line

ri-volume-up-fill

ri-volume-vibrate-line

ri-volume-vibrate-fill

ri-volume-off-vibrate-line

ri-volume-off-vibrate-fill

ri-speaker-line

ri-speaker-fill

ri-speaker-2-line

ri-speaker-2-fill

ri-speaker-3-line

ri-speaker-3-fill

ri-surround-sound-line

ri-surround-sound-fill

ri-broadcast-line

ri-broadcast-fill

ri-notification-line

ri-notification-fill

ri-notification-2-line

ri-notification-2-fill

ri-notification-3-line

ri-notification-3-fill

ri-notification-4-line

ri-notification-4-fill

ri-notification-off-line

ri-notification-off-fill

ri-play-circle-line

ri-play-circle-fill

ri-pause-circle-line

ri-pause-circle-fill

ri-record-circle-line

ri-record-circle-fill

ri-stop-circle-line

ri-stop-circle-fill

ri-eject-line

ri-eject-fill

ri-play-line

ri-play-fill

ri-pause-line

ri-pause-fill

ri-stop-line

ri-stop-fill

ri-rewind-line

ri-rewind-fill

ri-speed-line

ri-speed-fill

ri-skip-back-line

ri-skip-back-fill

ri-skip-forward-line

ri-skip-forward-fill

ri-play-mini-line

ri-play-mini-fill

ri-pause-mini-line

ri-pause-mini-fill

ri-stop-mini-line

ri-stop-mini-fill

ri-rewind-mini-line

ri-rewind-mini-fill

ri-speed-mini-line

ri-speed-mini-fill

ri-skip-back-mini-line

ri-skip-back-mini-fill

ri-skip-forward-mini-line

ri-skip-forward-mini-fill

ri-repeat-line

ri-repeat-fill

ri-repeat-2-line

ri-repeat-2-fill

ri-repeat-one-line

ri-repeat-one-fill

ri-order-play-line

ri-order-play-fill

ri-shuffle-line

ri-shuffle-fill

ri-play-list-line

ri-play-list-fill

ri-play-list-2-line

ri-play-list-2-fill

ri-play-list-add-line

ri-play-list-add-fill

ri-fullscreen-line

ri-fullscreen-fill

ri-fullscreen-exit-line

ri-fullscreen-exit-fill

ri-equalizer-line

ri-equalizer-fill

ri-sound-module-line

ri-sound-module-fill

ri-rhythm-line

ri-rhythm-fill

ri-voiceprint-line

ri-voiceprint-fill

ri-hq-line

ri-hq-fill

ri-hd-line

ri-hd-fill

ri-4k-line

ri-4k-fill

ri-closed-captioning-line

ri-closed-captioning-fill

ri-aspect-ratio-line

ri-aspect-ratio-fill

ri-picture-in-picture-line

ri-picture-in-picture-fill

ri-picture-in-picture-2-line

ri-picture-in-picture-2-fill

ri-picture-in-picture-exit-line

ri-picture-in-picture-exit-fill

Media

ri-apps-line

ri-apps-fill

ri-apps-2-line

ri-apps-2-fill

ri-function-line

ri-function-fill

ri-dashboard-line

ri-dashboard-fill

ri-menu-line

ri-menu-fill

ri-menu-2-line

ri-menu-2-fill

ri-menu-3-line

ri-menu-3-fill

ri-menu-4-line

ri-menu-4-fill

ri-menu-5-line

ri-menu-5-fill

ri-menu-add-line

ri-menu-add-fill

ri-menu-fold-line

ri-menu-fold-fill

ri-menu-unfold-line

ri-menu-unfold-fill

ri-more-line

ri-more-fill

ri-more-2-line

ri-more-2-fill

ri-star-line

ri-star-fill

ri-star-s-line

ri-star-s-fill

ri-star-half-line

ri-star-half-fill

ri-star-half-s-line

ri-star-half-s-fill

ri-settings-line

ri-settings-fill

ri-settings-2-line

ri-settings-2-fill

ri-settings-3-line

ri-settings-3-fill

ri-settings-4-line

ri-settings-4-fill

ri-settings-5-line

ri-settings-5-fill

ri-settings-6-line

ri-settings-6-fill

ri-list-settings-line

ri-list-settings-fill

ri-forbid-line

ri-forbid-fill

ri-forbid-2-line

ri-forbid-2-fill

ri-information-line

ri-information-fill

ri-error-warning-line

ri-error-warning-fill

ri-question-line

ri-question-fill

ri-alert-line

ri-alert-fill

ri-spam-line

ri-spam-fill

ri-spam-2-line

ri-spam-2-fill

ri-spam-3-line

ri-spam-3-fill

ri-checkbox-blank-line

ri-checkbox-blank-fill

ri-checkbox-line

ri-checkbox-fill

ri-checkbox-indeterminate-line

ri-checkbox-indeterminate-fill

ri-add-box-line

ri-add-box-fill

ri-checkbox-blank-circle-line

ri-checkbox-blank-circle-fill

ri-checkbox-circle-line

ri-checkbox-circle-fill

ri-indeterminate-circle-line

ri-indeterminate-circle-fill

ri-add-circle-line

ri-add-circle-fill

ri-close-circle-line

ri-close-circle-fill

ri-radio-button-line

ri-radio-button-fill

ri-checkbox-multiple-blank-line

ri-checkbox-multiple-blank-fill

ri-checkbox-multiple-line

ri-checkbox-multiple-fill

ri-check-line

ri-check-fill

ri-check-double-line

ri-check-double-fill

ri-close-line

ri-close-fill

ri-add-line

ri-add-fill

ri-subtract-line

ri-subtract-fill

ri-divide-line

ri-divide-fill

ri-arrow-left-up-line

ri-arrow-left-up-fill

ri-arrow-up-line

ri-arrow-up-fill

ri-arrow-right-up-line

ri-arrow-right-up-fill

ri-arrow-right-line

ri-arrow-right-fill

ri-arrow-right-down-line

ri-arrow-right-down-fill

ri-arrow-down-line

ri-arrow-down-fill

ri-arrow-left-down-line

ri-arrow-left-down-fill

ri-arrow-left-line

ri-arrow-left-fill

ri-arrow-up-circle-line

ri-arrow-up-circle-fill

ri-arrow-right-circle-line

ri-arrow-right-circle-fill

ri-arrow-down-circle-line

ri-arrow-down-circle-fill

ri-arrow-left-circle-line

ri-arrow-left-circle-fill

ri-arrow-up-s-line

ri-arrow-up-s-fill

ri-arrow-down-s-line

ri-arrow-down-s-fill

ri-arrow-right-s-line

ri-arrow-right-s-fill

ri-arrow-left-s-line

ri-arrow-left-s-fill

ri-arrow-drop-up-line

ri-arrow-drop-up-fill

ri-arrow-drop-right-line

ri-arrow-drop-right-fill

ri-arrow-drop-down-line

ri-arrow-drop-down-fill

ri-arrow-drop-left-line

ri-arrow-drop-left-fill

ri-arrow-left-right-line

ri-arrow-left-right-fill

ri-arrow-up-down-line

ri-arrow-up-down-fill

ri-arrow-go-back-line

ri-arrow-go-back-fill

ri-arrow-go-forward-line

ri-arrow-go-forward-fill

ri-download-line

ri-download-fill

ri-upload-line

ri-upload-fill

ri-download-2-line

ri-download-2-fill

ri-upload-2-line

ri-upload-2-fill

ri-download-cloud-line

ri-download-cloud-fill

ri-download-cloud-2-line

ri-download-cloud-2-fill

ri-upload-cloud-line

ri-upload-cloud-fill

ri-upload-cloud-2-line

ri-upload-cloud-2-fill

ri-login-box-line

ri-login-box-fill

ri-logout-box-line

ri-logout-box-fill

ri-logout-box-r-line

ri-logout-box-r-fill

ri-login-circle-line

ri-login-circle-fill

ri-logout-circle-line

ri-logout-circle-fill

ri-logout-circle-r-line

ri-logout-circle-r-fill

ri-refresh-line

ri-refresh-fill

ri-shield-line

ri-shield-fill

ri-shield-cross-line

ri-shield-cross-fill

ri-shield-flash-line

ri-shield-flash-fill

ri-shield-star-line

ri-shield-star-fill

ri-shield-user-line

ri-shield-user-fill

ri-shield-keyhole-line

ri-shield-keyhole-fill

ri-shield-check-line

ri-shield-check-fill

ri-delete-back-line

ri-delete-back-fill

ri-delete-back-2-line

ri-delete-back-2-fill

ri-delete-bin-line

ri-delete-bin-fill

ri-delete-bin-2-line

ri-delete-bin-2-fill

ri-delete-bin-3-line

ri-delete-bin-3-fill

ri-delete-bin-4-line

ri-delete-bin-4-fill

ri-delete-bin-5-line

ri-delete-bin-5-fill

ri-delete-bin-6-line

ri-delete-bin-6-fill

ri-delete-bin-7-line

ri-delete-bin-7-fill

ri-lock-line

ri-lock-fill

ri-lock-2-line

ri-lock-2-fill

ri-lock-password-line

ri-lock-password-fill

ri-lock-unlock-line

ri-lock-unlock-fill

ri-eye-line

ri-eye-fill

ri-eye-off-line

ri-eye-off-fill

ri-eye-2-line

ri-eye-2-fill

ri-eye-close-line

ri-eye-close-fill

ri-search-line

ri-search-fill

ri-search-2-line

ri-search-2-fill

ri-search-eye-line

ri-search-eye-fill

ri-zoom-in-line

ri-zoom-in-fill

ri-zoom-out-line

ri-zoom-out-fill

ri-find-replace-line

ri-find-replace-fill

ri-share-line

ri-share-fill

ri-share-box-line

ri-share-box-fill

ri-share-circle-line

ri-share-circle-fill

ri-share-forward-line

ri-share-forward-fill

ri-share-forward-2-line

ri-share-forward-2-fill

ri-share-forward-box-line

ri-share-forward-box-fill

ri-side-bar-line

ri-side-bar-fill

ri-time-line

ri-time-fill

ri-timer-line

ri-timer-fill

ri-timer-2-line

ri-timer-2-fill

ri-timer-flash-line

ri-timer-flash-fill

ri-alarm-line

ri-alarm-fill

ri-history-line

ri-history-fill

ri-thumb-down-line

ri-thumb-down-fill

ri-thumb-up-line

ri-thumb-up-fill

ri-alarm-warning-line

ri-alarm-warning-fill

ri-notification-badge-line

ri-notification-badge-fill

ri-toggle-line

ri-toggle-fill

ri-filter-line

ri-filter-fill

ri-filter-2-line

ri-filter-2-fill

ri-filter-3-line

ri-filter-3-fill

ri-filter-off-line

ri-filter-off-fill

ri-loader-line

ri-loader-fill

ri-loader-2-line

ri-loader-2-fill

ri-loader-3-line

ri-loader-3-fill

ri-loader-4-line

ri-loader-4-fill

ri-loader-5-line

ri-loader-5-fill

ri-external-link-line

ri-external-link-fill

System

ri-user-line

ri-user-fill

ri-user-2-line

ri-user-2-fill

ri-user-3-line

ri-user-3-fill

ri-user-4-line

ri-user-4-fill

ri-user-5-line

ri-user-5-fill

ri-user-6-line

ri-user-6-fill

ri-user-smile-line

ri-user-smile-fill

ri-account-box-line

ri-account-box-fill

ri-account-circle-line

ri-account-circle-fill

ri-account-pin-box-line

ri-account-pin-box-fill

ri-account-pin-circle-line

ri-account-pin-circle-fill

ri-user-add-line

ri-user-add-fill

ri-user-follow-line

ri-user-follow-fill

ri-user-unfollow-line

ri-user-unfollow-fill

ri-user-shared-line

ri-user-shared-fill

ri-user-shared-2-line

ri-user-shared-2-fill

ri-user-received-line

ri-user-received-fill

ri-user-received-2-line

ri-user-received-2-fill

ri-user-location-line

ri-user-location-fill

ri-user-search-line

ri-user-search-fill

ri-user-settings-line

ri-user-settings-fill

ri-user-star-line

ri-user-star-fill

ri-user-heart-line

ri-user-heart-fill

ri-admin-line

ri-admin-fill

ri-contacts-line

ri-contacts-fill

ri-group-line

ri-group-fill

ri-group-2-line

ri-group-2-fill

ri-team-line

ri-team-fill

ri-user-voice-line

ri-user-voice-fill

ri-emotion-line

ri-emotion-fill

ri-emotion-2-line

ri-emotion-2-fill

ri-emotion-happy-line

ri-emotion-happy-fill

ri-emotion-normal-line

ri-emotion-normal-fill

ri-emotion-unhappy-line

ri-emotion-unhappy-fill

ri-emotion-laugh-line

ri-emotion-laugh-fill

ri-emotion-sad-line

ri-emotion-sad-fill

ri-skull-line

ri-skull-fill

ri-skull-2-line

ri-skull-2-fill

ri-men-line

ri-men-fill

ri-women-line

ri-women-fill

ri-travesti-line

ri-travesti-fill

ri-genderless-line

ri-genderless-fill

ri-open-arm-line

ri-open-arm-fill

ri-body-scan-line

ri-body-scan-fill

ri-parent-line

ri-parent-fill

ri-robot-line

ri-robot-fill

ri-aliens-line

ri-aliens-fill

ri-bear-smile-line

ri-bear-smile-fill

ri-mickey-line

ri-mickey-fill

ri-criminal-line

ri-criminal-fill

ri-ghost-line

ri-ghost-fill

ri-ghost-2-line

ri-ghost-2-fill

ri-ghost-smile-line

ri-ghost-smile-fill

ri-star-smile-line

ri-star-smile-fill

ri-spy-line

ri-spy-fill

User & Faces

ri-sun-line

ri-sun-fill

ri-moon-line

ri-moon-fill

ri-flashlight-line

ri-flashlight-fill

ri-cloudy-line

ri-cloudy-fill

ri-cloudy-2-line

ri-cloudy-2-fill

ri-mist-line

ri-mist-fill

ri-foggy-line

ri-foggy-fill

ri-cloud-windy-line

ri-cloud-windy-fill

ri-windy-line

ri-windy-fill

ri-rainy-line

ri-rainy-fill

ri-drizzle-line

ri-drizzle-fill

ri-showers-line

ri-showers-fill

ri-heavy-showers-line

ri-heavy-showers-fill

ri-thunderstorms-line

ri-thunderstorms-fill

ri-hail-line

ri-hail-fill

ri-snowy-line

ri-snowy-fill

ri-sun-cloudy-line

ri-sun-cloudy-fill

ri-moon-cloudy-line

ri-moon-cloudy-fill

ri-tornado-line

ri-tornado-fill

ri-typhoon-line

ri-typhoon-fill

ri-haze-line

ri-haze-fill

ri-haze-2-line

ri-haze-2-fill

ri-sun-foggy-line

ri-sun-foggy-fill

ri-moon-foggy-line

ri-moon-foggy-fill

ri-moon-clear-line

ri-moon-clear-fill

ri-temp-hot-line

ri-temp-hot-fill

ri-temp-cold-line

ri-temp-cold-fill

ri-celsius-line

ri-celsius-fill

ri-fahrenheit-line

ri-fahrenheit-fill

ri-fire-line

ri-fire-fill

ri-blaze-line

ri-blaze-fill

ri-earthquake-line

ri-earthquake-fill

ri-flood-line

ri-flood-fill

ri-meteor-line

ri-meteor-fill

ri-rainbow-line

ri-rainbow-fill

Weather

ri-basketball-line

ri-basketball-fill

ri-bell-line

ri-bell-fill

ri-billiards-line

ri-billiards-fill

ri-boxing-line

ri-boxing-fill

ri-cake-line

ri-cake-fill

ri-cake-2-line

ri-cake-2-fill

ri-cake-3-line

ri-cake-3-fill

ri-door-lock-line

ri-door-lock-fill

ri-door-lock-box-line

ri-door-lock-box-fill

ri-football-line

ri-football-fill

ri-game-line

ri-game-fill

ri-handbag-line

ri-handbag-fill

ri-key-line

ri-key-fill

ri-key-2-line

ri-key-2-fill

ri-knife-line

ri-knife-fill

ri-knife-blood-line

ri-knife-blood-fill

ri-lightbulb-line

ri-lightbulb-fill

ri-lightbulb-flash-line

ri-lightbulb-flash-fill

ri-outlet-line

ri-outlet-fill

ri-outlet-2-line

ri-outlet-2-fill

ri-ping-pong-line

ri-ping-pong-fill

ri-plug-line

ri-plug-fill

ri-plug-2-line

ri-plug-2-fill

ri-reserved-line

ri-reserved-fill

ri-shirt-line

ri-shirt-fill

ri-sword-line

ri-sword-fill

ri-t-shirt-line

ri-t-shirt-fill

ri-t-shirt-2-line

ri-t-shirt-2-fill

ri-t-shirt-air-line

ri-t-shirt-air-fill

ri-umbrella-line

ri-umbrella-fill

ri-character-recognition-line

ri-character-recognition-fill

ri-voice-recognition-line

ri-voice-recognition-fill

ri-leaf-line

ri-leaf-fill

ri-plant-line

ri-plant-fill

ri-seedling-line

ri-seedling-fill

ri-recycle-line

ri-recycle-fill

ri-scales-line

ri-scales-fill

ri-scales-2-line

ri-scales-2-fill

ri-scales-3-line

ri-scales-3-fill

ri-fridge-line

ri-fridge-fill

ri-wheelchair-line

ri-wheelchair-fill

ri-cactus-line

ri-cactus-fill

ri-door-line

ri-door-fill

ri-door-open-line

ri-door-open-fill

ri-door-closed-line

ri-door-closed-fill

Others

- + \ No newline at end of file diff --git a/docs/docs/webdev/Guidelines/images/index.html b/docs/docs/webdev/Guidelines/images/index.html index bbcda67288..bb9dec266b 100644 --- a/docs/docs/webdev/Guidelines/images/index.html +++ b/docs/docs/webdev/Guidelines/images/index.html @@ -5,7 +5,7 @@ Use of images | EEA Design System - + @@ -14,7 +14,7 @@ To acknowledge a copyrighted work add three things to the image, the copyright symbol, the year of the copyright, and the name of the copyright holder.

Best practices

  • your visual content is relevant to the topic of the webpage
  • only add an image whenever it adds value to the webpage
  • place images near the relevant text
  • the most important image should be near the top of the webpage
  • avoid embedding text in images, not all users can access them (page translation tools can't read images)
  • text in HTML, provide alt text for images; follow rules of accessibility
  • create good content is equally important as visual content for images

Widely supported image formats

File type (short)File type (long)File extension
GIFgraphics Interchange Format.gif
JPEGjoint Photographic Expert Group image.jpeg .jpg
PNGportable Network Graphics.png
SVGscalable Vector Graphics.svg

Raster graphic

Raster images are pixel-based. When you scale up a raster image you'll see jagged and blurry edges.

GIF (Graphics Interchange Format)

  • fewer colours, file size is smaller than JPEG
  • interlaced progressive loading, low-quality version first, more detailed image is loaded next
  • fewer colours, file size is smaller than JPEG
  • does not lose any data with compression
  • best use for web graphics with few colours only, and line drawings

JPG/JPEG (Joint Photographic-Experts-Group)

  • can display millions of colours, use JPEG format for photographs, still images, shading with light and dark
  • use JPEG when file size is more important than the quality of the image
  • optimising JPEG images; 60% - 75% is usually optimal for web publishing 16-bit data format
  • compatible across many platforms and image editors

PNG (Portable Network Graphics)

  • support transparency (alpha channel), allow a translucent look
  • lossless compression, no loss of data
  • manage high-contrast or detailed images better than JPEG
  • they can go down to very small file sizes when there are limited colours, use an 8-bit colour palette instead of a 24 colour palette
  • PNG images can be used in any colour background still maintain the original appearance

Vector graphic

Vector image format can produce results with high fidelity at every resolution setting. It is an ideal format for high-resolution screens. If you zoom into a vector graphic it will always remain the same quality.

SVG (Scalable Vector Graphics)

  • SVG is in vector format – it does not lose any data when compressed
  • SVG formats are supported by most contemporary browsers
  • the image file size is lightweight and compressible supports transparency

Editing visuals

  • don't apply effects, gradients, borders or filters. It can make the picture look manipulated
  • don't pick photos with frames, rounded corners or drop shadows
  • cropping. Pay attention to the copyright. In some cases you need prior consent from the author to alter the image
- + \ No newline at end of file diff --git a/docs/docs/webdev/Guidelines/intro/index.html b/docs/docs/webdev/Guidelines/intro/index.html index 0343494571..c784d089e6 100644 --- a/docs/docs/webdev/Guidelines/intro/index.html +++ b/docs/docs/webdev/Guidelines/intro/index.html @@ -5,14 +5,14 @@ Intro | EEA Design System - +

Intro

Guidelines

The DS v1 is the EEA's design system, created with a set of guiding principles that followed throughout the process. By following a user-centered design approach and best UX practices, the DS v1 is the result of in-depth research into the users' needs and goals, offering solutions that are assessed, tested and revised continuously. All components included in the DS v1 follow the Web Content Accessibility Guidelines (WCAG).

The main characteristics of our design system are:

  • Minimal use of drop shadows
  • Sharp edges and corners
  • Uncluttered, distraction-free design
  • High readability with clear typography
  • Easily adjusted for responsive design

We emphasize more on functionality rather than appearance and in parallel we try to offer a consistent appearance irrespective of the screen resolution and types of devices. Trying not to use unnecessary designing elements, we focus on faster site designing and minimum loading time.

- + \ No newline at end of file diff --git a/docs/docs/webdev/Guidelines/spacing/index.html b/docs/docs/webdev/Guidelines/spacing/index.html index d1bc492aed..397c6f282d 100644 --- a/docs/docs/webdev/Guidelines/spacing/index.html +++ b/docs/docs/webdev/Guidelines/spacing/index.html @@ -5,7 +5,7 @@ Spacing | EEA Design System - + @@ -13,7 +13,7 @@

Spacing

To ensure that layouts are visually balanced, most measurements align to 8px, which corresponds to both spacing and the overall layout. Consistent spacing creates visual balance that makes the user interface (UI) easier for merchants to scan. Apply consistent spacing to improve the quality of the UI. Components are sized in 8px increments, ensuring a consistent visual rhythm across each screen. Smaller elements, such as icons, can align to a 4px grid, while typography can fall on a 4px baseline grid, meaning that each line’s typographic baseline is spaced in increments of 4px from its neighbor.

Principles

Create visual rhythm
We use incrementally measured spacing to create harmonious arrangements of components and text. This gives the elements a predictable rhythm, which makes the experience as a whole feel intentional and well designed.

Precise but flexible
Beyond mathematical precision, spacing also reacts to the objects it surrounds, giving more space to larger objects, less to small. Optical adjustments can also be made if an element looks off and the spacing needs a nudge to make things feel right.

Two types of spacing scale

Component Spacing
Controls the spacing inside the components.
For components use smaller increments. ( 4px, 8px, 12px, 16px, 20px, 24px, 32px, 36px, 40px, 48px)

Layout Spacing
Controls space between the components.
For layout scale use larger increments (16px, 24px, 32px, 48px, 64px, 96px )

Spacing Gaps in pixels

Token namePixelsTypically used
space-0251pxnot typically used
space-052pxnot typically used
space-14pxseparate related elements and for small padding
space-28pxonly for right and left padding of buttons, form elements and horizontal tabs
space-312pxto separate unrelated elements or groups and for normal padding
space-416pxto separate sub-sections of content
space-520pxto separate sub-sections of content
space-624pxto separate sub-sections of content
space-728pxto separate sections of content
space-832pxto separate sections of content
space-936pxto separate sections of content
space-1040px
space-1144px
space-1248px
space-1352px
space-1456px
space-1560px
space-1664px
space-1768px
space-1872px
space-1976px
space-2080px
space-2496px

Spacing Gaps in rem

Token nameRem
rem-space-0250.063rem
rem-space-050.125rem
rem-space-10.25rem
rem-space-20.5rem
rem-space-30.75rem
rem-space-41rem
rem-space-51.25rem
rem-space-61.5rem
rem-space-71.75rem
rem-space-82rem
rem-space-92.25rem
rem-space-102.5rem
rem-space-112.75rem
rem-space-123rem
rem-space-133.25rem
rem-space-143.5rem
rem-space-153.75rem
rem-space-164rem
rem-space-174.25rem
rem-space-184.5rem
rem-space-194.75rem
rem-space-205rem
rem-space-246rem

Spacing Gaps in em

Token nameRem
em-space-0250.063em
em-space-050.125em
em-space-10.25em
em-space-20.5em
em-space-30.75em
em-space-41em
em-space-51.25em
em-space-61.5em
em-space-71.75em
em-space-82em
em-space-92.25em
em-space-102.5em
em-space-112.75em
em-space-123em
em-space-133.25em
em-space-143.5em
em-space-153.75em
em-space-164em
em-space-174.25em
em-space-184.5em
em-space-194.75em
em-space-205em
em-space-246em
- + \ No newline at end of file diff --git a/docs/docs/webdev/Guidelines/typography/index.html b/docs/docs/webdev/Guidelines/typography/index.html index 1d608fe2dd..44c821f83f 100644 --- a/docs/docs/webdev/Guidelines/typography/index.html +++ b/docs/docs/webdev/Guidelines/typography/index.html @@ -5,7 +5,7 @@ Typography | EEA Design System - + @@ -16,7 +16,7 @@ but 150% tends to be the most quoted sweet spot (and a WCAG recommendation). You should experiment to see what looks best with your text. The line-height value is always divisible by 4 to support the grid.

This is why for body text we use 150% line height, while for headers we use 120% due to the larger font size where using 150% would add too much space between the heading lines.


Letter spacing

Letter spacing (also known as character spacing or tracking ) is the adjustment of the horizontal white space between the letters in a block of text. Unlike kerning, which affects only designated pairs of letters, letterspacing affects every pair. By adjusting letter spacing to the environment you are working with you will help readers consume your information faster, and more efficiently. The fun part is that they won’t even notice it!

Headings -0.015em (-1.5%)

Body 0%

Caption and Small text 0.01em (1%)


Text color

Body text color is blue-grey-5 (#3D5265)

Color also plays a key role in an interface’s typographic hierarchy, often by established types like:

  • Brand colors and supplementary colors, for most interface text whether body or heading.
  • Interactive, not just for links but also flat buttons, tab labels, and more
  • Disabled, often resulting is especially lower contrast treatments
  • Error, usually red, for the highest contrast with its surroundings

Line length

Line-length is the number of characters displayed in a single line. Lines that are too long or too short can distract readers. For readability, limit to no more than 80 characters including spaces for desktop. Line length for mobile is recommended to use 40 to 60 characters including space per line.


Base Font Size

We set 16px (1rem) as the base font size for body text to ensure readability. It is the default font size for most browsers.


Desktop Styles

Heading 1

Font Size: 44px or 2.75rem
Letter spacing: -0.015em (-1.5%)
Line height: 1.2 (120%)

Heading 2

Font Size: 32px or 2rem
Letter spacing: -0.015em (-1.5%)
Line height: 1.2 (120%)

Heading 3

Font Size: 26px or 1.625rem
Letter spacing: -0.015em (-1.5%)
Line height: 1.2 (120%)

Heading 4

Font Size: 20px or 1.25rem
Letter spacing: -0.015em (-1.5%)
Line height: 1.2 (120%)
Heading 5
Font Size: 18px or 1.125rem
Letter spacing: -0.015em (-1.5%)
Line height: 1.2 (120%)

Body text

Font Size: 16px or 1rem
Letter spacing: 0 (0%)
Line height: 1.5 (150%)

Caption text

Font Size: 14px or 0.875rem
Letter spacing: 0.01 (1%)
Line height: 1.5 (150%)

Small text

Font Size: 12px or 0.75rem
Letter spacing: 0.01 (1%)
Line height: 1.5 (150%)

Mobile Styles

Heading 1

Font Size: 30px or 1.875rem
Letter spacing: -0.015em (-1.5%)
Line height: 1.2 (120%)

Heading 2

Font Size: 24px or 1.5rem
Letter spacing: -0.015em (-1.5%)
Line height: 1.2 (120%)

Heading 3

Font Size: 20px or 1.25rem
Letter spacing: -0.015em (-1.5%)
Line height: 1.2 (120%)

Heading 4

Font Size: 18px or 1.125rem
Letter spacing: -0.015em (-1.5%)
Line height: 1.2 (120%)

Body

Font Size: 16px or 1rem
Letter spacing: 0 (0%)
Line height: 1.5 (150%)

Caption

Font Size: 14px or 0.875rem
Letter spacing: 0.01em (1%)
Line height: 1.5 (150%)

Small text

Font Size: 12px or 0.75rem
Letter spacing: 0.01em (1%)
Line height: 1.5 (150%)

Typography tokens

Weight

Token nameValueStyle
font-weight-1100Thin
font-weight-2200Light
font-weight-3300Book
font-weight-4400Regular
font-weight-5500Medium
font-weight-6600SemiBold
font-weight-7700Bold
font-weight-8800ExtraBold
font-weight-9900Black

Line height

Token nameValue(no unit)
font-lineheight-00.95
font-lineheight-01.1
font-lineheight-11.2
font-lineheight-21.375
font-lineheight-31.5
font-lineheight-41.75
font-lineheight-52

Letter spacing

Token nameValue(em)
font-letterspacing-000-.02
font-letterspacing-00-.015
font-letterspacing-0-.01
font-letterspacing-1.01
font-letterspacing-2.015
font-letterspacing-3.02
font-letterspacing-4.075
font-letterspacing-5.15

Font size

Token nameValue(rem)Value(px)
font-size-00.7512
font-size-0.87514
font-size-1116
font-size-21.12518
font-size-31.2520
font-size-41.524
font-size-51.62526
font-size-61.87530
font-size-7232
font-size-82.2536
font-size-92.540
font-size-102.7544

Font size fluid

Token nameValue
font-size-fluid-0clamp(1.125rem, 2vw, 1.25rem)
font-size-fluid-1clamp(1.25rem, 4vw, 1.625rem)
font-size-fluid-2clamp(1.5rem, 6vw, 2rem)
font-size-fluid-3clamp(1.875rem, 9vw, 2.75rem)
- + \ No newline at end of file diff --git a/docs/docs/webdev/Resources/developer-guidelines/index.html b/docs/docs/webdev/Resources/developer-guidelines/index.html index 628f16c7a6..188a582e9e 100644 --- a/docs/docs/webdev/Resources/developer-guidelines/index.html +++ b/docs/docs/webdev/Resources/developer-guidelines/index.html @@ -5,7 +5,7 @@ Developer Guidelines | EEA Design System - + @@ -71,7 +71,7 @@ guidelines as to what combinations of props and variations are allowed, to ensure a consistent look and feel. One place to document these constraints is in the control options we have in Storybook.

- + \ No newline at end of file diff --git a/docs/docs/webdev/Resources/theming-guidelines/index.html b/docs/docs/webdev/Resources/theming-guidelines/index.html index 42d6440bbe..2c33a1ac3a 100644 --- a/docs/docs/webdev/Resources/theming-guidelines/index.html +++ b/docs/docs/webdev/Resources/theming-guidelines/index.html @@ -5,7 +5,7 @@ Theming Guidelines | EEA Design System - + @@ -28,7 +28,7 @@ it's simply a job of changing one global variable:

// site.variables
/* This adjusts the meta alignment across all elements */
@metaAlign: right;

The same is true with colors used in components, try to avoid custom values set on components only as they should be part of the site.variables color pallete.

Semantic UI global setting example

We see this rule played out in many places within site.variables:

// site.variables
/*--------------
Form Input
---------------*/
/* This adjusts the default form input across all elements */
@inputBackground : @white;

Then within form.variables we have several rules that make use of the global setting:

// form.variables
/* Text Area */
@textAreaBackground: @inputBackground;

/* Inverted */
@invertedInputBackground: @inputBackground;

Check components design when having odd numbers or images

As written down in the Card component issue, if your component accepts images consider how they would adapt in case there is a mix between portrait and landscapei images.

What about situations where you have an odd number of elements or the body of the components differ in size?

The components need to be checked for such situations and to ensure they are flexible to deal with these mix and match elements.

Ex:

If the card is flex based and the parent wrapper is flex as well, consider adding a max-height to the card body or image wrapper so that they all keep a standard size.

Code formatting

  • CSS and less files should be formatted using prettier. Indent space will be 2 spaces.
  • Files should be edited as Unix files, with LF line endings.
- + \ No newline at end of file diff --git a/docs/docs/webdev/Templates/Grid/index.html b/docs/docs/webdev/Templates/Grid/index.html index 422d0b1915..5f8b51a584 100644 --- a/docs/docs/webdev/Templates/Grid/index.html +++ b/docs/docs/webdev/Templates/Grid/index.html @@ -5,7 +5,7 @@ Grid | EEA Design System - + @@ -16,7 +16,7 @@

Don’ts

Do not make gutters too large or the same width as the columns. Oversized gutters will not leave enough room for content and may prevent a layout from appearing unified.

Breakpoints

A breakpoint is the screen size threshold determined by specific layout requirements. At a given breakpoint range, the layout adjusts to suit the screen size and orientation. ΕΕΑ provides responsive layouts based on 4-column, 8-column, and 12-column grids, available for use across different screens, devices, and orientations. Each breakpoint range determines the number of columns, and recommended margins and gutters for each display size.

BreakpointsColumnsGuttersMargins
Mobile320-480px420px or 1.25rem30px or 1.875rem
Tablet481-835px8 20px or 1.25rem40px or 2.5rem
Desktop1025px and above1220px or 1.25rem140px or 8.75rem
- + \ No newline at end of file diff --git a/docs/docs/webdev/Templates/PageHeader/index.html b/docs/docs/webdev/Templates/PageHeader/index.html index a259a74e25..31fa3afdbd 100644 --- a/docs/docs/webdev/Templates/PageHeader/index.html +++ b/docs/docs/webdev/Templates/PageHeader/index.html @@ -5,13 +5,13 @@ Page Header | EEA Design System - +

Page Header

The page header component provides users with the context of the page. It is always placed just below the site header.

Anatomy

ComponentsMandatoryOptional
Page titleyesno
Meta (content type, published date, modified date, reading time)noyes
Download - Bookmark actionsnoyes
Breadcrumb
The Breadcrumb component provides information on the page and its relationship to the site's hierarchy and structure.
It is optional if your website's navigational structure has less than 3 levels.
noyes
Image copyrightsyesno

Do's

  • ensure the pages contain all the components and elements in the anatomy table above
  • always use a page header when building your internal pages
  • when choosing a background image, make sure it highlights the main object related to the content and is meaningful
  • choose image copyright text colors accordingly, use light font color on darker images and darker font color on lighter ones

Don'ts

  • don't use more than one-page header per page
  • do not use a background image unless there is a communication need, as it might be a distraction

When to use

  • to highlight the topic of the page, or to show important information about the page

When not to use

  • the page header is not used for the homepage of the website
- + \ No newline at end of file diff --git a/docs/docs/webdev/Templates/SiteFooter/index.html b/docs/docs/webdev/Templates/SiteFooter/index.html index a47d48a876..cdcfb87620 100644 --- a/docs/docs/webdev/Templates/SiteFooter/index.html +++ b/docs/docs/webdev/Templates/SiteFooter/index.html @@ -5,13 +5,13 @@ Site Footer | EEA Design System - +

Site Footer

The core footer provides supplementary information such as copyright, legal, privacy, social media, contact information and links to other important sites within the EEA. It is always placed at the bottom of every page. Always use a footer when building your page

Anatomy

Νο.ComponentsMandatoryDescription
1EEA logoyesLogo of European Environment Agency (EEA)
2EIONET logoyesLogo of European Environment Information and Observation Network
3Contact information
yesLinks to the associated services available through the EEA site
4Social mediayesLinks to social EEA's social media
5Environmental information systemsyesEuropean Information Systems
6Legal navigationyesContains legal information links - consistent throughout the family sites
7Content owner detailsyesIndicates ownership over the site's content

Do's

  • make sure the footer contain all the elements in the anatomy table above

Don'ts

  • don't use more than one footer per page
- + \ No newline at end of file diff --git a/docs/docs/webdev/Templates/SiteHeader/index.html b/docs/docs/webdev/Templates/SiteHeader/index.html index 07d1a30b93..6279cafc65 100644 --- a/docs/docs/webdev/Templates/SiteHeader/index.html +++ b/docs/docs/webdev/Templates/SiteHeader/index.html @@ -5,13 +5,13 @@ Site Header | EEA Design System - +

Site Header

The EEA header shows users that they are on EEA portal and which service they are using.

Anatomy

Νο.ComponentsMandatoryDescription
1Official EU website statementyesAll official European Union website addresses are in the europa.eu domain
2Environmental Information systemsyesComplete list of EEA's thematic websites
3Languages
yesLanguage select
4EEA IdentityyesLogo of European Environmental Agency
5MenuyesMain navigation of the website
6SearchyesEnables the user to search and retrieve related information from using keywords

Do’s

  • You must use the EEA header at the top of every page if your service is being hosted on one of these domains:
    • Eea.europa.eu
  • Make sure that contain all mandatory element from the Anatomy table

Dont’s

  • You must not use the EEA header if your service is not being hosted in one of the above domains.
- + \ No newline at end of file diff --git a/docs/docs/webdev/Utilities/intro/index.html b/docs/docs/webdev/Utilities/intro/index.html index b91983a228..00d244ab15 100644 --- a/docs/docs/webdev/Utilities/intro/index.html +++ b/docs/docs/webdev/Utilities/intro/index.html @@ -5,13 +5,13 @@ Utilities | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/whatsnew/index.html b/docs/docs/whatsnew/index.html index 0505558424..4b1c75d2f4 100644 --- a/docs/docs/whatsnew/index.html +++ b/docs/docs/whatsnew/index.html @@ -5,13 +5,13 @@ What's new | EEA Design System - +
-

What's new

EEA Design System (1.0)

Components ready to be used

The following components are ready to be used as Volto blocks, slate integration, or via the advanced block styler:

  • Accordion block
  • Call to Action block
  • Callout - part of the Description block, slate
  • Card - part of the Teaser block and Listing block, it includes several variations like round card e.g., used for Avatar
  • Divider block
  • Headings slate
  • Hero block
  • Item block - used for text with an icon (remixicon or custom SVG/image) on the left/right
  • List slate - ordered and unordered
  • Quote block
  • Statistic block
  • Tag block
  • Table block
  • Tabs block
  • Timeline block

Future releases

Below is a non-exhaustive list of the work-in-progress which is planned for future releases:

  • Navigation Portlet (used on the left/right hand of content)
  • Spacing/padding system. We want to add the ability for editors to consistently apply various spacing/padding on certain components in order to allow a better alignment when components are used together.
  • Improve docusaurus and storybook with more components, controls, and variations in order to better reflect what is possible in Volto.

Generated by auto-changelog.

Unreleased - 2023-04-06T13:42:14.276Z

🐛 Bug Fixes

  • fix(item): flex variant on edit when inside blockchooser #333 from eea/fix-item-csss 65b9099
  • fix(item): use child selector instead of descendent as it interferes with blockchooser refs #157040 ad4ca37

💅 Enhancements

  • refactor(megaMenu): align menu items with demo site for better testing 82a5c84
  • refactor(breadcrumbs): updates on structure and story for accessibility 770c8c0
  • change(logo): update eionet svg 3c87fc7
  • refactor(megaMenu): Restructure Topics and Countries lists d816e7a
  • change(mega-menu): use lists for navigation, enhance voice over support for better accessibility d13137f
  • refactor(header): firefox accessibility errors fix c7d35b9
  • change(breadcrumbs): label modification for better screen reader output c967bef
  • refactor(megaMenu): clean up function after test 883eb73
  • change(mega-menu): added code to align countries left column subtitle with the right column 1aa33dd
  • change(logos): updated eionet logo used in the site footer #318 from eea/footer-logo-update 70671d0
  • change(breadcrumbs,mega-menu): better screen readers support, see links instead of groups #309 from eea/firefox-accessibility-tab-issues d6b0b4a
  • change(mega-menu): sub-title padding tweaks for better spacing normalization e08668d
  • change(breadcrumbs): fixed sizing of breadcrumbs list items 1761e98

🏠 Internal changes

  • style(megaMenu): remove comments and unused properties fa5f8f8

🏠 Documentation changes

1.0.6 - 2023-03-29

🚀 New Features

  • feat: add viewport-(width/height) less functions and fixed banner image url #329 from eea/develop e8e70bd
  • feat: add viewport-(width/height) less functions 68300a3

💅 Enhancements

  • change(docusaurus): set full class name for remix icons f435e10
  • refactor(Banner.jsx): use flattenToAppURL helper function to get image source URL 24b13d7

🏠 Internal changes

  • style(theme): update container width and margins in eea theme 3e4446a

🛠️ Others

  • horizontal overflow hidden in view mode f395f27

1.0.5 - 2023-03-28

🚀 New Features

  • feat: improve full-width class 70bba7e

🐛 Bug Fixes

  • fix(banner): Add missing divider for time tag #327 from eea/banner-metadata c46a583
  • fix(banner): Add missing divider for time tag 7d68c39

1.0.4 - 2023-03-27

🚀 New Features

  • feat(copyright): Add copyright prefix - Image - refs #250724 6a72772

🏠 Internal changes

  • style(copyright): Cleanup useless min-height - refs #250724 f2457df

🛠️ Others

1.0.3 - 2023-03-24

🐛 Bug Fixes

  • fix: improve full-width class 9322259
  • fix(header): Remove z-index from subsite logo #320 from eea/subsite-logo 5091100
  • fix(header): Remove z-index from subsite logo d433a97

💅 Enhancements

  • change(header): Add search popup customizations from eea-website-theme 43e5a78
  • change(popup): create custom popup for better accessibility 036aac9
  • change(popup): added most important popup properties from Semantic ui implementation 61f65bc
  • change(banner): use custom-made Popup for better accessibility 10d0fcf
  • change(banner): use custom-made Popup for better accessibility 9108bee
  • change(popup): added also the basic property a4497ac
  • change(colors): update gray-4 color value #321 from eea/update-gray-4 f458ff0
  • change(banner): MetadataField now uses proper time tag when value is datetime b4c4d34
  • refactor(tokens): updated gray-4 b890df7
  • change(footer): Fix error and empty div if no social links are present #319 from eea/footer-social 8922246
  • change(footer): Fix error and empty div if no social links are present 5d934a6

🛠️ Others

1.0.2 - 2023-03-14

🐛 Bug Fixes

  • fix(megamenu): topic menu title is now placed before content 6004bcb
  • fix(megamenu): removed in depth nav_title renaming that set title wrongly to a-z topics 899ca0e

💅 Enhancements

  • change(megamenu): removed special styling from at a glance mega menu section fd0c4c8
  • change(footer): renamed thematic information platforms to environmental information systems e7004a7
  • change(docusaurus): updated static image of footer sections 4ff3185

🏠 Documentation changes

  • docs(What's new): Update 'What's new' d7ed9d6

🛠️ Others

  • fixed accordion selector typo f4cabc8

1.0.1 - 2023-03-13

1.0.0 - 2023-03-13

🐛 Bug Fixes

  • fix(Footer): Open internal links within the same page 5b3e409

💅 Enhancements

  • change(banner): use huge scale instead of full image for better performance 381c58e

1.0.0-beta.6 - 2023-03-10

🚀 New Features

  • feat(site): serve Roboto fonts from eea design system package instead of google fonts #311 from eea/roboto-library f6a1b3e

🐛 Bug Fixes

  • fix: full-width is now properly sized 6e2e348
  • fix(storybook): add fontDisplay 078966a

💅 Enhancements

  • change(image): copyright position fixes, moved image floating to image-block-container 53422e0
  • change(colors:) update the design system colour palette #312 from eea/update-color-palette a5fb694
  • refactor(docusaurus): added roboto library 19de7b1
  • refactor(storybook): added roboto library e991621
  • refactor(tokens): update colours 3a2c1e1
  • refactor(storybook): restored site variables a48478b
  • change(copyright): implemented copyright hover design 6b12441

🏠 Internal changes

  • chore(storybook): switched google fonts to true 4a8cae4
  • chore(colours): changed back yellow 6 87c9bbc
  • chore(lint): lint 9b0f125
  • chore(storybook): lint 29bc809

🏠 Documentation changes

  • docs(colours): colours update 161007e
  • docs(colours): accessibility ee342aa

🛠️ Others

1.0.0-beta.5 - 2023-03-07

💅 Enhancements

  • change(carousel): tweak size of carousel dots for better touch interaction e1fb823
  • change(footer): removed min width and height from links ac33219

🏠 Internal changes

  • style(hiddenStructure): Add hiddenStructure utility to be used with h1 heading on frontpage - refs #158717 672cca2

🛠️ Others

  • fixed less build failure due to changes in footer.less 190bc8c
  • lazyload bg img on footer also ae07162
  • lazyload footer images a0633c9
  • Increase performance - mobile friendly 07d86c8
  • better useOnScreen hook c214b6b
  • role change for accessibility 5e758e0
  • minimum tap dimension for mobile a25e9a8
  • Release 1.0.0-beta.5 e4417e1
  • Add Sonarqube tag using eea-website-frontend addons list b227cf8
  • feature(mobile): increased performance by lazy loading footer images #303 from eea/increase_performance 80d1df1
  • useOnScreen default export 3e6cfdd
  • use aria-labels on dropdown 27e1443
  • prettier a7f8384

1.0.0-beta.4 - 2023-03-01

🚀 New Features

  • feat(footer): Add footer description 2ad0f71
  • feat(footer): Add footer description #306 from eea/footer-description bf655d1

🐛 Bug Fixes

  • fix(footer): Don't show empty row if description is not present 2ca7f7d
  • fix(footer): Add class for children 3c50d15
  • fix(search): Fix search links color #307 from eea/search-accessibility a76f48b
  • fix(search): Fix search links color 69c42ef

💅 Enhancements

  • change(carousel): tweak card width and padding for better arrow alignment e184f70
  • change(storybook): include footer description in storybook e904aa0

🛠️ Others

1.0.0-beta.3 - 2023-02-21

🚀 New Features

  • feat(accordion): storybook accessibility by using buttons for titles #297 from eea/accessibility-accordion 809d52b

🐛 Bug Fixes

  • fix(dropdown): remove close on blur so that we can navigate links using keyboard 5442715

💅 Enhancements

  • change(language): dropdown to use links for proper keyboard navigation 6a7de30
  • refactor(images): cleared unused/renamed images assets 821f5c1
  • refactor(Accessibility): add box-shadow on focus-visible components b1adcc3
  • refactor(images): remove unused docusaurus svgs c5ef14c
  • refactor(header): add escape key functionality, actions from div to button to have proper focus state 8081aa4
  • change(language): restore dropdown duplication in order to properly show and hide language dropdown cb28888
  • change(search): to reflect changes from eea-website-theme 2cc35e0
  • refactor(footer): update p with h3 heading tag for header ca1477b
  • refactor(footer images): removed unused/renamed 186de6b
  • refactor(Accordion): div titles to buttons, test in mobile mega menu accordions eaad4b4
  • refactor(docusaurus): cleanup decorative images fedc4d4
  • change(accessibility): style outline instead of box-shadow 53209f3
  • refactor(Footer): update mobile header size 01ab7f0
  • change(header): set the logo class directly on the link f8fba50
  • refactor(images): clear docusaurus unused pngs db5c611
  • refactor(header-images): removed unused 8250d94
  • change(language): hide language dropdown by default cc6064f
  • change(header): top dropdown menu keyboard navigation #293 from eea/accessibility-megamenu-searchbox 1e6fa65
  • change(button): set focus styling for buttons 33ebfca
  • change(footer): Avoid devtools warning in FooterActions #304 from eea/avoid_warning d774824
  • change(footer): Accessibility update p with h3 heading tag for theme sites title #302 from eea/footer-accessibility 5bf70de
  • change(documentation): Rename all image files to follow the agreed convention #301 from eea/refactor-image-filenames cfe44ef

🏠 Internal changes

  • style(header): react syntax fix 3add127
  • chore(docusaurus): ignore website/.yarn 0b33ffd

🏠 Documentation changes

  • docs(guidelines): add image name convention 290747c

🛠️ Others

1.0.0-beta.2 - 2023-02-13

🐛 Bug Fixes

  • fix(footer): action and copyright #300 from eea/develop 579f3e4
  • fix(footer): action or copyright links are simple a tags for external link 9af5070
  • fix(accessibility): added navigation and footer id's for skip link 48354b9

💅 Enhancements

  • change(footer): typos and modified footer links to be center aligned ac23f04
  • change(footer): added gap for actions and copyright 7d32ddd
  • change(footer): modified footer gap b8a820a
  • change(footer): removed extra text and date from copyright section af47bbe
  • change(navigation): raise z-index of go to top link 485ca72

🏠 Internal changes

  • chore(docs): Update eea.hbs template to beta - refs #158717 196538e

🛠️ Others

1.0.0-beta.1 - 2023-02-09

🚀 New Features

  • feat(search): Add search suggestions style 6b2b77b
  • feat(search): Add search suggestions style #296 from eea/search-suggestions 3b0c956

💅 Enhancements

  • change(search): Add proper margin for search popup 190c9f5

🛠️ Others

1.0.0-alpha.15 - 2023-02-08

🚀 New Features

  • feat(Card): add teaser card grid story 53cac0b
  • feat(utilities): Complete list of text-align utilities - refs #160747 224fab6
  • feat(small): CSS for small HTML tag - refs #160747 ad3c0ad
  • feat(fw-light): Add font weight light utility - refs #160747 c44cf57

🐛 Bug Fixes

  • fix(card): teaser card dimensions on tablet size #290 from eea/teaser-card-grid 013fdf5

💅 Enhancements

  • change(card): added extra content for teaser card story 30690ae
  • refactor(style-menu): add text-color to paragraphs styles #291 from eea/stylemenu-theme-colors 2d78307
  • change(header): Small fix in search popup #292 from eea/search-popup 86c1305
  • refactor(style-menu): add text-color to paragraphs styles 3446bc2
  • change(color): darkCyan is now replaced everywhere by the new green ef3791d
  • change(header): Small fix in search popup 3d622ea

🛠️ Others

1.0.0-alpha.14 - 2023-01-30

💅 Enhancements

  • change(mobile menu): integrate a-z topic with menu rendering logic #287 from eea/develop 05d4c04
  • change(mobile menu): integrate a-z topic with menu rendering logic 246d3d8

🛠️ Others

1.0.0-alpha.13.1 - 2023-01-30

💅 Enhancements

  • change(mobile menu): hardcode a-z topics to '/en/topics-in-depth' #286 from eea/develop 6436224
  • change(mobile menu): hardcode a-z topics to '/en/topics-in-depth' 5235b52

🛠️ Others

1.0.0-alpha.13 - 2023-01-27

🚀 New Features

  • feat(utilities): added has--bg--top center and bottom utility classes 051e6d7

🐛 Bug Fixes

  • fix(header): update green color used in page header #284 from eea/fix-banner-background 29d54db

💅 Enhancements

  • change(site): added fixes from customVolto.css to design package 51ba9b5
  • refactor(Banner): update banner background green color fd4a552
  • change(mobile menu): changed link for a-z topics to point to in depth 721bf23

🛠️ Others

  • 1.0.0-alpha.13 release #285 from eea/develop c966940
  • bump next version to alpha 13 897e906
  • Back to dev 5780dc7

1.0.0-alpha.12 - 2023-01-24

🚀 New Features

  • feat(card, colors): visited color change and title on image option for cards #283 from eea/develop e638ee6

🐛 Bug Fixes

  • fix(mobile menu): sub links when an accordion section is active bb3be81

💅 Enhancements

  • refactor(Card): create card template for stories 2fa77f3
  • refactor(Card): add image with title css 6e6e63e
  • change(card): implement title on image within image section ff6cc60
  • change(card): added image card section, tweaked mobile heading size 0f879e1
  • change(cards): moved image gradient overlay to a mixin.less file 8b4928a
  • refactor(card): Update titles value and size c35ad5c
  • refactor(docusaurus): applied image naming convention ee7bc29
  • change(cards): added image for all storybook card examples 3f19413
  • change(banner): restored label value of metadata field when type isn't date 571a4f2
  • change(card): title padding value for a more balance look 74b6556
  • change(card): removed uppercase transform from title on image 2948ae1
  • change(colors, Docusaurus): Visited link colour change and thematic logo replacement #278 from eea/refactor-visited-link f82d978
  • refactor(storybook): visited link variables b209b2f

🏠 Documentation changes

  • docs(colors): visited link update ece77fe

🛠️ Others

  • fix typos in footer gradient variables 4006640
  • change version to alpha 12 instead of 1 final 3225025
  • feature(card): new card variation with title on top of image #267 from eea/title-on-image-card 2c0ca95
  • Back to dev 477d997

1.0.0-alpha.11 - 2023-01-17

🚀 New Features

  • feat(docusaurus): Header and footer elements section #277 0df271c

🐛 Bug Fixes

  • fix(banner): storybook date input and simplified gradient opacity 7674d76
  • fix(banner): re-added title class on banner title 6d15799

💅 Enhancements

  • refactor(banner): sync storybook and Volto component c9087cc
  • change(banner): removed margin from title 17e592c
  • refactor(banner): sync storybook and Volto component #275 from eea/sync-page-banner-theme 4331fb4

🏠 Documentation changes

  • docs(footer): updates on header elements b41c550
  • docs(footer): add elements anatomy d9f0872

🛠️ Others

  • add(banner): banner title css d003247
  • Release 1.0.0-alpha.11 07e8f85
  • renamed image elements as requested in review 8541fb6
  • remove(banner-gradiant): image gradiant in favour of text 1b58520
  • update(gradient): use 8deg angle 6fd597d
  • update(gradiant): make it 0deg 1bb2696
  • remove(comment) referencing old verison of title 4226d42

1.0.0-alpha.10 - 2023-01-13

🐛 Bug Fixes

  • fix(subsite): Fix logo size on subsite section 65fff54
  • fix(subsite): Fix logo size on subsite section #279 from eea/subsite-fixes 8f6cf94
  • fix(mega-menu): show sub grid only if there are children ddfbd82

🛠️ Others

  • Add variable definitions 293fe65
  • Release 1.0.0-alpha.10 7014d08
  • Add Sonarqube tag using advisory-board-frontend addons list ef58a6f
  • Back to dev 31d4616

1.0.0-alpha.9 - 2022-12-28

💅 Enhancements

  • change(contextnav): Default title is text, custom title is link #273 from eea/context-nav-link-title ef7bdb7

🛠️ Others

  • Show document and folder content-type in Navigation listing 8471db3
  • Default title is text, custom title is link 1ae95b0
  • Context nav title link to # a27a6b7

1.0.0-alpha.8 - 2022-12-23

🚀 New Features

  • feat(copyright): Align copyright options with Volto integration - refs #158210 6bac7f6

💅 Enhancements

  • refactor(logo): import theme site logos to the story 2f29136
  • refactor(logo): update logo and mega search gradient e11f44d
  • refactor(logos): convert logo names to lowercase 07b8228
  • change(item): use default logic of setting align class on content 6b5b47c
  • refactor(logo): update logo 170efe5
  • refactor(logos): convert storybook logo names to lowercase c4b24ec
  • refactor(logo): add eea roboto font logo variations de1224a
  • refactor(logo): add container and segment to logo story 61eff16
  • change(item): removed requirement for aligned classes to be on content 30c0d5d
  • change(logos): cleanup eea logo reference to only eea-logo and eea-logo-white.svg 2796e05

🏠 Internal changes

  • chore(npmignore): Reduce npmjs package size 164c8a5
  • chore(npmignore): Reduce npmjs package size ade9d5b
  • chore(docs): renamed logo mdx to md 52e9d46

🏠 Documentation changes

  • docs(logos): svgs without classes 28a5833
  • docs(logos): add dark mode logos ccc1609
  • docs(logo): update eea logos and add logo wrapper 91cdd66
  • docs(logo): update logos on docusaurus 760e101
  • docs(logos): updated svgs dc224e1
  • docs(logos): add thematic logos 5a21a30
  • docs(logos): add zipped svgs for download 5855bf8
  • docs(logos): wisef logo update 8f90b59
  • docs(logos): move to static, add download 8c1fd5f
  • docs(logos): improve eea logo visibility 82188ab
  • docs(logos): change eea logo to svg f57b846

🛠️ Others

  • logo update or docusaurus thematic logo listing #274 from eea/develop dde90be
  • (feat): Add ability to disable the language select from website top menu - refs #158616 411c8e4
  • Proof reading page header section 230239e
  • bump package version b4628be
  • feature(docusaurus, storybook): logos selection for sites plus inverted options #253 from eea/doc-logo-page dbfc90d
  • Add Sonarqube tag using advisory-board-frontend addons list c4769e9
  • test(Jenkins): Run tests and cypress with latest canary @plone/volto 92feea0

1.0.0-alpha.7 - 2022-12-16

🚀 New Features

  • feat(item): normalized size for image or icon items #258 from eea/refactor-items 945170f

🐛 Bug Fixes

  • fix(card): rounded after removal of has--rounded--true style class d4727af
  • fix(item): removed margin set for description which pushed the text from icon d9d4031
  • fix(project): Proper paths if volto-eea-design-system package is not installed, but in development #270 from eea/correct_paths 0f8ee8d

💅 Enhancements

  • refactor(item): update icon variations and paddings 6a407b3
  • refactor(item): update spacing 2fd91c4
  • refactor(item): initial values for new sizes & add description class 3546296
  • refactor(item): add icon and more size options 1120bb6
  • refactor(item): update image and icon sizes b802573
  • change(item): set same height as width on item images 69cbd23
  • refactor(item): update item part 2 9812ae2
  • change(item): rename large to big class 24ff127
  • change(item): added tiny size that outputs 24px icon sizes 2ea9636
  • change(image): added preview image size default to 400px a0aa867
  • refactor(item): update operator for condition controls 149ccb2

🛠️ Others

  • Proper paths if the package is not installed, but in development 7a2655f
  • Update .project.eslintrc.js a2fd3f2
  • added back descriptionDistance variable until package release 3af811a
  • Release 1.0.0-alpha.7 7e66bcc
  • Add Sonarqube tag using cca-frontend addons list ce47e9b
  • Back to dev cb531c9

1.0.0-alpha.6 - 2022-12-07

🚀 New Features

  • feat(copyright): create copyright component and import it in banner 8fcde9d
  • feat(Header): add hideSearch prop 13ddfe5
  • feat(Docusaurus): Image copyright information #257 from eea/image-copyright-info 2119515

🐛 Bug Fixes

  • fix(tags): content gap when using tags-content wrapper c4eb9b8

💅 Enhancements

  • refactor(hero): add copyright component to hero 0fa88fa
  • change(copyright): implementation to add classes on content sections e10bde6
  • change(copyright): removed color variant 747b8a2
  • change(copyright): removed copyrightVariant from Banner and Hero stories ac62e07
  • change(tagList): modified implementation to align to volto-tags-block 7a57a3d
  • refactor(copyright): remove data section 52cb09d
  • change(copyright): line height to match page header implementation a56254e
  • change(copyright): now uses text color css variable with fallback to white ee7268b

🏠 Documentation changes

  • docs(copyright): copyright documentation a90ed76

🛠️ Others

  • Update usage_markdown.md f76d4a2
  • grammar fixes cb2a5a5
  • Release 1.0.0-alpha.6 6ca32f0
  • feature(copyright): image information #250 from eea/feature-copyright a8618c7
  • lint fix by introducing local variable tagsGap 7b6c0ae
  • Update 3-images.md 1b0ef03

1.0.0-alpha.5 - 2022-11-29

🚀 New Features

  • feat(Iconography): import and showcase remix icons 777112f

🐛 Bug Fixes

  • fix(docusaurus): right bar overflow fix 197c763
  • fix(lists): bullet position by using padding instead of margin 0ecae2e
  • fix(label): color for yellow variant as white isn't accessible on yellow color 91d8880
  • fix(contentBox): avoid text decoration for header-link added on cards 3ccb592
  • fix(label): margin value for ribbon image left and right margin f8e1129

💅 Enhancements

  • refactor(docusaurus): eea color palette in separate file 6c855df
  • refactor(docusaurus): classes for color boxes 80219d5
  • refactor(docusaurus): move supplementary, state and link colors to partials 2776be3
  • refactor(docusaurus): fix side menu / moved more content in palette partial f5b7077
  • change(tag): set gap on tags element for margin between tag elements 726bc6d

🏠 Internal changes

  • chore(colours): fix wrong class name 51ad0a8

🏠 Documentation changes

  • docs(docusaurus): Iconography updates, thematic platforms 2a0e596
  • docs(colors): thematic pages integration ea7a422
  • docs(docusaurus): color updates cc13b54
  • docs(colors): fix swatches accessibility 306cb74
  • docs(docusaurus): typography and colors fixes according to comments on PR ae20a72
  • docs(colours): adjust logos heights 854d4fb
  • docs(typography): merge designer and dev units 65c240e
  • docs(typography): readded extra font sizes, fixed fluid a4a5d89
  • docs(typography): changed em to percentages d417600
  • docs(colors): minors updates and instructions 84ac882
  • docs(colors): blue-grey-6 adjustment e7ab2d1
  • docs(colours): added active colour 574f7a9
  • docs(colors): switch FISE logo to png 335471f
  • docs(colors): updated visited 0248fd1
  • docs(FISE): replaced logo f7d8331

🛠️ Others

  • perf(docusaurus): added remixicon and roboto locally b67b1a7
  • feature(Docusaurus): Updates on color palette information including thematic websites #231 from eea/refactor-docusaurus ec7843d
  • Upgrade Jenkinsfile storybook to yarn 3 d20de8d
  • Back to dev 563fbc5

1.0.0-alpha.4 - 2022-11-22

🐛 Bug Fixes

  • fix(cards-storybook): load slick carousel css for arrow and pagination styles 1159b1b

💅 Enhancements

  • change(cards): refactor cards theming implementation d4e4542
  • change(cards): allow rounded, inverted and theme parameter to be set by has classes 4b4ad89
  • change(card): expect has classes on the card directly 6a9e38b
  • change(utilities): added has text classes to the text alignment utilities e6974c6
  • change(utilities): modified class name for text align using has naming 579a0cb
  • change(theme): ensure that only direct children of container have a default top and bottom margin 7f8b8dc
  • change(build): upgrade action to trigger workflow and wait to latest version c63ad3f
  • refactor(card): theming implementation to allow has theming classes #265 from eea/card-refactoring 24edc99
  • change(theme): add slick-carousel dependency f2eec7d

🛠️ Others

1.0.0-alpha.3 - 2022-11-16

🚀 New Features

  • feat(Header): Add subsite section styling #263 from eea/subsite 00398b8

🐛 Bug Fixes

  • fix(search): position now changed by default to absolute from relative 51b08fc
  • fix(megaMenu): remove paddings for buttons added by active class ec33ebf

💅 Enhancements

  • change(components): load overrides files for our defined semantic files adde7a9
  • change(container): fullwidth now take into account devices without hover 5a35a65
  • change(container): ensure only the top level elements behave like containers 98b85d1
  • change(container): modified column-block grid to remove margin and padding when using full width class 35c1cee
  • change(mega-menu): hide home link and accordion content from mobile menu 1a69172
  • change(container): width from min width 1280px to 1365px max width 66e551e
  • change(container): removed app extras and view setting of layout sizes f6dc1ee
  • change(views): customized DefaultView to pass class into page-document area 91123aa
  • refactor(megaMenu): desktop - use buttons for menu section titles and readjust content cb9315f
  • refactor(megaMenu): add nav_title and nav_description attributes 0d7a568
  • refactor(megaMenu): style sub-title and nav-description b2a48fd
  • refactor(sidemenu): add third level list and items & update active indication e2d87da
  • change(columns): implement narrow, container and wide width classes 9696b54
  • change(container): story to add classes that modify the max width of the containers 37948f8
  • change(container): affect only left and right margin of containers 183265b
  • change(containers): modified class names after layout checks 1dc3689
  • refactor(sidemenu): add is_in_path and is_current attributes for an active example a3fe7fd
  • change(container): story to avoid adding containerwidth property to container div c13d83c
  • refactor(megaMenu): mobile - use buttons for menu section titles a7b632f
  • refactor(megaMenu): update padding variables c5f2583
  • change(views): moved narrow style bellow the default container width styles 72fa58d
  • change(listing): removed container from default view page-document area 69f3d8f
  • change(views): rename classes names to width_view and added app extras layout component 745b772
  • change(container): use important flag for left and right margin a49c83a
  • change(container): add variables for edit and add section of containers f2e2c33
  • refactor(megaMenu): update sub-title paddings 992f919
  • change(site): add a 1rem margin top and bottom on all styled classes dabf6c1
  • change(homepage): removed hiding of staging banner from homepage 4ba2cd7
  • change(container): unset values of page-document on 1200+ browser width dd5bea3
  • change(megamenu): set children to be appended to the right of the menu title b69c23a
  • change(theme): modified wide width to point to 1320px as it's perfectly divisible by 4 8f82573
  • change(theme): modified wide width to point to 1368px as it's perfectly divisible by 4 2349fee
  • change(container): renamed content-text-width to container-text-width 6f788c2
  • change(listing): provide ui container fallback if no class is passed to default view af9e94d
  • change(narrow-view): re-added container class to page-document 56b44a6
  • change(view): set container width for view-viewview class as well 29dc324

🏠 Internal changes

  • style: load header/footer overrides e5b5e0f
  • style(megaMenu): restore item description color 8a19bbb
  • style(megaMenu): restore accordion content bottom padding 8e0c5a7

🛠️ Others

  • Add subsite styling e79c0ed
  • WIP settings column grid width when using full size class affc7ac
  • code cleanup 2cdc3e5
  • fix eslint 30c52e4
  • test(estlint): Fix .project.eslintrc.js aaeaa07
  • modified left value of full width classes with toolbars 70d82d4
  • Release 1.0.0-alpha.3 8fc86a7
  • feature(content): added NarrowView useful for modifying the containers from content-area d937df7
  • jslint fix 9846159
  • Feature(container): flexible container size #260 from eea/feature-flexible-container 8f84c5b
  • Add Sonarqube tag using circularity-frontend addons list 76a41c7
  • fix broken variable call for contentBox.variables introduced in previous commit by mistake d249c11
  • clean up 89f3cb3
  • removed console log from code fad86ae

1.0.0-alpha.2 - 2022-10-28

💅 Enhancements

  • change(documentation): grammarly proof-read suggestions 9f609be
  • refactor(volto-slate): Upgrade to @plone/volto-slate - refs #153447 853d9d1

🏠 Internal changes

🛠️ Others

  • test(cypress): Upgrade to Cypress 10 / Razzle 4 c1c1f4b
  • more explanations a8b2272
  • add announcement bar, showing that EEA DS is WIP e14aeac
  • Update dependencies ee30a2b

1.0.0-alpha.1 - 2022-10-20

💅 Enhancements

  • refactor(footer): update svg and tablet contact link sizes 6aba061
  • change(blockquote): renamed to Callout reflecting the correct naming from Storybook 61a518c
  • change(footer): Shadow removed from logo & tablet updates #252 from eea/fix-footer 6df783d
  • change(colors): updated theme classes for text to use css variable colors cb089fd

🏠 Internal changes

  • style(footer): reduce social icons margin f6a9cf7

🏠 Documentation changes

  • docs(alpha): Update included components in 1.0 alpha version - refs #154387 fcc5af9
  • docs(callout): Rename Blockqoute to Callout in docusaurus - refs #154387 8d733ac

🛠️ Others

0.9.6 - 2022-12-16

🛠️ Others

  • Release 0.9.6 ae19b83
  • feature(copyright): image information #250 from eea/feature-copyright 7b323ed
  • Release-it 1f5671d

0.9.5 - 2022-10-20

🐛 Bug Fixes

  • fix(statistic): margin and slate colors when using the inverted options f263dea

0.9.4 - 2022-10-19

🐛 Bug Fixes

  • fix(edit-interface): block chooser and power user menu item colors when inside content-box 7aee4f1
  • fix(header): hero text going over the logo and menu on mobile resolutions 1434508
  • fix(content-box): z-index of box-inner and added underline to slate links c8b7c7e
  • fix(content-box): adding of underline to links c2f5f0f

💅 Enhancements

  • change(banner,colors): content box theme aware colors banner changes#254 from eea/develop bcb9a8c
  • change(Banner): Add subtitle subcomponent bb67f4c
  • change(item): moved svg filter definitions to item.overrides de70366
  • change(accordion): accordion titles with themes colors can now be modified by css variables e2ac13e
  • change(colors): in lists and callouts to allow color changes 940d1b8
  • change(colors): added backgroundColorSupplementary color variable 1f5262a
  • change(list,bullet): color is no longer primary instead it's text color css variant 8c04670
  • change(statistics): use theme colors with css variable for easy color customization fb72a01
  • change(Banner): Show label in metadata field 1acda3c
  • change(tags, items): use text color with css variable for content color for easy customization 6660e2e
  • change(styling): modified naming of theme css variables a332961
  • change(colors): added backgroundColor color variable b7e6831
  • change(quote): use secondary css var for easier color replacement 7a32312
  • change(statistics): tweaked margin of statistics so that they don't overflow over context boxes b4a8e33
  • change(accordion): allow customization of accordion title background color 6590baf
  • change(colors): introduced css variables for primary colors #247 ac80825
  • change(content-box): override primary text color to white as well 28b43c7

🛠️ Others

  • Include changes in the storybook a4d9fa4

0.9.3 - 2022-10-04

🐛 Bug Fixes

  • fix(card, contentBox): meta font size, removed header override of cards a7f94b9
  • fix(List): Ordered list item story - refs #155248 c70a2bc
  • fix(OrderedList): li third level margin left - refs #155248 fba5cb9
  • fix(cards): inherit color of card description ceda799
  • fix(accordion): Fix content default padding - refs #153783 566adf7

💅 Enhancements

  • change(site): committed fixed from custom into eea design package 9b9a1fd
  • change(jenkins): added yarn policy for storybook building 3d1b844
  • change(docusaurus): typography updates 60a93a4
  • change(item): added item image coloring when applying theming classes 0403fe4
  • change(accordion, site): change text color to tertiary instead of black 4641058
  • change(accordion): allow customization of accordion title with css variables 15e7d27
  • change(content-box): added css variables that will set text color and background for children 86cac53
  • change(tabs): allow customization of tab active and hover color 4370f42
  • change(tabs): color for tabs-block section 6778c92
  • change(cards): by default date is set to appear on the right of the meta section b7b80e8
  • change(cards): carousel dots are now relative positioned daa40a4

🏠 Documentation changes

  • docs(typography): update, local fonts 39a32d9
  • docs(typography): token fix to match used values for heightheight and letterspacing 91693ec
  • docs(typography): token fix to match used values for lineheight ff41b56
  • docs(typography): remove semibold 6eb3e08

🛠️ Others

  • test(cypress): Fix md5 dependency 17f618e

0.9.2 - 2022-09-27

0.9.1 - 2022-09-27

💅 Enhancements

  • change(cards): added ability to change the text alignment using css variables ed532ac
  • change(styles): use flex-end values only instead of end to avoid babel warning 24244b2
  • change(rounded): image size, border radius to ensure more image are turned into rounded options 51e23c1

🛠️ Others

  • Merge pull request #243 from eea/develop 576564c
  • Add Sonarqube tag using eea-website-frontend addons list 4a5be6e
  • Back to dev b251255

0.9.0 - 2022-09-19

🚀 New Features

  • feat(countUp): intall countup package and import it in statistics 10ba7cf
  • feat(docusaurus): custom editUrl function for the components usage pages - taskman refs #154076 93c4240
  • feat(site): Styling scroll-to-text fragments #238 1883fcf
  • feat(docusaurus): added Edit this page link in footer of each page - taskman refs #154076 2cf8746

🐛 Bug Fixes

  • fix(header): Prevent dropdown closing when clicking inside content 838f340
  • fix(cards): position of bullets and arrow clicking on events page 148723 22ef828
  • fix(cards): rounded images show up now even when card parent is cards 48f5e81
  • fix(statistic): add a min-width to content so unwrapped statistics don't break 7c5d511
  • fix(sideNavigation): add role list to list item 58f322b
  • fix(sideNavigation): remove unused useState import f9ea677

💅 Enhancements

  • refactor(sideNavigation): implement the design to the initial navigation & make component dynamic b673d63
  • refactor(header): update top bar 626bdd5
  • refactor(statistic): create custom export and add links 9f9ed56
  • refactor(statistic): update inverted style and add background variations 7578dc6
  • refactor(statistic): remove horizontal display on mobiles & update columns control 58f00e1
  • refactor(header): minor fixes spotted in testing 0f0f3ab
  • refactor(header): update main section heights d669f01
  • refactor(sideNavigation): remove green border and divider 939cd9b
  • refactor(link): update colors for link states 3e9f599
  • change(cards): styles img tag outside of .image ee89274
  • refactor(sideNavigation): update controls a3e8430
  • refactor(statistic): fix firefox issue for fit content 87aa113
  • change(statistics): rearrange controls order b19ae70
  • refactor(statistic): add max width to wrap text for all content 758f8ce
  • refactor(statistic): add max width to label so it wraps the text 824a127
  • change(Side menu & in page navigation): styling according to figma design #221 b2df858
  • change(header): align header with latest figma changes #232 135cd68
  • change(cards): integration when cards also contain call to action buttons f0d8766
  • refactor(iconography): icon group headings b9ccd80
  • refactor(header): add variables for some sizes 8eae84e
  • refactor(Statisctic): Rename slateVariation to extraVariation a07c589
  • change(docusaurus): started example on how to add headings for iconography 53cf843
  • change(cards): remove center alignment of rounded cards body area, only the image is now centered fdfac48
  • change(color): updated link colors #234 feabfe7
  • change(mockup): Access to figma style tokens 0bb25be
  • refactor(statistic): update margin 5190f56
  • refactor(button): adjust vertical margin db6d441

🏠 Internal changes

  • style(statistic): update decimal point 7976aa4
  • style(link): update visited link color d3b18b3

🏠 Documentation changes

  • docs(iconography): added icons, guidelines 0073f1d

🛠️ Others

  • Delete 2-test-new-page.md 749eff9
  • Create 2-test-new-page ab623ff
  • Release 0.9.0 eb7e2e5
  • stylelint fix 114e3f9
  • Move text fragments style to site.overrides 8368cbe
  • Styling scroll-to-text fragments 1bb3914
  • Update Header.stories.js 9036c74
  • feature(Docusaurus): Reflect usage of remixicon in iconography page #239 0802b32
  • Update 1-design.md 146115a
  • Test workflow for contribution - taskman refs #154076 dcb924f
  • perf(figma): access to style tokens 27d8dbe
  • Rename 2-test-new-page to 2-test-new-page.md 4e3be10

0.8.1 - 2022-08-26

🐛 Bug Fixes

  • fix(message): fix size controls ee51e1d
  • fix(docusaurus): intro page hero title color now that headers are using tertiary color 618e3cb

💅 Enhancements

  • refactor(message): restore semantic variables 1c16621
  • refactor(messages): mix semantc and token colors for messages 12efa75
  • refactor(emotiveColors): temp update for tests 61a720c
  • change(footer): removed line between sections and moved actions back to the bottom of footer d9f33e4
  • change(storybook): headings storybook now uses tertiary color by default reflecting site options 1061e77
  • refactor(message): add container to story 1259ece
  • refactor(message): remove override with custom background color on error 9b40cd7
  • refactor(message): add header controls 960c2f7
  • change(message): use semantic colors for messages #204 from eea/refactor-message 22d2c43

🏠 Documentation changes

  • docs(figma): added figma files to repo 6bd4144

0.8.0 - 2022-08-20

🚀 New Features

  • feat(IconCard): card with icon instead of image a85a179

🐛 Bug Fixes

  • fix(docusaurus): typography guideline now has real font values for headings, body, caption and small text 9508db9
  • fix(card): fix content gaps, adjust new meta section and update text color for default f1a78e1
  • fix(item): remove duplicate argType dde0be5
  • fix(iconCard): add aria-label at links 44f64c7
  • fix(card): merge fix df440ec
  • fix(heroblock): color even on edit page by inheriting color instead of using the tertiary color ac53fb7
  • fix(tab): add tabindex for accessibility error ab512be
  • fix(carousel): restore missing variable 1728312
  • fix(carousel): restore flex grow for cards and opacity for arrows ce71305

💅 Enhancements

  • refactor(carousel) add links in carousel cards & update structure and variables of less files f99cb21
  • refactor(iconCard): add control for variations and link 5e1b6a1
  • change(docusaurus, fonts): documented font letter spacing modification 522712a
  • refactor(card): css updates for card variations and styling updates c8b4a43
  • refactor(publicationCard): add links and fix accessibily issue 80adf6c
  • refactor(card): add new section in meta and remove links bfb82ae
  • refactor(item): add stackable functionality 8d714fa
  • refactor(card): update meta section and controls 5e28e12
  • refactor(roundedCard): remove unnecessary code and controls and add all variations 6305c54
  • refactor(roundedCard): add optional link for image and header a6d3bf2
  • refactor(card): add tertiary hover and update css selectors ca06948
  • change(fonts): updated font sizes with values given in figma 4b0ae48
  • change(style): color, space and adjust line-height as described in docusaurus 3366da2
  • change(headings): only h2-h6 get tertiary color 7d81308
  • change(site): removed Archivo import as we should only use Roboto font a6af056
  • change(docusaurus): use tertiary color for headings and body color mirroring the design system styles 145fe73
  • change(fonts): modified headings font size as well as line height f0771ea
  • change(fonts): updated font sizes with values given in figma f16eef7
  • change(docusaurus): use Roboto font from google fonts also for docusaurus adca8e9
  • change(headers): added headerColor variable so that thematic sites can easily choose another heading color f09d2c5
  • change(fonts): typo fixes for typography section of docusaurus cae4b02
  • change(fonts): modified footer and header values afer global font size changes f160d35
  • refactor(iconCards): run prettier fe84e46
  • change(typography): inherit header colors with @headerColor variable 91d9357
  • change(breadcrumb): use tertiary color also for breadcrumb c5cbd44
  • change(heading): on homepage on the first hero set font size to h1 and inherit color 5711096
  • refactor(carousel): update card titles to display styling fix edd966b
  • change(docusaurus): use the tertiary color for body and heading colors 11c4ed4
  • change(typography): modified lineheight-0 after headers now use 1.2 instead of 1.25 04d78a8
  • refactor(card): add links to cards and replace description with title in carousel 0258737

🛠️ Others

  • feature(heading): and cards refactoring #227 from eea/develop 334fbda
  • Update package.json 3870cf3
  • Header refactor 153536 #226 from eea/header-refactor-153536 87a6fe7
  • feature(item): icon is now stackable moving the icon on top #220 b716acf

0.7.6 - 2022-08-15

💅 Enhancements

  • change(footer): Footer updates 147837 #225 fa9ae58
  • refactor(footer): initial redesign of main section 8e85617
  • refactor(footer): restructure theme sites logo columns dcba45a
  • change(footer): set actions before thematic section on mobile db25f96
  • change(footer): fix missing key warning from react dev 77f72d5
  • change(footer): Footer updates 147837 #222 32fed23

0.7.5 - 2022-08-11

💅 Enhancements

  • change(megamenu): mobile improvements with See all links, active elements and non accordion children #224 6767b99
  • change(megamenu): render accordion only if children have children be63ce2
  • change(megamenu): mobile menu design tweaks as seen in latest figma 26d74dc
  • change(megamenu): removed icon from at a change menu items and they are no longer bold as requested 043e772
  • change(megamenu): reset first level panels after each item pass 175351b
  • change(megamenu): mobile menu improvements #223 b3cabfe
  • change(megamenu): fixed key error warnings 075bf01
  • change(megamenu): handle default active sub accordion 6192a99
  • change(megamenu): enable active border only for items not titles fb0b869

🛠️ Others

0.7.3 - 2022-08-04

💅 Enhancements

  • change(megamenu): added icon on mega menu header section d0ad4d8

0.7.2 - 2022-08-03

🐛 Bug Fixes

  • fix(contentBox): z-index of content hidden by bg when using content-box-inner c5a7dac

🛠️ Others

  • Set focus on search input field in the popup on click d12c051
  • Make cypress tests work with both slate and draft selectors 4d8e5b1

0.7.1 - 2022-08-01

0.7.0 - 2022-08-01

🚀 New Features

  • feat(accordion,buttons): primary, secondary and tertiary variations #209 c34617f

🐛 Bug Fixes

  • fix(megamenu): key warning errors 4ecd279
  • fix(container): add padding also for block editors when we are on the add page not just edit b857aad
  • fix(header): bump opacity of gradient class to get rid of green hue of header text 2011b40
  • fix(header): remove console log 3a20023

💅 Enhancements

  • refactor(callToAction): add tertiary variant and restructure exports ac6695a
  • refactor(accordion): add color variations 3504c15
  • change(megamenu): WIP bringing back rendering of item with callback and path modification 6e43d43
  • refactor(megaMenu): add slide down transition and update targetRefs on close 9667157
  • change(megamenu): use renderMenuItem in order to render menu items 9ed5cbd
  • change(footer): replaced eionet logo with an svg variant and tweaked size of eionet to match size of eea logo 32ce462
  • refactor(callToAction): update tertiary state colors 159668a
  • change(accordion): style default accordion using the grey from semantic ui e24907d
  • refactor(accordion): add variations and create a default export 4a9c68f
  • refactor(colors): add tertiary shades for element states 1e24a7e
  • change(tests): try to modify tests to use slate instead of draft a2e2485
  • change(megamenu): set active class on storybook list items 112bff1
  • change(megamenu): add border for active element of menu 5e7dfa5
  • change(package): condition modification of navDepth settings dd21dad
  • change(mega menu): use non variable to fix build of volto-kitkat-frontend 3ecd652
  • change(header): prefix mega-menu active class for adding border 32898cb
  • change(tests): use data-slate-editor instead of contents that was found in draft js instead of slate 1e0413c
  • change(stories): hide variant control from button link story 43f8c41
  • change(stories): hide variant control from button link story aea7126

🛠️ Others

  • feature(theme): added context navigation component story and default style 5a6955f
  • feature(megamenu): open default accordions on mobile navigation based on pathname cc299c1
  • fix eslint warnings 3b30282
  • bump release version to 0.7.0 fa82cbd
  • Theme fixes, mega menu selected element both in desktop and mobile #211 b482729
  • feature(mega-menu): added menu slide down animation #208 4360d0e

0.6.5 - 2022-07-06

🐛 Bug Fixes

  • fix(header): double click to close dropdown is no longer required b8a2ed0
  • fix(header): menu generation when atAGlance isn't found d68b03c
  • fix(menu): removed minHeight that enlarged the global menu 133be1e
  • fix(hero): image dimensions when full width and height isn't enabled 4114f73
  • fix(contentBox): removed negative z-index that hid fullwidth bg color bd60faf

💅 Enhancements

  • change(hero): tweaked hero block height and padding 994b6f8
  • change(item): tweak size and padding of icon when used inside item dbdef19
  • change(typography): updated letterspacing values and clarified values used for certain type tokens 8a13bf8
  • change(item): enable theming for icon and text color and added tertiary option 6d4444f
  • change(header): top section chevron sizes and margin as requested in enhancements document b307c74
  • change(cards): add underline to links when applied to headers and use tertiary color by default 874f956
  • change(utilities): wrap in quotes h2 and h3 of quoted-wrapper 8aa4716
  • change(package): bump package version to 0.6.5 denoting bug fixes release 0585aeb

0.6.1 - 2022-07-01

🚀 New Features

  • feat(UnderlinedTitle): create story and necessary utilities 8beb56b
  • feat(headers): added underlined titles with theming support af67561

💅 Enhancements

  • refactor(heading): move underline story and update controls 2c9bfd2
  • refactor(underlineTitle): add content box for different variations 0878915
  • refactor(underlinedTitle): add control for changing heading size 211f515
  • refactor(underlinedTitle): Restore text variation dropdown control bd8c611
  • refactor(utilities): add color variation for headings and text 7e3a779
  • refactor(utilities): update border bottom utility and restore line height for headings 7fe4a7b
  • refactor(headings): update the line height of headers according to docusaurus instructions 9da19b3

🏠 Internal changes

  • chore(countup): package for statistics 26fcd09

0.6.0 - 2022-07-01

🐛 Bug Fixes

  • fix(item): adjust the container in stories a848c46
  • fix(tag): align start for tags on mobile, update path for Tag List and add containers b9de845
  • fix(item): update image width & height on mobiles and add 3 line clamp for description 0cd2c46
  • fix(pageheader): metadata font size on mobile to be readable 0a9b1fa
  • fix(breadcrumb): fixed variable name for breadcrumb item 2b547eb

💅 Enhancements

  • refactor(Item):create item story with custom default class 069ae02
  • refactor(pagination): add pastanage menu overrides and remove any eea theme css from default story 5080810
  • refactor(item): update variables from px to rem 30eed78
  • refactor(Item):add default item mobile padding 3518465
  • change(site): added fixes from custom 0fe4d80
  • refactor(Pagination): add default pagination stopry and rename previous as Secondary a5e3e13
  • refactor(pagination): comment out secondary pagination and its styling bcf4cff
  • refactor(tags): remove content class and add flex wrap d6333ca
  • change(logo): use a real svg logo for white eea logo 3b80dc7
  • change(header): show eea information systems on tablet as well ce82ceb
  • refactor(tokens): update letter spacing tokens 5f8753b
  • change(letterspacing): updated letter spacing positive values b31818f
  • change(pageheader): add bottom margin on mobile for sharing dropdown actions d3cda47
  • change(pageheader): removed blogger, reddit and stumbleupon sharing links e4acc4e
  • refactor(Item): add default item background color c978c8d
  • change(package): bump package version 1f01f72

🏠 Internal changes

  • style(item): update item image e585e9d

🏠 Documentation changes

  • docs(colors): token usage c433ec6
  • docs(Docusaurus): typography and spacing updates 48d1269
  • docs(Docusaurus): various fixes a972a31
  • docs(typography): updates 66d95e4

🛠️ Others

  • Tabs block custom border left/top ca4cce0
  • Fix sidebar tabs in Volto CSS c287db5

0.5.5 - 2022-06-23

🐛 Bug Fixes

  • fix(contentBox): color of cards when inside content-boxes 76a4520

💅 Enhancements

  • change(homepage): moved fixes of homepage to custom and colored carousel arrow 0a226ef

0.5.4 - 2022-06-16

🐛 Bug Fixes

  • fix(block-style): Content box preview in sidebar 6362766
  • fix(header): ensure transparency goes as high as the search icon 4470e13

💅 Enhancements

  • change(contentBox): add background as before element instead of using full-width 7e0a596
  • change(content-box): content box links are now underlined f7976f5
  • change(homepage): added fixes from custom c3e0333
  • change(hero): add margin top with the height of the top section on edit fefa6bb
  • change(cards): fix default card color when inside content-boxes 6fdf3aa
  • change(container): removed override of content-box-inner container 66fe7d4

0.5.3 - 2022-06-16

🐛 Bug Fixes

  • fix(homepage): hero and homepage fixes for #151156 #198 43d4efc
  • fix(header): fixed top section width on edit page ce5898b

💅 Enhancements

  • change(hero): added min height to hero-block-image-wrapper 3cc37c0
  • change(hero): spaced hero block has a 3rem margin top and bottom c463b03
  • change(hero): added extra top margin on hero-block-body from tablet and up within homepage 64142c3
  • change(hero): tweak min height of hero block e1271b4
  • change(card,contentBox): use inherit for text color to inherit black from body c1ba3b6
  • change(container): on section-edit modify only left and right padding values fe6e3ec
  • change(utilities): bump z-index of overlay class ede3209
  • change(hero): fixed variable reference for margin of body from homepage 092b90b

0.5.2 - 2022-06-14

🚀 New Features

  • feat(contentBox) : add new Content Box component 2ebbb47
  • feat(ContentBox): Add primary, secondary, tertiary themes 87cb2fe
  • feat(ContentBox): Update storybook with available themes 93b26b2

💅 Enhancements

  • refactor(contentBox): restructure the component to be more flexible f0d2de6

🏠 Internal changes

  • chore(contentBox) : add lint changes 5aaf740

🛠️ Others

0.5.1 - 2022-06-13

💅 Enhancements

  • change(header): changed homepage text color 64ce8b6
  • change(hero): added styles for adding dark overlay to hero bf1d292
  • change(homepage): hide stagingBanner on homepage fb6e319
  • change(header): use variable for homepage hero-block padding 89ff344
  • change(tokens): modified grey-4 color to point to a 10% shade from original color b406283
  • change(header): added min-height for mega menu needed for 1 items menus 18814f4
  • change(hero): hero section block integration #192 4ea2f40

🛠️ Others

0.5.0 - 2022-06-11

🚀 New Features

  • feat(hero): added storybook implementation of hero component #172 17b9d16
  • feat(hero): add hero block component and stories 6019fc8

🐛 Bug Fixes

  • fix(header): Internal links in mega menu d8ca135
  • fix(header): show active menu when clicking on children a54fa67
  • fix(header): accessibility and dropdown possition fixes 505ac36
  • fix(header): fix accessibility issue by David 783dcec
  • fix(header): dropdowns disappear on resize 52338fd
  • fix(header-topdropdown): dedupe html elements for topdropdowns cd8a2a7
  • fix(header): transparency class should apply on the current bg color or image f9a0033
  • fix(header): mobile dropdown now visible 34371b4
  • fix(header): dropdown disappears after window resize #116 fc7dd8b
  • fix(header-topdropdown): dedupe html dropdown elements for topdropdowns #115 f10a7a8

💅 Enhancements

  • refactor(megaMenu): update mega menu in header component 2d1ce45
  • refactor(header): update structure and variables of top bar af70909
  • change(header): renamed mega menu items href attribute to url 3ed8144
  • refactor(header): update main section and and add color variations f2f0fd1
  • refactor(header): minor updates on colors and widths a70129f
  • refactor(hero): add full-heigh control to adjust height a45cb7c
  • change(header): disable sticky setting until feature is more stable 1d7af95
  • refactor(hero):make button variant and inverted different button controls 7e182ca
  • refactor(header):main bar sticky on scroll up 9c9e7c6
  • refactor(headings): update heading sizes for mobile 19f3cca
  • change(header): hide first link(home) from header menu on site ae7f3b9
  • change(megamenu): typo correction and key setting on list.items 96d2c4f
  • change(header): use Link instead of a tag for menu items 9812b3f
  • refactor(header): add control for inverted logo 023ca45
  • refactor(hero): move quoted utility to h2 tag 7376676
  • refactor(header): add link for menu title inside desktop mega menu 24355d0
  • refactor(utilities): update hex with color token 8dc65ef
  • refactor(header): and mega menu to latest spec #114 44fcf68
  • refactor(header): update search input and file endings afab36f
  • refactor(header): add control that toggles transparency class on main section b8d4bdb
  • refactor(header): restore union dropdown after implementation 7e98bab
  • refactor(header): minor responsive fixes 16a0006
  • refactor(hero): align hero's text and meta seperately 4fa958f
  • refactor(hero):add button variant controls f362a7b
  • refactor(header): update search input 368962e
  • change(header): mark top level active menu item 665c449
  • refactor(hero):prettier & style changes d846884
  • refactor(header): add control for main section stickiness 2f07572
  • change(header): use viewport width for changing mobile text in header dropdowns b50fa58
  • refactor(header): add fluid font sizes 5f2743e
  • refactor(header) add position sticky & transparent for main section 29df772
  • refactor(hero): update variables with new design tokens 1d97922
  • refactor(Language List): render language dropdown as ul and li elements 3617442
  • change(header): introduced item class to the mega menu link content 00ca376
  • refactor(Language List): add less variables 7ccc1cc
  • change(header): disabled active menu when clicking on globalnav links 3f7b5ee
  • change(header): target link instead of span directly 9e865fb
  • refactor(header): remove unused imports 7e232db

🛠️ Others

  • Add item themes; override .block .ui.image width based on size 06010db
  • Move item icon themes to item.overrides 31e8921
  • Override only the width 8d49270
  • Override tile image in .block parrent 005655d
  • Update package.json 9dc3816
  • feature(item): added themes to item icons #190 a6a2907
  • update storybook header.topdropdown e58ac08
  • use volto-screen-helper width ea156aa
  • Add divider content for metadata field in Banner 327ad1c
  • rename to viewportWidth 32162e7
  • don't connect component to store 470b8ba
  • Add end of line 51639d8
  • behave as mobile under 480 only 11b99e1
  • make it account for all mobile-s,m,l 69e23ae

0.4.5 - 2022-06-08

💅 Enhancements

  • change(tabs): Add style for tabs accordion template #187 fb8adbf
  • change(footer): avoid react error by providing key prop to grid column ef0b193

🛠️ Others

0.4.4 - 2022-06-08

🚀 New Features

  • feat(divider): create story for divider b10a2e0

🐛 Bug Fixes

  • fix(divider): restore space between classes c595c15
  • fix(divider): Text colors and transform e524e10
  • fix(footer): story aria labels for social media links 254bdc7

💅 Enhancements

  • refactor(footer): update logos and less structure 66b8e0f
  • refactor(footer): first footer updates d18a2ee
  • refactor(footer): logo updates and adjustments 101bc9d
  • refactor(footer): use tokens and adjust spacing 2cb1669
  • change(footer): moved SubFooter logic to SubFooter.jsx from Footer story 902383a
  • refactor(Divider):add divider with content inside story e2d66dc
  • change(footer): added managed by section as properties 9328fc3
  • refactor(divider): remove custom divider d4870d2
  • refactor(Divider_:remove green color class & add tertiary 95f3018
  • refactor(footer): use remix icons for social links 5ef9aa2
  • refactor(Divider):remove clean class and use fitted prop 8d2be35
  • change(Divider): Rename color property to theme 0deffc8
  • refactor(footer): update links and logo align 7afbab9
  • change(footer): tweaked column sizes to the values before my changes fdf2718
  • refactor(footer): to latest figma design #182 3e0ba2b
  • refactor(footer): move subfooter logic to the proper component #185 3034577
  • refactor(footer): update controls b0b872b
  • refactor(testimonial): update divider 784450a
  • refactor(testimonial): changed divider color to secondary 84282f9
  • refactor(divider): remove custom divider from theme config a0409e8

🏠 Documentation changes

  • docs(divider): switch to secondary color 239844b
  • docs(divider): showcase path fix d5ea03f

🛠️ Others

0.4.3 - 2022-06-03

🐛 Bug Fixes

  • fix(edit): Fix columns/accordion inner toolbar padding fafbb52

💅 Enhancements

  • change(docusaurus): completed removal of description from guides 42424b9

0.4.2 - 2022-06-02

💅 Enhancements

  • change(docusaurus): moved color swatches around in the color guide 8a395fc
  • change(docusaurus): removed description from components and introduced category listing f220bf0
  • change(docusaurus): rename gap to space and added em spaces f5b042d
  • change(docusaurus): moved extra docs to webdev section 1ce0797
  • change(docusaurus): moved md_components files into webdev/md_components 73c1c08
  • change(docusaurus): added category yml for all sections 1740572
  • change(docusaurus): color guideline updates and spacing tokens documentation #148 c1154ba
  • change(docusaurus): modified story links to avoid broken usage tabs 78dc8d8
  • change(docusaurus): renamed several file id's so that they match the incremental naming sequence 11299c9

🏠 Documentation changes

  • docs(Docusaurus): timeline, testimonial, quote and tags aaa54ec
  • docs(spacing): add relative gap tokens 92abc8f
  • docs(colors): updated colors a28c99e
  • docs(tags/content): new page about tags and content 60be402
  • docs(Docusaurus): labeled icons f6a0f61
  • docs(typography): add font size and line height tokens 2ff65e4
  • docs(spacing): add spacing gap tokens 2d53727
  • docs(spacing): add missing gaps 442db46
  • docs(docusaurus): minor fix 6e66513
  • docs(spacing): aligned images e946fe5
  • docs(spacing): new image fcd3294

🛠️ Others

  • merge changes from develop into docusaurus token documentation a940138
  • perf(docs): restructuring order 8f4134d

0.4.1 - 2022-06-02

🚀 New Features

  • feat(languageLabeledIcon) : add new component 110558e
  • feat(LanguageLabeledIcon):add new component d00200c
  • feat(newTabLabeledIcon) : add new component 8f5cd31
  • feat(labeledIconGroup) : add new component 787d648
  • feat(DownLoadLabeledIcon) : add new component 6ea2fa1

🐛 Bug Fixes

  • fix(LabeledIcon) : fix lint errors 91b042f
  • fix(LabeledIconGroup) : fix links for tests daa1065
  • fix(LanguageLabeledIcon):bug fix & languages change 1436e2b
  • fix(LabeledIconGroup):fix based on Langauge & Download Labeled icon components changes 3015864
  • fix(newTabLabeledIcon) : add link item b1a9ada
  • fix(Labeled Icons):minor bug fix 00f3022

💅 Enhancements

  • refactor(labeledIcons): adjust new tab labeled icon to figma and replace px with rems 904615d
  • refactor(LanguageLabeledIcon):implement with pop up 0f3dd8f
  • refactor(labeledIcon): add group wrapper in labeled icon stories 4b7dd31
  • refactor(DownloadLabeledIcon):implement with pop up aa61f9b
  • refactor(labeledIcons): adjust language labeled icon to figma 5741e3d
  • refactor(labeledIcons): adjust download icon to figma and replace px with rems 4ae8530
  • refactor(LanguageLabeledIcons):minor storybook change 78f5544
  • refactor(LanguageLabeledIcon): set language code to uppercase and minor storybook change ac28693
  • refactor(labeledIcon): adjust paddings 9c1ecdd
  • refactor(labeledIcons): update margins for group labeled icons 5fa5ca9
  • refactor(labeledIcons): add variable for icon color 9f9d3cb
  • refactor(labeledIcons): update colors on download links c042642

🏠 Internal changes

  • chore(labeledIconGroup) : lint changes 535cee4
  • style(downloadLabeledIcon) : fix styling 6d8e3ac
  • style(downloadLabeledIcon) : fix alignment 4558017
  • chore(LabeledIconGroup) : lint changes ab36476

0.4.0 - 2022-06-01

🚀 New Features

  • feat(Carousel): create carousel for cards 2b0d737
  • feat(ItemwithIcons): Initial Item group with icons, new item variation 7f4ea47
  • feat(utilities): add file and basic utilities 05c88b2
  • feat(utilities): add file with basic utilities classes #173 855185f

🐛 Bug Fixes

  • fix(tokens): hsla function for shadows b8e5d37
  • fix(tokens): remove css var from less file a9c4224
  • fix(carousel):add storybook controls descriptions 269a603
  • fix(item): remove image width css from item.less 7b21cb2
  • fix(table): Set responsive breakpoint to @tabletBreakpoint 067e018

💅 Enhancements

  • refactor(item): import item.less in theme definitions c516374
  • refactor(Label):add corner,ribbon & basic label stories and styles e2bbbb9
  • refactor(Label):style changes based on label importance class ce4d5d1
  • change(tokens): rename gap to space and added em spaces 719efc4
  • refactor(item): add classes for size, set default to tile and add controls for grouped items d5a0405
  • refactor(tokens): add borders, shadows, shapes and z-index tokens 7069106
  • change(tokens): name spacing tokens gaps and added missing values up to 80px as documented 9fbd912
  • refactor(quote): Rename sourceInfo to extra info 76c2b40
  • refactor(item): WIP replacing unstackable with row e3a44de
  • refactor(tocens): add color design tokens 13bb165
  • refactor(item): adjust margins to match figma designs 6334581
  • refactor(carousel): remove title from story and color on card hover 12a1d7c
  • change(tokens): updated sizes with 4-8-16px increments 1f53d65
  • change(tokens): added size tokens to be used for width of elements cda5dea
  • change(utilities): values need important rule 96150d9
  • change(tokens): added also rem space values aedbbdd
  • change(tokens): updated z-index tokens with negative values 404efe4
  • refactor(tokens): add 14px font size token 8d8695d
  • refactor(docusaurus): restructured and improved sections navigation #174 b47b026
  • refactor(tokens): add 12 and 14px font size token #176 3681147
  • refactor(tokens): remove conditional border radius f0fe5ad

🏠 Documentation changes

  • docs(website): created new sections, improved website navigation 243f0be
  • docs(homepage): adding design system homepage with links for upcoming sections c9a9685
  • docs(docusaurus): copyedit, improved navigation 998762a
  • docs(website): restructuring, moved current DS docs to new folder 8bb612f
  • docs(homepage): copy editing ee37d6f

🛠️ Others

  • Release 0.4.0 f4bc509
  • feature(homepage): added Item group with icons #167 2ec99f5
  • feature(tokens): added borders, z-index, shadows tokens #171 74c1788
  • feature(tokens): added initial color design tokens #169 da3eae0
  • perf(carousel): added slick library ca9be51

0.3.1 - 2022-05-19

🐛 Bug Fixes

  • fix(input,segment): toggle inputs and padding fixes within Volto sidebar forms de030d6

💅 Enhancements

  • change(login): restored width of login container to 376px 0564293

0.3.0 - 2022-05-17

🚀 New Features

  • feat(Callout):create Callout component with Blockquote style 3d486b1
  • feat(callout): Align the Callout component with Volto slate component e9343ff

🐛 Bug Fixes

  • fix(testimonial): fix storybook arg names b9df52f
  • fix(table): tweak responsive table for extra long headers 7f9f9e2
  • fix(quote): fix color and padding issue 310d6b3
  • fix(accordion): Fix accordion active title color 57af165
  • fix(testimonial): remove info arguement 9593d95

💅 Enhancements

  • refactor(Table):add responsive mobile table story and styles aed69e6
  • refactor(testimonial): adjust to volto design | fix avatar image size 546070e
  • refactor(Quote):rename Pullquote component to Quote 9384a0c
  • refactor(Quote):rename Quote.Metadata to Quote.SourceInfo dfae8b1
  • refactor(Quote): rename Author to Source 6d400f6
  • refactor(Quote):move Testimonial component under Quote folder e2467c2
  • refactor(testimonial): readjust rounded card b419334
  • refactor(Table):wrap table with semantic ui container 24ac2bb
  • refactor(Testimonial):minor storybook bug fix 7b6d128
  • refactor(Callout): wrap story with semantic ui container ead362d
  • refactor(quote): update action name to match the functionality caf2e35
  • refactor(table): add borders to responsive table with celled attribute 8a71a67
  • change(table): make use of headerSortableWhiteSpace variable fd836fb
  • change(table): use the @mobileLandscapeBreakpoint for max 480px media query 90880ab
  • refactor(Quote):rename pullquote to Quote in Testimonial f54da19
  • refactor(Testimonial): change card class name e995c32
  • refactor(Testimonial): prettier changes 904594b

🛠️ Others

  • feature(tokens): added tokens folder for design tokens we can use in the system a542172
  • perf(lint): fix f2ef3ab
  • Release 0.3.0 8724b28

0.2.4 - 2022-05-13

💅 Enhancements

  • change(segment): brought back overrides from pastanaga into our theme 14efd02
  • change(container): removed padding from containers restoring thus the defaults c2ed813
  • change(grid-story): added container as grid width is influenced by container width 459f481
  • change(breadcrumb): removed padding from breadcrumb added by container c5df567
  • change(container): modified all outputted widths to align to grid 9f29cef
  • change(breakpoints): restore Semantic UI breakpoints, adding extra needed values e7f5b1e
  • change(container): restore maxWidth to 100% now that the last value is 1120px 8b55c58
  • change(header): wrap header globalnav links useful for editing section 10d4f56
  • change(breadcrumb): added vertical variant to the breadcrumbs like we do in Volto f405f84
  • change(breakpoints): added also contentBreakpoint for backward compatibility b6c9212

🛠️ Others

  • [JENKINSFILE] Add failure comment, no jenkins fail c325bf1
  • prettier changes 134da52
  • [JENKINSFILE] format PR comments 739438c
  • [JENKINSFILE] mention comment author in comment 39a26aa
  • [JENKINSFILE] remove debug, add error per stage 903eecd

0.2.3 - 2022-04-29

🚀 New Features

  • feat(CallToAction):add feat call to action ab53642

💅 Enhancements

  • refactor(button): add container to stories 6c02c19
  • refactor(tab): update vertical tab columns and content b473fab
  • refactor(call to action):render call to action with Button as="a" e7dfabf
  • refactor(button): update inverted button colors c822021
  • refactor(Tab):scrollbar change in mobile & vertical tab fix 0e34cbf
  • change(banner): added icon class to share icons 48e866e
  • refactor(Button): move button to forms folder 94996fc
  • refactor(Tab):minor change in secondary pointing menu variables 280b6c4

🏠 Documentation changes

  • docs(button): import call to action stories e4eed44

0.2.2 - 2022-04-22

🐛 Bug Fixes

  • fix(publicationCard): restore line endings 582859e
  • fix(form): added back overrides from Pastanaga theme a3f7ff8
  • fix(OrderedList) : add list only if sub list exists 8acbc8d
  • fix(label): update highlight label color d55bbb0
  • fix(publication card): run prettier 81a5bfc
  • fix(avatar) : fix naming convention for arg 84fc5fa
  • fix(tab): restore mobile font sizes 58f39be
  • fix(addForm): add min height to add form and fixed block chooser overflow ca4415d
  • fix(OrderedList): adjust margins to fourth sublists 663d384
  • fix(dropdown): being hidden because of third party css 7d353df
  • fix(modal): overflow hidden as clearfix of last child from modal b4923f5
  • fix(RelatedContent):fix merge conflict adc34bf
  • fix(button): labeled class needs to be placed after left or right keyword 53d1204

💅 Enhancements

  • refactor(card): prettier fixes e10e3d6
  • refactor(card): add card variations e16d05b
  • refactor(card): remove stories 0deb0ca
  • refactor(card):delete primary and secondary card stories 1f95d22
  • refactor(Avatar) : remake avatar as card variant ea77cdd
  • refactor(card): add styles for card variations 7407bd3
  • refactor(storybook): add story with related content inside of a tab dca008a
  • refactor(card): Rename variables from avatar to rounded be01316
  • refactor(avatar): update less variables and layer structure f965db1
  • refactor(PublicationCard):remake publication card to be a semantic card variation 5a0c6ab
  • change(button): simplified button styling fe892d6
  • change(button): simplified storybook naming and examples 9a7df4f
  • refactor(Avatar) : convert avatar component to card variation 2004a94
  • refactor(Related Content): change in grid and add see all button 955450e
  • change(button): added back button.overrides from pastanaga theme 3b55acb
  • refactor(card): add card class control 68c91a9
  • refactor(card):delete publication card variables & overrides files 6be8a03
  • refactor(OrderedList): rename TOC to Ordered List and add container to the story e00c4db
  • refactor(card): add card grid fluid story with no columns f38251c
  • refactor(list): remove horizontal control 1f5e576
  • refactor(avatarGrid): update less variables and layer structure db554a8
  • refactor(Related Content):show button when there are more hidden cards 57ff1c8
  • refactor(RelatedContent):change to use new card variant instead of publication card component 7cf424a
  • change(breadcrumb): brought back pastanaga overrides to breadcrumbs bca1c93
  • refactor(card):delete publication card folder & story 68bf773
  • change(buttons): modified basic and circular variant behavior c06fed9
  • refactor(card):tertiary variation minor story update 87b8dca
  • refactor(DescriptionList): add container to story d647c1a
  • refactor(List):render ordered list with ol,li tags 87813c1
  • refactor(OrderedList) : change table of contents story to ordered list cb6197c
  • refactor(publicationCard): update tag and name variables c109ad9
  • refactor(UnorderedList): update list as ul, list items as li and add container to strory 2c096e1
  • refactor(card):organize controls and minor bug fixes f3f6e35
  • refactor(less variables): publication card style changes c5a84e9
  • refactor(less variables): add less to related content e1a5543
  • refactor(RelatedContent):delete publication card component 2ed0ed4
  • change(button): basic button is again without padding, border and background 5a907c7
  • refactor(PublicationCard):remove link wrapper 5911a0d
  • refactor(less variables): change publication card height per viewport d7a5256
  • refactor(Timeline):change timeline icons b2fe0bf
  • refactor(publicationCard): replace px with rems 53bf8da
  • refactor(Related Content): change in related content grid bf856ce
  • refactor(List):render description list with dl,dt,dd tags ec669a7
  • change(button): show only labeled variant for buttons with icons bf49944
  • refactor(card): import image for rounded card ca5a47e
  • refactor(progress): add container to story dfb33bb
  • refactor(storybook): add publication card story with different description sizes 23af97b
  • refactor(List):render default list with dl & dt tags ece2280
  • refactor(storybook): add publication cards stories with longer description 37adefa
  • change(button): basic icon buttons no longer have box shadows c2f3ea3
  • refactor(card): remove story afc5f79
  • refactor(less variables): change card description line number per device 6946fda
  • refactor(card): update rounded card image path 8db3a85
  • refactor(DefaultList): add container to story f971193
  • change(button): bumped z-index of sidenav expand button 445ed8a
  • change(progress,label): color accessibility fixes #151 09cf6e3
  • change(button): text button now has an underline with a focus border like other buttons cdd9043
  • refactor(card): update card variation grids path 756589c
  • refactor(card): minor fixes 3a880d7
  • change(button): primary color is blue and secondary is green 53e0a0c
  • refactor(List):change styles to match with the tags lists are rendered 2673890
  • refactor(progress): update colors for accessibility ea2f454
  • refactor(card): move avatarGrid & relatedContent to Card folder 1959d52
  • refactor(Timeline): change storybook timeline colors to fix accessibility issues 79da8dc
  • change(segment): restore light grey background color for secondary segments 8716b08
  • refactor(relatedContent): adjust column paddings 8a1520d
  • refactor(storybook): clear up code 3ada154
  • refactor(card): use the rounded class for avatar grid 8c000f3
  • refactor(card) Update rounded card class 140b587
  • refactor(avatar): add variable for image border radius c23341c
  • refactor(label): add container to story 565101f
  • refactor(progress): update value color for accessibility error 6fc76f8
  • refactor(card):use jsx extension 413d328

🏠 Internal changes

  • chore(Avatar) : add container to stories 41b748c
  • style(OrderedList): prettier fixes ed95e4d

🛠️ Others

0.2.1 - 2022-04-08

🐛 Bug Fixes

  • fix(version): Switch to 2.0.0.alpha.1 83b8b8e

🛠️ Others

  • cleanup(loader): Remove useless HTML d1d180c

0.2.0 - 2022-04-04

🚀 New Features

  • feat(card) : add new default card color-schme 965adea
  • feat(label): Handle slate links and footnotes f382431

🐛 Bug Fixes

  • fix(buttons,toggles): border and background color when active 147629 #139 ea36f31
  • fix(checkboxes): background color when they are toggles 4b6ab67
  • fix(buttons): border set on basic buttons appearing on svg elements of Volto UI 69ca73f
  • fix(label): Zotero/Footnotes inside label 0ee4d58
  • fix(card) : add control for image url in storybook b28e530
  • fix(less variables):change font family e4bca9e
  • fix(storybook):minor bug fix 9fc53bc
  • fix(tag): fixes merged theme config eb30363
  • fix(Banner): prop types fix a270e5b

💅 Enhancements

  • refactor(tag): splits Tags component to TagList and tag, changes default tags style 78a5f8c
  • refactor(Banner):add banner share pop up in banner story c9688b2
  • refactor(tag): remove classes and actions that add background color ce9b6f9
  • refactor(Banner):change banner's image wrapper implementation 9153dd1
  • change(package): bump release version to 1.10.0 7e984c1
  • refactor(card): align cards and images, update less variables d47c978
  • refactor(card): add class inverted for default card 919a56e
  • refactor(tag): changes component name e1db068
  • refactor(tag): changes color metallicBlue to bottleGreen e4b68ac
  • refactor(less variables): change tag list mobile view fcded3d
  • refactor(tagList): update story to not use tag color classes 8b5b61b
  • refactor(Banner):minor bug fix ff8c352
  • refactor(Banner): add metadata field sub component 327b7e7
  • refactor(banner): add and adjust remix icon for banner action 1bf3ffa
  • refactor(banner): replace px with rem and adjust share popup padding a568329
  • refactor(Banner):add type class to metadata field and apply styles to it 86a2866
  • refactor(less variables):change tag list styles 8670087
  • refactor(banner): share items display flex on desktop 3ff8684
  • change(banner): added background gradient, share popup, metadata show and hide #136 2f5dcca
  • refactor(banner): update gradient 570ee1e
  • refactor(tags): removes hardcoded ':' ea58e86
  • refactor(card): remove card border bc77739

🏠 Internal changes

  • style(card) : add lint and prettier changes 9d9a773
  • style(tag): remove comments 501fcdf
  • style(tag): stylelint and prettier changes 08b6386

🛠️ Others

0.1.9 - 2022-03-25

🚀 New Features

  • feat(all): 1.9 release #124 0d3f6fb
  • feat(callout): Align volto-slate callout with blockquote style 9e0bb49

🐛 Bug Fixes

  • fix(inpageNavigation): restore hidden on top functionality c554e6e
  • fix(list): Fix TOC margin on 3rd level f17da79
  • fix(inpageNavigation) : add smooth scroll animation 42f6564

💅 Enhancements

  • refactor(footer): update visual and mobile margins 64f05af
  • refactor(header): restore union dropdown after implementation a7029c5
  • refactor(pullquote): adjust to the new figma design 78e4606
  • refactor(breadcrumb): adjust font sizes and import remix divider 5fcabaf
  • change(header): use viewport width for changing mobile text in header dropdowns 5a7868e
  • refactor(inpageNavigation): adjust to the new figma design 4073acf
  • refactor(tab): add max width for tab items 366d279
  • refactor(less variables):change pullquote styles 9ad94bb
  • refactor(Pullquote):change quote positions and add Pullquote.Metadata sub component 6bce35f
  • refactor(inpageNavigation): Update to remix icons 19a6061
  • refactor(inpageNavigation) : move icon & text to be in column 0953910
  • change(breadcrumbs): modified breadcrumbs template to behave like breadrumb template 490a559
  • change(package): bump release version to 1.9.0 43a6e4b
  • refactor(breadcrumb): adjust font sizes and import remix divider #120 09a3a01
  • change(menu): modified secondaryPointingItemMaxWidth to a value that equals to 250 ea138a1
  • refactor(pullquote): introduce meta section, use remix icons, integrate slate callouts #119 fd740c9
  • refactor(footer): updated visuals and gradients #117 e5c6d18
  • change(scrollToTop): feature inpage navigation revamp #121 3cf20a8
  • refactor(footer): update visual and gradient 764ec23
  • change(header): use 12px font size for mobile resolution dropdowns 6dad0fa
  • change(nav): added navDepth to 3 in order to enable mega menu integration c4f73fd

🏠 Internal changes

  • style(inpageNavigation) : lint changes 3641d78
  • style(inpageNavigation) : add less variables 0699c70
  • style(pullquote): create variable for icon font size fea9b0a
  • style(inpageNavigation) : add lint & prettier changes f8dd012
  • style(inpageNavigation): remove comment 1aee011

🛠️ Others

0.1.8 - 2022-03-18

🐛 Bug Fixes

  • fix(card): avoid long links from spilling outside of card body area 95b8951

💅 Enhancements

  • change(typography): set heading sizes as detailed in docusaurus typography section 189bf20
  • change(docusaurus): content tweaks, inpage navigation section #112 b62d1b1

🏠 Internal changes

  • chore(docusaurus): fixed grid tablet breakpoint value c7fbc09

🏠 Documentation changes

  • docs(docusaurus): capitalization remove bf8fa44
  • docs(docusaurus): update 1c04976
  • docs(docusaurus): comment address on pr 112 6e4fe3b
  • docs(docusaurus): color minor update 13f9fda
  • docs(docusaurus): tabs and breadcrump update d0547e5

🛠️ Others

  • doc(colours): add more content ec66248
  • Add divider content for metadata field in Banner f1e34bd
  • Release 1.8.0 fd6ba04

0.1.7 - 2022-03-15

🚀 New Features

  • feat(less): add global gap sizes 3c83f20
  • feat(icons): import remix css 29967fb

🐛 Bug Fixes

  • fix(menu): fix border overflow for tabs and pagination e88721f
  • fix(accordion): responsive and accessibility issues c225935

💅 Enhancements

  • refactor(menu): update paddings for tabs and pagination 533a509
  • refactor(accordion): import semantic icon for remix arrows 9aa77d8
  • refactor(all) icons, accordion, button and menu itml #108 52ed2ca
  • change(storybook): segment stories now contain several elements 98a7654
  • change(table): inherit header alignment instead of hard-coding values ebb5193
  • refactor(icons): add remix icons c4c1a92
  • refactor(container): restore mobile width to auto 2df184c
  • refactor(button): update action button hover color bb09d71

🏠 Internal changes

  • chore(docusaurus): docs delete 5f9d733

🏠 Documentation changes

  • docs(colors): corrections da64c4c
  • docs(list): default list showcase 8ded062

🛠️ Others

  • bug(form): input min-width more specific to not break volto interface 3f5b5d4
  • Update package.json 3dba28b

0.1.6 - 2022-03-11

🚀 New Features

  • feat(cards): add custom display for volto-block-image-cards 645096a
  • feat(PublicationCard):create publication card component & styles 3e5f9b7
  • feat(PublicationCard):create publication card component & styles 12cdd5d
  • feat(Related Content): create Related Content component 77eda95
  • feat(Related Content): create Related Content component 08d495b
  • feat(pagination,related) added several r3 components #105 08d47c1

🐛 Bug Fixes

  • fix(Related Content): limit publication card number to 4 e7df032
  • fix(less variables):rename publication card variables 55c6fb8
  • fix(Publication Card): add link to card and arg name fix 36a7c96
  • fix(radio): fix bullet scaling issue with firefox 5f02c95
  • fix(radio): fix bullet scaling issue with firefox dbb2e27

💅 Enhancements

  • refactor(form): remove custom classes and add container to form items 6b5442a
  • refactor(form): remove custom classes and add container to form items d1ec083
  • refactor(form): update form wrapper component a719576
  • refactor(form): update form wrapper component 0736ec7
  • refactor(form): adjust form items to volto theming 4213cfb
  • refactor(form): adjust form items to volto theming 374ffbc
  • refactor(breadcrumb): remove custom class anf and new variables b3cb83d
  • refactor(breadcrumb): remove custom class anf and new variables d5808ad
  • refactor(storybook): clear up unnecessary form elements controls f7e7d5b
  • refactor(storybook): small change in unordered list story 3ffd872
  • refactor(storybook): small change in unordered list story 6ce16e9
  • refactor(pagination): fix menu overrides for tabs that affects pagination fe8c4ca
  • refactor(pagination): fix menu overrides for tabs that affects pagination 3f4b726
  • refactor(Loader):remove image & add background image 70fe041
  • refactor(Loader):remove image & add background image ac38126
  • refactor(list): remove selection control a09b179
  • refactor(list): remove selection control 17bf710
  • refactor(storybook):unordered list minor change df2b727
  • refactor(storybook):unordered list minor change ef6db73
  • refactor(colors): remove metalic blue color b2f95b6
  • refactor(colors): remove metalic blue color 1eea33f
  • refactor(button): update variables b1774d8
  • refactor(button): update variables 061f3e3
  • change(blockquote): treat slate as a variation of blockquote component 19bd9a5
  • refactor(container): remove important from rules e984771
  • refactor(storybook):add textarea control to add/remove fluid class 475f540
  • refactor(container): remove important from rules 1cc6984
  • refactor(storybook): add required attribute to form fields fecee27
  • refactor(progressBar): update progress bar colors with vars c4ef1f0
  • refactor(progressBar): update progress bar colors with vars a44d73c
  • refactor(storybook): add required attribute to form fields 21da79e
  • refactor(list): adjust bullet size 2b29e4e
  • refactor(list): adjust bullet size 61c341c
  • refactor(statistic): add inverted background to global variables 1427e70
  • refactor(statistic): add inverted background to global variables ea25dfa
  • refactor(statistic): remove custom class 46cc560
  • refactor(container): update mobile width d548a44
  • refactor(grid): replace px with rem units e792f51
  • refactor(statistic): remove custom class b5c8e7c
  • change(docusaurus): updated template to change what's new title 3e15f4d
  • change(footer): added display variable for footer site logos d5b3c2f
  • refactor(grid): replace px with rem units f0331d0
  • change(github): auto deploy only on develop branch 11d6b4e
  • refactor(header): implementation in preparation for Volto integration #20 #89 95b136d
  • change(github): trigger autobuild when modifying templates contents 46094b1

🏠 Internal changes

  • style(list): prettier fixes f9e3b05
  • style(list): prettier fixes 8eb715b
  • chore(github): merge changes from develop to develop-itml 063bd6e
  • chore(github): build deployment only on develop branch a5a1b08
  • chore(github): build deployment only on develop branch bb455aa
  • chore(github): merge changes from develop to develop-itml 129c12f

🛠️ Others

  • Revert "chore(github): merge changes from develop to develop-itml" ca9520f
  • refactor breadcrumbs component, make it functional and customizable e902d69
  • rollback(cards): move custom display to volto-block-image-cards 2564b1e
  • bring back segment wrapper and make it attached 8458f03
  • no display: flex for blockquote added from slate 5595ce1
  • Add rule about code length a5f3652
  • Add indenting rule 15c44cb
  • fix warning related to proptype 946c6c6
  • fix profile section css overflow db5126f
  • Add rule about import sorting 804e188
  • don't use volto-slate 6a02976
  • remove segment custom width 1d3ea40
  • Add rule about naming vars 8f9020f
  • update style for accordion title 0b0d678
  • Release 1.6.0 e771e65
  • update bbcab87
  • add margin to <br> element to simulate gap as in design c6685c1
  • make breadcrumbs default size as tiny 589581f
  • remove uneeded style 82a8fb1
  • Add rule about hardcoded values e04e0df
  • Add file mode rule 65c9a93
  • Add DRY rule 66c9c3a
  • set profile section overflow to auto 71ab47f
  • Add Sonarqube tag using eea-website-frontend addons list 647a6e3
  • removed override already present in card.less 50d2ab2
  • update 7a1d482
  • Add functional components rule; add classnames rule 91a0b06
  • added comment about need for removal of this fix later 65b8166

0.1.5 - 2022-03-08

🚀 New Features

  • feat(cards): add custom display for volto-block-image-cards f49ffb6
  • feat(KeyContent): add new component 2534c54
  • feat(docusaurus): Updated developer guidelines ca146ff
  • feat(storybook): add testimonial component 55d9747
  • feat(storybook): add AvatarGrid component b668445
  • feat(storybook):add Loader component f675834

🐛 Bug Fixes

  • fix(breakpoints): fix largest screen breakpoint bug on scaling e4a11c8
  • fix(profile): section css overflow and padding issues #95 bb9eb0f
  • fix(storybook): lint auto changes for AvatarGrid b8e74f1
  • fix(components): add grid structure to various components cc33546
  • fix(header) re-added span tags removed in pull request #74 00702d7

💅 Enhancements

  • refactor(button): styling updates 37afda5
  • refactor(tab): updates on variables and overrides 54bf703
  • change(blockquote): treat slate as a variation of blockquote component 5e8a8b8
  • change(footer): added display variable for footer site logos 2f942b4
  • refactor(checkbox/radio): remove header from message and adjust top position of bullet 4a072b3
  • refactor(color): remove secondaryColorDarken variable 74c8ba0
  • change(docusaurus): updated template to change what's new title 58f58c8
  • change(github): auto deploy only on develop branch bfa35a3
  • refactor(header): implementation in preparation for Volto integration #20 #97 cddda20
  • refactor(breadcrumbs): component, make it functional and pluggable #32 #94 9f42e80
  • change(card): added styles for volto cards integration #92 a46ac21
  • refactor(grid): remove column count from example ac0e9cf
  • change(github): trigger autobuild when modifying templates contents 5f7d152
  • refactor(grid): remove custom grid 1d978a9
  • refactor(Form):change form field wrapper implementation 73cdd6d
  • refactor(message): update colors to match design 633ce31
  • refactor(checkbox/radio): update variables and remove important rules ad533b4
  • refactor(less variables): add variables to less for new components 47df026
  • refactor(Tab): fix vertical tab alignment 401bdf2
  • refactor(lint changes): add lint changes 6f6847f
  • refactor(inpageNavigation): adjust to volto theming 62f74ea
  • refactor(message): updates on styling b4cf850
  • refactor(banner): update class name ef0969b
  • change(github): use develop for auto pushing a32a723

🏠 Internal changes

  • style(design-system): unix eol 631fa90
  • style(checkbox/radio): prettier fixes a04939f
  • style(design-system): unix eol 3c753f0
  • style(message): stylelint fix 5b75057

🏠 Documentation changes

  • docs(docusaurus): visuals guidelines 544a950
  • docs(docusaurus): search guidelines 0fb229d
  • docs(docusaurus): loader page 892a25d

🛠️ Others

  • Reformat header.less 1f99dfc
  • Close menu when changing path 65daea9
  • refactor breadcrumbs component, make it functional and customizable 4ec374e
  • rollback(cards): move custom display to volto-block-image-cards 79d4c89
  • Open overlay menu on global menu click cc749bc
  • bring back segment wrapper and make it attached 9f413ff
  • Use renderMenuItem also in mobile menu 02de0bb
  • Fix clicking outside closes menu af52664
  • Cleanup args in header story 2bf6a30
  • fix warning related to proptype 824b9be
  • fix profile section css overflow 8fd2654
  • don't use volto-slate 70ca3d4
  • remove segment custom width 4a60d84
  • update 96f4af0
  • Fix TopDropdownMenu component rendering in mobile a4626de
  • Add usePrevious hook 797faba
  • make breadcrumbs default size as tiny 3c8e1c6
  • Update package.json fa020cb
  • Add rule about hardcoded values 0c6912c
  • set profile section overflow to auto 8db62bb
  • added comment about need for removal of this fix later 6fdbd71
  • Add Sonarqube tag using eea-website-frontend addons list 6051724
  • removed override already present in card.less 93c4e5a
  • Remove console.log calls 8a3a4cb
  • update 81bb7d4
  • Update comment ffa2400
  • merge develop into this branch ad5b388
  • WIP a8d97f1
  • Use header.less from develop branch 99edbc6
  • WIP 57b5783
  • WIP 785da36
  • WIP 5d1eba9
  • adds Tags e37fc19
  • Add useClickOutside hook 70364c8
  • Implement outside click handling fa6f818
  • Simplify overlay menu template 28b0478
  • fixes less variables, fixes tags positioning cc19b9b
  • WIP 15bc0f4
  • no display: flex for blockquote added from slate 312a893
  • Add rule about code length 318cd48
  • Add indenting rule d589685
  • Add rule about import sorting cd337c1
  • Add rule about naming vars b112de0
  • Bring back classNames from header subpopup e477a51
  • removes tags hashtag from jsx 6b8b3e9
  • WIP d481324
  • fixes undefined on empty classes 4b29080
  • stylelint changes a5ab830
  • Footer link color @white 578e4f7
  • add margin to <br> element to simulate gap as in design 9ab9a97
  • impors colors from site variables 6117267
  • small fix for the link in footer action 72df049
  • remove uneeded style 66e9064
  • use proper naming conventions for var naming 596e314
  • Add file mode rule 805baa7
  • use less variables b43ac8d
  • Add DRY rule 2f1584e
  • Add functional components rule; add classnames rule 1b2915e
  • fix z-index of header 7d2a5d6
  • Remove comment 7d120b1

0.1.4 - 2022-03-01

💅 Enhancements

  • refactor(pagination): adjust to volto theming 06cc3b6
  • refactor(Form):create form field wrapper file 95b9934
  • refactor(megaMenu): update margins for menu items 230e476
  • refactor(megaMenu): update gradient 47f2ea4

🏠 Documentation changes

  • docs(docusaurus): divider page c6bb238

🛠️ Others

0.1.4-beta.0 - 2022-02-25

🚀 New Features

  • feat(github): added feature and bug reports templates with our guidelines as checkboxes 1549093

0.1.3 - 2022-02-25

🐛 Bug Fixes

  • fix(all): change eol to unix 62e7224
  • fix(banner): separate url value f9c9140
  • fix(all): merge eol c68f6e0
  • fix(blockquote): align self property now uses a valid entry ec76163

💅 Enhancements

  • refactor(megaMenu): new implementation ff013af
  • change(volto): removed customizations made for ims theme from volto-eea-design-system bc8d514
  • refactor(Timeline): divide to sub components and change files to .jsx 3e2bd3b
  • refactor(header): update variables 4e5d08d
  • refactor(Header): link header's menu to mega menu 08406d8
  • refactor(Menu): change mega menu implementation 455a51b
  • refactor(Grid):minor changes and delete extra files 272585d
  • refactor(timeline): adjust to volto theming b98641a
  • refactor(megaMenu): fix link hover issue for tablet 564e972
  • refactor(header): add remix icons and minor updates c9c97dd
  • refactor(Header): change header buttons implementation 6608b8c
  • refactor(Header): add sub components and change existing Main 74c35a3
  • refactor(table): adjust to volto theming ab7a0e8
  • refactor(Footer): delete Actions & ThemeSites files and clear imports 7a78456
  • refactor(header): update variables 326655a
  • refactor(Breadcrumb): add react router link and minor bug fix 073a3a3
  • refactor(Header): show menu on search & minor bug fix 4d49a8a
  • refactor(List): add extra default list story 95665cd
  • change(docusaurus) change generation of what's new section and bump package version 6c35cff
  • refactor(Footer): minor code changes 67cb4bc
  • refactor(Menu): add class to mega menu items for styling 19baa34
  • change(accordion): modified default accordion stories titles with real accordion names cf11cc8
  • refactor(Header): accessibility image alt fix a7347a6
  • refactor(header): adjust to volto in progress 760beca
  • refactor(Header): header items as storybook arguments 388c752
  • refactor(banner): update less variables 35b0a98
  • refactor(banner): actions as buttons; don't hardcode url for banner image; subcomponentize Banner, add Banner.Action; add developer guidelines on inline styles and line endings; 6dd5a41
  • refactor(blockquote): fix responsive margins and sizes rems 209f94f
  • refactor(Input): label position and style change 970074a
  • refactor(header): update dropdown menu 32eb0fa
  • refactor(timeline): theming updates c80c9aa
  • refactor(Blockquote):remove image stories a6357ca
  • change(docusaurus) proofread blockquote usage section and removed unused api section 0bb29fd
  • change(infrastructure) cherry-pick fix 9639243 skipping jenkins on auto commits fc744cd
  • change(ci) build storybook and docusaurus only when pushing to develop-itml branch 4de0cbf
  • change(infrastructure): modify whats new doc when committing the auto deployment 39df33e
  • change(blockquote): introduce float argument for blockquote with image storybook 8fc7290
  • refactor(pullquote): add word break 2245e53
  • refactor(Banner): minor bug fix b9073b6
  • refactor(table): fix th font weight a96a0a7
  • refactor(comment): remove avatar border radius d42c37b
  • refactor(banner): adjust title size 7a24d9c
  • refactor(Image): change image path a580da6
  • change(infrastructure): specify that docs folder contains changes for deployment a1ca915

🏠 Internal changes

  • style(input) prettier fixes e83fa0c
  • chore(storybook): prettier fix 354c7b3
  • chore(design system): technical commit for edw integration tests 9f76035
  • style(storybook): prettier fixes 3c9ad34
  • chore(infrastructure) updated branch with changes from bitbucket 77866f8

🛠️ Others

  • doc(colours):fix color to better show primary ones 705b789
  • doc(colours):change font size to fit text in one line 4ad7516
  • bump package release to 1.3.0 f3cfe4f
  • Refactor banner into content subcomponent f8df238
  • lint fixes cda322d
  • rollback don'ts grammar change and disable unresolved import for Banner.stories.jsx a1bd715
  • Add space line in component d4d1a5f

0.1.2 - 2022-02-17

🚀 New Features

  • feat(blockquote) added blockquote styles as a custom module d30662e

🐛 Bug Fixes

  • fix(inpageNavigation): hide at the top of the page 97ef500
  • fix(footer):missing image ac91a29
  • fix(comment):fix broken image 8125dc1
  • fix(message): fix font loading fdc498e
  • fix(logo): logo change 5f8c8af

💅 Enhancements

  • refactor(storybook): multiple components fixes 4a3ff51
  • change(infrastructure) re-enable integration tests for auto release stack ce8daf8
  • refactor(storybook): global site files styling update f3770f1
  • refactor(storybook): multiple components 9277aac
  • refactor(footer) adjust to volto theming update a59f1c3
  • refactor(header): minor styling update dd6b55c
  • refactor(Header): change header mega menu 7559b57
  • refactor(banner): adjust to volto theming 451b949
  • refactor(accordion): minor styling update aeaf25f
  • refactor(footer): adjust to volto theming bdff176
  • refactor(footer):mobile responsiveness 14822be
  • refactor(storybook): main and custom less files update 1607760
  • refactor(timeline): update after removing timeline addon f54d380
  • refactor(Footer): replace with subcomponents 378c652
  • refactor(Header): header change 029e850
  • refactor(Header): change header bar 2b766fd
  • change(docusaurus) use itml branch for docusaurus deployment 6e286c5
  • refactor(accordion): adjust to volto theming 971fcb8
  • refactor(Header): add sub components 7f955db
  • change(docusaurus) tweak auto deployment to always commit changes from docs a2940da
  • refactor(banner): less and variables files created d5b1a8a
  • refactor(label): adjust to volto theming 3c945e1
  • refactor(message): adjust to volto theming 3e950fc
  • refactor(Footer): add sub components and props c3d1487
  • refactor(modal): modal and confirm adjust to volto theming 83b60e9
  • refactor(comment): adjust to volto theming 84348c3
  • refactor(storybook):adjust headings 32f64f9
  • refactor(Header): add comments to header menu c2c83b2
  • refactor(Accordion): clear up accordion stories code 4e59b8f
  • refactor(segmant): adjust to volto theming 3ab211e
  • refactor(button) minor styling update 8782bb2
  • refactor(banner): change image position cdd76d5
  • refactor(breadcrumbs): update less variables 640817e
  • refactor(list): adjust to volto theming 1079c73
  • refactor(timeline):adjust timeline module 213eb11
  • refactor(blockquote):adjust to volto theming 5eec87f
  • refactor(progress): add progress bar colors ccf3c98
  • refactor(pullquote):adjust to volto theming fee4466
  • refactor(Header): change mobile mega menu c7ecf18
  • refactor(statistic): adjust to volto theming b726e49
  • refactor(button) adjust to volto theming eb257f8
  • refactor(form): minor styling update 79934b2
  • refactor(Footer): create Actions & Sites sub components 446840b
  • refactor(inpageNavigation): adjust to volto theming 85c631a
  • refactor(Inpage Navigation): changed button's display 36e5b4f
  • enhancement(docusaurus) modified headings to be within release versions 19ace30
  • refactor(storybook): move components to ui folder cb91f88
  • refactor(Header): change mega menu de0fc6b
  • refactor(Pullquote): divide Pullquote to sub components 34413c4
  • enhancement(docusaurus) replace changelog when auto-building docs Refs #145331 da25c0e
  • refactor(popup): adjust to volto theming d0d192d
  • refactor(card):adjust to volto theming 2ab6f91
  • refactor(item): adjust to volto theming 89a16af
  • refactor(pullquotes) remove unnecessary variables e0d20a3
  • refactor(progress):adjust to volto theming d1ab950
  • refactor(blockquote) change variables names 36fd5be
  • refactor(comment): adjust font sizes 0311ed1
  • refactor(InpageNavigation): clear up code 1d7afdc
  • refactor(container): change variable name for computer padding 26d123f
  • refactor(inpageNavigation): remove imports 25c1d1c
  • refactor(storybook): update ui index components exports ce78d47
  • change(infrastructure) auto build storybook when pushing to develop-itml branch of volto-eea-design-system e9aa5bc
  • refactor(storybook): delete demo stories 8b58d02
  • change(docusaurus) align deployment steps for building docusaurus 37e4ce0
  • refactor(storybook): remove components from customizations folder 8930ede
  • refactor(tab): minor styling update 1252ad0
  • refactor(comment): change avatar src e5f9c4c
  • refactor(banner) : change file type and folder 878742b
  • refactor(form elements):changed text 919beea
  • refactor(Image): change image src b971084
  • refactor(Pullquote): add component propTypes d32c5e6
  • refactor(blockquote): adjust font sizes d71a3ce
  • refactor(footer): update font sizes 1c91c35
  • refactor(Blockquote): add component proTypes ea02649
  • refactor(logo): update image f611372
  • refactor(docusaurus): restore config f2c5239
  • refactor(blockquote): update component name 572e655
  • refactor(header): fix story header import ceda6c7
  • change(infrastructure) auto build docusaurus when pushing to develop-itml branch 7bebdf5
  • refactor(storybook): remove components from customization folder 4a9bb9b
  • refactor(banner):story rename 56ff603
  • change(testing) removed navigation from cypress tests until component is finished 5549f4c
  • refactor(Segment): change to .jsx extension 5cb35d8
  • refactor(Pullquote): change to .jsx extension 564cf7e
  • refactor(PopUp):change to .jsx extension dcb24ff
  • refactor(InpageNavigation): change to .jsx extension dfefce3
  • refactor(Blockquote): change to .jsx extension 44a1645
  • refactor(heading): story name update aa10f34

🏠 Internal changes

  • style(footer): prettier fix 902c257
  • style(storybook): prettier fixes 59f941d

🏠 Documentation changes

  • docs(docusaurus):multiple page updates 2aba73e
  • docs(docusaurus):update page content 565697f
  • docs(grid):update components grid 60eb083
  • docs(docusaurus): page adjustments 0641eac
  • docs(docusaurus):updated various pages f860176
  • docs(docusaurus): logo change 3af5e5c

🛠️ Others

  • added sortable table stories and descriptions 6d44dd7
  • Layout components theming 5861013
  • recovered files from origin a4ac04f
  • grid component & stories changes 4a5752e
  • Updated what's new section with actual commits from volto-eea-design-system repo fc5e3c3
  • Docusaurus title possible fix. db699e7
  • form elements stories added description & default values 6b4f6eb
  • removed API tabs 58aa928
  • Layout updates 854f388
  • Refs #142123 removed extra customization of semantic.less: ab9de81
  • added page-header,footer and grid in docusaurus 660c8e3
  • Manual docs build and commit 666eb6a
  • added svg & png files f1338d5
  • added missing components to docusaurus 934dfd8
  • Control descriptions updated 56581eb
  • Grid updates 700332d
  • Button theming update 0ec68b6
  • site variebales & overrides changes 7251162
  • Table and Tabs theming 49f0860
  • Responsiveness updates 48e1351
  • added various components to docusaurus 550d719
  • Checkbox and radio updates 24652a2
  • remove images from typography and colour docs 8493e92
  • added guidelines' text and finished all components 02d75fc
  • added more missing components in docusaurus 8be8263
  • Prettier changes on docusaurus 5f1e5eb
  • Grid updates ae09945
  • Minor fixes for tests 3bdf306
  • Layout updates 8b7a4dc
  • Footer and TOC theming bb3d3c4
  • Refs #145331 manually commit changelog until autobuild is stabilized 93168b0
  • label component changes df8c0ff
  • added several sections to the theming guidelines ff1a649
  • Updated removed files. 84f9b8c
  • added more docusaurus components 52a3b9e
  • Progress Bar 9f2efc9
  • Modal and Confirm updates 3b306c6
  • Add proper changes to whatsnew meant in previous commit 40f78e3
  • Form Descriptions de0dfbc
  • Prettier fixes 1337e6f
  • Deleted files b82f982
  • add new images for spacing 7b7b2c4
  • Messages Theming ad621a3
  • added new content to docusaurus 1c83452
  • Minor less updates a36a8bb
  • Tabs and lists updates e37eef1
  • Inpage nav and timeline components 76f0f82
  • Prettier updated files 679b9d2
  • dropdown initial d8aef26
  • Prettier changes f068af0
  • List initial 6d3b969
  • List story updated e96a6f6
  • Statistics updates 74bf639
  • styling c169cc0
  • timeline comp storybook changes 1f42686
  • feature(docusaurus) added theming guidelines ded1f04
  • Properly commented out integration tests. 48b3a15
  • Reattempting commented out integrations tests. 3dd8211
  • Button theming 4231e1c
  • Card initial 06dace5
  • form element storybook changes c4b06aa
  • Pagination theming 2a80175
  • Accordion theming 8061bf9
  • global var updates and radio story 9526ee2
  • created pullquote component & stories df35563
  • Item stories added description & default values 9d459f2
  • storybook clean up code bffd326
  • List updates 28f1b53
  • Button classes updates 788c289
  • Prettier fixes 678c9be
  • Removed header title from partial docusaurus components. ed7c45e
  • created banner component and stories 9be170f
  • Breadcrumb stories description & defaultValue -- clean up code 186ab65
  • Refs #142123 added customization of semantic.less: 1e02356
  • Card stories added description & default values f6b408f
  • Statistic and accordion updates 16064ce
  • breadcrumb component & stories changes 5bceb98
  • Container initial 3eb7155
  • doc(docusaurus):Fix text for various parts bfd3fa2
  • blockquote component & stories 879b640
  • Refs #143412 removed doc comments breaking doc building e6a6756
  • Popup updates ce2d641
  • Global variables for colors and borders added 6e5fbd6
  • Tab stories changes 5429cfb
  • Confirm stories added description & default value 85cda14
  • Kebab case class names b41cd07
  • Card and Comment class updates 3899465
  • Accordion updates c97ba39
  • item stories changes 772e41f
  • Accordion class updates 9cdde86
  • Comment stories added description & default value cb6f25b
  • Accrodion stories description & default value ab8fb88
  • Pullquotes updates c598421
  • Modal and confirm class updates 0ae47e6
  • Tab and paggination updates 96796ff
  • Form Updates e986a9f
  • Classes renamed 73c8c3d
  • List and item less updates ce0de17
  • Confirm theming 36e20ce
  • container overrides changes 4b3970b
  • Docusaurus theming fc4a8c5
  • refacto(headings): update mobile headings sizes b2e9f83
  • list stories and style changes c61db53
  • Tab theming e31e6c3
  • Message and pagination classes updates c230687
  • Segment initial d5724fe
  • Refs #143412 removed doc comments from api_markdown breaking doc building efeacba
  • Timeline and responsiveness updates 1ed1524
  • Refs #142123 use swap font-display for performance reasons 083738f
  • Breadcrumb stories minor changes 3d0d17c
  • Table component stories minor change 0bf4083
  • List stories changes a64b304
  • blockquote component minor changes cdf71a8
  • ckeckbox stories minor change 6d6e508
  • image component storybook changes 91290ec
  • button overrides changes d5b78dd
  • accordion overrides changes fdcf7d5
  • Accordion component and stories changes 5079247
  • Card theming 23bbb9d
  • statistic overrides changes 2b11cb5
  • Refs #143412 build docs only on pull request like we do with storybook 473bb87
  • Card component stories minor change | added link icon deb423a
  • comment component stories changes f1c5e75
  • Accordion component bug fixed 815e91d
  • Refs #145331 use iso date to release so that we see also time ceedf08
  • correct connfig for doco 93e1313
  • Item updates fae93d4
  • added layout grid 2e6be55
  • tab overrides changes 87aaf32
  • message overrides changes 6dccfca
  • segment storie changes 296371f
  • progress component stories changes df10c2e
  • message comp storybook changes c86b405
  • Accordion cmponent stories | minor bug fix 6de0d81
  • Refs #145331 add all changes when auto building docusaurus ce11cce
  • perf(timeline):removed semantic timeline package 0aeb34a
  • Tablet Breakpoint update b229c27
  • Refs #143412 set storyBook Url to eea.github.io b7fdecb
  • bump package version to signaling of a major release c835f1d
  • small commit to trigger deployment of storybook and docusaurus be46ea3
  • doc(accordion):revert previous change 3de02da
  • fix typo for caption @desktop line-height pixel number 1671552
  • Commented out integration tests. 574cfec
  • popup overrides changes a9555e3
  • container component stories fixes 692cfce
  • Added timeline to package json fixed f2e93e0
  • Refs #142123 modified import of volto-eea-design-system icon.less: a7fab7d
  • Refs #142123 reference icon.less from this package: 5616e6d
  • Menu component stories change 2797716
  • Image stories minor change ddb9f1d
  • card component stories changes 6ccba1e
  • Added timeline to package json 93031d6
  • table stories code clean up b7b2a56
  • Refs #143412 removed extra baseUrl from docusaurus config 79f36da
  • Accordion stories minor change ffe808a
  • Theme assets 3f4bea4
  • Merged with develop 167ec9f

0.1.2-beta.2 - 2022-01-03

0.1.2-beta.1 - 2021-12-22

🛠️ Others

  • Tab component stories minor changes 4690a6f
  • Comment component stories minor changes a87cb6a
  • Form stories changes fc30c90
  • Grid component stories minor changes 798fdd0
  • Image component stories minor changes be93385
  • Menu component stories minor changes cb1f9a8
  • Dropdown component stories minor changes 57cf954
  • Header component stories minor changes 264fd46
  • Confirn component minor changes 9a00bc1
  • Item component stories minor changes 6994fa0
  • Label component stories changes 5cc5843
  • Container component stories minor changes e6e40b3
  • Message component stories minor changes ba9d377
  • Breadcrumb component stories minor changes ff7a176
  • Modal component stories minor changes af1fe6a
  • List stories changes 0016042
  • Button component stories minor changes 690dfd2
  • Radio component stories minor changes 84eac30
  • Progress component stories minor changes e676357
  • Pagination component stories minor changes b1af226
  • Segment component stories minor changes 5f8c7ef
  • Refs #143412 eslint fixes for component stories badcb91
  • Table component stories minor changes 7c104b8
  • Refs #143412 more eslint fixes a88c091
  • Refs #143412 warn for broken links instead of throwing bd5821c
  • Refs #143412 merge changes from develop-itml to develop branch bca28b9
  • made tabs dynamic for api tab ea37ecb
  • Basic storybook/Docusaurus components 840ab60
  • created List directory & srories based on semantic-ui List component 51f1901
  • made tabs as component easy to call for other components 07bae49
  • Popup Component | minor fixes 2ff9908
  • created stories for Tab component 95e3a73
  • created Table directory and stories based on semantic-ui Table component e16115d
  • List component stories - minor changes de11343
  • created stories for Comment component a20f884
  • created stories for Grid component 360d2a8
  • created stories for Image component 3c1d2bc
  • created stories for Menu component 17e3b37
  • Added untracked files 75f0afd
  • created Dropdown stories d6a2538
  • created Header component stories b833979
  • created stories for semantic-ui Confirm component 6fddccc
  • created Statistic directory and stories with semantic-ui Statistic component cd62498
  • created Item component stories 90ec2be
  • created stories for Container component 41934f6
  • created Label component stories 71732f6
  • created Message component stories adcbeab
  • created Modal component stories c25409d
  • Breadcrumb component stories and minor changes 6264d92
  • created Pagination component stories 57cdad3
  • created Segment component stories d8d01d7
  • created stories for Radio component 1fd062d
  • Menu stories minor changes 6ba5e0d
  • Statistic component stories minor changes 3c874a5
  • Card component stories minor changes 290bda8
  • Accrordion stories minor changes 2ee3f59
  • renamed Demo folder to Layout b9f6d05
  • remove test exclusion 94dba3e
  • Accordion component stories minor changes e672d59
  • fix docusaurus url (removed trailing /) b6c59fc
  • Item component stories - minor changes f0a9902
  • eea logos and assets b435b51

0.1.2-beta.0 - 2021-12-18

🛠️ Others

  • Refs #140454 added github action to build docusaurus to the develop branch abe6a72

0.1.1 - 2021-12-16

🛠️ Others

  • Refs #140454 changed the following to volto-eea-design-system: 6791d41
  • Refs #140454 corrected base url for docusaurus website build 98271b3
  • Initial test changes on design system/docusaurus. 9dad612
  • After prettier check 9ec40b4
  • Refs #140454 restore SearchWidget.jsx content and removed dummy text from docs intro page 7505df8
  • Refs #140454 added references to eea and the storybook in the docusaurus footer 42bbfcd
  • Refs #140454 lint fixes 9502f2b
  • Add SonarQube badges a4e0a40
  • Refs #140454 brought changes from develop-itml and upgrades docusaurus 207c873
  • Refs #140454 removed extra content not needed by the docusaurus site bc68ebe
  • Refs #140454 updated docusaurus to latest beta d68ed8a

0.1.1-beta.0 - 2021-12-09

🛠️ Others

  • Refs #140454 moved header and footer templates from volto-ims-theme: e2d5e56
  • Refs #140454 added website folder with docusaurus site skeleton 6fd15f4
  • Refs #142794 added commented implementation of the header and footer area: 773ad87
  • Refs #140454 changed the following: 4137ec4
  • Refs #140454 removed storybook from volto-eea-design-system: a129ffb
  • Refs #140454 added storybook as a dev dependency: e04ae4e
  • Refs #140454 updated Breadcrumbs.jsx to latest version: 63fe507
  • Refs #140454 we should use jsx and not mdx for storybook tests 3668e66
  • Refs #140454 updated eea-design-system readme with extra info on package contents d2efc3d
  • Refs #142010 - Optimize Volto-addons gitflow pipelines 3af46d2
  • Refs #140454 Renamed folders of docusaurus website: 15bca74
  • Add demo story 757c409
  • Refs #142794 enabled minimum css so that header looks decent adbe233
  • Refs #140454 use the develop branch for the readme linking, it's always more up to date 23dcf16
  • Refs #140454 added missing themes reference for the eea theme e9ca244
  • Refs #140454 modified assets imports after move to volto-eea-design-system 2250cc7
  • Load footer in segment 80d38a9
  • Refs #140454 bump package version to 1.1.0 from 0.1.1 from develop branch: 1314039
  • Refs #142794 keep toolbalWidth variables in case design system runs in an older version of Volto 1a8b305
  • Refs #142794 changed the following: fbb80b1
  • Refs #140454 moved storybook scripts to the scripts section 705c4c3
  • Refs #140454 removed dangling comma 514f24d
  • Refs #140454 changed link to the start of the docs 0e16fdf
  • Refs #140454 add h1 to the list of elements that are max 800px and centered 7d3c30f
  • Add Sonarqube tag using ims-frontend addons list 8d657d0

0.1.0 - 2021-11-17

🛠️ Others

  • Refs #140454 changed the following to volto-eea-design-system: 40d2af6
  • Refs #141204 elements folder now has the variables and overrides from pastanaga theme 595b4e6
  • Refs #141204 use font awesome from SemanticUI instead of Pastanaga: 4e273ca
  • Refs #141204 removed the components customizations from volto-eea-design-system: c98c260
  • Refs #141204 added customizations folder from volto-ims-theme to volto-eea-design-system: ff4bf44
  • Refs #141204 modules folder now has the variables and overrides from pastanaga theme f2841b6
  • Refs #141204 customized Comments.jsx to remove unnecessary container b2e95d7
  • Refs #132149 added initial commit for volto-eea-design-system: 2934b91
  • Refs #141204 collection folder now has the variables and overrides from pastanaga: 213d496
  • Refs #141204 removed search widget customization, we can use volto-ims-theme for that file b7e8b0c
  • Refs #141204 stylelint quick fixes 5595925
  • Refs #141204 changed the following: 769f4f9
  • Refs #141204 changed the following to the eea theme: 06d8d86
  • Refs #141204 eea site.variables now use all values from pastanaga's site.variables 6535c0f
  • Refs #141204 simplified container overrides: 5125003
  • Release 1.0.0 177d0ce
  • Refs #141204 globals folder now has the variables and overrides from pastanaga theme 116a0c3
  • Refs #141204 changed the following: 2e7f423
  • Refs #141204 modules folder now has the variables and overrides from pastanaga theme: 27a201d
  • Refs #141204 text elements are now with a max width and centered within content-area: bbed7bb
  • Refs #141204 added main.variables entries from pastanaga to eea theme 1cbbc55
  • Refs #141204 modified theme image imports for component customizations ef3238a
  • Refs #141204 modified container width to be auto: 2e8d2e0
  • Refs #141204 modified several icons to use the \f values instead of \e: c397145
  • Refs #141204 changed the following: c518eda
  • Refs #141204 ensure that main column isn't enlarged over the sidebar section on edit f7a2868
  • Refs #141204 changed the following to the form styling: eb92e05
  • Refs #141204 modified path of theme folder location for image selection f8cca45
  • Refs #141204 added missing mobileScrollbarWidth variables introduced as part of the mobile navigation pull request 444c78d
  • Refs #140454 reference font and image path from ~volto-themes instead of relative ec93ed3
  • Refs #141204 ensure that Volto doesn't crash when site module is set to eea: 51f2f27
  • Refs #141204 added tiny size prop to Breadcrumbs in order to have it as 12px 56a12e2

0.0.1 - 2021-11-17

🛠️ Others

- +

What's new

EEA Design System (1.0)

Components ready to be used

The following components are ready to be used as Volto blocks, slate integration, or via the advanced block styler:

  • Accordion block
  • Call to Action block
  • Callout - part of the Description block, slate
  • Card - part of the Teaser block and Listing block, it includes several variations like round card e.g., used for Avatar
  • Divider block
  • Headings slate
  • Hero block
  • Item block - used for text with an icon (remixicon or custom SVG/image) on the left/right
  • List slate - ordered and unordered
  • Quote block
  • Statistic block
  • Tag block
  • Table block
  • Tabs block
  • Timeline block

Future releases

Below is a non-exhaustive list of the work-in-progress which is planned for future releases:

  • Navigation Portlet (used on the left/right hand of content)
  • Spacing/padding system. We want to add the ability for editors to consistently apply various spacing/padding on certain components in order to allow a better alignment when components are used together.
  • Improve docusaurus and storybook with more components, controls, and variations in order to better reflect what is possible in Volto.

Generated by auto-changelog.

Unreleased - 2023-04-06T13:47:14.894Z

🐛 Bug Fixes

  • fix(header): external url in header now takes you to the correct url #330 from eea/header-external-url-fix 086c61d
  • fix(item): flex variant on edit when inside blockchooser #333 from eea/fix-item-csss 65b9099
  • fix: dont run isInternalURL twice a48984e
  • fix: github autoformat be97749
  • fix: external url in header 9e3aea6
  • fix: check if client method change 7c53b83
  • fix(item): use child selector instead of descendent as it interferes with blockchooser refs #157040 ad4ca37

💅 Enhancements

  • refactor(megaMenu): align menu items with demo site for better testing 82a5c84
  • refactor(breadcrumbs): updates on structure and story for accessibility 770c8c0
  • change(logo): update eionet svg 3c87fc7
  • refactor(megaMenu): Restructure Topics and Countries lists d816e7a
  • change(mega-menu): use lists for navigation, enhance voice over support for better accessibility d13137f
  • refactor(header): firefox accessibility errors fix c7d35b9
  • change(breadcrumbs): label modification for better screen reader output c967bef
  • refactor(megaMenu): clean up function after test 883eb73
  • change(mega-menu): added code to align countries left column subtitle with the right column 1aa33dd
  • change(mega-menu): sub-title padding tweaks for better spacing normalization e08668d
  • change(logos): updated eionet logo used in the site footer #318 from eea/footer-logo-update 70671d0
  • change(breadcrumbs,mega-menu): better screen readers support, see links instead of groups #309 from eea/firefox-accessibility-tab-issues d6b0b4a
  • change(breadcrumbs): fixed sizing of breadcrumbs list items 1761e98

🏠 Internal changes

  • style(megaMenu): remove comments and unused properties fa5f8f8

🏠 Documentation changes

1.0.6 - 2023-03-29

🚀 New Features

  • feat: add viewport-(width/height) less functions and fixed banner image url #329 from eea/develop e8e70bd
  • feat: add viewport-(width/height) less functions 68300a3

💅 Enhancements

  • change(docusaurus): set full class name for remix icons f435e10
  • refactor(Banner.jsx): use flattenToAppURL helper function to get image source URL 24b13d7

🏠 Internal changes

  • style(theme): update container width and margins in eea theme 3e4446a

🛠️ Others

  • horizontal overflow hidden in view mode f395f27

1.0.5 - 2023-03-28

🚀 New Features

  • feat: improve full-width class 70bba7e

🐛 Bug Fixes

  • fix(banner): Add missing divider for time tag #327 from eea/banner-metadata c46a583
  • fix(banner): Add missing divider for time tag 7d68c39

1.0.4 - 2023-03-27

🚀 New Features

  • feat(copyright): Add copyright prefix - Image - refs #250724 6a72772

🏠 Internal changes

  • style(copyright): Cleanup useless min-height - refs #250724 f2457df

🛠️ Others

1.0.3 - 2023-03-24

🐛 Bug Fixes

  • fix: improve full-width class 9322259
  • fix(header): Remove z-index from subsite logo #320 from eea/subsite-logo 5091100
  • fix(header): Remove z-index from subsite logo d433a97

💅 Enhancements

  • change(header): Add search popup customizations from eea-website-theme 43e5a78
  • change(popup): create custom popup for better accessibility 036aac9
  • change(popup): added most important popup properties from Semantic ui implementation 61f65bc
  • change(banner): use custom-made Popup for better accessibility 10d0fcf
  • change(banner): use custom-made Popup for better accessibility 9108bee
  • change(popup): added also the basic property a4497ac
  • change(colors): update gray-4 color value #321 from eea/update-gray-4 f458ff0
  • change(banner): MetadataField now uses proper time tag when value is datetime b4c4d34
  • refactor(tokens): updated gray-4 b890df7
  • change(footer): Fix error and empty div if no social links are present #319 from eea/footer-social 8922246
  • change(footer): Fix error and empty div if no social links are present 5d934a6

🛠️ Others

1.0.2 - 2023-03-14

🐛 Bug Fixes

  • fix(megamenu): topic menu title is now placed before content 6004bcb
  • fix(megamenu): removed in depth nav_title renaming that set title wrongly to a-z topics 899ca0e

💅 Enhancements

  • change(megamenu): removed special styling from at a glance mega menu section fd0c4c8
  • change(footer): renamed thematic information platforms to environmental information systems e7004a7
  • change(docusaurus): updated static image of footer sections 4ff3185

🏠 Documentation changes

  • docs(What's new): Update 'What's new' d7ed9d6

🛠️ Others

  • fixed accordion selector typo f4cabc8

1.0.1 - 2023-03-13

1.0.0 - 2023-03-13

🐛 Bug Fixes

  • fix(Footer): Open internal links within the same page 5b3e409

💅 Enhancements

  • change(banner): use huge scale instead of full image for better performance 381c58e

1.0.0-beta.6 - 2023-03-10

🚀 New Features

  • feat(site): serve Roboto fonts from eea design system package instead of google fonts #311 from eea/roboto-library f6a1b3e

🐛 Bug Fixes

  • fix: full-width is now properly sized 6e2e348
  • fix(storybook): add fontDisplay 078966a

💅 Enhancements

  • change(image): copyright position fixes, moved image floating to image-block-container 53422e0
  • change(colors:) update the design system colour palette #312 from eea/update-color-palette a5fb694
  • refactor(docusaurus): added roboto library 19de7b1
  • refactor(storybook): added roboto library e991621
  • refactor(tokens): update colours 3a2c1e1
  • refactor(storybook): restored site variables a48478b
  • change(copyright): implemented copyright hover design 6b12441

🏠 Internal changes

  • chore(storybook): switched google fonts to true 4a8cae4
  • chore(colours): changed back yellow 6 87c9bbc
  • chore(lint): lint 9b0f125
  • chore(storybook): lint 29bc809

🏠 Documentation changes

  • docs(colours): colours update 161007e
  • docs(colours): accessibility ee342aa

🛠️ Others

1.0.0-beta.5 - 2023-03-07

💅 Enhancements

  • change(carousel): tweak size of carousel dots for better touch interaction e1fb823
  • change(footer): removed min width and height from links ac33219

🏠 Internal changes

  • style(hiddenStructure): Add hiddenStructure utility to be used with h1 heading on frontpage - refs #158717 672cca2

🛠️ Others

  • fixed less build failure due to changes in footer.less 190bc8c
  • lazyload bg img on footer also ae07162
  • lazyload footer images a0633c9
  • Increase performance - mobile friendly 07d86c8
  • better useOnScreen hook c214b6b
  • role change for accessibility 5e758e0
  • minimum tap dimension for mobile a25e9a8
  • Release 1.0.0-beta.5 e4417e1
  • Add Sonarqube tag using eea-website-frontend addons list b227cf8
  • feature(mobile): increased performance by lazy loading footer images #303 from eea/increase_performance 80d1df1
  • useOnScreen default export 3e6cfdd
  • use aria-labels on dropdown 27e1443
  • prettier a7f8384

1.0.0-beta.4 - 2023-03-01

🚀 New Features

  • feat(footer): Add footer description 2ad0f71
  • feat(footer): Add footer description #306 from eea/footer-description bf655d1

🐛 Bug Fixes

  • fix(footer): Don't show empty row if description is not present 2ca7f7d
  • fix(footer): Add class for children 3c50d15
  • fix(search): Fix search links color #307 from eea/search-accessibility a76f48b
  • fix(search): Fix search links color 69c42ef

💅 Enhancements

  • change(carousel): tweak card width and padding for better arrow alignment e184f70
  • change(storybook): include footer description in storybook e904aa0

🛠️ Others

1.0.0-beta.3 - 2023-02-21

🚀 New Features

  • feat(accordion): storybook accessibility by using buttons for titles #297 from eea/accessibility-accordion 809d52b

🐛 Bug Fixes

  • fix(dropdown): remove close on blur so that we can navigate links using keyboard 5442715

💅 Enhancements

  • change(language): dropdown to use links for proper keyboard navigation 6a7de30
  • refactor(images): cleared unused/renamed images assets 821f5c1
  • refactor(Accessibility): add box-shadow on focus-visible components b1adcc3
  • refactor(images): remove unused docusaurus svgs c5ef14c
  • refactor(header): add escape key functionality, actions from div to button to have proper focus state 8081aa4
  • change(language): restore dropdown duplication in order to properly show and hide language dropdown cb28888
  • change(search): to reflect changes from eea-website-theme 2cc35e0
  • refactor(footer): update p with h3 heading tag for header ca1477b
  • refactor(footer images): removed unused/renamed 186de6b
  • refactor(Accordion): div titles to buttons, test in mobile mega menu accordions eaad4b4
  • refactor(docusaurus): cleanup decorative images fedc4d4
  • change(accessibility): style outline instead of box-shadow 53209f3
  • refactor(Footer): update mobile header size 01ab7f0
  • change(header): set the logo class directly on the link f8fba50
  • refactor(images): clear docusaurus unused pngs db5c611
  • refactor(header-images): removed unused 8250d94
  • change(language): hide language dropdown by default cc6064f
  • change(header): top dropdown menu keyboard navigation #293 from eea/accessibility-megamenu-searchbox 1e6fa65
  • change(button): set focus styling for buttons 33ebfca
  • change(footer): Avoid devtools warning in FooterActions #304 from eea/avoid_warning d774824
  • change(footer): Accessibility update p with h3 heading tag for theme sites title #302 from eea/footer-accessibility 5bf70de
  • change(documentation): Rename all image files to follow the agreed convention #301 from eea/refactor-image-filenames cfe44ef

🏠 Internal changes

  • style(header): react syntax fix 3add127
  • chore(docusaurus): ignore website/.yarn 0b33ffd

🏠 Documentation changes

  • docs(guidelines): add image name convention 290747c

🛠️ Others

1.0.0-beta.2 - 2023-02-13

🐛 Bug Fixes

  • fix(footer): action and copyright #300 from eea/develop 579f3e4
  • fix(footer): action or copyright links are simple a tags for external link 9af5070
  • fix(accessibility): added navigation and footer id's for skip link 48354b9

💅 Enhancements

  • change(footer): typos and modified footer links to be center aligned ac23f04
  • change(footer): added gap for actions and copyright 7d32ddd
  • change(footer): modified footer gap b8a820a
  • change(footer): removed extra text and date from copyright section af47bbe
  • change(navigation): raise z-index of go to top link 485ca72

🏠 Internal changes

  • chore(docs): Update eea.hbs template to beta - refs #158717 196538e

🛠️ Others

1.0.0-beta.1 - 2023-02-09

🚀 New Features

  • feat(search): Add search suggestions style 6b2b77b
  • feat(search): Add search suggestions style #296 from eea/search-suggestions 3b0c956

💅 Enhancements

  • change(search): Add proper margin for search popup 190c9f5

🛠️ Others

1.0.0-alpha.15 - 2023-02-08

🚀 New Features

  • feat(Card): add teaser card grid story 53cac0b
  • feat(utilities): Complete list of text-align utilities - refs #160747 224fab6
  • feat(small): CSS for small HTML tag - refs #160747 ad3c0ad
  • feat(fw-light): Add font weight light utility - refs #160747 c44cf57

🐛 Bug Fixes

  • fix(card): teaser card dimensions on tablet size #290 from eea/teaser-card-grid 013fdf5

💅 Enhancements

  • change(card): added extra content for teaser card story 30690ae
  • refactor(style-menu): add text-color to paragraphs styles #291 from eea/stylemenu-theme-colors 2d78307
  • change(header): Small fix in search popup #292 from eea/search-popup 86c1305
  • refactor(style-menu): add text-color to paragraphs styles 3446bc2
  • change(color): darkCyan is now replaced everywhere by the new green ef3791d
  • change(header): Small fix in search popup 3d622ea

🛠️ Others

1.0.0-alpha.14 - 2023-01-30

💅 Enhancements

  • change(mobile menu): integrate a-z topic with menu rendering logic #287 from eea/develop 05d4c04
  • change(mobile menu): integrate a-z topic with menu rendering logic 246d3d8

🛠️ Others

1.0.0-alpha.13.1 - 2023-01-30

💅 Enhancements

  • change(mobile menu): hardcode a-z topics to '/en/topics-in-depth' #286 from eea/develop 6436224
  • change(mobile menu): hardcode a-z topics to '/en/topics-in-depth' 5235b52

🛠️ Others

1.0.0-alpha.13 - 2023-01-27

🚀 New Features

  • feat(utilities): added has--bg--top center and bottom utility classes 051e6d7

🐛 Bug Fixes

  • fix(header): update green color used in page header #284 from eea/fix-banner-background 29d54db

💅 Enhancements

  • change(site): added fixes from customVolto.css to design package 51ba9b5
  • refactor(Banner): update banner background green color fd4a552
  • change(mobile menu): changed link for a-z topics to point to in depth 721bf23

🛠️ Others

  • 1.0.0-alpha.13 release #285 from eea/develop c966940
  • bump next version to alpha 13 897e906
  • Back to dev 5780dc7

1.0.0-alpha.12 - 2023-01-24

🚀 New Features

  • feat(card, colors): visited color change and title on image option for cards #283 from eea/develop e638ee6

🐛 Bug Fixes

  • fix(mobile menu): sub links when an accordion section is active bb3be81

💅 Enhancements

  • refactor(Card): create card template for stories 2fa77f3
  • refactor(Card): add image with title css 6e6e63e
  • change(card): implement title on image within image section ff6cc60
  • change(card): added image card section, tweaked mobile heading size 0f879e1
  • change(cards): moved image gradient overlay to a mixin.less file 8b4928a
  • refactor(card): Update titles value and size c35ad5c
  • refactor(docusaurus): applied image naming convention ee7bc29
  • change(cards): added image for all storybook card examples 3f19413
  • change(banner): restored label value of metadata field when type isn't date 571a4f2
  • change(card): title padding value for a more balance look 74b6556
  • change(card): removed uppercase transform from title on image 2948ae1
  • change(colors, Docusaurus): Visited link colour change and thematic logo replacement #278 from eea/refactor-visited-link f82d978
  • refactor(storybook): visited link variables b209b2f

🏠 Documentation changes

  • docs(colors): visited link update ece77fe

🛠️ Others

  • fix typos in footer gradient variables 4006640
  • change version to alpha 12 instead of 1 final 3225025
  • feature(card): new card variation with title on top of image #267 from eea/title-on-image-card 2c0ca95
  • Back to dev 477d997

1.0.0-alpha.11 - 2023-01-17

🚀 New Features

  • feat(docusaurus): Header and footer elements section #277 0df271c

🐛 Bug Fixes

  • fix(banner): storybook date input and simplified gradient opacity 7674d76
  • fix(banner): re-added title class on banner title 6d15799

💅 Enhancements

  • refactor(banner): sync storybook and Volto component c9087cc
  • change(banner): removed margin from title 17e592c
  • refactor(banner): sync storybook and Volto component #275 from eea/sync-page-banner-theme 4331fb4

🏠 Documentation changes

  • docs(footer): updates on header elements b41c550
  • docs(footer): add elements anatomy d9f0872

🛠️ Others

  • add(banner): banner title css d003247
  • Release 1.0.0-alpha.11 07e8f85
  • renamed image elements as requested in review 8541fb6
  • remove(banner-gradiant): image gradiant in favour of text 1b58520
  • update(gradient): use 8deg angle 6fd597d
  • update(gradiant): make it 0deg 1bb2696
  • remove(comment) referencing old verison of title 4226d42

1.0.0-alpha.10 - 2023-01-13

🐛 Bug Fixes

  • fix(subsite): Fix logo size on subsite section 65fff54
  • fix(subsite): Fix logo size on subsite section #279 from eea/subsite-fixes 8f6cf94
  • fix(mega-menu): show sub grid only if there are children ddfbd82

🛠️ Others

  • Add variable definitions 293fe65
  • Release 1.0.0-alpha.10 7014d08
  • Add Sonarqube tag using advisory-board-frontend addons list ef58a6f
  • Back to dev 31d4616

1.0.0-alpha.9 - 2022-12-28

💅 Enhancements

  • change(contextnav): Default title is text, custom title is link #273 from eea/context-nav-link-title ef7bdb7

🛠️ Others

  • Show document and folder content-type in Navigation listing 8471db3
  • Default title is text, custom title is link 1ae95b0
  • Context nav title link to # a27a6b7

1.0.0-alpha.8 - 2022-12-23

🚀 New Features

  • feat(copyright): Align copyright options with Volto integration - refs #158210 6bac7f6

💅 Enhancements

  • refactor(logo): import theme site logos to the story 2f29136
  • refactor(logo): update logo and mega search gradient e11f44d
  • refactor(logos): convert logo names to lowercase 07b8228
  • change(item): use default logic of setting align class on content 6b5b47c
  • refactor(logo): update logo 170efe5
  • refactor(logos): convert storybook logo names to lowercase c4b24ec
  • refactor(logo): add eea roboto font logo variations de1224a
  • refactor(logo): add container and segment to logo story 61eff16
  • change(item): removed requirement for aligned classes to be on content 30c0d5d
  • change(logos): cleanup eea logo reference to only eea-logo and eea-logo-white.svg 2796e05

🏠 Internal changes

  • chore(npmignore): Reduce npmjs package size 164c8a5
  • chore(npmignore): Reduce npmjs package size ade9d5b
  • chore(docs): renamed logo mdx to md 52e9d46

🏠 Documentation changes

  • docs(logos): svgs without classes 28a5833
  • docs(logos): add dark mode logos ccc1609
  • docs(logo): update eea logos and add logo wrapper 91cdd66
  • docs(logo): update logos on docusaurus 760e101
  • docs(logos): updated svgs dc224e1
  • docs(logos): add thematic logos 5a21a30
  • docs(logos): add zipped svgs for download 5855bf8
  • docs(logos): wisef logo update 8f90b59
  • docs(logos): move to static, add download 8c1fd5f
  • docs(logos): improve eea logo visibility 82188ab
  • docs(logos): change eea logo to svg f57b846

🛠️ Others

  • logo update or docusaurus thematic logo listing #274 from eea/develop dde90be
  • (feat): Add ability to disable the language select from website top menu - refs #158616 411c8e4
  • Proof reading page header section 230239e
  • bump package version b4628be
  • feature(docusaurus, storybook): logos selection for sites plus inverted options #253 from eea/doc-logo-page dbfc90d
  • Add Sonarqube tag using advisory-board-frontend addons list c4769e9
  • test(Jenkins): Run tests and cypress with latest canary @plone/volto 92feea0

1.0.0-alpha.7 - 2022-12-16

🚀 New Features

  • feat(item): normalized size for image or icon items #258 from eea/refactor-items 945170f

🐛 Bug Fixes

  • fix(card): rounded after removal of has--rounded--true style class d4727af
  • fix(item): removed margin set for description which pushed the text from icon d9d4031
  • fix(project): Proper paths if volto-eea-design-system package is not installed, but in development #270 from eea/correct_paths 0f8ee8d

💅 Enhancements

  • refactor(item): update icon variations and paddings 6a407b3
  • refactor(item): update spacing 2fd91c4
  • refactor(item): initial values for new sizes & add description class 3546296
  • refactor(item): add icon and more size options 1120bb6
  • refactor(item): update image and icon sizes b802573
  • change(item): set same height as width on item images 69cbd23
  • refactor(item): update item part 2 9812ae2
  • change(item): rename large to big class 24ff127
  • change(item): added tiny size that outputs 24px icon sizes 2ea9636
  • change(image): added preview image size default to 400px a0aa867
  • refactor(item): update operator for condition controls 149ccb2

🛠️ Others

  • Proper paths if the package is not installed, but in development 7a2655f
  • Update .project.eslintrc.js a2fd3f2
  • added back descriptionDistance variable until package release 3af811a
  • Release 1.0.0-alpha.7 7e66bcc
  • Add Sonarqube tag using cca-frontend addons list ce47e9b
  • Back to dev cb531c9

1.0.0-alpha.6 - 2022-12-07

🚀 New Features

  • feat(copyright): create copyright component and import it in banner 8fcde9d
  • feat(Header): add hideSearch prop 13ddfe5
  • feat(Docusaurus): Image copyright information #257 from eea/image-copyright-info 2119515

🐛 Bug Fixes

  • fix(tags): content gap when using tags-content wrapper c4eb9b8

💅 Enhancements

  • refactor(hero): add copyright component to hero 0fa88fa
  • change(copyright): implementation to add classes on content sections e10bde6
  • change(copyright): removed color variant 747b8a2
  • change(copyright): removed copyrightVariant from Banner and Hero stories ac62e07
  • change(tagList): modified implementation to align to volto-tags-block 7a57a3d
  • refactor(copyright): remove data section 52cb09d
  • change(copyright): line height to match page header implementation a56254e
  • change(copyright): now uses text color css variable with fallback to white ee7268b

🏠 Documentation changes

  • docs(copyright): copyright documentation a90ed76

🛠️ Others

  • Update usage_markdown.md f76d4a2
  • grammar fixes cb2a5a5
  • Release 1.0.0-alpha.6 6ca32f0
  • feature(copyright): image information #250 from eea/feature-copyright a8618c7
  • lint fix by introducing local variable tagsGap 7b6c0ae
  • Update 3-images.md 1b0ef03

1.0.0-alpha.5 - 2022-11-29

🚀 New Features

  • feat(Iconography): import and showcase remix icons 777112f

🐛 Bug Fixes

  • fix(docusaurus): right bar overflow fix 197c763
  • fix(lists): bullet position by using padding instead of margin 0ecae2e
  • fix(label): color for yellow variant as white isn't accessible on yellow color 91d8880
  • fix(contentBox): avoid text decoration for header-link added on cards 3ccb592
  • fix(label): margin value for ribbon image left and right margin f8e1129

💅 Enhancements

  • refactor(docusaurus): eea color palette in separate file 6c855df
  • refactor(docusaurus): classes for color boxes 80219d5
  • refactor(docusaurus): move supplementary, state and link colors to partials 2776be3
  • refactor(docusaurus): fix side menu / moved more content in palette partial f5b7077
  • change(tag): set gap on tags element for margin between tag elements 726bc6d

🏠 Internal changes

  • chore(colours): fix wrong class name 51ad0a8

🏠 Documentation changes

  • docs(docusaurus): Iconography updates, thematic platforms 2a0e596
  • docs(colors): thematic pages integration ea7a422
  • docs(docusaurus): color updates cc13b54
  • docs(colors): fix swatches accessibility 306cb74
  • docs(docusaurus): typography and colors fixes according to comments on PR ae20a72
  • docs(colours): adjust logos heights 854d4fb
  • docs(typography): merge designer and dev units 65c240e
  • docs(typography): readded extra font sizes, fixed fluid a4a5d89
  • docs(typography): changed em to percentages d417600
  • docs(colors): minors updates and instructions 84ac882
  • docs(colors): blue-grey-6 adjustment e7ab2d1
  • docs(colours): added active colour 574f7a9
  • docs(colors): switch FISE logo to png 335471f
  • docs(colors): updated visited 0248fd1
  • docs(FISE): replaced logo f7d8331

🛠️ Others

  • perf(docusaurus): added remixicon and roboto locally b67b1a7
  • feature(Docusaurus): Updates on color palette information including thematic websites #231 from eea/refactor-docusaurus ec7843d
  • Upgrade Jenkinsfile storybook to yarn 3 d20de8d
  • Back to dev 563fbc5

1.0.0-alpha.4 - 2022-11-22

🐛 Bug Fixes

  • fix(cards-storybook): load slick carousel css for arrow and pagination styles 1159b1b

💅 Enhancements

  • change(cards): refactor cards theming implementation d4e4542
  • change(cards): allow rounded, inverted and theme parameter to be set by has classes 4b4ad89
  • change(card): expect has classes on the card directly 6a9e38b
  • change(utilities): added has text classes to the text alignment utilities e6974c6
  • change(utilities): modified class name for text align using has naming 579a0cb
  • change(theme): ensure that only direct children of container have a default top and bottom margin 7f8b8dc
  • change(build): upgrade action to trigger workflow and wait to latest version c63ad3f
  • refactor(card): theming implementation to allow has theming classes #265 from eea/card-refactoring 24edc99
  • change(theme): add slick-carousel dependency f2eec7d

🛠️ Others

1.0.0-alpha.3 - 2022-11-16

🚀 New Features

  • feat(Header): Add subsite section styling #263 from eea/subsite 00398b8

🐛 Bug Fixes

  • fix(search): position now changed by default to absolute from relative 51b08fc
  • fix(megaMenu): remove paddings for buttons added by active class ec33ebf

💅 Enhancements

  • change(components): load overrides files for our defined semantic files adde7a9
  • change(container): fullwidth now take into account devices without hover 5a35a65
  • change(container): ensure only the top level elements behave like containers 98b85d1
  • change(container): modified column-block grid to remove margin and padding when using full width class 35c1cee
  • change(mega-menu): hide home link and accordion content from mobile menu 1a69172
  • change(container): width from min width 1280px to 1365px max width 66e551e
  • change(container): removed app extras and view setting of layout sizes f6dc1ee
  • change(views): customized DefaultView to pass class into page-document area 91123aa
  • refactor(megaMenu): desktop - use buttons for menu section titles and readjust content cb9315f
  • refactor(megaMenu): add nav_title and nav_description attributes 0d7a568
  • refactor(megaMenu): style sub-title and nav-description b2a48fd
  • refactor(sidemenu): add third level list and items & update active indication e2d87da
  • change(columns): implement narrow, container and wide width classes 9696b54
  • change(container): story to add classes that modify the max width of the containers 37948f8
  • change(container): affect only left and right margin of containers 183265b
  • change(containers): modified class names after layout checks 1dc3689
  • refactor(sidemenu): add is_in_path and is_current attributes for an active example a3fe7fd
  • change(container): story to avoid adding containerwidth property to container div c13d83c
  • refactor(megaMenu): mobile - use buttons for menu section titles a7b632f
  • refactor(megaMenu): update padding variables c5f2583
  • change(views): moved narrow style bellow the default container width styles 72fa58d
  • change(listing): removed container from default view page-document area 69f3d8f
  • change(views): rename classes names to width_view and added app extras layout component 745b772
  • change(container): use important flag for left and right margin a49c83a
  • change(container): add variables for edit and add section of containers f2e2c33
  • refactor(megaMenu): update sub-title paddings 992f919
  • change(site): add a 1rem margin top and bottom on all styled classes dabf6c1
  • change(homepage): removed hiding of staging banner from homepage 4ba2cd7
  • change(container): unset values of page-document on 1200+ browser width dd5bea3
  • change(megamenu): set children to be appended to the right of the menu title b69c23a
  • change(theme): modified wide width to point to 1320px as it's perfectly divisible by 4 8f82573
  • change(theme): modified wide width to point to 1368px as it's perfectly divisible by 4 2349fee
  • change(container): renamed content-text-width to container-text-width 6f788c2
  • change(listing): provide ui container fallback if no class is passed to default view af9e94d
  • change(narrow-view): re-added container class to page-document 56b44a6
  • change(view): set container width for view-viewview class as well 29dc324

🏠 Internal changes

  • style: load header/footer overrides e5b5e0f
  • style(megaMenu): restore item description color 8a19bbb
  • style(megaMenu): restore accordion content bottom padding 8e0c5a7

🛠️ Others

  • Add subsite styling e79c0ed
  • WIP settings column grid width when using full size class affc7ac
  • code cleanup 2cdc3e5
  • fix eslint 30c52e4
  • test(estlint): Fix .project.eslintrc.js aaeaa07
  • modified left value of full width classes with toolbars 70d82d4
  • Release 1.0.0-alpha.3 8fc86a7
  • feature(content): added NarrowView useful for modifying the containers from content-area d937df7
  • jslint fix 9846159
  • Feature(container): flexible container size #260 from eea/feature-flexible-container 8f84c5b
  • Add Sonarqube tag using circularity-frontend addons list 76a41c7
  • fix broken variable call for contentBox.variables introduced in previous commit by mistake d249c11
  • clean up 89f3cb3
  • removed console log from code fad86ae

1.0.0-alpha.2 - 2022-10-28

💅 Enhancements

  • change(documentation): grammarly proof-read suggestions 9f609be
  • refactor(volto-slate): Upgrade to @plone/volto-slate - refs #153447 853d9d1

🏠 Internal changes

🛠️ Others

  • test(cypress): Upgrade to Cypress 10 / Razzle 4 c1c1f4b
  • more explanations a8b2272
  • add announcement bar, showing that EEA DS is WIP e14aeac
  • Update dependencies ee30a2b

1.0.0-alpha.1 - 2022-10-20

💅 Enhancements

  • refactor(footer): update svg and tablet contact link sizes 6aba061
  • change(blockquote): renamed to Callout reflecting the correct naming from Storybook 61a518c
  • change(footer): Shadow removed from logo & tablet updates #252 from eea/fix-footer 6df783d
  • change(colors): updated theme classes for text to use css variable colors cb089fd

🏠 Internal changes

  • style(footer): reduce social icons margin f6a9cf7

🏠 Documentation changes

  • docs(alpha): Update included components in 1.0 alpha version - refs #154387 fcc5af9
  • docs(callout): Rename Blockqoute to Callout in docusaurus - refs #154387 8d733ac

🛠️ Others

0.9.6 - 2022-12-16

🛠️ Others

  • Release 0.9.6 ae19b83
  • feature(copyright): image information #250 from eea/feature-copyright 7b323ed
  • Release-it 1f5671d

0.9.5 - 2022-10-20

🐛 Bug Fixes

  • fix(statistic): margin and slate colors when using the inverted options f263dea

0.9.4 - 2022-10-19

🐛 Bug Fixes

  • fix(edit-interface): block chooser and power user menu item colors when inside content-box 7aee4f1
  • fix(header): hero text going over the logo and menu on mobile resolutions 1434508
  • fix(content-box): z-index of box-inner and added underline to slate links c8b7c7e
  • fix(content-box): adding of underline to links c2f5f0f

💅 Enhancements

  • change(banner,colors): content box theme aware colors banner changes#254 from eea/develop bcb9a8c
  • change(Banner): Add subtitle subcomponent bb67f4c
  • change(item): moved svg filter definitions to item.overrides de70366
  • change(accordion): accordion titles with themes colors can now be modified by css variables e2ac13e
  • change(colors): in lists and callouts to allow color changes 940d1b8
  • change(colors): added backgroundColorSupplementary color variable 1f5262a
  • change(list,bullet): color is no longer primary instead it's text color css variant 8c04670
  • change(statistics): use theme colors with css variable for easy color customization fb72a01
  • change(Banner): Show label in metadata field 1acda3c
  • change(tags, items): use text color with css variable for content color for easy customization 6660e2e
  • change(styling): modified naming of theme css variables a332961
  • change(colors): added backgroundColor color variable b7e6831
  • change(quote): use secondary css var for easier color replacement 7a32312
  • change(statistics): tweaked margin of statistics so that they don't overflow over context boxes b4a8e33
  • change(accordion): allow customization of accordion title background color 6590baf
  • change(colors): introduced css variables for primary colors #247 ac80825
  • change(content-box): override primary text color to white as well 28b43c7

🛠️ Others

  • Include changes in the storybook a4d9fa4

0.9.3 - 2022-10-04

🐛 Bug Fixes

  • fix(card, contentBox): meta font size, removed header override of cards a7f94b9
  • fix(List): Ordered list item story - refs #155248 c70a2bc
  • fix(OrderedList): li third level margin left - refs #155248 fba5cb9
  • fix(cards): inherit color of card description ceda799
  • fix(accordion): Fix content default padding - refs #153783 566adf7

💅 Enhancements

  • change(site): committed fixed from custom into eea design package 9b9a1fd
  • change(jenkins): added yarn policy for storybook building 3d1b844
  • change(docusaurus): typography updates 60a93a4
  • change(item): added item image coloring when applying theming classes 0403fe4
  • change(accordion, site): change text color to tertiary instead of black 4641058
  • change(accordion): allow customization of accordion title with css variables 15e7d27
  • change(content-box): added css variables that will set text color and background for children 86cac53
  • change(tabs): allow customization of tab active and hover color 4370f42
  • change(tabs): color for tabs-block section 6778c92
  • change(cards): by default date is set to appear on the right of the meta section b7b80e8
  • change(cards): carousel dots are now relative positioned daa40a4

🏠 Documentation changes

  • docs(typography): update, local fonts 39a32d9
  • docs(typography): token fix to match used values for heightheight and letterspacing 91693ec
  • docs(typography): token fix to match used values for lineheight ff41b56
  • docs(typography): remove semibold 6eb3e08

🛠️ Others

  • test(cypress): Fix md5 dependency 17f618e

0.9.2 - 2022-09-27

0.9.1 - 2022-09-27

💅 Enhancements

  • change(cards): added ability to change the text alignment using css variables ed532ac
  • change(styles): use flex-end values only instead of end to avoid babel warning 24244b2
  • change(rounded): image size, border radius to ensure more image are turned into rounded options 51e23c1

🛠️ Others

  • Merge pull request #243 from eea/develop 576564c
  • Add Sonarqube tag using eea-website-frontend addons list 4a5be6e
  • Back to dev b251255

0.9.0 - 2022-09-19

🚀 New Features

  • feat(countUp): intall countup package and import it in statistics 10ba7cf
  • feat(docusaurus): custom editUrl function for the components usage pages - taskman refs #154076 93c4240
  • feat(site): Styling scroll-to-text fragments #238 1883fcf
  • feat(docusaurus): added Edit this page link in footer of each page - taskman refs #154076 2cf8746

🐛 Bug Fixes

  • fix(header): Prevent dropdown closing when clicking inside content 838f340
  • fix(cards): position of bullets and arrow clicking on events page 148723 22ef828
  • fix(cards): rounded images show up now even when card parent is cards 48f5e81
  • fix(statistic): add a min-width to content so unwrapped statistics don't break 7c5d511
  • fix(sideNavigation): add role list to list item 58f322b
  • fix(sideNavigation): remove unused useState import f9ea677

💅 Enhancements

  • refactor(sideNavigation): implement the design to the initial navigation & make component dynamic b673d63
  • refactor(header): update top bar 626bdd5
  • refactor(statistic): create custom export and add links 9f9ed56
  • refactor(statistic): update inverted style and add background variations 7578dc6
  • refactor(statistic): remove horizontal display on mobiles & update columns control 58f00e1
  • refactor(header): minor fixes spotted in testing 0f0f3ab
  • refactor(header): update main section heights d669f01
  • refactor(sideNavigation): remove green border and divider 939cd9b
  • refactor(link): update colors for link states 3e9f599
  • change(cards): styles img tag outside of .image ee89274
  • refactor(sideNavigation): update controls a3e8430
  • refactor(statistic): fix firefox issue for fit content 87aa113
  • change(statistics): rearrange controls order b19ae70
  • refactor(statistic): add max width to wrap text for all content 758f8ce
  • refactor(statistic): add max width to label so it wraps the text 824a127
  • change(Side menu & in page navigation): styling according to figma design #221 b2df858
  • change(header): align header with latest figma changes #232 135cd68
  • change(cards): integration when cards also contain call to action buttons f0d8766
  • refactor(iconography): icon group headings b9ccd80
  • refactor(header): add variables for some sizes 8eae84e
  • refactor(Statisctic): Rename slateVariation to extraVariation a07c589
  • change(docusaurus): started example on how to add headings for iconography 53cf843
  • change(cards): remove center alignment of rounded cards body area, only the image is now centered fdfac48
  • change(color): updated link colors #234 feabfe7
  • change(mockup): Access to figma style tokens 0bb25be
  • refactor(statistic): update margin 5190f56
  • refactor(button): adjust vertical margin db6d441

🏠 Internal changes

  • style(statistic): update decimal point 7976aa4
  • style(link): update visited link color d3b18b3

🏠 Documentation changes

  • docs(iconography): added icons, guidelines 0073f1d

🛠️ Others

  • Delete 2-test-new-page.md 749eff9
  • Create 2-test-new-page ab623ff
  • Release 0.9.0 eb7e2e5
  • stylelint fix 114e3f9
  • Move text fragments style to site.overrides 8368cbe
  • Styling scroll-to-text fragments 1bb3914
  • Update Header.stories.js 9036c74
  • feature(Docusaurus): Reflect usage of remixicon in iconography page #239 0802b32
  • Update 1-design.md 146115a
  • Test workflow for contribution - taskman refs #154076 dcb924f
  • perf(figma): access to style tokens 27d8dbe
  • Rename 2-test-new-page to 2-test-new-page.md 4e3be10

0.8.1 - 2022-08-26

🐛 Bug Fixes

  • fix(message): fix size controls ee51e1d
  • fix(docusaurus): intro page hero title color now that headers are using tertiary color 618e3cb

💅 Enhancements

  • refactor(message): restore semantic variables 1c16621
  • refactor(messages): mix semantc and token colors for messages 12efa75
  • refactor(emotiveColors): temp update for tests 61a720c
  • change(footer): removed line between sections and moved actions back to the bottom of footer d9f33e4
  • change(storybook): headings storybook now uses tertiary color by default reflecting site options 1061e77
  • refactor(message): add container to story 1259ece
  • refactor(message): remove override with custom background color on error 9b40cd7
  • refactor(message): add header controls 960c2f7
  • change(message): use semantic colors for messages #204 from eea/refactor-message 22d2c43

🏠 Documentation changes

  • docs(figma): added figma files to repo 6bd4144

0.8.0 - 2022-08-20

🚀 New Features

  • feat(IconCard): card with icon instead of image a85a179

🐛 Bug Fixes

  • fix(docusaurus): typography guideline now has real font values for headings, body, caption and small text 9508db9
  • fix(card): fix content gaps, adjust new meta section and update text color for default f1a78e1
  • fix(item): remove duplicate argType dde0be5
  • fix(iconCard): add aria-label at links 44f64c7
  • fix(card): merge fix df440ec
  • fix(heroblock): color even on edit page by inheriting color instead of using the tertiary color ac53fb7
  • fix(tab): add tabindex for accessibility error ab512be
  • fix(carousel): restore missing variable 1728312
  • fix(carousel): restore flex grow for cards and opacity for arrows ce71305

💅 Enhancements

  • refactor(carousel) add links in carousel cards & update structure and variables of less files f99cb21
  • refactor(iconCard): add control for variations and link 5e1b6a1
  • change(docusaurus, fonts): documented font letter spacing modification 522712a
  • refactor(card): css updates for card variations and styling updates c8b4a43
  • refactor(publicationCard): add links and fix accessibily issue 80adf6c
  • refactor(card): add new section in meta and remove links bfb82ae
  • refactor(item): add stackable functionality 8d714fa
  • refactor(card): update meta section and controls 5e28e12
  • refactor(roundedCard): remove unnecessary code and controls and add all variations 6305c54
  • refactor(roundedCard): add optional link for image and header a6d3bf2
  • refactor(card): add tertiary hover and update css selectors ca06948
  • change(fonts): updated font sizes with values given in figma 4b0ae48
  • change(style): color, space and adjust line-height as described in docusaurus 3366da2
  • change(headings): only h2-h6 get tertiary color 7d81308
  • change(site): removed Archivo import as we should only use Roboto font a6af056
  • change(docusaurus): use tertiary color for headings and body color mirroring the design system styles 145fe73
  • change(fonts): modified headings font size as well as line height f0771ea
  • change(fonts): updated font sizes with values given in figma f16eef7
  • change(docusaurus): use Roboto font from google fonts also for docusaurus adca8e9
  • change(headers): added headerColor variable so that thematic sites can easily choose another heading color f09d2c5
  • change(fonts): typo fixes for typography section of docusaurus cae4b02
  • change(fonts): modified footer and header values afer global font size changes f160d35
  • refactor(iconCards): run prettier fe84e46
  • change(typography): inherit header colors with @headerColor variable 91d9357
  • change(breadcrumb): use tertiary color also for breadcrumb c5cbd44
  • change(heading): on homepage on the first hero set font size to h1 and inherit color 5711096
  • refactor(carousel): update card titles to display styling fix edd966b
  • change(docusaurus): use the tertiary color for body and heading colors 11c4ed4
  • change(typography): modified lineheight-0 after headers now use 1.2 instead of 1.25 04d78a8
  • refactor(card): add links to cards and replace description with title in carousel 0258737

🛠️ Others

  • feature(heading): and cards refactoring #227 from eea/develop 334fbda
  • Update package.json 3870cf3
  • Header refactor 153536 #226 from eea/header-refactor-153536 87a6fe7
  • feature(item): icon is now stackable moving the icon on top #220 b716acf

0.7.6 - 2022-08-15

💅 Enhancements

  • change(footer): Footer updates 147837 #225 fa9ae58
  • refactor(footer): initial redesign of main section 8e85617
  • refactor(footer): restructure theme sites logo columns dcba45a
  • change(footer): set actions before thematic section on mobile db25f96
  • change(footer): fix missing key warning from react dev 77f72d5
  • change(footer): Footer updates 147837 #222 32fed23

0.7.5 - 2022-08-11

💅 Enhancements

  • change(megamenu): mobile improvements with See all links, active elements and non accordion children #224 6767b99
  • change(megamenu): render accordion only if children have children be63ce2
  • change(megamenu): mobile menu design tweaks as seen in latest figma 26d74dc
  • change(megamenu): removed icon from at a change menu items and they are no longer bold as requested 043e772
  • change(megamenu): reset first level panels after each item pass 175351b
  • change(megamenu): mobile menu improvements #223 b3cabfe
  • change(megamenu): fixed key error warnings 075bf01
  • change(megamenu): handle default active sub accordion 6192a99
  • change(megamenu): enable active border only for items not titles fb0b869

🛠️ Others

0.7.3 - 2022-08-04

💅 Enhancements

  • change(megamenu): added icon on mega menu header section d0ad4d8

0.7.2 - 2022-08-03

🐛 Bug Fixes

  • fix(contentBox): z-index of content hidden by bg when using content-box-inner c5a7dac

🛠️ Others

  • Set focus on search input field in the popup on click d12c051
  • Make cypress tests work with both slate and draft selectors 4d8e5b1

0.7.1 - 2022-08-01

0.7.0 - 2022-08-01

🚀 New Features

  • feat(accordion,buttons): primary, secondary and tertiary variations #209 c34617f

🐛 Bug Fixes

  • fix(megamenu): key warning errors 4ecd279
  • fix(container): add padding also for block editors when we are on the add page not just edit b857aad
  • fix(header): bump opacity of gradient class to get rid of green hue of header text 2011b40
  • fix(header): remove console log 3a20023

💅 Enhancements

  • refactor(callToAction): add tertiary variant and restructure exports ac6695a
  • refactor(accordion): add color variations 3504c15
  • change(megamenu): WIP bringing back rendering of item with callback and path modification 6e43d43
  • refactor(megaMenu): add slide down transition and update targetRefs on close 9667157
  • change(megamenu): use renderMenuItem in order to render menu items 9ed5cbd
  • change(footer): replaced eionet logo with an svg variant and tweaked size of eionet to match size of eea logo 32ce462
  • refactor(callToAction): update tertiary state colors 159668a
  • change(accordion): style default accordion using the grey from semantic ui e24907d
  • refactor(accordion): add variations and create a default export 4a9c68f
  • refactor(colors): add tertiary shades for element states 1e24a7e
  • change(tests): try to modify tests to use slate instead of draft a2e2485
  • change(megamenu): set active class on storybook list items 112bff1
  • change(megamenu): add border for active element of menu 5e7dfa5
  • change(package): condition modification of navDepth settings dd21dad
  • change(mega menu): use non variable to fix build of volto-kitkat-frontend 3ecd652
  • change(header): prefix mega-menu active class for adding border 32898cb
  • change(tests): use data-slate-editor instead of contents that was found in draft js instead of slate 1e0413c
  • change(stories): hide variant control from button link story 43f8c41
  • change(stories): hide variant control from button link story aea7126

🛠️ Others

  • feature(theme): added context navigation component story and default style 5a6955f
  • feature(megamenu): open default accordions on mobile navigation based on pathname cc299c1
  • fix eslint warnings 3b30282
  • bump release version to 0.7.0 fa82cbd
  • Theme fixes, mega menu selected element both in desktop and mobile #211 b482729
  • feature(mega-menu): added menu slide down animation #208 4360d0e

0.6.5 - 2022-07-06

🐛 Bug Fixes

  • fix(header): double click to close dropdown is no longer required b8a2ed0
  • fix(header): menu generation when atAGlance isn't found d68b03c
  • fix(menu): removed minHeight that enlarged the global menu 133be1e
  • fix(hero): image dimensions when full width and height isn't enabled 4114f73
  • fix(contentBox): removed negative z-index that hid fullwidth bg color bd60faf

💅 Enhancements

  • change(hero): tweaked hero block height and padding 994b6f8
  • change(item): tweak size and padding of icon when used inside item dbdef19
  • change(typography): updated letterspacing values and clarified values used for certain type tokens 8a13bf8
  • change(item): enable theming for icon and text color and added tertiary option 6d4444f
  • change(header): top section chevron sizes and margin as requested in enhancements document b307c74
  • change(cards): add underline to links when applied to headers and use tertiary color by default 874f956
  • change(utilities): wrap in quotes h2 and h3 of quoted-wrapper 8aa4716
  • change(package): bump package version to 0.6.5 denoting bug fixes release 0585aeb

0.6.1 - 2022-07-01

🚀 New Features

  • feat(UnderlinedTitle): create story and necessary utilities 8beb56b
  • feat(headers): added underlined titles with theming support af67561

💅 Enhancements

  • refactor(heading): move underline story and update controls 2c9bfd2
  • refactor(underlineTitle): add content box for different variations 0878915
  • refactor(underlinedTitle): add control for changing heading size 211f515
  • refactor(underlinedTitle): Restore text variation dropdown control bd8c611
  • refactor(utilities): add color variation for headings and text 7e3a779
  • refactor(utilities): update border bottom utility and restore line height for headings 7fe4a7b
  • refactor(headings): update the line height of headers according to docusaurus instructions 9da19b3

🏠 Internal changes

  • chore(countup): package for statistics 26fcd09

0.6.0 - 2022-07-01

🐛 Bug Fixes

  • fix(item): adjust the container in stories a848c46
  • fix(tag): align start for tags on mobile, update path for Tag List and add containers b9de845
  • fix(item): update image width & height on mobiles and add 3 line clamp for description 0cd2c46
  • fix(pageheader): metadata font size on mobile to be readable 0a9b1fa
  • fix(breadcrumb): fixed variable name for breadcrumb item 2b547eb

💅 Enhancements

  • refactor(Item):create item story with custom default class 069ae02
  • refactor(pagination): add pastanage menu overrides and remove any eea theme css from default story 5080810
  • refactor(item): update variables from px to rem 30eed78
  • refactor(Item):add default item mobile padding 3518465
  • change(site): added fixes from custom 0fe4d80
  • refactor(Pagination): add default pagination stopry and rename previous as Secondary a5e3e13
  • refactor(pagination): comment out secondary pagination and its styling bcf4cff
  • refactor(tags): remove content class and add flex wrap d6333ca
  • change(logo): use a real svg logo for white eea logo 3b80dc7
  • change(header): show eea information systems on tablet as well ce82ceb
  • refactor(tokens): update letter spacing tokens 5f8753b
  • change(letterspacing): updated letter spacing positive values b31818f
  • change(pageheader): add bottom margin on mobile for sharing dropdown actions d3cda47
  • change(pageheader): removed blogger, reddit and stumbleupon sharing links e4acc4e
  • refactor(Item): add default item background color c978c8d
  • change(package): bump package version 1f01f72

🏠 Internal changes

  • style(item): update item image e585e9d

🏠 Documentation changes

  • docs(colors): token usage c433ec6
  • docs(Docusaurus): typography and spacing updates 48d1269
  • docs(Docusaurus): various fixes a972a31
  • docs(typography): updates 66d95e4

🛠️ Others

  • Tabs block custom border left/top ca4cce0
  • Fix sidebar tabs in Volto CSS c287db5

0.5.5 - 2022-06-23

🐛 Bug Fixes

  • fix(contentBox): color of cards when inside content-boxes 76a4520

💅 Enhancements

  • change(homepage): moved fixes of homepage to custom and colored carousel arrow 0a226ef

0.5.4 - 2022-06-16

🐛 Bug Fixes

  • fix(block-style): Content box preview in sidebar 6362766
  • fix(header): ensure transparency goes as high as the search icon 4470e13

💅 Enhancements

  • change(contentBox): add background as before element instead of using full-width 7e0a596
  • change(content-box): content box links are now underlined f7976f5
  • change(homepage): added fixes from custom c3e0333
  • change(hero): add margin top with the height of the top section on edit fefa6bb
  • change(cards): fix default card color when inside content-boxes 6fdf3aa
  • change(container): removed override of content-box-inner container 66fe7d4

0.5.3 - 2022-06-16

🐛 Bug Fixes

  • fix(homepage): hero and homepage fixes for #151156 #198 43d4efc
  • fix(header): fixed top section width on edit page ce5898b

💅 Enhancements

  • change(hero): added min height to hero-block-image-wrapper 3cc37c0
  • change(hero): spaced hero block has a 3rem margin top and bottom c463b03
  • change(hero): added extra top margin on hero-block-body from tablet and up within homepage 64142c3
  • change(hero): tweak min height of hero block e1271b4
  • change(card,contentBox): use inherit for text color to inherit black from body c1ba3b6
  • change(container): on section-edit modify only left and right padding values fe6e3ec
  • change(utilities): bump z-index of overlay class ede3209
  • change(hero): fixed variable reference for margin of body from homepage 092b90b

0.5.2 - 2022-06-14

🚀 New Features

  • feat(contentBox) : add new Content Box component 2ebbb47
  • feat(ContentBox): Add primary, secondary, tertiary themes 87cb2fe
  • feat(ContentBox): Update storybook with available themes 93b26b2

💅 Enhancements

  • refactor(contentBox): restructure the component to be more flexible f0d2de6

🏠 Internal changes

  • chore(contentBox) : add lint changes 5aaf740

🛠️ Others

0.5.1 - 2022-06-13

💅 Enhancements

  • change(header): changed homepage text color 64ce8b6
  • change(hero): added styles for adding dark overlay to hero bf1d292
  • change(homepage): hide stagingBanner on homepage fb6e319
  • change(header): use variable for homepage hero-block padding 89ff344
  • change(tokens): modified grey-4 color to point to a 10% shade from original color b406283
  • change(header): added min-height for mega menu needed for 1 items menus 18814f4
  • change(hero): hero section block integration #192 4ea2f40

🛠️ Others

0.5.0 - 2022-06-11

🚀 New Features

  • feat(hero): added storybook implementation of hero component #172 17b9d16
  • feat(hero): add hero block component and stories 6019fc8

🐛 Bug Fixes

  • fix(header): Internal links in mega menu d8ca135
  • fix(header): show active menu when clicking on children a54fa67
  • fix(header): accessibility and dropdown possition fixes 505ac36
  • fix(header): fix accessibility issue by David 783dcec
  • fix(header): dropdowns disappear on resize 52338fd
  • fix(header-topdropdown): dedupe html elements for topdropdowns cd8a2a7
  • fix(header): transparency class should apply on the current bg color or image f9a0033
  • fix(header): mobile dropdown now visible 34371b4
  • fix(header): dropdown disappears after window resize #116 fc7dd8b
  • fix(header-topdropdown): dedupe html dropdown elements for topdropdowns #115 f10a7a8

💅 Enhancements

  • refactor(megaMenu): update mega menu in header component 2d1ce45
  • refactor(header): update structure and variables of top bar af70909
  • change(header): renamed mega menu items href attribute to url 3ed8144
  • refactor(header): update main section and and add color variations f2f0fd1
  • refactor(header): minor updates on colors and widths a70129f
  • refactor(hero): add full-heigh control to adjust height a45cb7c
  • change(header): disable sticky setting until feature is more stable 1d7af95
  • refactor(hero):make button variant and inverted different button controls 7e182ca
  • refactor(header):main bar sticky on scroll up 9c9e7c6
  • refactor(headings): update heading sizes for mobile 19f3cca
  • change(header): hide first link(home) from header menu on site ae7f3b9
  • change(megamenu): typo correction and key setting on list.items 96d2c4f
  • change(header): use Link instead of a tag for menu items 9812b3f
  • refactor(header): add control for inverted logo 023ca45
  • refactor(hero): move quoted utility to h2 tag 7376676
  • refactor(header): add link for menu title inside desktop mega menu 24355d0
  • refactor(utilities): update hex with color token 8dc65ef
  • refactor(header): and mega menu to latest spec #114 44fcf68
  • refactor(header): update search input and file endings afab36f
  • refactor(header): add control that toggles transparency class on main section b8d4bdb
  • refactor(header): restore union dropdown after implementation 7e98bab
  • refactor(header): minor responsive fixes 16a0006
  • refactor(hero): align hero's text and meta seperately 4fa958f
  • refactor(hero):add button variant controls f362a7b
  • refactor(header): update search input 368962e
  • change(header): mark top level active menu item 665c449
  • refactor(hero):prettier & style changes d846884
  • refactor(header): add control for main section stickiness 2f07572
  • change(header): use viewport width for changing mobile text in header dropdowns b50fa58
  • refactor(header): add fluid font sizes 5f2743e
  • refactor(header) add position sticky & transparent for main section 29df772
  • refactor(hero): update variables with new design tokens 1d97922
  • refactor(Language List): render language dropdown as ul and li elements 3617442
  • change(header): introduced item class to the mega menu link content 00ca376
  • refactor(Language List): add less variables 7ccc1cc
  • change(header): disabled active menu when clicking on globalnav links 3f7b5ee
  • change(header): target link instead of span directly 9e865fb
  • refactor(header): remove unused imports 7e232db

🛠️ Others

  • Add item themes; override .block .ui.image width based on size 06010db
  • Move item icon themes to item.overrides 31e8921
  • Override only the width 8d49270
  • Override tile image in .block parrent 005655d
  • Update package.json 9dc3816
  • feature(item): added themes to item icons #190 a6a2907
  • update storybook header.topdropdown e58ac08
  • use volto-screen-helper width ea156aa
  • Add divider content for metadata field in Banner 327ad1c
  • rename to viewportWidth 32162e7
  • don't connect component to store 470b8ba
  • Add end of line 51639d8
  • behave as mobile under 480 only 11b99e1
  • make it account for all mobile-s,m,l 69e23ae

0.4.5 - 2022-06-08

💅 Enhancements

  • change(tabs): Add style for tabs accordion template #187 fb8adbf
  • change(footer): avoid react error by providing key prop to grid column ef0b193

🛠️ Others

0.4.4 - 2022-06-08

🚀 New Features

  • feat(divider): create story for divider b10a2e0

🐛 Bug Fixes

  • fix(divider): restore space between classes c595c15
  • fix(divider): Text colors and transform e524e10
  • fix(footer): story aria labels for social media links 254bdc7

💅 Enhancements

  • refactor(footer): update logos and less structure 66b8e0f
  • refactor(footer): first footer updates d18a2ee
  • refactor(footer): logo updates and adjustments 101bc9d
  • refactor(footer): use tokens and adjust spacing 2cb1669
  • change(footer): moved SubFooter logic to SubFooter.jsx from Footer story 902383a
  • refactor(Divider):add divider with content inside story e2d66dc
  • change(footer): added managed by section as properties 9328fc3
  • refactor(divider): remove custom divider d4870d2
  • refactor(Divider_:remove green color class & add tertiary 95f3018
  • refactor(footer): use remix icons for social links 5ef9aa2
  • refactor(Divider):remove clean class and use fitted prop 8d2be35
  • change(Divider): Rename color property to theme 0deffc8
  • refactor(footer): update links and logo align 7afbab9
  • change(footer): tweaked column sizes to the values before my changes fdf2718
  • refactor(footer): to latest figma design #182 3e0ba2b
  • refactor(footer): move subfooter logic to the proper component #185 3034577
  • refactor(footer): update controls b0b872b
  • refactor(testimonial): update divider 784450a
  • refactor(testimonial): changed divider color to secondary 84282f9
  • refactor(divider): remove custom divider from theme config a0409e8

🏠 Documentation changes

  • docs(divider): switch to secondary color 239844b
  • docs(divider): showcase path fix d5ea03f

🛠️ Others

0.4.3 - 2022-06-03

🐛 Bug Fixes

  • fix(edit): Fix columns/accordion inner toolbar padding fafbb52

💅 Enhancements

  • change(docusaurus): completed removal of description from guides 42424b9

0.4.2 - 2022-06-02

💅 Enhancements

  • change(docusaurus): moved color swatches around in the color guide 8a395fc
  • change(docusaurus): removed description from components and introduced category listing f220bf0
  • change(docusaurus): rename gap to space and added em spaces f5b042d
  • change(docusaurus): moved extra docs to webdev section 1ce0797
  • change(docusaurus): moved md_components files into webdev/md_components 73c1c08
  • change(docusaurus): added category yml for all sections 1740572
  • change(docusaurus): color guideline updates and spacing tokens documentation #148 c1154ba
  • change(docusaurus): modified story links to avoid broken usage tabs 78dc8d8
  • change(docusaurus): renamed several file id's so that they match the incremental naming sequence 11299c9

🏠 Documentation changes

  • docs(Docusaurus): timeline, testimonial, quote and tags aaa54ec
  • docs(spacing): add relative gap tokens 92abc8f
  • docs(colors): updated colors a28c99e
  • docs(tags/content): new page about tags and content 60be402
  • docs(Docusaurus): labeled icons f6a0f61
  • docs(typography): add font size and line height tokens 2ff65e4
  • docs(spacing): add spacing gap tokens 2d53727
  • docs(spacing): add missing gaps 442db46
  • docs(docusaurus): minor fix 6e66513
  • docs(spacing): aligned images e946fe5
  • docs(spacing): new image fcd3294

🛠️ Others

  • merge changes from develop into docusaurus token documentation a940138
  • perf(docs): restructuring order 8f4134d

0.4.1 - 2022-06-02

🚀 New Features

  • feat(languageLabeledIcon) : add new component 110558e
  • feat(LanguageLabeledIcon):add new component d00200c
  • feat(newTabLabeledIcon) : add new component 8f5cd31
  • feat(labeledIconGroup) : add new component 787d648
  • feat(DownLoadLabeledIcon) : add new component 6ea2fa1

🐛 Bug Fixes

  • fix(LabeledIcon) : fix lint errors 91b042f
  • fix(LabeledIconGroup) : fix links for tests daa1065
  • fix(LanguageLabeledIcon):bug fix & languages change 1436e2b
  • fix(LabeledIconGroup):fix based on Langauge & Download Labeled icon components changes 3015864
  • fix(newTabLabeledIcon) : add link item b1a9ada
  • fix(Labeled Icons):minor bug fix 00f3022

💅 Enhancements

  • refactor(labeledIcons): adjust new tab labeled icon to figma and replace px with rems 904615d
  • refactor(LanguageLabeledIcon):implement with pop up 0f3dd8f
  • refactor(labeledIcon): add group wrapper in labeled icon stories 4b7dd31
  • refactor(DownloadLabeledIcon):implement with pop up aa61f9b
  • refactor(labeledIcons): adjust language labeled icon to figma 5741e3d
  • refactor(labeledIcons): adjust download icon to figma and replace px with rems 4ae8530
  • refactor(LanguageLabeledIcons):minor storybook change 78f5544
  • refactor(LanguageLabeledIcon): set language code to uppercase and minor storybook change ac28693
  • refactor(labeledIcon): adjust paddings 9c1ecdd
  • refactor(labeledIcons): update margins for group labeled icons 5fa5ca9
  • refactor(labeledIcons): add variable for icon color 9f9d3cb
  • refactor(labeledIcons): update colors on download links c042642

🏠 Internal changes

  • chore(labeledIconGroup) : lint changes 535cee4
  • style(downloadLabeledIcon) : fix styling 6d8e3ac
  • style(downloadLabeledIcon) : fix alignment 4558017
  • chore(LabeledIconGroup) : lint changes ab36476

0.4.0 - 2022-06-01

🚀 New Features

  • feat(Carousel): create carousel for cards 2b0d737
  • feat(ItemwithIcons): Initial Item group with icons, new item variation 7f4ea47
  • feat(utilities): add file and basic utilities 05c88b2
  • feat(utilities): add file with basic utilities classes #173 855185f

🐛 Bug Fixes

  • fix(tokens): hsla function for shadows b8e5d37
  • fix(tokens): remove css var from less file a9c4224
  • fix(carousel):add storybook controls descriptions 269a603
  • fix(item): remove image width css from item.less 7b21cb2
  • fix(table): Set responsive breakpoint to @tabletBreakpoint 067e018

💅 Enhancements

  • refactor(item): import item.less in theme definitions c516374
  • refactor(Label):add corner,ribbon & basic label stories and styles e2bbbb9
  • refactor(Label):style changes based on label importance class ce4d5d1
  • change(tokens): rename gap to space and added em spaces 719efc4
  • refactor(item): add classes for size, set default to tile and add controls for grouped items d5a0405
  • refactor(tokens): add borders, shadows, shapes and z-index tokens 7069106
  • change(tokens): name spacing tokens gaps and added missing values up to 80px as documented 9fbd912
  • refactor(quote): Rename sourceInfo to extra info 76c2b40
  • refactor(item): WIP replacing unstackable with row e3a44de
  • refactor(tocens): add color design tokens 13bb165
  • refactor(item): adjust margins to match figma designs 6334581
  • refactor(carousel): remove title from story and color on card hover 12a1d7c
  • change(tokens): updated sizes with 4-8-16px increments 1f53d65
  • change(tokens): added size tokens to be used for width of elements cda5dea
  • change(utilities): values need important rule 96150d9
  • change(tokens): added also rem space values aedbbdd
  • change(tokens): updated z-index tokens with negative values 404efe4
  • refactor(tokens): add 14px font size token 8d8695d
  • refactor(docusaurus): restructured and improved sections navigation #174 b47b026
  • refactor(tokens): add 12 and 14px font size token #176 3681147
  • refactor(tokens): remove conditional border radius f0fe5ad

🏠 Documentation changes

  • docs(website): created new sections, improved website navigation 243f0be
  • docs(homepage): adding design system homepage with links for upcoming sections c9a9685
  • docs(docusaurus): copyedit, improved navigation 998762a
  • docs(website): restructuring, moved current DS docs to new folder 8bb612f
  • docs(homepage): copy editing ee37d6f

🛠️ Others

  • Release 0.4.0 f4bc509
  • feature(homepage): added Item group with icons #167 2ec99f5
  • feature(tokens): added borders, z-index, shadows tokens #171 74c1788
  • feature(tokens): added initial color design tokens #169 da3eae0
  • perf(carousel): added slick library ca9be51

0.3.1 - 2022-05-19

🐛 Bug Fixes

  • fix(input,segment): toggle inputs and padding fixes within Volto sidebar forms de030d6

💅 Enhancements

  • change(login): restored width of login container to 376px 0564293

0.3.0 - 2022-05-17

🚀 New Features

  • feat(Callout):create Callout component with Blockquote style 3d486b1
  • feat(callout): Align the Callout component with Volto slate component e9343ff

🐛 Bug Fixes

  • fix(testimonial): fix storybook arg names b9df52f
  • fix(table): tweak responsive table for extra long headers 7f9f9e2
  • fix(quote): fix color and padding issue 310d6b3
  • fix(accordion): Fix accordion active title color 57af165
  • fix(testimonial): remove info arguement 9593d95

💅 Enhancements

  • refactor(Table):add responsive mobile table story and styles aed69e6
  • refactor(testimonial): adjust to volto design | fix avatar image size 546070e
  • refactor(Quote):rename Pullquote component to Quote 9384a0c
  • refactor(Quote):rename Quote.Metadata to Quote.SourceInfo dfae8b1
  • refactor(Quote): rename Author to Source 6d400f6
  • refactor(Quote):move Testimonial component under Quote folder e2467c2
  • refactor(testimonial): readjust rounded card b419334
  • refactor(Table):wrap table with semantic ui container 24ac2bb
  • refactor(Testimonial):minor storybook bug fix 7b6d128
  • refactor(Callout): wrap story with semantic ui container ead362d
  • refactor(quote): update action name to match the functionality caf2e35
  • refactor(table): add borders to responsive table with celled attribute 8a71a67
  • change(table): make use of headerSortableWhiteSpace variable fd836fb
  • change(table): use the @mobileLandscapeBreakpoint for max 480px media query 90880ab
  • refactor(Quote):rename pullquote to Quote in Testimonial f54da19
  • refactor(Testimonial): change card class name e995c32
  • refactor(Testimonial): prettier changes 904594b

🛠️ Others

  • feature(tokens): added tokens folder for design tokens we can use in the system a542172
  • perf(lint): fix f2ef3ab
  • Release 0.3.0 8724b28

0.2.4 - 2022-05-13

💅 Enhancements

  • change(segment): brought back overrides from pastanaga into our theme 14efd02
  • change(container): removed padding from containers restoring thus the defaults c2ed813
  • change(grid-story): added container as grid width is influenced by container width 459f481
  • change(breadcrumb): removed padding from breadcrumb added by container c5df567
  • change(container): modified all outputted widths to align to grid 9f29cef
  • change(breakpoints): restore Semantic UI breakpoints, adding extra needed values e7f5b1e
  • change(container): restore maxWidth to 100% now that the last value is 1120px 8b55c58
  • change(header): wrap header globalnav links useful for editing section 10d4f56
  • change(breadcrumb): added vertical variant to the breadcrumbs like we do in Volto f405f84
  • change(breakpoints): added also contentBreakpoint for backward compatibility b6c9212

🛠️ Others

  • [JENKINSFILE] Add failure comment, no jenkins fail c325bf1
  • prettier changes 134da52
  • [JENKINSFILE] format PR comments 739438c
  • [JENKINSFILE] mention comment author in comment 39a26aa
  • [JENKINSFILE] remove debug, add error per stage 903eecd

0.2.3 - 2022-04-29

🚀 New Features

  • feat(CallToAction):add feat call to action ab53642

💅 Enhancements

  • refactor(button): add container to stories 6c02c19
  • refactor(tab): update vertical tab columns and content b473fab
  • refactor(call to action):render call to action with Button as="a" e7dfabf
  • refactor(button): update inverted button colors c822021
  • refactor(Tab):scrollbar change in mobile & vertical tab fix 0e34cbf
  • change(banner): added icon class to share icons 48e866e
  • refactor(Button): move button to forms folder 94996fc
  • refactor(Tab):minor change in secondary pointing menu variables 280b6c4

🏠 Documentation changes

  • docs(button): import call to action stories e4eed44

0.2.2 - 2022-04-22

🐛 Bug Fixes

  • fix(publicationCard): restore line endings 582859e
  • fix(form): added back overrides from Pastanaga theme a3f7ff8
  • fix(OrderedList) : add list only if sub list exists 8acbc8d
  • fix(label): update highlight label color d55bbb0
  • fix(publication card): run prettier 81a5bfc
  • fix(avatar) : fix naming convention for arg 84fc5fa
  • fix(tab): restore mobile font sizes 58f39be
  • fix(addForm): add min height to add form and fixed block chooser overflow ca4415d
  • fix(OrderedList): adjust margins to fourth sublists 663d384
  • fix(dropdown): being hidden because of third party css 7d353df
  • fix(modal): overflow hidden as clearfix of last child from modal b4923f5
  • fix(RelatedContent):fix merge conflict adc34bf
  • fix(button): labeled class needs to be placed after left or right keyword 53d1204

💅 Enhancements

  • refactor(card): prettier fixes e10e3d6
  • refactor(card): add card variations e16d05b
  • refactor(card): remove stories 0deb0ca
  • refactor(card):delete primary and secondary card stories 1f95d22
  • refactor(Avatar) : remake avatar as card variant ea77cdd
  • refactor(card): add styles for card variations 7407bd3
  • refactor(storybook): add story with related content inside of a tab dca008a
  • refactor(card): Rename variables from avatar to rounded be01316
  • refactor(avatar): update less variables and layer structure f965db1
  • refactor(PublicationCard):remake publication card to be a semantic card variation 5a0c6ab
  • change(button): simplified button styling fe892d6
  • change(button): simplified storybook naming and examples 9a7df4f
  • refactor(Avatar) : convert avatar component to card variation 2004a94
  • refactor(Related Content): change in grid and add see all button 955450e
  • change(button): added back button.overrides from pastanaga theme 3b55acb
  • refactor(card): add card class control 68c91a9
  • refactor(card):delete publication card variables & overrides files 6be8a03
  • refactor(OrderedList): rename TOC to Ordered List and add container to the story e00c4db
  • refactor(card): add card grid fluid story with no columns f38251c
  • refactor(list): remove horizontal control 1f5e576
  • refactor(avatarGrid): update less variables and layer structure db554a8
  • refactor(Related Content):show button when there are more hidden cards 57ff1c8
  • refactor(RelatedContent):change to use new card variant instead of publication card component 7cf424a
  • change(breadcrumb): brought back pastanaga overrides to breadcrumbs bca1c93
  • refactor(card):delete publication card folder & story 68bf773
  • change(buttons): modified basic and circular variant behavior c06fed9
  • refactor(card):tertiary variation minor story update 87b8dca
  • refactor(DescriptionList): add container to story d647c1a
  • refactor(List):render ordered list with ol,li tags 87813c1
  • refactor(OrderedList) : change table of contents story to ordered list cb6197c
  • refactor(publicationCard): update tag and name variables c109ad9
  • refactor(UnorderedList): update list as ul, list items as li and add container to strory 2c096e1
  • refactor(card):organize controls and minor bug fixes f3f6e35
  • refactor(less variables): publication card style changes c5a84e9
  • refactor(less variables): add less to related content e1a5543
  • refactor(RelatedContent):delete publication card component 2ed0ed4
  • change(button): basic button is again without padding, border and background 5a907c7
  • refactor(PublicationCard):remove link wrapper 5911a0d
  • refactor(less variables): change publication card height per viewport d7a5256
  • refactor(Timeline):change timeline icons b2fe0bf
  • refactor(publicationCard): replace px with rems 53bf8da
  • refactor(Related Content): change in related content grid bf856ce
  • refactor(List):render description list with dl,dt,dd tags ec669a7
  • change(button): show only labeled variant for buttons with icons bf49944
  • refactor(card): import image for rounded card ca5a47e
  • refactor(progress): add container to story dfb33bb
  • refactor(storybook): add publication card story with different description sizes 23af97b
  • refactor(List):render default list with dl & dt tags ece2280
  • refactor(storybook): add publication cards stories with longer description 37adefa
  • change(button): basic icon buttons no longer have box shadows c2f3ea3
  • refactor(card): remove story afc5f79
  • refactor(less variables): change card description line number per device 6946fda
  • refactor(card): update rounded card image path 8db3a85
  • refactor(DefaultList): add container to story f971193
  • change(button): bumped z-index of sidenav expand button 445ed8a
  • change(progress,label): color accessibility fixes #151 09cf6e3
  • change(button): text button now has an underline with a focus border like other buttons cdd9043
  • refactor(card): update card variation grids path 756589c
  • refactor(card): minor fixes 3a880d7
  • change(button): primary color is blue and secondary is green 53e0a0c
  • refactor(List):change styles to match with the tags lists are rendered 2673890
  • refactor(progress): update colors for accessibility ea2f454
  • refactor(card): move avatarGrid & relatedContent to Card folder 1959d52
  • refactor(Timeline): change storybook timeline colors to fix accessibility issues 79da8dc
  • change(segment): restore light grey background color for secondary segments 8716b08
  • refactor(relatedContent): adjust column paddings 8a1520d
  • refactor(storybook): clear up code 3ada154
  • refactor(card): use the rounded class for avatar grid 8c000f3
  • refactor(card) Update rounded card class 140b587
  • refactor(avatar): add variable for image border radius c23341c
  • refactor(label): add container to story 565101f
  • refactor(progress): update value color for accessibility error 6fc76f8
  • refactor(card):use jsx extension 413d328

🏠 Internal changes

  • chore(Avatar) : add container to stories 41b748c
  • style(OrderedList): prettier fixes ed95e4d

🛠️ Others

0.2.1 - 2022-04-08

🐛 Bug Fixes

  • fix(version): Switch to 2.0.0.alpha.1 83b8b8e

🛠️ Others

  • cleanup(loader): Remove useless HTML d1d180c

0.2.0 - 2022-04-04

🚀 New Features

  • feat(card) : add new default card color-schme 965adea
  • feat(label): Handle slate links and footnotes f382431

🐛 Bug Fixes

  • fix(buttons,toggles): border and background color when active 147629 #139 ea36f31
  • fix(checkboxes): background color when they are toggles 4b6ab67
  • fix(buttons): border set on basic buttons appearing on svg elements of Volto UI 69ca73f
  • fix(label): Zotero/Footnotes inside label 0ee4d58
  • fix(card) : add control for image url in storybook b28e530
  • fix(less variables):change font family e4bca9e
  • fix(storybook):minor bug fix 9fc53bc
  • fix(tag): fixes merged theme config eb30363
  • fix(Banner): prop types fix a270e5b

💅 Enhancements

  • refactor(tag): splits Tags component to TagList and tag, changes default tags style 78a5f8c
  • refactor(Banner):add banner share pop up in banner story c9688b2
  • refactor(tag): remove classes and actions that add background color ce9b6f9
  • refactor(Banner):change banner's image wrapper implementation 9153dd1
  • change(package): bump release version to 1.10.0 7e984c1
  • refactor(card): align cards and images, update less variables d47c978
  • refactor(card): add class inverted for default card 919a56e
  • refactor(tag): changes component name e1db068
  • refactor(tag): changes color metallicBlue to bottleGreen e4b68ac
  • refactor(less variables): change tag list mobile view fcded3d
  • refactor(tagList): update story to not use tag color classes 8b5b61b
  • refactor(Banner):minor bug fix ff8c352
  • refactor(Banner): add metadata field sub component 327b7e7
  • refactor(banner): add and adjust remix icon for banner action 1bf3ffa
  • refactor(banner): replace px with rem and adjust share popup padding a568329
  • refactor(Banner):add type class to metadata field and apply styles to it 86a2866
  • refactor(less variables):change tag list styles 8670087
  • refactor(banner): share items display flex on desktop 3ff8684
  • change(banner): added background gradient, share popup, metadata show and hide #136 2f5dcca
  • refactor(banner): update gradient 570ee1e
  • refactor(tags): removes hardcoded ':' ea58e86
  • refactor(card): remove card border bc77739

🏠 Internal changes

  • style(card) : add lint and prettier changes 9d9a773
  • style(tag): remove comments 501fcdf
  • style(tag): stylelint and prettier changes 08b6386

🛠️ Others

0.1.9 - 2022-03-25

🚀 New Features

  • feat(all): 1.9 release #124 0d3f6fb
  • feat(callout): Align volto-slate callout with blockquote style 9e0bb49

🐛 Bug Fixes

  • fix(inpageNavigation): restore hidden on top functionality c554e6e
  • fix(list): Fix TOC margin on 3rd level f17da79
  • fix(inpageNavigation) : add smooth scroll animation 42f6564

💅 Enhancements

  • refactor(footer): update visual and mobile margins 64f05af
  • refactor(header): restore union dropdown after implementation a7029c5
  • refactor(pullquote): adjust to the new figma design 78e4606
  • refactor(breadcrumb): adjust font sizes and import remix divider 5fcabaf
  • change(header): use viewport width for changing mobile text in header dropdowns 5a7868e
  • refactor(inpageNavigation): adjust to the new figma design 4073acf
  • refactor(tab): add max width for tab items 366d279
  • refactor(less variables):change pullquote styles 9ad94bb
  • refactor(Pullquote):change quote positions and add Pullquote.Metadata sub component 6bce35f
  • refactor(inpageNavigation): Update to remix icons 19a6061
  • refactor(inpageNavigation) : move icon & text to be in column 0953910
  • change(breadcrumbs): modified breadcrumbs template to behave like breadrumb template 490a559
  • change(package): bump release version to 1.9.0 43a6e4b
  • refactor(breadcrumb): adjust font sizes and import remix divider #120 09a3a01
  • change(menu): modified secondaryPointingItemMaxWidth to a value that equals to 250 ea138a1
  • refactor(pullquote): introduce meta section, use remix icons, integrate slate callouts #119 fd740c9
  • refactor(footer): updated visuals and gradients #117 e5c6d18
  • change(scrollToTop): feature inpage navigation revamp #121 3cf20a8
  • refactor(footer): update visual and gradient 764ec23
  • change(header): use 12px font size for mobile resolution dropdowns 6dad0fa
  • change(nav): added navDepth to 3 in order to enable mega menu integration c4f73fd

🏠 Internal changes

  • style(inpageNavigation) : lint changes 3641d78
  • style(inpageNavigation) : add less variables 0699c70
  • style(pullquote): create variable for icon font size fea9b0a
  • style(inpageNavigation) : add lint & prettier changes f8dd012
  • style(inpageNavigation): remove comment 1aee011

🛠️ Others

0.1.8 - 2022-03-18

🐛 Bug Fixes

  • fix(card): avoid long links from spilling outside of card body area 95b8951

💅 Enhancements

  • change(typography): set heading sizes as detailed in docusaurus typography section 189bf20
  • change(docusaurus): content tweaks, inpage navigation section #112 b62d1b1

🏠 Internal changes

  • chore(docusaurus): fixed grid tablet breakpoint value c7fbc09

🏠 Documentation changes

  • docs(docusaurus): capitalization remove bf8fa44
  • docs(docusaurus): update 1c04976
  • docs(docusaurus): comment address on pr 112 6e4fe3b
  • docs(docusaurus): color minor update 13f9fda
  • docs(docusaurus): tabs and breadcrump update d0547e5

🛠️ Others

  • doc(colours): add more content ec66248
  • Add divider content for metadata field in Banner f1e34bd
  • Release 1.8.0 fd6ba04

0.1.7 - 2022-03-15

🚀 New Features

  • feat(less): add global gap sizes 3c83f20
  • feat(icons): import remix css 29967fb

🐛 Bug Fixes

  • fix(menu): fix border overflow for tabs and pagination e88721f
  • fix(accordion): responsive and accessibility issues c225935

💅 Enhancements

  • refactor(menu): update paddings for tabs and pagination 533a509
  • refactor(accordion): import semantic icon for remix arrows 9aa77d8
  • refactor(all) icons, accordion, button and menu itml #108 52ed2ca
  • change(storybook): segment stories now contain several elements 98a7654
  • change(table): inherit header alignment instead of hard-coding values ebb5193
  • refactor(icons): add remix icons c4c1a92
  • refactor(container): restore mobile width to auto 2df184c
  • refactor(button): update action button hover color bb09d71

🏠 Internal changes

  • chore(docusaurus): docs delete 5f9d733

🏠 Documentation changes

  • docs(colors): corrections da64c4c
  • docs(list): default list showcase 8ded062

🛠️ Others

  • bug(form): input min-width more specific to not break volto interface 3f5b5d4
  • Update package.json 3dba28b

0.1.6 - 2022-03-11

🚀 New Features

  • feat(cards): add custom display for volto-block-image-cards 645096a
  • feat(PublicationCard):create publication card component & styles 3e5f9b7
  • feat(PublicationCard):create publication card component & styles 12cdd5d
  • feat(Related Content): create Related Content component 77eda95
  • feat(Related Content): create Related Content component 08d495b
  • feat(pagination,related) added several r3 components #105 08d47c1

🐛 Bug Fixes

  • fix(Related Content): limit publication card number to 4 e7df032
  • fix(less variables):rename publication card variables 55c6fb8
  • fix(Publication Card): add link to card and arg name fix 36a7c96
  • fix(radio): fix bullet scaling issue with firefox 5f02c95
  • fix(radio): fix bullet scaling issue with firefox dbb2e27

💅 Enhancements

  • refactor(form): remove custom classes and add container to form items 6b5442a
  • refactor(form): remove custom classes and add container to form items d1ec083
  • refactor(form): update form wrapper component a719576
  • refactor(form): update form wrapper component 0736ec7
  • refactor(form): adjust form items to volto theming 4213cfb
  • refactor(form): adjust form items to volto theming 374ffbc
  • refactor(breadcrumb): remove custom class anf and new variables b3cb83d
  • refactor(breadcrumb): remove custom class anf and new variables d5808ad
  • refactor(storybook): clear up unnecessary form elements controls f7e7d5b
  • refactor(storybook): small change in unordered list story 3ffd872
  • refactor(storybook): small change in unordered list story 6ce16e9
  • refactor(pagination): fix menu overrides for tabs that affects pagination fe8c4ca
  • refactor(pagination): fix menu overrides for tabs that affects pagination 3f4b726
  • refactor(Loader):remove image & add background image 70fe041
  • refactor(Loader):remove image & add background image ac38126
  • refactor(list): remove selection control a09b179
  • refactor(list): remove selection control 17bf710
  • refactor(storybook):unordered list minor change df2b727
  • refactor(storybook):unordered list minor change ef6db73
  • refactor(colors): remove metalic blue color b2f95b6
  • refactor(colors): remove metalic blue color 1eea33f
  • refactor(button): update variables b1774d8
  • refactor(button): update variables 061f3e3
  • change(blockquote): treat slate as a variation of blockquote component 19bd9a5
  • refactor(container): remove important from rules e984771
  • refactor(storybook):add textarea control to add/remove fluid class 475f540
  • refactor(container): remove important from rules 1cc6984
  • refactor(storybook): add required attribute to form fields fecee27
  • refactor(progressBar): update progress bar colors with vars c4ef1f0
  • refactor(progressBar): update progress bar colors with vars a44d73c
  • refactor(storybook): add required attribute to form fields 21da79e
  • refactor(list): adjust bullet size 2b29e4e
  • refactor(list): adjust bullet size 61c341c
  • refactor(statistic): add inverted background to global variables 1427e70
  • refactor(statistic): add inverted background to global variables ea25dfa
  • refactor(statistic): remove custom class 46cc560
  • refactor(container): update mobile width d548a44
  • refactor(grid): replace px with rem units e792f51
  • refactor(statistic): remove custom class b5c8e7c
  • change(docusaurus): updated template to change what's new title 3e15f4d
  • change(footer): added display variable for footer site logos d5b3c2f
  • refactor(grid): replace px with rem units f0331d0
  • change(github): auto deploy only on develop branch 11d6b4e
  • refactor(header): implementation in preparation for Volto integration #20 #89 95b136d
  • change(github): trigger autobuild when modifying templates contents 46094b1

🏠 Internal changes

  • style(list): prettier fixes f9e3b05
  • style(list): prettier fixes 8eb715b
  • chore(github): merge changes from develop to develop-itml 063bd6e
  • chore(github): build deployment only on develop branch a5a1b08
  • chore(github): build deployment only on develop branch bb455aa
  • chore(github): merge changes from develop to develop-itml 129c12f

🛠️ Others

  • Revert "chore(github): merge changes from develop to develop-itml" ca9520f
  • refactor breadcrumbs component, make it functional and customizable e902d69
  • rollback(cards): move custom display to volto-block-image-cards 2564b1e
  • bring back segment wrapper and make it attached 8458f03
  • no display: flex for blockquote added from slate 5595ce1
  • Add rule about code length a5f3652
  • Add indenting rule 15c44cb
  • fix warning related to proptype 946c6c6
  • fix profile section css overflow db5126f
  • Add rule about import sorting 804e188
  • don't use volto-slate 6a02976
  • remove segment custom width 1d3ea40
  • Add rule about naming vars 8f9020f
  • update style for accordion title 0b0d678
  • Release 1.6.0 e771e65
  • update bbcab87
  • add margin to <br> element to simulate gap as in design c6685c1
  • make breadcrumbs default size as tiny 589581f
  • remove uneeded style 82a8fb1
  • Add rule about hardcoded values e04e0df
  • Add file mode rule 65c9a93
  • Add DRY rule 66c9c3a
  • set profile section overflow to auto 71ab47f
  • Add Sonarqube tag using eea-website-frontend addons list 647a6e3
  • removed override already present in card.less 50d2ab2
  • update 7a1d482
  • Add functional components rule; add classnames rule 91a0b06
  • added comment about need for removal of this fix later 65b8166

0.1.5 - 2022-03-08

🚀 New Features

  • feat(cards): add custom display for volto-block-image-cards f49ffb6
  • feat(KeyContent): add new component 2534c54
  • feat(docusaurus): Updated developer guidelines ca146ff
  • feat(storybook): add testimonial component 55d9747
  • feat(storybook): add AvatarGrid component b668445
  • feat(storybook):add Loader component f675834

🐛 Bug Fixes

  • fix(breakpoints): fix largest screen breakpoint bug on scaling e4a11c8
  • fix(profile): section css overflow and padding issues #95 bb9eb0f
  • fix(storybook): lint auto changes for AvatarGrid b8e74f1
  • fix(components): add grid structure to various components cc33546
  • fix(header) re-added span tags removed in pull request #74 00702d7

💅 Enhancements

  • refactor(button): styling updates 37afda5
  • refactor(tab): updates on variables and overrides 54bf703
  • change(blockquote): treat slate as a variation of blockquote component 5e8a8b8
  • change(footer): added display variable for footer site logos 2f942b4
  • refactor(checkbox/radio): remove header from message and adjust top position of bullet 4a072b3
  • refactor(color): remove secondaryColorDarken variable 74c8ba0
  • change(docusaurus): updated template to change what's new title 58f58c8
  • change(github): auto deploy only on develop branch bfa35a3
  • refactor(header): implementation in preparation for Volto integration #20 #97 cddda20
  • refactor(breadcrumbs): component, make it functional and pluggable #32 #94 9f42e80
  • change(card): added styles for volto cards integration #92 a46ac21
  • refactor(grid): remove column count from example ac0e9cf
  • change(github): trigger autobuild when modifying templates contents 5f7d152
  • refactor(grid): remove custom grid 1d978a9
  • refactor(Form):change form field wrapper implementation 73cdd6d
  • refactor(message): update colors to match design 633ce31
  • refactor(checkbox/radio): update variables and remove important rules ad533b4
  • refactor(less variables): add variables to less for new components 47df026
  • refactor(Tab): fix vertical tab alignment 401bdf2
  • refactor(lint changes): add lint changes 6f6847f
  • refactor(inpageNavigation): adjust to volto theming 62f74ea
  • refactor(message): updates on styling b4cf850
  • refactor(banner): update class name ef0969b
  • change(github): use develop for auto pushing a32a723

🏠 Internal changes

  • style(design-system): unix eol 631fa90
  • style(checkbox/radio): prettier fixes a04939f
  • style(design-system): unix eol 3c753f0
  • style(message): stylelint fix 5b75057

🏠 Documentation changes

  • docs(docusaurus): visuals guidelines 544a950
  • docs(docusaurus): search guidelines 0fb229d
  • docs(docusaurus): loader page 892a25d

🛠️ Others

  • Reformat header.less 1f99dfc
  • Close menu when changing path 65daea9
  • refactor breadcrumbs component, make it functional and customizable 4ec374e
  • rollback(cards): move custom display to volto-block-image-cards 79d4c89
  • Open overlay menu on global menu click cc749bc
  • bring back segment wrapper and make it attached 9f413ff
  • Use renderMenuItem also in mobile menu 02de0bb
  • Fix clicking outside closes menu af52664
  • Cleanup args in header story 2bf6a30
  • fix warning related to proptype 824b9be
  • fix profile section css overflow 8fd2654
  • don't use volto-slate 70ca3d4
  • remove segment custom width 4a60d84
  • update 96f4af0
  • Fix TopDropdownMenu component rendering in mobile a4626de
  • Add usePrevious hook 797faba
  • make breadcrumbs default size as tiny 3c8e1c6
  • Update package.json fa020cb
  • Add rule about hardcoded values 0c6912c
  • set profile section overflow to auto 8db62bb
  • added comment about need for removal of this fix later 6fdbd71
  • Add Sonarqube tag using eea-website-frontend addons list 6051724
  • removed override already present in card.less 93c4e5a
  • Remove console.log calls 8a3a4cb
  • update 81bb7d4
  • Update comment ffa2400
  • merge develop into this branch ad5b388
  • WIP a8d97f1
  • Use header.less from develop branch 99edbc6
  • WIP 57b5783
  • WIP 785da36
  • WIP 5d1eba9
  • adds Tags e37fc19
  • Add useClickOutside hook 70364c8
  • Implement outside click handling fa6f818
  • Simplify overlay menu template 28b0478
  • fixes less variables, fixes tags positioning cc19b9b
  • WIP 15bc0f4
  • no display: flex for blockquote added from slate 312a893
  • Add rule about code length 318cd48
  • Add indenting rule d589685
  • Add rule about import sorting cd337c1
  • Add rule about naming vars b112de0
  • Bring back classNames from header subpopup e477a51
  • removes tags hashtag from jsx 6b8b3e9
  • WIP d481324
  • fixes undefined on empty classes 4b29080
  • stylelint changes a5ab830
  • Footer link color @white 578e4f7
  • add margin to <br> element to simulate gap as in design 9ab9a97
  • impors colors from site variables 6117267
  • small fix for the link in footer action 72df049
  • remove uneeded style 66e9064
  • use proper naming conventions for var naming 596e314
  • Add file mode rule 805baa7
  • use less variables b43ac8d
  • Add DRY rule 2f1584e
  • Add functional components rule; add classnames rule 1b2915e
  • fix z-index of header 7d2a5d6
  • Remove comment 7d120b1

0.1.4 - 2022-03-01

💅 Enhancements

  • refactor(pagination): adjust to volto theming 06cc3b6
  • refactor(Form):create form field wrapper file 95b9934
  • refactor(megaMenu): update margins for menu items 230e476
  • refactor(megaMenu): update gradient 47f2ea4

🏠 Documentation changes

  • docs(docusaurus): divider page c6bb238

🛠️ Others

0.1.4-beta.0 - 2022-02-25

🚀 New Features

  • feat(github): added feature and bug reports templates with our guidelines as checkboxes 1549093

0.1.3 - 2022-02-25

🐛 Bug Fixes

  • fix(all): change eol to unix 62e7224
  • fix(banner): separate url value f9c9140
  • fix(all): merge eol c68f6e0
  • fix(blockquote): align self property now uses a valid entry ec76163

💅 Enhancements

  • refactor(megaMenu): new implementation ff013af
  • change(volto): removed customizations made for ims theme from volto-eea-design-system bc8d514
  • refactor(Timeline): divide to sub components and change files to .jsx 3e2bd3b
  • refactor(header): update variables 4e5d08d
  • refactor(Header): link header's menu to mega menu 08406d8
  • refactor(Menu): change mega menu implementation 455a51b
  • refactor(Grid):minor changes and delete extra files 272585d
  • refactor(timeline): adjust to volto theming b98641a
  • refactor(megaMenu): fix link hover issue for tablet 564e972
  • refactor(header): add remix icons and minor updates c9c97dd
  • refactor(Header): change header buttons implementation 6608b8c
  • refactor(Header): add sub components and change existing Main 74c35a3
  • refactor(table): adjust to volto theming ab7a0e8
  • refactor(Footer): delete Actions & ThemeSites files and clear imports 7a78456
  • refactor(header): update variables 326655a
  • refactor(Breadcrumb): add react router link and minor bug fix 073a3a3
  • refactor(Header): show menu on search & minor bug fix 4d49a8a
  • refactor(List): add extra default list story 95665cd
  • change(docusaurus) change generation of what's new section and bump package version 6c35cff
  • refactor(Footer): minor code changes 67cb4bc
  • refactor(Menu): add class to mega menu items for styling 19baa34
  • change(accordion): modified default accordion stories titles with real accordion names cf11cc8
  • refactor(Header): accessibility image alt fix a7347a6
  • refactor(header): adjust to volto in progress 760beca
  • refactor(Header): header items as storybook arguments 388c752
  • refactor(banner): update less variables 35b0a98
  • refactor(banner): actions as buttons; don't hardcode url for banner image; subcomponentize Banner, add Banner.Action; add developer guidelines on inline styles and line endings; 6dd5a41
  • refactor(blockquote): fix responsive margins and sizes rems 209f94f
  • refactor(Input): label position and style change 970074a
  • refactor(header): update dropdown menu 32eb0fa
  • refactor(timeline): theming updates c80c9aa
  • refactor(Blockquote):remove image stories a6357ca
  • change(docusaurus) proofread blockquote usage section and removed unused api section 0bb29fd
  • change(infrastructure) cherry-pick fix 9639243 skipping jenkins on auto commits fc744cd
  • change(ci) build storybook and docusaurus only when pushing to develop-itml branch 4de0cbf
  • change(infrastructure): modify whats new doc when committing the auto deployment 39df33e
  • change(blockquote): introduce float argument for blockquote with image storybook 8fc7290
  • refactor(pullquote): add word break 2245e53
  • refactor(Banner): minor bug fix b9073b6
  • refactor(table): fix th font weight a96a0a7
  • refactor(comment): remove avatar border radius d42c37b
  • refactor(banner): adjust title size 7a24d9c
  • refactor(Image): change image path a580da6
  • change(infrastructure): specify that docs folder contains changes for deployment a1ca915

🏠 Internal changes

  • style(input) prettier fixes e83fa0c
  • chore(storybook): prettier fix 354c7b3
  • chore(design system): technical commit for edw integration tests 9f76035
  • style(storybook): prettier fixes 3c9ad34
  • chore(infrastructure) updated branch with changes from bitbucket 77866f8

🛠️ Others

  • doc(colours):fix color to better show primary ones 705b789
  • doc(colours):change font size to fit text in one line 4ad7516
  • bump package release to 1.3.0 f3cfe4f
  • Refactor banner into content subcomponent f8df238
  • lint fixes cda322d
  • rollback don'ts grammar change and disable unresolved import for Banner.stories.jsx a1bd715
  • Add space line in component d4d1a5f

0.1.2 - 2022-02-17

🚀 New Features

  • feat(blockquote) added blockquote styles as a custom module d30662e

🐛 Bug Fixes

  • fix(inpageNavigation): hide at the top of the page 97ef500
  • fix(footer):missing image ac91a29
  • fix(comment):fix broken image 8125dc1
  • fix(message): fix font loading fdc498e
  • fix(logo): logo change 5f8c8af

💅 Enhancements

  • refactor(storybook): multiple components fixes 4a3ff51
  • change(infrastructure) re-enable integration tests for auto release stack ce8daf8
  • refactor(storybook): global site files styling update f3770f1
  • refactor(storybook): multiple components 9277aac
  • refactor(footer) adjust to volto theming update a59f1c3
  • refactor(header): minor styling update dd6b55c
  • refactor(Header): change header mega menu 7559b57
  • refactor(banner): adjust to volto theming 451b949
  • refactor(accordion): minor styling update aeaf25f
  • refactor(footer): adjust to volto theming bdff176
  • refactor(footer):mobile responsiveness 14822be
  • refactor(storybook): main and custom less files update 1607760
  • refactor(timeline): update after removing timeline addon f54d380
  • refactor(Footer): replace with subcomponents 378c652
  • refactor(Header): header change 029e850
  • refactor(Header): change header bar 2b766fd
  • change(docusaurus) use itml branch for docusaurus deployment 6e286c5
  • refactor(accordion): adjust to volto theming 971fcb8
  • refactor(Header): add sub components 7f955db
  • change(docusaurus) tweak auto deployment to always commit changes from docs a2940da
  • refactor(banner): less and variables files created d5b1a8a
  • refactor(label): adjust to volto theming 3c945e1
  • refactor(message): adjust to volto theming 3e950fc
  • refactor(Footer): add sub components and props c3d1487
  • refactor(modal): modal and confirm adjust to volto theming 83b60e9
  • refactor(comment): adjust to volto theming 84348c3
  • refactor(storybook):adjust headings 32f64f9
  • refactor(Header): add comments to header menu c2c83b2
  • refactor(Accordion): clear up accordion stories code 4e59b8f
  • refactor(segmant): adjust to volto theming 3ab211e
  • refactor(button) minor styling update 8782bb2
  • refactor(banner): change image position cdd76d5
  • refactor(breadcrumbs): update less variables 640817e
  • refactor(list): adjust to volto theming 1079c73
  • refactor(timeline):adjust timeline module 213eb11
  • refactor(blockquote):adjust to volto theming 5eec87f
  • refactor(progress): add progress bar colors ccf3c98
  • refactor(pullquote):adjust to volto theming fee4466
  • refactor(Header): change mobile mega menu c7ecf18
  • refactor(statistic): adjust to volto theming b726e49
  • refactor(button) adjust to volto theming eb257f8
  • refactor(form): minor styling update 79934b2
  • refactor(Footer): create Actions & Sites sub components 446840b
  • refactor(inpageNavigation): adjust to volto theming 85c631a
  • refactor(Inpage Navigation): changed button's display 36e5b4f
  • enhancement(docusaurus) modified headings to be within release versions 19ace30
  • refactor(storybook): move components to ui folder cb91f88
  • refactor(Header): change mega menu de0fc6b
  • refactor(Pullquote): divide Pullquote to sub components 34413c4
  • enhancement(docusaurus) replace changelog when auto-building docs Refs #145331 da25c0e
  • refactor(popup): adjust to volto theming d0d192d
  • refactor(card):adjust to volto theming 2ab6f91
  • refactor(item): adjust to volto theming 89a16af
  • refactor(pullquotes) remove unnecessary variables e0d20a3
  • refactor(progress):adjust to volto theming d1ab950
  • refactor(blockquote) change variables names 36fd5be
  • refactor(comment): adjust font sizes 0311ed1
  • refactor(InpageNavigation): clear up code 1d7afdc
  • refactor(container): change variable name for computer padding 26d123f
  • refactor(inpageNavigation): remove imports 25c1d1c
  • refactor(storybook): update ui index components exports ce78d47
  • change(infrastructure) auto build storybook when pushing to develop-itml branch of volto-eea-design-system e9aa5bc
  • refactor(storybook): delete demo stories 8b58d02
  • change(docusaurus) align deployment steps for building docusaurus 37e4ce0
  • refactor(storybook): remove components from customizations folder 8930ede
  • refactor(tab): minor styling update 1252ad0
  • refactor(comment): change avatar src e5f9c4c
  • refactor(banner) : change file type and folder 878742b
  • refactor(form elements):changed text 919beea
  • refactor(Image): change image src b971084
  • refactor(Pullquote): add component propTypes d32c5e6
  • refactor(blockquote): adjust font sizes d71a3ce
  • refactor(footer): update font sizes 1c91c35
  • refactor(Blockquote): add component proTypes ea02649
  • refactor(logo): update image f611372
  • refactor(docusaurus): restore config f2c5239
  • refactor(blockquote): update component name 572e655
  • refactor(header): fix story header import ceda6c7
  • change(infrastructure) auto build docusaurus when pushing to develop-itml branch 7bebdf5
  • refactor(storybook): remove components from customization folder 4a9bb9b
  • refactor(banner):story rename 56ff603
  • change(testing) removed navigation from cypress tests until component is finished 5549f4c
  • refactor(Segment): change to .jsx extension 5cb35d8
  • refactor(Pullquote): change to .jsx extension 564cf7e
  • refactor(PopUp):change to .jsx extension dcb24ff
  • refactor(InpageNavigation): change to .jsx extension dfefce3
  • refactor(Blockquote): change to .jsx extension 44a1645
  • refactor(heading): story name update aa10f34

🏠 Internal changes

  • style(footer): prettier fix 902c257
  • style(storybook): prettier fixes 59f941d

🏠 Documentation changes

  • docs(docusaurus):multiple page updates 2aba73e
  • docs(docusaurus):update page content 565697f
  • docs(grid):update components grid 60eb083
  • docs(docusaurus): page adjustments 0641eac
  • docs(docusaurus):updated various pages f860176
  • docs(docusaurus): logo change 3af5e5c

🛠️ Others

  • added sortable table stories and descriptions 6d44dd7
  • Layout components theming 5861013
  • recovered files from origin a4ac04f
  • grid component & stories changes 4a5752e
  • Updated what's new section with actual commits from volto-eea-design-system repo fc5e3c3
  • Docusaurus title possible fix. db699e7
  • form elements stories added description & default values 6b4f6eb
  • removed API tabs 58aa928
  • Layout updates 854f388
  • Refs #142123 removed extra customization of semantic.less: ab9de81
  • added page-header,footer and grid in docusaurus 660c8e3
  • Manual docs build and commit 666eb6a
  • added svg & png files f1338d5
  • added missing components to docusaurus 934dfd8
  • Control descriptions updated 56581eb
  • Grid updates 700332d
  • Button theming update 0ec68b6
  • site variebales & overrides changes 7251162
  • Table and Tabs theming 49f0860
  • Responsiveness updates 48e1351
  • added various components to docusaurus 550d719
  • Checkbox and radio updates 24652a2
  • remove images from typography and colour docs 8493e92
  • added guidelines' text and finished all components 02d75fc
  • added more missing components in docusaurus 8be8263
  • Prettier changes on docusaurus 5f1e5eb
  • Grid updates ae09945
  • Minor fixes for tests 3bdf306
  • Layout updates 8b7a4dc
  • Footer and TOC theming bb3d3c4
  • Refs #145331 manually commit changelog until autobuild is stabilized 93168b0
  • label component changes df8c0ff
  • added several sections to the theming guidelines ff1a649
  • Updated removed files. 84f9b8c
  • added more docusaurus components 52a3b9e
  • Progress Bar 9f2efc9
  • Modal and Confirm updates 3b306c6
  • Add proper changes to whatsnew meant in previous commit 40f78e3
  • Form Descriptions de0dfbc
  • Prettier fixes 1337e6f
  • Deleted files b82f982
  • add new images for spacing 7b7b2c4
  • Messages Theming ad621a3
  • added new content to docusaurus 1c83452
  • Minor less updates a36a8bb
  • Tabs and lists updates e37eef1
  • Inpage nav and timeline components 76f0f82
  • Prettier updated files 679b9d2
  • dropdown initial d8aef26
  • Prettier changes f068af0
  • List initial 6d3b969
  • List story updated e96a6f6
  • Statistics updates 74bf639
  • styling c169cc0
  • timeline comp storybook changes 1f42686
  • feature(docusaurus) added theming guidelines ded1f04
  • Properly commented out integration tests. 48b3a15
  • Reattempting commented out integrations tests. 3dd8211
  • Button theming 4231e1c
  • Card initial 06dace5
  • form element storybook changes c4b06aa
  • Pagination theming 2a80175
  • Accordion theming 8061bf9
  • global var updates and radio story 9526ee2
  • created pullquote component & stories df35563
  • Item stories added description & default values 9d459f2
  • storybook clean up code bffd326
  • List updates 28f1b53
  • Button classes updates 788c289
  • Prettier fixes 678c9be
  • Removed header title from partial docusaurus components. ed7c45e
  • created banner component and stories 9be170f
  • Breadcrumb stories description & defaultValue -- clean up code 186ab65
  • Refs #142123 added customization of semantic.less: 1e02356
  • Card stories added description & default values f6b408f
  • Statistic and accordion updates 16064ce
  • breadcrumb component & stories changes 5bceb98
  • Container initial 3eb7155
  • doc(docusaurus):Fix text for various parts bfd3fa2
  • blockquote component & stories 879b640
  • Refs #143412 removed doc comments breaking doc building e6a6756
  • Popup updates ce2d641
  • Global variables for colors and borders added 6e5fbd6
  • Tab stories changes 5429cfb
  • Confirm stories added description & default value 85cda14
  • Kebab case class names b41cd07
  • Card and Comment class updates 3899465
  • Accordion updates c97ba39
  • item stories changes 772e41f
  • Accordion class updates 9cdde86
  • Comment stories added description & default value cb6f25b
  • Accrodion stories description & default value ab8fb88
  • Pullquotes updates c598421
  • Modal and confirm class updates 0ae47e6
  • Tab and paggination updates 96796ff
  • Form Updates e986a9f
  • Classes renamed 73c8c3d
  • List and item less updates ce0de17
  • Confirm theming 36e20ce
  • container overrides changes 4b3970b
  • Docusaurus theming fc4a8c5
  • refacto(headings): update mobile headings sizes b2e9f83
  • list stories and style changes c61db53
  • Tab theming e31e6c3
  • Message and pagination classes updates c230687
  • Segment initial d5724fe
  • Refs #143412 removed doc comments from api_markdown breaking doc building efeacba
  • Timeline and responsiveness updates 1ed1524
  • Refs #142123 use swap font-display for performance reasons 083738f
  • Breadcrumb stories minor changes 3d0d17c
  • Table component stories minor change 0bf4083
  • List stories changes a64b304
  • blockquote component minor changes cdf71a8
  • ckeckbox stories minor change 6d6e508
  • image component storybook changes 91290ec
  • button overrides changes d5b78dd
  • accordion overrides changes fdcf7d5
  • Accordion component and stories changes 5079247
  • Card theming 23bbb9d
  • statistic overrides changes 2b11cb5
  • Refs #143412 build docs only on pull request like we do with storybook 473bb87
  • Card component stories minor change | added link icon deb423a
  • comment component stories changes f1c5e75
  • Accordion component bug fixed 815e91d
  • Refs #145331 use iso date to release so that we see also time ceedf08
  • correct connfig for doco 93e1313
  • Item updates fae93d4
  • added layout grid 2e6be55
  • tab overrides changes 87aaf32
  • message overrides changes 6dccfca
  • segment storie changes 296371f
  • progress component stories changes df10c2e
  • message comp storybook changes c86b405
  • Accordion cmponent stories | minor bug fix 6de0d81
  • Refs #145331 add all changes when auto building docusaurus ce11cce
  • perf(timeline):removed semantic timeline package 0aeb34a
  • Tablet Breakpoint update b229c27
  • Refs #143412 set storyBook Url to eea.github.io b7fdecb
  • bump package version to signaling of a major release c835f1d
  • small commit to trigger deployment of storybook and docusaurus be46ea3
  • doc(accordion):revert previous change 3de02da
  • fix typo for caption @desktop line-height pixel number 1671552
  • Commented out integration tests. 574cfec
  • popup overrides changes a9555e3
  • container component stories fixes 692cfce
  • Added timeline to package json fixed f2e93e0
  • Refs #142123 modified import of volto-eea-design-system icon.less: a7fab7d
  • Refs #142123 reference icon.less from this package: 5616e6d
  • Menu component stories change 2797716
  • Image stories minor change ddb9f1d
  • card component stories changes 6ccba1e
  • Added timeline to package json 93031d6
  • table stories code clean up b7b2a56
  • Refs #143412 removed extra baseUrl from docusaurus config 79f36da
  • Accordion stories minor change ffe808a
  • Theme assets 3f4bea4
  • Merged with develop 167ec9f

0.1.2-beta.2 - 2022-01-03

0.1.2-beta.1 - 2021-12-22

🛠️ Others

  • Tab component stories minor changes 4690a6f
  • Comment component stories minor changes a87cb6a
  • Form stories changes fc30c90
  • Grid component stories minor changes 798fdd0
  • Image component stories minor changes be93385
  • Menu component stories minor changes cb1f9a8
  • Dropdown component stories minor changes 57cf954
  • Header component stories minor changes 264fd46
  • Confirn component minor changes 9a00bc1
  • Item component stories minor changes 6994fa0
  • Label component stories changes 5cc5843
  • Container component stories minor changes e6e40b3
  • Message component stories minor changes ba9d377
  • Breadcrumb component stories minor changes ff7a176
  • Modal component stories minor changes af1fe6a
  • List stories changes 0016042
  • Button component stories minor changes 690dfd2
  • Radio component stories minor changes 84eac30
  • Progress component stories minor changes e676357
  • Pagination component stories minor changes b1af226
  • Segment component stories minor changes 5f8c7ef
  • Refs #143412 eslint fixes for component stories badcb91
  • Table component stories minor changes 7c104b8
  • Refs #143412 more eslint fixes a88c091
  • Refs #143412 warn for broken links instead of throwing bd5821c
  • Refs #143412 merge changes from develop-itml to develop branch bca28b9
  • made tabs dynamic for api tab ea37ecb
  • Basic storybook/Docusaurus components 840ab60
  • created List directory & srories based on semantic-ui List component 51f1901
  • made tabs as component easy to call for other components 07bae49
  • Popup Component | minor fixes 2ff9908
  • created stories for Tab component 95e3a73
  • created Table directory and stories based on semantic-ui Table component e16115d
  • List component stories - minor changes de11343
  • created stories for Comment component a20f884
  • created stories for Grid component 360d2a8
  • created stories for Image component 3c1d2bc
  • created stories for Menu component 17e3b37
  • Added untracked files 75f0afd
  • created Dropdown stories d6a2538
  • created Header component stories b833979
  • created stories for semantic-ui Confirm component 6fddccc
  • created Statistic directory and stories with semantic-ui Statistic component cd62498
  • created Item component stories 90ec2be
  • created stories for Container component 41934f6
  • created Label component stories 71732f6
  • created Message component stories adcbeab
  • created Modal component stories c25409d
  • Breadcrumb component stories and minor changes 6264d92
  • created Pagination component stories 57cdad3
  • created Segment component stories d8d01d7
  • created stories for Radio component 1fd062d
  • Menu stories minor changes 6ba5e0d
  • Statistic component stories minor changes 3c874a5
  • Card component stories minor changes 290bda8
  • Accrordion stories minor changes 2ee3f59
  • renamed Demo folder to Layout b9f6d05
  • remove test exclusion 94dba3e
  • Accordion component stories minor changes e672d59
  • fix docusaurus url (removed trailing /) b6c59fc
  • Item component stories - minor changes f0a9902
  • eea logos and assets b435b51

0.1.2-beta.0 - 2021-12-18

🛠️ Others

  • Refs #140454 added github action to build docusaurus to the develop branch abe6a72

0.1.1 - 2021-12-16

🛠️ Others

  • Refs #140454 changed the following to volto-eea-design-system: 6791d41
  • Refs #140454 corrected base url for docusaurus website build 98271b3
  • Initial test changes on design system/docusaurus. 9dad612
  • After prettier check 9ec40b4
  • Refs #140454 restore SearchWidget.jsx content and removed dummy text from docs intro page 7505df8
  • Refs #140454 added references to eea and the storybook in the docusaurus footer 42bbfcd
  • Refs #140454 lint fixes 9502f2b
  • Add SonarQube badges a4e0a40
  • Refs #140454 brought changes from develop-itml and upgrades docusaurus 207c873
  • Refs #140454 removed extra content not needed by the docusaurus site bc68ebe
  • Refs #140454 updated docusaurus to latest beta d68ed8a

0.1.1-beta.0 - 2021-12-09

🛠️ Others

  • Refs #140454 moved header and footer templates from volto-ims-theme: e2d5e56
  • Refs #140454 added website folder with docusaurus site skeleton 6fd15f4
  • Refs #142794 added commented implementation of the header and footer area: 773ad87
  • Refs #140454 changed the following: 4137ec4
  • Refs #140454 removed storybook from volto-eea-design-system: a129ffb
  • Refs #140454 added storybook as a dev dependency: e04ae4e
  • Refs #140454 updated Breadcrumbs.jsx to latest version: 63fe507
  • Refs #140454 we should use jsx and not mdx for storybook tests 3668e66
  • Refs #140454 updated eea-design-system readme with extra info on package contents d2efc3d
  • Refs #142010 - Optimize Volto-addons gitflow pipelines 3af46d2
  • Refs #140454 Renamed folders of docusaurus website: 15bca74
  • Add demo story 757c409
  • Refs #142794 enabled minimum css so that header looks decent adbe233
  • Refs #140454 use the develop branch for the readme linking, it's always more up to date 23dcf16
  • Refs #140454 added missing themes reference for the eea theme e9ca244
  • Refs #140454 modified assets imports after move to volto-eea-design-system 2250cc7
  • Load footer in segment 80d38a9
  • Refs #140454 bump package version to 1.1.0 from 0.1.1 from develop branch: 1314039
  • Refs #142794 keep toolbalWidth variables in case design system runs in an older version of Volto 1a8b305
  • Refs #142794 changed the following: fbb80b1
  • Refs #140454 moved storybook scripts to the scripts section 705c4c3
  • Refs #140454 removed dangling comma 514f24d
  • Refs #140454 changed link to the start of the docs 0e16fdf
  • Refs #140454 add h1 to the list of elements that are max 800px and centered 7d3c30f
  • Add Sonarqube tag using ims-frontend addons list 8d657d0

0.1.0 - 2021-11-17

🛠️ Others

  • Refs #140454 changed the following to volto-eea-design-system: 40d2af6
  • Refs #141204 elements folder now has the variables and overrides from pastanaga theme 595b4e6
  • Refs #141204 use font awesome from SemanticUI instead of Pastanaga: 4e273ca
  • Refs #141204 removed the components customizations from volto-eea-design-system: c98c260
  • Refs #141204 added customizations folder from volto-ims-theme to volto-eea-design-system: ff4bf44
  • Refs #141204 modules folder now has the variables and overrides from pastanaga theme f2841b6
  • Refs #141204 customized Comments.jsx to remove unnecessary container b2e95d7
  • Refs #132149 added initial commit for volto-eea-design-system: 2934b91
  • Refs #141204 collection folder now has the variables and overrides from pastanaga: 213d496
  • Refs #141204 removed search widget customization, we can use volto-ims-theme for that file b7e8b0c
  • Refs #141204 stylelint quick fixes 5595925
  • Refs #141204 changed the following: 769f4f9
  • Refs #141204 changed the following to the eea theme: 06d8d86
  • Refs #141204 eea site.variables now use all values from pastanaga's site.variables 6535c0f
  • Refs #141204 simplified container overrides: 5125003
  • Release 1.0.0 177d0ce
  • Refs #141204 globals folder now has the variables and overrides from pastanaga theme 116a0c3
  • Refs #141204 changed the following: 2e7f423
  • Refs #141204 modules folder now has the variables and overrides from pastanaga theme: 27a201d
  • Refs #141204 text elements are now with a max width and centered within content-area: bbed7bb
  • Refs #141204 added main.variables entries from pastanaga to eea theme 1cbbc55
  • Refs #141204 modified theme image imports for component customizations ef3238a
  • Refs #141204 modified container width to be auto: 2e8d2e0
  • Refs #141204 modified several icons to use the \f values instead of \e: c397145
  • Refs #141204 changed the following: c518eda
  • Refs #141204 ensure that main column isn't enlarged over the sidebar section on edit f7a2868
  • Refs #141204 changed the following to the form styling: eb92e05
  • Refs #141204 modified path of theme folder location for image selection f8cca45
  • Refs #141204 added missing mobileScrollbarWidth variables introduced as part of the mobile navigation pull request 444c78d
  • Refs #140454 reference font and image path from ~volto-themes instead of relative ec93ed3
  • Refs #141204 ensure that Volto doesn't crash when site module is set to eea: 51f2f27
  • Refs #141204 added tiny size prop to Breadcrumbs in order to have it as 12px 56a12e2

0.0.1 - 2021-11-17

🛠️ Others

+ \ No newline at end of file diff --git a/docs/index.html b/docs/index.html index 23d824707a..e2b61de709 100644 --- a/docs/index.html +++ b/docs/index.html @@ -5,13 +5,13 @@ Welcome to EEA Design System Homepage | EEA Design System - +

EEA Design System

Creating a consistent user experience for our digital products

I am a...

Web developer

Design system for web developers

Web designer

Design system for web designers

Web content creator

Tips and tricks for writing for the web

Publication writer

Writing manual for publications

Publication designer

Design system for publications

Data scientist

Design system for data scientists

- + \ No newline at end of file diff --git a/website/docs/2-whatsnew.md b/website/docs/2-whatsnew.md index 7371edfd78..1d5a7c7337 100644 --- a/website/docs/2-whatsnew.md +++ b/website/docs/2-whatsnew.md @@ -32,11 +32,16 @@ Below is a non-exhaustive list of the work-in-progress which is planned for futu Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). -### [Unreleased](https://github.com/eea/volto-eea-design-system/compare/1.0.6...HEAD) - 2023-04-06T13:42:14.276Z +### [Unreleased](https://github.com/eea/volto-eea-design-system/compare/1.0.6...HEAD) - 2023-04-06T13:47:14.894Z #### :bug: Bug Fixes +- fix(header): external url in header now takes you to the correct url #330 from eea/header-external-url-fix [`086c61d`](https://github.com/eea/volto-eea-design-system/commit/086c61d683a7ac67dea221aa39ffe4cef05a9a68) - fix(item): flex variant on edit when inside blockchooser #333 from eea/fix-item-csss [`65b9099`](https://github.com/eea/volto-eea-design-system/commit/65b9099779180feeb7d10384928bb0a3224b947d) +- fix: dont run isInternalURL twice [`a48984e`](https://github.com/eea/volto-eea-design-system/commit/a48984e0cb224944aed3846447c416511d080779) +- fix: github autoformat [`be97749`](https://github.com/eea/volto-eea-design-system/commit/be9774981032759b3284a6fb93490a204a817c7a) +- fix: external url in header [`9e3aea6`](https://github.com/eea/volto-eea-design-system/commit/9e3aea649ca6f9446324d5d351cdfcde08332f84) +- fix: check if client method change [`7c53b83`](https://github.com/eea/volto-eea-design-system/commit/7c53b83a54e4e7d3c5329c46de03cdf7aabedf13) - fix(item): use child selector instead of descendent as it interferes with blockchooser refs #157040 [`ad4ca37`](https://github.com/eea/volto-eea-design-system/commit/ad4ca3725c595c8dbeaff69f730928313c1779ec) #### :nail_care: Enhancements @@ -50,9 +55,9 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - change(breadcrumbs): label modification for better screen reader output [`c967bef`](https://github.com/eea/volto-eea-design-system/commit/c967bef63ac6f622f5936235dd5590831a674d15) - refactor(megaMenu): clean up function after test [`883eb73`](https://github.com/eea/volto-eea-design-system/commit/883eb73cbc3db6a1fadd0200118eafdce91b7aab) - change(mega-menu): added code to align countries left column subtitle with the right column [`1aa33dd`](https://github.com/eea/volto-eea-design-system/commit/1aa33dd7ac7154a91515eef688f276d664d5d7f3) +- change(mega-menu): sub-title padding tweaks for better spacing normalization [`e08668d`](https://github.com/eea/volto-eea-design-system/commit/e08668dd9fd948e57628e5582e7a4a7f08d96451) - change(logos): updated eionet logo used in the site footer #318 from eea/footer-logo-update [`70671d0`](https://github.com/eea/volto-eea-design-system/commit/70671d03bbc228e3013e382cb51e6764a83b01a8) - change(breadcrumbs,mega-menu): better screen readers support, see links instead of groups #309 from eea/firefox-accessibility-tab-issues [`d6b0b4a`](https://github.com/eea/volto-eea-design-system/commit/d6b0b4adba8f04799491025fb41ac97e875bcce0) -- change(mega-menu): sub-title padding tweaks for better spacing normalization [`e08668d`](https://github.com/eea/volto-eea-design-system/commit/e08668dd9fd948e57628e5582e7a4a7f08d96451) - change(breadcrumbs): fixed sizing of breadcrumbs list items [`1761e98`](https://github.com/eea/volto-eea-design-system/commit/1761e984a6ffebbcca0c7b88128a01235fc6b903) #### :house: Internal changes From ee0bfdf3aee3e4b6b6eba6dabd7817a37ace48ae Mon Sep 17 00:00:00 2001 From: David Ichim Date: Fri, 7 Apr 2023 19:38:44 +0300 Subject: [PATCH 38/45] change(storybook): removed links for Label and Comment that we implement without a link --- src/ui/Comment/Comment.stories.js | 12 ++---------- src/ui/Label/Label.stories.js | 14 +------------- theme/themes/eea/elements/label.overrides | 20 ++++++++++---------- 3 files changed, 13 insertions(+), 33 deletions(-) diff --git a/src/ui/Comment/Comment.stories.js b/src/ui/Comment/Comment.stories.js index e9801d2b59..ef3b8d16a3 100644 --- a/src/ui/Comment/Comment.stories.js +++ b/src/ui/Comment/Comment.stories.js @@ -45,9 +45,7 @@ function CommentEEA({ title, comments, threaded, minimal, size }) { - - {comment.author} - + {comment.author}
{comment.time}
@@ -64,9 +62,7 @@ function CommentEEA({ title, comments, threaded, minimal, size }) { - - {reply.author} - + {reply.author}
{reply.time}
@@ -98,14 +94,12 @@ Default.args = { { src: 'https://react.semantic-ui.com/images/avatar/large/matthew.png', author: 'User 1', - authorLink: '/#', time: 'Message timestamp', text: 'Message Content', replies: [ { src: 'https://react.semantic-ui.com/images/avatar/large/matthew.png', author: 'User 4', - authorLink: '/#', time: 'Message timestamp', text: 'Message Content', }, @@ -114,7 +108,6 @@ Default.args = { { src: 'https://react.semantic-ui.com/images/avatar/large/matthew.png', author: 'User 2', - authorLink: '/#', time: 'Message timestamp', text: 'Message Content', replies: [], @@ -122,7 +115,6 @@ Default.args = { { src: 'https://react.semantic-ui.com/images/avatar/large/matthew.png', author: 'User 3', - authorLink: '/#', time: 'Message timestamp', text: 'Message Content', replies: [], diff --git a/src/ui/Label/Label.stories.js b/src/ui/Label/Label.stories.js index a6c3aaac0e..b5256a1f30 100644 --- a/src/ui/Label/Label.stories.js +++ b/src/ui/Label/Label.stories.js @@ -48,12 +48,7 @@ export default { const Template = (args) => ( - + ); @@ -62,7 +57,6 @@ Default.args = { content: 'Label', pointing: false, importance: null, - link: '/#', }; export const Ribbon = (args) => ( @@ -88,7 +82,6 @@ export const Ribbon = (args) => ( Ribbon.args = { content: 'Ribbon Label', importance: null, - link: '/#', }; Ribbon.parameters = { @@ -101,8 +94,6 @@ export const Corner = (args) => ( ( Corner.args = { importance: null, - link: '/#', }; Corner.parameters = { @@ -130,7 +120,6 @@ export const Basic = (args) => ( className={args.importance ? args.importance : ''} basic as="a" - href={args.link} > ); @@ -139,5 +128,4 @@ Basic.args = { content: 'Basic Label', pointing: false, importance: null, - link: '/#', }; diff --git a/theme/themes/eea/elements/label.overrides b/theme/themes/eea/elements/label.overrides index dc7c0fa2e6..af756f3f1e 100644 --- a/theme/themes/eea/elements/label.overrides +++ b/theme/themes/eea/elements/label.overrides @@ -33,25 +33,25 @@ /* Link */ .ui.low.labels .label:hover, -a.ui.low.label:hover{ +.ui.low.label:hover{ background-color: @lowImportanceHoverBackground; border-color: @lowImportanceHoverBackground; } .ui.medium.labels .label:hover, -a.ui.medium.label:hover{ +.ui.medium.label:hover{ background-color: @mediumImportanceHoverBackground; border-color: @mediumImportanceHoverBackground; } .ui.high.labels .label:hover, -a.ui.high.label:hover{ +.ui.high.label:hover{ background-color: @highImportanceHoverBackground; border-color: @highImportanceHoverBackground; } .ui.highlight.labels .label:hover, -a.ui.highlight.label:hover{ +.ui.highlight.label:hover{ background-color: @highlightImportanceHoverBackground; border-color: @highlightImportanceHoverBackground; } @@ -80,7 +80,7 @@ a.ui.highlight.label:hover{ border-color: @lowImportanceBackground; } .ui.basic.low.labels a.label:hover, -a.ui.basic.low.label:hover { +.ui.basic.low.label:hover { background-color: @white; color: @lowImportanceHoverBackground; border-color: @lowImportanceHoverBackground; @@ -92,7 +92,7 @@ a.ui.basic.low.label:hover { border-color: @mediumImportanceBackground; } .ui.basic.medium.labels a.label:hover, -a.ui.basic.medium.label:hover { +.ui.basic.medium.label:hover { background-color: @white; color: @mediumImportanceHoverBackground; border-color: @mediumImportanceHoverBackground; @@ -104,7 +104,7 @@ a.ui.basic.medium.label:hover { border-color: @highImportanceBackground; } .ui.basic.high.labels a.label:hover, -a.ui.basic.high.label:hover { +.ui.basic.high.label:hover { background-color: @white; color: @highImportanceHoverBackground; border-color: @highImportanceHoverBackground; @@ -116,7 +116,7 @@ a.ui.basic.high.label:hover { border-color: @highlightImportanceBackground; } .ui.basic.highlight.labels a.label:hover, -a.ui.basic.highlight.label:hover { +.ui.basic.highlight.label:hover { background-color: @white; color: @highlightImportanceHoverBackground; border-color: @highlightImportanceHoverBackground; @@ -165,6 +165,6 @@ a.ui.basic.highlight.label:hover { } } -a.ui.corner.label i.icon:hover { +.ui.corner.label i.icon:hover { cursor: pointer; -} \ No newline at end of file +} From 849a7a8e3cf801bf0a4d7e9189b603ea15219fcc Mon Sep 17 00:00:00 2001 From: David Ichim Date: Fri, 7 Apr 2023 20:46:37 +0300 Subject: [PATCH 39/45] fix(cards): focus outline for header needed for the overflow hidden solution with max title lines --- theme/themes/eea/views/card.overrides | 10 +++------- theme/themes/eea/views/card.variables | 5 ++--- 2 files changed, 5 insertions(+), 10 deletions(-) diff --git a/theme/themes/eea/views/card.overrides b/theme/themes/eea/views/card.overrides index bd38922f42..2354624bbc 100644 --- a/theme/themes/eea/views/card.overrides +++ b/theme/themes/eea/views/card.overrides @@ -450,12 +450,8 @@ // Spacing adjustment to display outline with overflow hidden .ui.card .header { padding: @headerPadding; - margin-inline: @headerMarginInline; - //margin-top: @headerMarginTop; } - -.ui.cards > .card > .content > .header:not(:last-child), -.ui.card > .content > .header:not(:last-child), -.ui.card.rounded .content .header { - margin-bottom: @headerMarginBottom; +.ui.card .header > a { + display: @headerLinkDisplay; } + diff --git a/theme/themes/eea/views/card.variables b/theme/themes/eea/views/card.variables index f2c2d22ab5..d0f221bb21 100644 --- a/theme/themes/eea/views/card.variables +++ b/theme/themes/eea/views/card.variables @@ -81,15 +81,14 @@ /* Header */ -@headerMargin: ''; +@headerMargin: -@em-space-2 -@em-space-1 -@em-space-1 -@em-space-1; @headerFontWeight: @bold; @headerFontSize: 1.125rem; @headerColor: inherit; +@headerLinkDisplay: block; @headerPadding: @em-space-1; -@headerMarginInline: -@headerPadding; -//@headerMarginTop: @headerLineHeightOffset - @headerPadding; @headerLineHeightOffset: -((@lineHeight - 1em) / 2) - @headerPadding; @headerMarginBottom: @cardContentMarginBottom - @headerPadding; From ca61105f2f39e6880ce545ba4d54f3568e7b87e2 Mon Sep 17 00:00:00 2001 From: David Ichim Date: Fri, 7 Apr 2023 21:10:54 +0300 Subject: [PATCH 40/45] change(card): simplified headerLineHeightOffset used as margin top for cards header --- theme/themes/eea/views/card.variables | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/theme/themes/eea/views/card.variables b/theme/themes/eea/views/card.variables index d0f221bb21..6630bad559 100644 --- a/theme/themes/eea/views/card.variables +++ b/theme/themes/eea/views/card.variables @@ -89,8 +89,7 @@ @headerLinkDisplay: block; @headerPadding: @em-space-1; -@headerLineHeightOffset: -((@lineHeight - 1em) / 2) - @headerPadding; -@headerMarginBottom: @cardContentMarginBottom - @headerPadding; +@headerLineHeightOffset: -(@headerPadding * 2); /* Metadata */ @metaJustifyContent: space-between; From 25db868d5f1615fe911f8385ec9b8d5decf94048 Mon Sep 17 00:00:00 2001 From: github-actions Date: Fri, 7 Apr 2023 18:16:49 +0000 Subject: [PATCH 41/45] Autobuild of docusaurus docs --- docs/404.html | 4 +-- docs/assets/js/41d5c757.8b547e3f.js | 1 + docs/assets/js/41d5c757.c97b6622.js | 1 - ...n.46d2157e.js => runtime~main.ea9eaeaf.js} | 2 +- docs/blog/archive/index.html | 4 +-- docs/docs/category/components/index.html | 4 +-- docs/docs/category/forms/index.html | 4 +-- docs/docs/category/guidelines/index.html | 4 +-- docs/docs/category/maps-and-charts/index.html | 4 +-- docs/docs/category/publications/index.html | 4 +-- docs/docs/category/quotes/index.html | 4 +-- docs/docs/category/resources/index.html | 4 +-- docs/docs/category/search/index.html | 4 +-- docs/docs/category/templates/index.html | 4 +-- docs/docs/category/utilities/index.html | 4 +-- docs/docs/category/visuals/index.html | 4 +-- docs/docs/category/web-content/index.html | 4 +-- docs/docs/category/web-development/index.html | 4 +-- docs/docs/dataguide/intro/index.html | 4 +-- docs/docs/intro/index.html | 4 +-- docs/docs/pubguide/design/index.html | 4 +-- docs/docs/pubguide/writing/index.html | 4 +-- docs/docs/webcontent/intro/index.html | 4 +-- .../webdev/Components/Accordion/index.html | 4 +-- .../webdev/Components/Breadcrumb/index.html | 4 +-- .../docs/webdev/Components/Buttons/index.html | 4 +-- .../docs/webdev/Components/Callout/index.html | 4 +-- docs/docs/webdev/Components/Cards/index.html | 4 +-- .../docs/webdev/Components/Comment/index.html | 4 +-- .../docs/webdev/Components/Confirm/index.html | 4 +-- .../docs/webdev/Components/Content/index.html | 4 +-- .../docs/webdev/Components/Divider/index.html | 4 +-- .../Components/Forms/Checkbox/index.html | 4 +-- .../Components/Forms/Dropdown/index.html | 4 +-- .../webdev/Components/Forms/Radio/index.html | 4 +-- .../Components/Forms/TextArea/index.html | 4 +-- .../Components/Forms/TextInput/index.html | 4 +-- .../webdev/Components/Headings/index.html | 4 +-- docs/docs/webdev/Components/Image/index.html | 4 +-- .../Components/Inpage-Navigation/index.html | 4 +-- docs/docs/webdev/Components/Item/index.html | 4 +-- .../Components/Labeled-icons/index.html | 4 +-- docs/docs/webdev/Components/Labels/index.html | 4 +-- docs/docs/webdev/Components/Lists/index.html | 4 +-- docs/docs/webdev/Components/Loader/index.html | 4 +-- docs/docs/webdev/Components/Logo/index.html | 4 +-- .../webdev/Components/Messages/index.html | 4 +-- docs/docs/webdev/Components/Modal/index.html | 4 +-- .../webdev/Components/Pagination/index.html | 4 +-- docs/docs/webdev/Components/Popup/index.html | 4 +-- .../webdev/Components/Progress/index.html | 4 +-- .../webdev/Components/Quote/Quote/index.html | 4 +-- .../Components/Quote/Testimonial/index.html | 4 +-- .../Components/Search/Filters/index.html | 4 +-- .../Components/Search/Searchbox/index.html | 4 +-- .../Components/Search/Suggestions/index.html | 4 +-- .../docs/webdev/Components/Segment/index.html | 4 +-- .../webdev/Components/Statistic/index.html | 4 +-- docs/docs/webdev/Components/Tab/index.html | 4 +-- docs/docs/webdev/Components/Table/index.html | 4 +-- docs/docs/webdev/Components/Tags/index.html | 4 +-- .../webdev/Components/Timeline/index.html | 4 +-- .../Components/Visuals/Charts/index.html | 4 +-- .../Components/Visuals/Dashboard/index.html | 4 +-- .../webdev/Components/Visuals/Maps/index.html | 4 +-- .../docs/webdev/Guidelines/colours/index.html | 4 +-- .../webdev/Guidelines/iconography/index.html | 4 +-- docs/docs/webdev/Guidelines/images/index.html | 4 +-- docs/docs/webdev/Guidelines/intro/index.html | 4 +-- .../docs/webdev/Guidelines/spacing/index.html | 4 +-- .../webdev/Guidelines/typography/index.html | 4 +-- .../Resources/developer-guidelines/index.html | 4 +-- .../Resources/theming-guidelines/index.html | 4 +-- docs/docs/webdev/Templates/Grid/index.html | 4 +-- .../webdev/Templates/PageHeader/index.html | 4 +-- .../webdev/Templates/SiteFooter/index.html | 4 +-- .../webdev/Templates/SiteHeader/index.html | 4 +-- docs/docs/webdev/Utilities/intro/index.html | 4 +-- docs/docs/whatsnew/index.html | 6 ++-- docs/index.html | 4 +-- website/docs/2-whatsnew.md | 32 ++++++++++++++++--- 81 files changed, 184 insertions(+), 162 deletions(-) create mode 100644 docs/assets/js/41d5c757.8b547e3f.js delete mode 100644 docs/assets/js/41d5c757.c97b6622.js rename docs/assets/js/{runtime~main.46d2157e.js => runtime~main.ea9eaeaf.js} (99%) diff --git a/docs/404.html b/docs/404.html index 2a36dd58e1..e2a66de624 100644 --- a/docs/404.html +++ b/docs/404.html @@ -5,13 +5,13 @@ Page Not Found | EEA Design System - +

Page Not Found

We could not find what you were looking for.

Please contact the owner of the site that linked you to the original URL and let them know their link is broken.

- + \ No newline at end of file diff --git a/docs/assets/js/41d5c757.8b547e3f.js b/docs/assets/js/41d5c757.8b547e3f.js new file mode 100644 index 0000000000..2c859f9a11 --- /dev/null +++ b/docs/assets/js/41d5c757.8b547e3f.js @@ -0,0 +1 @@ +"use strict";(self.webpackChunkwebsite=self.webpackChunkwebsite||[]).push([[6245],{3905:(e,a,t)=>{t.d(a,{Zo:()=>c,kt:()=>h});var i=t(7294);function n(e,a,t){return a in e?Object.defineProperty(e,a,{value:t,enumerable:!0,configurable:!0,writable:!0}):e[a]=t,e}function o(e,a){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);a&&(i=i.filter((function(a){return Object.getOwnPropertyDescriptor(e,a).enumerable}))),t.push.apply(t,i)}return t}function m(e){for(var a=1;a=0||(n[t]=e[t]);return n}(e,a);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(i=0;i=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(n[t]=e[t])}return n}var d=i.createContext({}),r=function(e){var a=i.useContext(d),t=a;return e&&(t="function"==typeof e?e(a):m(m({},a),e)),t},c=function(e){var a=r(e.components);return i.createElement(d.Provider,{value:a},e.children)},s="mdxType",f={inlineCode:"code",wrapper:function(e){var a=e.children;return i.createElement(i.Fragment,{},a)}},p=i.forwardRef((function(e,a){var t=e.components,n=e.mdxType,o=e.originalType,d=e.parentName,c=l(e,["components","mdxType","originalType","parentName"]),s=r(t),p=n,h=s["".concat(d,".").concat(p)]||s[p]||f[p]||o;return t?i.createElement(h,m(m({ref:a},c),{},{components:t})):i.createElement(h,m({ref:a},c))}));function h(e,a){var t=arguments,n=a&&a.mdxType;if("string"==typeof e||n){var o=t.length,m=new Array(o);m[0]=p;var l={};for(var d in a)hasOwnProperty.call(a,d)&&(l[d]=a[d]);l.originalType=e,l[s]="string"==typeof e?e:n,m[1]=l;for(var r=2;r{t.r(a),t.d(a,{contentTitle:()=>m,default:()=>s,frontMatter:()=>o,metadata:()=>l,toc:()=>d});var i=t(7462),n=(t(7294),t(3905));const o={title:"What's new"},m=void 0,l={unversionedId:"whatsnew",id:"whatsnew",title:"What's new",description:"EEA Design System (1.0)",source:"@site/docs/2-whatsnew.md",sourceDirName:".",slug:"/whatsnew",permalink:"/volto-eea-design-system/docs/whatsnew",editUrl:"https://github.com/eea/volto-eea-design-system/edit/contribute-documentation/website/docs/2-whatsnew.md",tags:[],version:"current",sidebarPosition:2,frontMatter:{title:"What's new"},sidebar:"sidebar",previous:{title:"Introduction",permalink:"/volto-eea-design-system/docs/intro"},next:{title:"Web development",permalink:"/volto-eea-design-system/docs/category/web-development"}},d=[{value:"EEA Design System (1.0)",id:"eea-design-system-10",children:[{value:"Components ready to be used",id:"components-ready-to-be-used",children:[],level:4},{value:"Future releases",id:"future-releases",children:[],level:4}],level:3},{value:"Unreleased - 2023-04-07T18:14:46.589Z",id:"unreleased---2023-04-07t181446589z",children:[{value:"\ud83d\ude80 New Features",id:"-new-features",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes",children:[],level:4}],level:3},{value:"1.0.6 - 2023-03-29",id:"106---2023-03-29",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-1",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-1",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-1",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others",children:[],level:4}],level:3},{value:"1.0.5 - 2023-03-28",id:"105---2023-03-28",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-2",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-1",children:[],level:4}],level:3},{value:"1.0.4 - 2023-03-27",id:"104---2023-03-27",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-3",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-2",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-1",children:[],level:4}],level:3},{value:"1.0.3 - 2023-03-24",id:"103---2023-03-24",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-2",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-2",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-2",children:[],level:4}],level:3},{value:"1.0.2 - 2023-03-14",id:"102---2023-03-14",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-3",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-3",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-1",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-3",children:[],level:4}],level:3},{value:"1.0.1 - 2023-03-13",id:"101---2023-03-13",children:[],level:3},{value:"1.0.0 - 2023-03-13",id:"100---2023-03-13",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-4",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-4",children:[],level:4}],level:3},{value:"1.0.0-beta.6 - 2023-03-10",id:"100-beta6---2023-03-10",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-4",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-5",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-5",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-3",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-2",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-4",children:[],level:4}],level:3},{value:"1.0.0-beta.5 - 2023-03-07",id:"100-beta5---2023-03-07",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-6",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-4",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-5",children:[],level:4}],level:3},{value:"1.0.0-beta.4 - 2023-03-01",id:"100-beta4---2023-03-01",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-5",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-6",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-7",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-6",children:[],level:4}],level:3},{value:"1.0.0-beta.3 - 2023-02-21",id:"100-beta3---2023-02-21",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-6",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-7",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-8",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-5",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-3",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-7",children:[],level:4}],level:3},{value:"1.0.0-beta.2 - 2023-02-13",id:"100-beta2---2023-02-13",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-8",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-9",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-6",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-8",children:[],level:4}],level:3},{value:"1.0.0-beta.1 - 2023-02-09",id:"100-beta1---2023-02-09",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-7",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-10",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-9",children:[],level:4}],level:3},{value:"1.0.0-alpha.15 - 2023-02-08",id:"100-alpha15---2023-02-08",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-8",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-9",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-11",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-10",children:[],level:4}],level:3},{value:"1.0.0-alpha.14 - 2023-01-30",id:"100-alpha14---2023-01-30",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-12",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-11",children:[],level:4}],level:3},{value:"1.0.0-alpha.13.1 - 2023-01-30",id:"100-alpha131---2023-01-30",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-13",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-12",children:[],level:4}],level:3},{value:"1.0.0-alpha.13 - 2023-01-27",id:"100-alpha13---2023-01-27",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-9",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-10",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-14",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-13",children:[],level:4}],level:3},{value:"1.0.0-alpha.12 - 2023-01-24",id:"100-alpha12---2023-01-24",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-10",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-11",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-15",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-4",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-14",children:[],level:4}],level:3},{value:"1.0.0-alpha.11 - 2023-01-17",id:"100-alpha11---2023-01-17",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-11",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-12",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-16",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-5",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-15",children:[],level:4}],level:3},{value:"1.0.0-alpha.10 - 2023-01-13",id:"100-alpha10---2023-01-13",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-13",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-16",children:[],level:4}],level:3},{value:"1.0.0-alpha.9 - 2022-12-28",id:"100-alpha9---2022-12-28",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-17",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-17",children:[],level:4}],level:3},{value:"1.0.0-alpha.8 - 2022-12-23",id:"100-alpha8---2022-12-23",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-12",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-18",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-7",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-6",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-18",children:[],level:4}],level:3},{value:"1.0.0-alpha.7 - 2022-12-16",id:"100-alpha7---2022-12-16",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-13",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-14",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-19",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-19",children:[],level:4}],level:3},{value:"1.0.0-alpha.6 - 2022-12-07",id:"100-alpha6---2022-12-07",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-14",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-15",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-20",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-7",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-20",children:[],level:4}],level:3},{value:"1.0.0-alpha.5 - 2022-11-29",id:"100-alpha5---2022-11-29",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-15",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-16",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-21",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-8",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-8",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-21",children:[],level:4}],level:3},{value:"1.0.0-alpha.4 - 2022-11-22",id:"100-alpha4---2022-11-22",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-17",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-22",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-22",children:[],level:4}],level:3},{value:"1.0.0-alpha.3 - 2022-11-16",id:"100-alpha3---2022-11-16",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-16",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-18",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-23",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-9",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-23",children:[],level:4}],level:3},{value:"1.0.0-alpha.2 - 2022-10-28",id:"100-alpha2---2022-10-28",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-24",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-10",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-24",children:[],level:4}],level:3},{value:"1.0.0-alpha.1 - 2022-10-20",id:"100-alpha1---2022-10-20",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-25",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-11",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-9",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-25",children:[],level:4}],level:3},{value:"0.9.6 - 2022-12-16",id:"096---2022-12-16",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-26",children:[],level:4}],level:3},{value:"0.9.5 - 2022-10-20",id:"095---2022-10-20",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-19",children:[],level:4}],level:3},{value:"0.9.4 - 2022-10-19",id:"094---2022-10-19",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-20",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-26",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-27",children:[],level:4}],level:3},{value:"0.9.3 - 2022-10-04",id:"093---2022-10-04",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-21",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-27",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-10",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-28",children:[],level:4}],level:3},{value:"0.9.2 - 2022-09-27",id:"092---2022-09-27",children:[],level:3},{value:"0.9.1 - 2022-09-27",id:"091---2022-09-27",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-28",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-29",children:[],level:4}],level:3},{value:"0.9.0 - 2022-09-19",id:"090---2022-09-19",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-17",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-22",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-29",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-12",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-11",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-30",children:[],level:4}],level:3},{value:"0.8.1 - 2022-08-26",id:"081---2022-08-26",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-23",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-30",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-12",children:[],level:4}],level:3},{value:"0.8.0 - 2022-08-20",id:"080---2022-08-20",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-18",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-24",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-31",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-31",children:[],level:4}],level:3},{value:"0.7.6 - 2022-08-15",id:"076---2022-08-15",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-32",children:[],level:4}],level:3},{value:"0.7.5 - 2022-08-11",id:"075---2022-08-11",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-33",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-32",children:[],level:4}],level:3},{value:"0.7.3 - 2022-08-04",id:"073---2022-08-04",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-34",children:[],level:4}],level:3},{value:"0.7.2 - 2022-08-03",id:"072---2022-08-03",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-25",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-33",children:[],level:4}],level:3},{value:"0.7.1 - 2022-08-01",id:"071---2022-08-01",children:[],level:3},{value:"0.7.0 - 2022-08-01",id:"070---2022-08-01",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-19",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-26",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-35",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-34",children:[],level:4}],level:3},{value:"0.6.5 - 2022-07-06",id:"065---2022-07-06",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-27",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-36",children:[],level:4}],level:3},{value:"0.6.1 - 2022-07-01",id:"061---2022-07-01",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-20",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-37",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-13",children:[],level:4}],level:3},{value:"0.6.0 - 2022-07-01",id:"060---2022-07-01",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-28",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-38",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-14",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-13",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-35",children:[],level:4}],level:3},{value:"0.5.5 - 2022-06-23",id:"055---2022-06-23",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-29",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-39",children:[],level:4}],level:3},{value:"0.5.4 - 2022-06-16",id:"054---2022-06-16",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-30",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-40",children:[],level:4}],level:3},{value:"0.5.3 - 2022-06-16",id:"053---2022-06-16",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-31",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-41",children:[],level:4}],level:3},{value:"0.5.2 - 2022-06-14",id:"052---2022-06-14",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-21",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-42",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-15",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-36",children:[],level:4}],level:3},{value:"0.5.1 - 2022-06-13",id:"051---2022-06-13",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-43",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-37",children:[],level:4}],level:3},{value:"0.5.0 - 2022-06-11",id:"050---2022-06-11",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-22",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-32",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-44",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-38",children:[],level:4}],level:3},{value:"0.4.5 - 2022-06-08",id:"045---2022-06-08",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-45",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-39",children:[],level:4}],level:3},{value:"0.4.4 - 2022-06-08",id:"044---2022-06-08",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-23",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-33",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-46",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-14",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-40",children:[],level:4}],level:3},{value:"0.4.3 - 2022-06-03",id:"043---2022-06-03",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-34",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-47",children:[],level:4}],level:3},{value:"0.4.2 - 2022-06-02",id:"042---2022-06-02",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-48",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-15",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-41",children:[],level:4}],level:3},{value:"0.4.1 - 2022-06-02",id:"041---2022-06-02",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-24",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-35",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-49",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-16",children:[],level:4}],level:3},{value:"0.4.0 - 2022-06-01",id:"040---2022-06-01",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-25",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-36",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-50",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-16",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-42",children:[],level:4}],level:3},{value:"0.3.1 - 2022-05-19",id:"031---2022-05-19",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-37",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-51",children:[],level:4}],level:3},{value:"0.3.0 - 2022-05-17",id:"030---2022-05-17",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-26",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-38",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-52",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-43",children:[],level:4}],level:3},{value:"0.2.4 - 2022-05-13",id:"024---2022-05-13",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-53",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-44",children:[],level:4}],level:3},{value:"0.2.3 - 2022-04-29",id:"023---2022-04-29",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-27",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-54",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-17",children:[],level:4}],level:3},{value:"0.2.2 - 2022-04-22",id:"022---2022-04-22",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-39",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-55",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-17",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-45",children:[],level:4}],level:3},{value:"0.2.1 - 2022-04-08",id:"021---2022-04-08",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-40",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-46",children:[],level:4}],level:3},{value:"0.2.0 - 2022-04-04",id:"020---2022-04-04",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-28",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-41",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-56",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-18",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-47",children:[],level:4}],level:3},{value:"0.1.9 - 2022-03-25",id:"019---2022-03-25",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-29",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-42",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-57",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-19",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-48",children:[],level:4}],level:3},{value:"0.1.8 - 2022-03-18",id:"018---2022-03-18",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-43",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-58",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-20",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-18",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-49",children:[],level:4}],level:3},{value:"0.1.7 - 2022-03-15",id:"017---2022-03-15",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-30",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-44",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-59",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-21",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-19",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-50",children:[],level:4}],level:3},{value:"0.1.6 - 2022-03-11",id:"016---2022-03-11",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-31",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-45",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-60",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-22",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-51",children:[],level:4}],level:3},{value:"0.1.5 - 2022-03-08",id:"015---2022-03-08",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-32",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-46",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-61",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-23",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-20",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-52",children:[],level:4}],level:3},{value:"0.1.4 - 2022-03-01",id:"014---2022-03-01",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-62",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-21",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-53",children:[],level:4}],level:3},{value:"0.1.4-beta.0 - 2022-02-25",id:"014-beta0---2022-02-25",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-33",children:[],level:4}],level:3},{value:"0.1.3 - 2022-02-25",id:"013---2022-02-25",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-47",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-63",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-24",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-54",children:[],level:4}],level:3},{value:"0.1.2 - 2022-02-17",id:"012---2022-02-17",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-34",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-48",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-64",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-25",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-22",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-55",children:[],level:4}],level:3},{value:"0.1.2-beta.2 - 2022-01-03",id:"012-beta2---2022-01-03",children:[],level:3},{value:"0.1.2-beta.1 - 2021-12-22",id:"012-beta1---2021-12-22",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-56",children:[],level:4}],level:3},{value:"0.1.2-beta.0 - 2021-12-18",id:"012-beta0---2021-12-18",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-57",children:[],level:4}],level:3},{value:"0.1.1 - 2021-12-16",id:"011---2021-12-16",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-58",children:[],level:4}],level:3},{value:"0.1.1-beta.0 - 2021-12-09",id:"011-beta0---2021-12-09",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-59",children:[],level:4}],level:3},{value:"0.1.0 - 2021-11-17",id:"010---2021-11-17",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-60",children:[],level:4}],level:3},{value:"0.0.1 - 2021-11-17",id:"001---2021-11-17",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-61",children:[],level:4}],level:3}],r={toc:d},c="wrapper";function s(e){let{components:a,...t}=e;return(0,n.kt)(c,(0,i.Z)({},r,t,{components:a,mdxType:"MDXLayout"}),(0,n.kt)("h3",{id:"eea-design-system-10"},"EEA Design System (1.0)"),(0,n.kt)("h4",{id:"components-ready-to-be-used"},"Components ready to be used"),(0,n.kt)("p",null,"The following components are ready to be used as Volto ",(0,n.kt)("inlineCode",{parentName:"p"},"blocks"),", ",(0,n.kt)("inlineCode",{parentName:"p"},"slate")," integration, or via the advanced ",(0,n.kt)("inlineCode",{parentName:"p"},"block styler"),":"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Accordion ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Call to Action ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Callout - part of the Description ",(0,n.kt)("inlineCode",{parentName:"li"},"block"),", ",(0,n.kt)("inlineCode",{parentName:"li"},"slate")),(0,n.kt)("li",{parentName:"ul"},"Card - part of the Teaser ",(0,n.kt)("inlineCode",{parentName:"li"},"block")," and Listing ",(0,n.kt)("inlineCode",{parentName:"li"},"block"),", it includes several variations like round card e.g., used for Avatar"),(0,n.kt)("li",{parentName:"ul"},"Divider ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Headings ",(0,n.kt)("inlineCode",{parentName:"li"},"slate")),(0,n.kt)("li",{parentName:"ul"},"Hero ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Item ",(0,n.kt)("inlineCode",{parentName:"li"},"block")," - used for text with an icon (remixicon or custom SVG/image) on the left/right"),(0,n.kt)("li",{parentName:"ul"},"List ",(0,n.kt)("inlineCode",{parentName:"li"},"slate")," - ordered and unordered"),(0,n.kt)("li",{parentName:"ul"},"Quote ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Statistic ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Tag ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Table ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Tabs ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Timeline ",(0,n.kt)("inlineCode",{parentName:"li"},"block"))),(0,n.kt)("h4",{id:"future-releases"},"Future releases"),(0,n.kt)("p",null,"Below is a non-exhaustive list of the work-in-progress which is planned for future releases:"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Navigation Portlet (used on the left/right hand of content)"),(0,n.kt)("li",{parentName:"ul"},"Spacing/padding system. We want to add the ability for editors to consistently apply various spacing/padding on certain components in order to allow a better alignment when components are used together."),(0,n.kt)("li",{parentName:"ul"},"Improve docusaurus and storybook with more components, controls, and variations in order to better reflect what is possible in Volto.")),(0,n.kt)("p",null,"Generated by ",(0,n.kt)("a",{parentName:"p",href:"https://github.com/CookPete/auto-changelog"},(0,n.kt)("inlineCode",{parentName:"a"},"auto-changelog")),"."),(0,n.kt)("h3",{id:"unreleased---2023-04-07t181446589z"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.6...HEAD"},"Unreleased")," - 2023-04-07T18:14:46.589Z"),(0,n.kt)("h4",{id:"-new-features"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(storybook): components keyboard and screen reader optimization #324 from eea/design-system-accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/85faff73025442a012f079b6734ef868862cc44f"},(0,n.kt)("inlineCode",{parentName:"a"},"85faff7")))),(0,n.kt)("h4",{id:"-bug-fixes"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix: dont run isInternalURL twice ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a48984e0cb224944aed3846447c416511d080779"},(0,n.kt)("inlineCode",{parentName:"a"},"a48984e"))),(0,n.kt)("li",{parentName:"ul"},"fix: github autoformat ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/be9774981032759b3284a6fb93490a204a817c7a"},(0,n.kt)("inlineCode",{parentName:"a"},"be97749"))),(0,n.kt)("li",{parentName:"ul"},"fix(cards): focus outline for header needed for the overflow hidden solution with max title lines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/849a7a8e3cf801bf0a4d7e9189b603ea15219fcc"},(0,n.kt)("inlineCode",{parentName:"a"},"849a7a8"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): external url in header now takes you to the correct url #330 from eea/header-external-url-fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/086c61d683a7ac67dea221aa39ffe4cef05a9a68"},(0,n.kt)("inlineCode",{parentName:"a"},"086c61d"))),(0,n.kt)("li",{parentName:"ul"},"fix(item): flex variant on edit when inside blockchooser #333 from eea/fix-item-csss ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/65b9099779180feeb7d10384928bb0a3224b947d"},(0,n.kt)("inlineCode",{parentName:"a"},"65b9099"))),(0,n.kt)("li",{parentName:"ul"},"fix: external url in header ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9e3aea649ca6f9446324d5d351cdfcde08332f84"},(0,n.kt)("inlineCode",{parentName:"a"},"9e3aea6"))),(0,n.kt)("li",{parentName:"ul"},"fix: check if client method change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7c53b83a54e4e7d3c5329c46de03cdf7aabedf13"},(0,n.kt)("inlineCode",{parentName:"a"},"7c53b83"))),(0,n.kt)("li",{parentName:"ul"},"fix(item): use child selector instead of descendent as it interferes with blockchooser refs #157040 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ad4ca3725c595c8dbeaff69f730928313c1779ec"},(0,n.kt)("inlineCode",{parentName:"a"},"ad4ca37"))),(0,n.kt)("li",{parentName:"ul"},"fix(tag): fix in args ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/18eaaf41fa80a3e175341a2ddd7376b8281fee7d"},(0,n.kt)("inlineCode",{parentName:"a"},"18eaaf4")))),(0,n.kt)("h4",{id:"-enhancements"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): align menu items with demo site for better testing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/82a5c84cfde81dd8243f3f9a2d1fcaa8ac4b1463"},(0,n.kt)("inlineCode",{parentName:"a"},"82a5c84"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumbs): updates on structure and story for accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/770c8c0bce88c5d9301ab0293a8e4865849bfeb2"},(0,n.kt)("inlineCode",{parentName:"a"},"770c8c0"))),(0,n.kt)("li",{parentName:"ul"},"change(logo): update eionet svg ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c87fc750a3dc376205a643eefced410a41b22c6"},(0,n.kt)("inlineCode",{parentName:"a"},"3c87fc7"))),(0,n.kt)("li",{parentName:"ul"},"refactor(downloadLabeledIcon): accessibility fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/df3935dc5836298768316399ba36927325541fef"},(0,n.kt)("inlineCode",{parentName:"a"},"df3935d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(languageLabeledIcon): accessibility fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/61edd9e1022a8954930db30c262290680974d880"},(0,n.kt)("inlineCode",{parentName:"a"},"61edd9e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): Restructure Topics and Countries lists ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d816e7ab9cdf2f202ab994201c16241cfb26c33a"},(0,n.kt)("inlineCode",{parentName:"a"},"d816e7a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(newTabLabeledIcon): accessibility fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/211e40aa47d1f0de91b1d949770c452336b80248"},(0,n.kt)("inlineCode",{parentName:"a"},"211e40a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(comment): accessibility fixes and text button update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dad8cb67a0092b01b50197c94691ed8a5d00a128"},(0,n.kt)("inlineCode",{parentName:"a"},"dad8cb6"))),(0,n.kt)("li",{parentName:"ul"},"change(mega-menu): use lists for navigation, enhance voice over support for better accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d13137f024d6357514b85f184d219eb81dd585f2"},(0,n.kt)("inlineCode",{parentName:"a"},"d13137f"))),(0,n.kt)("li",{parentName:"ul"},"change(storybook): removed links for Label and Comment that we implement without a link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee0bfdf3aee3e4b6b6eba6dabd7817a37ace48ae"},(0,n.kt)("inlineCode",{parentName:"a"},"ee0bfdf"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): fix header outline not showing issue ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48fc2e2328ff184402e15edbaf1ed2507e771a14"},(0,n.kt)("inlineCode",{parentName:"a"},"48fc2e2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): firefox accessibility errors fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c7d35b92b90940b466ea016dbbb3f1c6dfa0c3ab"},(0,n.kt)("inlineCode",{parentName:"a"},"c7d35b9"))),(0,n.kt)("li",{parentName:"ul"},"change(ContextNavigation): accessibility updates, not restructuring of the volto component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/03fe83dce70c6931c543b93c71e3cd8e16f99ec8"},(0,n.kt)("inlineCode",{parentName:"a"},"03fe83d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(modal): restructure close icon as button ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f1b836e3071c220235eb327ee7ef67edac4d467d"},(0,n.kt)("inlineCode",{parentName:"a"},"f1b836e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(label): add href attribute to links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/05f664dde27f1e0580ab7f32a7934e4d8e85c918"},(0,n.kt)("inlineCode",{parentName:"a"},"05f664d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(inpageNavigation): restructure as a button ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48e22ac0ee521f87497822a0ec9d627829d849d5"},(0,n.kt)("inlineCode",{parentName:"a"},"48e22ac"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIconGroup): group updates for all labeled icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a679d9d05b804f516fdeed449eba1e74e227818c"},(0,n.kt)("inlineCode",{parentName:"a"},"a679d9d"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumbs): label modification for better screen reader output ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c967bef63ac6f622f5936235dd5590831a674d15"},(0,n.kt)("inlineCode",{parentName:"a"},"c967bef"))),(0,n.kt)("li",{parentName:"ul"},"refactor(checkbox): accessibility fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3b3047f6a6bdd9e9ad858e6a7ca0c6f6b404e605"},(0,n.kt)("inlineCode",{parentName:"a"},"3b3047f"))),(0,n.kt)("li",{parentName:"ul"},"change(mega-menu): sub-title padding tweaks for better spacing normalization ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e08668dd9fd948e57628e5582e7a4a7f08d96451"},(0,n.kt)("inlineCode",{parentName:"a"},"e08668d"))),(0,n.kt)("li",{parentName:"ul"},"change(card): simplified headerLineHeightOffset used as margin top for cards header ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca61105f2f39e6880ce545ba4d54f3568e7b87e2"},(0,n.kt)("inlineCode",{parentName:"a"},"ca61105"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): clean up function after test ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/883eb73cbc3db6a1fadd0200118eafdce91b7aab"},(0,n.kt)("inlineCode",{parentName:"a"},"883eb73"))),(0,n.kt)("li",{parentName:"ul"},"change(mega-menu): added code to align countries left column subtitle with the right column ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1aa33dd7ac7154a91515eef688f276d664d5d7f3"},(0,n.kt)("inlineCode",{parentName:"a"},"1aa33dd"))),(0,n.kt)("li",{parentName:"ul"},"change(logos): updated eionet logo used in the site footer #318 from eea/footer-logo-update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70671d03bbc228e3013e382cb51e6764a83b01a8"},(0,n.kt)("inlineCode",{parentName:"a"},"70671d0"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumbs): fixed sizing of breadcrumbs list items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1761e984a6ffebbcca0c7b88128a01235fc6b903"},(0,n.kt)("inlineCode",{parentName:"a"},"1761e98"))),(0,n.kt)("li",{parentName:"ul"},"change(checkbox): toggle hover color correction ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4f4d0df7292fdccb89f83feface51639bd5d6559"},(0,n.kt)("inlineCode",{parentName:"a"},"4f4d0df"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumbs,mega-menu): better screen readers support, see links instead of groups #309 from eea/firefox-accessibility-tab-issues ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d6b0b4adba8f04799491025fb41ac97e875bcce0"},(0,n.kt)("inlineCode",{parentName:"a"},"d6b0b4a"))),(0,n.kt)("li",{parentName:"ul"},"change(card): add links to teaser titles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cc64c74a69539af287f424abdf96226635284303"},(0,n.kt)("inlineCode",{parentName:"a"},"cc64c74"))),(0,n.kt)("li",{parentName:"ul"},"change(inpageNavigation): story improvements ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ade63c6f0b08c62318d31c54568cca29d0f106bc"},(0,n.kt)("inlineCode",{parentName:"a"},"ade63c6")))),(0,n.kt)("h4",{id:"-internal-changes"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(megaMenu): remove comments and unused properties ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fa5f8f878421d879026aacd86e5390112b8852a1"},(0,n.kt)("inlineCode",{parentName:"a"},"fa5f8f8")))),(0,n.kt)("h4",{id:"-documentation-changes"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(footer): logo update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ad982d63423442bc292cd7553ad3163b33b337bb"},(0,n.kt)("inlineCode",{parentName:"a"},"ad982d6")))),(0,n.kt)("h3",{id:"106---2023-03-29"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.5...1.0.6"},"1.0.6")," - 2023-03-29"),(0,n.kt)("h4",{id:"-new-features-1"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat: add viewport-(width/height) less functions and fixed banner image url #329 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e8e70bdc81f4f301a9dce370867a873e55563048"},(0,n.kt)("inlineCode",{parentName:"a"},"e8e70bd"))),(0,n.kt)("li",{parentName:"ul"},"feat: add viewport-(width/height) less functions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/68300a3c34e66954c7ef3a6e52baa37431fbfa9e"},(0,n.kt)("inlineCode",{parentName:"a"},"68300a3")))),(0,n.kt)("h4",{id:"-enhancements-1"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): set full class name for remix icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f435e10034b04cab4aeb301d8521559f98be299e"},(0,n.kt)("inlineCode",{parentName:"a"},"f435e10"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner.jsx): use flattenToAppURL helper function to get image source URL ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24b13d7c09a498ca889d413135c9abc4e6cab9ad"},(0,n.kt)("inlineCode",{parentName:"a"},"24b13d7")))),(0,n.kt)("h4",{id:"-internal-changes-1"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(theme): update container width and margins in eea theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e4446a3af641ddca03f1f2833dd6e79535feb98"},(0,n.kt)("inlineCode",{parentName:"a"},"3e4446a")))),(0,n.kt)("h4",{id:"\ufe0f-others"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"horizontal overflow hidden in view mode ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f395f276df003480a219bae639f87bebcf35799f"},(0,n.kt)("inlineCode",{parentName:"a"},"f395f27")))),(0,n.kt)("h3",{id:"105---2023-03-28"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.4...1.0.5"},"1.0.5")," - 2023-03-28"),(0,n.kt)("h4",{id:"-new-features-2"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat: improve full-width class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70bba7e295dd237e7c579ef0446ff05e0c8529d8"},(0,n.kt)("inlineCode",{parentName:"a"},"70bba7e")))),(0,n.kt)("h4",{id:"-bug-fixes-1"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(banner): Add missing divider for time tag #327 from eea/banner-metadata ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c46a58336ec9eb2ce75d2637f3197f417e8ca326"},(0,n.kt)("inlineCode",{parentName:"a"},"c46a583"))),(0,n.kt)("li",{parentName:"ul"},"fix(banner): Add missing divider for time tag ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d68c395d368a267baef4422df6e72f63d099b75"},(0,n.kt)("inlineCode",{parentName:"a"},"7d68c39")))),(0,n.kt)("h3",{id:"104---2023-03-27"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.3...1.0.4"},"1.0.4")," - 2023-03-27"),(0,n.kt)("h4",{id:"-new-features-3"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(copyright): Add copyright prefix - Image - refs #250724 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6a727723c15aee499ed7cedc9f364c5e2c8014bb"},(0,n.kt)("inlineCode",{parentName:"a"},"6a72772")))),(0,n.kt)("h4",{id:"-internal-changes-2"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(copyright): Cleanup useless min-height - refs #250724 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2457df6376ac1a4d00f87eee90e61f66f7ffebb"},(0,n.kt)("inlineCode",{parentName:"a"},"f2457df")))),(0,n.kt)("h4",{id:"\ufe0f-others-1"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cfd6eba8b01eceff4e28ab7ab51b2457672ac172"},(0,n.kt)("inlineCode",{parentName:"a"},"cfd6eba")))),(0,n.kt)("h3",{id:"103---2023-03-24"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.2...1.0.3"},"1.0.3")," - 2023-03-24"),(0,n.kt)("h4",{id:"-bug-fixes-2"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix: improve full-width class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93222590a630b27f3dfccb7df0a50070c9c9901c"},(0,n.kt)("inlineCode",{parentName:"a"},"9322259"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): Remove z-index from subsite logo #320 from eea/subsite-logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/50911009918faf7d3064d97ea7b685ad71970521"},(0,n.kt)("inlineCode",{parentName:"a"},"5091100"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): Remove z-index from subsite logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d433a9788d76db0f1c08ef6bb2313f479c2bb19b"},(0,n.kt)("inlineCode",{parentName:"a"},"d433a97")))),(0,n.kt)("h4",{id:"-enhancements-2"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(header): Add search popup customizations from eea-website-theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/43e5a78be8efa1098ea0fc87f43f40f2b5d482c1"},(0,n.kt)("inlineCode",{parentName:"a"},"43e5a78"))),(0,n.kt)("li",{parentName:"ul"},"change(popup): create custom popup for better accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/036aac95509b6d78b2d3b251578a7de878e28371"},(0,n.kt)("inlineCode",{parentName:"a"},"036aac9"))),(0,n.kt)("li",{parentName:"ul"},"change(popup): added most important popup properties from Semantic ui implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/61f65bc0e5806aaac33b54db36d5360fd05a48cc"},(0,n.kt)("inlineCode",{parentName:"a"},"61f65bc"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): use custom-made Popup for better accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/10d0fcfb28ca97efe9fa5c0f6c9c350b76a73140"},(0,n.kt)("inlineCode",{parentName:"a"},"10d0fcf"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): use custom-made Popup for better accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9108bee5f671505be5199e72a4749bb0af0c0cb9"},(0,n.kt)("inlineCode",{parentName:"a"},"9108bee"))),(0,n.kt)("li",{parentName:"ul"},"change(popup): added also the basic property ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4497acddde258ed31cda09f4d905e003a1e4611"},(0,n.kt)("inlineCode",{parentName:"a"},"a4497ac"))),(0,n.kt)("li",{parentName:"ul"},"change(colors): update gray-4 color value #321 from eea/update-gray-4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f458ff0965debd3629cdd78362244836d0d42687"},(0,n.kt)("inlineCode",{parentName:"a"},"f458ff0"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): MetadataField now uses proper time tag when value is datetime ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4c4d34d5905a6771a281fc3db1174b4998c8fa8"},(0,n.kt)("inlineCode",{parentName:"a"},"b4c4d34"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): updated gray-4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b890df7693880fb965e41752eda64df992a1cdc4"},(0,n.kt)("inlineCode",{parentName:"a"},"b890df7"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): Fix error and empty div if no social links are present #319 from eea/footer-social ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/89222466b76a4720af73c0d516074efec0757c34"},(0,n.kt)("inlineCode",{parentName:"a"},"8922246"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): Fix error and empty div if no social links are present ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5d934a6545ae783ff41dc9e3eda389c571d1369b"},(0,n.kt)("inlineCode",{parentName:"a"},"5d934a6")))),(0,n.kt)("h4",{id:"\ufe0f-others-2"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"lint ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca41def7a3743a8328f26cec868bd20395b62446"},(0,n.kt)("inlineCode",{parentName:"a"},"ca41def"))),(0,n.kt)("li",{parentName:"ul"},"refactor ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9789201c7966cd711bfa85fe448f6f6df2583eaf"},(0,n.kt)("inlineCode",{parentName:"a"},"9789201"))),(0,n.kt)("li",{parentName:"ul"},"lint ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/646dfaa729b51367ce7545ea928837a481a5485a"},(0,n.kt)("inlineCode",{parentName:"a"},"646dfaa"))),(0,n.kt)("li",{parentName:"ul"},"(feat):Page Header Banner accessibility #316 from eea/accesibility-banner ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e587f4657de137273053480a3536a066ab032a29"},(0,n.kt)("inlineCode",{parentName:"a"},"e587f46"))),(0,n.kt)("li",{parentName:"ul"},"storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c8c77de372060328d535b190f30747797db0d23a"},(0,n.kt)("inlineCode",{parentName:"a"},"c8c77de"))),(0,n.kt)("li",{parentName:"ul"},"banner accesibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5e2f23bae30b5bb14d3f607e0cfeb85d0cfe4a9f"},(0,n.kt)("inlineCode",{parentName:"a"},"5e2f23b"))),(0,n.kt)("li",{parentName:"ul"},"prettier ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6ed78e50ee68accca10b06b0790c231ddeb1a1fa"},(0,n.kt)("inlineCode",{parentName:"a"},"6ed78e5"))),(0,n.kt)("li",{parentName:"ul"},"cleaning ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4391aa6c6611d1a15f5977eb150416909ad83bc1"},(0,n.kt)("inlineCode",{parentName:"a"},"4391aa6"))),(0,n.kt)("li",{parentName:"ul"},"lint 3 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2e0bed19a24d8abfa230212cd8c09f8313dc00f2"},(0,n.kt)("inlineCode",{parentName:"a"},"2e0bed1"))),(0,n.kt)("li",{parentName:"ul"},"lint 1 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4c958034870a9861c542359144e3c56f9157994"},(0,n.kt)("inlineCode",{parentName:"a"},"b4c9580")))),(0,n.kt)("h3",{id:"102---2023-03-14"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.1...1.0.2"},"1.0.2")," - 2023-03-14"),(0,n.kt)("h4",{id:"-bug-fixes-3"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(megamenu): topic menu title is now placed before content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6004bcb2683dedf6d6e18e61f33fde84a54c38d5"},(0,n.kt)("inlineCode",{parentName:"a"},"6004bcb"))),(0,n.kt)("li",{parentName:"ul"},"fix(megamenu): removed in depth nav_title renaming that set title wrongly to a-z topics ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/899ca0e2ba5f8f9eb61e4280d786f74a17c186b7"},(0,n.kt)("inlineCode",{parentName:"a"},"899ca0e")))),(0,n.kt)("h4",{id:"-enhancements-3"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(megamenu): removed special styling from at a glance mega menu section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fd0c4c8a06bb4c4aa26f57c453132d13d30bc691"},(0,n.kt)("inlineCode",{parentName:"a"},"fd0c4c8"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): renamed thematic information platforms to environmental information systems ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e7004a7ea39451dbf97e1faed222b0cc5a12d6ce"},(0,n.kt)("inlineCode",{parentName:"a"},"e7004a7"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): updated static image of footer sections ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ff3185edf9257c790d2a124d3f937f61d84e147"},(0,n.kt)("inlineCode",{parentName:"a"},"4ff3185")))),(0,n.kt)("h4",{id:"-documentation-changes-1"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(What's new): Update 'What's new' ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d7ed9d619aa60d087c3821a972ebe5bf5766521a"},(0,n.kt)("inlineCode",{parentName:"a"},"d7ed9d6")))),(0,n.kt)("h4",{id:"\ufe0f-others-3"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fixed accordion selector typo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f4cabc8f2222cf587af9e04b0ea196799b84202f"},(0,n.kt)("inlineCode",{parentName:"a"},"f4cabc8")))),(0,n.kt)("h3",{id:"101---2023-03-13"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0...1.0.1"},"1.0.1")," - 2023-03-13"),(0,n.kt)("h3",{id:"100---2023-03-13"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-beta.6...1.0.0"},"1.0.0")," - 2023-03-13"),(0,n.kt)("h4",{id:"-bug-fixes-4"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(Footer): Open internal links within the same page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5b3e409c71281800bb0fd137a1bac256efaca2b5"},(0,n.kt)("inlineCode",{parentName:"a"},"5b3e409")))),(0,n.kt)("h4",{id:"-enhancements-4"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(banner): use huge scale instead of full image for better performance ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/381c58e3521436f562d9e1727428a18435e2c0f3"},(0,n.kt)("inlineCode",{parentName:"a"},"381c58e")))),(0,n.kt)("h3",{id:"100-beta6---2023-03-10"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-beta.5...1.0.0-beta.6"},"1.0.0-beta.6")," - 2023-03-10"),(0,n.kt)("h4",{id:"-new-features-4"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(site): serve Roboto fonts from eea design system package instead of google fonts #311 from eea/roboto-library ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6a1b3e3864a0bc8602e9c434ff70746bba59f44"},(0,n.kt)("inlineCode",{parentName:"a"},"f6a1b3e")))),(0,n.kt)("h4",{id:"-bug-fixes-5"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix: full-width is now properly sized ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e2e3482d658febbd692112608df14279bed05e7"},(0,n.kt)("inlineCode",{parentName:"a"},"6e2e348"))),(0,n.kt)("li",{parentName:"ul"},"fix(storybook): add fontDisplay ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/078966a6a5c7277d36fcd31bb4c0704bcc43e523"},(0,n.kt)("inlineCode",{parentName:"a"},"078966a")))),(0,n.kt)("h4",{id:"-enhancements-5"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(image): copyright position fixes, moved image floating to image-block-container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53422e0ea345a7cb6e8cb07bf9006b48d86ded58"},(0,n.kt)("inlineCode",{parentName:"a"},"53422e0"))),(0,n.kt)("li",{parentName:"ul"},"change(colors:) update the design system colour palette #312 from eea/update-color-palette ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a5fb69465717dbdc0fe8091640a0e46f66199b65"},(0,n.kt)("inlineCode",{parentName:"a"},"a5fb694"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): added roboto library ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19de7b19fe795870102000bfebbf452d88b3a7b1"},(0,n.kt)("inlineCode",{parentName:"a"},"19de7b1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): added roboto library ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e9916215728dda0ff423f8196e7442588058042e"},(0,n.kt)("inlineCode",{parentName:"a"},"e991621"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): update colours ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3a2c1e1da8f0224e08f9f8afac3f0a74f7ce91d3"},(0,n.kt)("inlineCode",{parentName:"a"},"3a2c1e1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): restored site variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a48478bae9bdf1d9275be999e1ec8382f10a2fec"},(0,n.kt)("inlineCode",{parentName:"a"},"a48478b"))),(0,n.kt)("li",{parentName:"ul"},"change(copyright): implemented copyright hover design ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6b1244163de7ff58d1529fdd791502c862ee48ec"},(0,n.kt)("inlineCode",{parentName:"a"},"6b12441")))),(0,n.kt)("h4",{id:"-internal-changes-3"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(storybook): switched google fonts to true ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a8cae46582356cc24ec3cd7ec47e692bc67a6a5"},(0,n.kt)("inlineCode",{parentName:"a"},"4a8cae4"))),(0,n.kt)("li",{parentName:"ul"},"chore(colours): changed back yellow 6 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87c9bbc0ec9a2a0f4bf8eeb03525d43ce6f502be"},(0,n.kt)("inlineCode",{parentName:"a"},"87c9bbc"))),(0,n.kt)("li",{parentName:"ul"},"chore(lint): lint ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9b0f1256a8b0a583ac7724a8d88259c615d7e0c7"},(0,n.kt)("inlineCode",{parentName:"a"},"9b0f125"))),(0,n.kt)("li",{parentName:"ul"},"chore(storybook): lint ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/29bc809ab2e9fa4207b8b067785e6b17e91db3b4"},(0,n.kt)("inlineCode",{parentName:"a"},"29bc809")))),(0,n.kt)("h4",{id:"-documentation-changes-2"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(colours): colours update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/161007e2480aa79517c4ca772364a12a0756f1af"},(0,n.kt)("inlineCode",{parentName:"a"},"161007e"))),(0,n.kt)("li",{parentName:"ul"},"docs(colours): accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee342aa6af3863d243222eaa89709be2ba61f988"},(0,n.kt)("inlineCode",{parentName:"a"},"ee342aa")))),(0,n.kt)("h4",{id:"\ufe0f-others-4"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"test(cypress): Use latest stable Volto for testing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/20516617ae045f48c37a7ac7ad05c3d1090339b3"},(0,n.kt)("inlineCode",{parentName:"a"},"2051661"))),(0,n.kt)("li",{parentName:"ul"},"Update What's new section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/caa4b5d93affa7b63a332eaed9e73ea161a508cf"},(0,n.kt)("inlineCode",{parentName:"a"},"caa4b5d"))),(0,n.kt)("li",{parentName:"ul"},"Prepare final release 1.0.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef4383d05b295cbbb377f877522b9f83cd0873ef"},(0,n.kt)("inlineCode",{parentName:"a"},"ef4383d"))),(0,n.kt)("li",{parentName:"ul"},"lint fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/599f5098904f607bd694dd5d2e642c8820f11b3c"},(0,n.kt)("inlineCode",{parentName:"a"},"599f509"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/80cd3df3534e46e52ba246256c3d990a52753bbd"},(0,n.kt)("inlineCode",{parentName:"a"},"80cd3df")))),(0,n.kt)("h3",{id:"100-beta5---2023-03-07"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-beta.4...1.0.0-beta.5"},"1.0.0-beta.5")," - 2023-03-07"),(0,n.kt)("h4",{id:"-enhancements-6"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(carousel): tweak size of carousel dots for better touch interaction ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e1fb8230806de2e157a9a5ea87e63765769565b4"},(0,n.kt)("inlineCode",{parentName:"a"},"e1fb823"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): removed min width and height from links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac33219fb77f23bb5148355551a7aad9f453d2e7"},(0,n.kt)("inlineCode",{parentName:"a"},"ac33219")))),(0,n.kt)("h4",{id:"-internal-changes-4"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(hiddenStructure): Add hiddenStructure utility to be used with h1 heading on frontpage - refs #158717 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/672cca2401003f56e5ea104f18103ea090e38fd7"},(0,n.kt)("inlineCode",{parentName:"a"},"672cca2")))),(0,n.kt)("h4",{id:"\ufe0f-others-5"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fixed less build failure due to changes in footer.less ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/190bc8cfa88191b45808f1e27c6e2737ee3d15b1"},(0,n.kt)("inlineCode",{parentName:"a"},"190bc8c"))),(0,n.kt)("li",{parentName:"ul"},"lazyload bg img on footer also ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ae07162ba1b27bff58fed70eaabc28c78c5f45a3"},(0,n.kt)("inlineCode",{parentName:"a"},"ae07162"))),(0,n.kt)("li",{parentName:"ul"},"lazyload footer images ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a0633c9ec4ccfb63a48eb4e4c4a63c90daac1a37"},(0,n.kt)("inlineCode",{parentName:"a"},"a0633c9"))),(0,n.kt)("li",{parentName:"ul"},"Increase performance - mobile friendly ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/07d86c8e77568f91d50b3a45248de9427140a295"},(0,n.kt)("inlineCode",{parentName:"a"},"07d86c8"))),(0,n.kt)("li",{parentName:"ul"},"better useOnScreen hook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c214b6b76443f81c795ce2f3aa457562ec088b30"},(0,n.kt)("inlineCode",{parentName:"a"},"c214b6b"))),(0,n.kt)("li",{parentName:"ul"},"role change for accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5e758e0a7fa8c56ba688d0a43de5890686f14ea3"},(0,n.kt)("inlineCode",{parentName:"a"},"5e758e0"))),(0,n.kt)("li",{parentName:"ul"},"minimum tap dimension for mobile ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a25e9a8ba8a8a0f24d287ed7513e549ae2caab0f"},(0,n.kt)("inlineCode",{parentName:"a"},"a25e9a8"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-beta.5 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e4417e121477511c350ae3fbe4e70aadb445ed86"},(0,n.kt)("inlineCode",{parentName:"a"},"e4417e1"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using eea-website-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b227cf8a8c44b9d91e9fda8a7999fb0a42bacdca"},(0,n.kt)("inlineCode",{parentName:"a"},"b227cf8"))),(0,n.kt)("li",{parentName:"ul"},"feature(mobile): increased performance by lazy loading footer images #303 from eea/increase_performance ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/80d1df1c459680331d486f9e8e6a95c9db0adbf6"},(0,n.kt)("inlineCode",{parentName:"a"},"80d1df1"))),(0,n.kt)("li",{parentName:"ul"},"useOnScreen default export ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e6cfdd4dcb814aad328f97be7af41af071ccba6"},(0,n.kt)("inlineCode",{parentName:"a"},"3e6cfdd"))),(0,n.kt)("li",{parentName:"ul"},"use aria-labels on dropdown ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/27e144315416ceace0f01def03b5b24640f5c7da"},(0,n.kt)("inlineCode",{parentName:"a"},"27e1443"))),(0,n.kt)("li",{parentName:"ul"},"prettier ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7f838470c1bcc4e2be115d514d92a1b686a5e9b"},(0,n.kt)("inlineCode",{parentName:"a"},"a7f8384")))),(0,n.kt)("h3",{id:"100-beta4---2023-03-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-beta.3...1.0.0-beta.4"},"1.0.0-beta.4")," - 2023-03-01"),(0,n.kt)("h4",{id:"-new-features-5"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(footer): Add footer description ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ad0f714556c5b8c2fd95a2caea5c3a1e82c75d1"},(0,n.kt)("inlineCode",{parentName:"a"},"2ad0f71"))),(0,n.kt)("li",{parentName:"ul"},"feat(footer): Add footer description #306 from eea/footer-description ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bf655d133dd75b217c34b3d4303ad450a59f2c51"},(0,n.kt)("inlineCode",{parentName:"a"},"bf655d1")))),(0,n.kt)("h4",{id:"-bug-fixes-6"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(footer): Don't show empty row if description is not present ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ca7f7d3247668ae8583b8cd629856aac82eb07d"},(0,n.kt)("inlineCode",{parentName:"a"},"2ca7f7d"))),(0,n.kt)("li",{parentName:"ul"},"fix(footer): Add class for children ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c50d15cd6ed46d78ef10d48fd851ed7c4b5ddea"},(0,n.kt)("inlineCode",{parentName:"a"},"3c50d15"))),(0,n.kt)("li",{parentName:"ul"},"fix(search): Fix search links color #307 from eea/search-accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a76f48bab3a7d3f6b748eaa85b33266401372e40"},(0,n.kt)("inlineCode",{parentName:"a"},"a76f48b"))),(0,n.kt)("li",{parentName:"ul"},"fix(search): Fix search links color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/69c42effc5bdc3d31f18de74d77a3b7cc0018dc5"},(0,n.kt)("inlineCode",{parentName:"a"},"69c42ef")))),(0,n.kt)("h4",{id:"-enhancements-7"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(carousel): tweak card width and padding for better arrow alignment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e184f70062d622e1ec53e8e1e2b012c080e62d77"},(0,n.kt)("inlineCode",{parentName:"a"},"e184f70"))),(0,n.kt)("li",{parentName:"ul"},"change(storybook): include footer description in storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e904aa0850e101d736e8d045e822d9a58b75ff6a"},(0,n.kt)("inlineCode",{parentName:"a"},"e904aa0")))),(0,n.kt)("h4",{id:"\ufe0f-others-6"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-beta.4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8c335c56c5a2a76ea87f9da318055770f904e649"},(0,n.kt)("inlineCode",{parentName:"a"},"8c335c5"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/38b03333066416915b056f8ac45da4de87ed7184"},(0,n.kt)("inlineCode",{parentName:"a"},"38b0333")))),(0,n.kt)("h3",{id:"100-beta3---2023-02-21"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-beta.2...1.0.0-beta.3"},"1.0.0-beta.3")," - 2023-02-21"),(0,n.kt)("h4",{id:"-new-features-6"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(accordion): storybook accessibility by using buttons for titles #297 from eea/accessibility-accordion ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/809d52b203ef40fab735006b3b8358d68682f7cf"},(0,n.kt)("inlineCode",{parentName:"a"},"809d52b")))),(0,n.kt)("h4",{id:"-bug-fixes-7"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(dropdown): remove close on blur so that we can navigate links using keyboard ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5442715e022b3eb2eeb709ff597f815947ac45bd"},(0,n.kt)("inlineCode",{parentName:"a"},"5442715")))),(0,n.kt)("h4",{id:"-enhancements-8"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(language): dropdown to use links for proper keyboard navigation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6a7de30d9d229443d6d2070d9649129e6d35badf"},(0,n.kt)("inlineCode",{parentName:"a"},"6a7de30"))),(0,n.kt)("li",{parentName:"ul"},"refactor(images): cleared unused/renamed images assets ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/821f5c1da5c1e2350818cd9b8b82bc0b1893370d"},(0,n.kt)("inlineCode",{parentName:"a"},"821f5c1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Accessibility): add box-shadow on focus-visible components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b1adcc315a89c7d3431e542e8d1b6ec479a346e2"},(0,n.kt)("inlineCode",{parentName:"a"},"b1adcc3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(images): remove unused docusaurus svgs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5ef14cdb1923d803feb673559d41b3064211653"},(0,n.kt)("inlineCode",{parentName:"a"},"c5ef14c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add escape key functionality, actions from div to button to have proper focus state ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8081aa4e3b77f8a3dc89aa358408d75e3dca5579"},(0,n.kt)("inlineCode",{parentName:"a"},"8081aa4"))),(0,n.kt)("li",{parentName:"ul"},"change(language): restore dropdown duplication in order to properly show and hide language dropdown ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb28888ff19bd9894b58403e674f69de42ad8d09"},(0,n.kt)("inlineCode",{parentName:"a"},"cb28888"))),(0,n.kt)("li",{parentName:"ul"},"change(search): to reflect changes from eea-website-theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2cc35e0da6e6eac1473724293fcf6cd6b0a914b5"},(0,n.kt)("inlineCode",{parentName:"a"},"2cc35e0"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update p with h3 heading tag for header ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca1477b554f56423d40a33d8ee788c3f3bd3e341"},(0,n.kt)("inlineCode",{parentName:"a"},"ca1477b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer images): removed unused/renamed ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/186de6b23906e05ec700c3db5180a4d7f7e5ed68"},(0,n.kt)("inlineCode",{parentName:"a"},"186de6b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Accordion): div titles to buttons, test in mobile mega menu accordions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/eaad4b479e37ebf5ac004cfc5759e0be603000a7"},(0,n.kt)("inlineCode",{parentName:"a"},"eaad4b4"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): cleanup decorative images ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fedc4d4dc156f9c1394fcedcebece4fb87dc70b6"},(0,n.kt)("inlineCode",{parentName:"a"},"fedc4d4"))),(0,n.kt)("li",{parentName:"ul"},"change(accessibility): style outline instead of box-shadow ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53209f3b28c9a1dd54a8a86ab418b8bc2a8e01b3"},(0,n.kt)("inlineCode",{parentName:"a"},"53209f3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Footer): update mobile header size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/01ab7f0d9abe688b3d96aaec018838e1abefec73"},(0,n.kt)("inlineCode",{parentName:"a"},"01ab7f0"))),(0,n.kt)("li",{parentName:"ul"},"change(header): set the logo class directly on the link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f8fba508f925d9e6b86720fcb2c7dcfffee4ab5e"},(0,n.kt)("inlineCode",{parentName:"a"},"f8fba50"))),(0,n.kt)("li",{parentName:"ul"},"refactor(images): clear docusaurus unused pngs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/db5c61124182e3030f753f6baa294fbdecaa3798"},(0,n.kt)("inlineCode",{parentName:"a"},"db5c611"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header-images): removed unused ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8250d94421d9d1ee13144e71bc0938af2b7309f5"},(0,n.kt)("inlineCode",{parentName:"a"},"8250d94"))),(0,n.kt)("li",{parentName:"ul"},"change(language): hide language dropdown by default ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cc6064f72dcb4dbf96e9b05205cc796775d75205"},(0,n.kt)("inlineCode",{parentName:"a"},"cc6064f"))),(0,n.kt)("li",{parentName:"ul"},"change(header): top dropdown menu keyboard navigation #293 from eea/accessibility-megamenu-searchbox ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1e6fa658e52b9d5e6cc38f065b5707b592005241"},(0,n.kt)("inlineCode",{parentName:"a"},"1e6fa65"))),(0,n.kt)("li",{parentName:"ul"},"change(button): set focus styling for buttons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/33ebfcacb014fca365ae58079bfa5429d9007e54"},(0,n.kt)("inlineCode",{parentName:"a"},"33ebfca"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): Avoid devtools warning in FooterActions #304 from eea/avoid_warning ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d774824c5d3d0998b3440ac83152428cfa821087"},(0,n.kt)("inlineCode",{parentName:"a"},"d774824"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): Accessibility update p with h3 heading tag for theme sites title #302 from eea/footer-accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5bf70de97aee216a0b88f5843a290c6bcb5da6f2"},(0,n.kt)("inlineCode",{parentName:"a"},"5bf70de"))),(0,n.kt)("li",{parentName:"ul"},"change(documentation): Rename all image files to follow the agreed convention #301 from eea/refactor-image-filenames ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cfe44ef79943af9b9179df1b8ec5f8c743e8bb39"},(0,n.kt)("inlineCode",{parentName:"a"},"cfe44ef")))),(0,n.kt)("h4",{id:"-internal-changes-5"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(header): react syntax fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3add1271c785a92bea0ef925d7bc562cef1e0d92"},(0,n.kt)("inlineCode",{parentName:"a"},"3add127"))),(0,n.kt)("li",{parentName:"ul"},"chore(docusaurus): ignore website/.yarn ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0b33ffd1dda61b126e3cc5ff48888124d6aee41b"},(0,n.kt)("inlineCode",{parentName:"a"},"0b33ffd")))),(0,n.kt)("h4",{id:"-documentation-changes-3"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(guidelines): add image name convention ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/290747c8df6919199577bc7fce6a0e337cb57853"},(0,n.kt)("inlineCode",{parentName:"a"},"290747c")))),(0,n.kt)("h4",{id:"\ufe0f-others-7"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Avoid warning in FooterActions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0fe73d70e44e32be73049f3b5cf826de42115942"},(0,n.kt)("inlineCode",{parentName:"a"},"0fe73d7"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-beta.3 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/386c9032d39317b0bb95191bd59e3b7a99bded69"},(0,n.kt)("inlineCode",{parentName:"a"},"386c903")))),(0,n.kt)("h3",{id:"100-beta2---2023-02-13"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-beta.1...1.0.0-beta.2"},"1.0.0-beta.2")," - 2023-02-13"),(0,n.kt)("h4",{id:"-bug-fixes-8"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(footer): action and copyright #300 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/579f3e436e9608b38a2407a16c070345462bfccc"},(0,n.kt)("inlineCode",{parentName:"a"},"579f3e4"))),(0,n.kt)("li",{parentName:"ul"},"fix(footer): action or copyright links are simple a tags for external link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9af5070187ec975e58387f133afedcf1bbc47a50"},(0,n.kt)("inlineCode",{parentName:"a"},"9af5070"))),(0,n.kt)("li",{parentName:"ul"},"fix(accessibility): added navigation and footer id's for skip link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48354b908e7d1a87b4e1a965d225e8f1b3e0ac59"},(0,n.kt)("inlineCode",{parentName:"a"},"48354b9")))),(0,n.kt)("h4",{id:"-enhancements-9"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(footer): typos and modified footer links to be center aligned ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac23f046bcac06525985dff7520bb2766dec44ec"},(0,n.kt)("inlineCode",{parentName:"a"},"ac23f04"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): added gap for actions and copyright ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d32ddd3c28a48c6c2fb73dea373bb5873b6f76b"},(0,n.kt)("inlineCode",{parentName:"a"},"7d32ddd"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): modified footer gap ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8a820ac90c7d6664e4d4655c2c06edfa976c64e"},(0,n.kt)("inlineCode",{parentName:"a"},"b8a820a"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): removed extra text and date from copyright section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af47bbec298678fece6f879fbc18fe2e01ab0894"},(0,n.kt)("inlineCode",{parentName:"a"},"af47bbe"))),(0,n.kt)("li",{parentName:"ul"},"change(navigation): raise z-index of go to top link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/485ca7291da7a156b6b580c42e46d4f3602211bb"},(0,n.kt)("inlineCode",{parentName:"a"},"485ca72")))),(0,n.kt)("h4",{id:"-internal-changes-6"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(docs): Update eea.hbs template to beta - refs #158717 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/196538ed7bb9dab36a0efb4cef84e96dd3038ff8"},(0,n.kt)("inlineCode",{parentName:"a"},"196538e")))),(0,n.kt)("h4",{id:"\ufe0f-others-8"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change version to beta 2 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cbb07981454b28de840561eca281888e8bc29f9e"},(0,n.kt)("inlineCode",{parentName:"a"},"cbb0798"))),(0,n.kt)("li",{parentName:"ul"},"Beta release ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ad51b3c2bbb75f19af14fa56afdbddf57b6c95e"},(0,n.kt)("inlineCode",{parentName:"a"},"4ad51b3")))),(0,n.kt)("h3",{id:"100-beta1---2023-02-09"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.15...1.0.0-beta.1"},"1.0.0-beta.1")," - 2023-02-09"),(0,n.kt)("h4",{id:"-new-features-7"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(search): Add search suggestions style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6b2b77bbaba11541606ae2bc1f4e8ffc823f470d"},(0,n.kt)("inlineCode",{parentName:"a"},"6b2b77b"))),(0,n.kt)("li",{parentName:"ul"},"feat(search): Add search suggestions style #296 from eea/search-suggestions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3b0c956f569ebdc8400b88249c45067a1f881264"},(0,n.kt)("inlineCode",{parentName:"a"},"3b0c956")))),(0,n.kt)("h4",{id:"-enhancements-10"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(search): Add proper margin for search popup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/190c9f5be570215586086f42aebc7e36d6a26ea2"},(0,n.kt)("inlineCode",{parentName:"a"},"190c9f5")))),(0,n.kt)("h4",{id:"\ufe0f-others-9"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Extra bottom padding for header menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4f38c7a96d93fbcd47de4ec60176de2a667c5643"},(0,n.kt)("inlineCode",{parentName:"a"},"4f38c7a"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-beta.1 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4384ae28597c725f66ab0f1361ffd5167ee5e3a1"},(0,n.kt)("inlineCode",{parentName:"a"},"4384ae2"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c2ee90c1754f17a304897839adf482bc2a111212"},(0,n.kt)("inlineCode",{parentName:"a"},"c2ee90c")))),(0,n.kt)("h3",{id:"100-alpha15---2023-02-08"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.14...1.0.0-alpha.15"},"1.0.0-alpha.15")," - 2023-02-08"),(0,n.kt)("h4",{id:"-new-features-8"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(Card): add teaser card grid story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53cac0b0d1c40ad6ad8c9dc91c5d24bfb160f98e"},(0,n.kt)("inlineCode",{parentName:"a"},"53cac0b"))),(0,n.kt)("li",{parentName:"ul"},"feat(utilities): Complete list of text-align utilities - refs #160747 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/224fab602184b8974f588c91a7412e3d03e4e2f7"},(0,n.kt)("inlineCode",{parentName:"a"},"224fab6"))),(0,n.kt)("li",{parentName:"ul"},"feat(small): CSS for small HTML tag - refs #160747 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ad3c0adec4efa7cead69153d399c6452131c94cc"},(0,n.kt)("inlineCode",{parentName:"a"},"ad3c0ad"))),(0,n.kt)("li",{parentName:"ul"},"feat(fw-light): Add font weight light utility - refs #160747 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c44cf57db5845fbb9c07233aeedab79e1438f80f"},(0,n.kt)("inlineCode",{parentName:"a"},"c44cf57")))),(0,n.kt)("h4",{id:"-bug-fixes-9"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(card): teaser card dimensions on tablet size #290 from eea/teaser-card-grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/013fdf5cad347aee14bdc51553dbd95d972a7c66"},(0,n.kt)("inlineCode",{parentName:"a"},"013fdf5")))),(0,n.kt)("h4",{id:"-enhancements-11"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(card): added extra content for teaser card story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/30690ae6c499682853cb19db10b0cdc13c6f9508"},(0,n.kt)("inlineCode",{parentName:"a"},"30690ae"))),(0,n.kt)("li",{parentName:"ul"},"refactor(style-menu): add text-color to paragraphs styles #291 from eea/stylemenu-theme-colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2d783075b8089184e50b1763226af0d60ed11786"},(0,n.kt)("inlineCode",{parentName:"a"},"2d78307"))),(0,n.kt)("li",{parentName:"ul"},"change(header): Small fix in search popup #292 from eea/search-popup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/86c130539455b9a00b4b088b1871a98b9756df79"},(0,n.kt)("inlineCode",{parentName:"a"},"86c1305"))),(0,n.kt)("li",{parentName:"ul"},"refactor(style-menu): add text-color to paragraphs styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3446bc2704603bbfead7ff6c72d4e3a1ce81c7d4"},(0,n.kt)("inlineCode",{parentName:"a"},"3446bc2"))),(0,n.kt)("li",{parentName:"ul"},"change(color): darkCyan is now replaced everywhere by the new green ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef3791de6e2ea23487791c717eefc575e21fd283"},(0,n.kt)("inlineCode",{parentName:"a"},"ef3791d"))),(0,n.kt)("li",{parentName:"ul"},"change(header): Small fix in search popup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3d622ea99df5a1f1088f70998e38fd5bf43997cf"},(0,n.kt)("inlineCode",{parentName:"a"},"3d622ea")))),(0,n.kt)("h4",{id:"\ufe0f-others-10"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Release alpha 15 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3b72b29aaf9b3e1bfb7015808aafbd73a7167895"},(0,n.kt)("inlineCode",{parentName:"a"},"3b72b29")))),(0,n.kt)("h3",{id:"100-alpha14---2023-01-30"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.13.1...1.0.0-alpha.14"},"1.0.0-alpha.14")," - 2023-01-30"),(0,n.kt)("h4",{id:"-enhancements-12"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(mobile menu): integrate a-z topic with menu rendering logic #287 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/05d4c04603e6572cd6f9b255faa03c4636d8efdb"},(0,n.kt)("inlineCode",{parentName:"a"},"05d4c04"))),(0,n.kt)("li",{parentName:"ul"},"change(mobile menu): integrate a-z topic with menu rendering logic ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/246d3d839b773e2f6e1fff7fed5f9aa7a4968daa"},(0,n.kt)("inlineCode",{parentName:"a"},"246d3d8")))),(0,n.kt)("h4",{id:"\ufe0f-others-11"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"bump release to alpha 14 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/92f01975a809553ed122824c8407c74da9132c23"},(0,n.kt)("inlineCode",{parentName:"a"},"92f0197"))),(0,n.kt)("li",{parentName:"ul"},"link fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e1c12a132a1a99d773af359ebce071fb37c7e661"},(0,n.kt)("inlineCode",{parentName:"a"},"e1c12a1")))),(0,n.kt)("h3",{id:"100-alpha131---2023-01-30"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.13...1.0.0-alpha.13.1"},"1.0.0-alpha.13.1")," - 2023-01-30"),(0,n.kt)("h4",{id:"-enhancements-13"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(mobile menu): hardcode a-z topics to '/en/topics-in-depth' #286 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6436224e1922fb5d4b4053c874cebe5c57b2a6b9"},(0,n.kt)("inlineCode",{parentName:"a"},"6436224"))),(0,n.kt)("li",{parentName:"ul"},"change(mobile menu): hardcode a-z topics to '/en/topics-in-depth' ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5235b52047a80a8b626aa5ef3ef304c4d9a82003"},(0,n.kt)("inlineCode",{parentName:"a"},"5235b52")))),(0,n.kt)("h4",{id:"\ufe0f-others-12"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change release to 13.1 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70aa5648e7d9e14796445323b6ebaf7733cc7fd8"},(0,n.kt)("inlineCode",{parentName:"a"},"70aa564")))),(0,n.kt)("h3",{id:"100-alpha13---2023-01-27"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.12...1.0.0-alpha.13"},"1.0.0-alpha.13")," - 2023-01-27"),(0,n.kt)("h4",{id:"-new-features-9"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(utilities): added has--bg--top center and bottom utility classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/051e6d7c33aca7947802ddaa9fe68ac41ed7fe11"},(0,n.kt)("inlineCode",{parentName:"a"},"051e6d7")))),(0,n.kt)("h4",{id:"-bug-fixes-10"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(header): update green color used in page header #284 from eea/fix-banner-background ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/29d54db06487d18a367202725e525ac26e5b7c58"},(0,n.kt)("inlineCode",{parentName:"a"},"29d54db")))),(0,n.kt)("h4",{id:"-enhancements-14"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(site): added fixes from customVolto.css to design package ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51ba9b5df0186bdf075d803dea6032bac52e540f"},(0,n.kt)("inlineCode",{parentName:"a"},"51ba9b5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner): update banner background green color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fd4a552d9ff7a2973ebd6d18b6fbfd9bba5d98c6"},(0,n.kt)("inlineCode",{parentName:"a"},"fd4a552"))),(0,n.kt)("li",{parentName:"ul"},"change(mobile menu): changed link for a-z topics to point to in depth ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/721bf237d23d2a8e47fc2132912646c4ce182c9d"},(0,n.kt)("inlineCode",{parentName:"a"},"721bf23")))),(0,n.kt)("h4",{id:"\ufe0f-others-13"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"1.0.0-alpha.13 release #285 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c96694005e2d4160876f6a900db13940d42266d5"},(0,n.kt)("inlineCode",{parentName:"a"},"c966940"))),(0,n.kt)("li",{parentName:"ul"},"bump next version to alpha 13 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/897e9069062282f1b5cd8d86a02b8e54c40a4690"},(0,n.kt)("inlineCode",{parentName:"a"},"897e906"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5780dc7abeb24da5e77b043a34593ff7a44f350d"},(0,n.kt)("inlineCode",{parentName:"a"},"5780dc7")))),(0,n.kt)("h3",{id:"100-alpha12---2023-01-24"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.11...1.0.0-alpha.12"},"1.0.0-alpha.12")," - 2023-01-24"),(0,n.kt)("h4",{id:"-new-features-10"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(card, colors): visited color change and title on image option for cards #283 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e638ee6b77885fd5989179aa9e6532e46e475247"},(0,n.kt)("inlineCode",{parentName:"a"},"e638ee6")))),(0,n.kt)("h4",{id:"-bug-fixes-11"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(mobile menu): sub links when an accordion section is active ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bb3be81416340ad0e3e992cd4e75642fc50f8ad3"},(0,n.kt)("inlineCode",{parentName:"a"},"bb3be81")))),(0,n.kt)("h4",{id:"-enhancements-15"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(Card): create card template for stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2fa77f3f93935dd01cd5e3d77437fe8dc03721da"},(0,n.kt)("inlineCode",{parentName:"a"},"2fa77f3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Card): add image with title css ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e6e63e2362a27b0bbf4b8dd968f11a0dc87da2a"},(0,n.kt)("inlineCode",{parentName:"a"},"6e6e63e"))),(0,n.kt)("li",{parentName:"ul"},"change(card): implement title on image within image section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff6cc600978355e04dde704d014d2cbe27df1298"},(0,n.kt)("inlineCode",{parentName:"a"},"ff6cc60"))),(0,n.kt)("li",{parentName:"ul"},"change(card): added image card section, tweaked mobile heading size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0f879e15d22ae066f020d8188ef3e355c27d016c"},(0,n.kt)("inlineCode",{parentName:"a"},"0f879e1"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): moved image gradient overlay to a mixin.less file ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8b4928a87bfe5fae6f64c93d7c8f1f7a3045816c"},(0,n.kt)("inlineCode",{parentName:"a"},"8b4928a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): Update titles value and size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c35ad5c76caa00556f8a501d2e7d516464790dc4"},(0,n.kt)("inlineCode",{parentName:"a"},"c35ad5c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): applied image naming convention ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee7bc290084e198f9f94e40fbf44c6d9cb19d1ba"},(0,n.kt)("inlineCode",{parentName:"a"},"ee7bc29"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): added image for all storybook card examples ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3f194130bb6fb7b9ab04a7e1305f26fa135c23d2"},(0,n.kt)("inlineCode",{parentName:"a"},"3f19413"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): restored label value of metadata field when type isn't date ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/571a4f27fe73d0465b6482f70dd70b2dc47dffe8"},(0,n.kt)("inlineCode",{parentName:"a"},"571a4f2"))),(0,n.kt)("li",{parentName:"ul"},"change(card): title padding value for a more balance look ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/74b65563d973eb9c6afc534935e253f2705fe9ee"},(0,n.kt)("inlineCode",{parentName:"a"},"74b6556"))),(0,n.kt)("li",{parentName:"ul"},"change(card): removed uppercase transform from title on image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2948ae16f748911929910ac53d1e0acf96952317"},(0,n.kt)("inlineCode",{parentName:"a"},"2948ae1"))),(0,n.kt)("li",{parentName:"ul"},"change(colors, Docusaurus): Visited link colour change and thematic logo replacement #278 from eea/refactor-visited-link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f82d9781cc3b34443f181565c2ec1892d534f8e2"},(0,n.kt)("inlineCode",{parentName:"a"},"f82d978"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): visited link variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b209b2f7703641926c6d4b1f7162eef39b2a1ad8"},(0,n.kt)("inlineCode",{parentName:"a"},"b209b2f")))),(0,n.kt)("h4",{id:"-documentation-changes-4"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(colors): visited link update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ece77fec130de1d9d8014d40e7da975bf57061ee"},(0,n.kt)("inlineCode",{parentName:"a"},"ece77fe")))),(0,n.kt)("h4",{id:"\ufe0f-others-14"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix typos in footer gradient variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/40066405d97af838e986370101371a8162029e02"},(0,n.kt)("inlineCode",{parentName:"a"},"4006640"))),(0,n.kt)("li",{parentName:"ul"},"change version to alpha 12 instead of 1 final ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32250253f5d7fe9f01126136ad86b8a4f2f5c700"},(0,n.kt)("inlineCode",{parentName:"a"},"3225025"))),(0,n.kt)("li",{parentName:"ul"},"feature(card): new card variation with title on top of image #267 from eea/title-on-image-card ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2c0ca95700bb162bc1273c83f2fc4f591de8dcf0"},(0,n.kt)("inlineCode",{parentName:"a"},"2c0ca95"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/477d997513ef5152ab98e080ad07f927b5869705"},(0,n.kt)("inlineCode",{parentName:"a"},"477d997")))),(0,n.kt)("h3",{id:"100-alpha11---2023-01-17"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.10...1.0.0-alpha.11"},"1.0.0-alpha.11")," - 2023-01-17"),(0,n.kt)("h4",{id:"-new-features-11"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(docusaurus): Header and footer elements section #277 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0df271c4c79bd8a24750cfe44d69f32cb04a1b63"},(0,n.kt)("inlineCode",{parentName:"a"},"0df271c")))),(0,n.kt)("h4",{id:"-bug-fixes-12"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(banner): storybook date input and simplified gradient opacity ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7674d767bb770342828d6bea6953ce45b823943f"},(0,n.kt)("inlineCode",{parentName:"a"},"7674d76"))),(0,n.kt)("li",{parentName:"ul"},"fix(banner): re-added title class on banner title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d157994934c3da9af4e3dd37844f910bddf8377"},(0,n.kt)("inlineCode",{parentName:"a"},"6d15799")))),(0,n.kt)("h4",{id:"-enhancements-16"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(banner): sync storybook and Volto component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c9087cc8edc3fb27e0b96b509354861ec306f22a"},(0,n.kt)("inlineCode",{parentName:"a"},"c9087cc"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): removed margin from title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/17e592c4f3fd16a78069af50574e2ac608166a0f"},(0,n.kt)("inlineCode",{parentName:"a"},"17e592c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): sync storybook and Volto component #275 from eea/sync-page-banner-theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4331fb4a6d5744e7d7d6a001bca91265a22587fd"},(0,n.kt)("inlineCode",{parentName:"a"},"4331fb4")))),(0,n.kt)("h4",{id:"-documentation-changes-5"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(footer): updates on header elements ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b41c550475dc5a2eefcad5d75439601d079613e2"},(0,n.kt)("inlineCode",{parentName:"a"},"b41c550"))),(0,n.kt)("li",{parentName:"ul"},"docs(footer): add elements anatomy ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d9f0872f93a6f7572f798b2c001d3af00eb282e3"},(0,n.kt)("inlineCode",{parentName:"a"},"d9f0872")))),(0,n.kt)("h4",{id:"\ufe0f-others-15"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"add(banner): banner title css ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d0032474d2b57eb63a4b50a882ced2ee743a48e6"},(0,n.kt)("inlineCode",{parentName:"a"},"d003247"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-alpha.11 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/07e8f858b0bdeaa6a348c0bfc2b785f26017e1ea"},(0,n.kt)("inlineCode",{parentName:"a"},"07e8f85"))),(0,n.kt)("li",{parentName:"ul"},"renamed image elements as requested in review ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8541fb6739d3c935ed8d44a220114546b2aef682"},(0,n.kt)("inlineCode",{parentName:"a"},"8541fb6"))),(0,n.kt)("li",{parentName:"ul"},"remove(banner-gradiant): image gradiant in favour of text ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1b58520490be5e17ea4ce6fc98329d467dad3960"},(0,n.kt)("inlineCode",{parentName:"a"},"1b58520"))),(0,n.kt)("li",{parentName:"ul"},"update(gradient): use 8deg angle ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6fd597d8d7a83fdf8a27939e4c69dfc3975b6a81"},(0,n.kt)("inlineCode",{parentName:"a"},"6fd597d"))),(0,n.kt)("li",{parentName:"ul"},"update(gradiant): make it 0deg ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1bb2696375eef233b509e27d9d464b8343421430"},(0,n.kt)("inlineCode",{parentName:"a"},"1bb2696"))),(0,n.kt)("li",{parentName:"ul"},"remove(comment) referencing old verison of title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4226d42e34b119e057cf4e9878b6a99172cb976a"},(0,n.kt)("inlineCode",{parentName:"a"},"4226d42")))),(0,n.kt)("h3",{id:"100-alpha10---2023-01-13"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.9...1.0.0-alpha.10"},"1.0.0-alpha.10")," - 2023-01-13"),(0,n.kt)("h4",{id:"-bug-fixes-13"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(subsite): Fix logo size on subsite section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/65fff54503a9ace573dc7198f6bedb372e65d211"},(0,n.kt)("inlineCode",{parentName:"a"},"65fff54"))),(0,n.kt)("li",{parentName:"ul"},"fix(subsite): Fix logo size on subsite section #279 from eea/subsite-fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f6cf94811dbebc2081c0ca812570a72dd977b06"},(0,n.kt)("inlineCode",{parentName:"a"},"8f6cf94"))),(0,n.kt)("li",{parentName:"ul"},"fix(mega-menu): show sub grid only if there are children ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ddfbd82aab2be723ae230d703f72a8cd489f17d8"},(0,n.kt)("inlineCode",{parentName:"a"},"ddfbd82")))),(0,n.kt)("h4",{id:"\ufe0f-others-16"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Add variable definitions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/293fe65e2f24e6290e1286229169a77f9be4750e"},(0,n.kt)("inlineCode",{parentName:"a"},"293fe65"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-alpha.10 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7014d080ce114bd0bc039abeecbd7229333b0971"},(0,n.kt)("inlineCode",{parentName:"a"},"7014d08"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using advisory-board-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef58a6f5ad8deea26b1395a86778fe1159b7617b"},(0,n.kt)("inlineCode",{parentName:"a"},"ef58a6f"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/31d461662b9184a7bbe190e86f3c47fab39229fe"},(0,n.kt)("inlineCode",{parentName:"a"},"31d4616")))),(0,n.kt)("h3",{id:"100-alpha9---2022-12-28"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.8...1.0.0-alpha.9"},"1.0.0-alpha.9")," - 2022-12-28"),(0,n.kt)("h4",{id:"-enhancements-17"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(contextnav): Default title is text, custom title is link #273 from eea/context-nav-link-title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef7bdb7c40cd12c3d7e059074aa5797b8cb3378c"},(0,n.kt)("inlineCode",{parentName:"a"},"ef7bdb7")))),(0,n.kt)("h4",{id:"\ufe0f-others-17"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Show document and folder content-type in Navigation listing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8471db3b3d555e8602f1076d0f96a2ba38a12247"},(0,n.kt)("inlineCode",{parentName:"a"},"8471db3"))),(0,n.kt)("li",{parentName:"ul"},"Default title is text, custom title is link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1ae95b05b67423121566448c6b0cededca4b2b1d"},(0,n.kt)("inlineCode",{parentName:"a"},"1ae95b0"))),(0,n.kt)("li",{parentName:"ul"},"Context nav title link to # ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a27a6b78bcda0eb6037f73f1d36b06e00e3ffc52"},(0,n.kt)("inlineCode",{parentName:"a"},"a27a6b7")))),(0,n.kt)("h3",{id:"100-alpha8---2022-12-23"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.7...1.0.0-alpha.8"},"1.0.0-alpha.8")," - 2022-12-23"),(0,n.kt)("h4",{id:"-new-features-12"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(copyright): Align copyright options with Volto integration - refs #158210 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6bac7f6a9ad969af4be1c8c08a18a1144d5bad63"},(0,n.kt)("inlineCode",{parentName:"a"},"6bac7f6")))),(0,n.kt)("h4",{id:"-enhancements-18"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(logo): import theme site logos to the story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2f29136ca457f2419ca25a5292a036b2cd0fc402"},(0,n.kt)("inlineCode",{parentName:"a"},"2f29136"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logo): update logo and mega search gradient ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e11f44d59334fc02e3833a133b20e7b2240a2022"},(0,n.kt)("inlineCode",{parentName:"a"},"e11f44d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logos): convert logo names to lowercase ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/07b822864490b4cc63bef94f3306466ba5933e16"},(0,n.kt)("inlineCode",{parentName:"a"},"07b8228"))),(0,n.kt)("li",{parentName:"ul"},"change(item): use default logic of setting align class on content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6b5b47c10ce5a6d3710bedd492aa3d362d62d225"},(0,n.kt)("inlineCode",{parentName:"a"},"6b5b47c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logo): update logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/170efe5bfc7fd4988f4a4d4aac18ace32c360cd6"},(0,n.kt)("inlineCode",{parentName:"a"},"170efe5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logos): convert storybook logo names to lowercase ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4b24ec8796f8fffd87158a55f4ac19624ebe04c"},(0,n.kt)("inlineCode",{parentName:"a"},"c4b24ec"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logo): add eea roboto font logo variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/de1224a97568c0b48b509c65170a6080d8a058d4"},(0,n.kt)("inlineCode",{parentName:"a"},"de1224a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logo): add container and segment to logo story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/61eff16fcd080194fe1187656d67ef73a7dd4d6c"},(0,n.kt)("inlineCode",{parentName:"a"},"61eff16"))),(0,n.kt)("li",{parentName:"ul"},"change(item): removed requirement for aligned classes to be on content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/30c0d5d2de7ac05172cfb726b60a8bd763de7b31"},(0,n.kt)("inlineCode",{parentName:"a"},"30c0d5d"))),(0,n.kt)("li",{parentName:"ul"},"change(logos): cleanup eea logo reference to only eea-logo and eea-logo-white.svg ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2796e054a21a9025036c8b2882afe23a6984cd37"},(0,n.kt)("inlineCode",{parentName:"a"},"2796e05")))),(0,n.kt)("h4",{id:"-internal-changes-7"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(npmignore): Reduce npmjs package size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/164c8a5ad0f7241eb8e30c53eccfdff9cec1fb93"},(0,n.kt)("inlineCode",{parentName:"a"},"164c8a5"))),(0,n.kt)("li",{parentName:"ul"},"chore(npmignore): Reduce npmjs package size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ade9d5ba3411efc47cdd3b461fd60b2b7389f9be"},(0,n.kt)("inlineCode",{parentName:"a"},"ade9d5b"))),(0,n.kt)("li",{parentName:"ul"},"chore(docs): renamed logo mdx to md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/52e9d46bb2decabdc935eeee84dacc3e063e3616"},(0,n.kt)("inlineCode",{parentName:"a"},"52e9d46")))),(0,n.kt)("h4",{id:"-documentation-changes-6"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(logos): svgs without classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/28a58336ac57deb3eec7287b6fbf5cd58ada8a7e"},(0,n.kt)("inlineCode",{parentName:"a"},"28a5833"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): add dark mode logos ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ccc1609643cff5f851942ab95198d44252ddb22e"},(0,n.kt)("inlineCode",{parentName:"a"},"ccc1609"))),(0,n.kt)("li",{parentName:"ul"},"docs(logo): update eea logos and add logo wrapper ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91cdd6636dfb102e4712177ad5fa7e952eb6ea45"},(0,n.kt)("inlineCode",{parentName:"a"},"91cdd66"))),(0,n.kt)("li",{parentName:"ul"},"docs(logo): update logos on docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/760e1012892ab28b25e8d9b0de50cfa0ba07addf"},(0,n.kt)("inlineCode",{parentName:"a"},"760e101"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): updated svgs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dc224e1dbcf46a29b0639afde694d44221affe27"},(0,n.kt)("inlineCode",{parentName:"a"},"dc224e1"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): add thematic logos ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5a21a3076e506e6bd7f82fa97697f81825e87255"},(0,n.kt)("inlineCode",{parentName:"a"},"5a21a30"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): add zipped svgs for download ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5855bf83b471a9849ee71370d7eee4f6a1d12a44"},(0,n.kt)("inlineCode",{parentName:"a"},"5855bf8"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): wisef logo update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f90b59d03c1c4eaa760dd981e082f237c09e96f"},(0,n.kt)("inlineCode",{parentName:"a"},"8f90b59"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): move to static, add download ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8c1fd5f9a64bd8fb976687fe5ed96bc515b95393"},(0,n.kt)("inlineCode",{parentName:"a"},"8c1fd5f"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): improve eea logo visibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/82188abb99aa080d7bea15975497e03c653d311c"},(0,n.kt)("inlineCode",{parentName:"a"},"82188ab"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): change eea logo to svg ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f57b846ca9d635f5af4d1adeee280a5adcaf7b5f"},(0,n.kt)("inlineCode",{parentName:"a"},"f57b846")))),(0,n.kt)("h4",{id:"\ufe0f-others-18"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"logo update or docusaurus thematic logo listing #274 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dde90beb68ac129e476ece22e7ced4640786f094"},(0,n.kt)("inlineCode",{parentName:"a"},"dde90be"))),(0,n.kt)("li",{parentName:"ul"},"(feat): Add ability to disable the language select from website top menu - refs #158616 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/411c8e4afaf0b2b9edfdeeecdca22aa4cc41f329"},(0,n.kt)("inlineCode",{parentName:"a"},"411c8e4"))),(0,n.kt)("li",{parentName:"ul"},"Proof reading page header section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/230239e1b22734fb8606656985bc5e513731e244"},(0,n.kt)("inlineCode",{parentName:"a"},"230239e"))),(0,n.kt)("li",{parentName:"ul"},"bump package version ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4628bed134abc76e38a243d4e98143e19cef989"},(0,n.kt)("inlineCode",{parentName:"a"},"b4628be"))),(0,n.kt)("li",{parentName:"ul"},"feature(docusaurus, storybook): logos selection for sites plus inverted options #253 from eea/doc-logo-page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dbfc90d035dc40e9d4054347f00fde4de486d63d"},(0,n.kt)("inlineCode",{parentName:"a"},"dbfc90d"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using advisory-board-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4769e987d525f5dcafac8e6cf8a89fd8111667d"},(0,n.kt)("inlineCode",{parentName:"a"},"c4769e9"))),(0,n.kt)("li",{parentName:"ul"},"test(Jenkins): Run tests and cypress with latest canary @plone/volto ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/92feea09796c9ef0530f65fa1d34139905133215"},(0,n.kt)("inlineCode",{parentName:"a"},"92feea0")))),(0,n.kt)("h3",{id:"100-alpha7---2022-12-16"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.6...1.0.0-alpha.7"},"1.0.0-alpha.7")," - 2022-12-16"),(0,n.kt)("h4",{id:"-new-features-13"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(item): normalized size for image or icon items #258 from eea/refactor-items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/945170f1503be68aa3fc1bd950a97eeebfd81037"},(0,n.kt)("inlineCode",{parentName:"a"},"945170f")))),(0,n.kt)("h4",{id:"-bug-fixes-14"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(card): rounded after removal of has--rounded--true style class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4727afdecf3d25e3e5bc98d472b976d60154183"},(0,n.kt)("inlineCode",{parentName:"a"},"d4727af"))),(0,n.kt)("li",{parentName:"ul"},"fix(item): removed margin set for description which pushed the text from icon ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d9d40310fcfb1bd214bd901b79dcbac41e9a8518"},(0,n.kt)("inlineCode",{parentName:"a"},"d9d4031"))),(0,n.kt)("li",{parentName:"ul"},"fix(project): Proper paths if volto-eea-design-system package is not installed, but in development #270 from eea/correct_paths ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0f8ee8d770f1b26d4315be8f615d58a61acbafc8"},(0,n.kt)("inlineCode",{parentName:"a"},"0f8ee8d")))),(0,n.kt)("h4",{id:"-enhancements-19"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(item): update icon variations and paddings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6a407b3e7f743eb7b73247bcc5d489685d567bc6"},(0,n.kt)("inlineCode",{parentName:"a"},"6a407b3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): update spacing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2fd91c4aa1a76dd2f7099d3f24f94067e95e06a1"},(0,n.kt)("inlineCode",{parentName:"a"},"2fd91c4"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): initial values for new sizes & add description class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3546296f0cacb96411c8c67b98e9763e2b843b05"},(0,n.kt)("inlineCode",{parentName:"a"},"3546296"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): add icon and more size options ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1120bb62d9ab908c5c97a4871a66e3c08c5c7ece"},(0,n.kt)("inlineCode",{parentName:"a"},"1120bb6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): update image and icon sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8025735121aaa0024a5783afbde0f6be3715618"},(0,n.kt)("inlineCode",{parentName:"a"},"b802573"))),(0,n.kt)("li",{parentName:"ul"},"change(item): set same height as width on item images ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/69cbd23ca53dd68ae9f7c00a69ed2d8820746305"},(0,n.kt)("inlineCode",{parentName:"a"},"69cbd23"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): update item part 2 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9812ae2e41ac86cfd4c56e13af8af570b752966f"},(0,n.kt)("inlineCode",{parentName:"a"},"9812ae2"))),(0,n.kt)("li",{parentName:"ul"},"change(item): rename large to big class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24ff1275b9a0556b85ab86757bc0c84f50357e7d"},(0,n.kt)("inlineCode",{parentName:"a"},"24ff127"))),(0,n.kt)("li",{parentName:"ul"},"change(item): added tiny size that outputs 24px icon sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ea96363a957f9033cb5bfe2d7fd311e92377493"},(0,n.kt)("inlineCode",{parentName:"a"},"2ea9636"))),(0,n.kt)("li",{parentName:"ul"},"change(image): added preview image size default to 400px ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a0aa867e932d1b3c0bf449553726d6feb645853e"},(0,n.kt)("inlineCode",{parentName:"a"},"a0aa867"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): update operator for condition controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/149ccb2f1e498c27e5550214cdee25eb808ab27e"},(0,n.kt)("inlineCode",{parentName:"a"},"149ccb2")))),(0,n.kt)("h4",{id:"\ufe0f-others-19"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Proper paths if the package is not installed, but in development ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7a2655f7cf9d3c687f172eefcf2b4cff4b12f832"},(0,n.kt)("inlineCode",{parentName:"a"},"7a2655f"))),(0,n.kt)("li",{parentName:"ul"},"Update .project.eslintrc.js ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a2fd3f23473325976c2b146e066eeb538d140dce"},(0,n.kt)("inlineCode",{parentName:"a"},"a2fd3f2"))),(0,n.kt)("li",{parentName:"ul"},"added back descriptionDistance variable until package release ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3af811a8d86a132e16de118697ba5a4302a8a4da"},(0,n.kt)("inlineCode",{parentName:"a"},"3af811a"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-alpha.7 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e66bcc296b389bc55073e7f99681534977dce3a"},(0,n.kt)("inlineCode",{parentName:"a"},"7e66bcc"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using cca-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce47e9b163bcb4eda988e3a87718b54ffbd3f99f"},(0,n.kt)("inlineCode",{parentName:"a"},"ce47e9b"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb531c933c907bdbb88c9de0f1df2eb7ce899a4c"},(0,n.kt)("inlineCode",{parentName:"a"},"cb531c9")))),(0,n.kt)("h3",{id:"100-alpha6---2022-12-07"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.5...1.0.0-alpha.6"},"1.0.0-alpha.6")," - 2022-12-07"),(0,n.kt)("h4",{id:"-new-features-14"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(copyright): create copyright component and import it in banner ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8fcde9df2915585e2336024436cef76642820d75"},(0,n.kt)("inlineCode",{parentName:"a"},"8fcde9d"))),(0,n.kt)("li",{parentName:"ul"},"feat(Header): add hideSearch prop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/13ddfe59a6bd7fe2050b70ac4524a6f6c5c169ea"},(0,n.kt)("inlineCode",{parentName:"a"},"13ddfe5"))),(0,n.kt)("li",{parentName:"ul"},"feat(Docusaurus): Image copyright information #257 from eea/image-copyright-info ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/21195153240da052acb7171f7904449ed7854cb3"},(0,n.kt)("inlineCode",{parentName:"a"},"2119515")))),(0,n.kt)("h4",{id:"-bug-fixes-15"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(tags): content gap when using tags-content wrapper ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4eb9b89d4ea09f936b7fcdc22a84105fd8639af"},(0,n.kt)("inlineCode",{parentName:"a"},"c4eb9b8")))),(0,n.kt)("h4",{id:"-enhancements-20"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(hero): add copyright component to hero ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0fa88fad3e7b48789dc6d0462b9f78dd359b8949"},(0,n.kt)("inlineCode",{parentName:"a"},"0fa88fa"))),(0,n.kt)("li",{parentName:"ul"},"change(copyright): implementation to add classes on content sections ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e10bde674f2b1f722ec6c70734e4a72c018f4afe"},(0,n.kt)("inlineCode",{parentName:"a"},"e10bde6"))),(0,n.kt)("li",{parentName:"ul"},"change(copyright): removed color variant ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/747b8a27155569247d4975837587e3320327fce9"},(0,n.kt)("inlineCode",{parentName:"a"},"747b8a2"))),(0,n.kt)("li",{parentName:"ul"},"change(copyright): removed copyrightVariant from Banner and Hero stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac62e079d4eafb818f9cae25880a04d9e069d107"},(0,n.kt)("inlineCode",{parentName:"a"},"ac62e07"))),(0,n.kt)("li",{parentName:"ul"},"change(tagList): modified implementation to align to volto-tags-block ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7a57a3d4bf7ede4b5ab5f3ef045d664aaaf67f2c"},(0,n.kt)("inlineCode",{parentName:"a"},"7a57a3d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(copyright): remove data section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/52cb09dc363bb0a2e363ec86dcefb4c57e07a14d"},(0,n.kt)("inlineCode",{parentName:"a"},"52cb09d"))),(0,n.kt)("li",{parentName:"ul"},"change(copyright): line height to match page header implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a56254e7588cfc6aca999f550084d79dca6e9a6c"},(0,n.kt)("inlineCode",{parentName:"a"},"a56254e"))),(0,n.kt)("li",{parentName:"ul"},"change(copyright): now uses text color css variable with fallback to white ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee7268ba359f079dfce45fd0fe91f75ae5c37e94"},(0,n.kt)("inlineCode",{parentName:"a"},"ee7268b")))),(0,n.kt)("h4",{id:"-documentation-changes-7"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(copyright): copyright documentation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a90ed766e60b5eb5b027beb36d2b1967d2c41fa3"},(0,n.kt)("inlineCode",{parentName:"a"},"a90ed76")))),(0,n.kt)("h4",{id:"\ufe0f-others-20"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Update usage_markdown.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f76d4a242f795451d64ef2d192d0006a0ed5eac1"},(0,n.kt)("inlineCode",{parentName:"a"},"f76d4a2"))),(0,n.kt)("li",{parentName:"ul"},"grammar fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb2a5a5fd9dfc01eccc179721b06988742f5b2e2"},(0,n.kt)("inlineCode",{parentName:"a"},"cb2a5a5"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-alpha.6 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6ca32f03c1860781d3c1c4ff9558713ad8acac95"},(0,n.kt)("inlineCode",{parentName:"a"},"6ca32f0"))),(0,n.kt)("li",{parentName:"ul"},"feature(copyright): image information #250 from eea/feature-copyright ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a8618c7f0230a19b6c973aa2c9646463de9eeffb"},(0,n.kt)("inlineCode",{parentName:"a"},"a8618c7"))),(0,n.kt)("li",{parentName:"ul"},"lint fix by introducing local variable tagsGap ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7b6c0ae2ebfed06221700faf9a0d0c2bdeb60d99"},(0,n.kt)("inlineCode",{parentName:"a"},"7b6c0ae"))),(0,n.kt)("li",{parentName:"ul"},"Update 3-images.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1b0ef033f9c8a36aaa739f268263f24a6d0fb473"},(0,n.kt)("inlineCode",{parentName:"a"},"1b0ef03")))),(0,n.kt)("h3",{id:"100-alpha5---2022-11-29"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.4...1.0.0-alpha.5"},"1.0.0-alpha.5")," - 2022-11-29"),(0,n.kt)("h4",{id:"-new-features-15"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(Iconography): import and showcase remix icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/777112f7e77ce8c74c3fd4384bff6ec9694aba04"},(0,n.kt)("inlineCode",{parentName:"a"},"777112f")))),(0,n.kt)("h4",{id:"-bug-fixes-16"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(docusaurus): right bar overflow fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/197c763624f70556c62379bc0751763725d0fed3"},(0,n.kt)("inlineCode",{parentName:"a"},"197c763"))),(0,n.kt)("li",{parentName:"ul"},"fix(lists): bullet position by using padding instead of margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0ecae2e7fe61b98d8795f876a525fbbc873bf799"},(0,n.kt)("inlineCode",{parentName:"a"},"0ecae2e"))),(0,n.kt)("li",{parentName:"ul"},"fix(label): color for yellow variant as white isn't accessible on yellow color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91d8880a829d2728c49a1953f6d2d8c2c812990c"},(0,n.kt)("inlineCode",{parentName:"a"},"91d8880"))),(0,n.kt)("li",{parentName:"ul"},"fix(contentBox): avoid text decoration for header-link added on cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ccb592db6f465cec59124b94fb6918b513bb761"},(0,n.kt)("inlineCode",{parentName:"a"},"3ccb592"))),(0,n.kt)("li",{parentName:"ul"},"fix(label): margin value for ribbon image left and right margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f8e1129734709d6034539a6522105af9d43fef20"},(0,n.kt)("inlineCode",{parentName:"a"},"f8e1129")))),(0,n.kt)("h4",{id:"-enhancements-21"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): eea color palette in separate file ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6c855df9c2238f8d21860ade4578aa969b68448e"},(0,n.kt)("inlineCode",{parentName:"a"},"6c855df"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): classes for color boxes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/80219d52bc63842d8e6382dbbe7d43cdc8a29b9c"},(0,n.kt)("inlineCode",{parentName:"a"},"80219d5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): move supplementary, state and link colors to partials ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2776be32615d7a6bdd8561a523fb9cfb1a85e38b"},(0,n.kt)("inlineCode",{parentName:"a"},"2776be3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): fix side menu / moved more content in palette partial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f5b70775471369ca8f3193784b9bc66caa8fb76f"},(0,n.kt)("inlineCode",{parentName:"a"},"f5b7077"))),(0,n.kt)("li",{parentName:"ul"},"change(tag): set gap on tags element for margin between tag elements ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/726bc6da821a366a5afa03659e614cc73ed02c0b"},(0,n.kt)("inlineCode",{parentName:"a"},"726bc6d")))),(0,n.kt)("h4",{id:"-internal-changes-8"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(colours): fix wrong class name ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51ad0a8232f7f35cae05f5861d7822db852b3f8d"},(0,n.kt)("inlineCode",{parentName:"a"},"51ad0a8")))),(0,n.kt)("h4",{id:"-documentation-changes-8"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): Iconography updates, thematic platforms ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2a0e596bd002290e0759d8c5e568da4d318f7d59"},(0,n.kt)("inlineCode",{parentName:"a"},"2a0e596"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): thematic pages integration ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea7a4220a93d3fd2f437b51462f7f19d99f52595"},(0,n.kt)("inlineCode",{parentName:"a"},"ea7a422"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): color updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cc13b5499a9ae13bb45925a057f8ff4d6a2e4643"},(0,n.kt)("inlineCode",{parentName:"a"},"cc13b54"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): fix swatches accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/306cb74d3e06390a9c15da9b8b29c9d3c8f0f6c5"},(0,n.kt)("inlineCode",{parentName:"a"},"306cb74"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): typography and colors fixes according to comments on PR ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ae20a7258cc88465fa0937895c2999952736f456"},(0,n.kt)("inlineCode",{parentName:"a"},"ae20a72"))),(0,n.kt)("li",{parentName:"ul"},"docs(colours): adjust logos heights ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/854d4fb761be7307e83e5dd2eb0fe5a0117727c5"},(0,n.kt)("inlineCode",{parentName:"a"},"854d4fb"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): merge designer and dev units ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/65c240eddbf20b3fc870d301b96837f49ad9caca"},(0,n.kt)("inlineCode",{parentName:"a"},"65c240e"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): readded extra font sizes, fixed fluid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4a5d892538a9713d14ac718b1bf2c771be09810"},(0,n.kt)("inlineCode",{parentName:"a"},"a4a5d89"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): changed em to percentages ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4176007ff4b421bc988b618488e0ba6b550f9fe"},(0,n.kt)("inlineCode",{parentName:"a"},"d417600"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): minors updates and instructions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/84ac8828e430b4af2b461534b4e2f81189080145"},(0,n.kt)("inlineCode",{parentName:"a"},"84ac882"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): blue-grey-6 adjustment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e7ab2d15d3a617bc5b3713897f3e3521d9e2720a"},(0,n.kt)("inlineCode",{parentName:"a"},"e7ab2d1"))),(0,n.kt)("li",{parentName:"ul"},"docs(colours): added active colour ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/574f7a95ea8a9510d03a104ad72fafafcae5d738"},(0,n.kt)("inlineCode",{parentName:"a"},"574f7a9"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): switch FISE logo to png ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/335471fd95bbd78cd7bd80b960272baa0a32e1c5"},(0,n.kt)("inlineCode",{parentName:"a"},"335471f"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): updated visited ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0248fd164cbf85168945797244977c305c67608d"},(0,n.kt)("inlineCode",{parentName:"a"},"0248fd1"))),(0,n.kt)("li",{parentName:"ul"},"docs(FISE): replaced logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f7d833127f769d79f099618b98789c6929b4ba08"},(0,n.kt)("inlineCode",{parentName:"a"},"f7d8331")))),(0,n.kt)("h4",{id:"\ufe0f-others-21"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"perf(docusaurus): added remixicon and roboto locally ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b67b1a72bc9cdc7c62a25967e81b430f8b62d558"},(0,n.kt)("inlineCode",{parentName:"a"},"b67b1a7"))),(0,n.kt)("li",{parentName:"ul"},"feature(Docusaurus): Updates on color palette information including thematic websites #231 from eea/refactor-docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ec7843dea07f626dc1c71ae1baa8bb5b0caa52f3"},(0,n.kt)("inlineCode",{parentName:"a"},"ec7843d"))),(0,n.kt)("li",{parentName:"ul"},"Upgrade Jenkinsfile storybook to yarn 3 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d20de8d6e21a14660b7b5125a80218a8a6f19e62"},(0,n.kt)("inlineCode",{parentName:"a"},"d20de8d"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/563fbc5fac0d4b0295690d0a3a4e04271753f18a"},(0,n.kt)("inlineCode",{parentName:"a"},"563fbc5")))),(0,n.kt)("h3",{id:"100-alpha4---2022-11-22"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.3...1.0.0-alpha.4"},"1.0.0-alpha.4")," - 2022-11-22"),(0,n.kt)("h4",{id:"-bug-fixes-17"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(cards-storybook): load slick carousel css for arrow and pagination styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1159b1beea0d7f7e026f1f1181fea91b7ac38ffa"},(0,n.kt)("inlineCode",{parentName:"a"},"1159b1b")))),(0,n.kt)("h4",{id:"-enhancements-22"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(cards): refactor cards theming implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4e454238d540ef306f4c1a4f8e9a94c7aa10189"},(0,n.kt)("inlineCode",{parentName:"a"},"d4e4542"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): allow rounded, inverted and theme parameter to be set by has classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4b4ad893fc5d39629b4e8d874327f31ea2e7d885"},(0,n.kt)("inlineCode",{parentName:"a"},"4b4ad89"))),(0,n.kt)("li",{parentName:"ul"},"change(card): expect has classes on the card directly ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6a9e38bcae0656685a99b47800d556813663d2ee"},(0,n.kt)("inlineCode",{parentName:"a"},"6a9e38b"))),(0,n.kt)("li",{parentName:"ul"},"change(utilities): added has text classes to the text alignment utilities ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e6974c634551fe0d19a9c9da269f5c6fbaefab7a"},(0,n.kt)("inlineCode",{parentName:"a"},"e6974c6"))),(0,n.kt)("li",{parentName:"ul"},"change(utilities): modified class name for text align using has naming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/579a0cbe0f704eb9305119fdd162f4f29c8086d5"},(0,n.kt)("inlineCode",{parentName:"a"},"579a0cb"))),(0,n.kt)("li",{parentName:"ul"},"change(theme): ensure that only direct children of container have a default top and bottom margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7f8b8dcc72827004d366e1c531311cf8734053fc"},(0,n.kt)("inlineCode",{parentName:"a"},"7f8b8dc"))),(0,n.kt)("li",{parentName:"ul"},"change(build): upgrade action to trigger workflow and wait to latest version ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c63ad3fdae7972bb2c722dea3d046861fa0ac086"},(0,n.kt)("inlineCode",{parentName:"a"},"c63ad3f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): theming implementation to allow has theming classes #265 from eea/card-refactoring ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24edc99d85c0c619fc763a8774a96f7208f529a5"},(0,n.kt)("inlineCode",{parentName:"a"},"24edc99"))),(0,n.kt)("li",{parentName:"ul"},"change(theme): add slick-carousel dependency ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2eec7d7233adf86b9c4f61670eb87d9754ff94c"},(0,n.kt)("inlineCode",{parentName:"a"},"f2eec7d")))),(0,n.kt)("h4",{id:"\ufe0f-others-22"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Update eea.github.io on all commits in develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3d0b8d745138bd2e0219560c8c895ce2c56dbf04"},(0,n.kt)("inlineCode",{parentName:"a"},"3d0b8d7"))),(0,n.kt)("li",{parentName:"ul"},"Exclude mockups from npm package ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/634af8e3ddabec36a18597d8d7638888269875fc"},(0,n.kt)("inlineCode",{parentName:"a"},"634af8e"))),(0,n.kt)("li",{parentName:"ul"},"fix rounded selector ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1fa15442f03d3f3d9ef59afa14075b061483cf3a"},(0,n.kt)("inlineCode",{parentName:"a"},"1fa1544"))),(0,n.kt)("li",{parentName:"ul"},"Trigger re-build ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3566dd2b4d2cd12496e05b792c85a78de550dd50"},(0,n.kt)("inlineCode",{parentName:"a"},"3566dd2"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea47f6f10097f23f635d98f0c5483bebf8378fc4"},(0,n.kt)("inlineCode",{parentName:"a"},"ea47f6f")))),(0,n.kt)("h3",{id:"100-alpha3---2022-11-16"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.2...1.0.0-alpha.3"},"1.0.0-alpha.3")," - 2022-11-16"),(0,n.kt)("h4",{id:"-new-features-16"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(Header): Add subsite section styling #263 from eea/subsite ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/00398b8a6c5d83241c30d0ba85d95c115edf2480"},(0,n.kt)("inlineCode",{parentName:"a"},"00398b8")))),(0,n.kt)("h4",{id:"-bug-fixes-18"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(search): position now changed by default to absolute from relative ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51b08fc217e25c1391a2bac0b42a8c3f7ae091c7"},(0,n.kt)("inlineCode",{parentName:"a"},"51b08fc"))),(0,n.kt)("li",{parentName:"ul"},"fix(megaMenu): remove paddings for buttons added by active class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ec33ebfe23a6064c88383ab465bd45edee2dba9b"},(0,n.kt)("inlineCode",{parentName:"a"},"ec33ebf")))),(0,n.kt)("h4",{id:"-enhancements-23"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(components): load overrides files for our defined semantic files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/adde7a9519f38fa779d8d038f3b6817281f0b4a2"},(0,n.kt)("inlineCode",{parentName:"a"},"adde7a9"))),(0,n.kt)("li",{parentName:"ul"},"change(container): fullwidth now take into account devices without hover ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5a35a65ce4928972027325bd01265db3f046f0e8"},(0,n.kt)("inlineCode",{parentName:"a"},"5a35a65"))),(0,n.kt)("li",{parentName:"ul"},"change(container): ensure only the top level elements behave like containers ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/98b85d1fb285919a8851454fa3007131b2a0ffc3"},(0,n.kt)("inlineCode",{parentName:"a"},"98b85d1"))),(0,n.kt)("li",{parentName:"ul"},"change(container): modified column-block grid to remove margin and padding when using full width class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/35c1cee7b3b35e7c361562ab7a430240f0117cc3"},(0,n.kt)("inlineCode",{parentName:"a"},"35c1cee"))),(0,n.kt)("li",{parentName:"ul"},"change(mega-menu): hide home link and accordion content from mobile menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1a691729b6d61c0daf46c5de035c1c55b0fda0d9"},(0,n.kt)("inlineCode",{parentName:"a"},"1a69172"))),(0,n.kt)("li",{parentName:"ul"},"change(container): width from min width 1280px to 1365px max width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/66e551e532da2cc5e9716e5179f943f172663be4"},(0,n.kt)("inlineCode",{parentName:"a"},"66e551e"))),(0,n.kt)("li",{parentName:"ul"},"change(container): removed app extras and view setting of layout sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6dc1ee602634df85140f6db75e41293b72eacf1"},(0,n.kt)("inlineCode",{parentName:"a"},"f6dc1ee"))),(0,n.kt)("li",{parentName:"ul"},"change(views): customized DefaultView to pass class into page-document area ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91123aad429f4bb086110b4997e43e9809a97581"},(0,n.kt)("inlineCode",{parentName:"a"},"91123aa"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): desktop - use buttons for menu section titles and readjust content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb9315f2b999193b7b64cec27c49fc8dda306899"},(0,n.kt)("inlineCode",{parentName:"a"},"cb9315f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): add nav_title and nav_description attributes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0d7a5686daab2ecec87d78728437d8f994606448"},(0,n.kt)("inlineCode",{parentName:"a"},"0d7a568"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): style sub-title and nav-description ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b2a48fd3588ffdc75f61f0b8d52284d13edf2d92"},(0,n.kt)("inlineCode",{parentName:"a"},"b2a48fd"))),(0,n.kt)("li",{parentName:"ul"},"refactor(sidemenu): add third level list and items & update active indication ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2d87da9fddca2b867f3d065a007c0b921587a61"},(0,n.kt)("inlineCode",{parentName:"a"},"e2d87da"))),(0,n.kt)("li",{parentName:"ul"},"change(columns): implement narrow, container and wide width classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9696b5457e50ba3186406a584da16f5248c14439"},(0,n.kt)("inlineCode",{parentName:"a"},"9696b54"))),(0,n.kt)("li",{parentName:"ul"},"change(container): story to add classes that modify the max width of the containers ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/37948f89ee797738bd8bbb0023bc5dca018d7331"},(0,n.kt)("inlineCode",{parentName:"a"},"37948f8"))),(0,n.kt)("li",{parentName:"ul"},"change(container): affect only left and right margin of containers ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/183265b7dd8d20359b6c3956ea05b62df6e70f75"},(0,n.kt)("inlineCode",{parentName:"a"},"183265b"))),(0,n.kt)("li",{parentName:"ul"},"change(containers): modified class names after layout checks ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1dc3689509001031f0afd30422f517de5316e47a"},(0,n.kt)("inlineCode",{parentName:"a"},"1dc3689"))),(0,n.kt)("li",{parentName:"ul"},"refactor(sidemenu): add is_in_path and is_current attributes for an active example ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a3fe7fd8da93db0a065d4408ce154c9d8c26b568"},(0,n.kt)("inlineCode",{parentName:"a"},"a3fe7fd"))),(0,n.kt)("li",{parentName:"ul"},"change(container): story to avoid adding containerwidth property to container div ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c13d83cdbc8741bf4075cdfcd884f39f3f71d73c"},(0,n.kt)("inlineCode",{parentName:"a"},"c13d83c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): mobile - use buttons for menu section titles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7b632fd29a8ac815d2e590509baa51f1279e659"},(0,n.kt)("inlineCode",{parentName:"a"},"a7b632f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): update padding variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5f25838ba9ec367a58c98c929921ebf09cd8ad8"},(0,n.kt)("inlineCode",{parentName:"a"},"c5f2583"))),(0,n.kt)("li",{parentName:"ul"},"change(views): moved narrow style bellow the default container width styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/72fa58dce9ea03a1e4f409a9f9aab21b01efbfc8"},(0,n.kt)("inlineCode",{parentName:"a"},"72fa58d"))),(0,n.kt)("li",{parentName:"ul"},"change(listing): removed container from default view page-document area ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/69f3d8f422e3cb95e89937929aaef48b5569bcdf"},(0,n.kt)("inlineCode",{parentName:"a"},"69f3d8f"))),(0,n.kt)("li",{parentName:"ul"},"change(views): rename classes names to width_view and added app extras layout component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/745b7720839754d1e248795cb1263f8c02f5f3c2"},(0,n.kt)("inlineCode",{parentName:"a"},"745b772"))),(0,n.kt)("li",{parentName:"ul"},"change(container): use important flag for left and right margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a49c83abe9a045d28118a680558de5416a0516a3"},(0,n.kt)("inlineCode",{parentName:"a"},"a49c83a"))),(0,n.kt)("li",{parentName:"ul"},"change(container): add variables for edit and add section of containers ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2e2c335dc82c120d15d4c536c400ae742f68fe7"},(0,n.kt)("inlineCode",{parentName:"a"},"f2e2c33"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): update sub-title paddings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/992f919bb5155c8e6fc169e43adf00dcae41f400"},(0,n.kt)("inlineCode",{parentName:"a"},"992f919"))),(0,n.kt)("li",{parentName:"ul"},"change(site): add a 1rem margin top and bottom on all styled classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dabf6c1162fe23cef61a2053eefd7e687f649a56"},(0,n.kt)("inlineCode",{parentName:"a"},"dabf6c1"))),(0,n.kt)("li",{parentName:"ul"},"change(homepage): removed hiding of staging banner from homepage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ba2cd7fc17cdf1bf58381aa58e05acad0ac77ba"},(0,n.kt)("inlineCode",{parentName:"a"},"4ba2cd7"))),(0,n.kt)("li",{parentName:"ul"},"change(container): unset values of page-document on 1200+ browser width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dd5bea37d414e2a8689eaf6cc99c7b3a3d4b0e08"},(0,n.kt)("inlineCode",{parentName:"a"},"dd5bea3"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): set children to be appended to the right of the menu title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b69c23a20ef2ded1f0382650ff8e85d1bead6941"},(0,n.kt)("inlineCode",{parentName:"a"},"b69c23a"))),(0,n.kt)("li",{parentName:"ul"},"change(theme): modified wide width to point to 1320px as it's perfectly divisible by 4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f825737d6dafd595024bb4537eab624a47a9ad0"},(0,n.kt)("inlineCode",{parentName:"a"},"8f82573"))),(0,n.kt)("li",{parentName:"ul"},"change(theme): modified wide width to point to 1368px as it's perfectly divisible by 4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2349fee36ee72783665a0b101d684389f1fdf834"},(0,n.kt)("inlineCode",{parentName:"a"},"2349fee"))),(0,n.kt)("li",{parentName:"ul"},"change(container): renamed content-text-width to container-text-width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6f788c282348292dd4b5deb47ffe83ca4573e5c8"},(0,n.kt)("inlineCode",{parentName:"a"},"6f788c2"))),(0,n.kt)("li",{parentName:"ul"},"change(listing): provide ui container fallback if no class is passed to default view ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af9e94ded1e301f4c811749badbcc1f59e6d0de5"},(0,n.kt)("inlineCode",{parentName:"a"},"af9e94d"))),(0,n.kt)("li",{parentName:"ul"},"change(narrow-view): re-added container class to page-document ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/56b44a6e09d45f96c106dc471bb2e1cde58ef10f"},(0,n.kt)("inlineCode",{parentName:"a"},"56b44a6"))),(0,n.kt)("li",{parentName:"ul"},"change(view): set container width for view-viewview class as well ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/29dc324319d6dc2450dd0e906c1b4c93fd65ed56"},(0,n.kt)("inlineCode",{parentName:"a"},"29dc324")))),(0,n.kt)("h4",{id:"-internal-changes-9"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style: load header/footer overrides ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e5b5e0fc00c61d81f45c12f119bd2f06a91b1b5c"},(0,n.kt)("inlineCode",{parentName:"a"},"e5b5e0f"))),(0,n.kt)("li",{parentName:"ul"},"style(megaMenu): restore item description color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8a19bbb4866cdeb31d87b782587c499e621055b7"},(0,n.kt)("inlineCode",{parentName:"a"},"8a19bbb"))),(0,n.kt)("li",{parentName:"ul"},"style(megaMenu): restore accordion content bottom padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8e0c5a79f06247d353511b412b0122c6f614f5ec"},(0,n.kt)("inlineCode",{parentName:"a"},"8e0c5a7")))),(0,n.kt)("h4",{id:"\ufe0f-others-23"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Add subsite styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e79c0ed7931d6287dbeb3bab1e9155b8707481a3"},(0,n.kt)("inlineCode",{parentName:"a"},"e79c0ed"))),(0,n.kt)("li",{parentName:"ul"},"WIP settings column grid width when using full size class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/affc7ac99527aa92d5a192d90dc8c9ec46a66404"},(0,n.kt)("inlineCode",{parentName:"a"},"affc7ac"))),(0,n.kt)("li",{parentName:"ul"},"code cleanup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2cdc3e590b6d36865f16890c45ce56d32963e1d0"},(0,n.kt)("inlineCode",{parentName:"a"},"2cdc3e5"))),(0,n.kt)("li",{parentName:"ul"},"fix eslint ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/30c52e4eb443555ca44c1b35df064e73d52c0a8b"},(0,n.kt)("inlineCode",{parentName:"a"},"30c52e4"))),(0,n.kt)("li",{parentName:"ul"},"test(estlint): Fix .project.eslintrc.js ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aaeaa07b27491551daba29bbfdd7cab4a54b6bec"},(0,n.kt)("inlineCode",{parentName:"a"},"aaeaa07"))),(0,n.kt)("li",{parentName:"ul"},"modified left value of full width classes with toolbars ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70d82d47fbc2c00a3a709de0d5c087c8443a1eae"},(0,n.kt)("inlineCode",{parentName:"a"},"70d82d4"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-alpha.3 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8fc86a7d0bf4ad06ab339b3066ff56ea61d48878"},(0,n.kt)("inlineCode",{parentName:"a"},"8fc86a7"))),(0,n.kt)("li",{parentName:"ul"},"feature(content): added NarrowView useful for modifying the containers from content-area ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d937df7c262e8d8cc6e78eebec736e28263fc657"},(0,n.kt)("inlineCode",{parentName:"a"},"d937df7"))),(0,n.kt)("li",{parentName:"ul"},"jslint fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/98461593605344d0b6d8cba81f91d1cafc2653cd"},(0,n.kt)("inlineCode",{parentName:"a"},"9846159"))),(0,n.kt)("li",{parentName:"ul"},"Feature(container): flexible container size #260 from eea/feature-flexible-container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f84c5b67afe9cbe01b2a44a8f92a9a554e1036a"},(0,n.kt)("inlineCode",{parentName:"a"},"8f84c5b"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using circularity-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/76a41c786995fd54afe4d1c345de939f683ffa70"},(0,n.kt)("inlineCode",{parentName:"a"},"76a41c7"))),(0,n.kt)("li",{parentName:"ul"},"fix broken variable call for contentBox.variables introduced in previous commit by mistake ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d249c1160d19bedb174a2fde3fdab48d9ce297d4"},(0,n.kt)("inlineCode",{parentName:"a"},"d249c11"))),(0,n.kt)("li",{parentName:"ul"},"clean up ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/89f3cb33d70a14806a953f0acd1807e94169ee5c"},(0,n.kt)("inlineCode",{parentName:"a"},"89f3cb3"))),(0,n.kt)("li",{parentName:"ul"},"removed console log from code ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fad86ae581dd81d0c29fc03d8528e57cadadd3fb"},(0,n.kt)("inlineCode",{parentName:"a"},"fad86ae")))),(0,n.kt)("h3",{id:"100-alpha2---2022-10-28"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.1...1.0.0-alpha.2"},"1.0.0-alpha.2")," - 2022-10-28"),(0,n.kt)("h4",{id:"-enhancements-24"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(documentation): grammarly proof-read suggestions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f609be3758673b0d479d99baee69e7238a5b7f9"},(0,n.kt)("inlineCode",{parentName:"a"},"9f609be"))),(0,n.kt)("li",{parentName:"ul"},"refactor(volto-slate): Upgrade to @plone/volto-slate - refs #153447 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/853d9d189dd17859e3999fbf53507df7083eefb4"},(0,n.kt)("inlineCode",{parentName:"a"},"853d9d1")))),(0,n.kt)("h4",{id:"-internal-changes-10"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(docs): Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e33113a0541d082d93f61c7494bcce2ac5f79a8c"},(0,n.kt)("inlineCode",{parentName:"a"},"e33113a")))),(0,n.kt)("h4",{id:"\ufe0f-others-24"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"test(cypress): Upgrade to Cypress 10 / Razzle 4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c1c1f4b280945a9f0b77eb0b59de003c1360bac9"},(0,n.kt)("inlineCode",{parentName:"a"},"c1c1f4b"))),(0,n.kt)("li",{parentName:"ul"},"more explanations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a8b22728659125ba6ea6fb41f29571a8f1b9953b"},(0,n.kt)("inlineCode",{parentName:"a"},"a8b2272"))),(0,n.kt)("li",{parentName:"ul"},"add announcement bar, showing that EEA DS is WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e14aeac02cf922493aff4f83c8d80af95cc63eb9"},(0,n.kt)("inlineCode",{parentName:"a"},"e14aeac"))),(0,n.kt)("li",{parentName:"ul"},"Update dependencies ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee30a2bad3769163d3ab4d996c0a7be8fcb4bc6e"},(0,n.kt)("inlineCode",{parentName:"a"},"ee30a2b")))),(0,n.kt)("h3",{id:"100-alpha1---2022-10-20"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.6...1.0.0-alpha.1"},"1.0.0-alpha.1")," - 2022-10-20"),(0,n.kt)("h4",{id:"-enhancements-25"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update svg and tablet contact link sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6aba061a5d37e84da706e94a2ce1140ffca81d43"},(0,n.kt)("inlineCode",{parentName:"a"},"6aba061"))),(0,n.kt)("li",{parentName:"ul"},"change(blockquote): renamed to Callout reflecting the correct naming from Storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/61a518c84f08b03d29b99aafce3d9108ae56b3a7"},(0,n.kt)("inlineCode",{parentName:"a"},"61a518c"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): Shadow removed from logo & tablet updates #252 from eea/fix-footer ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6df783d6571cb1b477202bf1d503763d98db66bf"},(0,n.kt)("inlineCode",{parentName:"a"},"6df783d"))),(0,n.kt)("li",{parentName:"ul"},"change(colors): updated theme classes for text to use css variable colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb089fd9a40b67430e0d4efaa2cb51902a46de4f"},(0,n.kt)("inlineCode",{parentName:"a"},"cb089fd")))),(0,n.kt)("h4",{id:"-internal-changes-11"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(footer): reduce social icons margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6a9cf7a6da4a46d9b85a63fbdfc8d421ae4c0d8"},(0,n.kt)("inlineCode",{parentName:"a"},"f6a9cf7")))),(0,n.kt)("h4",{id:"-documentation-changes-9"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(alpha): Update included components in 1.0 alpha version - refs #154387 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fcc5af9bb9163d158ccd6ce452d7f80ac26f7ac0"},(0,n.kt)("inlineCode",{parentName:"a"},"fcc5af9"))),(0,n.kt)("li",{parentName:"ul"},"docs(callout): Rename Blockqoute to Callout in docusaurus - refs #154387 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8d733ac7b00273581575ceddd1a4480ba67fa498"},(0,n.kt)("inlineCode",{parentName:"a"},"8d733ac")))),(0,n.kt)("h4",{id:"\ufe0f-others-25"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-alpha.1 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70e4d97c6a2b13f3b98efe1e2ba93174be2df476"},(0,n.kt)("inlineCode",{parentName:"a"},"70e4d97")))),(0,n.kt)("h3",{id:"096---2022-12-16"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.5...0.9.6"},"0.9.6")," - 2022-12-16"),(0,n.kt)("h4",{id:"\ufe0f-others-26"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Release 0.9.6 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ae19b837678ef5a6a26ebe7c69577e446b13ed50"},(0,n.kt)("inlineCode",{parentName:"a"},"ae19b83"))),(0,n.kt)("li",{parentName:"ul"},"feature(copyright): image information #250 from eea/feature-copyright ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7b323ed27e15f9b4265618099089526c97aa89a1"},(0,n.kt)("inlineCode",{parentName:"a"},"7b323ed"))),(0,n.kt)("li",{parentName:"ul"},"Release-it ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f5671de5a36a721f86a2f8ae4077fd2e0ffafb5"},(0,n.kt)("inlineCode",{parentName:"a"},"1f5671d")))),(0,n.kt)("h3",{id:"095---2022-10-20"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.4...0.9.5"},"0.9.5")," - 2022-10-20"),(0,n.kt)("h4",{id:"-bug-fixes-19"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(statistic): margin and slate colors when using the inverted options ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f263dea1940594ad00b3548c8640ca378fee5563"},(0,n.kt)("inlineCode",{parentName:"a"},"f263dea")))),(0,n.kt)("h3",{id:"094---2022-10-19"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.3...0.9.4"},"0.9.4")," - 2022-10-19"),(0,n.kt)("h4",{id:"-bug-fixes-20"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(edit-interface): block chooser and power user menu item colors when inside content-box ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7aee4f1619a0d798b5fd8d90844a780c25aca019"},(0,n.kt)("inlineCode",{parentName:"a"},"7aee4f1"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): hero text going over the logo and menu on mobile resolutions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1434508f5995d4316dfb2fd18fdc7926a4ece6ee"},(0,n.kt)("inlineCode",{parentName:"a"},"1434508"))),(0,n.kt)("li",{parentName:"ul"},"fix(content-box): z-index of box-inner and added underline to slate links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c8b7c7e41df39e1bf6377401a7aad4220287d454"},(0,n.kt)("inlineCode",{parentName:"a"},"c8b7c7e"))),(0,n.kt)("li",{parentName:"ul"},"fix(content-box): adding of underline to links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c2f5f0f45963e48342edb0046d84b945ffe4b6a8"},(0,n.kt)("inlineCode",{parentName:"a"},"c2f5f0f")))),(0,n.kt)("h4",{id:"-enhancements-26"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(banner,colors): content box theme aware colors banner changes#254 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bcb9a8cde0cb0f927a68c0872e590e5ab853f824"},(0,n.kt)("inlineCode",{parentName:"a"},"bcb9a8c"))),(0,n.kt)("li",{parentName:"ul"},"change(Banner): Add subtitle subcomponent ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bb67f4c83a2ff0e17958116fc4a52a426ba64a70"},(0,n.kt)("inlineCode",{parentName:"a"},"bb67f4c"))),(0,n.kt)("li",{parentName:"ul"},"change(item): moved svg filter definitions to item.overrides ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/de703661065648968903bb6b46efc13d19c51d2b"},(0,n.kt)("inlineCode",{parentName:"a"},"de70366"))),(0,n.kt)("li",{parentName:"ul"},"change(accordion): accordion titles with themes colors can now be modified by css variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2ac13ea56a74b2f7a22abc274bc94c770fbe3a2"},(0,n.kt)("inlineCode",{parentName:"a"},"e2ac13e"))),(0,n.kt)("li",{parentName:"ul"},"change(colors): in lists and callouts to allow color changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/940d1b8ed815b1a38f78d7602f0b221b48fe21f9"},(0,n.kt)("inlineCode",{parentName:"a"},"940d1b8"))),(0,n.kt)("li",{parentName:"ul"},"change(colors): added backgroundColorSupplementary color variable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f5262af2b90d2ffd9dd5560232f3bf47bcc85e3"},(0,n.kt)("inlineCode",{parentName:"a"},"1f5262a"))),(0,n.kt)("li",{parentName:"ul"},"change(list,bullet): color is no longer primary instead it's text color css variant ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8c046704871c7202406ff71b280a8a34e195e54d"},(0,n.kt)("inlineCode",{parentName:"a"},"8c04670"))),(0,n.kt)("li",{parentName:"ul"},"change(statistics): use theme colors with css variable for easy color customization ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fb72a012e81eba73fbace58317a52b5cdda31ee5"},(0,n.kt)("inlineCode",{parentName:"a"},"fb72a01"))),(0,n.kt)("li",{parentName:"ul"},"change(Banner): Show label in metadata field ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1acda3c53739b610b501a53baf10226769929d2d"},(0,n.kt)("inlineCode",{parentName:"a"},"1acda3c"))),(0,n.kt)("li",{parentName:"ul"},"change(tags, items): use text color with css variable for content color for easy customization ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6660e2e49c6e732a13283ad7c922c5a5091bffc1"},(0,n.kt)("inlineCode",{parentName:"a"},"6660e2e"))),(0,n.kt)("li",{parentName:"ul"},"change(styling): modified naming of theme css variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a332961e1c4d55cdee3a8bcdf652f53cf03e251b"},(0,n.kt)("inlineCode",{parentName:"a"},"a332961"))),(0,n.kt)("li",{parentName:"ul"},"change(colors): added backgroundColor color variable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b7e68311f77a724c49a3cf858a76239ca5f6876c"},(0,n.kt)("inlineCode",{parentName:"a"},"b7e6831"))),(0,n.kt)("li",{parentName:"ul"},"change(quote): use secondary css var for easier color replacement ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7a3231228c2eb9b420cc7b59a4a07fba96643e5e"},(0,n.kt)("inlineCode",{parentName:"a"},"7a32312"))),(0,n.kt)("li",{parentName:"ul"},"change(statistics): tweaked margin of statistics so that they don't overflow over context boxes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4a8e33dfaa716f38ac9ce5448d400c74ef9ba62"},(0,n.kt)("inlineCode",{parentName:"a"},"b4a8e33"))),(0,n.kt)("li",{parentName:"ul"},"change(accordion): allow customization of accordion title background color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6590baf1716867eabe897e765ae1924122ba2333"},(0,n.kt)("inlineCode",{parentName:"a"},"6590baf"))),(0,n.kt)("li",{parentName:"ul"},"change(colors): introduced css variables for primary colors #247 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac8082590f978ab953ece70082e06b124c292ddf"},(0,n.kt)("inlineCode",{parentName:"a"},"ac80825"))),(0,n.kt)("li",{parentName:"ul"},"change(content-box): override primary text color to white as well ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/28b43c72b9fcfeb153ac7e734bbbca67f2e42111"},(0,n.kt)("inlineCode",{parentName:"a"},"28b43c7")))),(0,n.kt)("h4",{id:"\ufe0f-others-27"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Include changes in the storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4d9fa4c631a6a1ec0d7d525721fd32c5ff01d9c"},(0,n.kt)("inlineCode",{parentName:"a"},"a4d9fa4")))),(0,n.kt)("h3",{id:"093---2022-10-04"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.2...0.9.3"},"0.9.3")," - 2022-10-04"),(0,n.kt)("h4",{id:"-bug-fixes-21"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(card, contentBox): meta font size, removed header override of cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7f94b9ca8c65a887ced5c4812563a2226fca869"},(0,n.kt)("inlineCode",{parentName:"a"},"a7f94b9"))),(0,n.kt)("li",{parentName:"ul"},"fix(List): Ordered list item story - refs #155248 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c70a2bceecf4ce9497cbe0e9cdb30944fff2287d"},(0,n.kt)("inlineCode",{parentName:"a"},"c70a2bc"))),(0,n.kt)("li",{parentName:"ul"},"fix(OrderedList): li third level margin left - refs #155248 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fba5cb9d3897d2827951cd218405b1ae7c8e818a"},(0,n.kt)("inlineCode",{parentName:"a"},"fba5cb9"))),(0,n.kt)("li",{parentName:"ul"},"fix(cards): inherit color of card description ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ceda79971663785c81292b85ae07b7f9f922213c"},(0,n.kt)("inlineCode",{parentName:"a"},"ceda799"))),(0,n.kt)("li",{parentName:"ul"},"fix(accordion): Fix content default padding - refs #153783 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/566adf7a53c48fb24044eeba1d159d5ce715ecc6"},(0,n.kt)("inlineCode",{parentName:"a"},"566adf7")))),(0,n.kt)("h4",{id:"-enhancements-27"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(site): committed fixed from custom into eea design package ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9b9a1fd3648796a502ca4eb3abd08b61b33bdff2"},(0,n.kt)("inlineCode",{parentName:"a"},"9b9a1fd"))),(0,n.kt)("li",{parentName:"ul"},"change(jenkins): added yarn policy for storybook building ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3d1b844efeea40b99c00c9aa97089e0a0be58a57"},(0,n.kt)("inlineCode",{parentName:"a"},"3d1b844"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): typography updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/60a93a4aece4e478ae13c2dfe697fd3703aa178a"},(0,n.kt)("inlineCode",{parentName:"a"},"60a93a4"))),(0,n.kt)("li",{parentName:"ul"},"change(item): added item image coloring when applying theming classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0403fe4974f37a46ec7418d9b8492ad74d7c5688"},(0,n.kt)("inlineCode",{parentName:"a"},"0403fe4"))),(0,n.kt)("li",{parentName:"ul"},"change(accordion, site): change text color to tertiary instead of black ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/464105842508a62216aa0a3f28e9565af1b93232"},(0,n.kt)("inlineCode",{parentName:"a"},"4641058"))),(0,n.kt)("li",{parentName:"ul"},"change(accordion): allow customization of accordion title with css variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/15e7d27f02c640df582f51a51ef36e645723f842"},(0,n.kt)("inlineCode",{parentName:"a"},"15e7d27"))),(0,n.kt)("li",{parentName:"ul"},"change(content-box): added css variables that will set text color and background for children ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/86cac531cc94386b6022e1be80dba826b39f2443"},(0,n.kt)("inlineCode",{parentName:"a"},"86cac53"))),(0,n.kt)("li",{parentName:"ul"},"change(tabs): allow customization of tab active and hover color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4370f4270dcaa29b1193fc2347567b748f6d5d82"},(0,n.kt)("inlineCode",{parentName:"a"},"4370f42"))),(0,n.kt)("li",{parentName:"ul"},"change(tabs): color for tabs-block section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6778c923618e725194120d7f35e2ee7d66e1be8e"},(0,n.kt)("inlineCode",{parentName:"a"},"6778c92"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): by default date is set to appear on the right of the meta section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b7b80e86b69a0179f1e48748bef909bbd2a98d58"},(0,n.kt)("inlineCode",{parentName:"a"},"b7b80e8"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): carousel dots are now relative positioned ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/daa40a4ab6532497830d5f7536bf0a7f20d9cd00"},(0,n.kt)("inlineCode",{parentName:"a"},"daa40a4")))),(0,n.kt)("h4",{id:"-documentation-changes-10"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(typography): update, local fonts ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/39a32d9aa4dec21c0e7df32aa5798432fc6bd403"},(0,n.kt)("inlineCode",{parentName:"a"},"39a32d9"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): token fix to match used values for heightheight and letterspacing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91693ecd2dd367cd83fa2752756557d463e214a7"},(0,n.kt)("inlineCode",{parentName:"a"},"91693ec"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): token fix to match used values for lineheight ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff41b56b4365a3e70ac20e548c7c74671e7c584c"},(0,n.kt)("inlineCode",{parentName:"a"},"ff41b56"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): remove semibold ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6eb3e0856f01aacf6d294f68e7d845f74f752685"},(0,n.kt)("inlineCode",{parentName:"a"},"6eb3e08")))),(0,n.kt)("h4",{id:"\ufe0f-others-28"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"test(cypress): Fix md5 dependency ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/17f618e7c5eef01759494e787a8c9cb96449fbca"},(0,n.kt)("inlineCode",{parentName:"a"},"17f618e")))),(0,n.kt)("h3",{id:"092---2022-09-27"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.1...0.9.2"},"0.9.2")," - 2022-09-27"),(0,n.kt)("h3",{id:"091---2022-09-27"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.0...0.9.1"},"0.9.1")," - 2022-09-27"),(0,n.kt)("h4",{id:"-enhancements-28"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(cards): added ability to change the text alignment using css variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ed532ac20c82a6933c4f12613c80ce92eec78405"},(0,n.kt)("inlineCode",{parentName:"a"},"ed532ac"))),(0,n.kt)("li",{parentName:"ul"},"change(styles): use flex-end values only instead of end to avoid babel warning ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24244b22ea69b9f4dc3006597c7836f814b74cf2"},(0,n.kt)("inlineCode",{parentName:"a"},"24244b2"))),(0,n.kt)("li",{parentName:"ul"},"change(rounded): image size, border radius to ensure more image are turned into rounded options ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51e23c1bb38f277b2bfbad5d814925eb61d17668"},(0,n.kt)("inlineCode",{parentName:"a"},"51e23c1")))),(0,n.kt)("h4",{id:"\ufe0f-others-29"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Merge pull request #243 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/576564ce395ee6ac9e74bcb19d5c4f0b4cd3c33b"},(0,n.kt)("inlineCode",{parentName:"a"},"576564c"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using eea-website-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a5be6eec78dae230626e61ea2c77e7f3c62510d"},(0,n.kt)("inlineCode",{parentName:"a"},"4a5be6e"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b251255a7ed14d8290717726d86eaf54b87aa2d4"},(0,n.kt)("inlineCode",{parentName:"a"},"b251255")))),(0,n.kt)("h3",{id:"090---2022-09-19"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.8.1...0.9.0"},"0.9.0")," - 2022-09-19"),(0,n.kt)("h4",{id:"-new-features-17"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(countUp): intall countup package and import it in statistics ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/10ba7cf2975ffc33cc8e6965998b7ab7ec58b1ab"},(0,n.kt)("inlineCode",{parentName:"a"},"10ba7cf"))),(0,n.kt)("li",{parentName:"ul"},"feat(docusaurus): custom editUrl function for the components usage pages - taskman refs #154076 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93c4240f269d72e4e353665dacd57d079a31afac"},(0,n.kt)("inlineCode",{parentName:"a"},"93c4240"))),(0,n.kt)("li",{parentName:"ul"},"feat(site): Styling scroll-to-text fragments #238 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1883fcf4e80055f68bdff4d66fc6db3ccad4614a"},(0,n.kt)("inlineCode",{parentName:"a"},"1883fcf"))),(0,n.kt)("li",{parentName:"ul"},"feat(docusaurus): added Edit this page link in footer of each page - taskman refs #154076 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2cf8746e42631ea2e214223e208bdbfb76ffafa7"},(0,n.kt)("inlineCode",{parentName:"a"},"2cf8746")))),(0,n.kt)("h4",{id:"-bug-fixes-22"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(header): Prevent dropdown closing when clicking inside content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/838f34006260ce7c331fd933a595e95d78e1a927"},(0,n.kt)("inlineCode",{parentName:"a"},"838f340"))),(0,n.kt)("li",{parentName:"ul"},"fix(cards): position of bullets and arrow clicking on events page 148723 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/22ef8282247401b0f8cf5a44f2e65f0b469cc6fa"},(0,n.kt)("inlineCode",{parentName:"a"},"22ef828"))),(0,n.kt)("li",{parentName:"ul"},"fix(cards): rounded images show up now even when card parent is cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48f5e81a5b76168435537d92aec35ab3a184b4d2"},(0,n.kt)("inlineCode",{parentName:"a"},"48f5e81"))),(0,n.kt)("li",{parentName:"ul"},"fix(statistic): add a min-width to content so unwrapped statistics don't break ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7c5d511c35d50f3afabf77f14b27e5760c49051f"},(0,n.kt)("inlineCode",{parentName:"a"},"7c5d511"))),(0,n.kt)("li",{parentName:"ul"},"fix(sideNavigation): add role list to list item ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/58f322b732c995349ba588db3bac6a1ffea40f89"},(0,n.kt)("inlineCode",{parentName:"a"},"58f322b"))),(0,n.kt)("li",{parentName:"ul"},"fix(sideNavigation): remove unused useState import ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f9ea6779d2c584203b77f11b3127f39aba7799f3"},(0,n.kt)("inlineCode",{parentName:"a"},"f9ea677")))),(0,n.kt)("h4",{id:"-enhancements-29"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(sideNavigation): implement the design to the initial navigation & make component dynamic ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b673d63a45e56e1d05354d8675c01b15ec9543f5"},(0,n.kt)("inlineCode",{parentName:"a"},"b673d63"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update top bar ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/626bdd5805bde1e97b91d83dae7adc1d39c62234"},(0,n.kt)("inlineCode",{parentName:"a"},"626bdd5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): create custom export and add links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f9ed560a68d261e9e6a9b6fa3c44944a252e596"},(0,n.kt)("inlineCode",{parentName:"a"},"9f9ed56"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): update inverted style and add background variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7578dc6a408094fbc215218b3ffe21a878841568"},(0,n.kt)("inlineCode",{parentName:"a"},"7578dc6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): remove horizontal display on mobiles & update columns control ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/58f00e12851c4a1af1bb200d0577d76f6222df3c"},(0,n.kt)("inlineCode",{parentName:"a"},"58f00e1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): minor fixes spotted in testing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0f0f3aba7ea282c4ecc4f602f9ff3144c04e2146"},(0,n.kt)("inlineCode",{parentName:"a"},"0f0f3ab"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update main section heights ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d669f012f1b831952dbb73b7d40134b1243ba7e4"},(0,n.kt)("inlineCode",{parentName:"a"},"d669f01"))),(0,n.kt)("li",{parentName:"ul"},"refactor(sideNavigation): remove green border and divider ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/939cd9bf2a9a7338fd770550a8396586c5f610b3"},(0,n.kt)("inlineCode",{parentName:"a"},"939cd9b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(link): update colors for link states ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e9f59950838f9119131797550945963c2965dcf"},(0,n.kt)("inlineCode",{parentName:"a"},"3e9f599"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): styles img tag outside of .image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee892745a4748da12007ba5cedab16c1810c1dd9"},(0,n.kt)("inlineCode",{parentName:"a"},"ee89274"))),(0,n.kt)("li",{parentName:"ul"},"refactor(sideNavigation): update controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a3e8430d88ee52fd92f4f8c2d6f5e01ea82dd9eb"},(0,n.kt)("inlineCode",{parentName:"a"},"a3e8430"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): fix firefox issue for fit content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87aa113667ea53d83d479cd52347e7298e60e9b0"},(0,n.kt)("inlineCode",{parentName:"a"},"87aa113"))),(0,n.kt)("li",{parentName:"ul"},"change(statistics): rearrange controls order ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b19ae70568f18873732ff62ee82251c9256a214d"},(0,n.kt)("inlineCode",{parentName:"a"},"b19ae70"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): add max width to wrap text for all content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/758f8ce09f78a6343ac0226e5d332c0216dea95b"},(0,n.kt)("inlineCode",{parentName:"a"},"758f8ce"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): add max width to label so it wraps the text ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/824a12702f133485a1c254e267d9e75c1b22048c"},(0,n.kt)("inlineCode",{parentName:"a"},"824a127"))),(0,n.kt)("li",{parentName:"ul"},"change(Side menu & in page navigation): styling according to figma design #221 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b2df858a2dc88f61d686ad0991e711dc763f4cc6"},(0,n.kt)("inlineCode",{parentName:"a"},"b2df858"))),(0,n.kt)("li",{parentName:"ul"},"change(header): align header with latest figma changes #232 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/135cd68307c6ebdc5d48b361d1696457c6f99b4c"},(0,n.kt)("inlineCode",{parentName:"a"},"135cd68"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): integration when cards also contain call to action buttons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f0d876616b211c79dde5b18c1fe862ff019073a1"},(0,n.kt)("inlineCode",{parentName:"a"},"f0d8766"))),(0,n.kt)("li",{parentName:"ul"},"refactor(iconography): icon group headings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b9ccd8031049d6b91c5676930ea3e44d9587435d"},(0,n.kt)("inlineCode",{parentName:"a"},"b9ccd80"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add variables for some sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8eae84ef665d7b3331090a8a8ac6b714ecdacbb3"},(0,n.kt)("inlineCode",{parentName:"a"},"8eae84e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Statisctic): Rename slateVariation to extraVariation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a07c5896c8c4b8f3179622f335e3f02e68dadfbd"},(0,n.kt)("inlineCode",{parentName:"a"},"a07c589"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): started example on how to add headings for iconography ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53cf8431446954eee6c5d27be31e15c075ffe16d"},(0,n.kt)("inlineCode",{parentName:"a"},"53cf843"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): remove center alignment of rounded cards body area, only the image is now centered ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fdfac4876903272b437c7dcf0e65f7cfe66bbf66"},(0,n.kt)("inlineCode",{parentName:"a"},"fdfac48"))),(0,n.kt)("li",{parentName:"ul"},"change(color): updated link colors #234 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/feabfe7a3b6d6b89bfd4065a32bae8148ddc5a4c"},(0,n.kt)("inlineCode",{parentName:"a"},"feabfe7"))),(0,n.kt)("li",{parentName:"ul"},"change(mockup): Access to figma style tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0bb25bec495f9046a15924ee92f4f17152148ba8"},(0,n.kt)("inlineCode",{parentName:"a"},"0bb25be"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): update margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5190f56e134d672ccb9d5d1a8efacac4d41530d3"},(0,n.kt)("inlineCode",{parentName:"a"},"5190f56"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button): adjust vertical margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/db6d44102171738907b4b03fcc5f526463f59389"},(0,n.kt)("inlineCode",{parentName:"a"},"db6d441")))),(0,n.kt)("h4",{id:"-internal-changes-12"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(statistic): update decimal point ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7976aa4cac4c56e70e196eb62791a2b3f2aba749"},(0,n.kt)("inlineCode",{parentName:"a"},"7976aa4"))),(0,n.kt)("li",{parentName:"ul"},"style(link): update visited link color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d3b18b305bb2bd2f20bb2509584a6bc86b0e252c"},(0,n.kt)("inlineCode",{parentName:"a"},"d3b18b3")))),(0,n.kt)("h4",{id:"-documentation-changes-11"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(iconography): added icons, guidelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0073f1d42600be1d14bff406083b112014a2061f"},(0,n.kt)("inlineCode",{parentName:"a"},"0073f1d")))),(0,n.kt)("h4",{id:"\ufe0f-others-30"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Delete 2-test-new-page.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/749eff9b81e1c08068650cff1aba6cd574ea403b"},(0,n.kt)("inlineCode",{parentName:"a"},"749eff9"))),(0,n.kt)("li",{parentName:"ul"},"Create 2-test-new-page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab623ffc27f65e3e5fdcfe627009df1799582325"},(0,n.kt)("inlineCode",{parentName:"a"},"ab623ff"))),(0,n.kt)("li",{parentName:"ul"},"Release 0.9.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/eb7e2e57b5f2778e709b67deee3624f6e9f9e716"},(0,n.kt)("inlineCode",{parentName:"a"},"eb7e2e5"))),(0,n.kt)("li",{parentName:"ul"},"stylelint fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/114e3f97c6209f100aae2d6e24c595b7ba0a6500"},(0,n.kt)("inlineCode",{parentName:"a"},"114e3f9"))),(0,n.kt)("li",{parentName:"ul"},"Move text fragments style to site.overrides ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8368cbe2cecfc296a2fc81dd0bb49cb9e9a9314c"},(0,n.kt)("inlineCode",{parentName:"a"},"8368cbe"))),(0,n.kt)("li",{parentName:"ul"},"Styling scroll-to-text fragments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1bb39148717cdac922c403a0cdbfa3681a65dd9f"},(0,n.kt)("inlineCode",{parentName:"a"},"1bb3914"))),(0,n.kt)("li",{parentName:"ul"},"Update Header.stories.js ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9036c74d54640df2ccfcfdea9ddcdb29787d8ae2"},(0,n.kt)("inlineCode",{parentName:"a"},"9036c74"))),(0,n.kt)("li",{parentName:"ul"},"feature(Docusaurus): Reflect usage of remixicon in iconography page #239 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0802b32c13d978e380960befb78647dadb2d7e53"},(0,n.kt)("inlineCode",{parentName:"a"},"0802b32"))),(0,n.kt)("li",{parentName:"ul"},"Update 1-design.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/146115a13ac7a1943b6878df42f0b8e7f1fcd3f1"},(0,n.kt)("inlineCode",{parentName:"a"},"146115a"))),(0,n.kt)("li",{parentName:"ul"},"Test workflow for contribution - taskman refs #154076 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dcb924f79306ba26bb5168ac0a12d82c0c354caa"},(0,n.kt)("inlineCode",{parentName:"a"},"dcb924f"))),(0,n.kt)("li",{parentName:"ul"},"perf(figma): access to style tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/27d8dbe3c282e187f93bc4d93a0c9aa5c8162b00"},(0,n.kt)("inlineCode",{parentName:"a"},"27d8dbe"))),(0,n.kt)("li",{parentName:"ul"},"Rename 2-test-new-page to 2-test-new-page.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4e3be106cc4739e60ee5038901dbb626cf17f2e7"},(0,n.kt)("inlineCode",{parentName:"a"},"4e3be10")))),(0,n.kt)("h3",{id:"081---2022-08-26"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.8.0...0.8.1"},"0.8.1")," - 2022-08-26"),(0,n.kt)("h4",{id:"-bug-fixes-23"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(message): fix size controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee51e1dca4f84aeb9e39be525016f751acc147de"},(0,n.kt)("inlineCode",{parentName:"a"},"ee51e1d"))),(0,n.kt)("li",{parentName:"ul"},"fix(docusaurus): intro page hero title color now that headers are using tertiary color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/618e3cb7ac5533b1c087aea10452947c8676ab4e"},(0,n.kt)("inlineCode",{parentName:"a"},"618e3cb")))),(0,n.kt)("h4",{id:"-enhancements-30"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(message): restore semantic variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1c16621b4862efc64d82d475798ed40938c65f5e"},(0,n.kt)("inlineCode",{parentName:"a"},"1c16621"))),(0,n.kt)("li",{parentName:"ul"},"refactor(messages): mix semantc and token colors for messages ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/12efa75c30956df9958058242be4b8732819a5a1"},(0,n.kt)("inlineCode",{parentName:"a"},"12efa75"))),(0,n.kt)("li",{parentName:"ul"},"refactor(emotiveColors): temp update for tests ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/61a720c1ddbbad2c5bab17c8b2f890618f2a747c"},(0,n.kt)("inlineCode",{parentName:"a"},"61a720c"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): removed line between sections and moved actions back to the bottom of footer ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d9f33e4cf5a517acfbae497d6cb2fdccb048c281"},(0,n.kt)("inlineCode",{parentName:"a"},"d9f33e4"))),(0,n.kt)("li",{parentName:"ul"},"change(storybook): headings storybook now uses tertiary color by default reflecting site options ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1061e7749de2d4fe1233ccdc7f6f835ad491504a"},(0,n.kt)("inlineCode",{parentName:"a"},"1061e77"))),(0,n.kt)("li",{parentName:"ul"},"refactor(message): add container to story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1259ecead7162d2a46f5e802ba07e7e0dcb72e42"},(0,n.kt)("inlineCode",{parentName:"a"},"1259ece"))),(0,n.kt)("li",{parentName:"ul"},"refactor(message): remove override with custom background color on error ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9b40cd7ef2cca901e65a812585943c2e2d867b5f"},(0,n.kt)("inlineCode",{parentName:"a"},"9b40cd7"))),(0,n.kt)("li",{parentName:"ul"},"refactor(message): add header controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/960c2f7b524b1f049bb2f666e3e8278feca506da"},(0,n.kt)("inlineCode",{parentName:"a"},"960c2f7"))),(0,n.kt)("li",{parentName:"ul"},"change(message): use semantic colors for messages #204 from eea/refactor-message ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/22d2c43cd55a82621f2da3103652677b4b45db1a"},(0,n.kt)("inlineCode",{parentName:"a"},"22d2c43")))),(0,n.kt)("h4",{id:"-documentation-changes-12"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(figma): added figma files to repo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6bd4144ffc9c563ce224a07fe942fc4f2615c53f"},(0,n.kt)("inlineCode",{parentName:"a"},"6bd4144")))),(0,n.kt)("h3",{id:"080---2022-08-20"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.7.6...0.8.0"},"0.8.0")," - 2022-08-20"),(0,n.kt)("h4",{id:"-new-features-18"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(IconCard): card with icon instead of image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a85a1791e3a1245474dcafc4fd833350156dccb4"},(0,n.kt)("inlineCode",{parentName:"a"},"a85a179")))),(0,n.kt)("h4",{id:"-bug-fixes-24"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(docusaurus): typography guideline now has real font values for headings, body, caption and small text ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9508db918687b524c4d464539b9a4667399abb43"},(0,n.kt)("inlineCode",{parentName:"a"},"9508db9"))),(0,n.kt)("li",{parentName:"ul"},"fix(card): fix content gaps, adjust new meta section and update text color for default ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f1a78e14fc9a4b809572bd5d4d45bd10711c6eaa"},(0,n.kt)("inlineCode",{parentName:"a"},"f1a78e1"))),(0,n.kt)("li",{parentName:"ul"},"fix(item): remove duplicate argType ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dde0be5f7fe362143e248f7e53aa1d2e5df1fda0"},(0,n.kt)("inlineCode",{parentName:"a"},"dde0be5"))),(0,n.kt)("li",{parentName:"ul"},"fix(iconCard): add aria-label at links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/44f64c7127c0ccabbbf81eb5a838ee0f63284cea"},(0,n.kt)("inlineCode",{parentName:"a"},"44f64c7"))),(0,n.kt)("li",{parentName:"ul"},"fix(card): merge fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/df440ecd89eeb228f6f28df9109b84460cdfd523"},(0,n.kt)("inlineCode",{parentName:"a"},"df440ec"))),(0,n.kt)("li",{parentName:"ul"},"fix(heroblock): color even on edit page by inheriting color instead of using the tertiary color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac53fb74dedafcce231d1ca72843eff8a589c530"},(0,n.kt)("inlineCode",{parentName:"a"},"ac53fb7"))),(0,n.kt)("li",{parentName:"ul"},"fix(tab): add tabindex for accessibility error ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab512be71b86a3b696a228840e34d297928485ab"},(0,n.kt)("inlineCode",{parentName:"a"},"ab512be"))),(0,n.kt)("li",{parentName:"ul"},"fix(carousel): restore missing variable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1728312162d102aa2812eb3c7a55dac83bca8a04"},(0,n.kt)("inlineCode",{parentName:"a"},"1728312"))),(0,n.kt)("li",{parentName:"ul"},"fix(carousel): restore flex grow for cards and opacity for arrows ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce71305ab3fed5ff5c09b577e970050d3b29a2cb"},(0,n.kt)("inlineCode",{parentName:"a"},"ce71305")))),(0,n.kt)("h4",{id:"-enhancements-31"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(carousel) add links in carousel cards & update structure and variables of less files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f99cb219f3a95f5aab49a180434a4f5e0db14462"},(0,n.kt)("inlineCode",{parentName:"a"},"f99cb21"))),(0,n.kt)("li",{parentName:"ul"},"refactor(iconCard): add control for variations and link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5e1b6a1c7ab9fdce138c5643bc01763a02bed287"},(0,n.kt)("inlineCode",{parentName:"a"},"5e1b6a1"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus, fonts): documented font letter spacing modification ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/522712aeddb55f4ff96fdf4e8bea26f4575504ec"},(0,n.kt)("inlineCode",{parentName:"a"},"522712a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): css updates for card variations and styling updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c8b4a43dd25c50e77e8c71fa8fbc45cd70bde94e"},(0,n.kt)("inlineCode",{parentName:"a"},"c8b4a43"))),(0,n.kt)("li",{parentName:"ul"},"refactor(publicationCard): add links and fix accessibily issue ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/80adf6ce0f01e577c34ddba8b345a1fc562f6711"},(0,n.kt)("inlineCode",{parentName:"a"},"80adf6c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add new section in meta and remove links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bfb82ae9635d26ef478db3d63b39f67b25d11fd5"},(0,n.kt)("inlineCode",{parentName:"a"},"bfb82ae"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): add stackable functionality ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8d714fad0465cc71650dcb41236d5667ccc3e789"},(0,n.kt)("inlineCode",{parentName:"a"},"8d714fa"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): update meta section and controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5e28e12bacec6a226659553b8244aeb0165378c9"},(0,n.kt)("inlineCode",{parentName:"a"},"5e28e12"))),(0,n.kt)("li",{parentName:"ul"},"refactor(roundedCard): remove unnecessary code and controls and add all variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6305c54df14faada4058c602af2e33dbc4fad39d"},(0,n.kt)("inlineCode",{parentName:"a"},"6305c54"))),(0,n.kt)("li",{parentName:"ul"},"refactor(roundedCard): add optional link for image and header ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a6d3bf27031d189c403c4a099b09a9066a1620a2"},(0,n.kt)("inlineCode",{parentName:"a"},"a6d3bf2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add tertiary hover and update css selectors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca069484da914520c92f7d67ac92c476ff2ee4a2"},(0,n.kt)("inlineCode",{parentName:"a"},"ca06948"))),(0,n.kt)("li",{parentName:"ul"},"change(fonts): updated font sizes with values given in figma ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4b0ae48ab140d8bbbf6ccbf46eda8d957195ca50"},(0,n.kt)("inlineCode",{parentName:"a"},"4b0ae48"))),(0,n.kt)("li",{parentName:"ul"},"change(style): color, space and adjust line-height as described in docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3366da262ba2dc1c34f57964accf4d6ef6ed37e1"},(0,n.kt)("inlineCode",{parentName:"a"},"3366da2"))),(0,n.kt)("li",{parentName:"ul"},"change(headings): only h2-h6 get tertiary color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d81308c4c0d52d5610a922146f5b426d9eaf323"},(0,n.kt)("inlineCode",{parentName:"a"},"7d81308"))),(0,n.kt)("li",{parentName:"ul"},"change(site): removed Archivo import as we should only use Roboto font ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a6af0564667075d2012c114acb2ad8e1f39b926f"},(0,n.kt)("inlineCode",{parentName:"a"},"a6af056"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): use tertiary color for headings and body color mirroring the design system styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/145fe7348a19b51784a2879225d1b71a642eed45"},(0,n.kt)("inlineCode",{parentName:"a"},"145fe73"))),(0,n.kt)("li",{parentName:"ul"},"change(fonts): modified headings font size as well as line height ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f0771ea1942b6ef436a03c256491a690a52d7413"},(0,n.kt)("inlineCode",{parentName:"a"},"f0771ea"))),(0,n.kt)("li",{parentName:"ul"},"change(fonts): updated font sizes with values given in figma ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f16eef7128ed4f2e7fe97b1ec77f651dc062b771"},(0,n.kt)("inlineCode",{parentName:"a"},"f16eef7"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): use Roboto font from google fonts also for docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/adca8e911faac2d541eb2b9fecf1d9db5b8f9b4c"},(0,n.kt)("inlineCode",{parentName:"a"},"adca8e9"))),(0,n.kt)("li",{parentName:"ul"},"change(headers): added headerColor variable so that thematic sites can easily choose another heading color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f09d2c5e95e82077cc7dfef43a5c56fc73d435c3"},(0,n.kt)("inlineCode",{parentName:"a"},"f09d2c5"))),(0,n.kt)("li",{parentName:"ul"},"change(fonts): typo fixes for typography section of docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cae4b02b20ff578f5cad7c4238c36baa3cae545a"},(0,n.kt)("inlineCode",{parentName:"a"},"cae4b02"))),(0,n.kt)("li",{parentName:"ul"},"change(fonts): modified footer and header values afer global font size changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f160d354b36dc2bee0707b6d63097d5f08408abe"},(0,n.kt)("inlineCode",{parentName:"a"},"f160d35"))),(0,n.kt)("li",{parentName:"ul"},"refactor(iconCards): run prettier ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fe84e46adbc385098385120d14e7583b890db027"},(0,n.kt)("inlineCode",{parentName:"a"},"fe84e46"))),(0,n.kt)("li",{parentName:"ul"},"change(typography): inherit header colors with @headerColor variable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91d93577772534f67bb74df0c9ed260bbaccdd4c"},(0,n.kt)("inlineCode",{parentName:"a"},"91d9357"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumb): use tertiary color also for breadcrumb ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5cbd44bcabae36bcb99a1e987d701e2ea75434b"},(0,n.kt)("inlineCode",{parentName:"a"},"c5cbd44"))),(0,n.kt)("li",{parentName:"ul"},"change(heading): on homepage on the first hero set font size to h1 and inherit color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5711096e45c57b0c3c871f8dcf870c05405d217d"},(0,n.kt)("inlineCode",{parentName:"a"},"5711096"))),(0,n.kt)("li",{parentName:"ul"},"refactor(carousel): update card titles to display styling fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/edd966b5648be51f2d4056c68489648574506656"},(0,n.kt)("inlineCode",{parentName:"a"},"edd966b"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): use the tertiary color for body and heading colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/11c4ed4683df4527ce79155bc65424789e3864af"},(0,n.kt)("inlineCode",{parentName:"a"},"11c4ed4"))),(0,n.kt)("li",{parentName:"ul"},"change(typography): modified lineheight-0 after headers now use 1.2 instead of 1.25 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/04d78a8b0094d9187548e1e3b16d6fbf2248821c"},(0,n.kt)("inlineCode",{parentName:"a"},"04d78a8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add links to cards and replace description with title in carousel ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0258737d26bbb3015ee6222ec878e0477001f615"},(0,n.kt)("inlineCode",{parentName:"a"},"0258737")))),(0,n.kt)("h4",{id:"\ufe0f-others-31"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feature(heading): and cards refactoring #227 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/334fbda2d5b751858d4cc8cae832ca7f5c1ad6c2"},(0,n.kt)("inlineCode",{parentName:"a"},"334fbda"))),(0,n.kt)("li",{parentName:"ul"},"Update package.json ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3870cf3265f0dab4e181c94a6657b9fa408bf186"},(0,n.kt)("inlineCode",{parentName:"a"},"3870cf3"))),(0,n.kt)("li",{parentName:"ul"},"Header refactor 153536 #226 from eea/header-refactor-153536 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87a6fe73211eb028861e099a67e90d365c5111ea"},(0,n.kt)("inlineCode",{parentName:"a"},"87a6fe7"))),(0,n.kt)("li",{parentName:"ul"},"feature(item): icon is now stackable moving the icon on top #220 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b716acfc850345d666d99840445798cdae201a63"},(0,n.kt)("inlineCode",{parentName:"a"},"b716acf")))),(0,n.kt)("h3",{id:"076---2022-08-15"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.7.5...0.7.6"},"0.7.6")," - 2022-08-15"),(0,n.kt)("h4",{id:"-enhancements-32"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(footer): Footer updates 147837 #225 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fa9ae580c7fd45fb4983672167cb5b0b33cc6279"},(0,n.kt)("inlineCode",{parentName:"a"},"fa9ae58"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): initial redesign of main section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8e85617157cdc31a7470acfcd72b85d8fadd1bce"},(0,n.kt)("inlineCode",{parentName:"a"},"8e85617"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): restructure theme sites logo columns ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dcba45a0bfd832c7d5d1e092db8ea4040eceda57"},(0,n.kt)("inlineCode",{parentName:"a"},"dcba45a"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): set actions before thematic section on mobile ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/db25f966a214c94677192215181453e9d59ca957"},(0,n.kt)("inlineCode",{parentName:"a"},"db25f96"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): fix missing key warning from react dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/77f72d5bdc719805a6314058c741387ee7155d28"},(0,n.kt)("inlineCode",{parentName:"a"},"77f72d5"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): Footer updates 147837 #222 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32fed231f1209caeddb18e0bb75d670f20bafb88"},(0,n.kt)("inlineCode",{parentName:"a"},"32fed23")))),(0,n.kt)("h3",{id:"075---2022-08-11"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.7.3...0.7.5"},"0.7.5")," - 2022-08-11"),(0,n.kt)("h4",{id:"-enhancements-33"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(megamenu): mobile improvements with See all links, active elements and non accordion children #224 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6767b99fea3925b35e9dede0a67ea90242e5e730"},(0,n.kt)("inlineCode",{parentName:"a"},"6767b99"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): render accordion only if children have children ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/be63ce2a8e240eac26eedeff0ca104813afbc6b3"},(0,n.kt)("inlineCode",{parentName:"a"},"be63ce2"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): mobile menu design tweaks as seen in latest figma ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/26d74dc063f0b3f8d541c714a10038d79145047e"},(0,n.kt)("inlineCode",{parentName:"a"},"26d74dc"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): removed icon from at a change menu items and they are no longer bold as requested ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/043e77219979711d2f25845c6811b546e791fbf7"},(0,n.kt)("inlineCode",{parentName:"a"},"043e772"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): reset first level panels after each item pass ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/175351bdc9bab5c2d02b2717c24071ba62d4b924"},(0,n.kt)("inlineCode",{parentName:"a"},"175351b"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): mobile menu improvements #223 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b3cabfe3ddc42c2ea39ae20d01bb6fd0db478ecc"},(0,n.kt)("inlineCode",{parentName:"a"},"b3cabfe"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): fixed key error warnings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/075bf0167554869e9fc2f4938c972112e4afa2f7"},(0,n.kt)("inlineCode",{parentName:"a"},"075bf01"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): handle default active sub accordion ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6192a9938b53522682953cb73d7ccfc6ef9c1aec"},(0,n.kt)("inlineCode",{parentName:"a"},"6192a99"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): enable active border only for items not titles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fb0b8696dd73cbf3083c3006a7cff5a1901a6bac"},(0,n.kt)("inlineCode",{parentName:"a"},"fb0b869")))),(0,n.kt)("h4",{id:"\ufe0f-others-32"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Update package.json ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e21e00dc1e0b54daef2c71311a9da709bc1f7e6d"},(0,n.kt)("inlineCode",{parentName:"a"},"e21e00d")))),(0,n.kt)("h3",{id:"073---2022-08-04"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.7.2...0.7.3"},"0.7.3")," - 2022-08-04"),(0,n.kt)("h4",{id:"-enhancements-34"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(megamenu): added icon on mega menu header section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d0ad4d80fc4941e0cdbd8a2d81415387f86efc1c"},(0,n.kt)("inlineCode",{parentName:"a"},"d0ad4d8")))),(0,n.kt)("h3",{id:"072---2022-08-03"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.7.1...0.7.2"},"0.7.2")," - 2022-08-03"),(0,n.kt)("h4",{id:"-bug-fixes-25"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(contentBox): z-index of content hidden by bg when using content-box-inner ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5a7dac923d648d8fe9c9a9cbb8001969d32aea2"},(0,n.kt)("inlineCode",{parentName:"a"},"c5a7dac")))),(0,n.kt)("h4",{id:"\ufe0f-others-33"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Set focus on search input field in the popup on click ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d12c05106d9b95df1885ffa12cb284a0e50e0dfd"},(0,n.kt)("inlineCode",{parentName:"a"},"d12c051"))),(0,n.kt)("li",{parentName:"ul"},"Make cypress tests work with both slate and draft selectors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4d8e5b1d7719637a46eac8232891fc5ed1f51b6f"},(0,n.kt)("inlineCode",{parentName:"a"},"4d8e5b1")))),(0,n.kt)("h3",{id:"071---2022-08-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.7.0...0.7.1"},"0.7.1")," - 2022-08-01"),(0,n.kt)("h3",{id:"070---2022-08-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.6.5...0.7.0"},"0.7.0")," - 2022-08-01"),(0,n.kt)("h4",{id:"-new-features-19"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(accordion,buttons): primary, secondary and tertiary variations #209 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c34617f7a7d7b6b7568c3127f4ae0f52bd57cf8a"},(0,n.kt)("inlineCode",{parentName:"a"},"c34617f")))),(0,n.kt)("h4",{id:"-bug-fixes-26"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(megamenu): key warning errors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ecd27921546204dfa4aa23d25188876e52cda7a"},(0,n.kt)("inlineCode",{parentName:"a"},"4ecd279"))),(0,n.kt)("li",{parentName:"ul"},"fix(container): add padding also for block editors when we are on the add page not just edit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b857aad7855c30c5059b0f0f7c0f720826a71aa7"},(0,n.kt)("inlineCode",{parentName:"a"},"b857aad"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): bump opacity of gradient class to get rid of green hue of header text ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2011b40d384ae5b54a0525e6d9afc88c02f6ca90"},(0,n.kt)("inlineCode",{parentName:"a"},"2011b40"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): remove console log ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3a200233609bbcea39d8e519dc292a132a98aaa3"},(0,n.kt)("inlineCode",{parentName:"a"},"3a20023")))),(0,n.kt)("h4",{id:"-enhancements-35"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(callToAction): add tertiary variant and restructure exports ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac6695ab3066c41739ec4852f0ec3c3bb6cea346"},(0,n.kt)("inlineCode",{parentName:"a"},"ac6695a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(accordion): add color variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3504c15cc861803dc263fb2ad3b6a478043ced33"},(0,n.kt)("inlineCode",{parentName:"a"},"3504c15"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): WIP bringing back rendering of item with callback and path modification ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e43d4340ea82afde950e5fee44a76119060fc28"},(0,n.kt)("inlineCode",{parentName:"a"},"6e43d43"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): add slide down transition and update targetRefs on close ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/96671574f5f7dd992269c42e509598f62bba516d"},(0,n.kt)("inlineCode",{parentName:"a"},"9667157"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): use renderMenuItem in order to render menu items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9ed5cbdf120ee2c92e5f14c09e5289a5abe3f8b0"},(0,n.kt)("inlineCode",{parentName:"a"},"9ed5cbd"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): replaced eionet logo with an svg variant and tweaked size of eionet to match size of eea logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32ce4623ad454edec864ad6c8b45cbf99465bede"},(0,n.kt)("inlineCode",{parentName:"a"},"32ce462"))),(0,n.kt)("li",{parentName:"ul"},"refactor(callToAction): update tertiary state colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/159668ac526a98032392bcbd2c115dc448193152"},(0,n.kt)("inlineCode",{parentName:"a"},"159668a"))),(0,n.kt)("li",{parentName:"ul"},"change(accordion): style default accordion using the grey from semantic ui ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e24907df397457bd9704905aa29ea5d7e1d396cd"},(0,n.kt)("inlineCode",{parentName:"a"},"e24907d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(accordion): add variations and create a default export ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a9c68ffe933c9d700e46db3e0cbbd9e3820c7c7"},(0,n.kt)("inlineCode",{parentName:"a"},"4a9c68f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(colors): add tertiary shades for element states ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1e24a7e13b50f1ee7bd9bd44f3b2eb8e4460c691"},(0,n.kt)("inlineCode",{parentName:"a"},"1e24a7e"))),(0,n.kt)("li",{parentName:"ul"},"change(tests): try to modify tests to use slate instead of draft ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a2e248593433a7a8bf612008c12a3a20a0049d86"},(0,n.kt)("inlineCode",{parentName:"a"},"a2e2485"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): set active class on storybook list items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/112bff195cd07e789b352ae239a148a168b4d877"},(0,n.kt)("inlineCode",{parentName:"a"},"112bff1"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): add border for active element of menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5e7dfa539dc0d126dfb057ac2d293c94b31561bb"},(0,n.kt)("inlineCode",{parentName:"a"},"5e7dfa5"))),(0,n.kt)("li",{parentName:"ul"},"change(package): condition modification of navDepth settings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dd21dadf34f87f08223be3b98c06e7a2f0714326"},(0,n.kt)("inlineCode",{parentName:"a"},"dd21dad"))),(0,n.kt)("li",{parentName:"ul"},"change(mega menu): use non variable to fix build of volto-kitkat-frontend ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ecd652405ba616c9defc86fd793f8c066c0af1e"},(0,n.kt)("inlineCode",{parentName:"a"},"3ecd652"))),(0,n.kt)("li",{parentName:"ul"},"change(header): prefix mega-menu active class for adding border ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32898cb19c20ee7696c51b99cd9df25a333ae6e9"},(0,n.kt)("inlineCode",{parentName:"a"},"32898cb"))),(0,n.kt)("li",{parentName:"ul"},"change(tests): use data-slate-editor instead of contents that was found in draft js instead of slate ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1e0413cf117c098b188e00249c323f2f718b9299"},(0,n.kt)("inlineCode",{parentName:"a"},"1e0413c"))),(0,n.kt)("li",{parentName:"ul"},"change(stories): hide variant control from button link story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/43f8c412f6762edbed9c60e613736d5b60677cd1"},(0,n.kt)("inlineCode",{parentName:"a"},"43f8c41"))),(0,n.kt)("li",{parentName:"ul"},"change(stories): hide variant control from button link story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aea712668331f5681028d961b42a05655f1113d3"},(0,n.kt)("inlineCode",{parentName:"a"},"aea7126")))),(0,n.kt)("h4",{id:"\ufe0f-others-34"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feature(theme): added context navigation component story and default style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5a6955fe935cf6a07f6593164014ed4c9e77d88f"},(0,n.kt)("inlineCode",{parentName:"a"},"5a6955f"))),(0,n.kt)("li",{parentName:"ul"},"feature(megamenu): open default accordions on mobile navigation based on pathname ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cc299c1047f96aa5f85cdc4bb8bb9b3b4fb9ca5e"},(0,n.kt)("inlineCode",{parentName:"a"},"cc299c1"))),(0,n.kt)("li",{parentName:"ul"},"fix eslint warnings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3b30282ea4df59f2d05644cae5c1d703b4dc48b3"},(0,n.kt)("inlineCode",{parentName:"a"},"3b30282"))),(0,n.kt)("li",{parentName:"ul"},"bump release version to 0.7.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fa82cbd7d50765c322bc5c7c58abb5675e0aadad"},(0,n.kt)("inlineCode",{parentName:"a"},"fa82cbd"))),(0,n.kt)("li",{parentName:"ul"},"Theme fixes, mega menu selected element both in desktop and mobile #211 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4827292a9badb02f178b7431cc63e11070784ea"},(0,n.kt)("inlineCode",{parentName:"a"},"b482729"))),(0,n.kt)("li",{parentName:"ul"},"feature(mega-menu): added menu slide down animation #208 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4360d0ef570fbfcc9989170219f7826e5ed780cf"},(0,n.kt)("inlineCode",{parentName:"a"},"4360d0e")))),(0,n.kt)("h3",{id:"065---2022-07-06"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.6.1...0.6.5"},"0.6.5")," - 2022-07-06"),(0,n.kt)("h4",{id:"-bug-fixes-27"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(header): double click to close dropdown is no longer required ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8a2ed0d1e671d12239ecaf250e68b3187c12a53"},(0,n.kt)("inlineCode",{parentName:"a"},"b8a2ed0"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): menu generation when atAGlance isn't found ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d68b03c05f7671e7ea154efe0199c29a3734fbcf"},(0,n.kt)("inlineCode",{parentName:"a"},"d68b03c"))),(0,n.kt)("li",{parentName:"ul"},"fix(menu): removed minHeight that enlarged the global menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/133be1e43d9b7778fd94388629400c5f2b707ff4"},(0,n.kt)("inlineCode",{parentName:"a"},"133be1e"))),(0,n.kt)("li",{parentName:"ul"},"fix(hero): image dimensions when full width and height isn't enabled ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4114f731cce63dc520bfd00cd487943181cec2ee"},(0,n.kt)("inlineCode",{parentName:"a"},"4114f73"))),(0,n.kt)("li",{parentName:"ul"},"fix(contentBox): removed negative z-index that hid fullwidth bg color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bd60faff53205da95d94930517f2ac830ec523d1"},(0,n.kt)("inlineCode",{parentName:"a"},"bd60faf")))),(0,n.kt)("h4",{id:"-enhancements-36"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(hero): tweaked hero block height and padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/994b6f8943c061657792df8adcbdee5da487ce43"},(0,n.kt)("inlineCode",{parentName:"a"},"994b6f8"))),(0,n.kt)("li",{parentName:"ul"},"change(item): tweak size and padding of icon when used inside item ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dbdef191e70bf59dcfddf63c8f9f9a1343266a59"},(0,n.kt)("inlineCode",{parentName:"a"},"dbdef19"))),(0,n.kt)("li",{parentName:"ul"},"change(typography): updated letterspacing values and clarified values used for certain type tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8a13bf8b3691d288209532842fb2c80962d652c0"},(0,n.kt)("inlineCode",{parentName:"a"},"8a13bf8"))),(0,n.kt)("li",{parentName:"ul"},"change(item): enable theming for icon and text color and added tertiary option ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d4444feedd1cd7e6e8f8da630b4b53a19050d1b"},(0,n.kt)("inlineCode",{parentName:"a"},"6d4444f"))),(0,n.kt)("li",{parentName:"ul"},"change(header): top section chevron sizes and margin as requested in enhancements document ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b307c74a671c10a5a6703dcb2126c3c36679c6f5"},(0,n.kt)("inlineCode",{parentName:"a"},"b307c74"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): add underline to links when applied to headers and use tertiary color by default ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/874f956c61e65ddbb6a240865f3946bb84247712"},(0,n.kt)("inlineCode",{parentName:"a"},"874f956"))),(0,n.kt)("li",{parentName:"ul"},"change(utilities): wrap in quotes h2 and h3 of quoted-wrapper ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8aa471604fb127cfa535373bb90a44b4204dd0f4"},(0,n.kt)("inlineCode",{parentName:"a"},"8aa4716"))),(0,n.kt)("li",{parentName:"ul"},"change(package): bump package version to 0.6.5 denoting bug fixes release ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0585aebaeb9e3483ba230110d99a1a875590ad66"},(0,n.kt)("inlineCode",{parentName:"a"},"0585aeb")))),(0,n.kt)("h3",{id:"061---2022-07-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.6.0...0.6.1"},"0.6.1")," - 2022-07-01"),(0,n.kt)("h4",{id:"-new-features-20"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(UnderlinedTitle): create story and necessary utilities ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8beb56b64ca76fb9f0f6df0f3554e64449a64868"},(0,n.kt)("inlineCode",{parentName:"a"},"8beb56b"))),(0,n.kt)("li",{parentName:"ul"},"feat(headers): added underlined titles with theming support ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af675616f9e002458501cf8b90742514153a298f"},(0,n.kt)("inlineCode",{parentName:"a"},"af67561")))),(0,n.kt)("h4",{id:"-enhancements-37"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(heading): move underline story and update controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2c9bfd279eafc44435d223be326f9496856c2154"},(0,n.kt)("inlineCode",{parentName:"a"},"2c9bfd2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(underlineTitle): add content box for different variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/087891535059d6c2d7d2c2accded20f6ba601bb5"},(0,n.kt)("inlineCode",{parentName:"a"},"0878915"))),(0,n.kt)("li",{parentName:"ul"},"refactor(underlinedTitle): add control for changing heading size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/211f5158bff2b437aac60f26ba63f9adb6be540a"},(0,n.kt)("inlineCode",{parentName:"a"},"211f515"))),(0,n.kt)("li",{parentName:"ul"},"refactor(underlinedTitle): Restore text variation dropdown control ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bd8c61129d2c80475af8d0e9310412d5c3a82169"},(0,n.kt)("inlineCode",{parentName:"a"},"bd8c611"))),(0,n.kt)("li",{parentName:"ul"},"refactor(utilities): add color variation for headings and text ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e3a779ec4fa3b712fcd32124f6f83ab784d2223"},(0,n.kt)("inlineCode",{parentName:"a"},"7e3a779"))),(0,n.kt)("li",{parentName:"ul"},"refactor(utilities): update border bottom utility and restore line height for headings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7fe4a7b9fee579d213fe3945a4e548ff089784bd"},(0,n.kt)("inlineCode",{parentName:"a"},"7fe4a7b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(headings): update the line height of headers according to docusaurus instructions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9da19b3e1ea1fd93431e00edf3dc9a443e94f27a"},(0,n.kt)("inlineCode",{parentName:"a"},"9da19b3")))),(0,n.kt)("h4",{id:"-internal-changes-13"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(countup): package for statistics ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/26fcd09bbd8d44119d5ca957542863be8c64836b"},(0,n.kt)("inlineCode",{parentName:"a"},"26fcd09")))),(0,n.kt)("h3",{id:"060---2022-07-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.5.5...0.6.0"},"0.6.0")," - 2022-07-01"),(0,n.kt)("h4",{id:"-bug-fixes-28"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(item): adjust the container in stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a848c46b5bf3153ec993a21a530e120bae872407"},(0,n.kt)("inlineCode",{parentName:"a"},"a848c46"))),(0,n.kt)("li",{parentName:"ul"},"fix(tag): align start for tags on mobile, update path for Tag List and add containers ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b9de8452c42ed6d16028ce147f2d7a062b895d67"},(0,n.kt)("inlineCode",{parentName:"a"},"b9de845"))),(0,n.kt)("li",{parentName:"ul"},"fix(item): update image width & height on mobiles and add 3 line clamp for description ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0cd2c46c945ff85b55183994990fae9cf450f3d1"},(0,n.kt)("inlineCode",{parentName:"a"},"0cd2c46"))),(0,n.kt)("li",{parentName:"ul"},"fix(pageheader): metadata font size on mobile to be readable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0a9b1fa7db6f0b11265f9eb4d28f25b23bedc79a"},(0,n.kt)("inlineCode",{parentName:"a"},"0a9b1fa"))),(0,n.kt)("li",{parentName:"ul"},"fix(breadcrumb): fixed variable name for breadcrumb item ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2b547eb43e0db4aa9bb63b4e4ba7f541f357fbd0"},(0,n.kt)("inlineCode",{parentName:"a"},"2b547eb")))),(0,n.kt)("h4",{id:"-enhancements-38"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(Item):create item story with custom default class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/069ae02a7cc2b15b7e6732e46f52d07eaa4502b1"},(0,n.kt)("inlineCode",{parentName:"a"},"069ae02"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pagination): add pastanage menu overrides and remove any eea theme css from default story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/508081090baaeb455130c760c6c0e7e23972d84a"},(0,n.kt)("inlineCode",{parentName:"a"},"5080810"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): update variables from px to rem ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/30eed78c170e5719ba4fb85c3a171db3f97d63c8"},(0,n.kt)("inlineCode",{parentName:"a"},"30eed78"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Item):add default item mobile padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/35184655e3225b8ad63626c8e521b5dcf59eaa3b"},(0,n.kt)("inlineCode",{parentName:"a"},"3518465"))),(0,n.kt)("li",{parentName:"ul"},"change(site): added fixes from custom ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0fe4d80586c8877d58905ec40aa7df19c2f4e32f"},(0,n.kt)("inlineCode",{parentName:"a"},"0fe4d80"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Pagination): add default pagination stopry and rename previous as Secondary ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a5e3e13b40d4d1d0c96f1efaa3a0c326d60c6d93"},(0,n.kt)("inlineCode",{parentName:"a"},"a5e3e13"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pagination): comment out secondary pagination and its styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bcf4cff1cff490718751475354b8fb32da174383"},(0,n.kt)("inlineCode",{parentName:"a"},"bcf4cff"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tags): remove content class and add flex wrap ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d6333ca7e61a588d8ffe4d0d2e02005c0aa12379"},(0,n.kt)("inlineCode",{parentName:"a"},"d6333ca"))),(0,n.kt)("li",{parentName:"ul"},"change(logo): use a real svg logo for white eea logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3b80dc7698c3dbab5d3834cc62f5102c2ace0166"},(0,n.kt)("inlineCode",{parentName:"a"},"3b80dc7"))),(0,n.kt)("li",{parentName:"ul"},"change(header): show eea information systems on tablet as well ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce82cebb554eb11a35ea2b3ee0c62bc645716476"},(0,n.kt)("inlineCode",{parentName:"a"},"ce82ceb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): update letter spacing tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f8753b7527b1bf7271102666a8662a74b2b1775"},(0,n.kt)("inlineCode",{parentName:"a"},"5f8753b"))),(0,n.kt)("li",{parentName:"ul"},"change(letterspacing): updated letter spacing positive values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b31818f292ce7ce8711084116a7b4df78cca33f0"},(0,n.kt)("inlineCode",{parentName:"a"},"b31818f"))),(0,n.kt)("li",{parentName:"ul"},"change(pageheader): add bottom margin on mobile for sharing dropdown actions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d3cda4732ec94dac91b36ef10014fbbe08a0a470"},(0,n.kt)("inlineCode",{parentName:"a"},"d3cda47"))),(0,n.kt)("li",{parentName:"ul"},"change(pageheader): removed blogger, reddit and stumbleupon sharing links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e4acc4e83c120cda59d94f04867a53e21bf322ab"},(0,n.kt)("inlineCode",{parentName:"a"},"e4acc4e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Item): add default item background color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c978c8d05355065466a8a661844237a9df103b94"},(0,n.kt)("inlineCode",{parentName:"a"},"c978c8d"))),(0,n.kt)("li",{parentName:"ul"},"change(package): bump package version ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f01f72ba6b09b6aae00c54e446bafddb48c4cd1"},(0,n.kt)("inlineCode",{parentName:"a"},"1f01f72")))),(0,n.kt)("h4",{id:"-internal-changes-14"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(item): update item image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e585e9d8c85a3627696b55c0505e29e8a8c33f7f"},(0,n.kt)("inlineCode",{parentName:"a"},"e585e9d")))),(0,n.kt)("h4",{id:"-documentation-changes-13"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(colors): token usage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c433ec6fcf190f85ab1dd81ea3e63eeb381d0c28"},(0,n.kt)("inlineCode",{parentName:"a"},"c433ec6"))),(0,n.kt)("li",{parentName:"ul"},"docs(Docusaurus): typography and spacing updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48d1269dce396aec26db1d1e2f777851a26eaa81"},(0,n.kt)("inlineCode",{parentName:"a"},"48d1269"))),(0,n.kt)("li",{parentName:"ul"},"docs(Docusaurus): various fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a972a31f7932d29d61a46da251c0c98994516365"},(0,n.kt)("inlineCode",{parentName:"a"},"a972a31"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/66d95e4fee695a20de47f5476712034f9f07f4a8"},(0,n.kt)("inlineCode",{parentName:"a"},"66d95e4")))),(0,n.kt)("h4",{id:"\ufe0f-others-35"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Tabs block custom border left/top ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca4cce05ddb603a26d729dfe31f0f11fda7563fb"},(0,n.kt)("inlineCode",{parentName:"a"},"ca4cce0"))),(0,n.kt)("li",{parentName:"ul"},"Fix sidebar tabs in Volto CSS ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c287db5abbfe068d4b255c41fd58d0433d2640c4"},(0,n.kt)("inlineCode",{parentName:"a"},"c287db5")))),(0,n.kt)("h3",{id:"055---2022-06-23"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.5.4...0.5.5"},"0.5.5")," - 2022-06-23"),(0,n.kt)("h4",{id:"-bug-fixes-29"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(contentBox): color of cards when inside content-boxes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/76a452031473f43928dee1d3ee705d06101e6a21"},(0,n.kt)("inlineCode",{parentName:"a"},"76a4520")))),(0,n.kt)("h4",{id:"-enhancements-39"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(homepage): moved fixes of homepage to custom and colored carousel arrow ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0a226ef3f5d328d45513764bec02d58241417db0"},(0,n.kt)("inlineCode",{parentName:"a"},"0a226ef")))),(0,n.kt)("h3",{id:"054---2022-06-16"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.5.3...0.5.4"},"0.5.4")," - 2022-06-16"),(0,n.kt)("h4",{id:"-bug-fixes-30"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(block-style): Content box preview in sidebar ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6362766f5e8dabf778e3864d2bb08966a55fc078"},(0,n.kt)("inlineCode",{parentName:"a"},"6362766"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): ensure transparency goes as high as the search icon ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4470e132e1e70fba3fdfb33fc63a1cc9d62700e8"},(0,n.kt)("inlineCode",{parentName:"a"},"4470e13")))),(0,n.kt)("h4",{id:"-enhancements-40"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(contentBox): add background as before element instead of using full-width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e0a5962c1b9cb0d3ef9a8d7b7208eded34eb3ce"},(0,n.kt)("inlineCode",{parentName:"a"},"7e0a596"))),(0,n.kt)("li",{parentName:"ul"},"change(content-box): content box links are now underlined ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f7976f50f5807a884522d6dba871a2757a1c5a98"},(0,n.kt)("inlineCode",{parentName:"a"},"f7976f5"))),(0,n.kt)("li",{parentName:"ul"},"change(homepage): added fixes from custom ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c3e03331d328f4fd7c6689f93bc1f1156013b8a9"},(0,n.kt)("inlineCode",{parentName:"a"},"c3e0333"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): add margin top with the height of the top section on edit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fefa6bb0f513e221ddb587f081c0e7d0c3067dfd"},(0,n.kt)("inlineCode",{parentName:"a"},"fefa6bb"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): fix default card color when inside content-boxes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6fdf3aabf9515289b36a5822e21edc5d282c4536"},(0,n.kt)("inlineCode",{parentName:"a"},"6fdf3aa"))),(0,n.kt)("li",{parentName:"ul"},"change(container): removed override of content-box-inner container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/66fe7d45adc631c3ebf0e8dd11de19d7ff60b894"},(0,n.kt)("inlineCode",{parentName:"a"},"66fe7d4")))),(0,n.kt)("h3",{id:"053---2022-06-16"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.5.2...0.5.3"},"0.5.3")," - 2022-06-16"),(0,n.kt)("h4",{id:"-bug-fixes-31"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(homepage): hero and homepage fixes for #151156 #198 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/43d4efc508750e0e9cbb93b9bffc3721be452c5a"},(0,n.kt)("inlineCode",{parentName:"a"},"43d4efc"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): fixed top section width on edit page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce5898b5ee41ea6959a2c454b3fb98216d71feb3"},(0,n.kt)("inlineCode",{parentName:"a"},"ce5898b")))),(0,n.kt)("h4",{id:"-enhancements-41"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(hero): added min height to hero-block-image-wrapper ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3cc37c027597573281710c9db98c687057d261dd"},(0,n.kt)("inlineCode",{parentName:"a"},"3cc37c0"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): spaced hero block has a 3rem margin top and bottom ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c463b033dda601bfd475b282bc0003200a053d45"},(0,n.kt)("inlineCode",{parentName:"a"},"c463b03"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): added extra top margin on hero-block-body from tablet and up within homepage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/64142c3c45f6a8ea6502842055a2341dcf16088c"},(0,n.kt)("inlineCode",{parentName:"a"},"64142c3"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): tweak min height of hero block ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e1271b4b5fdcd8205f0bec8b88ab9ae31f62251f"},(0,n.kt)("inlineCode",{parentName:"a"},"e1271b4"))),(0,n.kt)("li",{parentName:"ul"},"change(card,contentBox): use inherit for text color to inherit black from body ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c1ba3b6ddc16ddc7394aba8d78cad73b5a8c34cb"},(0,n.kt)("inlineCode",{parentName:"a"},"c1ba3b6"))),(0,n.kt)("li",{parentName:"ul"},"change(container): on section-edit modify only left and right padding values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fe6e3ec764643ec01e20ae9dbdde921774ef04cd"},(0,n.kt)("inlineCode",{parentName:"a"},"fe6e3ec"))),(0,n.kt)("li",{parentName:"ul"},"change(utilities): bump z-index of overlay class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ede3209556b620d2252bb03d4c994a92b6708fd2"},(0,n.kt)("inlineCode",{parentName:"a"},"ede3209"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): fixed variable reference for margin of body from homepage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/092b90b2a902b71cc96132ca3c96108edda56342"},(0,n.kt)("inlineCode",{parentName:"a"},"092b90b")))),(0,n.kt)("h3",{id:"052---2022-06-14"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.5.1...0.5.2"},"0.5.2")," - 2022-06-14"),(0,n.kt)("h4",{id:"-new-features-21"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(contentBox) : add new Content Box component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ebbb47fe685f9809aa3572263be376d9688371e"},(0,n.kt)("inlineCode",{parentName:"a"},"2ebbb47"))),(0,n.kt)("li",{parentName:"ul"},"feat(ContentBox): Add primary, secondary, tertiary themes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87cb2fe7e4cd5c2872299756f493e371abcbb05f"},(0,n.kt)("inlineCode",{parentName:"a"},"87cb2fe"))),(0,n.kt)("li",{parentName:"ul"},"feat(ContentBox): Update storybook with available themes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93b26b2f5f1d627aa8049df61257499e4798dd79"},(0,n.kt)("inlineCode",{parentName:"a"},"93b26b2")))),(0,n.kt)("h4",{id:"-enhancements-42"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(contentBox): restructure the component to be more flexible ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f0d2de67e43fafa10052871f99ac841c83cf8157"},(0,n.kt)("inlineCode",{parentName:"a"},"f0d2de6")))),(0,n.kt)("h4",{id:"-internal-changes-15"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(contentBox) : add lint changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5aaf740594f0001b1672bb6dc18d973f55c881f0"},(0,n.kt)("inlineCode",{parentName:"a"},"5aaf740")))),(0,n.kt)("h4",{id:"\ufe0f-others-36"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"perf(eol): change to lf ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/78b2955ff73d9436134d1a6399040b2d7c7f5714"},(0,n.kt)("inlineCode",{parentName:"a"},"78b2955"))),(0,n.kt)("li",{parentName:"ul"},"Cleanup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2b128dface95b560588a343f1ddf7bbaf3efb320"},(0,n.kt)("inlineCode",{parentName:"a"},"2b128df")))),(0,n.kt)("h3",{id:"051---2022-06-13"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.5.0...0.5.1"},"0.5.1")," - 2022-06-13"),(0,n.kt)("h4",{id:"-enhancements-43"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(header): changed homepage text color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/64ce8b61f8f2150513e09bf2926b48aa2ae1071c"},(0,n.kt)("inlineCode",{parentName:"a"},"64ce8b6"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): added styles for adding dark overlay to hero ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bf1d292fecfa8a6b222558f0d93f48e19bf6b8ea"},(0,n.kt)("inlineCode",{parentName:"a"},"bf1d292"))),(0,n.kt)("li",{parentName:"ul"},"change(homepage): hide stagingBanner on homepage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fb6e319dd10f4d148cc8f3b33dafc43280a0254f"},(0,n.kt)("inlineCode",{parentName:"a"},"fb6e319"))),(0,n.kt)("li",{parentName:"ul"},"change(header): use variable for homepage hero-block padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/89ff3441f269281ffb3da32cd3e5c64715b3204b"},(0,n.kt)("inlineCode",{parentName:"a"},"89ff344"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): modified grey-4 color to point to a 10% shade from original color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b406283e61c7356bec9d453567cd1ccde496880d"},(0,n.kt)("inlineCode",{parentName:"a"},"b406283"))),(0,n.kt)("li",{parentName:"ul"},"change(header): added min-height for mega menu needed for 1 items menus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/18814f48fb743c88d05554e9a1773f8d85dec86c"},(0,n.kt)("inlineCode",{parentName:"a"},"18814f4"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): hero section block integration #192 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ea2f40583951016c164c9abdf22d8e809d207fe"},(0,n.kt)("inlineCode",{parentName:"a"},"4ea2f40")))),(0,n.kt)("h4",{id:"\ufe0f-others-37"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Add hero block style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fa39656fd661d8af95f483a6f33a08e4c93c42f1"},(0,n.kt)("inlineCode",{parentName:"a"},"fa39656"))),(0,n.kt)("li",{parentName:"ul"},"Add padding if hero block is not full-width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/808b83957d6a866cc31c928f414fa8fa5da517a1"},(0,n.kt)("inlineCode",{parentName:"a"},"808b839"))),(0,n.kt)("li",{parentName:"ul"},"Cleanup available languages ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0c490512a6a6524efe9a37b4b61ab0061a240abb"},(0,n.kt)("inlineCode",{parentName:"a"},"0c49051"))),(0,n.kt)("li",{parentName:"ul"},"Use 1.5 rem ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1125cd7c65332fc5961ffbbbd2d2ab6bcc8b1b5b"},(0,n.kt)("inlineCode",{parentName:"a"},"1125cd7")))),(0,n.kt)("h3",{id:"050---2022-06-11"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.4.5...0.5.0"},"0.5.0")," - 2022-06-11"),(0,n.kt)("h4",{id:"-new-features-22"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(hero): added storybook implementation of hero component #172 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/17b9d1693e31bf7b3b41ca84be7bd21f07065674"},(0,n.kt)("inlineCode",{parentName:"a"},"17b9d16"))),(0,n.kt)("li",{parentName:"ul"},"feat(hero): add hero block component and stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6019fc843ec14a8afc7558e92c2d4b4bb14ee199"},(0,n.kt)("inlineCode",{parentName:"a"},"6019fc8")))),(0,n.kt)("h4",{id:"-bug-fixes-32"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(header): Internal links in mega menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d8ca13558c3e8c336800791f2fea8a8d33a2b602"},(0,n.kt)("inlineCode",{parentName:"a"},"d8ca135"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): show active menu when clicking on children ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a54fa67a1a92e2ab4216e6d149f66e1ee53aab89"},(0,n.kt)("inlineCode",{parentName:"a"},"a54fa67"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): accessibility and dropdown possition fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/505ac36a27d86e620fb5af515a0b8b5979610f0a"},(0,n.kt)("inlineCode",{parentName:"a"},"505ac36"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): fix accessibility issue by David ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/783dcec0d140e6e6e568d0f82833dcbf8a5c7d3d"},(0,n.kt)("inlineCode",{parentName:"a"},"783dcec"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): dropdowns disappear on resize ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/52338fd3e711f4918612e052dc2034a8d9bd40bd"},(0,n.kt)("inlineCode",{parentName:"a"},"52338fd"))),(0,n.kt)("li",{parentName:"ul"},"fix(header-topdropdown): dedupe html elements for topdropdowns ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cd8a2a7ea091e81b736438f7c2a87c254af1b092"},(0,n.kt)("inlineCode",{parentName:"a"},"cd8a2a7"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): transparency class should apply on the current bg color or image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f9a0033c5538cb19f08f26cf28d47954cc52607d"},(0,n.kt)("inlineCode",{parentName:"a"},"f9a0033"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): mobile dropdown now visible ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/34371b436f2ec100f3920f78de49983ba16679b0"},(0,n.kt)("inlineCode",{parentName:"a"},"34371b4"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): dropdown disappears after window resize #116 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fc7dd8bd7911421fb734a696a2dd5d3ad3b652b0"},(0,n.kt)("inlineCode",{parentName:"a"},"fc7dd8b"))),(0,n.kt)("li",{parentName:"ul"},"fix(header-topdropdown): dedupe html dropdown elements for topdropdowns #115 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f10a7a8743a5fb2cecd0c3374ec9d894e914143f"},(0,n.kt)("inlineCode",{parentName:"a"},"f10a7a8")))),(0,n.kt)("h4",{id:"-enhancements-44"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): update mega menu in header component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2d1ce454553d116efa96288079b8b77649e10abb"},(0,n.kt)("inlineCode",{parentName:"a"},"2d1ce45"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update structure and variables of top bar ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af709094f94f0cc2e2309b1aedb376e45dc7f136"},(0,n.kt)("inlineCode",{parentName:"a"},"af70909"))),(0,n.kt)("li",{parentName:"ul"},"change(header): renamed mega menu items href attribute to url ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ed8144589f87a9ad219c97193863c999a72cb6d"},(0,n.kt)("inlineCode",{parentName:"a"},"3ed8144"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update main section and and add color variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2f0fd1de7c04eff4b2a9b62d03dd13a1b0d69bc"},(0,n.kt)("inlineCode",{parentName:"a"},"f2f0fd1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): minor updates on colors and widths ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a70129fd929fedb344a47e049cca94274e84a3b1"},(0,n.kt)("inlineCode",{parentName:"a"},"a70129f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero): add full-heigh control to adjust height ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a45cb7c599cdc11426207001e67d8f7d727233fe"},(0,n.kt)("inlineCode",{parentName:"a"},"a45cb7c"))),(0,n.kt)("li",{parentName:"ul"},"change(header): disable sticky setting until feature is more stable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1d7af954c85cb6a8a657c1625e4ae863e562346a"},(0,n.kt)("inlineCode",{parentName:"a"},"1d7af95"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero):make button variant and inverted different button controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e182ca9ecdb76507205d84f83cad6a79dd74a03"},(0,n.kt)("inlineCode",{parentName:"a"},"7e182ca"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header):main bar sticky on scroll up ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9c9e7c6f9651c0663a1eab1856d7324a73afb2de"},(0,n.kt)("inlineCode",{parentName:"a"},"9c9e7c6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(headings): update heading sizes for mobile ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19f3ccacaf2c744b5f5c2ec8635773de7ef0016b"},(0,n.kt)("inlineCode",{parentName:"a"},"19f3cca"))),(0,n.kt)("li",{parentName:"ul"},"change(header): hide first link(home) from header menu on site ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ae7f3b9385620eb3d840dd90f512e37cd8556a6d"},(0,n.kt)("inlineCode",{parentName:"a"},"ae7f3b9"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): typo correction and key setting on list.items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/96d2c4fbfa722d22a215e8d27f1400e65fe9476e"},(0,n.kt)("inlineCode",{parentName:"a"},"96d2c4f"))),(0,n.kt)("li",{parentName:"ul"},"change(header): use Link instead of a tag for menu items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9812b3fba7b8305399d6972daf135b8a2d88e876"},(0,n.kt)("inlineCode",{parentName:"a"},"9812b3f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add control for inverted logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/023ca45e6f263166211cbea0d63b1938d11221da"},(0,n.kt)("inlineCode",{parentName:"a"},"023ca45"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero): move quoted utility to h2 tag ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7376676b4875494f16c49945f6b5dac19c6b8009"},(0,n.kt)("inlineCode",{parentName:"a"},"7376676"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add link for menu title inside desktop mega menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24355d000b2bd808b2031cd2b78e60cafb9ad5b1"},(0,n.kt)("inlineCode",{parentName:"a"},"24355d0"))),(0,n.kt)("li",{parentName:"ul"},"refactor(utilities): update hex with color token ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8dc65ef55a62dcb32b6eb8a684524a8dc1fa6ba6"},(0,n.kt)("inlineCode",{parentName:"a"},"8dc65ef"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): and mega menu to latest spec #114 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/44fcf68be242f97ced852b28ac3ab820dc0e1045"},(0,n.kt)("inlineCode",{parentName:"a"},"44fcf68"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update search input and file endings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/afab36f96f245e197eff528cb1d9e6fea45bc7ba"},(0,n.kt)("inlineCode",{parentName:"a"},"afab36f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add control that toggles transparency class on main section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8d4bdb9c527f102ffd3718f32bf1a43309a9bb4"},(0,n.kt)("inlineCode",{parentName:"a"},"b8d4bdb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): restore union dropdown after implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e98bab497ee10ad89d2dfed76c7117b633206fe"},(0,n.kt)("inlineCode",{parentName:"a"},"7e98bab"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): minor responsive fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/16a000634505c9e8f8b310860a30b62798a0fb87"},(0,n.kt)("inlineCode",{parentName:"a"},"16a0006"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero): align hero's text and meta seperately ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4fa958f7c7cc6d331a8eb7aaf25dc44d6cd3632a"},(0,n.kt)("inlineCode",{parentName:"a"},"4fa958f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero):add button variant controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f362a7b2ec273131fa0876f23b74c740c7217b3a"},(0,n.kt)("inlineCode",{parentName:"a"},"f362a7b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update search input ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/368962eabb668e2ec1bdcd18ae81658e7b1d911b"},(0,n.kt)("inlineCode",{parentName:"a"},"368962e"))),(0,n.kt)("li",{parentName:"ul"},"change(header): mark top level active menu item ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/665c449bc2667cc1471a4b97923c897ad3506792"},(0,n.kt)("inlineCode",{parentName:"a"},"665c449"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero):prettier & style changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d84688440417a430afd9fd24f4c8cfeef0121203"},(0,n.kt)("inlineCode",{parentName:"a"},"d846884"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add control for main section stickiness ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2f07572f78074137e7e6a49585273210ed5cedcb"},(0,n.kt)("inlineCode",{parentName:"a"},"2f07572"))),(0,n.kt)("li",{parentName:"ul"},"change(header): use viewport width for changing mobile text in header dropdowns ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b50fa585c0abeedc04a46395f08e50a9e112c430"},(0,n.kt)("inlineCode",{parentName:"a"},"b50fa58"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add fluid font sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f2743e39107fd1bd00a54e03bf92963eb9853f2"},(0,n.kt)("inlineCode",{parentName:"a"},"5f2743e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header) add position sticky & transparent for main section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/29df772edfe23b1752aa3d184659eea90c3c9221"},(0,n.kt)("inlineCode",{parentName:"a"},"29df772"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero): update variables with new design tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1d9792231c50f12fd68364e201054f6ab0926665"},(0,n.kt)("inlineCode",{parentName:"a"},"1d97922"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Language List): render language dropdown as ul and li elements ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3617442da78af07d3f473d0c43c47dd48c9b2ac3"},(0,n.kt)("inlineCode",{parentName:"a"},"3617442"))),(0,n.kt)("li",{parentName:"ul"},"change(header): introduced item class to the mega menu link content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/00ca376ea4cf1de4851e84567b97c374ee7f66e3"},(0,n.kt)("inlineCode",{parentName:"a"},"00ca376"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Language List): add less variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7ccc1ccf57419b6eecbf71d479db72b84428d43a"},(0,n.kt)("inlineCode",{parentName:"a"},"7ccc1cc"))),(0,n.kt)("li",{parentName:"ul"},"change(header): disabled active menu when clicking on globalnav links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3f7b5eedb038b51fbae8a14a683dc6adc919549b"},(0,n.kt)("inlineCode",{parentName:"a"},"3f7b5ee"))),(0,n.kt)("li",{parentName:"ul"},"change(header): target link instead of span directly ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9e865fbb5b256196756c3d84de397296ac0b447a"},(0,n.kt)("inlineCode",{parentName:"a"},"9e865fb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): remove unused imports ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e232db6ce0b2553be79d98d8497fa06f548b772"},(0,n.kt)("inlineCode",{parentName:"a"},"7e232db")))),(0,n.kt)("h4",{id:"\ufe0f-others-38"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Add item themes; override .block .ui.image width based on size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/06010db21398638d46d2e007317d72a7aff7e7d9"},(0,n.kt)("inlineCode",{parentName:"a"},"06010db"))),(0,n.kt)("li",{parentName:"ul"},"Move item icon themes to item.overrides ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/31e8921f4ee4d92ba3a9c58275b41dd3101cffd2"},(0,n.kt)("inlineCode",{parentName:"a"},"31e8921"))),(0,n.kt)("li",{parentName:"ul"},"Override only the width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8d4927084e5daedcb69e6f3a57cab73a9016a55f"},(0,n.kt)("inlineCode",{parentName:"a"},"8d49270"))),(0,n.kt)("li",{parentName:"ul"},"Override tile image in .block parrent ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/005655ddff6f45e211f1ff8156b0b7efa1e47a2e"},(0,n.kt)("inlineCode",{parentName:"a"},"005655d"))),(0,n.kt)("li",{parentName:"ul"},"Update package.json ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9dc38165a95deca1faf2dfccdc03fd6cab3d8c54"},(0,n.kt)("inlineCode",{parentName:"a"},"9dc3816"))),(0,n.kt)("li",{parentName:"ul"},"feature(item): added themes to item icons #190 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a6a2907df09575a18fb6e81dc52e8d6651eff118"},(0,n.kt)("inlineCode",{parentName:"a"},"a6a2907"))),(0,n.kt)("li",{parentName:"ul"},"update storybook header.topdropdown ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e58ac0821af56c06272e3373383647cbbff20978"},(0,n.kt)("inlineCode",{parentName:"a"},"e58ac08"))),(0,n.kt)("li",{parentName:"ul"},"use volto-screen-helper width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea156aad1100166ba78635163cfacdcfb913c1d4"},(0,n.kt)("inlineCode",{parentName:"a"},"ea156aa"))),(0,n.kt)("li",{parentName:"ul"},"Add divider content for metadata field in Banner ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/327ad1c5fdca0d376d04fd36084b940e5dd016ab"},(0,n.kt)("inlineCode",{parentName:"a"},"327ad1c"))),(0,n.kt)("li",{parentName:"ul"},"rename to viewportWidth ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32162e7c695774bbb68ac63a0008e8b148f1e9f5"},(0,n.kt)("inlineCode",{parentName:"a"},"32162e7"))),(0,n.kt)("li",{parentName:"ul"},"don't connect component to store ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/470b8bade5e8f2eaabb20a7bb02c8e82ca42f8a0"},(0,n.kt)("inlineCode",{parentName:"a"},"470b8ba"))),(0,n.kt)("li",{parentName:"ul"},"Add end of line ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51639d804a2b84f66373fb77c569bcc43b22e303"},(0,n.kt)("inlineCode",{parentName:"a"},"51639d8"))),(0,n.kt)("li",{parentName:"ul"},"behave as mobile under 480 only ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/11b99e15cb83245a32bb04f3937f5b95a60b1e95"},(0,n.kt)("inlineCode",{parentName:"a"},"11b99e1"))),(0,n.kt)("li",{parentName:"ul"},"make it account for all mobile-s,m,l ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/69e23ae8d12042f241dc53c9e296c340d5b17089"},(0,n.kt)("inlineCode",{parentName:"a"},"69e23ae")))),(0,n.kt)("h3",{id:"045---2022-06-08"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.4.4...0.4.5"},"0.4.5")," - 2022-06-08"),(0,n.kt)("h4",{id:"-enhancements-45"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(tabs): Add style for tabs accordion template #187 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fb8adbf84ac564a14d45bb6e8f4e1661811672d5"},(0,n.kt)("inlineCode",{parentName:"a"},"fb8adbf"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): avoid react error by providing key prop to grid column ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef0b1937d614a889a0c2117e483a834ed1aec1e3"},(0,n.kt)("inlineCode",{parentName:"a"},"ef0b193")))),(0,n.kt)("h4",{id:"\ufe0f-others-39"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Cleanup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4b9637ebd2d6c015f8d4323551c6cbc4b7506df"},(0,n.kt)("inlineCode",{parentName:"a"},"d4b9637"))),(0,n.kt)("li",{parentName:"ul"},"Add style for tabs accordion template ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a10998372a268b99991f7dda55103149f29d00cb"},(0,n.kt)("inlineCode",{parentName:"a"},"a109983")))),(0,n.kt)("h3",{id:"044---2022-06-08"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.4.3...0.4.4"},"0.4.4")," - 2022-06-08"),(0,n.kt)("h4",{id:"-new-features-23"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(divider): create story for divider ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b10a2e08b14962bed9f13317754f4124ee60d313"},(0,n.kt)("inlineCode",{parentName:"a"},"b10a2e0")))),(0,n.kt)("h4",{id:"-bug-fixes-33"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(divider): restore space between classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c595c152c144463f33757157ed7d6797ae31ceed"},(0,n.kt)("inlineCode",{parentName:"a"},"c595c15"))),(0,n.kt)("li",{parentName:"ul"},"fix(divider): Text colors and transform ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e524e1002bb0700ea69782cf5a95c6073ab383d2"},(0,n.kt)("inlineCode",{parentName:"a"},"e524e10"))),(0,n.kt)("li",{parentName:"ul"},"fix(footer): story aria labels for social media links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/254bdc7ba944943f5d08a71f9d0a3a31bdc06044"},(0,n.kt)("inlineCode",{parentName:"a"},"254bdc7")))),(0,n.kt)("h4",{id:"-enhancements-46"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update logos and less structure ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/66b8e0f12825968d94f7d572f2823d9a8a3a239b"},(0,n.kt)("inlineCode",{parentName:"a"},"66b8e0f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): first footer updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d18a2ee59d0deb143075d8dfeb949898ad1f6399"},(0,n.kt)("inlineCode",{parentName:"a"},"d18a2ee"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): logo updates and adjustments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/101bc9dfe4136240457f335de867a83c28d59339"},(0,n.kt)("inlineCode",{parentName:"a"},"101bc9d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): use tokens and adjust spacing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2cb166949913f725271050e863b38e7630748135"},(0,n.kt)("inlineCode",{parentName:"a"},"2cb1669"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): moved SubFooter logic to SubFooter.jsx from Footer story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/902383a0bb3446dc69237099bd429ead5e30a6c1"},(0,n.kt)("inlineCode",{parentName:"a"},"902383a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Divider):add divider with content inside story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2d66dca901fa189d69b65239dc34b1969097be8"},(0,n.kt)("inlineCode",{parentName:"a"},"e2d66dc"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): added managed by section as properties ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9328fc3084baf22439e1892d256d9a167b911849"},(0,n.kt)("inlineCode",{parentName:"a"},"9328fc3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(divider): remove custom divider ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4870d2252ad216e82213fa1f94cc39609ae676d"},(0,n.kt)("inlineCode",{parentName:"a"},"d4870d2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Divider_:remove green color class & add tertiary ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/95f30186bc1768e08f00ad7d5ffa2a70402ac553"},(0,n.kt)("inlineCode",{parentName:"a"},"95f3018"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): use remix icons for social links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5ef9aa2cebb6f96857a1920cefbf7e367b4d7c28"},(0,n.kt)("inlineCode",{parentName:"a"},"5ef9aa2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Divider):remove clean class and use fitted prop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8d2be350dcc44fd56b5fbfb791fb6b2a45bd8a52"},(0,n.kt)("inlineCode",{parentName:"a"},"8d2be35"))),(0,n.kt)("li",{parentName:"ul"},"change(Divider): Rename color property to theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0deffc823609d23131a85bc180e4a3f5a67a64aa"},(0,n.kt)("inlineCode",{parentName:"a"},"0deffc8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update links and logo align ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7afbab9b37982a557ac8bfa4430205ce912c3b8b"},(0,n.kt)("inlineCode",{parentName:"a"},"7afbab9"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): tweaked column sizes to the values before my changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fdf271868e44bce2904cc28c6fa924ee4c9ba759"},(0,n.kt)("inlineCode",{parentName:"a"},"fdf2718"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): to latest figma design #182 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e0ba2b659db9dc1b140d853840a06bd3ce31cab"},(0,n.kt)("inlineCode",{parentName:"a"},"3e0ba2b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): move subfooter logic to the proper component #185 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/303457719128c9699dd34939bd8db2b647977667"},(0,n.kt)("inlineCode",{parentName:"a"},"3034577"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b0b872b1415c9792a5886f619195f9c0471ea564"},(0,n.kt)("inlineCode",{parentName:"a"},"b0b872b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(testimonial): update divider ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/784450abdf395318fe89d8d3d0a1e398393cc93c"},(0,n.kt)("inlineCode",{parentName:"a"},"784450a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(testimonial): changed divider color to secondary ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/84282f960ab22ccb8403e975c055c61d1023193a"},(0,n.kt)("inlineCode",{parentName:"a"},"84282f9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(divider): remove custom divider from theme config ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a0409e8df3c9ba043717140455369a3630f0da85"},(0,n.kt)("inlineCode",{parentName:"a"},"a0409e8")))),(0,n.kt)("h4",{id:"-documentation-changes-14"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(divider): switch to secondary color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/239844be374a2f6bc4667e7ab3d2f52bfdc181ad"},(0,n.kt)("inlineCode",{parentName:"a"},"239844b"))),(0,n.kt)("li",{parentName:"ul"},"docs(divider): showcase path fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5ea03f60034edc918054aa273e44b84b2537716"},(0,n.kt)("inlineCode",{parentName:"a"},"d5ea03f")))),(0,n.kt)("h4",{id:"\ufe0f-others-40"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Remove unnecessary spaces ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d137981430809345bfb3ad494e7ab981c93c3e51"},(0,n.kt)("inlineCode",{parentName:"a"},"d137981"))),(0,n.kt)("li",{parentName:"ul"},"lint fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/657cf4ed917c4ff992aa033c3d9f4884a949d86d"},(0,n.kt)("inlineCode",{parentName:"a"},"657cf4e"))),(0,n.kt)("li",{parentName:"ul"},"perf(storybook): added storybook favicon ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/38eabc3124c85dd56bf5c68c0fb1e967c39055ec"},(0,n.kt)("inlineCode",{parentName:"a"},"38eabc3")))),(0,n.kt)("h3",{id:"043---2022-06-03"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.4.2...0.4.3"},"0.4.3")," - 2022-06-03"),(0,n.kt)("h4",{id:"-bug-fixes-34"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(edit): Fix columns/accordion inner toolbar padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fafbb525baa60c339906dc6a33d2f9418d050be6"},(0,n.kt)("inlineCode",{parentName:"a"},"fafbb52")))),(0,n.kt)("h4",{id:"-enhancements-47"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): completed removal of description from guides ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/42424b9213ece8d8df84d40f1b73e142cb0ffc6b"},(0,n.kt)("inlineCode",{parentName:"a"},"42424b9")))),(0,n.kt)("h3",{id:"042---2022-06-02"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.4.1...0.4.2"},"0.4.2")," - 2022-06-02"),(0,n.kt)("h4",{id:"-enhancements-48"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): moved color swatches around in the color guide ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8a395fce52a32cf92449a24d3d4cce5abf25a284"},(0,n.kt)("inlineCode",{parentName:"a"},"8a395fc"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): removed description from components and introduced category listing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f220bf0785f5aaede8c25c4164120b09de67b018"},(0,n.kt)("inlineCode",{parentName:"a"},"f220bf0"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): rename gap to space and added em spaces ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f5b042d311518ec3fb32c7f259c39ff62d4547f8"},(0,n.kt)("inlineCode",{parentName:"a"},"f5b042d"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): moved extra docs to webdev section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1ce0797b91418272e4e405467cd1468292620005"},(0,n.kt)("inlineCode",{parentName:"a"},"1ce0797"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): moved md_components files into webdev/md_components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/73c1c08a270d504fa6f2ba2579bcb3e6e25fb112"},(0,n.kt)("inlineCode",{parentName:"a"},"73c1c08"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): added category yml for all sections ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/17405728e3f44828da50890b9fc0f4e8a07f8bf2"},(0,n.kt)("inlineCode",{parentName:"a"},"1740572"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): color guideline updates and spacing tokens documentation #148 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c1154ba172c3b3b40b565c2bcb590f1a5e6b25a4"},(0,n.kt)("inlineCode",{parentName:"a"},"c1154ba"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): modified story links to avoid broken usage tabs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/78dc8d8f4e7cade3ab0e911e6dc002eefc1e7986"},(0,n.kt)("inlineCode",{parentName:"a"},"78dc8d8"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): renamed several file id's so that they match the incremental naming sequence ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/11299c9a4c41ca901926f852227dbca0bc1aee17"},(0,n.kt)("inlineCode",{parentName:"a"},"11299c9")))),(0,n.kt)("h4",{id:"-documentation-changes-15"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(Docusaurus): timeline, testimonial, quote and tags ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aaa54ecbe182872ffc7fff275d5065ebe790d348"},(0,n.kt)("inlineCode",{parentName:"a"},"aaa54ec"))),(0,n.kt)("li",{parentName:"ul"},"docs(spacing): add relative gap tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/92abc8fff2c7006e2c64684048e7783216a230bb"},(0,n.kt)("inlineCode",{parentName:"a"},"92abc8f"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): updated colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a28c99e60867c1eaa1b7b68d4154ccaa8c9ef958"},(0,n.kt)("inlineCode",{parentName:"a"},"a28c99e"))),(0,n.kt)("li",{parentName:"ul"},"docs(tags/content): new page about tags and content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/60be40268a77606c53fc45641bc22166b50b75e7"},(0,n.kt)("inlineCode",{parentName:"a"},"60be402"))),(0,n.kt)("li",{parentName:"ul"},"docs(Docusaurus): labeled icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6a0f61ede3a36c7d66d9b3091b93b0b5ff9a445"},(0,n.kt)("inlineCode",{parentName:"a"},"f6a0f61"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): add font size and line height tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ff65e47cfe56eb3efe976300b764ba13f8685ce"},(0,n.kt)("inlineCode",{parentName:"a"},"2ff65e4"))),(0,n.kt)("li",{parentName:"ul"},"docs(spacing): add spacing gap tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2d53727f8e817588421efea464e849c9f9e16dce"},(0,n.kt)("inlineCode",{parentName:"a"},"2d53727"))),(0,n.kt)("li",{parentName:"ul"},"docs(spacing): add missing gaps ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/442db468830150c8e4ad5f91775fc5b3c47dd655"},(0,n.kt)("inlineCode",{parentName:"a"},"442db46"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): minor fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e66513f08cff598881ce1051b482ddadf8e0593"},(0,n.kt)("inlineCode",{parentName:"a"},"6e66513"))),(0,n.kt)("li",{parentName:"ul"},"docs(spacing): aligned images ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e946fe59457b861a31939e99adf4b380777e01e0"},(0,n.kt)("inlineCode",{parentName:"a"},"e946fe5"))),(0,n.kt)("li",{parentName:"ul"},"docs(spacing): new image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fcd3294d53db76580b8bffc9678a09fd65b33113"},(0,n.kt)("inlineCode",{parentName:"a"},"fcd3294")))),(0,n.kt)("h4",{id:"\ufe0f-others-41"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"merge changes from develop into docusaurus token documentation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a9401384ddf5fcfbf29e50d34f3d7851be85f19a"},(0,n.kt)("inlineCode",{parentName:"a"},"a940138"))),(0,n.kt)("li",{parentName:"ul"},"perf(docs): restructuring order ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f4134d81d1cc59b8ba0d8669415b5eb31c0513d"},(0,n.kt)("inlineCode",{parentName:"a"},"8f4134d")))),(0,n.kt)("h3",{id:"041---2022-06-02"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.4.0...0.4.1"},"0.4.1")," - 2022-06-02"),(0,n.kt)("h4",{id:"-new-features-24"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(languageLabeledIcon) : add new component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/110558eeec37d5b5f616a95298a313ba230dd6f4"},(0,n.kt)("inlineCode",{parentName:"a"},"110558e"))),(0,n.kt)("li",{parentName:"ul"},"feat(LanguageLabeledIcon):add new component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d00200c278e1dab02b449b460a325e0f2e7b8ccd"},(0,n.kt)("inlineCode",{parentName:"a"},"d00200c"))),(0,n.kt)("li",{parentName:"ul"},"feat(newTabLabeledIcon) : add new component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f5cd31257a306a58c1d9cdbf7cb428701412369"},(0,n.kt)("inlineCode",{parentName:"a"},"8f5cd31"))),(0,n.kt)("li",{parentName:"ul"},"feat(labeledIconGroup) : add new component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/787d648342d78c4f9d28fde9d08e83089ef7b08f"},(0,n.kt)("inlineCode",{parentName:"a"},"787d648"))),(0,n.kt)("li",{parentName:"ul"},"feat(DownLoadLabeledIcon) : add new component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6ea2fa1ec17ce235401a8ac741afa8fede920d26"},(0,n.kt)("inlineCode",{parentName:"a"},"6ea2fa1")))),(0,n.kt)("h4",{id:"-bug-fixes-35"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(LabeledIcon) : fix lint errors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91b042f8c16bd3e99659c1c24a5f2a946c72b03f"},(0,n.kt)("inlineCode",{parentName:"a"},"91b042f"))),(0,n.kt)("li",{parentName:"ul"},"fix(LabeledIconGroup) : fix links for tests ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/daa10653ca37f3e83302e2ebcc566b5f5ec4c4d9"},(0,n.kt)("inlineCode",{parentName:"a"},"daa1065"))),(0,n.kt)("li",{parentName:"ul"},"fix(LanguageLabeledIcon):bug fix & languages change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1436e2bc270f8f079f07b7909254bd2e6e087084"},(0,n.kt)("inlineCode",{parentName:"a"},"1436e2b"))),(0,n.kt)("li",{parentName:"ul"},"fix(LabeledIconGroup):fix based on Langauge & Download Labeled icon components changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3015864ce740f534aa204402f85a9f392e342513"},(0,n.kt)("inlineCode",{parentName:"a"},"3015864"))),(0,n.kt)("li",{parentName:"ul"},"fix(newTabLabeledIcon) : add link item ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b1a9ada3dd7dae9e1841cfde5319a6ab37b15de2"},(0,n.kt)("inlineCode",{parentName:"a"},"b1a9ada"))),(0,n.kt)("li",{parentName:"ul"},"fix(Labeled Icons):minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/00f3022cdc2bfad634707f0d6d05768868f599be"},(0,n.kt)("inlineCode",{parentName:"a"},"00f3022")))),(0,n.kt)("h4",{id:"-enhancements-49"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcons): adjust new tab labeled icon to figma and replace px with rems ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/904615d789ea711678f43ce9f9d02a450289031f"},(0,n.kt)("inlineCode",{parentName:"a"},"904615d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(LanguageLabeledIcon):implement with pop up ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0f3dd8f0388484f94351a0ab0798ab53e84c9229"},(0,n.kt)("inlineCode",{parentName:"a"},"0f3dd8f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcon): add group wrapper in labeled icon stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4b7dd314230145b6239fd800d41f546ab5d9eebb"},(0,n.kt)("inlineCode",{parentName:"a"},"4b7dd31"))),(0,n.kt)("li",{parentName:"ul"},"refactor(DownloadLabeledIcon):implement with pop up ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aa61f9b7d449c08c08bc4c004da6a0458598c828"},(0,n.kt)("inlineCode",{parentName:"a"},"aa61f9b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcons): adjust language labeled icon to figma ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5741e3d2e95665ef12670335b12d29cfbf998fdc"},(0,n.kt)("inlineCode",{parentName:"a"},"5741e3d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcons): adjust download icon to figma and replace px with rems ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ae85307a62526fed75ef0b1d37ad59076370b5a"},(0,n.kt)("inlineCode",{parentName:"a"},"4ae8530"))),(0,n.kt)("li",{parentName:"ul"},"refactor(LanguageLabeledIcons):minor storybook change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/78f55442a80cbc2f716ba81274ed08204e3c502a"},(0,n.kt)("inlineCode",{parentName:"a"},"78f5544"))),(0,n.kt)("li",{parentName:"ul"},"refactor(LanguageLabeledIcon): set language code to uppercase and minor storybook change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac286931282c0a69bc6d7803e96cbe302db8994f"},(0,n.kt)("inlineCode",{parentName:"a"},"ac28693"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcon): adjust paddings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9c1ecddc52c81be1d952d0af67862a284eba9eec"},(0,n.kt)("inlineCode",{parentName:"a"},"9c1ecdd"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcons): update margins for group labeled icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5fa5ca9103a5d8ad1510c90cc8c46d0c82abcc63"},(0,n.kt)("inlineCode",{parentName:"a"},"5fa5ca9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcons): add variable for icon color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f9d3cba5115c5c91aaaca49c1f834950400673a"},(0,n.kt)("inlineCode",{parentName:"a"},"9f9d3cb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcons): update colors on download links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c04264229c91bfdea927fd22f4ee1e8ddbcebd5c"},(0,n.kt)("inlineCode",{parentName:"a"},"c042642")))),(0,n.kt)("h4",{id:"-internal-changes-16"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(labeledIconGroup) : lint changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/535cee4795dff75b35856cb4406a9bd33ee07ca4"},(0,n.kt)("inlineCode",{parentName:"a"},"535cee4"))),(0,n.kt)("li",{parentName:"ul"},"style(downloadLabeledIcon) : fix styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d8e3acb3bac1a4174d4bb526d6188cb5e5f8faa"},(0,n.kt)("inlineCode",{parentName:"a"},"6d8e3ac"))),(0,n.kt)("li",{parentName:"ul"},"style(downloadLabeledIcon) : fix alignment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/455801701d2958515885ba2c398312f0c56057b0"},(0,n.kt)("inlineCode",{parentName:"a"},"4558017"))),(0,n.kt)("li",{parentName:"ul"},"chore(LabeledIconGroup) : lint changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab364763bb2526adbbb7fc3c656a16b497568940"},(0,n.kt)("inlineCode",{parentName:"a"},"ab36476")))),(0,n.kt)("h3",{id:"040---2022-06-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.3.1...0.4.0"},"0.4.0")," - 2022-06-01"),(0,n.kt)("h4",{id:"-new-features-25"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(Carousel): create carousel for cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2b0d73798b4fcbf2897d7a8167d9b4d3b3374fb2"},(0,n.kt)("inlineCode",{parentName:"a"},"2b0d737"))),(0,n.kt)("li",{parentName:"ul"},"feat(ItemwithIcons): Initial Item group with icons, new item variation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7f4ea476264856845a07cd24be6ec86ccd21ed8d"},(0,n.kt)("inlineCode",{parentName:"a"},"7f4ea47"))),(0,n.kt)("li",{parentName:"ul"},"feat(utilities): add file and basic utilities ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/05c88b294a49590e3fb355fb6e113f5020442915"},(0,n.kt)("inlineCode",{parentName:"a"},"05c88b2"))),(0,n.kt)("li",{parentName:"ul"},"feat(utilities): add file with basic utilities classes #173 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/855185ff22c77efb75cc5c7850d181254b4c4927"},(0,n.kt)("inlineCode",{parentName:"a"},"855185f")))),(0,n.kt)("h4",{id:"-bug-fixes-36"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(tokens): hsla function for shadows ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8e5d37a6e88321b1e2daf995b407c4ddd6e866e"},(0,n.kt)("inlineCode",{parentName:"a"},"b8e5d37"))),(0,n.kt)("li",{parentName:"ul"},"fix(tokens): remove css var from less file ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a9c422476b412287713a6b475406615c3aed2aca"},(0,n.kt)("inlineCode",{parentName:"a"},"a9c4224"))),(0,n.kt)("li",{parentName:"ul"},"fix(carousel):add storybook controls descriptions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/269a60383ed1e54fc57e26d4eed6b37d1da32236"},(0,n.kt)("inlineCode",{parentName:"a"},"269a603"))),(0,n.kt)("li",{parentName:"ul"},"fix(item): remove image width css from item.less ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7b21cb2d5ddf6a6f72646f47fd268a0bd7af757d"},(0,n.kt)("inlineCode",{parentName:"a"},"7b21cb2"))),(0,n.kt)("li",{parentName:"ul"},"fix(table): Set responsive breakpoint to @tabletBreakpoint ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/067e01842030bfa5639e2a55cb8af5047bb2996f"},(0,n.kt)("inlineCode",{parentName:"a"},"067e018")))),(0,n.kt)("h4",{id:"-enhancements-50"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(item): import item.less in theme definitions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c51637480192dbece828616010174648ac865e2e"},(0,n.kt)("inlineCode",{parentName:"a"},"c516374"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Label):add corner,ribbon & basic label stories and styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2bbbb947113a59127f91b86917ef0edbf36ab16"},(0,n.kt)("inlineCode",{parentName:"a"},"e2bbbb9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Label):style changes based on label importance class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce4d5d1a5bf1b1183242a253e37c509d61f82b8c"},(0,n.kt)("inlineCode",{parentName:"a"},"ce4d5d1"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): rename gap to space and added em spaces ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/719efc44070ef87f049a92e4da96bb111e9fc8ff"},(0,n.kt)("inlineCode",{parentName:"a"},"719efc4"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): add classes for size, set default to tile and add controls for grouped items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5a0405abba4e5f5d36f899dc9e47f43a96d5e49"},(0,n.kt)("inlineCode",{parentName:"a"},"d5a0405"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): add borders, shadows, shapes and z-index tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7069106c2b0ada9cdbad63249b4ada7fde72e05f"},(0,n.kt)("inlineCode",{parentName:"a"},"7069106"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): name spacing tokens gaps and added missing values up to 80px as documented ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9fbd912a6f027150149d82678f88885a939120b0"},(0,n.kt)("inlineCode",{parentName:"a"},"9fbd912"))),(0,n.kt)("li",{parentName:"ul"},"refactor(quote): Rename sourceInfo to extra info ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/76c2b400de4814fe79f303bfd2a82842c848231c"},(0,n.kt)("inlineCode",{parentName:"a"},"76c2b40"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): WIP replacing unstackable with row ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e3a44de4b2dd26667e80e0d131c55b08f3c527d9"},(0,n.kt)("inlineCode",{parentName:"a"},"e3a44de"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tocens): add color design tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/13bb165e103a25aadb9da6414773dc0d35081d88"},(0,n.kt)("inlineCode",{parentName:"a"},"13bb165"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): adjust margins to match figma designs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6334581b336a2f486e85199f371126beea47b92f"},(0,n.kt)("inlineCode",{parentName:"a"},"6334581"))),(0,n.kt)("li",{parentName:"ul"},"refactor(carousel): remove title from story and color on card hover ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/12a1d7c3bd5e7ba6edf4eb20a2d7a6f8f22955f9"},(0,n.kt)("inlineCode",{parentName:"a"},"12a1d7c"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): updated sizes with 4-8-16px increments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f53d655df2b24053a5d331c56dfd14bd3602dfd"},(0,n.kt)("inlineCode",{parentName:"a"},"1f53d65"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): added size tokens to be used for width of elements ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cda5dea1f6ad1ae980c89999d323d7b385894025"},(0,n.kt)("inlineCode",{parentName:"a"},"cda5dea"))),(0,n.kt)("li",{parentName:"ul"},"change(utilities): values need important rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/96150d9a22cb6be6f338f1e9d052cbd65e3602fc"},(0,n.kt)("inlineCode",{parentName:"a"},"96150d9"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): added also rem space values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aedbbddaf7f8be88ed2f8a2b8c21b60752896c53"},(0,n.kt)("inlineCode",{parentName:"a"},"aedbbdd"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): updated z-index tokens with negative values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/404efe4244d67276b435e60a1d7a69aaa90e3d8a"},(0,n.kt)("inlineCode",{parentName:"a"},"404efe4"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): add 14px font size token ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8d8695dce62e7f29af01447308460e4fe3f72b21"},(0,n.kt)("inlineCode",{parentName:"a"},"8d8695d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): restructured and improved sections navigation #174 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b47b0266ffd6baeaf1a5aea1a7ab22c909976de1"},(0,n.kt)("inlineCode",{parentName:"a"},"b47b026"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): add 12 and 14px font size token #176 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/368114729536f03dd85c2d3565b984c3bdfe3a72"},(0,n.kt)("inlineCode",{parentName:"a"},"3681147"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): remove conditional border radius ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f0fe5ada7b74e9c87623dd2b2774283dd89b9a58"},(0,n.kt)("inlineCode",{parentName:"a"},"f0fe5ad")))),(0,n.kt)("h4",{id:"-documentation-changes-16"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(website): created new sections, improved website navigation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/243f0be4d7fa6e988da0ca0f586f5ea478573eef"},(0,n.kt)("inlineCode",{parentName:"a"},"243f0be"))),(0,n.kt)("li",{parentName:"ul"},"docs(homepage): adding design system homepage with links for upcoming sections ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c9a968508acff74d1182e68cf049046dafd564c5"},(0,n.kt)("inlineCode",{parentName:"a"},"c9a9685"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): copyedit, improved navigation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/998762a5bd40d08f619c00743b66d82b43aed653"},(0,n.kt)("inlineCode",{parentName:"a"},"998762a"))),(0,n.kt)("li",{parentName:"ul"},"docs(website): restructuring, moved current DS docs to new folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8bb612f1313dfc739d7912aa2e3252f468e1122f"},(0,n.kt)("inlineCode",{parentName:"a"},"8bb612f"))),(0,n.kt)("li",{parentName:"ul"},"docs(homepage): copy editing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee37d6f1d282b973af744f4305c0eb94c0993113"},(0,n.kt)("inlineCode",{parentName:"a"},"ee37d6f")))),(0,n.kt)("h4",{id:"\ufe0f-others-42"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Release 0.4.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f4bc50928ab877f3670b181dbe6e8cfff7fa2daa"},(0,n.kt)("inlineCode",{parentName:"a"},"f4bc509"))),(0,n.kt)("li",{parentName:"ul"},"feature(homepage): added Item group with icons #167 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ec99f53aeb183b24073be4014a9c2ec30d5235c"},(0,n.kt)("inlineCode",{parentName:"a"},"2ec99f5"))),(0,n.kt)("li",{parentName:"ul"},"feature(tokens): added borders, z-index, shadows tokens #171 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/74c178837cedc7ee9fc55effde1096dc03245574"},(0,n.kt)("inlineCode",{parentName:"a"},"74c1788"))),(0,n.kt)("li",{parentName:"ul"},"feature(tokens): added initial color design tokens #169 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/da3eae05d07783aa5eadaed5d508ee3be8acc47d"},(0,n.kt)("inlineCode",{parentName:"a"},"da3eae0"))),(0,n.kt)("li",{parentName:"ul"},"perf(carousel): added slick library ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca9be5125efa864bc30a0178274d744c5b2bc500"},(0,n.kt)("inlineCode",{parentName:"a"},"ca9be51")))),(0,n.kt)("h3",{id:"031---2022-05-19"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.3.0...0.3.1"},"0.3.1")," - 2022-05-19"),(0,n.kt)("h4",{id:"-bug-fixes-37"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(input,segment): toggle inputs and padding fixes within Volto sidebar forms ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/de030d617325a8f9d028a5c1615faa160fcdd763"},(0,n.kt)("inlineCode",{parentName:"a"},"de030d6")))),(0,n.kt)("h4",{id:"-enhancements-51"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(login): restored width of login container to 376px ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0564293346b2402c3c86009b61066da4200662b8"},(0,n.kt)("inlineCode",{parentName:"a"},"0564293")))),(0,n.kt)("h3",{id:"030---2022-05-17"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.2.4...0.3.0"},"0.3.0")," - 2022-05-17"),(0,n.kt)("h4",{id:"-new-features-26"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(Callout):create Callout component with Blockquote style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3d486b1c2c7f74ee8bc4b3a5e1bf3993ac98f6dd"},(0,n.kt)("inlineCode",{parentName:"a"},"3d486b1"))),(0,n.kt)("li",{parentName:"ul"},"feat(callout): Align the Callout component with Volto slate component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e9343ff7008cd3d60700929e8861c7bdd06df4d3"},(0,n.kt)("inlineCode",{parentName:"a"},"e9343ff")))),(0,n.kt)("h4",{id:"-bug-fixes-38"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(testimonial): fix storybook arg names ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b9df52f7151ef759fd672d365b2d74f6db535ad0"},(0,n.kt)("inlineCode",{parentName:"a"},"b9df52f"))),(0,n.kt)("li",{parentName:"ul"},"fix(table): tweak responsive table for extra long headers ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7f9f9e25f7c57d4bf7edd2546a7579b892867b5c"},(0,n.kt)("inlineCode",{parentName:"a"},"7f9f9e2"))),(0,n.kt)("li",{parentName:"ul"},"fix(quote): fix color and padding issue ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/310d6b37bdf5df3da2d2103eab8f4fa5020c95ab"},(0,n.kt)("inlineCode",{parentName:"a"},"310d6b3"))),(0,n.kt)("li",{parentName:"ul"},"fix(accordion): Fix accordion active title color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/57af1650a0b830e01c79e21b130784190defbcc0"},(0,n.kt)("inlineCode",{parentName:"a"},"57af165"))),(0,n.kt)("li",{parentName:"ul"},"fix(testimonial): remove info arguement ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9593d95f6352fb5aea48c3611b27b4bc6a9ae7e4"},(0,n.kt)("inlineCode",{parentName:"a"},"9593d95")))),(0,n.kt)("h4",{id:"-enhancements-52"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(Table):add responsive mobile table story and styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aed69e698e5b89e33a4c331570755934267492af"},(0,n.kt)("inlineCode",{parentName:"a"},"aed69e6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(testimonial): adjust to volto design | fix avatar image size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/546070e494ad187c50913b5742dab49ce5475a84"},(0,n.kt)("inlineCode",{parentName:"a"},"546070e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Quote):rename Pullquote component to Quote ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9384a0c129b8e4eed637e51a9669c41d8ade69d4"},(0,n.kt)("inlineCode",{parentName:"a"},"9384a0c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Quote):rename Quote.Metadata to Quote.SourceInfo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dfae8b1c147659d24dfd1a13fb4c3098e5865a12"},(0,n.kt)("inlineCode",{parentName:"a"},"dfae8b1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Quote): rename Author to Source ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d400f6a0ec0062f58782b4e170f4a1a9a31c56c"},(0,n.kt)("inlineCode",{parentName:"a"},"6d400f6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Quote):move Testimonial component under Quote folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2467c2089577d67ef5689a2507cb860a837f6a0"},(0,n.kt)("inlineCode",{parentName:"a"},"e2467c2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(testimonial): readjust rounded card ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b41933417a44dabcf829a3346d91c142dd6472d3"},(0,n.kt)("inlineCode",{parentName:"a"},"b419334"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Table):wrap table with semantic ui container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24ac2bb4813df33547f684220e1e12af5ca6df7e"},(0,n.kt)("inlineCode",{parentName:"a"},"24ac2bb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Testimonial):minor storybook bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7b6d128c6be3b2481d4765cebca82af6cafbea05"},(0,n.kt)("inlineCode",{parentName:"a"},"7b6d128"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Callout): wrap story with semantic ui container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ead362d88f43fa1380e8be5481cbc38c055060f8"},(0,n.kt)("inlineCode",{parentName:"a"},"ead362d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(quote): update action name to match the functionality ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/caf2e359cada8056f280d2cd137776d64f82a2af"},(0,n.kt)("inlineCode",{parentName:"a"},"caf2e35"))),(0,n.kt)("li",{parentName:"ul"},"refactor(table): add borders to responsive table with celled attribute ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8a71a670fb34a11fbe4cef7365b91c6be84b5b54"},(0,n.kt)("inlineCode",{parentName:"a"},"8a71a67"))),(0,n.kt)("li",{parentName:"ul"},"change(table): make use of headerSortableWhiteSpace variable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fd836fbe82e92864a628bf4d9d3093674890f722"},(0,n.kt)("inlineCode",{parentName:"a"},"fd836fb"))),(0,n.kt)("li",{parentName:"ul"},"change(table): use the @mobileLandscapeBreakpoint for max 480px media query ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/90880ab324b6a66c7741819dd0d913504751454f"},(0,n.kt)("inlineCode",{parentName:"a"},"90880ab"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Quote):rename pullquote to Quote in Testimonial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f54da192ab3b0823b0d6c77254f8954ab94506c8"},(0,n.kt)("inlineCode",{parentName:"a"},"f54da19"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Testimonial): change card class name ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e995c32bc70780e4315c4dc02d6b6fa9a0c5b29d"},(0,n.kt)("inlineCode",{parentName:"a"},"e995c32"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Testimonial): prettier changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/904594b9814c3d8900656f0e4c8d3a99481efe94"},(0,n.kt)("inlineCode",{parentName:"a"},"904594b")))),(0,n.kt)("h4",{id:"\ufe0f-others-43"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feature(tokens): added tokens folder for design tokens we can use in the system ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a542172cfd84dde0286b4332e66a617a1f3d13bf"},(0,n.kt)("inlineCode",{parentName:"a"},"a542172"))),(0,n.kt)("li",{parentName:"ul"},"perf(lint): fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2ef3abb9daa8fee3dd103adc14246c412951427"},(0,n.kt)("inlineCode",{parentName:"a"},"f2ef3ab"))),(0,n.kt)("li",{parentName:"ul"},"Release 0.3.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8724b2809027b2e359dcd64e418a33cade4ad487"},(0,n.kt)("inlineCode",{parentName:"a"},"8724b28")))),(0,n.kt)("h3",{id:"024---2022-05-13"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.2.3...0.2.4"},"0.2.4")," - 2022-05-13"),(0,n.kt)("h4",{id:"-enhancements-53"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(segment): brought back overrides from pastanaga into our theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/14efd021f81898bb0f2d3f1a2e8677445420591a"},(0,n.kt)("inlineCode",{parentName:"a"},"14efd02"))),(0,n.kt)("li",{parentName:"ul"},"change(container): removed padding from containers restoring thus the defaults ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c2ed813cf2f7ce284e33f2e94e02ff16678c2d05"},(0,n.kt)("inlineCode",{parentName:"a"},"c2ed813"))),(0,n.kt)("li",{parentName:"ul"},"change(grid-story): added container as grid width is influenced by container width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/459f4813ee3c5325a3db22d417ac5f23063bd4d2"},(0,n.kt)("inlineCode",{parentName:"a"},"459f481"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumb): removed padding from breadcrumb added by container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5df5675a519085badc030416e5bb784a9f73321"},(0,n.kt)("inlineCode",{parentName:"a"},"c5df567"))),(0,n.kt)("li",{parentName:"ul"},"change(container): modified all outputted widths to align to grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f29cefa4bfee1fe50844c8450de39ef4b0915d4"},(0,n.kt)("inlineCode",{parentName:"a"},"9f29cef"))),(0,n.kt)("li",{parentName:"ul"},"change(breakpoints): restore Semantic UI breakpoints, adding extra needed values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e7f5b1e4fac6453458078bb02cdc66c328843b59"},(0,n.kt)("inlineCode",{parentName:"a"},"e7f5b1e"))),(0,n.kt)("li",{parentName:"ul"},"change(container): restore maxWidth to 100% now that the last value is 1120px ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8b55c58d3bbc8967b20de19a828aedd2f1473ee5"},(0,n.kt)("inlineCode",{parentName:"a"},"8b55c58"))),(0,n.kt)("li",{parentName:"ul"},"change(header): wrap header globalnav links useful for editing section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/10d4f56624510eb63155ab330dcf0475b0728ed4"},(0,n.kt)("inlineCode",{parentName:"a"},"10d4f56"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumb): added vertical variant to the breadcrumbs like we do in Volto ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f405f8437be6be221b055a41c5d391f4cc94385d"},(0,n.kt)("inlineCode",{parentName:"a"},"f405f84"))),(0,n.kt)("li",{parentName:"ul"},"change(breakpoints): added also contentBreakpoint for backward compatibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b6c9212378a37639e6154d8d8e837169bcbac8b5"},(0,n.kt)("inlineCode",{parentName:"a"},"b6c9212")))),(0,n.kt)("h4",{id:"\ufe0f-others-44"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"[JENKINSFILE]"," Add failure comment, no jenkins fail ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c325bf14f3fb0da150f2a56cda0a9f03d8d8a628"},(0,n.kt)("inlineCode",{parentName:"a"},"c325bf1"))),(0,n.kt)("li",{parentName:"ul"},"prettier changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/134da52549b9d5eac5a12b7ad3005073500ac2c4"},(0,n.kt)("inlineCode",{parentName:"a"},"134da52"))),(0,n.kt)("li",{parentName:"ul"},"[JENKINSFILE]"," format PR comments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/739438c64950c745d630d1998314a2bed595b23a"},(0,n.kt)("inlineCode",{parentName:"a"},"739438c"))),(0,n.kt)("li",{parentName:"ul"},"[JENKINSFILE]"," mention comment author in comment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/39a26aa1ff0f35e93e8df9f442c29c5ab79ff493"},(0,n.kt)("inlineCode",{parentName:"a"},"39a26aa"))),(0,n.kt)("li",{parentName:"ul"},"[JENKINSFILE]"," remove debug, add error per stage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/903eecdb6bcbb8d73cff5e447d80c85e2a2c906d"},(0,n.kt)("inlineCode",{parentName:"a"},"903eecd")))),(0,n.kt)("h3",{id:"023---2022-04-29"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.2.2...0.2.3"},"0.2.3")," - 2022-04-29"),(0,n.kt)("h4",{id:"-new-features-27"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(CallToAction):add feat call to action ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab53642f27c996f929ff871d0794add39bab6c23"},(0,n.kt)("inlineCode",{parentName:"a"},"ab53642")))),(0,n.kt)("h4",{id:"-enhancements-54"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(button): add container to stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6c02c1953e102f2d90ab23023d6b4dfc738ced2e"},(0,n.kt)("inlineCode",{parentName:"a"},"6c02c19"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tab): update vertical tab columns and content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b473fabee196a3ec420e29160448d2be3d1685cc"},(0,n.kt)("inlineCode",{parentName:"a"},"b473fab"))),(0,n.kt)("li",{parentName:"ul"},'refactor(call to action):render call to action with Button as="a" ',(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e7dfabfc2f006505b0f1c802dc6fb48611518bcb"},(0,n.kt)("inlineCode",{parentName:"a"},"e7dfabf"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button): update inverted button colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c822021ab37939632416ce74c0cc88a64b98a3c1"},(0,n.kt)("inlineCode",{parentName:"a"},"c822021"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Tab):scrollbar change in mobile & vertical tab fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0e34cbf459e67b6910217f30a44a1e81f33df622"},(0,n.kt)("inlineCode",{parentName:"a"},"0e34cbf"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): added icon class to share icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48e866e4251dd517c0477cd5a42cec1a98e2f16d"},(0,n.kt)("inlineCode",{parentName:"a"},"48e866e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Button): move button to forms folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/94996fcdf1ea7e55c63dd44e10edf1b44b9bdef5"},(0,n.kt)("inlineCode",{parentName:"a"},"94996fc"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Tab):minor change in secondary pointing menu variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/280b6c41a2107bccb38500f54eb5663ef62c7ae3"},(0,n.kt)("inlineCode",{parentName:"a"},"280b6c4")))),(0,n.kt)("h4",{id:"-documentation-changes-17"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(button): import call to action stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e4eed44e3519ae3dba7d16e252271a964fcb7a4b"},(0,n.kt)("inlineCode",{parentName:"a"},"e4eed44")))),(0,n.kt)("h3",{id:"022---2022-04-22"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.2.1...0.2.2"},"0.2.2")," - 2022-04-22"),(0,n.kt)("h4",{id:"-bug-fixes-39"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(publicationCard): restore line endings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/582859e0ab4fa969662d4cf3e60fe75b160f052a"},(0,n.kt)("inlineCode",{parentName:"a"},"582859e"))),(0,n.kt)("li",{parentName:"ul"},"fix(form): added back overrides from Pastanaga theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a3f7ff810cdeb55b009c2dadc6753d01bbd10d8c"},(0,n.kt)("inlineCode",{parentName:"a"},"a3f7ff8"))),(0,n.kt)("li",{parentName:"ul"},"fix(OrderedList) : add list only if sub list exists ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8acbc8d5a492b411b169b106ab64bb78563f891f"},(0,n.kt)("inlineCode",{parentName:"a"},"8acbc8d"))),(0,n.kt)("li",{parentName:"ul"},"fix(label): update highlight label color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d55bbb03a5d28b2f269c1a1ca447c67dcdc7a748"},(0,n.kt)("inlineCode",{parentName:"a"},"d55bbb0"))),(0,n.kt)("li",{parentName:"ul"},"fix(publication card): run prettier ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/81a5bfc123ce69c44562a5585e41a630fe0bbf5a"},(0,n.kt)("inlineCode",{parentName:"a"},"81a5bfc"))),(0,n.kt)("li",{parentName:"ul"},"fix(avatar) : fix naming convention for arg ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/84fc5fa8faa7887f45cd52e58aa6fa6f8b951d26"},(0,n.kt)("inlineCode",{parentName:"a"},"84fc5fa"))),(0,n.kt)("li",{parentName:"ul"},"fix(tab): restore mobile font sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/58f39be02a45ade92873b86597c33763379e0f44"},(0,n.kt)("inlineCode",{parentName:"a"},"58f39be"))),(0,n.kt)("li",{parentName:"ul"},"fix(addForm): add min height to add form and fixed block chooser overflow ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca4415d49b973378894ec9270501beafbefff776"},(0,n.kt)("inlineCode",{parentName:"a"},"ca4415d"))),(0,n.kt)("li",{parentName:"ul"},"fix(OrderedList): adjust margins to fourth sublists ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/663d384790920f164d51edb304c411275972fbb7"},(0,n.kt)("inlineCode",{parentName:"a"},"663d384"))),(0,n.kt)("li",{parentName:"ul"},"fix(dropdown): being hidden because of third party css ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d353dfd65e93d08a3c8584adeeebea50bf7efe8"},(0,n.kt)("inlineCode",{parentName:"a"},"7d353df"))),(0,n.kt)("li",{parentName:"ul"},"fix(modal): overflow hidden as clearfix of last child from modal ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4923f5165a0a7e8d2dd33ea4c35f9f951372909"},(0,n.kt)("inlineCode",{parentName:"a"},"b4923f5"))),(0,n.kt)("li",{parentName:"ul"},"fix(RelatedContent):fix merge conflict ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/adc34bfdac7d668aa27578eb2a4844c136e0360f"},(0,n.kt)("inlineCode",{parentName:"a"},"adc34bf"))),(0,n.kt)("li",{parentName:"ul"},"fix(button): labeled class needs to be placed after left or right keyword ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53d1204fe52665fe1023747da359d3100d45e58f"},(0,n.kt)("inlineCode",{parentName:"a"},"53d1204")))),(0,n.kt)("h4",{id:"-enhancements-55"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(card): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e10e3d610a313c4e1995676130e2677f0ebab070"},(0,n.kt)("inlineCode",{parentName:"a"},"e10e3d6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add card variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e16d05b4afa678b9089987b42a8257323a78093f"},(0,n.kt)("inlineCode",{parentName:"a"},"e16d05b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): remove stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0deb0cab6d7fd73957b149325960c266c33cdc6f"},(0,n.kt)("inlineCode",{parentName:"a"},"0deb0ca"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):delete primary and secondary card stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f95d227a026ecc34b29cc3e4938c3d13906cfd8"},(0,n.kt)("inlineCode",{parentName:"a"},"1f95d22"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Avatar) : remake avatar as card variant ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea77cdd1acafd2ea288f11074423705e5d6b7412"},(0,n.kt)("inlineCode",{parentName:"a"},"ea77cdd"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add styles for card variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7407bd30e722f2d7b1a9d75a8c7cf155bf1c4996"},(0,n.kt)("inlineCode",{parentName:"a"},"7407bd3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): add story with related content inside of a tab ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dca008a35b27e4a75c13ef965ab8764df0d3b357"},(0,n.kt)("inlineCode",{parentName:"a"},"dca008a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): Rename variables from avatar to rounded ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/be0131631cf8e303f4077fe93b6685fd6b34bf46"},(0,n.kt)("inlineCode",{parentName:"a"},"be01316"))),(0,n.kt)("li",{parentName:"ul"},"refactor(avatar): update less variables and layer structure ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f965db1dd17d90e7165f66d39fdda9016c2eae91"},(0,n.kt)("inlineCode",{parentName:"a"},"f965db1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(PublicationCard):remake publication card to be a semantic card variation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5a0c6ab21c22a53aa6e34fafecfae15a3d435391"},(0,n.kt)("inlineCode",{parentName:"a"},"5a0c6ab"))),(0,n.kt)("li",{parentName:"ul"},"change(button): simplified button styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fe892d6f2f59aecf3f9e8b04f18b55fb0d384021"},(0,n.kt)("inlineCode",{parentName:"a"},"fe892d6"))),(0,n.kt)("li",{parentName:"ul"},"change(button): simplified storybook naming and examples ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9a7df4f46c24a234dd8bb290336ac8e7d5c7422b"},(0,n.kt)("inlineCode",{parentName:"a"},"9a7df4f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Avatar) : convert avatar component to card variation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2004a941c18f8fe21f96f88d3288446fd5e283e8"},(0,n.kt)("inlineCode",{parentName:"a"},"2004a94"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Related Content): change in grid and add see all button ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/955450e974c89aa2297eaa28d278e5098fea7705"},(0,n.kt)("inlineCode",{parentName:"a"},"955450e"))),(0,n.kt)("li",{parentName:"ul"},"change(button): added back button.overrides from pastanaga theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3b55acbf8b8df0e3daa475ab12e4db44693a4053"},(0,n.kt)("inlineCode",{parentName:"a"},"3b55acb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add card class control ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/68c91a9bf7e78874e12e868a0c466f12715a0698"},(0,n.kt)("inlineCode",{parentName:"a"},"68c91a9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):delete publication card variables & overrides files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6be8a037118762cf2280fbe44ba097a0cb7a79e0"},(0,n.kt)("inlineCode",{parentName:"a"},"6be8a03"))),(0,n.kt)("li",{parentName:"ul"},"refactor(OrderedList): rename TOC to Ordered List and add container to the story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e00c4db8e623651eb2ec9ad45de6e3d8c2693b2b"},(0,n.kt)("inlineCode",{parentName:"a"},"e00c4db"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add card grid fluid story with no columns ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f38251ca3fa04a9b586468ead44bbfe8ae110fbb"},(0,n.kt)("inlineCode",{parentName:"a"},"f38251c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(list): remove horizontal control ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f5e576a37452ed368d6f9cf4d55960e737d48ad"},(0,n.kt)("inlineCode",{parentName:"a"},"1f5e576"))),(0,n.kt)("li",{parentName:"ul"},"refactor(avatarGrid): update less variables and layer structure ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/db554a894ca10ba50ff425883000177854ea2455"},(0,n.kt)("inlineCode",{parentName:"a"},"db554a8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Related Content):show button when there are more hidden cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/57ff1c8d485d16c34002da22bd765069e6eb3df0"},(0,n.kt)("inlineCode",{parentName:"a"},"57ff1c8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(RelatedContent):change to use new card variant instead of publication card component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7cf424ae885d9b657a7635fc67a74a8af4c4e905"},(0,n.kt)("inlineCode",{parentName:"a"},"7cf424a"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumb): brought back pastanaga overrides to breadcrumbs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bca1c939c1d49dab1d4b8e72c0999d78383fd643"},(0,n.kt)("inlineCode",{parentName:"a"},"bca1c93"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):delete publication card folder & story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/68bf77306d710651bb2177d429f42b8efc127db2"},(0,n.kt)("inlineCode",{parentName:"a"},"68bf773"))),(0,n.kt)("li",{parentName:"ul"},"change(buttons): modified basic and circular variant behavior ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c06fed9fa74216cf76971b7789dad231a5125ce8"},(0,n.kt)("inlineCode",{parentName:"a"},"c06fed9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):tertiary variation minor story update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87b8dca0b8ef6c6f0fbf1ea6bc71b7b8b6ee9205"},(0,n.kt)("inlineCode",{parentName:"a"},"87b8dca"))),(0,n.kt)("li",{parentName:"ul"},"refactor(DescriptionList): add container to story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d647c1a17097eae9bdfaf8eb8068f6d1d0b13972"},(0,n.kt)("inlineCode",{parentName:"a"},"d647c1a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(List):render ordered list with ol,li tags ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87813c1a942ce498f89b51fe79a59b117afd28b0"},(0,n.kt)("inlineCode",{parentName:"a"},"87813c1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(OrderedList) : change table of contents story to ordered list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb6197c872a97f1b990c675554b1da9b0a8f7959"},(0,n.kt)("inlineCode",{parentName:"a"},"cb6197c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(publicationCard): update tag and name variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c109ad98f257fea233f31d767c4a037a2758be2d"},(0,n.kt)("inlineCode",{parentName:"a"},"c109ad9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(UnorderedList): update list as ul, list items as li and add container to strory ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2c096e117125a7fb943a5d2e665c0077761b271c"},(0,n.kt)("inlineCode",{parentName:"a"},"2c096e1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):organize controls and minor bug fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f3f6e35df077e348ea1e0c2e5c5bd73d4af5aef9"},(0,n.kt)("inlineCode",{parentName:"a"},"f3f6e35"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables): publication card style changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5a84e99ebea6345e45fac3b7ffc077ec42dfb45"},(0,n.kt)("inlineCode",{parentName:"a"},"c5a84e9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables): add less to related content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e1a55438a9fc9dd141a9515c5363d834732a0c4d"},(0,n.kt)("inlineCode",{parentName:"a"},"e1a5543"))),(0,n.kt)("li",{parentName:"ul"},"refactor(RelatedContent):delete publication card component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ed0ed4a1497224b669386f6d0942a79d00555ea"},(0,n.kt)("inlineCode",{parentName:"a"},"2ed0ed4"))),(0,n.kt)("li",{parentName:"ul"},"change(button): basic button is again without padding, border and background ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5a907c721bda1d065153b108d6c9dc0ee20a886d"},(0,n.kt)("inlineCode",{parentName:"a"},"5a907c7"))),(0,n.kt)("li",{parentName:"ul"},"refactor(PublicationCard):remove link wrapper ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5911a0db1967c58311a6776864f92bc0692052fa"},(0,n.kt)("inlineCode",{parentName:"a"},"5911a0d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables): change publication card height per viewport ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d7a525615672f387a2c8a0457bcde5c08aec45dd"},(0,n.kt)("inlineCode",{parentName:"a"},"d7a5256"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Timeline):change timeline icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b2fe0bf9a7a4583f1f10765a9f8c3c989412d472"},(0,n.kt)("inlineCode",{parentName:"a"},"b2fe0bf"))),(0,n.kt)("li",{parentName:"ul"},"refactor(publicationCard): replace px with rems ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53bf8da5e42343de7f7f940c266beb5e530dd63a"},(0,n.kt)("inlineCode",{parentName:"a"},"53bf8da"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Related Content): change in related content grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bf856ce66f9a74cb440cf8a7c93f62cd0d3965e9"},(0,n.kt)("inlineCode",{parentName:"a"},"bf856ce"))),(0,n.kt)("li",{parentName:"ul"},"refactor(List):render description list with dl,dt,dd tags ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ec669a74da08f7a82bb4a1a0a2d752b6ee5ba4bb"},(0,n.kt)("inlineCode",{parentName:"a"},"ec669a7"))),(0,n.kt)("li",{parentName:"ul"},"change(button): show only labeled variant for buttons with icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bf499446dc02e4be8d6452a3e0cba5797b8a005e"},(0,n.kt)("inlineCode",{parentName:"a"},"bf49944"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): import image for rounded card ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca5a47ea2cd713336c7c8ecdebebbdacd681282f"},(0,n.kt)("inlineCode",{parentName:"a"},"ca5a47e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progress): add container to story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dfb33bb8f3560d43e3e7300560bb557591c0a6ba"},(0,n.kt)("inlineCode",{parentName:"a"},"dfb33bb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): add publication card story with different description sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/23af97bc708ac70d70b92efe9a782548c65aabc5"},(0,n.kt)("inlineCode",{parentName:"a"},"23af97b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(List):render default list with dl & dt tags ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ece2280eb06481b3fd42e7a1ffec5c71c08e736f"},(0,n.kt)("inlineCode",{parentName:"a"},"ece2280"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): add publication cards stories with longer description ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/37adefa500c8a85a5b0b86e5b17c687828ea21fc"},(0,n.kt)("inlineCode",{parentName:"a"},"37adefa"))),(0,n.kt)("li",{parentName:"ul"},"change(button): basic icon buttons no longer have box shadows ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c2f3ea38ec3c62dce37612ac1e666a0b064309f7"},(0,n.kt)("inlineCode",{parentName:"a"},"c2f3ea3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): remove story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/afc5f7903a0049563355e3c9292fdd89fa532740"},(0,n.kt)("inlineCode",{parentName:"a"},"afc5f79"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables): change card description line number per device ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6946fdae2a1ede28a0e5971736817b3ae19bf290"},(0,n.kt)("inlineCode",{parentName:"a"},"6946fda"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): update rounded card image path ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8db3a85a45e8e05a3fe86ab824e7550d437222c3"},(0,n.kt)("inlineCode",{parentName:"a"},"8db3a85"))),(0,n.kt)("li",{parentName:"ul"},"refactor(DefaultList): add container to story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f971193369007a45fea7d517cdf0fc2314ebda69"},(0,n.kt)("inlineCode",{parentName:"a"},"f971193"))),(0,n.kt)("li",{parentName:"ul"},"change(button): bumped z-index of sidenav expand button ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/445ed8a8ede4e458814f380bee0600dbb8ff42f6"},(0,n.kt)("inlineCode",{parentName:"a"},"445ed8a"))),(0,n.kt)("li",{parentName:"ul"},"change(progress,label): color accessibility fixes #151 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/09cf6e34ed5a57bfbfc8fe95787591387776df86"},(0,n.kt)("inlineCode",{parentName:"a"},"09cf6e3"))),(0,n.kt)("li",{parentName:"ul"},"change(button): text button now has an underline with a focus border like other buttons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cdd90436bf0c4f8acaca8bf27afef672fb0f3a89"},(0,n.kt)("inlineCode",{parentName:"a"},"cdd9043"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): update card variation grids path ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/756589cff5d3607994d6cf092cb5dd0e36d51903"},(0,n.kt)("inlineCode",{parentName:"a"},"756589c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): minor fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3a880d7d14c89137b2a33342aed1a31c1b2b3939"},(0,n.kt)("inlineCode",{parentName:"a"},"3a880d7"))),(0,n.kt)("li",{parentName:"ul"},"change(button): primary color is blue and secondary is green ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53e0a0c6d32a04c52d089914a224b010b04a8846"},(0,n.kt)("inlineCode",{parentName:"a"},"53e0a0c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(List):change styles to match with the tags lists are rendered ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2673890449579a0421d8ac1c89ad4c5e850322d7"},(0,n.kt)("inlineCode",{parentName:"a"},"2673890"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progress): update colors for accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea2f454f73c859ac21c4fe6e415a2442a6c3d64c"},(0,n.kt)("inlineCode",{parentName:"a"},"ea2f454"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): move avatarGrid & relatedContent to Card folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1959d521de222c95aa13d9b3db249d133f879ccd"},(0,n.kt)("inlineCode",{parentName:"a"},"1959d52"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Timeline): change storybook timeline colors to fix accessibility issues ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/79da8dca48c709fd1df83b858296126f5e5c5753"},(0,n.kt)("inlineCode",{parentName:"a"},"79da8dc"))),(0,n.kt)("li",{parentName:"ul"},"change(segment): restore light grey background color for secondary segments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8716b08a977cacf5dbdab8ab23c714bb03066b0c"},(0,n.kt)("inlineCode",{parentName:"a"},"8716b08"))),(0,n.kt)("li",{parentName:"ul"},"refactor(relatedContent): adjust column paddings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8a1520d1b958b65e968bffdba22c3484916a475e"},(0,n.kt)("inlineCode",{parentName:"a"},"8a1520d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): clear up code ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ada154b5ab562dc7605604de8002a9d3461e594"},(0,n.kt)("inlineCode",{parentName:"a"},"3ada154"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): use the rounded class for avatar grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8c000f3c37103e0068b6d6554783da8188603442"},(0,n.kt)("inlineCode",{parentName:"a"},"8c000f3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card) Update rounded card class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/140b58746673a864d7ea218c4f8a02dc70207af4"},(0,n.kt)("inlineCode",{parentName:"a"},"140b587"))),(0,n.kt)("li",{parentName:"ul"},"refactor(avatar): add variable for image border radius ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c23341c66d34a9dfa572be4df24f1faf4325d58e"},(0,n.kt)("inlineCode",{parentName:"a"},"c23341c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(label): add container to story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/565101fff2c8860deedd599b7b0cff0660c663f6"},(0,n.kt)("inlineCode",{parentName:"a"},"565101f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progress): update value color for accessibility error ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6fc76f8ff3df4bf2b83863687e5ab6bd5e4cd1ef"},(0,n.kt)("inlineCode",{parentName:"a"},"6fc76f8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):use jsx extension ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/413d3284869a35f39f886df7862db6a52e8cc18e"},(0,n.kt)("inlineCode",{parentName:"a"},"413d328")))),(0,n.kt)("h4",{id:"-internal-changes-17"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(Avatar) : add container to stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/41b748cd23002d597d9b6fbb7947a443ef40f9b2"},(0,n.kt)("inlineCode",{parentName:"a"},"41b748c"))),(0,n.kt)("li",{parentName:"ul"},"style(OrderedList): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ed95e4dea2f33d46ca604e1b2c30d63b5596c03d"},(0,n.kt)("inlineCode",{parentName:"a"},"ed95e4d")))),(0,n.kt)("h4",{id:"\ufe0f-others-45"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"perf(eol): change to LF ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c71e42e4a8cf49c4a3b943bfdc8a94c9a9cc4940"},(0,n.kt)("inlineCode",{parentName:"a"},"c71e42e"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): linux eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e0bb30132904f92b9755356f6b5ccbf72075425"},(0,n.kt)("inlineCode",{parentName:"a"},"6e0bb30"))),(0,n.kt)("li",{parentName:"ul"},"lint fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a68866d4058f7412a2635371adebc370b6445281"},(0,n.kt)("inlineCode",{parentName:"a"},"a68866d"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): lf fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7054b2067b0802c5bd04e185cba76e2577ccfdd1"},(0,n.kt)("inlineCode",{parentName:"a"},"7054b20"))),(0,n.kt)("li",{parentName:"ul"},"doco(list): update Ordered List showcase ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/75e40bf4487ea334c9ebc2dd6c2a392d82e662f3"},(0,n.kt)("inlineCode",{parentName:"a"},"75e40bf"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): lf fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19235e585ac50c3669f654a93798b8998894f900"},(0,n.kt)("inlineCode",{parentName:"a"},"19235e5"))),(0,n.kt)("li",{parentName:"ul"},"fixed js syntax error from previous commit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/37dc1f5c1506040c1f155afdea76c4ed739ddda2"},(0,n.kt)("inlineCode",{parentName:"a"},"37dc1f5"))),(0,n.kt)("li",{parentName:"ul"},"Next relese: 0.2.2 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b3fb40ff5e46d7519b6356fdaf7326780bd89d9e"},(0,n.kt)("inlineCode",{parentName:"a"},"b3fb40f")))),(0,n.kt)("h3",{id:"021---2022-04-08"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.2.0...0.2.1"},"0.2.1")," - 2022-04-08"),(0,n.kt)("h4",{id:"-bug-fixes-40"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(version): Switch to 2.0.0.alpha.1 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/83b8b8ebba4f1eb31514b16476ac23a5d2b03ea9"},(0,n.kt)("inlineCode",{parentName:"a"},"83b8b8e")))),(0,n.kt)("h4",{id:"\ufe0f-others-46"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"cleanup(loader): Remove useless HTML ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d1d180c714ea225c1ad269360413a5e5e4b39f22"},(0,n.kt)("inlineCode",{parentName:"a"},"d1d180c")))),(0,n.kt)("h3",{id:"020---2022-04-04"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.9...0.2.0"},"0.2.0")," - 2022-04-04"),(0,n.kt)("h4",{id:"-new-features-28"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(card) : add new default card color-schme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/965adea8eef6d8729790f6d2bd5e71daeee15d75"},(0,n.kt)("inlineCode",{parentName:"a"},"965adea"))),(0,n.kt)("li",{parentName:"ul"},"feat(label): Handle slate links and footnotes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f382431219df29be498fe5063f3d579f0b918068"},(0,n.kt)("inlineCode",{parentName:"a"},"f382431")))),(0,n.kt)("h4",{id:"-bug-fixes-41"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(buttons,toggles): border and background color when active 147629 #139 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea36f31e986110d6c28c104d01666104ac38e2ba"},(0,n.kt)("inlineCode",{parentName:"a"},"ea36f31"))),(0,n.kt)("li",{parentName:"ul"},"fix(checkboxes): background color when they are toggles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4b6ab67085b7514c4f0ab2322e8f45de8bc09449"},(0,n.kt)("inlineCode",{parentName:"a"},"4b6ab67"))),(0,n.kt)("li",{parentName:"ul"},"fix(buttons): border set on basic buttons appearing on svg elements of Volto UI ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/69ca73f33b562b3f87bf11ce43a52ac01f83b951"},(0,n.kt)("inlineCode",{parentName:"a"},"69ca73f"))),(0,n.kt)("li",{parentName:"ul"},"fix(label): Zotero/Footnotes inside label ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0ee4d584f2771b739ed5f2332cb33aad61391786"},(0,n.kt)("inlineCode",{parentName:"a"},"0ee4d58"))),(0,n.kt)("li",{parentName:"ul"},"fix(card) : add control for image url in storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b28e5303ba04c6aee673f1d7f98ce42037c672e1"},(0,n.kt)("inlineCode",{parentName:"a"},"b28e530"))),(0,n.kt)("li",{parentName:"ul"},"fix(less variables):change font family ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e4bca9e0cb7ab9f1fd86e9f4c558382ec129e5a1"},(0,n.kt)("inlineCode",{parentName:"a"},"e4bca9e"))),(0,n.kt)("li",{parentName:"ul"},"fix(storybook):minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9fc53bcad61bbe0561d7a986dbba567d53777a8c"},(0,n.kt)("inlineCode",{parentName:"a"},"9fc53bc"))),(0,n.kt)("li",{parentName:"ul"},"fix(tag): fixes merged theme config ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/eb30363fda8a8a88155ee05268c4d7660fe99df1"},(0,n.kt)("inlineCode",{parentName:"a"},"eb30363"))),(0,n.kt)("li",{parentName:"ul"},"fix(Banner): prop types fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a270e5b4d6e571f219b5da31ca8f883f74da05e3"},(0,n.kt)("inlineCode",{parentName:"a"},"a270e5b")))),(0,n.kt)("h4",{id:"-enhancements-56"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(tag): splits Tags component to TagList and tag, changes default tags style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/78a5f8c245149706a1f7b825ef3e02da5ba86445"},(0,n.kt)("inlineCode",{parentName:"a"},"78a5f8c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner):add banner share pop up in banner story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c9688b2b697c879bbaed3cb3a688a0af7fc71234"},(0,n.kt)("inlineCode",{parentName:"a"},"c9688b2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tag): remove classes and actions that add background color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce9b6f92589618f6cb1e839a2cddc44381ef7406"},(0,n.kt)("inlineCode",{parentName:"a"},"ce9b6f9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner):change banner's image wrapper implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9153dd1073999e67c105b5ba90538bc963e17abc"},(0,n.kt)("inlineCode",{parentName:"a"},"9153dd1"))),(0,n.kt)("li",{parentName:"ul"},"change(package): bump release version to 1.10.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e984c1e1a6ea481a58a5b7a783d077b5769a621"},(0,n.kt)("inlineCode",{parentName:"a"},"7e984c1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): align cards and images, update less variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d47c9780bfbc23d1cba3578f181864074db97e98"},(0,n.kt)("inlineCode",{parentName:"a"},"d47c978"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add class inverted for default card ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/919a56e79c0243fa567144fadd4b842f75f1cf8f"},(0,n.kt)("inlineCode",{parentName:"a"},"919a56e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tag): changes component name ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e1db068bd7ac336a451a4514c61fe44557e14cc2"},(0,n.kt)("inlineCode",{parentName:"a"},"e1db068"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tag): changes color metallicBlue to bottleGreen ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e4b68acf95bb3e192914aab89b2122e0434bf72c"},(0,n.kt)("inlineCode",{parentName:"a"},"e4b68ac"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables): change tag list mobile view ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fcded3dbc67465eec6ef7f72d3fd599ec5cd3c13"},(0,n.kt)("inlineCode",{parentName:"a"},"fcded3d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tagList): update story to not use tag color classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8b5b61bfad9225c0538b713937ed39bbd0bd14e9"},(0,n.kt)("inlineCode",{parentName:"a"},"8b5b61b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner):minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff8c352b899b78528897547df0b20c357fd153cd"},(0,n.kt)("inlineCode",{parentName:"a"},"ff8c352"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner): add metadata field sub component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/327b7e77626c18ae783aea9efae0c7589f63d4f5"},(0,n.kt)("inlineCode",{parentName:"a"},"327b7e7"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): add and adjust remix icon for banner action ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1bf3ffaa16432746c5e5577f0b1643f6659b3f56"},(0,n.kt)("inlineCode",{parentName:"a"},"1bf3ffa"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): replace px with rem and adjust share popup padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a5683294570227d0b25a99e410eb824b2c6d643c"},(0,n.kt)("inlineCode",{parentName:"a"},"a568329"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner):add type class to metadata field and apply styles to it ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/86a286699146c7dda9e288e2183ec8cc86f35a23"},(0,n.kt)("inlineCode",{parentName:"a"},"86a2866"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables):change tag list styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/867008791545769aa003ef7a8a820a7e5a873e4b"},(0,n.kt)("inlineCode",{parentName:"a"},"8670087"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): share items display flex on desktop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ff86840e548f47cd597a0c76b23f996d4a9d74b"},(0,n.kt)("inlineCode",{parentName:"a"},"3ff8684"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): added background gradient, share popup, metadata show and hide #136 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2f5dccacf1e23f45f351b0be58c9bbda04da1518"},(0,n.kt)("inlineCode",{parentName:"a"},"2f5dcca"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): update gradient ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/570ee1e1e9778cb98757804fbd8ad7d9dee9ad13"},(0,n.kt)("inlineCode",{parentName:"a"},"570ee1e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tags): removes hardcoded ':' ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea58e86a79b46b5150d84ff2fbb6a7b8ba47876c"},(0,n.kt)("inlineCode",{parentName:"a"},"ea58e86"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): remove card border ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bc777397026f0efe8e569c8fd0e90d98b585b0eb"},(0,n.kt)("inlineCode",{parentName:"a"},"bc77739")))),(0,n.kt)("h4",{id:"-internal-changes-18"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(card) : add lint and prettier changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9d9a77363f7e4f7ec2ea4db5fa777dc97e086156"},(0,n.kt)("inlineCode",{parentName:"a"},"9d9a773"))),(0,n.kt)("li",{parentName:"ul"},"style(tag): remove comments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/501fcdfb8271f4a3558dadb96c546e71cfdef286"},(0,n.kt)("inlineCode",{parentName:"a"},"501fcdf"))),(0,n.kt)("li",{parentName:"ul"},"style(tag): stylelint and prettier changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/08b63864e8394fd86ada78df0b441cda52cd8063"},(0,n.kt)("inlineCode",{parentName:"a"},"08b6386")))),(0,n.kt)("h4",{id:"\ufe0f-others-47"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"1.10 release #140 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/88d33396845f00830789867663a9cd66ad88920f"},(0,n.kt)("inlineCode",{parentName:"a"},"88d3339"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/328ef2cda2d3470b5cb5ae2ef9854323f6b0f3c7"},(0,n.kt)("inlineCode",{parentName:"a"},"328ef2c"))),(0,n.kt)("li",{parentName:"ul"},"undo changes to Header.jsx committed wrongly in 4b6ab ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bfc4c51d39cf9c5151c39b099071174897de10b0"},(0,n.kt)("inlineCode",{parentName:"a"},"bfc4c51"))),(0,n.kt)("li",{parentName:"ul"},"Update 0-intro.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af75f81a84ddb9b78a77a96450976c6cd1223924"},(0,n.kt)("inlineCode",{parentName:"a"},"af75f81"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): lf fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ecf474ffbaab6796434d49c30fb09deafe9d1125"},(0,n.kt)("inlineCode",{parentName:"a"},"ecf474f"))),(0,n.kt)("li",{parentName:"ul"},"Update 0-intro.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93a073242693fa3c24c39532c2c462f58071e5c4"},(0,n.kt)("inlineCode",{parentName:"a"},"93a0732"))),(0,n.kt)("li",{parentName:"ul"},"modifies tags title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/33c3714660aa6cfbca7e362fd7baa8c396b60a0e"},(0,n.kt)("inlineCode",{parentName:"a"},"33c3714"))),(0,n.kt)("li",{parentName:"ul"},"reafactor(taglist): fixes tags root class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d09959f85d2d21cdc890a71457ed5840b5b2c53"},(0,n.kt)("inlineCode",{parentName:"a"},"7d09959")))),(0,n.kt)("h3",{id:"019---2022-03-25"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.8...0.1.9"},"0.1.9")," - 2022-03-25"),(0,n.kt)("h4",{id:"-new-features-29"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(all): 1.9 release #124 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0d3f6fbf32a4948e00410d9d0943a077863cb869"},(0,n.kt)("inlineCode",{parentName:"a"},"0d3f6fb"))),(0,n.kt)("li",{parentName:"ul"},"feat(callout): Align volto-slate callout with blockquote style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9e0bb49ffe66ebb8b8173af411873ab887b91058"},(0,n.kt)("inlineCode",{parentName:"a"},"9e0bb49")))),(0,n.kt)("h4",{id:"-bug-fixes-42"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(inpageNavigation): restore hidden on top functionality ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c554e6e02e0c82b74653498e2f3fd32a982002a4"},(0,n.kt)("inlineCode",{parentName:"a"},"c554e6e"))),(0,n.kt)("li",{parentName:"ul"},"fix(list): Fix TOC margin on 3rd level ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f17da79394e29baf62bae1247dd954cdd0362108"},(0,n.kt)("inlineCode",{parentName:"a"},"f17da79"))),(0,n.kt)("li",{parentName:"ul"},"fix(inpageNavigation) : add smooth scroll animation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/42f6564276b9214257e2dbc1e2a8f7e501625aee"},(0,n.kt)("inlineCode",{parentName:"a"},"42f6564")))),(0,n.kt)("h4",{id:"-enhancements-57"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update visual and mobile margins ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/64f05af91638d91d2c07217b8edc2fb70a5e7347"},(0,n.kt)("inlineCode",{parentName:"a"},"64f05af"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): restore union dropdown after implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7029c556a9adc1ab9b0269de666e0ed0530f67e"},(0,n.kt)("inlineCode",{parentName:"a"},"a7029c5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pullquote): adjust to the new figma design ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/78e4606ac299938021f9e525898ae7f5cede311f"},(0,n.kt)("inlineCode",{parentName:"a"},"78e4606"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumb): adjust font sizes and import remix divider ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5fcabaf589074716b34fb5d0904e14549d7f4ef2"},(0,n.kt)("inlineCode",{parentName:"a"},"5fcabaf"))),(0,n.kt)("li",{parentName:"ul"},"change(header): use viewport width for changing mobile text in header dropdowns ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5a7868e1725f8766ae1be68d3c27b1313f79196b"},(0,n.kt)("inlineCode",{parentName:"a"},"5a7868e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(inpageNavigation): adjust to the new figma design ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4073acfb87378224d071079467bcfa195b1fc6ac"},(0,n.kt)("inlineCode",{parentName:"a"},"4073acf"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tab): add max width for tab items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/366d279a94d5f388c6167e7afb72d108c77c4085"},(0,n.kt)("inlineCode",{parentName:"a"},"366d279"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables):change pullquote styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9ad94bb424a14713ffa605c7497c95bdefeb6e5f"},(0,n.kt)("inlineCode",{parentName:"a"},"9ad94bb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Pullquote):change quote positions and add Pullquote.Metadata sub component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6bce35fa3cc158d9d18a07d0faf812c5c38bae0b"},(0,n.kt)("inlineCode",{parentName:"a"},"6bce35f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(inpageNavigation): Update to remix icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19a606170b4163cf4f751a419ca36a4c163b566d"},(0,n.kt)("inlineCode",{parentName:"a"},"19a6061"))),(0,n.kt)("li",{parentName:"ul"},"refactor(inpageNavigation) : move icon & text to be in column ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/09539102489ec511cb2b6cd047d316ab8b87ed55"},(0,n.kt)("inlineCode",{parentName:"a"},"0953910"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumbs): modified breadcrumbs template to behave like breadrumb template ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/490a559bc99f3a9d174a344cf0be85086293578e"},(0,n.kt)("inlineCode",{parentName:"a"},"490a559"))),(0,n.kt)("li",{parentName:"ul"},"change(package): bump release version to 1.9.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/43a6e4b92fd05ca272fb140922213834ee426938"},(0,n.kt)("inlineCode",{parentName:"a"},"43a6e4b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumb): adjust font sizes and import remix divider #120 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/09a3a01910ed898b62a9535fe5d2a41cfdb3a91b"},(0,n.kt)("inlineCode",{parentName:"a"},"09a3a01"))),(0,n.kt)("li",{parentName:"ul"},"change(menu): modified secondaryPointingItemMaxWidth to a value that equals to 250 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea138a10257206fae32c4e9a30233a3ddfd424b6"},(0,n.kt)("inlineCode",{parentName:"a"},"ea138a1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pullquote): introduce meta section, use remix icons, integrate slate callouts #119 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fd740c9e72b2defa5cc858ac020f0cb051aa527c"},(0,n.kt)("inlineCode",{parentName:"a"},"fd740c9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): updated visuals and gradients #117 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e5c6d18dc3fb33e5dfa654ecebdc12c6f5f0cf32"},(0,n.kt)("inlineCode",{parentName:"a"},"e5c6d18"))),(0,n.kt)("li",{parentName:"ul"},"change(scrollToTop): feature inpage navigation revamp #121 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3cf20a82b723b8df0b53f16c737e5c8990f891f1"},(0,n.kt)("inlineCode",{parentName:"a"},"3cf20a8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update visual and gradient ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/764ec23a456397b478456f7d628baa4e6c0b4713"},(0,n.kt)("inlineCode",{parentName:"a"},"764ec23"))),(0,n.kt)("li",{parentName:"ul"},"change(header): use 12px font size for mobile resolution dropdowns ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6dad0fab24f37f87696bb50f5a592e88510d053e"},(0,n.kt)("inlineCode",{parentName:"a"},"6dad0fa"))),(0,n.kt)("li",{parentName:"ul"},"change(nav): added navDepth to 3 in order to enable mega menu integration ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4f73fdd0dfadcd63b2f4be7a691bf12dcd9bb76"},(0,n.kt)("inlineCode",{parentName:"a"},"c4f73fd")))),(0,n.kt)("h4",{id:"-internal-changes-19"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(inpageNavigation) : lint changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3641d78374063904c00f1ba19f2f234f7a43892b"},(0,n.kt)("inlineCode",{parentName:"a"},"3641d78"))),(0,n.kt)("li",{parentName:"ul"},"style(inpageNavigation) : add less variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0699c70c66403ff75bf41ba252a74e9f4379671c"},(0,n.kt)("inlineCode",{parentName:"a"},"0699c70"))),(0,n.kt)("li",{parentName:"ul"},"style(pullquote): create variable for icon font size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fea9b0a7c33237ad036522b4dde567718d640210"},(0,n.kt)("inlineCode",{parentName:"a"},"fea9b0a"))),(0,n.kt)("li",{parentName:"ul"},"style(inpageNavigation) : add lint & prettier changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f8dd012a964e0c1f0bc22c36826a4a94bd052759"},(0,n.kt)("inlineCode",{parentName:"a"},"f8dd012"))),(0,n.kt)("li",{parentName:"ul"},"style(inpageNavigation): remove comment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1aee011d032c1a2b7fe564a40688bc39ca457c18"},(0,n.kt)("inlineCode",{parentName:"a"},"1aee011")))),(0,n.kt)("h4",{id:"\ufe0f-others-48"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"perf(eol): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/85a3dc55c7676c0feb8dd5b39fe0cbb9d66a9370"},(0,n.kt)("inlineCode",{parentName:"a"},"85a3dc5"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/00776211ccfa1cb90d9fa0e5269f47f5b3845741"},(0,n.kt)("inlineCode",{parentName:"a"},"0077621"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f1bb1c630edb669b03929a978cc116bae012255"},(0,n.kt)("inlineCode",{parentName:"a"},"9f1bb1c"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2b19fec30d6086f486bdca631a9114d8369fe43"},(0,n.kt)("inlineCode",{parentName:"a"},"e2b19fe"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/03dbc9b027578934f89d9480d981e1bc28f38aa3"},(0,n.kt)("inlineCode",{parentName:"a"},"03dbc9b"))),(0,n.kt)("li",{parentName:"ul"},"Hide breadcrumbs on homepage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e2f609df8d4b6bdb826e539fc0c613406d357a5"},(0,n.kt)("inlineCode",{parentName:"a"},"3e2f609"))),(0,n.kt)("li",{parentName:"ul"},"bug(inpageNavigation): less layers structure fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8d34fbdd5130ed36157db1ff70e8b039faa9f81"},(0,n.kt)("inlineCode",{parentName:"a"},"b8d34fb"))),(0,n.kt)("li",{parentName:"ul"},"prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4b1c572411cbc58dec51d5eeefe9847675c2e41"},(0,n.kt)("inlineCode",{parentName:"a"},"d4b1c57"))),(0,n.kt)("li",{parentName:"ul"},"fefactor(tab): add max width for tab items #118 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/716c408fa4c73f3feb8e36e35fb1f6bb50ac264c"},(0,n.kt)("inlineCode",{parentName:"a"},"716c408"))),(0,n.kt)("li",{parentName:"ul"},"Add reversed option to Timeline grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7c9023245f2fc943380f79743b5f10c6b6f65264"},(0,n.kt)("inlineCode",{parentName:"a"},"7c90232"))),(0,n.kt)("li",{parentName:"ul"},"doc(grid): update grid showcases ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/83671a382e39a2736c2c1353098d5f4fc2a0e67e"},(0,n.kt)("inlineCode",{parentName:"a"},"83671a3"))),(0,n.kt)("li",{parentName:"ul"},"End of line ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7f46fb752ec8918325ebadd386ee88248e02566c"},(0,n.kt)("inlineCode",{parentName:"a"},"7f46fb7")))),(0,n.kt)("h3",{id:"018---2022-03-18"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.7...0.1.8"},"0.1.8")," - 2022-03-18"),(0,n.kt)("h4",{id:"-bug-fixes-43"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(card): avoid long links from spilling outside of card body area ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/95b8951ab87bfab7a68cc20b89b25aa15113aa9d"},(0,n.kt)("inlineCode",{parentName:"a"},"95b8951")))),(0,n.kt)("h4",{id:"-enhancements-58"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(typography): set heading sizes as detailed in docusaurus typography section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/189bf20409581587061ffa30ff2bf04d97f284cf"},(0,n.kt)("inlineCode",{parentName:"a"},"189bf20"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): content tweaks, inpage navigation section #112 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b62d1b1def7c3d8890ffbba30950e8e422e9ed89"},(0,n.kt)("inlineCode",{parentName:"a"},"b62d1b1")))),(0,n.kt)("h4",{id:"-internal-changes-20"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(docusaurus): fixed grid tablet breakpoint value ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c7fbc0912131396e3a1e35803968eda1eff77d40"},(0,n.kt)("inlineCode",{parentName:"a"},"c7fbc09")))),(0,n.kt)("h4",{id:"-documentation-changes-18"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): capitalization remove ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bf8fa4407e7110da1c6a911506d56800bd5c32d7"},(0,n.kt)("inlineCode",{parentName:"a"},"bf8fa44"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1c04976a141324f0dde01b139a77f611e6f51840"},(0,n.kt)("inlineCode",{parentName:"a"},"1c04976"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): comment address on pr 112 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e4fe3bed285eae8b2cff03b1ef558debc0b4edb"},(0,n.kt)("inlineCode",{parentName:"a"},"6e4fe3b"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): color minor update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/13f9fda09287da5b8733d17f9c7567b6b7df750a"},(0,n.kt)("inlineCode",{parentName:"a"},"13f9fda"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): tabs and breadcrump update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d0547e5ad09a8608335b1e77e24c891e49213694"},(0,n.kt)("inlineCode",{parentName:"a"},"d0547e5")))),(0,n.kt)("h4",{id:"\ufe0f-others-49"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"doc(colours): add more content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ec66248f1290369dcf63ee12f7b71a1630df887b"},(0,n.kt)("inlineCode",{parentName:"a"},"ec66248"))),(0,n.kt)("li",{parentName:"ul"},"Add divider content for metadata field in Banner ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f1e34bd6a199f6418fba909e9dfdf50b0100e860"},(0,n.kt)("inlineCode",{parentName:"a"},"f1e34bd"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.8.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fd6ba047e8f8b257c3c75d07a6caefad376f888a"},(0,n.kt)("inlineCode",{parentName:"a"},"fd6ba04")))),(0,n.kt)("h3",{id:"017---2022-03-15"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.6...0.1.7"},"0.1.7")," - 2022-03-15"),(0,n.kt)("h4",{id:"-new-features-30"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(less): add global gap sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c83f20280b8a7ab0b5c78e3df7646beebe08709"},(0,n.kt)("inlineCode",{parentName:"a"},"3c83f20"))),(0,n.kt)("li",{parentName:"ul"},"feat(icons): import remix css ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/29967fb39034910dce286880f347a670f77421b3"},(0,n.kt)("inlineCode",{parentName:"a"},"29967fb")))),(0,n.kt)("h4",{id:"-bug-fixes-44"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(menu): fix border overflow for tabs and pagination ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e88721f916affa2a6d2f03930eb4266f9a2b0fb9"},(0,n.kt)("inlineCode",{parentName:"a"},"e88721f"))),(0,n.kt)("li",{parentName:"ul"},"fix(accordion): responsive and accessibility issues ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c225935ceb9fdba45c6f94086a35e177495fe584"},(0,n.kt)("inlineCode",{parentName:"a"},"c225935")))),(0,n.kt)("h4",{id:"-enhancements-59"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(menu): update paddings for tabs and pagination ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/533a5093e6c306034cb16e0a88e045019677951e"},(0,n.kt)("inlineCode",{parentName:"a"},"533a509"))),(0,n.kt)("li",{parentName:"ul"},"refactor(accordion): import semantic icon for remix arrows ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9aa77d856d1e43f4ec3daaab37f06fa91ebd1eaf"},(0,n.kt)("inlineCode",{parentName:"a"},"9aa77d8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(all) icons, accordion, button and menu itml #108 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/52ed2ca19b5e8dea60f1ee7bfd9c3b6b49a49f7d"},(0,n.kt)("inlineCode",{parentName:"a"},"52ed2ca"))),(0,n.kt)("li",{parentName:"ul"},"change(storybook): segment stories now contain several elements ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/98a7654b0d4a7c30c7a2df35103ddb2740f3ca2d"},(0,n.kt)("inlineCode",{parentName:"a"},"98a7654"))),(0,n.kt)("li",{parentName:"ul"},"change(table): inherit header alignment instead of hard-coding values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ebb5193babfe8b99094db6778afdaf2d91b2c4dd"},(0,n.kt)("inlineCode",{parentName:"a"},"ebb5193"))),(0,n.kt)("li",{parentName:"ul"},"refactor(icons): add remix icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4c1a92b671b52c509386addc02e8919c93391fb"},(0,n.kt)("inlineCode",{parentName:"a"},"c4c1a92"))),(0,n.kt)("li",{parentName:"ul"},"refactor(container): restore mobile width to auto ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2df184c19a8685c69e6b9a55b147a97853cc6b74"},(0,n.kt)("inlineCode",{parentName:"a"},"2df184c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button): update action button hover color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bb09d718433f93091ca1b325471d48741825ca96"},(0,n.kt)("inlineCode",{parentName:"a"},"bb09d71")))),(0,n.kt)("h4",{id:"-internal-changes-21"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(docusaurus): docs delete ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f9d733287902ccb096f5a976a2928e43a43a8e7"},(0,n.kt)("inlineCode",{parentName:"a"},"5f9d733")))),(0,n.kt)("h4",{id:"-documentation-changes-19"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(colors): corrections ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/da64c4c6b58e8840ea98be75d442b90911197e28"},(0,n.kt)("inlineCode",{parentName:"a"},"da64c4c"))),(0,n.kt)("li",{parentName:"ul"},"docs(list): default list showcase ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8ded06231c14d1394f77559aeb2d5a7e3a0c1bf1"},(0,n.kt)("inlineCode",{parentName:"a"},"8ded062")))),(0,n.kt)("h4",{id:"\ufe0f-others-50"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"bug(form): input min-width more specific to not break volto interface ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3f5b5d498ea1a0e3bb6fd62af5930f6579029b11"},(0,n.kt)("inlineCode",{parentName:"a"},"3f5b5d4"))),(0,n.kt)("li",{parentName:"ul"},"Update package.json ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3dba28b5a3d28adbf946a8df3d9cc9b8ef4c68e0"},(0,n.kt)("inlineCode",{parentName:"a"},"3dba28b")))),(0,n.kt)("h3",{id:"016---2022-03-11"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.5...0.1.6"},"0.1.6")," - 2022-03-11"),(0,n.kt)("h4",{id:"-new-features-31"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(cards): add custom display for volto-block-image-cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/645096ac5a0aa3326834191f56ee8a77db0464f5"},(0,n.kt)("inlineCode",{parentName:"a"},"645096a"))),(0,n.kt)("li",{parentName:"ul"},"feat(PublicationCard):create publication card component & styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e5f9b7a9bb301f446b232b99f7db54e6a7470ae"},(0,n.kt)("inlineCode",{parentName:"a"},"3e5f9b7"))),(0,n.kt)("li",{parentName:"ul"},"feat(PublicationCard):create publication card component & styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/12cdd5d50dc4c05f2c2b83586df90c7b91c11a75"},(0,n.kt)("inlineCode",{parentName:"a"},"12cdd5d"))),(0,n.kt)("li",{parentName:"ul"},"feat(Related Content): create Related Content component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/77eda953196f9e686d4ec2c996d6902a614af4a0"},(0,n.kt)("inlineCode",{parentName:"a"},"77eda95"))),(0,n.kt)("li",{parentName:"ul"},"feat(Related Content): create Related Content component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/08d495baeae575a07813056176ac940d7edc91eb"},(0,n.kt)("inlineCode",{parentName:"a"},"08d495b"))),(0,n.kt)("li",{parentName:"ul"},"feat(pagination,related) added several r3 components #105 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/08d47c199286402c31a0ff0de38fd08533d2cd91"},(0,n.kt)("inlineCode",{parentName:"a"},"08d47c1")))),(0,n.kt)("h4",{id:"-bug-fixes-45"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(Related Content): limit publication card number to 4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e7df03214824a85911c26499c8975f88ffa9fe4d"},(0,n.kt)("inlineCode",{parentName:"a"},"e7df032"))),(0,n.kt)("li",{parentName:"ul"},"fix(less variables):rename publication card variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/55c6fb8e5e9660352ce1bf2bd38c4ef8834ce184"},(0,n.kt)("inlineCode",{parentName:"a"},"55c6fb8"))),(0,n.kt)("li",{parentName:"ul"},"fix(Publication Card): add link to card and arg name fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/36a7c961639b2ff07acd455ccf277dd0a93f753c"},(0,n.kt)("inlineCode",{parentName:"a"},"36a7c96"))),(0,n.kt)("li",{parentName:"ul"},"fix(radio): fix bullet scaling issue with firefox ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f02c95f18c77527f949f115471cf24302df4d49"},(0,n.kt)("inlineCode",{parentName:"a"},"5f02c95"))),(0,n.kt)("li",{parentName:"ul"},"fix(radio): fix bullet scaling issue with firefox ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dbb2e27b43e6d267a436a8475107ad01e940ec93"},(0,n.kt)("inlineCode",{parentName:"a"},"dbb2e27")))),(0,n.kt)("h4",{id:"-enhancements-60"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(form): remove custom classes and add container to form items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6b5442a3c56854bf30269f235099d8507ba588f7"},(0,n.kt)("inlineCode",{parentName:"a"},"6b5442a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form): remove custom classes and add container to form items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d1ec083647f854c09d8a64dffa6a5c829321049e"},(0,n.kt)("inlineCode",{parentName:"a"},"d1ec083"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form): update form wrapper component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7195768bbe86121fc82bebca29abfb20b50d77a"},(0,n.kt)("inlineCode",{parentName:"a"},"a719576"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form): update form wrapper component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0736ec7d671d756c13a69bd8bf93488805da27e2"},(0,n.kt)("inlineCode",{parentName:"a"},"0736ec7"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form): adjust form items to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4213cfb79430273e637b06a76af28c9cd660aa74"},(0,n.kt)("inlineCode",{parentName:"a"},"4213cfb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form): adjust form items to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/374ffbc1c380df1b1a5f9939fc658d9ecca4ae1b"},(0,n.kt)("inlineCode",{parentName:"a"},"374ffbc"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumb): remove custom class anf and new variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b3cb83d90e0be7f8a80f619d57bc90cae4f8f207"},(0,n.kt)("inlineCode",{parentName:"a"},"b3cb83d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumb): remove custom class anf and new variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5808ad3576439df010bebfb8fd423858ffc4e66"},(0,n.kt)("inlineCode",{parentName:"a"},"d5808ad"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): clear up unnecessary form elements controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f7e7d5bc285ea5115bc8770c7471729f06da891e"},(0,n.kt)("inlineCode",{parentName:"a"},"f7e7d5b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): small change in unordered list story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ffd87246df9dffcc064683e93d6f3aff35b3931"},(0,n.kt)("inlineCode",{parentName:"a"},"3ffd872"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): small change in unordered list story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6ce16e990f15ef8c61493359815405517756c32c"},(0,n.kt)("inlineCode",{parentName:"a"},"6ce16e9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pagination): fix menu overrides for tabs that affects pagination ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fe8c4ca32072518820ad38f8b334b38f52ef2df5"},(0,n.kt)("inlineCode",{parentName:"a"},"fe8c4ca"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pagination): fix menu overrides for tabs that affects pagination ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3f4b726c2a2047f6f9a65375074dd7ea38717f5c"},(0,n.kt)("inlineCode",{parentName:"a"},"3f4b726"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Loader):remove image & add background image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70fe041e06cfee946bb9557f9fcb5ff49d08c287"},(0,n.kt)("inlineCode",{parentName:"a"},"70fe041"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Loader):remove image & add background image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac3812684ee4377914801cd770890c78bdeecedf"},(0,n.kt)("inlineCode",{parentName:"a"},"ac38126"))),(0,n.kt)("li",{parentName:"ul"},"refactor(list): remove selection control ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a09b1798a62a6e192deb1d217d0c44b4b881ce6a"},(0,n.kt)("inlineCode",{parentName:"a"},"a09b179"))),(0,n.kt)("li",{parentName:"ul"},"refactor(list): remove selection control ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/17bf710d00a91acd35356dbaa9d5093ca80a8987"},(0,n.kt)("inlineCode",{parentName:"a"},"17bf710"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook):unordered list minor change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/df2b72730500aee5d0bbc82185222edacad38b2b"},(0,n.kt)("inlineCode",{parentName:"a"},"df2b727"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook):unordered list minor change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef6db73ce2236d0f653212d2f57c336f1f8d806e"},(0,n.kt)("inlineCode",{parentName:"a"},"ef6db73"))),(0,n.kt)("li",{parentName:"ul"},"refactor(colors): remove metalic blue color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b2f95b6dc3b1d8314827d56e88efa0dfc719aca2"},(0,n.kt)("inlineCode",{parentName:"a"},"b2f95b6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(colors): remove metalic blue color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1eea33f71fdde5834f82d244224c185fde3ab8ba"},(0,n.kt)("inlineCode",{parentName:"a"},"1eea33f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button): update variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b1774d8c7f32ded2eff654b0d16e45d944fe5690"},(0,n.kt)("inlineCode",{parentName:"a"},"b1774d8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button): update variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/061f3e3042f28575dbb1a70f09a62bda728815be"},(0,n.kt)("inlineCode",{parentName:"a"},"061f3e3"))),(0,n.kt)("li",{parentName:"ul"},"change(blockquote): treat slate as a variation of blockquote component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19bd9a5f67e573b71531fe34b29d2e08e0856eae"},(0,n.kt)("inlineCode",{parentName:"a"},"19bd9a5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(container): remove important from rules ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e984771ed59fe849246ae8a01d9d84f3f2f232c5"},(0,n.kt)("inlineCode",{parentName:"a"},"e984771"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook):add textarea control to add/remove fluid class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/475f540efa76d0993c3f7bd72d4c646385f4c909"},(0,n.kt)("inlineCode",{parentName:"a"},"475f540"))),(0,n.kt)("li",{parentName:"ul"},"refactor(container): remove important from rules ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1cc69848705d3d592221bf7fa7d43c8b0eb37f09"},(0,n.kt)("inlineCode",{parentName:"a"},"1cc6984"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): add required attribute to form fields ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fecee278b920c44dd0dd34ace81f9606258c8f7c"},(0,n.kt)("inlineCode",{parentName:"a"},"fecee27"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progressBar): update progress bar colors with vars ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4ef1f0f6eba9792901bc9e0ec5b01877e9da96e"},(0,n.kt)("inlineCode",{parentName:"a"},"c4ef1f0"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progressBar): update progress bar colors with vars ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a44d73c48b6ccc988508fed5c3fb585353fe0958"},(0,n.kt)("inlineCode",{parentName:"a"},"a44d73c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): add required attribute to form fields ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/21da79eafa9f23dcf01cac7e096da7fab2187450"},(0,n.kt)("inlineCode",{parentName:"a"},"21da79e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(list): adjust bullet size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2b29e4e429f939500bc7d7ebd5836b8bc24090ec"},(0,n.kt)("inlineCode",{parentName:"a"},"2b29e4e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(list): adjust bullet size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/61c341cfdad3fccdd7499f6957f91ab99159ea16"},(0,n.kt)("inlineCode",{parentName:"a"},"61c341c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): add inverted background to global variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1427e70f2b208531bbb91ab1a708430f1c03ea3a"},(0,n.kt)("inlineCode",{parentName:"a"},"1427e70"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): add inverted background to global variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea25dfa5589181b7d23bef153bae3ab279e70167"},(0,n.kt)("inlineCode",{parentName:"a"},"ea25dfa"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): remove custom class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/46cc5601e378c7bfcf927b7c25dae2a2d3f795fd"},(0,n.kt)("inlineCode",{parentName:"a"},"46cc560"))),(0,n.kt)("li",{parentName:"ul"},"refactor(container): update mobile width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d548a44d86745270778134028be597f559d7a0b4"},(0,n.kt)("inlineCode",{parentName:"a"},"d548a44"))),(0,n.kt)("li",{parentName:"ul"},"refactor(grid): replace px with rem units ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e792f51e4f41b8f3f53e297b9e5a01d5e2d9bfb1"},(0,n.kt)("inlineCode",{parentName:"a"},"e792f51"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): remove custom class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b5c8e7c2aeb2751d4b981eacc51e3dda58a922dc"},(0,n.kt)("inlineCode",{parentName:"a"},"b5c8e7c"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): updated template to change what's new title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e15f4d3c3e5d4199886bb4cfeda8dce6a4bf041"},(0,n.kt)("inlineCode",{parentName:"a"},"3e15f4d"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): added display variable for footer site logos ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5b3c2f6d85b3a42eefa8521a074a7581bfbd8fb"},(0,n.kt)("inlineCode",{parentName:"a"},"d5b3c2f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(grid): replace px with rem units ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f0331d00f537cf41ca184796386f60a88bfe6c86"},(0,n.kt)("inlineCode",{parentName:"a"},"f0331d0"))),(0,n.kt)("li",{parentName:"ul"},"change(github): auto deploy only on develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/11d6b4e9059674b6dd1fe655995231be03a910fb"},(0,n.kt)("inlineCode",{parentName:"a"},"11d6b4e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): implementation in preparation for Volto integration #20 #89 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/95b136d51ddbc5632c0fa1cc696c2297a8c4695c"},(0,n.kt)("inlineCode",{parentName:"a"},"95b136d"))),(0,n.kt)("li",{parentName:"ul"},"change(github): trigger autobuild when modifying templates contents ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/46094b1427793cd88da6f615b16b70e6cfaee9af"},(0,n.kt)("inlineCode",{parentName:"a"},"46094b1")))),(0,n.kt)("h4",{id:"-internal-changes-22"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(list): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f9e3b05effc0afeddc234b491bc86f2ec82a764f"},(0,n.kt)("inlineCode",{parentName:"a"},"f9e3b05"))),(0,n.kt)("li",{parentName:"ul"},"style(list): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8eb715b05b3bef2795d2485084386c6e910392cf"},(0,n.kt)("inlineCode",{parentName:"a"},"8eb715b"))),(0,n.kt)("li",{parentName:"ul"},"chore(github): merge changes from develop to develop-itml ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/063bd6ecc5e47321854ca4994a91bf0a43ab3e3e"},(0,n.kt)("inlineCode",{parentName:"a"},"063bd6e"))),(0,n.kt)("li",{parentName:"ul"},"chore(github): build deployment only on develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a5a1b0802b46d674d04ae099afc8510e3cb62222"},(0,n.kt)("inlineCode",{parentName:"a"},"a5a1b08"))),(0,n.kt)("li",{parentName:"ul"},"chore(github): build deployment only on develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bb455aa4308e6593c45bcb3a62b8058709d74f83"},(0,n.kt)("inlineCode",{parentName:"a"},"bb455aa"))),(0,n.kt)("li",{parentName:"ul"},"chore(github): merge changes from develop to develop-itml ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/129c12f60025db50bac5b2d3dd36e04a97d49499"},(0,n.kt)("inlineCode",{parentName:"a"},"129c12f")))),(0,n.kt)("h4",{id:"\ufe0f-others-51"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},'Revert "chore(github): merge changes from develop to develop-itml" ',(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca9520fe8d91f8924ea203eb32001e3e6518e472"},(0,n.kt)("inlineCode",{parentName:"a"},"ca9520f"))),(0,n.kt)("li",{parentName:"ul"},"refactor breadcrumbs component, make it functional and customizable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e902d6931060c5676d67842f95391379fcb3cccf"},(0,n.kt)("inlineCode",{parentName:"a"},"e902d69"))),(0,n.kt)("li",{parentName:"ul"},"rollback(cards): move custom display to volto-block-image-cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2564b1ec2cc52670c0f2abc92c49161f5cd1b006"},(0,n.kt)("inlineCode",{parentName:"a"},"2564b1e"))),(0,n.kt)("li",{parentName:"ul"},"bring back segment wrapper and make it attached ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8458f0321f44f22a605e7179485d97f41a0afa38"},(0,n.kt)("inlineCode",{parentName:"a"},"8458f03"))),(0,n.kt)("li",{parentName:"ul"},"no ",(0,n.kt)("inlineCode",{parentName:"li"},"display: flex")," for blockquote added from slate ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5595ce1b8173e6952ab3926dc5f3c988279a42dc"},(0,n.kt)("inlineCode",{parentName:"a"},"5595ce1"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about code length ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a5f36523682dde8d1e16f416a07cd0c8c615a386"},(0,n.kt)("inlineCode",{parentName:"a"},"a5f3652"))),(0,n.kt)("li",{parentName:"ul"},"Add indenting rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/15c44cbcb6a52d0fd0438ff9b5d0e5963a4b53a0"},(0,n.kt)("inlineCode",{parentName:"a"},"15c44cb"))),(0,n.kt)("li",{parentName:"ul"},"fix warning related to proptype ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/946c6c6bc9dece0985ae4b9f9cad6ece2be0ff2c"},(0,n.kt)("inlineCode",{parentName:"a"},"946c6c6"))),(0,n.kt)("li",{parentName:"ul"},"fix profile section css overflow ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/db5126fc902e191d1e18fb7e4c54877c8d8786e6"},(0,n.kt)("inlineCode",{parentName:"a"},"db5126f"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about import sorting ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/804e188eea30427053111310ad2d3edf6a4ec78b"},(0,n.kt)("inlineCode",{parentName:"a"},"804e188"))),(0,n.kt)("li",{parentName:"ul"},"don't use volto-slate ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6a029765d3a59ac65b3b5dd18c1a9624bae1d52a"},(0,n.kt)("inlineCode",{parentName:"a"},"6a02976"))),(0,n.kt)("li",{parentName:"ul"},"remove segment custom width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1d3ea40f98bbdc1eab95b4da739a659b5e29ec16"},(0,n.kt)("inlineCode",{parentName:"a"},"1d3ea40"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about naming vars ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f9020fa3073190681de36cf1dcdf62e69ac2c74"},(0,n.kt)("inlineCode",{parentName:"a"},"8f9020f"))),(0,n.kt)("li",{parentName:"ul"},"update style for accordion title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0b0d678c69d8b0765ff015b0355c01d57c643192"},(0,n.kt)("inlineCode",{parentName:"a"},"0b0d678"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.6.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e771e657e5bedca3630d05cda643c45da5369d4c"},(0,n.kt)("inlineCode",{parentName:"a"},"e771e65"))),(0,n.kt)("li",{parentName:"ul"},"update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bbcab87ef4c8475f347f0daf4ab7e428e69c2316"},(0,n.kt)("inlineCode",{parentName:"a"},"bbcab87"))),(0,n.kt)("li",{parentName:"ul"},"add margin to ","<","br",">"," element to simulate gap as in design ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c6685c11a14febfc9b6c592a9adc9a25a0b80458"},(0,n.kt)("inlineCode",{parentName:"a"},"c6685c1"))),(0,n.kt)("li",{parentName:"ul"},"make breadcrumbs default size as tiny ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/589581fa29a7e249e59393bebe9dfe284090db6f"},(0,n.kt)("inlineCode",{parentName:"a"},"589581f"))),(0,n.kt)("li",{parentName:"ul"},"remove uneeded style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/82a8fb1eb3a359d54bc59234e498eb122d07223c"},(0,n.kt)("inlineCode",{parentName:"a"},"82a8fb1"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about hardcoded values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e04e0df7cd47d575e649d1995ea5c64b2a431b05"},(0,n.kt)("inlineCode",{parentName:"a"},"e04e0df"))),(0,n.kt)("li",{parentName:"ul"},"Add file mode rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/65c9a9357a82a39bf54862eff9231264a6277ab5"},(0,n.kt)("inlineCode",{parentName:"a"},"65c9a93"))),(0,n.kt)("li",{parentName:"ul"},"Add DRY rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/66c9c3a6b05bf3395f5bda1a7c5af26a9962e66c"},(0,n.kt)("inlineCode",{parentName:"a"},"66c9c3a"))),(0,n.kt)("li",{parentName:"ul"},"set profile section overflow to auto ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/71ab47f89a433233c14b394c3824e607dd18a393"},(0,n.kt)("inlineCode",{parentName:"a"},"71ab47f"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using eea-website-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/647a6e3e2093f2c4884c356eb148453551c8f33f"},(0,n.kt)("inlineCode",{parentName:"a"},"647a6e3"))),(0,n.kt)("li",{parentName:"ul"},"removed override already present in card.less ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/50d2ab26f85c8f409da02ec128cc1df34848ca69"},(0,n.kt)("inlineCode",{parentName:"a"},"50d2ab2"))),(0,n.kt)("li",{parentName:"ul"},"update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7a1d482aa875ab2669ed688663228d79ce9b7bea"},(0,n.kt)("inlineCode",{parentName:"a"},"7a1d482"))),(0,n.kt)("li",{parentName:"ul"},"Add functional components rule; add classnames rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91a0b067c7a36002a6d49c5c0238f593b5a6ac6e"},(0,n.kt)("inlineCode",{parentName:"a"},"91a0b06"))),(0,n.kt)("li",{parentName:"ul"},"added comment about need for removal of this fix later ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/65b81665c1cc41991b4903bb44a5eb7fb8ec5f3b"},(0,n.kt)("inlineCode",{parentName:"a"},"65b8166")))),(0,n.kt)("h3",{id:"015---2022-03-08"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.4...0.1.5"},"0.1.5")," - 2022-03-08"),(0,n.kt)("h4",{id:"-new-features-32"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(cards): add custom display for volto-block-image-cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f49ffb65f41c78499f56251c2de267ce5617b4c5"},(0,n.kt)("inlineCode",{parentName:"a"},"f49ffb6"))),(0,n.kt)("li",{parentName:"ul"},"feat(KeyContent): add new component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2534c542c2fd729b31a9064a21dae2bd3cacb2e4"},(0,n.kt)("inlineCode",{parentName:"a"},"2534c54"))),(0,n.kt)("li",{parentName:"ul"},"feat(docusaurus): Updated developer guidelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca146ffd42cb31286a5c49fa09390d0a93270cfa"},(0,n.kt)("inlineCode",{parentName:"a"},"ca146ff"))),(0,n.kt)("li",{parentName:"ul"},"feat(storybook): add testimonial component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/55d97472d82f3819674e78f684e197625c9f854c"},(0,n.kt)("inlineCode",{parentName:"a"},"55d9747"))),(0,n.kt)("li",{parentName:"ul"},"feat(storybook): add AvatarGrid component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b6684456ea6fa17695734b5179b39be77644da93"},(0,n.kt)("inlineCode",{parentName:"a"},"b668445"))),(0,n.kt)("li",{parentName:"ul"},"feat(storybook):add Loader component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6758346a516f7c4be5d66dfdf198dbe2ffe3f01"},(0,n.kt)("inlineCode",{parentName:"a"},"f675834")))),(0,n.kt)("h4",{id:"-bug-fixes-46"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(breakpoints): fix largest screen breakpoint bug on scaling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e4a11c876c20187351fa9454b4fbf0de3e502bff"},(0,n.kt)("inlineCode",{parentName:"a"},"e4a11c8"))),(0,n.kt)("li",{parentName:"ul"},"fix(profile): section css overflow and padding issues #95 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bb9eb0f83307524bda5cf86aa0dfd678c65da653"},(0,n.kt)("inlineCode",{parentName:"a"},"bb9eb0f"))),(0,n.kt)("li",{parentName:"ul"},"fix(storybook): lint auto changes for AvatarGrid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8e74f17df77f8f9f96bf442dc178417bbfc04c6"},(0,n.kt)("inlineCode",{parentName:"a"},"b8e74f1"))),(0,n.kt)("li",{parentName:"ul"},"fix(components): add grid structure to various components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cc33546deda634cee6031bd6cde6eef3eaacb76a"},(0,n.kt)("inlineCode",{parentName:"a"},"cc33546"))),(0,n.kt)("li",{parentName:"ul"},"fix(header) re-added span tags removed in pull request #74 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/00702d7831b84aad52f10368dbef740baf581ab8"},(0,n.kt)("inlineCode",{parentName:"a"},"00702d7")))),(0,n.kt)("h4",{id:"-enhancements-61"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(button): styling updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/37afda5b00797d456e303fb585dad145b575b2ed"},(0,n.kt)("inlineCode",{parentName:"a"},"37afda5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tab): updates on variables and overrides ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/54bf703f9f34f2f945f4635cd4bc4728174c7d47"},(0,n.kt)("inlineCode",{parentName:"a"},"54bf703"))),(0,n.kt)("li",{parentName:"ul"},"change(blockquote): treat slate as a variation of blockquote component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5e8a8b8220c7c25a266f045442aae44303eb8701"},(0,n.kt)("inlineCode",{parentName:"a"},"5e8a8b8"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): added display variable for footer site logos ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2f942b4a80c3ed9eb94e8b71299f4ebf33501eea"},(0,n.kt)("inlineCode",{parentName:"a"},"2f942b4"))),(0,n.kt)("li",{parentName:"ul"},"refactor(checkbox/radio): remove header from message and adjust top position of bullet ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a072b30bb01cf59339960cfd3254584cfae57c6"},(0,n.kt)("inlineCode",{parentName:"a"},"4a072b3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(color): remove secondaryColorDarken variable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/74c8ba073cc92af3987d81d484768235b95fcffb"},(0,n.kt)("inlineCode",{parentName:"a"},"74c8ba0"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): updated template to change what's new title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/58f58c887560e707ced47ccbac6897d8ebcf45d2"},(0,n.kt)("inlineCode",{parentName:"a"},"58f58c8"))),(0,n.kt)("li",{parentName:"ul"},"change(github): auto deploy only on develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bfa35a32bf0fefd4433aec4f7f8ee2cfe53eaae5"},(0,n.kt)("inlineCode",{parentName:"a"},"bfa35a3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): implementation in preparation for Volto integration #20 #97 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cddda2090d3d17c086dfd0cdb8a4dab3f886bfcd"},(0,n.kt)("inlineCode",{parentName:"a"},"cddda20"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumbs): component, make it functional and pluggable #32 #94 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f42e802bdf29d02c76131379b168c8c2119864b"},(0,n.kt)("inlineCode",{parentName:"a"},"9f42e80"))),(0,n.kt)("li",{parentName:"ul"},"change(card): added styles for volto cards integration #92 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a46ac21e6229059fb982174610a733c44000a2b6"},(0,n.kt)("inlineCode",{parentName:"a"},"a46ac21"))),(0,n.kt)("li",{parentName:"ul"},"refactor(grid): remove column count from example ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac0e9cf8e9f6ea99ddf8d5a92e49903999cde262"},(0,n.kt)("inlineCode",{parentName:"a"},"ac0e9cf"))),(0,n.kt)("li",{parentName:"ul"},"change(github): trigger autobuild when modifying templates contents ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f7d1523e92c1c4b3e6285a48d5f8c776aecfa9c"},(0,n.kt)("inlineCode",{parentName:"a"},"5f7d152"))),(0,n.kt)("li",{parentName:"ul"},"refactor(grid): remove custom grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1d978a96a464b3285961d54cb1cbc7c9eaf35faf"},(0,n.kt)("inlineCode",{parentName:"a"},"1d978a9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Form):change form field wrapper implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/73cdd6daba19aefce091552a62a528a42b323228"},(0,n.kt)("inlineCode",{parentName:"a"},"73cdd6d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(message): update colors to match design ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/633ce311dc5a6a141ee514a9108753531aa661e4"},(0,n.kt)("inlineCode",{parentName:"a"},"633ce31"))),(0,n.kt)("li",{parentName:"ul"},"refactor(checkbox/radio): update variables and remove important rules ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ad533b4e3e821c126f62b558523057720d2573c8"},(0,n.kt)("inlineCode",{parentName:"a"},"ad533b4"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables): add variables to less for new components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/47df026655748865bc7af8f44d51e5a9fcf7ee34"},(0,n.kt)("inlineCode",{parentName:"a"},"47df026"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Tab): fix vertical tab alignment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/401bdf2868e8c8305ad2c3cefa3188b730348574"},(0,n.kt)("inlineCode",{parentName:"a"},"401bdf2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(lint changes): add lint changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6f6847fc19db7922c93cb5f52e50db845d053e04"},(0,n.kt)("inlineCode",{parentName:"a"},"6f6847f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(inpageNavigation): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/62f74ea3c08069da8615516a52df8415d50048d5"},(0,n.kt)("inlineCode",{parentName:"a"},"62f74ea"))),(0,n.kt)("li",{parentName:"ul"},"refactor(message): updates on styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4cf8501de961794baf5a8ecec99e4bcddc2d71b"},(0,n.kt)("inlineCode",{parentName:"a"},"b4cf850"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): update class name ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef0969bd873e9fdd0eb32593f7c3f995270ef44c"},(0,n.kt)("inlineCode",{parentName:"a"},"ef0969b"))),(0,n.kt)("li",{parentName:"ul"},"change(github): use develop for auto pushing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a32a723f8126292f62a71cb4c4f94a2c7dec7605"},(0,n.kt)("inlineCode",{parentName:"a"},"a32a723")))),(0,n.kt)("h4",{id:"-internal-changes-23"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(design-system): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/631fa90e2ec5352c01e2ee0824de4a45cc33de34"},(0,n.kt)("inlineCode",{parentName:"a"},"631fa90"))),(0,n.kt)("li",{parentName:"ul"},"style(checkbox/radio): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a04939fdb530ed998a40aeb5b85a748d5dace0cd"},(0,n.kt)("inlineCode",{parentName:"a"},"a04939f"))),(0,n.kt)("li",{parentName:"ul"},"style(design-system): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c753f0b378384150597283c97f657eafbfff296"},(0,n.kt)("inlineCode",{parentName:"a"},"3c753f0"))),(0,n.kt)("li",{parentName:"ul"},"style(message): stylelint fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5b75057cb3a7b366a940ca9d1ba577cd09dc7225"},(0,n.kt)("inlineCode",{parentName:"a"},"5b75057")))),(0,n.kt)("h4",{id:"-documentation-changes-20"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): visuals guidelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/544a9502dc046d7e8bc635c19480a8deb2b31379"},(0,n.kt)("inlineCode",{parentName:"a"},"544a950"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): search guidelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0fb229d8b6a042bd716a093faaf8a1461b70cdb8"},(0,n.kt)("inlineCode",{parentName:"a"},"0fb229d"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): loader page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/892a25dba66f3557af22f8f0f96db695ddf1b402"},(0,n.kt)("inlineCode",{parentName:"a"},"892a25d")))),(0,n.kt)("h4",{id:"\ufe0f-others-52"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Reformat header.less ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f99dfc82c165304ca5600ce5138c1233615ab69"},(0,n.kt)("inlineCode",{parentName:"a"},"1f99dfc"))),(0,n.kt)("li",{parentName:"ul"},"Close menu when changing path ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/65daea9ee34c64bd5e51104077bc745b68169cd2"},(0,n.kt)("inlineCode",{parentName:"a"},"65daea9"))),(0,n.kt)("li",{parentName:"ul"},"refactor breadcrumbs component, make it functional and customizable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ec374e20565eb0a5aed0ff67a02cd6f77eba1f0"},(0,n.kt)("inlineCode",{parentName:"a"},"4ec374e"))),(0,n.kt)("li",{parentName:"ul"},"rollback(cards): move custom display to volto-block-image-cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/79d4c8914b7184d559465135f046b60ee96301e1"},(0,n.kt)("inlineCode",{parentName:"a"},"79d4c89"))),(0,n.kt)("li",{parentName:"ul"},"Open overlay menu on global menu click ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cc749bc4266aae793b85d72c43c8a08b0c2fec48"},(0,n.kt)("inlineCode",{parentName:"a"},"cc749bc"))),(0,n.kt)("li",{parentName:"ul"},"bring back segment wrapper and make it attached ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f413ffaf641c161e8ff0f8010759cffd7e30238"},(0,n.kt)("inlineCode",{parentName:"a"},"9f413ff"))),(0,n.kt)("li",{parentName:"ul"},"Use renderMenuItem also in mobile menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/02de0bb4750062a310109256b6c6d29120287fd4"},(0,n.kt)("inlineCode",{parentName:"a"},"02de0bb"))),(0,n.kt)("li",{parentName:"ul"},"Fix clicking outside closes menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af526646559d1a00ade04dc24def26e5665a5a8c"},(0,n.kt)("inlineCode",{parentName:"a"},"af52664"))),(0,n.kt)("li",{parentName:"ul"},"Cleanup args in header story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2bf6a304b1149ec1204f08f318248ed52ad8fa3d"},(0,n.kt)("inlineCode",{parentName:"a"},"2bf6a30"))),(0,n.kt)("li",{parentName:"ul"},"fix warning related to proptype ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/824b9beff77aae139882cd50a1d670a02ec6f723"},(0,n.kt)("inlineCode",{parentName:"a"},"824b9be"))),(0,n.kt)("li",{parentName:"ul"},"fix profile section css overflow ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8fd265413149f1b5e033dffa0fbcb5ef5ecad15f"},(0,n.kt)("inlineCode",{parentName:"a"},"8fd2654"))),(0,n.kt)("li",{parentName:"ul"},"don't use volto-slate ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70ca3d4ec4e8e4dc633e957b842d94b708af8b82"},(0,n.kt)("inlineCode",{parentName:"a"},"70ca3d4"))),(0,n.kt)("li",{parentName:"ul"},"remove segment custom width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a60d84d5fe76578b7760aa1dad6eef9a20916a7"},(0,n.kt)("inlineCode",{parentName:"a"},"4a60d84"))),(0,n.kt)("li",{parentName:"ul"},"update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/96f4af0fb22605fd294472eb18f7f62e4bd7b0fb"},(0,n.kt)("inlineCode",{parentName:"a"},"96f4af0"))),(0,n.kt)("li",{parentName:"ul"},"Fix TopDropdownMenu component rendering in mobile ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4626def4e1f97f323f3fef130f5d531925ba15b"},(0,n.kt)("inlineCode",{parentName:"a"},"a4626de"))),(0,n.kt)("li",{parentName:"ul"},"Add usePrevious hook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/797faba3cad73288755f6c6e685448d780905189"},(0,n.kt)("inlineCode",{parentName:"a"},"797faba"))),(0,n.kt)("li",{parentName:"ul"},"make breadcrumbs default size as tiny ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c8e1c64f27596421e78927f11616093667b04c6"},(0,n.kt)("inlineCode",{parentName:"a"},"3c8e1c6"))),(0,n.kt)("li",{parentName:"ul"},"Update package.json ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fa020cb5dd85e28d0713b3e8a11aff5b2c1060af"},(0,n.kt)("inlineCode",{parentName:"a"},"fa020cb"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about hardcoded values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0c6912c82625c2e389fd75f0d0a051348781d407"},(0,n.kt)("inlineCode",{parentName:"a"},"0c6912c"))),(0,n.kt)("li",{parentName:"ul"},"set profile section overflow to auto ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8db62bbcd0258fee16411e94888c732a29b1949d"},(0,n.kt)("inlineCode",{parentName:"a"},"8db62bb"))),(0,n.kt)("li",{parentName:"ul"},"added comment about need for removal of this fix later ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6fdbd713dbfe795e7e81cfa37398774fad71c054"},(0,n.kt)("inlineCode",{parentName:"a"},"6fdbd71"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using eea-website-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6051724437a38675e659c797bb5586ef81286ec0"},(0,n.kt)("inlineCode",{parentName:"a"},"6051724"))),(0,n.kt)("li",{parentName:"ul"},"removed override already present in card.less ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93c4e5aac9cc85ff2cc6c04180f6655d5f5616dc"},(0,n.kt)("inlineCode",{parentName:"a"},"93c4e5a"))),(0,n.kt)("li",{parentName:"ul"},"Remove console.log calls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8a3a4cb32bfed2daa86339b15c0301eb01e19f23"},(0,n.kt)("inlineCode",{parentName:"a"},"8a3a4cb"))),(0,n.kt)("li",{parentName:"ul"},"update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/81bb7d4a02576887b80e978c32724580b772d57a"},(0,n.kt)("inlineCode",{parentName:"a"},"81bb7d4"))),(0,n.kt)("li",{parentName:"ul"},"Update comment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ffa24001728f824b8e7154c93c5aad8196bd92ea"},(0,n.kt)("inlineCode",{parentName:"a"},"ffa2400"))),(0,n.kt)("li",{parentName:"ul"},"merge develop into this branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ad5b388957b7d67f1b7ae06f2b80b1c30868d72a"},(0,n.kt)("inlineCode",{parentName:"a"},"ad5b388"))),(0,n.kt)("li",{parentName:"ul"},"WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a8d97f10b9768894a135549e9dc8f938b663f905"},(0,n.kt)("inlineCode",{parentName:"a"},"a8d97f1"))),(0,n.kt)("li",{parentName:"ul"},"Use header.less from develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/99edbc6ccd6023162dcce75b36d6b9451b06f6dc"},(0,n.kt)("inlineCode",{parentName:"a"},"99edbc6"))),(0,n.kt)("li",{parentName:"ul"},"WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/57b5783e2b03859f89c5926951ea232547b455cc"},(0,n.kt)("inlineCode",{parentName:"a"},"57b5783"))),(0,n.kt)("li",{parentName:"ul"},"WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/785da36b725bf14bff28a67da799c51bc5b4f20f"},(0,n.kt)("inlineCode",{parentName:"a"},"785da36"))),(0,n.kt)("li",{parentName:"ul"},"WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5d1eba9a1df2d2bb078f119ee99b0627ac55ae1d"},(0,n.kt)("inlineCode",{parentName:"a"},"5d1eba9"))),(0,n.kt)("li",{parentName:"ul"},"adds Tags ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e37fc1957ed8357bc2190239da4440bb98b0dabe"},(0,n.kt)("inlineCode",{parentName:"a"},"e37fc19"))),(0,n.kt)("li",{parentName:"ul"},"Add useClickOutside hook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70364c88631cbfa6e6854a99dde42ea2ad73221f"},(0,n.kt)("inlineCode",{parentName:"a"},"70364c8"))),(0,n.kt)("li",{parentName:"ul"},"Implement outside click handling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fa6f81823c47ca32209f3f1c8b1810b5447f97ec"},(0,n.kt)("inlineCode",{parentName:"a"},"fa6f818"))),(0,n.kt)("li",{parentName:"ul"},"Simplify overlay menu template ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/28b04784cf32ed4393e452c56680bffda411d526"},(0,n.kt)("inlineCode",{parentName:"a"},"28b0478"))),(0,n.kt)("li",{parentName:"ul"},"fixes less variables, fixes tags positioning ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cc19b9b537b5f21ceaba986bbd0182bb3b867ac7"},(0,n.kt)("inlineCode",{parentName:"a"},"cc19b9b"))),(0,n.kt)("li",{parentName:"ul"},"WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/15bc0f4287b705839f6fd5ac8835f03e2e99f1f1"},(0,n.kt)("inlineCode",{parentName:"a"},"15bc0f4"))),(0,n.kt)("li",{parentName:"ul"},"no ",(0,n.kt)("inlineCode",{parentName:"li"},"display: flex")," for blockquote added from slate ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/312a893e924dea4e7aed182be4a615bc3c4f04f8"},(0,n.kt)("inlineCode",{parentName:"a"},"312a893"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about code length ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/318cd48f8116a49897590137eebe2ce35285b813"},(0,n.kt)("inlineCode",{parentName:"a"},"318cd48"))),(0,n.kt)("li",{parentName:"ul"},"Add indenting rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d58968522ef82a7d5381fc4958ae2049562b7103"},(0,n.kt)("inlineCode",{parentName:"a"},"d589685"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about import sorting ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cd337c16650ae169e4b634b034f40f3cd887ceb8"},(0,n.kt)("inlineCode",{parentName:"a"},"cd337c1"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about naming vars ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b112de0dcaa4209cfe143dcd26ba929b4cbe0a42"},(0,n.kt)("inlineCode",{parentName:"a"},"b112de0"))),(0,n.kt)("li",{parentName:"ul"},"Bring back classNames from header subpopup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e477a5150bee569fadca300a3ccc3586e7d7ef4a"},(0,n.kt)("inlineCode",{parentName:"a"},"e477a51"))),(0,n.kt)("li",{parentName:"ul"},"removes tags hashtag from jsx ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6b8b3e94a6a1060304c1e5b228806985343ef6a0"},(0,n.kt)("inlineCode",{parentName:"a"},"6b8b3e9"))),(0,n.kt)("li",{parentName:"ul"},"WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d481324ff7a63e3cb0847b89fa188cc8781de4dc"},(0,n.kt)("inlineCode",{parentName:"a"},"d481324"))),(0,n.kt)("li",{parentName:"ul"},"fixes undefined on empty classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4b29080d646c44b02a28c4619f5285227fa2bf78"},(0,n.kt)("inlineCode",{parentName:"a"},"4b29080"))),(0,n.kt)("li",{parentName:"ul"},"stylelint changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a5ab83018bccd8fbfcf2160fe9c6c4fc24abe83a"},(0,n.kt)("inlineCode",{parentName:"a"},"a5ab830"))),(0,n.kt)("li",{parentName:"ul"},"Footer link color @white ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/578e4f7bb174cd46d50a8b5c5a97f8bbff510f11"},(0,n.kt)("inlineCode",{parentName:"a"},"578e4f7"))),(0,n.kt)("li",{parentName:"ul"},"add margin to ","<","br",">"," element to simulate gap as in design ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9ab9a97dc231fd3b704fedd99c742f425be4578c"},(0,n.kt)("inlineCode",{parentName:"a"},"9ab9a97"))),(0,n.kt)("li",{parentName:"ul"},"impors colors from site variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6117267716b76b17379ae989911c5d5f00e63259"},(0,n.kt)("inlineCode",{parentName:"a"},"6117267"))),(0,n.kt)("li",{parentName:"ul"},"small fix for the link in footer action ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/72df049aa644ac2a675057bf3a96440144acabfb"},(0,n.kt)("inlineCode",{parentName:"a"},"72df049"))),(0,n.kt)("li",{parentName:"ul"},"remove uneeded style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/66e9064de395b37caef1436aaee3a164b53ae406"},(0,n.kt)("inlineCode",{parentName:"a"},"66e9064"))),(0,n.kt)("li",{parentName:"ul"},"use proper naming conventions for var naming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/596e3143e28f23e60f20becd97276831c89d9684"},(0,n.kt)("inlineCode",{parentName:"a"},"596e314"))),(0,n.kt)("li",{parentName:"ul"},"Add file mode rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/805baa7db5ae1863bc85687f8f872c74a26647c8"},(0,n.kt)("inlineCode",{parentName:"a"},"805baa7"))),(0,n.kt)("li",{parentName:"ul"},"use less variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b43ac8d3bfc0231313f3d8bc719e373a127c6329"},(0,n.kt)("inlineCode",{parentName:"a"},"b43ac8d"))),(0,n.kt)("li",{parentName:"ul"},"Add DRY rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2f1584e769d0462c0385847630e3bbfe48a52339"},(0,n.kt)("inlineCode",{parentName:"a"},"2f1584e"))),(0,n.kt)("li",{parentName:"ul"},"Add functional components rule; add classnames rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1b2915ed3a4a3446e11058ac7de8937cf5755630"},(0,n.kt)("inlineCode",{parentName:"a"},"1b2915e"))),(0,n.kt)("li",{parentName:"ul"},"fix z-index of header ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d2a5d6bb822a298367ce58d867939318171a300"},(0,n.kt)("inlineCode",{parentName:"a"},"7d2a5d6"))),(0,n.kt)("li",{parentName:"ul"},"Remove comment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d120b16491406ea7cc26428dcf13ec2565868d0"},(0,n.kt)("inlineCode",{parentName:"a"},"7d120b1")))),(0,n.kt)("h3",{id:"014---2022-03-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.4-beta.0...0.1.4"},"0.1.4")," - 2022-03-01"),(0,n.kt)("h4",{id:"-enhancements-62"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(pagination): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/06cc3b6db6f56040264e4c70fe2e39ace14499d7"},(0,n.kt)("inlineCode",{parentName:"a"},"06cc3b6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Form):create form field wrapper file ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/95b9934a75ffd6b254b7bb9c119b8087c7565c13"},(0,n.kt)("inlineCode",{parentName:"a"},"95b9934"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): update margins for menu items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/230e476d133b3f7853a73f3f2ee372c6306bd43f"},(0,n.kt)("inlineCode",{parentName:"a"},"230e476"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): update gradient ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/47f2ea40c4f214a41af58ceb90839a05932b0b55"},(0,n.kt)("inlineCode",{parentName:"a"},"47f2ea4")))),(0,n.kt)("h4",{id:"-documentation-changes-21"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): divider page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c6bb2389f819a9ebd8e34db0e825f3e5f62130d4"},(0,n.kt)("inlineCode",{parentName:"a"},"c6bb238")))),(0,n.kt)("h4",{id:"\ufe0f-others-53"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"add footer links,align footer image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b039564e8cd3a0319ebe07f434f20bb7d7827fe1"},(0,n.kt)("inlineCode",{parentName:"a"},"b039564"))),(0,n.kt)("li",{parentName:"ul"},"cosmetics: remove formatting ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e02b08dc2adc8b89a5b9117b5a572c7080248c29"},(0,n.kt)("inlineCode",{parentName:"a"},"e02b08d"))),(0,n.kt)("li",{parentName:"ul"},"refactor Footer component to consume children and prop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/faafcffe07383ba55f5746cb971cdf706d988f78"},(0,n.kt)("inlineCode",{parentName:"a"},"faafcff"))),(0,n.kt)("li",{parentName:"ul"},"update footer stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4e5742872f21d9737f3de443fa0e9d1b6ba02637"},(0,n.kt)("inlineCode",{parentName:"a"},"4e57428"))),(0,n.kt)("li",{parentName:"ul"},"update stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/81973cac96ee48e9b294c45e32c0ec3d2956fe67"},(0,n.kt)("inlineCode",{parentName:"a"},"81973ca"))),(0,n.kt)("li",{parentName:"ul"},"Small improvements to footer ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6d1fdc000ab83932df62244142068f097aeeb85"},(0,n.kt)("inlineCode",{parentName:"a"},"f6d1fdc"))),(0,n.kt)("li",{parentName:"ul"},"fix header urls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e5908916823a1f5771ddbeb51b3e8af026425c49"},(0,n.kt)("inlineCode",{parentName:"a"},"e590891"))),(0,n.kt)("li",{parentName:"ul"},"Rename files in footer story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3de0c19d1ddeb69d8567026e1532fceb9221049a"},(0,n.kt)("inlineCode",{parentName:"a"},"3de0c19"))),(0,n.kt)("li",{parentName:"ul"},"add style for accordion title input on edit mode ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/598aa129f2dff0a2cb2ec57f551fa72481aa911e"},(0,n.kt)("inlineCode",{parentName:"a"},"598aa12"))),(0,n.kt)("li",{parentName:"ul"},"remove comments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2db0d2c2bbebe8bab8cf9801c5ea2650dde96b87"},(0,n.kt)("inlineCode",{parentName:"a"},"2db0d2c"))),(0,n.kt)("li",{parentName:"ul"},"Apply slate customization if volto-slate addon is used ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c066701dc359c6daf01703dac8fa61c2314c11cf"},(0,n.kt)("inlineCode",{parentName:"a"},"c066701"))),(0,n.kt)("li",{parentName:"ul"},"use relative links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af91a203bb30f5c9aa1335bfa8cdaa7857d577e2"},(0,n.kt)("inlineCode",{parentName:"a"},"af91a20"))),(0,n.kt)("li",{parentName:"ul"},"make footer anchor links white ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0c671e1bf52268505a5dc58196c285c04da33b10"},(0,n.kt)("inlineCode",{parentName:"a"},"0c671e1"))),(0,n.kt)("li",{parentName:"ul"},"use custom var for line-height ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f7f6c7ea605014741b9426b19008a4e6eda6704c"},(0,n.kt)("inlineCode",{parentName:"a"},"f7f6c7e"))),(0,n.kt)("li",{parentName:"ul"},"Update semantic.less ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4a90aed030a8927fa2ea949e4f44d23638c751a"},(0,n.kt)("inlineCode",{parentName:"a"},"a4a90ae"))),(0,n.kt)("li",{parentName:"ul"},"Bump release version ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c41a42bc2fd8174a2554e6dce1a1090eff4f3bd1"},(0,n.kt)("inlineCode",{parentName:"a"},"c41a42b"))),(0,n.kt)("li",{parentName:"ul"},"Update style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/89686990b2481f339c9bec7e7f9d35d9caab94c5"},(0,n.kt)("inlineCode",{parentName:"a"},"8968699"))),(0,n.kt)("li",{parentName:"ul"},"remove styling on header popups ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/86c499be61c0d2df46cb3469a47f0afae2e46c49"},(0,n.kt)("inlineCode",{parentName:"a"},"86c499b"))),(0,n.kt)("li",{parentName:"ul"},"remove search icon styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aca80fdc78859461cfee1d902b1d122d4a189b31"},(0,n.kt)("inlineCode",{parentName:"a"},"aca80fd"))),(0,n.kt)("li",{parentName:"ul"},"adjust popup height for computer screens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/47c5edb06c8d8cdb9af8ac64f68be0e0360eccaf"},(0,n.kt)("inlineCode",{parentName:"a"},"47c5edb"))),(0,n.kt)("li",{parentName:"ul"},"fix login container width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9a887e3b15aa63aab9be8738f599febcfe245b81"},(0,n.kt)("inlineCode",{parentName:"a"},"9a887e3"))),(0,n.kt)("li",{parentName:"ul"},"Typo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/90da95c67e965124da7f431e464bcbc15fa67894"},(0,n.kt)("inlineCode",{parentName:"a"},"90da95c"))),(0,n.kt)("li",{parentName:"ul"},"fix search-input icon line-height ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b087ff86d7753f3ee0bf90a9b07c4ee7ef5e336c"},(0,n.kt)("inlineCode",{parentName:"a"},"b087ff8"))),(0,n.kt)("li",{parentName:"ul"},"lint fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e9790ca72b8d3caf114c1b80b9c5837fb6a1a56e"},(0,n.kt)("inlineCode",{parentName:"a"},"e9790ca"))),(0,n.kt)("li",{parentName:"ul"},"Rename, reorganize logos ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1ef8d22df5a757258d8610818f44362046bc828d"},(0,n.kt)("inlineCode",{parentName:"a"},"1ef8d22")))),(0,n.kt)("h3",{id:"014-beta0---2022-02-25"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.3...0.1.4-beta.0"},"0.1.4-beta.0")," - 2022-02-25"),(0,n.kt)("h4",{id:"-new-features-33"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(github): added feature and bug reports templates with our guidelines as checkboxes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/15490937382ced93f5ac69cc1939256c0a468823"},(0,n.kt)("inlineCode",{parentName:"a"},"1549093")))),(0,n.kt)("h3",{id:"013---2022-02-25"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.2...0.1.3"},"0.1.3")," - 2022-02-25"),(0,n.kt)("h4",{id:"-bug-fixes-47"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(all): change eol to unix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/62e72244f78d43ce1c7b1a5ceb8405e4a617c88a"},(0,n.kt)("inlineCode",{parentName:"a"},"62e7224"))),(0,n.kt)("li",{parentName:"ul"},"fix(banner): separate url value ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f9c9140a6f8640bbb83a08f9c5c268f31ff7b6a8"},(0,n.kt)("inlineCode",{parentName:"a"},"f9c9140"))),(0,n.kt)("li",{parentName:"ul"},"fix(all): merge eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c68f6e0e7ab11d7451c8aabf194f62da0b6adb28"},(0,n.kt)("inlineCode",{parentName:"a"},"c68f6e0"))),(0,n.kt)("li",{parentName:"ul"},"fix(blockquote): align self property now uses a valid entry ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ec761634765105694386ce48153fb95c09339273"},(0,n.kt)("inlineCode",{parentName:"a"},"ec76163")))),(0,n.kt)("h4",{id:"-enhancements-63"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): new implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff013afc68fed97d085e3930f6d728b266786dc1"},(0,n.kt)("inlineCode",{parentName:"a"},"ff013af"))),(0,n.kt)("li",{parentName:"ul"},"change(volto): removed customizations made for ims theme from volto-eea-design-system ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bc8d514d82da0811c10eefe6dde16e0846497a4a"},(0,n.kt)("inlineCode",{parentName:"a"},"bc8d514"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Timeline): divide to sub components and change files to .jsx ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e2bd3b6c8dd064e7269819ce465b961a0cee849"},(0,n.kt)("inlineCode",{parentName:"a"},"3e2bd3b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4e5d08d565ef08e4e390ede4a611145a16ca2fa9"},(0,n.kt)("inlineCode",{parentName:"a"},"4e5d08d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): link header's menu to mega menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/08406d84e5bc1c7eb1358baff19ff6731f124b32"},(0,n.kt)("inlineCode",{parentName:"a"},"08406d8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Menu): change mega menu implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/455a51b9a9fbb00c6a89c42de226787c143176f7"},(0,n.kt)("inlineCode",{parentName:"a"},"455a51b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Grid):minor changes and delete extra files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/272585dfed0c0e82b26c1e6843484ad0981ba75f"},(0,n.kt)("inlineCode",{parentName:"a"},"272585d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(timeline): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b98641af00f23302b728094ed00a4563b6813387"},(0,n.kt)("inlineCode",{parentName:"a"},"b98641a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): fix link hover issue for tablet ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/564e9721aea7d4ed998d88764e37454bc3154d3d"},(0,n.kt)("inlineCode",{parentName:"a"},"564e972"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add remix icons and minor updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c9c97dd719187e996efabaee28ccbf23d43f03af"},(0,n.kt)("inlineCode",{parentName:"a"},"c9c97dd"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): change header buttons implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6608b8cfffb75dda90b01728dc4fe657cbd84069"},(0,n.kt)("inlineCode",{parentName:"a"},"6608b8c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): add sub components and change existing Main ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/74c35a3fe462bdad7b9b2a5a6e969043439fdf5b"},(0,n.kt)("inlineCode",{parentName:"a"},"74c35a3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(table): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab7a0e8d9e83edb3035d57285a5f85557bcd7576"},(0,n.kt)("inlineCode",{parentName:"a"},"ab7a0e8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Footer): delete Actions & ThemeSites files and clear imports ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7a78456f55742a1b356070303218342876641e52"},(0,n.kt)("inlineCode",{parentName:"a"},"7a78456"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/326655a48aeac65b32beadb48707d0193c952702"},(0,n.kt)("inlineCode",{parentName:"a"},"326655a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Breadcrumb): add react router link and minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/073a3a36215427dce274a533b10d2d0bb3526de9"},(0,n.kt)("inlineCode",{parentName:"a"},"073a3a3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): show menu on search & minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4d49a8ae6958b84bd2dbaf7bd5f62310037eb288"},(0,n.kt)("inlineCode",{parentName:"a"},"4d49a8a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(List): add extra default list story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/95665cdca945cba104a25d5efcbc56436dffbd7f"},(0,n.kt)("inlineCode",{parentName:"a"},"95665cd"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus) change generation of what's new section and bump package version ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6c35cff4d65bb44755376c85ff4de8c6b39af00b"},(0,n.kt)("inlineCode",{parentName:"a"},"6c35cff"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Footer): minor code changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/67cb4bc5f9d341da78e7816ed89f219d8ac2836e"},(0,n.kt)("inlineCode",{parentName:"a"},"67cb4bc"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Menu): add class to mega menu items for styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19baa342c29322d11371303dc0092f472da1eeee"},(0,n.kt)("inlineCode",{parentName:"a"},"19baa34"))),(0,n.kt)("li",{parentName:"ul"},"change(accordion): modified default accordion stories titles with real accordion names ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cf11cc81d7096d338c565180597822e51fcaa8b7"},(0,n.kt)("inlineCode",{parentName:"a"},"cf11cc8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): accessibility image alt fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7347a688c2f37f08390b189f8bfa990c26c7f75"},(0,n.kt)("inlineCode",{parentName:"a"},"a7347a6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): adjust to volto in progress ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/760becabf40dbbaed36dac6c37275c7e31aa2509"},(0,n.kt)("inlineCode",{parentName:"a"},"760beca"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): header items as storybook arguments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/388c752aa0694e78f5306c2b2efa4a34df4b9ca6"},(0,n.kt)("inlineCode",{parentName:"a"},"388c752"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): update less variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/35b0a98eced49212bb08c3c7d2ac6987a16ec6be"},(0,n.kt)("inlineCode",{parentName:"a"},"35b0a98"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): actions as buttons; don't hardcode url for banner image; subcomponentize Banner, add Banner.Action; add developer guidelines on inline styles and line endings; ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6dd5a41248e8bf4095744bd89217707f3ad820a1"},(0,n.kt)("inlineCode",{parentName:"a"},"6dd5a41"))),(0,n.kt)("li",{parentName:"ul"},"refactor(blockquote): fix responsive margins and sizes rems ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/209f94f5535d83678af5fd650dcc3892a94c8a34"},(0,n.kt)("inlineCode",{parentName:"a"},"209f94f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Input): label position and style change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/970074aacae0c1ffabe88be58779b332993a37fd"},(0,n.kt)("inlineCode",{parentName:"a"},"970074a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update dropdown menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32eb0fa5dbb431c5d8e74e4c3e28b0555dab8aea"},(0,n.kt)("inlineCode",{parentName:"a"},"32eb0fa"))),(0,n.kt)("li",{parentName:"ul"},"refactor(timeline): theming updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c80c9aa5eb08c3b58199c6f6faca06445640f9f8"},(0,n.kt)("inlineCode",{parentName:"a"},"c80c9aa"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Blockquote):remove image stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a6357caa641e18e7a19b834cd907ba8c7117367f"},(0,n.kt)("inlineCode",{parentName:"a"},"a6357ca"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus) proofread blockquote usage section and removed unused api section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0bb29fdb73bce90f842748abd978a388fff93932"},(0,n.kt)("inlineCode",{parentName:"a"},"0bb29fd"))),(0,n.kt)("li",{parentName:"ul"},"change(infrastructure) cherry-pick fix 9639243 skipping jenkins on auto commits ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fc744cda5a4e6d9da0ab6e7f92868d53f28f53c1"},(0,n.kt)("inlineCode",{parentName:"a"},"fc744cd"))),(0,n.kt)("li",{parentName:"ul"},"change(ci) build storybook and docusaurus only when pushing to develop-itml branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4de0cbf9bfc4ecb46605dca1048a38db844880e7"},(0,n.kt)("inlineCode",{parentName:"a"},"4de0cbf"))),(0,n.kt)("li",{parentName:"ul"},"change(infrastructure): modify whats new doc when committing the auto deployment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/39df33ed946a8167e4954cffb676144700e0ec38"},(0,n.kt)("inlineCode",{parentName:"a"},"39df33e"))),(0,n.kt)("li",{parentName:"ul"},"change(blockquote): introduce float argument for blockquote with image storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8fc72906c264b5e96702f8518e81d5724b494a5c"},(0,n.kt)("inlineCode",{parentName:"a"},"8fc7290"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pullquote): add word break ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2245e53dde6dd8abf437afa94e92bbedc60c9f8c"},(0,n.kt)("inlineCode",{parentName:"a"},"2245e53"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner): minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b9073b60e337eab40a992283b5b9e75d5cffe895"},(0,n.kt)("inlineCode",{parentName:"a"},"b9073b6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(table): fix th font weight ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a96a0a7a4cb450b5f947bc397495a2a41c605c87"},(0,n.kt)("inlineCode",{parentName:"a"},"a96a0a7"))),(0,n.kt)("li",{parentName:"ul"},"refactor(comment): remove avatar border radius ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d42c37bb8f71e20e1d0ec438c14e3c7ac00cf0ae"},(0,n.kt)("inlineCode",{parentName:"a"},"d42c37b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): adjust title size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7a24d9c07a5994fa46c39fdf1e827e0d1ae5e504"},(0,n.kt)("inlineCode",{parentName:"a"},"7a24d9c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Image): change image path ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a580da68a45bbe68d314f60e9495fc321489caf5"},(0,n.kt)("inlineCode",{parentName:"a"},"a580da6"))),(0,n.kt)("li",{parentName:"ul"},"change(infrastructure): specify that docs folder contains changes for deployment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a1ca9153b70e3525cd73423d059a8607f63fc2b9"},(0,n.kt)("inlineCode",{parentName:"a"},"a1ca915")))),(0,n.kt)("h4",{id:"-internal-changes-24"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(input) prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e83fa0c3e95e33d89ab668de38e6b0b12d9fb0d9"},(0,n.kt)("inlineCode",{parentName:"a"},"e83fa0c"))),(0,n.kt)("li",{parentName:"ul"},"chore(storybook): prettier fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/354c7b33c92a9f48ca9cbb0b96b6cec213e465c8"},(0,n.kt)("inlineCode",{parentName:"a"},"354c7b3"))),(0,n.kt)("li",{parentName:"ul"},"chore(design system): technical commit for edw integration tests ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f76035122d647e14b5151af3b39f0ab3e199af2"},(0,n.kt)("inlineCode",{parentName:"a"},"9f76035"))),(0,n.kt)("li",{parentName:"ul"},"style(storybook): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c9ad345268335c42e41d13b35c0da93e9770847"},(0,n.kt)("inlineCode",{parentName:"a"},"3c9ad34"))),(0,n.kt)("li",{parentName:"ul"},"chore(infrastructure) updated branch with changes from bitbucket ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/77866f8c7ac203db0645a74b7a7456b5c4de5dd7"},(0,n.kt)("inlineCode",{parentName:"a"},"77866f8")))),(0,n.kt)("h4",{id:"\ufe0f-others-54"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"doc(colours):fix color to better show primary ones ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/705b7899f9d687747d2deb27ac4d8b4429878de0"},(0,n.kt)("inlineCode",{parentName:"a"},"705b789"))),(0,n.kt)("li",{parentName:"ul"},"doc(colours):change font size to fit text in one line ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ad751660ec832e67a0c858e75685259b9ef8d82"},(0,n.kt)("inlineCode",{parentName:"a"},"4ad7516"))),(0,n.kt)("li",{parentName:"ul"},"bump package release to 1.3.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f3cfe4f5232ff96a9845d12da72008cf838c1010"},(0,n.kt)("inlineCode",{parentName:"a"},"f3cfe4f"))),(0,n.kt)("li",{parentName:"ul"},"Refactor banner into content subcomponent ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f8df238b4db90fdb841cdd5436a644e582f73b82"},(0,n.kt)("inlineCode",{parentName:"a"},"f8df238"))),(0,n.kt)("li",{parentName:"ul"},"lint fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cda322d8c013ef303b93b4b8d29594aa3bbd0bc1"},(0,n.kt)("inlineCode",{parentName:"a"},"cda322d"))),(0,n.kt)("li",{parentName:"ul"},"rollback don'ts grammar change and disable unresolved import for Banner.stories.jsx ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a1bd7154fa64451b6a521743955a57405dc7fb67"},(0,n.kt)("inlineCode",{parentName:"a"},"a1bd715"))),(0,n.kt)("li",{parentName:"ul"},"Add space line in component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4d1a5fbe9a9ea53701702d7ce33622795f5ab00"},(0,n.kt)("inlineCode",{parentName:"a"},"d4d1a5f")))),(0,n.kt)("h3",{id:"012---2022-02-17"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.2-beta.2...0.1.2"},"0.1.2")," - 2022-02-17"),(0,n.kt)("h4",{id:"-new-features-34"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(blockquote) added blockquote styles as a custom module ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d30662e23176cf7a5ab64aa322acd5a09a0c4130"},(0,n.kt)("inlineCode",{parentName:"a"},"d30662e")))),(0,n.kt)("h4",{id:"-bug-fixes-48"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(inpageNavigation): hide at the top of the page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/97ef50069cd9b29345fb68ce8b557a47577669a4"},(0,n.kt)("inlineCode",{parentName:"a"},"97ef500"))),(0,n.kt)("li",{parentName:"ul"},"fix(footer):missing image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac91a29a134c97af842c6be4987c60c44c4c96d8"},(0,n.kt)("inlineCode",{parentName:"a"},"ac91a29"))),(0,n.kt)("li",{parentName:"ul"},"fix(comment):fix broken image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8125dc179923f652ecd25003df8ecb4fb0aeffb9"},(0,n.kt)("inlineCode",{parentName:"a"},"8125dc1"))),(0,n.kt)("li",{parentName:"ul"},"fix(message): fix font loading ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fdc498e178a04315c88e005fbc1371ba954ff402"},(0,n.kt)("inlineCode",{parentName:"a"},"fdc498e"))),(0,n.kt)("li",{parentName:"ul"},"fix(logo): logo change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f8c8af4453774386d5d0432a078b049416d034b"},(0,n.kt)("inlineCode",{parentName:"a"},"5f8c8af")))),(0,n.kt)("h4",{id:"-enhancements-64"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): multiple components fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a3ff518323a3eab18edc5057c6f1233e5422a22"},(0,n.kt)("inlineCode",{parentName:"a"},"4a3ff51"))),(0,n.kt)("li",{parentName:"ul"},"change(infrastructure) re-enable integration tests for auto release stack ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce8daf8abc6eb9a6b7fd8579904a3e5642896e3a"},(0,n.kt)("inlineCode",{parentName:"a"},"ce8daf8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): global site files styling update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f3770f1756bca3898e2a67fa532a9d97b0fd1ef2"},(0,n.kt)("inlineCode",{parentName:"a"},"f3770f1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): multiple components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9277aaccb09aa03575b95851d55fc69b1f530e23"},(0,n.kt)("inlineCode",{parentName:"a"},"9277aac"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer) adjust to volto theming update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a59f1c354ceea661c60faabfdb6226c9f4ba1209"},(0,n.kt)("inlineCode",{parentName:"a"},"a59f1c3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): minor styling update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dd6b55c6c5331383a42f6865bd9bd0641feb9a3b"},(0,n.kt)("inlineCode",{parentName:"a"},"dd6b55c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): change header mega menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7559b57a08c2f0e9f3eb95167479ca041b998bc5"},(0,n.kt)("inlineCode",{parentName:"a"},"7559b57"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/451b9493b100dae80bed4b6629da725195dddff1"},(0,n.kt)("inlineCode",{parentName:"a"},"451b949"))),(0,n.kt)("li",{parentName:"ul"},"refactor(accordion): minor styling update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aeaf25f585c1379a2bd40de1c1bf03fee00ef76e"},(0,n.kt)("inlineCode",{parentName:"a"},"aeaf25f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bdff1768096443f2f453d76bf9958adabd309cb7"},(0,n.kt)("inlineCode",{parentName:"a"},"bdff176"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer):mobile responsiveness ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/14822bec78feebc2b06fc26d6992a481be2e3609"},(0,n.kt)("inlineCode",{parentName:"a"},"14822be"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): main and custom less files update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1607760bb1582c63ab1a6b978ac13bb0ca51b0c2"},(0,n.kt)("inlineCode",{parentName:"a"},"1607760"))),(0,n.kt)("li",{parentName:"ul"},"refactor(timeline): update after removing timeline addon ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f54d3806eb0a60379b46b03a04a6602ed465cd15"},(0,n.kt)("inlineCode",{parentName:"a"},"f54d380"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Footer): replace with subcomponents ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/378c652265213bafac9de1d946cb328fa2fe90cb"},(0,n.kt)("inlineCode",{parentName:"a"},"378c652"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): header change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/029e85039bb3f35a6ba4ff2870d98e1faa23661b"},(0,n.kt)("inlineCode",{parentName:"a"},"029e850"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): change header bar ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2b766fd62c86d22f01278c54d3a1dbfb696b095b"},(0,n.kt)("inlineCode",{parentName:"a"},"2b766fd"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus) use itml branch for docusaurus deployment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e286c50056aa6d0d5735cb330789b4e48a1f927"},(0,n.kt)("inlineCode",{parentName:"a"},"6e286c5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(accordion): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/971fcb824f6aa55ac28b4b275927b202d2c08ca6"},(0,n.kt)("inlineCode",{parentName:"a"},"971fcb8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): add sub components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7f955dbafa94c13e71ff587af70aa84d18da8da0"},(0,n.kt)("inlineCode",{parentName:"a"},"7f955db"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus) tweak auto deployment to always commit changes from docs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a2940daef1cf281bac87dec3cec68337053cc52d"},(0,n.kt)("inlineCode",{parentName:"a"},"a2940da"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): less and variables files created ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5b1a8aaf7f678dd60fb88149284058fcab617fd"},(0,n.kt)("inlineCode",{parentName:"a"},"d5b1a8a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(label): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c945e1600b4beb3667b389542adade317d285c6"},(0,n.kt)("inlineCode",{parentName:"a"},"3c945e1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(message): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e950fc56461540be24d9e5b2ff3c0bf8ad53738"},(0,n.kt)("inlineCode",{parentName:"a"},"3e950fc"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Footer): add sub components and props ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c3d14871887a83fb91792fbc8977c0439bcb16f2"},(0,n.kt)("inlineCode",{parentName:"a"},"c3d1487"))),(0,n.kt)("li",{parentName:"ul"},"refactor(modal): modal and confirm adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/83b60e94bdd3203a92a1b9038f9cc45011ba72a5"},(0,n.kt)("inlineCode",{parentName:"a"},"83b60e9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(comment): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/84348c36b5b750c324c89b5e3c462319bb9ebf46"},(0,n.kt)("inlineCode",{parentName:"a"},"84348c3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook):adjust headings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32f64f9b71d1cb8c96c9c37ba1850a2278f95287"},(0,n.kt)("inlineCode",{parentName:"a"},"32f64f9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): add comments to header menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c2c83b202e5117d8e0013101d8e922e9d93d21de"},(0,n.kt)("inlineCode",{parentName:"a"},"c2c83b2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Accordion): clear up accordion stories code ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4e59b8fa961b878591e9806e1ebbfdb841523077"},(0,n.kt)("inlineCode",{parentName:"a"},"4e59b8f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(segmant): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ab211e868296f377fddba203847549f0e5e07df"},(0,n.kt)("inlineCode",{parentName:"a"},"3ab211e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button) minor styling update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8782bb27c789a4aac97b380d718f4de129fdf682"},(0,n.kt)("inlineCode",{parentName:"a"},"8782bb2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): change image position ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cdd76d59ade86f3f989bf7d94e45e4d9b439115f"},(0,n.kt)("inlineCode",{parentName:"a"},"cdd76d5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumbs): update less variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/640817ee904f88a04f0e8f11b258f95b8db97039"},(0,n.kt)("inlineCode",{parentName:"a"},"640817e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(list): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1079c733e6ec634fedaab5b4630888a52b28e482"},(0,n.kt)("inlineCode",{parentName:"a"},"1079c73"))),(0,n.kt)("li",{parentName:"ul"},"refactor(timeline):adjust timeline module ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/213eb11e8e87940c18d81738609b4684329a5ce4"},(0,n.kt)("inlineCode",{parentName:"a"},"213eb11"))),(0,n.kt)("li",{parentName:"ul"},"refactor(blockquote):adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5eec87fc1b3017011266241c20b31217ac27c12d"},(0,n.kt)("inlineCode",{parentName:"a"},"5eec87f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progress): add progress bar colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ccf3c9823b2583fc70183554df7c4588fbf9ca13"},(0,n.kt)("inlineCode",{parentName:"a"},"ccf3c98"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pullquote):adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fee446668a8d65a717b42667af825cb5cec836b2"},(0,n.kt)("inlineCode",{parentName:"a"},"fee4466"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): change mobile mega menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c7ecf18a81024121218d580f201f324cf990829e"},(0,n.kt)("inlineCode",{parentName:"a"},"c7ecf18"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b726e49519914b02766bcd993b94ce9ff164e1df"},(0,n.kt)("inlineCode",{parentName:"a"},"b726e49"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button) adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/eb257f83541871ccc635842664722b914661770c"},(0,n.kt)("inlineCode",{parentName:"a"},"eb257f8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form): minor styling update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/79934b2cde2e806418a6422df2914321181f7a22"},(0,n.kt)("inlineCode",{parentName:"a"},"79934b2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Footer): create Actions & Sites sub components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/446840b99abd6897c1b59a9462d72b1f06f1dd4e"},(0,n.kt)("inlineCode",{parentName:"a"},"446840b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(inpageNavigation): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/85c631a9e9c1454f1f2530e4f1851089663dd610"},(0,n.kt)("inlineCode",{parentName:"a"},"85c631a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Inpage Navigation): changed button's display ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/36e5b4f107ce3535b607f7ed169c723a66ce6ac2"},(0,n.kt)("inlineCode",{parentName:"a"},"36e5b4f"))),(0,n.kt)("li",{parentName:"ul"},"enhancement(docusaurus) modified headings to be within release versions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19ace3038d6b4535b29634209e4d506e7dca2c2c"},(0,n.kt)("inlineCode",{parentName:"a"},"19ace30"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): move components to ui folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb91f88f628580f565eb01ea8627763bc2243dfb"},(0,n.kt)("inlineCode",{parentName:"a"},"cb91f88"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): change mega menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/de0fc6b3862a88ac04058b56020af23c1946ce41"},(0,n.kt)("inlineCode",{parentName:"a"},"de0fc6b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Pullquote): divide Pullquote to sub components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/34413c44ab9e318d67408f7497782b7de693deeb"},(0,n.kt)("inlineCode",{parentName:"a"},"34413c4"))),(0,n.kt)("li",{parentName:"ul"},"enhancement(docusaurus) replace changelog when auto-building docs Refs #145331 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/da25c0e25ffa80131ab4b5503b28e43385d9f827"},(0,n.kt)("inlineCode",{parentName:"a"},"da25c0e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(popup): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d0d192dc2b2a5edd422cf6a7b359c384ec4b1d55"},(0,n.kt)("inlineCode",{parentName:"a"},"d0d192d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ab6f914f487bea0df299de7da0bbd917733ee00"},(0,n.kt)("inlineCode",{parentName:"a"},"2ab6f91"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/89a16af86a165d7798b68b95ff3de215a92f0569"},(0,n.kt)("inlineCode",{parentName:"a"},"89a16af"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pullquotes) remove unnecessary variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e0d20a3febec060ac24c5498846e768d7068e8b9"},(0,n.kt)("inlineCode",{parentName:"a"},"e0d20a3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progress):adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d1ab950ee9cc14bbe95869d4f143fc428aad5a8d"},(0,n.kt)("inlineCode",{parentName:"a"},"d1ab950"))),(0,n.kt)("li",{parentName:"ul"},"refactor(blockquote) change variables names ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/36fd5be9bde1a3ceb8390639414f254fc26b8e76"},(0,n.kt)("inlineCode",{parentName:"a"},"36fd5be"))),(0,n.kt)("li",{parentName:"ul"},"refactor(comment): adjust font sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0311ed14c951eb9cba18a58f6f954c19601d838b"},(0,n.kt)("inlineCode",{parentName:"a"},"0311ed1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(InpageNavigation): clear up code ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1d7afdc8d751e61c3eef75360555807fdbef8619"},(0,n.kt)("inlineCode",{parentName:"a"},"1d7afdc"))),(0,n.kt)("li",{parentName:"ul"},"refactor(container): change variable name for computer padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/26d123f3e7e30a706b09efc10773694af79377f9"},(0,n.kt)("inlineCode",{parentName:"a"},"26d123f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(inpageNavigation): remove imports ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/25c1d1c3016695d92d104a12b22a6a9254f41b20"},(0,n.kt)("inlineCode",{parentName:"a"},"25c1d1c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): update ui index components exports ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce78d47880cab5849f4c01785cdd97a9b26771ec"},(0,n.kt)("inlineCode",{parentName:"a"},"ce78d47"))),(0,n.kt)("li",{parentName:"ul"},"change(infrastructure) auto build storybook when pushing to develop-itml branch of volto-eea-design-system ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e9aa5bc3de9c2e1c5dc55b5d317679bc14dd1cbd"},(0,n.kt)("inlineCode",{parentName:"a"},"e9aa5bc"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): delete demo stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8b58d0245f5bda7e2022a2ef9ace11015f13da01"},(0,n.kt)("inlineCode",{parentName:"a"},"8b58d02"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus) align deployment steps for building docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/37e4ce05d2772ac320a7ad561536189c5ea0a582"},(0,n.kt)("inlineCode",{parentName:"a"},"37e4ce0"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): remove components from customizations folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8930edeaf064ec316f1d086e1301a7e5269bfe4b"},(0,n.kt)("inlineCode",{parentName:"a"},"8930ede"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tab): minor styling update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1252ad0317ecf7e583dbb975b29a4c8e4c75330e"},(0,n.kt)("inlineCode",{parentName:"a"},"1252ad0"))),(0,n.kt)("li",{parentName:"ul"},"refactor(comment): change avatar src ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e5f9c4c02f5de5ae6480eedb45730bb76efbf7b4"},(0,n.kt)("inlineCode",{parentName:"a"},"e5f9c4c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner) : change file type and folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/878742ba0f95440ffbb5aec33f2cc4201dfacd43"},(0,n.kt)("inlineCode",{parentName:"a"},"878742b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form elements):changed text ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/919beea9deccec68ac0cdbbc1249ef4ab4c12230"},(0,n.kt)("inlineCode",{parentName:"a"},"919beea"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Image): change image src ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b9710849adf0cf4f10815186b6293bcc3881d68d"},(0,n.kt)("inlineCode",{parentName:"a"},"b971084"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Pullquote): add component propTypes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d32c5e69e76d7f369a286d29e49d767125550ebc"},(0,n.kt)("inlineCode",{parentName:"a"},"d32c5e6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(blockquote): adjust font sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d71a3cef7bfd4109c56b7fe8c07271c60a4bd19e"},(0,n.kt)("inlineCode",{parentName:"a"},"d71a3ce"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update font sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1c91c357a59669df0da0f4fc70d3aa420db27a14"},(0,n.kt)("inlineCode",{parentName:"a"},"1c91c35"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Blockquote): add component proTypes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea02649f92b0e41b1eb62a771330c2e53b3960e8"},(0,n.kt)("inlineCode",{parentName:"a"},"ea02649"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logo): update image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6113728e248c3e0fd0a467bb34406aa4403399e"},(0,n.kt)("inlineCode",{parentName:"a"},"f611372"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): restore config ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2c5239d92abe6be70b092e7e43f195308800f87"},(0,n.kt)("inlineCode",{parentName:"a"},"f2c5239"))),(0,n.kt)("li",{parentName:"ul"},"refactor(blockquote): update component name ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/572e655c033d93b32a48a61b1bf6383f6c993b26"},(0,n.kt)("inlineCode",{parentName:"a"},"572e655"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): fix story header import ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ceda6c7790964b150b95daf161d10364d6b67427"},(0,n.kt)("inlineCode",{parentName:"a"},"ceda6c7"))),(0,n.kt)("li",{parentName:"ul"},"change(infrastructure) auto build docusaurus when pushing to develop-itml branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7bebdf5e58f37400a8ae3d5f816c64c6b9ca3a5b"},(0,n.kt)("inlineCode",{parentName:"a"},"7bebdf5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): remove components from customization folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a9bb9b34e6961eaf16e54ed6f6ca4942944e8a0"},(0,n.kt)("inlineCode",{parentName:"a"},"4a9bb9b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner):story rename ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/56ff603d6c9cec7c22483a088624f5bd7911f717"},(0,n.kt)("inlineCode",{parentName:"a"},"56ff603"))),(0,n.kt)("li",{parentName:"ul"},"change(testing) removed navigation from cypress tests until component is finished ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5549f4c07cb0ffd725342f365aae07745d7e25f7"},(0,n.kt)("inlineCode",{parentName:"a"},"5549f4c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Segment): change to .jsx extension ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5cb35d81e8628832bab2e6ad50de6892e7e4370e"},(0,n.kt)("inlineCode",{parentName:"a"},"5cb35d8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Pullquote): change to .jsx extension ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/564cf7ea379703315f179ab922b4e0a02df63e47"},(0,n.kt)("inlineCode",{parentName:"a"},"564cf7e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(PopUp):change to .jsx extension ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dcb24ff252665a79fda2fec645e6f2a48ff71fd0"},(0,n.kt)("inlineCode",{parentName:"a"},"dcb24ff"))),(0,n.kt)("li",{parentName:"ul"},"refactor(InpageNavigation): change to .jsx extension ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dfefce3ebe55f8eb6f67974ccc33b0cb0bb13d9f"},(0,n.kt)("inlineCode",{parentName:"a"},"dfefce3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Blockquote): change to .jsx extension ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/44a164532c1ae969e4411e0cfb68b705ff2bfc1e"},(0,n.kt)("inlineCode",{parentName:"a"},"44a1645"))),(0,n.kt)("li",{parentName:"ul"},"refactor(heading): story name update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aa10f3412323321650e20401038d44b9bfdb507a"},(0,n.kt)("inlineCode",{parentName:"a"},"aa10f34")))),(0,n.kt)("h4",{id:"-internal-changes-25"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(footer): prettier fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/902c25712c88330db841240c9f1d6004e3e2674f"},(0,n.kt)("inlineCode",{parentName:"a"},"902c257"))),(0,n.kt)("li",{parentName:"ul"},"style(storybook): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/59f941dea9bf05f31257230f1a871c6eb0e98aae"},(0,n.kt)("inlineCode",{parentName:"a"},"59f941d")))),(0,n.kt)("h4",{id:"-documentation-changes-22"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus):multiple page updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2aba73ea6ff86c5a94789c707d98699fc1397e01"},(0,n.kt)("inlineCode",{parentName:"a"},"2aba73e"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus):update page content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/565697fecb4528cc5b4a6a43ca3ab9b026a2779e"},(0,n.kt)("inlineCode",{parentName:"a"},"565697f"))),(0,n.kt)("li",{parentName:"ul"},"docs(grid):update components grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/60eb083aa5d00840642caf73f6e0bb86b814aed5"},(0,n.kt)("inlineCode",{parentName:"a"},"60eb083"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): page adjustments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0641eacf9f4715acd4baaa651335ff84ac418009"},(0,n.kt)("inlineCode",{parentName:"a"},"0641eac"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus):updated various pages ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f860176a5f755d75d7b9558661e675fc678fe7ac"},(0,n.kt)("inlineCode",{parentName:"a"},"f860176"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): logo change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3af5e5c3acbf7ba4e152ca6944c500dbb0cf10ee"},(0,n.kt)("inlineCode",{parentName:"a"},"3af5e5c")))),(0,n.kt)("h4",{id:"\ufe0f-others-55"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"added sortable table stories and descriptions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d44dd7c651abe46c380b62efd3258c92223e99c"},(0,n.kt)("inlineCode",{parentName:"a"},"6d44dd7"))),(0,n.kt)("li",{parentName:"ul"},"Layout components theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/586101341f713bb072f2753d8df6e8b2ad6e4938"},(0,n.kt)("inlineCode",{parentName:"a"},"5861013"))),(0,n.kt)("li",{parentName:"ul"},"recovered files from origin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4ac04fde9c4297b09c834385f772e955b7f3b4a"},(0,n.kt)("inlineCode",{parentName:"a"},"a4ac04f"))),(0,n.kt)("li",{parentName:"ul"},"grid component & stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a5752e49aac05251905f7355234c3f9bc6b798f"},(0,n.kt)("inlineCode",{parentName:"a"},"4a5752e"))),(0,n.kt)("li",{parentName:"ul"},"Updated what's new section with actual commits from volto-eea-design-system repo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fc5e3c385d82ff7eccbd5841736f3ce292b2b7fd"},(0,n.kt)("inlineCode",{parentName:"a"},"fc5e3c3"))),(0,n.kt)("li",{parentName:"ul"},"Docusaurus title possible fix. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/db699e771b13bbd7e75c3bd84bb91ecf5d0459d8"},(0,n.kt)("inlineCode",{parentName:"a"},"db699e7"))),(0,n.kt)("li",{parentName:"ul"},"form elements stories added description & default values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6b4f6ebeed275a86f5ef6dafb13219db0c0fbbc6"},(0,n.kt)("inlineCode",{parentName:"a"},"6b4f6eb"))),(0,n.kt)("li",{parentName:"ul"},"removed API tabs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/58aa9286eb5d8cc520239aa6ee424ee5cd5446c3"},(0,n.kt)("inlineCode",{parentName:"a"},"58aa928"))),(0,n.kt)("li",{parentName:"ul"},"Layout updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/854f388c5b049e41217ddb444bc7bd0f2c61cdf6"},(0,n.kt)("inlineCode",{parentName:"a"},"854f388"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142123 removed extra customization of semantic.less: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab9de811b20b20a9f91ddc8b45b4de2eb9c47f6c"},(0,n.kt)("inlineCode",{parentName:"a"},"ab9de81"))),(0,n.kt)("li",{parentName:"ul"},"added page-header,footer and grid in docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/660c8e382068c179ca66831ae23588a4fb67cde6"},(0,n.kt)("inlineCode",{parentName:"a"},"660c8e3"))),(0,n.kt)("li",{parentName:"ul"},"Manual docs build and commit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/666eb6aff8535bb586a49579152fcf8a88961f35"},(0,n.kt)("inlineCode",{parentName:"a"},"666eb6a"))),(0,n.kt)("li",{parentName:"ul"},"added svg & png files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f1338d5bb02e17e402cea4b1584c7d01896097f9"},(0,n.kt)("inlineCode",{parentName:"a"},"f1338d5"))),(0,n.kt)("li",{parentName:"ul"},"added missing components to docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/934dfd8a98942c247deb2b5b8693604ad77cafa3"},(0,n.kt)("inlineCode",{parentName:"a"},"934dfd8"))),(0,n.kt)("li",{parentName:"ul"},"Control descriptions updated ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/56581ebc86a91fd012a98984b20f6daad25900fe"},(0,n.kt)("inlineCode",{parentName:"a"},"56581eb"))),(0,n.kt)("li",{parentName:"ul"},"Grid updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/700332d354aea84526ff22acf3bc2f8903c0f584"},(0,n.kt)("inlineCode",{parentName:"a"},"700332d"))),(0,n.kt)("li",{parentName:"ul"},"Button theming update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0ec68b6bd1ab060ac224a859180b9f750834c0b8"},(0,n.kt)("inlineCode",{parentName:"a"},"0ec68b6"))),(0,n.kt)("li",{parentName:"ul"},"site variebales & overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7251162f182f1528d72070aae8a5a14e9ec5ee93"},(0,n.kt)("inlineCode",{parentName:"a"},"7251162"))),(0,n.kt)("li",{parentName:"ul"},"Table and Tabs theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/49f08608e8be8475d561e1ce5c1bfbcfd21001f9"},(0,n.kt)("inlineCode",{parentName:"a"},"49f0860"))),(0,n.kt)("li",{parentName:"ul"},"Responsiveness updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48e1351104249fea610941793ff8ec3bf35d0699"},(0,n.kt)("inlineCode",{parentName:"a"},"48e1351"))),(0,n.kt)("li",{parentName:"ul"},"added various components to docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/550d71963b0957b1c5597bbdb2c699c411c649bd"},(0,n.kt)("inlineCode",{parentName:"a"},"550d719"))),(0,n.kt)("li",{parentName:"ul"},"Checkbox and radio updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24652a238f2c98fe5d8e8032e3320e0b3b4753e5"},(0,n.kt)("inlineCode",{parentName:"a"},"24652a2"))),(0,n.kt)("li",{parentName:"ul"},"remove images from typography and colour docs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8493e924f5af4ba7c2ed478d7bae6992b4ef6ed6"},(0,n.kt)("inlineCode",{parentName:"a"},"8493e92"))),(0,n.kt)("li",{parentName:"ul"},"added guidelines' text and finished all components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/02d75fcdc5a98633e4d563c7ec2863a9588b5506"},(0,n.kt)("inlineCode",{parentName:"a"},"02d75fc"))),(0,n.kt)("li",{parentName:"ul"},"added more missing components in docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8be82634c681a073b13a5a90ee2b699bd25b422a"},(0,n.kt)("inlineCode",{parentName:"a"},"8be8263"))),(0,n.kt)("li",{parentName:"ul"},"Prettier changes on docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f1e5eb796f2072e3b816a39a35cf48523405167"},(0,n.kt)("inlineCode",{parentName:"a"},"5f1e5eb"))),(0,n.kt)("li",{parentName:"ul"},"Grid updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ae099453e280de800a5a06c6fcbe074acc1f7bfd"},(0,n.kt)("inlineCode",{parentName:"a"},"ae09945"))),(0,n.kt)("li",{parentName:"ul"},"Minor fixes for tests ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3bdf3063d9bbc101f4b83c6aa4fc5fef5e87c776"},(0,n.kt)("inlineCode",{parentName:"a"},"3bdf306"))),(0,n.kt)("li",{parentName:"ul"},"Layout updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8b7a4dc8731cb02946e604a0dd73d2a45f61cd8b"},(0,n.kt)("inlineCode",{parentName:"a"},"8b7a4dc"))),(0,n.kt)("li",{parentName:"ul"},"Footer and TOC theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bb3d3c486f64e123b9009a76c6f054a8e2973230"},(0,n.kt)("inlineCode",{parentName:"a"},"bb3d3c4"))),(0,n.kt)("li",{parentName:"ul"},"Refs #145331 manually commit changelog until autobuild is stabilized ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93168b096b60fc6a208b20d1cbe610384be62f42"},(0,n.kt)("inlineCode",{parentName:"a"},"93168b0"))),(0,n.kt)("li",{parentName:"ul"},"label component changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/df8c0ff2d9646e4dcc7ed1a25a80712ca9ea2c9b"},(0,n.kt)("inlineCode",{parentName:"a"},"df8c0ff"))),(0,n.kt)("li",{parentName:"ul"},"added several sections to the theming guidelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff1a649d9c83794024e2db4f6349b3cac4fe79a0"},(0,n.kt)("inlineCode",{parentName:"a"},"ff1a649"))),(0,n.kt)("li",{parentName:"ul"},"Updated removed files. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/84f9b8cf7c469525367764909fa0d322532a13be"},(0,n.kt)("inlineCode",{parentName:"a"},"84f9b8c"))),(0,n.kt)("li",{parentName:"ul"},"added more docusaurus components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/52a3b9edd4c751225609dcaf2d16f08688e9cfeb"},(0,n.kt)("inlineCode",{parentName:"a"},"52a3b9e"))),(0,n.kt)("li",{parentName:"ul"},"Progress Bar ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f2efc9ded5a766df0c611a15f6a93f27bd14a37"},(0,n.kt)("inlineCode",{parentName:"a"},"9f2efc9"))),(0,n.kt)("li",{parentName:"ul"},"Modal and Confirm updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3b306c6fa5631e1e4e37456d483a69bc8cc3b234"},(0,n.kt)("inlineCode",{parentName:"a"},"3b306c6"))),(0,n.kt)("li",{parentName:"ul"},"Add proper changes to whatsnew meant in previous commit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/40f78e362ca607ef3893fff3d03c8ed1b4447c11"},(0,n.kt)("inlineCode",{parentName:"a"},"40f78e3"))),(0,n.kt)("li",{parentName:"ul"},"Form Descriptions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/de0dfbcb3a0a9610f1cbf7337f598b0c5338f2a3"},(0,n.kt)("inlineCode",{parentName:"a"},"de0dfbc"))),(0,n.kt)("li",{parentName:"ul"},"Prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1337e6fffb13fa8447488129d5dcd5af9e35e46a"},(0,n.kt)("inlineCode",{parentName:"a"},"1337e6f"))),(0,n.kt)("li",{parentName:"ul"},"Deleted files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b82f982fbfbaff4e74e35424c6122410e3830faf"},(0,n.kt)("inlineCode",{parentName:"a"},"b82f982"))),(0,n.kt)("li",{parentName:"ul"},"add new images for spacing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7b7b2c48317c45e3ff89162d703434f615c840e9"},(0,n.kt)("inlineCode",{parentName:"a"},"7b7b2c4"))),(0,n.kt)("li",{parentName:"ul"},"Messages Theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ad621a38c121f585125d5934c1939ba6a7198b33"},(0,n.kt)("inlineCode",{parentName:"a"},"ad621a3"))),(0,n.kt)("li",{parentName:"ul"},"added new content to docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1c83452be983d46f4128c33c25e69afef333f82a"},(0,n.kt)("inlineCode",{parentName:"a"},"1c83452"))),(0,n.kt)("li",{parentName:"ul"},"Minor less updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a36a8bbfeb201049fa13987894a5ec2ec167ed03"},(0,n.kt)("inlineCode",{parentName:"a"},"a36a8bb"))),(0,n.kt)("li",{parentName:"ul"},"Tabs and lists updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e37eef19e67c3c5720d5a9565e9884dc5c19f127"},(0,n.kt)("inlineCode",{parentName:"a"},"e37eef1"))),(0,n.kt)("li",{parentName:"ul"},"Inpage nav and timeline components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/76f0f82dc3a8f683268a4df7580b8f73a0cc1cb4"},(0,n.kt)("inlineCode",{parentName:"a"},"76f0f82"))),(0,n.kt)("li",{parentName:"ul"},"Prettier updated files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/679b9d2026091685d6982ab68e5088544ea0941e"},(0,n.kt)("inlineCode",{parentName:"a"},"679b9d2"))),(0,n.kt)("li",{parentName:"ul"},"dropdown initial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d8aef26dc905adbb0fb72c73d6188b50944931c9"},(0,n.kt)("inlineCode",{parentName:"a"},"d8aef26"))),(0,n.kt)("li",{parentName:"ul"},"Prettier changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f068af0b307d85146e1d8a529947c98988c506f7"},(0,n.kt)("inlineCode",{parentName:"a"},"f068af0"))),(0,n.kt)("li",{parentName:"ul"},"List initial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d3b96974bc35ad958b8cfc7921c1fbe345e5ebf"},(0,n.kt)("inlineCode",{parentName:"a"},"6d3b969"))),(0,n.kt)("li",{parentName:"ul"},"List story updated ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e96a6f6cff9a4db994df7cbf584842b18ca1c432"},(0,n.kt)("inlineCode",{parentName:"a"},"e96a6f6"))),(0,n.kt)("li",{parentName:"ul"},"Statistics updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/74bf63999cfeb0791b9475d3895a49a245be2cd3"},(0,n.kt)("inlineCode",{parentName:"a"},"74bf639"))),(0,n.kt)("li",{parentName:"ul"},"styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c169cc026189ca71e6e9cad17bde9d65d93ffbde"},(0,n.kt)("inlineCode",{parentName:"a"},"c169cc0"))),(0,n.kt)("li",{parentName:"ul"},"timeline comp storybook changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f42686ae19b619fa659730567bdceb369ecd4b0"},(0,n.kt)("inlineCode",{parentName:"a"},"1f42686"))),(0,n.kt)("li",{parentName:"ul"},"feature(docusaurus) added theming guidelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ded1f04a3197ac34640f98bcfe363c75a0a3745f"},(0,n.kt)("inlineCode",{parentName:"a"},"ded1f04"))),(0,n.kt)("li",{parentName:"ul"},"Properly commented out integration tests. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48b3a15f426db52b9fa27f6d7792c424b4939867"},(0,n.kt)("inlineCode",{parentName:"a"},"48b3a15"))),(0,n.kt)("li",{parentName:"ul"},"Reattempting commented out integrations tests. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3dd8211ecfca6c7891ef6851d0dc82899ab50f05"},(0,n.kt)("inlineCode",{parentName:"a"},"3dd8211"))),(0,n.kt)("li",{parentName:"ul"},"Button theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4231e1c264165ef6f7e2f2cd6fbd7c51159330b6"},(0,n.kt)("inlineCode",{parentName:"a"},"4231e1c"))),(0,n.kt)("li",{parentName:"ul"},"Card initial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/06dace5c4aa54d90ec4bcdc0b3fbc0883f825947"},(0,n.kt)("inlineCode",{parentName:"a"},"06dace5"))),(0,n.kt)("li",{parentName:"ul"},"form element storybook changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4b06aabddedbc281f23fc75a1e56476c4d1c1af"},(0,n.kt)("inlineCode",{parentName:"a"},"c4b06aa"))),(0,n.kt)("li",{parentName:"ul"},"Pagination theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2a80175762fbab23691d52f89cd38eb6f7740c4e"},(0,n.kt)("inlineCode",{parentName:"a"},"2a80175"))),(0,n.kt)("li",{parentName:"ul"},"Accordion theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8061bf90823a9172cfccb0ea1ed544ceda1c3fe9"},(0,n.kt)("inlineCode",{parentName:"a"},"8061bf9"))),(0,n.kt)("li",{parentName:"ul"},"global var updates and radio story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9526ee2fc8269db60ce912bfd4edfadbb55fed3a"},(0,n.kt)("inlineCode",{parentName:"a"},"9526ee2"))),(0,n.kt)("li",{parentName:"ul"},"created pullquote component & stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/df35563fb7ba2be403461c120b32ebffaa391736"},(0,n.kt)("inlineCode",{parentName:"a"},"df35563"))),(0,n.kt)("li",{parentName:"ul"},"Item stories added description & default values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9d459f2cd92e419813e7edf0f28dec4c750a5940"},(0,n.kt)("inlineCode",{parentName:"a"},"9d459f2"))),(0,n.kt)("li",{parentName:"ul"},"storybook clean up code ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bffd32603a70cf6cafa4874937f3fe218ba5de9d"},(0,n.kt)("inlineCode",{parentName:"a"},"bffd326"))),(0,n.kt)("li",{parentName:"ul"},"List updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/28f1b5352d83e144acdaae694cf20755a3b04106"},(0,n.kt)("inlineCode",{parentName:"a"},"28f1b53"))),(0,n.kt)("li",{parentName:"ul"},"Button classes updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/788c289549490d9ac5f1c40f1e39124349e1dbcd"},(0,n.kt)("inlineCode",{parentName:"a"},"788c289"))),(0,n.kt)("li",{parentName:"ul"},"Prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/678c9be717468fd2c8c425bec5999e81a66dabf6"},(0,n.kt)("inlineCode",{parentName:"a"},"678c9be"))),(0,n.kt)("li",{parentName:"ul"},"Removed header title from partial docusaurus components. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ed7c45e458504fa76ad500ab26f59a442b3c6952"},(0,n.kt)("inlineCode",{parentName:"a"},"ed7c45e"))),(0,n.kt)("li",{parentName:"ul"},"created banner component and stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9be170f2ccb20218a7bdae48c85f77acd69427ff"},(0,n.kt)("inlineCode",{parentName:"a"},"9be170f"))),(0,n.kt)("li",{parentName:"ul"},"Breadcrumb stories description & defaultValue -- clean up code ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/186ab65ca8635c853c919fc645c1ef0486e22a43"},(0,n.kt)("inlineCode",{parentName:"a"},"186ab65"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142123 added customization of semantic.less: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1e02356722fcb7528883b6dc3bf71279343fd1f7"},(0,n.kt)("inlineCode",{parentName:"a"},"1e02356"))),(0,n.kt)("li",{parentName:"ul"},"Card stories added description & default values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6b408f1ed24ee69ad8faacc6b36cf06e9917478"},(0,n.kt)("inlineCode",{parentName:"a"},"f6b408f"))),(0,n.kt)("li",{parentName:"ul"},"Statistic and accordion updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/16064ceeb6e1a7f097979365473c6a86ced4056f"},(0,n.kt)("inlineCode",{parentName:"a"},"16064ce"))),(0,n.kt)("li",{parentName:"ul"},"breadcrumb component & stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5bceb980502828c182a3998943ab086159c3fcb6"},(0,n.kt)("inlineCode",{parentName:"a"},"5bceb98"))),(0,n.kt)("li",{parentName:"ul"},"Container initial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3eb7155332f83bb8896a831e24cbae028413aba2"},(0,n.kt)("inlineCode",{parentName:"a"},"3eb7155"))),(0,n.kt)("li",{parentName:"ul"},"doc(docusaurus):Fix text for various parts ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bfd3fa2584a6e7aa2c26f3502b1ede912682905e"},(0,n.kt)("inlineCode",{parentName:"a"},"bfd3fa2"))),(0,n.kt)("li",{parentName:"ul"},"blockquote component & stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/879b6402f08112fedfffe6d66e72c37750593bb8"},(0,n.kt)("inlineCode",{parentName:"a"},"879b640"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 removed doc comments breaking doc building ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e6a6756b0533e6dbfdb636f9a9e6485e30187cad"},(0,n.kt)("inlineCode",{parentName:"a"},"e6a6756"))),(0,n.kt)("li",{parentName:"ul"},"Popup updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce2d641d8f5d940cbb93deefdabbbfb85ad20ad7"},(0,n.kt)("inlineCode",{parentName:"a"},"ce2d641"))),(0,n.kt)("li",{parentName:"ul"},"Global variables for colors and borders added ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e5fbd619d163acae03d3d1bb26e082390f90c21"},(0,n.kt)("inlineCode",{parentName:"a"},"6e5fbd6"))),(0,n.kt)("li",{parentName:"ul"},"Tab stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5429cfb7751d6ad31231f9cc19d8bd7e8d24d0b8"},(0,n.kt)("inlineCode",{parentName:"a"},"5429cfb"))),(0,n.kt)("li",{parentName:"ul"},"Confirm stories added description & default value ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/85cda14b1338dc986bbab5aa7846b4ef3ec8d0bd"},(0,n.kt)("inlineCode",{parentName:"a"},"85cda14"))),(0,n.kt)("li",{parentName:"ul"},"Kebab case class names ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b41cd078ab5b349dc1d15769832913dcc8e6786f"},(0,n.kt)("inlineCode",{parentName:"a"},"b41cd07"))),(0,n.kt)("li",{parentName:"ul"},"Card and Comment class updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/389946540d3def2ea81c5c7c489e79dc24d4efb3"},(0,n.kt)("inlineCode",{parentName:"a"},"3899465"))),(0,n.kt)("li",{parentName:"ul"},"Accordion updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c97ba39cc7823cb72180a858c0b8a69cc9434927"},(0,n.kt)("inlineCode",{parentName:"a"},"c97ba39"))),(0,n.kt)("li",{parentName:"ul"},"item stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/772e41f3d90034827afcb118c38ab075d3bb7bb9"},(0,n.kt)("inlineCode",{parentName:"a"},"772e41f"))),(0,n.kt)("li",{parentName:"ul"},"Accordion class updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9cdde86f14a17701d66b3d2850980251094934b5"},(0,n.kt)("inlineCode",{parentName:"a"},"9cdde86"))),(0,n.kt)("li",{parentName:"ul"},"Comment stories added description & default value ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb6f25bc1452330f4155ccf6a64df491740ed8da"},(0,n.kt)("inlineCode",{parentName:"a"},"cb6f25b"))),(0,n.kt)("li",{parentName:"ul"},"Accrodion stories description & default value ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab8fb883c3cbfeea1807bf1aaf72f5d8424933f4"},(0,n.kt)("inlineCode",{parentName:"a"},"ab8fb88"))),(0,n.kt)("li",{parentName:"ul"},"Pullquotes updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5984213ba9397ddb4c1932394a5cc368336cf0a"},(0,n.kt)("inlineCode",{parentName:"a"},"c598421"))),(0,n.kt)("li",{parentName:"ul"},"Modal and confirm class updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0ae47e6f55645c0d6318123a5783648326c16852"},(0,n.kt)("inlineCode",{parentName:"a"},"0ae47e6"))),(0,n.kt)("li",{parentName:"ul"},"Tab and paggination updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/96796fffb189d2fa3628423280f3622dcacb449f"},(0,n.kt)("inlineCode",{parentName:"a"},"96796ff"))),(0,n.kt)("li",{parentName:"ul"},"Form Updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e986a9f0fc48ddcbc17488a8bbbaec82cee92232"},(0,n.kt)("inlineCode",{parentName:"a"},"e986a9f"))),(0,n.kt)("li",{parentName:"ul"},"Classes renamed ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/73c8c3d622bb3b9c0b5cf09e340de4df6606a14c"},(0,n.kt)("inlineCode",{parentName:"a"},"73c8c3d"))),(0,n.kt)("li",{parentName:"ul"},"List and item less updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce0de1708ca410c7839f3ce9b5b3cfbdb6979939"},(0,n.kt)("inlineCode",{parentName:"a"},"ce0de17"))),(0,n.kt)("li",{parentName:"ul"},"Confirm theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/36e20ce0dd6cd159e9f8e519d22ab696a622efd9"},(0,n.kt)("inlineCode",{parentName:"a"},"36e20ce"))),(0,n.kt)("li",{parentName:"ul"},"container overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4b3970bd28df5939fd438f7fc58b5d1dfbe33719"},(0,n.kt)("inlineCode",{parentName:"a"},"4b3970b"))),(0,n.kt)("li",{parentName:"ul"},"Docusaurus theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fc4a8c5534b6eb85192a687890846b3a4bed9401"},(0,n.kt)("inlineCode",{parentName:"a"},"fc4a8c5"))),(0,n.kt)("li",{parentName:"ul"},"refacto(headings): update mobile headings sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b2e9f838766ffd73095ecf7eccc71629c09d6bc0"},(0,n.kt)("inlineCode",{parentName:"a"},"b2e9f83"))),(0,n.kt)("li",{parentName:"ul"},"list stories and style changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c61db53b153f8f0e51eddd6a6c82dd38e6278c82"},(0,n.kt)("inlineCode",{parentName:"a"},"c61db53"))),(0,n.kt)("li",{parentName:"ul"},"Tab theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e31e6c3b1f0d6b4dbd63425a1846914d8dfa318d"},(0,n.kt)("inlineCode",{parentName:"a"},"e31e6c3"))),(0,n.kt)("li",{parentName:"ul"},"Message and pagination classes updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c230687c48953208461aa92376588246d49dadaa"},(0,n.kt)("inlineCode",{parentName:"a"},"c230687"))),(0,n.kt)("li",{parentName:"ul"},"Segment initial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5724fe639e0f2aecbb1c633fe7e69b742ddfaf5"},(0,n.kt)("inlineCode",{parentName:"a"},"d5724fe"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 removed doc comments from api_markdown breaking doc building ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/efeacba82875c6b36ee1ef76792e86ca03ee6f35"},(0,n.kt)("inlineCode",{parentName:"a"},"efeacba"))),(0,n.kt)("li",{parentName:"ul"},"Timeline and responsiveness updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1ed152476e33bc41fdf9d89a6bc80f83af538373"},(0,n.kt)("inlineCode",{parentName:"a"},"1ed1524"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142123 use swap font-display for performance reasons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/083738f0834982b5684d67d75c080dc50b1c74ef"},(0,n.kt)("inlineCode",{parentName:"a"},"083738f"))),(0,n.kt)("li",{parentName:"ul"},"Breadcrumb stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3d0d17ca4f04123d55fda64c516b8f867ee1bd13"},(0,n.kt)("inlineCode",{parentName:"a"},"3d0d17c"))),(0,n.kt)("li",{parentName:"ul"},"Table component stories minor change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0bf40835204f57ab300e2c325309fddf5279d76b"},(0,n.kt)("inlineCode",{parentName:"a"},"0bf4083"))),(0,n.kt)("li",{parentName:"ul"},"List stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a64b304a3aa025873643d592de03cbfbc0d02d81"},(0,n.kt)("inlineCode",{parentName:"a"},"a64b304"))),(0,n.kt)("li",{parentName:"ul"},"blockquote component minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cdf71a883d3778e1bde25ec0b4a2f3e370b98b09"},(0,n.kt)("inlineCode",{parentName:"a"},"cdf71a8"))),(0,n.kt)("li",{parentName:"ul"},"ckeckbox stories minor change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d6e508f73a18d7ce9fcdb779026113659ce8950"},(0,n.kt)("inlineCode",{parentName:"a"},"6d6e508"))),(0,n.kt)("li",{parentName:"ul"},"image component storybook changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91290ec540ae913fff76f0dbed6c310668a2eeb3"},(0,n.kt)("inlineCode",{parentName:"a"},"91290ec"))),(0,n.kt)("li",{parentName:"ul"},"button overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5b78dd7b794e2e0ece2d5af9eb171e73b77ee93"},(0,n.kt)("inlineCode",{parentName:"a"},"d5b78dd"))),(0,n.kt)("li",{parentName:"ul"},"accordion overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fdcf7d58eea3ce9e68c49649fb4a788c8a801b49"},(0,n.kt)("inlineCode",{parentName:"a"},"fdcf7d5"))),(0,n.kt)("li",{parentName:"ul"},"Accordion component and stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5079247b2d4b96b2a7252692ea538ca620cbec38"},(0,n.kt)("inlineCode",{parentName:"a"},"5079247"))),(0,n.kt)("li",{parentName:"ul"},"Card theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/23bbb9d1b5751bc4877d02ae1c676ea28463ec39"},(0,n.kt)("inlineCode",{parentName:"a"},"23bbb9d"))),(0,n.kt)("li",{parentName:"ul"},"statistic overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2b11cb5ffb9c907563b37a3db8fea3b1ef3584bc"},(0,n.kt)("inlineCode",{parentName:"a"},"2b11cb5"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 build docs only on pull request like we do with storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/473bb87be53610a654d35c9b399de14824301385"},(0,n.kt)("inlineCode",{parentName:"a"},"473bb87"))),(0,n.kt)("li",{parentName:"ul"},"Card component stories minor change | added link icon ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/deb423af02643697c3781212b177487174d341f7"},(0,n.kt)("inlineCode",{parentName:"a"},"deb423a"))),(0,n.kt)("li",{parentName:"ul"},"comment component stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f1c5e75f1af24c5b39a2e61cf07c773abfa96f66"},(0,n.kt)("inlineCode",{parentName:"a"},"f1c5e75"))),(0,n.kt)("li",{parentName:"ul"},"Accordion component bug fixed ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/815e91df66ed738f3d91cadc8df151782829f545"},(0,n.kt)("inlineCode",{parentName:"a"},"815e91d"))),(0,n.kt)("li",{parentName:"ul"},"Refs #145331 use iso date to release so that we see also time ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ceedf08937ab683c3e624cd3c909bf4a4788f883"},(0,n.kt)("inlineCode",{parentName:"a"},"ceedf08"))),(0,n.kt)("li",{parentName:"ul"},"correct connfig for doco ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93e13135e7f00fe32f4db2d720db4159970da021"},(0,n.kt)("inlineCode",{parentName:"a"},"93e1313"))),(0,n.kt)("li",{parentName:"ul"},"Item updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fae93d43a0ad56c4c9b8ce7bf436ad4f47421744"},(0,n.kt)("inlineCode",{parentName:"a"},"fae93d4"))),(0,n.kt)("li",{parentName:"ul"},"added layout grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2e6be557bcd3bef836338380ef68acade1c6b3e3"},(0,n.kt)("inlineCode",{parentName:"a"},"2e6be55"))),(0,n.kt)("li",{parentName:"ul"},"tab overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87aaf32cac5a0dee0da5833217de68da62327f5a"},(0,n.kt)("inlineCode",{parentName:"a"},"87aaf32"))),(0,n.kt)("li",{parentName:"ul"},"message overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6dccfca52d9673f394d81bd40da0af1b1504af0c"},(0,n.kt)("inlineCode",{parentName:"a"},"6dccfca"))),(0,n.kt)("li",{parentName:"ul"},"segment storie changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/296371fa71e43c2341bee8069f66d5cd1f7aa5f8"},(0,n.kt)("inlineCode",{parentName:"a"},"296371f"))),(0,n.kt)("li",{parentName:"ul"},"progress component stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/df10c2ed1289ae770008c71e1545c1ac0a223fc5"},(0,n.kt)("inlineCode",{parentName:"a"},"df10c2e"))),(0,n.kt)("li",{parentName:"ul"},"message comp storybook changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c86b40563f655fd5833dd05119f04d0e4256e75f"},(0,n.kt)("inlineCode",{parentName:"a"},"c86b405"))),(0,n.kt)("li",{parentName:"ul"},"Accordion cmponent stories | minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6de0d816287a9beeb9e8a5a890a2e14f3457a792"},(0,n.kt)("inlineCode",{parentName:"a"},"6de0d81"))),(0,n.kt)("li",{parentName:"ul"},"Refs #145331 add all changes when auto building docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce11cce4fe3dadc16a0da56c36bc5db480e4ff91"},(0,n.kt)("inlineCode",{parentName:"a"},"ce11cce"))),(0,n.kt)("li",{parentName:"ul"},"perf(timeline):removed semantic timeline package ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0aeb34a189eb53a5fc0fc45d716da515b7ed0301"},(0,n.kt)("inlineCode",{parentName:"a"},"0aeb34a"))),(0,n.kt)("li",{parentName:"ul"},"Tablet Breakpoint update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b229c2739e75a00e403dd07c31eb0dac7700baac"},(0,n.kt)("inlineCode",{parentName:"a"},"b229c27"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 set storyBook Url to eea.github.io ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b7fdecbb5e9e6e7db0b128ab7fd3a98dd1dbbc74"},(0,n.kt)("inlineCode",{parentName:"a"},"b7fdecb"))),(0,n.kt)("li",{parentName:"ul"},"bump package version to signaling of a major release ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c835f1d8193685153b8a9b54edbc2e8d3d095321"},(0,n.kt)("inlineCode",{parentName:"a"},"c835f1d"))),(0,n.kt)("li",{parentName:"ul"},"small commit to trigger deployment of storybook and docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/be46ea3b581cccc82369c9cf6d4e29b02822cd71"},(0,n.kt)("inlineCode",{parentName:"a"},"be46ea3"))),(0,n.kt)("li",{parentName:"ul"},"doc(accordion):revert previous change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3de02da26472c17389366d933f3293f658fd783a"},(0,n.kt)("inlineCode",{parentName:"a"},"3de02da"))),(0,n.kt)("li",{parentName:"ul"},"fix typo for caption @desktop line-height pixel number ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/167155234a897334a03a4f3eadc71701185bb924"},(0,n.kt)("inlineCode",{parentName:"a"},"1671552"))),(0,n.kt)("li",{parentName:"ul"},"Commented out integration tests. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/574cfec852f39bdd30430d2ca3a466aec417180d"},(0,n.kt)("inlineCode",{parentName:"a"},"574cfec"))),(0,n.kt)("li",{parentName:"ul"},"popup overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a9555e3128bd0c92691410c202d9b26dd5a5e0c5"},(0,n.kt)("inlineCode",{parentName:"a"},"a9555e3"))),(0,n.kt)("li",{parentName:"ul"},"container component stories fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/692cfce5e795ac718855349424e7e8eb9c7518ec"},(0,n.kt)("inlineCode",{parentName:"a"},"692cfce"))),(0,n.kt)("li",{parentName:"ul"},"Added timeline to package json fixed ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2e93e0478a1502cccb8d7f866cef337a2546b6c"},(0,n.kt)("inlineCode",{parentName:"a"},"f2e93e0"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142123 modified import of volto-eea-design-system icon.less: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7fab7d2871f153c2db139e3258da071ace7c09d"},(0,n.kt)("inlineCode",{parentName:"a"},"a7fab7d"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142123 reference icon.less from this package: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5616e6d730f1a8cbc04784230c35f3490fd0f921"},(0,n.kt)("inlineCode",{parentName:"a"},"5616e6d"))),(0,n.kt)("li",{parentName:"ul"},"Menu component stories change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2797716aa050a8f70d2b6f0f19b7d01e5cd035be"},(0,n.kt)("inlineCode",{parentName:"a"},"2797716"))),(0,n.kt)("li",{parentName:"ul"},"Image stories minor change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ddb9f1dd56fe42e17df1eac5bfd93ee6eaac3179"},(0,n.kt)("inlineCode",{parentName:"a"},"ddb9f1d"))),(0,n.kt)("li",{parentName:"ul"},"card component stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6ccba1ec4a388ced5a3671bf88d4f18aefc8cff3"},(0,n.kt)("inlineCode",{parentName:"a"},"6ccba1e"))),(0,n.kt)("li",{parentName:"ul"},"Added timeline to package json ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93031d6b6b3215e98074700554d7546f9f17f320"},(0,n.kt)("inlineCode",{parentName:"a"},"93031d6"))),(0,n.kt)("li",{parentName:"ul"},"table stories code clean up ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b7b2a56e37b847a3a3fc3d78f2099aba052826c3"},(0,n.kt)("inlineCode",{parentName:"a"},"b7b2a56"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 removed extra baseUrl from docusaurus config ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/79f36da6a38866765025cedd4f5eeb63e273785c"},(0,n.kt)("inlineCode",{parentName:"a"},"79f36da"))),(0,n.kt)("li",{parentName:"ul"},"Accordion stories minor change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ffe808aabc77c6cb324e8fe097a97bb82c291c29"},(0,n.kt)("inlineCode",{parentName:"a"},"ffe808a"))),(0,n.kt)("li",{parentName:"ul"},"Theme assets ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3f4bea4b53e393bc3d926b63683265c0b5df32c2"},(0,n.kt)("inlineCode",{parentName:"a"},"3f4bea4"))),(0,n.kt)("li",{parentName:"ul"},"Merged with develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/167ec9f7847162965ad045259989cc31abaad7f1"},(0,n.kt)("inlineCode",{parentName:"a"},"167ec9f")))),(0,n.kt)("h3",{id:"012-beta2---2022-01-03"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.2-beta.1...0.1.2-beta.2"},"0.1.2-beta.2")," - 2022-01-03"),(0,n.kt)("h3",{id:"012-beta1---2021-12-22"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.2-beta.0...0.1.2-beta.1"},"0.1.2-beta.1")," - 2021-12-22"),(0,n.kt)("h4",{id:"\ufe0f-others-56"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Tab component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4690a6fc1e739eeeeaa3dc90ee35e05a22875bf8"},(0,n.kt)("inlineCode",{parentName:"a"},"4690a6f"))),(0,n.kt)("li",{parentName:"ul"},"Comment component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a87cb6ad7959ce939c9decbfaa08026d4f00a10e"},(0,n.kt)("inlineCode",{parentName:"a"},"a87cb6a"))),(0,n.kt)("li",{parentName:"ul"},"Form stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fc30c900e5adf5a27930aa64a79a632e2b7d84ae"},(0,n.kt)("inlineCode",{parentName:"a"},"fc30c90"))),(0,n.kt)("li",{parentName:"ul"},"Grid component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/798fdd0d0fecb7980308c831fc9dc111a36c5d9f"},(0,n.kt)("inlineCode",{parentName:"a"},"798fdd0"))),(0,n.kt)("li",{parentName:"ul"},"Image component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/be93385f1ea29846512eb7762d69bb98f33be7f2"},(0,n.kt)("inlineCode",{parentName:"a"},"be93385"))),(0,n.kt)("li",{parentName:"ul"},"Menu component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb1f9a82843bb4e3011be9813ae692c94d986495"},(0,n.kt)("inlineCode",{parentName:"a"},"cb1f9a8"))),(0,n.kt)("li",{parentName:"ul"},"Dropdown component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/57cf954599292e6a2f8a1644c6b6d61706ecaf60"},(0,n.kt)("inlineCode",{parentName:"a"},"57cf954"))),(0,n.kt)("li",{parentName:"ul"},"Header component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/264fd463734c9587e3a820f4d14527af89274e12"},(0,n.kt)("inlineCode",{parentName:"a"},"264fd46"))),(0,n.kt)("li",{parentName:"ul"},"Confirn component minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9a00bc174fb676e626d6cc93fac225e8a6165790"},(0,n.kt)("inlineCode",{parentName:"a"},"9a00bc1"))),(0,n.kt)("li",{parentName:"ul"},"Item component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6994fa00c0f91550f64d7345503df7f562480d32"},(0,n.kt)("inlineCode",{parentName:"a"},"6994fa0"))),(0,n.kt)("li",{parentName:"ul"},"Label component stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5cc5843327deeaa5ae2cedc03e6f0c314be6586a"},(0,n.kt)("inlineCode",{parentName:"a"},"5cc5843"))),(0,n.kt)("li",{parentName:"ul"},"Container component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e6e40b3a505c2e2fe88a36d74ea4e9728e3491f6"},(0,n.kt)("inlineCode",{parentName:"a"},"e6e40b3"))),(0,n.kt)("li",{parentName:"ul"},"Message component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ba9d377fd5b04274f1d42065eafa2401a1b0bbca"},(0,n.kt)("inlineCode",{parentName:"a"},"ba9d377"))),(0,n.kt)("li",{parentName:"ul"},"Breadcrumb component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff7a176141c3a59d71df98a0ed0b23b8c08787df"},(0,n.kt)("inlineCode",{parentName:"a"},"ff7a176"))),(0,n.kt)("li",{parentName:"ul"},"Modal component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af1fe6a84d058fb937b555f4dc3e0efceebefa04"},(0,n.kt)("inlineCode",{parentName:"a"},"af1fe6a"))),(0,n.kt)("li",{parentName:"ul"},"List stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0016042856fa2275aed373eebd6f996b837619a2"},(0,n.kt)("inlineCode",{parentName:"a"},"0016042"))),(0,n.kt)("li",{parentName:"ul"},"Button component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/690dfd234bee017c1f1cda7077265e6cf4a870e9"},(0,n.kt)("inlineCode",{parentName:"a"},"690dfd2"))),(0,n.kt)("li",{parentName:"ul"},"Radio component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/84eac30ab5b523ed09c56b9cca41b058cee3e5d2"},(0,n.kt)("inlineCode",{parentName:"a"},"84eac30"))),(0,n.kt)("li",{parentName:"ul"},"Progress component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e6763571afe637375e8260babd9f2219f29b432a"},(0,n.kt)("inlineCode",{parentName:"a"},"e676357"))),(0,n.kt)("li",{parentName:"ul"},"Pagination component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b1af226b9bd42097dc3c74be3d9ca3fab29b80f6"},(0,n.kt)("inlineCode",{parentName:"a"},"b1af226"))),(0,n.kt)("li",{parentName:"ul"},"Segment component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f8c7efcb9b1de209ff146dd315ea9d43b16f4db"},(0,n.kt)("inlineCode",{parentName:"a"},"5f8c7ef"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 eslint fixes for component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/badcb9158cb4a847380f66592b22c78b5117626a"},(0,n.kt)("inlineCode",{parentName:"a"},"badcb91"))),(0,n.kt)("li",{parentName:"ul"},"Table component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7c104b8e89272b0e2505d165184093ee2680c6f3"},(0,n.kt)("inlineCode",{parentName:"a"},"7c104b8"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 more eslint fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a88c091723af0b87cfa85c83307d9510d2bae65c"},(0,n.kt)("inlineCode",{parentName:"a"},"a88c091"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 warn for broken links instead of throwing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bd5821cb78e030aaf69de73dc4d3bdadbe320195"},(0,n.kt)("inlineCode",{parentName:"a"},"bd5821c"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 merge changes from develop-itml to develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bca28b968bc88720aff9e29e1a94a597a7375666"},(0,n.kt)("inlineCode",{parentName:"a"},"bca28b9"))),(0,n.kt)("li",{parentName:"ul"},"made tabs dynamic for api tab ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea37ecb3ec9fe0ace41d7650d59e209929d8e95f"},(0,n.kt)("inlineCode",{parentName:"a"},"ea37ecb"))),(0,n.kt)("li",{parentName:"ul"},"Basic storybook/Docusaurus components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/840ab60f22f7b73d8742fa7452f198d486c6ec5b"},(0,n.kt)("inlineCode",{parentName:"a"},"840ab60"))),(0,n.kt)("li",{parentName:"ul"},"created List directory & srories based on semantic-ui List component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51f19016b27228a4d391c88b7eee27357d6fdc0d"},(0,n.kt)("inlineCode",{parentName:"a"},"51f1901"))),(0,n.kt)("li",{parentName:"ul"},"made tabs as component easy to call for other components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/07bae4900a4076f3429d3a26978b92aabf6b23ba"},(0,n.kt)("inlineCode",{parentName:"a"},"07bae49"))),(0,n.kt)("li",{parentName:"ul"},"Popup Component | minor fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ff9908a9374f93b9eaf4d8ee8de24acdf5be3ec"},(0,n.kt)("inlineCode",{parentName:"a"},"2ff9908"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Tab component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/95e3a733921b42fbe2540fa39548284abff9fdc0"},(0,n.kt)("inlineCode",{parentName:"a"},"95e3a73"))),(0,n.kt)("li",{parentName:"ul"},"created Table directory and stories based on semantic-ui Table component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e16115daa000962ccd8d141e3c11fd099446a388"},(0,n.kt)("inlineCode",{parentName:"a"},"e16115d"))),(0,n.kt)("li",{parentName:"ul"},"List component stories - minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/de113430b487297417c4697178f9ee37412a5389"},(0,n.kt)("inlineCode",{parentName:"a"},"de11343"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Comment component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a20f8842e8cb5c937dfc450030ac9afcf78ffe11"},(0,n.kt)("inlineCode",{parentName:"a"},"a20f884"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Grid component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/360d2a897f36e86c58b0ba6ac3d4fc852d10287d"},(0,n.kt)("inlineCode",{parentName:"a"},"360d2a8"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Image component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c1d2bcaf886c96052af45fcce98243ea56c98a5"},(0,n.kt)("inlineCode",{parentName:"a"},"3c1d2bc"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Menu component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/17e3b37ae447d8cc86228fa6c0c48a8fd8be9d03"},(0,n.kt)("inlineCode",{parentName:"a"},"17e3b37"))),(0,n.kt)("li",{parentName:"ul"},"Added untracked files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/75f0afda10114e70348e23d480f8f74528531674"},(0,n.kt)("inlineCode",{parentName:"a"},"75f0afd"))),(0,n.kt)("li",{parentName:"ul"},"created Dropdown stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d6a25381078e0b3cabdb9270d5224b3886ab6af9"},(0,n.kt)("inlineCode",{parentName:"a"},"d6a2538"))),(0,n.kt)("li",{parentName:"ul"},"created Header component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8339798f3e7d40f1b5a033bf4d7303c756c38d3"},(0,n.kt)("inlineCode",{parentName:"a"},"b833979"))),(0,n.kt)("li",{parentName:"ul"},"created stories for semantic-ui Confirm component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6fddccc6cf97f9929da52064ceb379f9fc427b42"},(0,n.kt)("inlineCode",{parentName:"a"},"6fddccc"))),(0,n.kt)("li",{parentName:"ul"},"created Statistic directory and stories with semantic-ui Statistic component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cd62498dbd75d5dff0adf849ff95d22bb9dc3b34"},(0,n.kt)("inlineCode",{parentName:"a"},"cd62498"))),(0,n.kt)("li",{parentName:"ul"},"created Item component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/90ec2be7eede347352e318c70615c30e7d422073"},(0,n.kt)("inlineCode",{parentName:"a"},"90ec2be"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Container component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/41934f6c5961ae0ac034a496ac169a191c7a5288"},(0,n.kt)("inlineCode",{parentName:"a"},"41934f6"))),(0,n.kt)("li",{parentName:"ul"},"created Label component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/71732f68b3153320710fbf7fb78dac460b8a084f"},(0,n.kt)("inlineCode",{parentName:"a"},"71732f6"))),(0,n.kt)("li",{parentName:"ul"},"created Message component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/adcbeabe6d4e8c1bbd7bd925c5f7fd3109fb407c"},(0,n.kt)("inlineCode",{parentName:"a"},"adcbeab"))),(0,n.kt)("li",{parentName:"ul"},"created Modal component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c25409d8901ad4eba66fa66a9f5c34b0353569b9"},(0,n.kt)("inlineCode",{parentName:"a"},"c25409d"))),(0,n.kt)("li",{parentName:"ul"},"Breadcrumb component stories and minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6264d92bcf6565e284ae9dc0c7a918652bb3959e"},(0,n.kt)("inlineCode",{parentName:"a"},"6264d92"))),(0,n.kt)("li",{parentName:"ul"},"created Pagination component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/57cdad35e21fdacf303e407abcb8988e97e87242"},(0,n.kt)("inlineCode",{parentName:"a"},"57cdad3"))),(0,n.kt)("li",{parentName:"ul"},"created Segment component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d8d01d70dab9359be46eb1629b3198f871091c7a"},(0,n.kt)("inlineCode",{parentName:"a"},"d8d01d7"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Radio component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1fd062d8a08cbe8507f5154201632ea96f765a2c"},(0,n.kt)("inlineCode",{parentName:"a"},"1fd062d"))),(0,n.kt)("li",{parentName:"ul"},"Menu stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6ba5e0d00a26ffd4625fb51f759af3764cef28de"},(0,n.kt)("inlineCode",{parentName:"a"},"6ba5e0d"))),(0,n.kt)("li",{parentName:"ul"},"Statistic component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c874a520c9959b7673b5c86f63e53e90f006f22"},(0,n.kt)("inlineCode",{parentName:"a"},"3c874a5"))),(0,n.kt)("li",{parentName:"ul"},"Card component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/290bda8dac4c9bb4476108c2e4969fa283f935e2"},(0,n.kt)("inlineCode",{parentName:"a"},"290bda8"))),(0,n.kt)("li",{parentName:"ul"},"Accrordion stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ee3f592fbfaead01506fb6a4dbfb36d06269564"},(0,n.kt)("inlineCode",{parentName:"a"},"2ee3f59"))),(0,n.kt)("li",{parentName:"ul"},"renamed Demo folder to Layout ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b9f6d05708310889dd018961bf5df9d5edd66e12"},(0,n.kt)("inlineCode",{parentName:"a"},"b9f6d05"))),(0,n.kt)("li",{parentName:"ul"},"remove test exclusion ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/94dba3eaa864e25d34bcc33ab19494f83ecabb25"},(0,n.kt)("inlineCode",{parentName:"a"},"94dba3e"))),(0,n.kt)("li",{parentName:"ul"},"Accordion component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e672d59f86a79e69f15b5212e2953aa7c5fea1d1"},(0,n.kt)("inlineCode",{parentName:"a"},"e672d59"))),(0,n.kt)("li",{parentName:"ul"},"fix docusaurus url (removed trailing /) ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b6c59fc7733b3df47dca797906e8f7e40a2f4ada"},(0,n.kt)("inlineCode",{parentName:"a"},"b6c59fc"))),(0,n.kt)("li",{parentName:"ul"},"Item component stories - minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f0a99025b9093ecf2eb25fd4b4e401b5b532a481"},(0,n.kt)("inlineCode",{parentName:"a"},"f0a9902"))),(0,n.kt)("li",{parentName:"ul"},"eea logos and assets ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b435b511d64b0ca99bfd310d66bdbfd5985390cc"},(0,n.kt)("inlineCode",{parentName:"a"},"b435b51")))),(0,n.kt)("h3",{id:"012-beta0---2021-12-18"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.1...0.1.2-beta.0"},"0.1.2-beta.0")," - 2021-12-18"),(0,n.kt)("h4",{id:"\ufe0f-others-57"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Refs #140454 added github action to build docusaurus to the develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/abe6a72882a41c9bca3649a3a6697619038e1677"},(0,n.kt)("inlineCode",{parentName:"a"},"abe6a72")))),(0,n.kt)("h3",{id:"011---2021-12-16"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.1-beta.0...0.1.1"},"0.1.1")," - 2021-12-16"),(0,n.kt)("h4",{id:"\ufe0f-others-58"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Refs #140454 changed the following to volto-eea-design-system: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6791d413cf1b9e434970564d9e59ed56b41907f0"},(0,n.kt)("inlineCode",{parentName:"a"},"6791d41"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 corrected base url for docusaurus website build ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/98271b3d39e2e21dfb4a0e31c334dc9e87811e4a"},(0,n.kt)("inlineCode",{parentName:"a"},"98271b3"))),(0,n.kt)("li",{parentName:"ul"},"Initial test changes on design system/docusaurus. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9dad612f385cc9fde712809f07dbe2b7111432cf"},(0,n.kt)("inlineCode",{parentName:"a"},"9dad612"))),(0,n.kt)("li",{parentName:"ul"},"After prettier check ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9ec40b4fe9d8a18e99f774e1a96a55b286a9733a"},(0,n.kt)("inlineCode",{parentName:"a"},"9ec40b4"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 restore SearchWidget.jsx content and removed dummy text from docs intro page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7505df89d93ac99156834a0c50a8e2b174c506f8"},(0,n.kt)("inlineCode",{parentName:"a"},"7505df8"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 added references to eea and the storybook in the docusaurus footer ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/42bbfcdd67888c3a7a55875d67acae9f7eb753bb"},(0,n.kt)("inlineCode",{parentName:"a"},"42bbfcd"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 lint fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9502f2bdbd45262b38926def5b7b55efabf4c32c"},(0,n.kt)("inlineCode",{parentName:"a"},"9502f2b"))),(0,n.kt)("li",{parentName:"ul"},"Add SonarQube badges ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4e0a4053ff2313fc3939caab80d874470aca062"},(0,n.kt)("inlineCode",{parentName:"a"},"a4e0a40"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 brought changes from develop-itml and upgrades docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/207c873532e38fb7909cdc32a02bf50e575b66fa"},(0,n.kt)("inlineCode",{parentName:"a"},"207c873"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 removed extra content not needed by the docusaurus site ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bc68ebe8259c9b8ed6bc73df8102885554bbc4ed"},(0,n.kt)("inlineCode",{parentName:"a"},"bc68ebe"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 updated docusaurus to latest beta ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d68ed8a1660910067a09550626a5f0e8fbbeeac9"},(0,n.kt)("inlineCode",{parentName:"a"},"d68ed8a")))),(0,n.kt)("h3",{id:"011-beta0---2021-12-09"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.0...0.1.1-beta.0"},"0.1.1-beta.0")," - 2021-12-09"),(0,n.kt)("h4",{id:"\ufe0f-others-59"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Refs #140454 moved header and footer templates from volto-ims-theme: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2d5e56045c0b7d917153d95492dd340668b6222"},(0,n.kt)("inlineCode",{parentName:"a"},"e2d5e56"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 added website folder with docusaurus site skeleton ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6fd15f4365a207308c068fe7eb197c0717e93954"},(0,n.kt)("inlineCode",{parentName:"a"},"6fd15f4"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142794 added commented implementation of the header and footer area: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/773ad8784f4a03e4b600406999d3a274a3984d39"},(0,n.kt)("inlineCode",{parentName:"a"},"773ad87"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 changed the following: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4137ec42270c28cbe036ba11e9475f00a7a5cba3"},(0,n.kt)("inlineCode",{parentName:"a"},"4137ec4"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 removed storybook from volto-eea-design-system: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a129ffb485c4c55f19129a209d920da8f8f52418"},(0,n.kt)("inlineCode",{parentName:"a"},"a129ffb"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 added storybook as a dev dependency: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e04ae4e0294fbb4a09f367d1693a158d5a1e8f2f"},(0,n.kt)("inlineCode",{parentName:"a"},"e04ae4e"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 updated Breadcrumbs.jsx to latest version: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/63fe5076781f3cf2ce5c79641a5f1b45f298b476"},(0,n.kt)("inlineCode",{parentName:"a"},"63fe507"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 we should use jsx and not mdx for storybook tests ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3668e667f857cb3052b9d63cf27ec629fe1c8394"},(0,n.kt)("inlineCode",{parentName:"a"},"3668e66"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 updated eea-design-system readme with extra info on package contents ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d2efc3ddae7b91efc82cf3bce8fb8e42d696a780"},(0,n.kt)("inlineCode",{parentName:"a"},"d2efc3d"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142010 - Optimize Volto-addons gitflow pipelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3af46d2b14fa0b1ef44736f25b0f9ac93b23d18d"},(0,n.kt)("inlineCode",{parentName:"a"},"3af46d2"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 Renamed folders of docusaurus website: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/15bca7462ba1b3c626e2bf76597f6436aa5e9092"},(0,n.kt)("inlineCode",{parentName:"a"},"15bca74"))),(0,n.kt)("li",{parentName:"ul"},"Add demo story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/757c409271eb70baa54bff8bd7c71ba29aaa4f66"},(0,n.kt)("inlineCode",{parentName:"a"},"757c409"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142794 enabled minimum css so that header looks decent ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/adbe2335bacf5ae09541c3679a246a5ec28376a4"},(0,n.kt)("inlineCode",{parentName:"a"},"adbe233"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 use the develop branch for the readme linking, it's always more up to date ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/23dcf166d5d633df2a63ab6fa5bac4be086e99a3"},(0,n.kt)("inlineCode",{parentName:"a"},"23dcf16"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 added missing themes reference for the eea theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e9ca244fcedf0be420748b3e5347e98309b5d996"},(0,n.kt)("inlineCode",{parentName:"a"},"e9ca244"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 modified assets imports after move to volto-eea-design-system ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2250cc7ba4155c328837cea09e2e7d94afc984f8"},(0,n.kt)("inlineCode",{parentName:"a"},"2250cc7"))),(0,n.kt)("li",{parentName:"ul"},"Load footer in segment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/80d38a96284e7fa9416ba327a43e29eb94bebe55"},(0,n.kt)("inlineCode",{parentName:"a"},"80d38a9"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 bump package version to 1.1.0 from 0.1.1 from develop branch: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1314039ceb45d405af6bc4698b489bbd6562c6ae"},(0,n.kt)("inlineCode",{parentName:"a"},"1314039"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142794 keep toolbalWidth variables in case design system runs in an older version of Volto ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1a8b30562e4167fe36b095877db0b215d10cb620"},(0,n.kt)("inlineCode",{parentName:"a"},"1a8b305"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142794 changed the following: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fbb80b1dbd0e3078777b8b3496d4b207ba25639a"},(0,n.kt)("inlineCode",{parentName:"a"},"fbb80b1"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 moved storybook scripts to the scripts section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/705c4c365d26152d917c62991f3f8202bc75287d"},(0,n.kt)("inlineCode",{parentName:"a"},"705c4c3"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 removed dangling comma ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/514f24d503a1f05497696c22c7fdbf7bc19d4e54"},(0,n.kt)("inlineCode",{parentName:"a"},"514f24d"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 changed link to the start of the docs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0e16fdfc77e119da4e1f15183d9cb95ef9b4b6cf"},(0,n.kt)("inlineCode",{parentName:"a"},"0e16fdf"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 add h1 to the list of elements that are max 800px and centered ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d3c30f409aa4cb43810839f8960589456cc1b2e"},(0,n.kt)("inlineCode",{parentName:"a"},"7d3c30f"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using ims-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8d657d056cde5163cfe90ac66bc973f55d82e5e9"},(0,n.kt)("inlineCode",{parentName:"a"},"8d657d0")))),(0,n.kt)("h3",{id:"010---2021-11-17"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.0.1...0.1.0"},"0.1.0")," - 2021-11-17"),(0,n.kt)("h4",{id:"\ufe0f-others-60"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Refs #140454 changed the following to volto-eea-design-system: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/40d2af693e35abdda3ededc7aabcb17e9a12e781"},(0,n.kt)("inlineCode",{parentName:"a"},"40d2af6"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 elements folder now has the variables and overrides from pastanaga theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/595b4e60816d3e24950ede3afea6e5f2aa2d7008"},(0,n.kt)("inlineCode",{parentName:"a"},"595b4e6"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 use font awesome from SemanticUI instead of Pastanaga: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4e273ca1b9a2be1f169d12258ac2335c3ebeefff"},(0,n.kt)("inlineCode",{parentName:"a"},"4e273ca"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 removed the components customizations from volto-eea-design-system: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c98c260b549cd1db48bfe556e994692a4855b95d"},(0,n.kt)("inlineCode",{parentName:"a"},"c98c260"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 added customizations folder from volto-ims-theme to volto-eea-design-system: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff4bf44bd648ff179bd7c82d0cf80da968b291b0"},(0,n.kt)("inlineCode",{parentName:"a"},"ff4bf44"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 modules folder now has the variables and overrides from pastanaga theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2841b62c87e3242423bca1117c7e1793baa7974"},(0,n.kt)("inlineCode",{parentName:"a"},"f2841b6"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 customized Comments.jsx to remove unnecessary container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b2e95d7ae875a7fc85366c76ef35ce215dd7b5ff"},(0,n.kt)("inlineCode",{parentName:"a"},"b2e95d7"))),(0,n.kt)("li",{parentName:"ul"},"Refs #132149 added initial commit for volto-eea-design-system: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2934b911d589fde126f70363a61cbdd2e3dcf7c9"},(0,n.kt)("inlineCode",{parentName:"a"},"2934b91"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 collection folder now has the variables and overrides from pastanaga: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/213d4968e4efa380a389fb7ab40ec3196f030050"},(0,n.kt)("inlineCode",{parentName:"a"},"213d496"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 removed search widget customization, we can use volto-ims-theme for that file ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b7e8b0c4821584a84f940d8f780057122321aae7"},(0,n.kt)("inlineCode",{parentName:"a"},"b7e8b0c"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 stylelint quick fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5595925f68871135a07d703c8ba009b0172c7ccd"},(0,n.kt)("inlineCode",{parentName:"a"},"5595925"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 changed the following: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/769f4f9eca0ed9fffe0c8c49c56bcb123a203f3c"},(0,n.kt)("inlineCode",{parentName:"a"},"769f4f9"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 changed the following to the eea theme: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/06d8d86a7be81fd3feadf034eacfa61eb69743ab"},(0,n.kt)("inlineCode",{parentName:"a"},"06d8d86"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 eea site.variables now use all values from pastanaga's site.variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6535c0f4e1968822a232b017a55babd280716d88"},(0,n.kt)("inlineCode",{parentName:"a"},"6535c0f"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 simplified container overrides: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51250038527f2e4b1135a2b5bfc6adccc3f77a06"},(0,n.kt)("inlineCode",{parentName:"a"},"5125003"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/177d0ce854a8a963faa2aae9481cbcc7e340e0fa"},(0,n.kt)("inlineCode",{parentName:"a"},"177d0ce"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 globals folder now has the variables and overrides from pastanaga theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/116a0c338bd92dd14636a649476b4f00951e3734"},(0,n.kt)("inlineCode",{parentName:"a"},"116a0c3"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 changed the following: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2e7f42381b63e65bafac3b754d49b65daca9663d"},(0,n.kt)("inlineCode",{parentName:"a"},"2e7f423"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 modules folder now has the variables and overrides from pastanaga theme: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/27a201d57024a7c621f4943b8eb59a3247b6c89d"},(0,n.kt)("inlineCode",{parentName:"a"},"27a201d"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 text elements are now with a max width and centered within content-area: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bbed7bbfb3e79a371b7bf7dea2206cdbdcdfe76d"},(0,n.kt)("inlineCode",{parentName:"a"},"bbed7bb"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 added main.variables entries from pastanaga to eea theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1cbbc550436c889d1b297ae9e6880167fce28fe1"},(0,n.kt)("inlineCode",{parentName:"a"},"1cbbc55"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 modified theme image imports for component customizations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef3238a4d615fa1b496e83f4e6c4c0d27f3d68f4"},(0,n.kt)("inlineCode",{parentName:"a"},"ef3238a"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 modified container width to be auto: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2e8d2e0ebb3e4a55b7cf1b66c3dff222ef12aa18"},(0,n.kt)("inlineCode",{parentName:"a"},"2e8d2e0"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 modified several icons to use the \\f values instead of \\e: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c397145bc1e76916ae72a94faaf33f49bd9ca5a6"},(0,n.kt)("inlineCode",{parentName:"a"},"c397145"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 changed the following: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c518edacad9b8bed61ea50d318d8d43bf7f483a0"},(0,n.kt)("inlineCode",{parentName:"a"},"c518eda"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 ensure that main column isn't enlarged over the sidebar section on edit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f7a28684223494933bcd8ec1f6d86b1b3da17e10"},(0,n.kt)("inlineCode",{parentName:"a"},"f7a2868"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 changed the following to the form styling: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/eb92e054fe330730c1a44737cbbdf33985216cbb"},(0,n.kt)("inlineCode",{parentName:"a"},"eb92e05"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 modified path of theme folder location for image selection ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f8cca4594857ab4afd654f35e4ec97e4d3e04be4"},(0,n.kt)("inlineCode",{parentName:"a"},"f8cca45"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 added missing mobileScrollbarWidth variables introduced as part of the mobile navigation pull request ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/444c78d998199e703d7ecde01b3feb0d44c60977"},(0,n.kt)("inlineCode",{parentName:"a"},"444c78d"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 reference font and image path from ~volto-themes instead of relative ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ec93ed3a496673eed7d7ec07a2f76aaa6a29d7ca"},(0,n.kt)("inlineCode",{parentName:"a"},"ec93ed3"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 ensure that Volto doesn't crash when site module is set to eea: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51f2f27f5ba947b49b4b69fcf9b8890676cd1d7e"},(0,n.kt)("inlineCode",{parentName:"a"},"51f2f27"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 added tiny size prop to Breadcrumbs in order to have it as 12px ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/56a12e200c27c3a1826fa3088c34f762ed74dff7"},(0,n.kt)("inlineCode",{parentName:"a"},"56a12e2")))),(0,n.kt)("h3",{id:"001---2021-11-17"},"0.0.1 - 2021-11-17"),(0,n.kt)("h4",{id:"\ufe0f-others-61"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Initial commit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b0bdd445c95a20d088e00469f81028c16482640a"},(0,n.kt)("inlineCode",{parentName:"a"},"b0bdd44")))))}s.isMDXComponent=!0}}]); \ No newline at end of file diff --git a/docs/assets/js/41d5c757.c97b6622.js b/docs/assets/js/41d5c757.c97b6622.js deleted file mode 100644 index b6ed17f741..0000000000 --- a/docs/assets/js/41d5c757.c97b6622.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";(self.webpackChunkwebsite=self.webpackChunkwebsite||[]).push([[6245],{3905:(e,a,t)=>{t.d(a,{Zo:()=>c,kt:()=>h});var i=t(7294);function n(e,a,t){return a in e?Object.defineProperty(e,a,{value:t,enumerable:!0,configurable:!0,writable:!0}):e[a]=t,e}function o(e,a){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);a&&(i=i.filter((function(a){return Object.getOwnPropertyDescriptor(e,a).enumerable}))),t.push.apply(t,i)}return t}function m(e){for(var a=1;a=0||(n[t]=e[t]);return n}(e,a);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(i=0;i=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(n[t]=e[t])}return n}var d=i.createContext({}),r=function(e){var a=i.useContext(d),t=a;return e&&(t="function"==typeof e?e(a):m(m({},a),e)),t},c=function(e){var a=r(e.components);return i.createElement(d.Provider,{value:a},e.children)},s="mdxType",f={inlineCode:"code",wrapper:function(e){var a=e.children;return i.createElement(i.Fragment,{},a)}},p=i.forwardRef((function(e,a){var t=e.components,n=e.mdxType,o=e.originalType,d=e.parentName,c=l(e,["components","mdxType","originalType","parentName"]),s=r(t),p=n,h=s["".concat(d,".").concat(p)]||s[p]||f[p]||o;return t?i.createElement(h,m(m({ref:a},c),{},{components:t})):i.createElement(h,m({ref:a},c))}));function h(e,a){var t=arguments,n=a&&a.mdxType;if("string"==typeof e||n){var o=t.length,m=new Array(o);m[0]=p;var l={};for(var d in a)hasOwnProperty.call(a,d)&&(l[d]=a[d]);l.originalType=e,l[s]="string"==typeof e?e:n,m[1]=l;for(var r=2;r{t.r(a),t.d(a,{contentTitle:()=>m,default:()=>s,frontMatter:()=>o,metadata:()=>l,toc:()=>d});var i=t(7462),n=(t(7294),t(3905));const o={title:"What's new"},m=void 0,l={unversionedId:"whatsnew",id:"whatsnew",title:"What's new",description:"EEA Design System (1.0)",source:"@site/docs/2-whatsnew.md",sourceDirName:".",slug:"/whatsnew",permalink:"/volto-eea-design-system/docs/whatsnew",editUrl:"https://github.com/eea/volto-eea-design-system/edit/contribute-documentation/website/docs/2-whatsnew.md",tags:[],version:"current",sidebarPosition:2,frontMatter:{title:"What's new"},sidebar:"sidebar",previous:{title:"Introduction",permalink:"/volto-eea-design-system/docs/intro"},next:{title:"Web development",permalink:"/volto-eea-design-system/docs/category/web-development"}},d=[{value:"EEA Design System (1.0)",id:"eea-design-system-10",children:[{value:"Components ready to be used",id:"components-ready-to-be-used",children:[],level:4},{value:"Future releases",id:"future-releases",children:[],level:4}],level:3},{value:"Unreleased - 2023-04-06T13:47:14.894Z",id:"unreleased---2023-04-06t134714894z",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes",children:[],level:4}],level:3},{value:"1.0.6 - 2023-03-29",id:"106---2023-03-29",children:[{value:"\ud83d\ude80 New Features",id:"-new-features",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-1",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-1",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others",children:[],level:4}],level:3},{value:"1.0.5 - 2023-03-28",id:"105---2023-03-28",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-1",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-1",children:[],level:4}],level:3},{value:"1.0.4 - 2023-03-27",id:"104---2023-03-27",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-2",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-2",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-1",children:[],level:4}],level:3},{value:"1.0.3 - 2023-03-24",id:"103---2023-03-24",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-2",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-2",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-2",children:[],level:4}],level:3},{value:"1.0.2 - 2023-03-14",id:"102---2023-03-14",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-3",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-3",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-1",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-3",children:[],level:4}],level:3},{value:"1.0.1 - 2023-03-13",id:"101---2023-03-13",children:[],level:3},{value:"1.0.0 - 2023-03-13",id:"100---2023-03-13",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-4",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-4",children:[],level:4}],level:3},{value:"1.0.0-beta.6 - 2023-03-10",id:"100-beta6---2023-03-10",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-3",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-5",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-5",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-3",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-2",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-4",children:[],level:4}],level:3},{value:"1.0.0-beta.5 - 2023-03-07",id:"100-beta5---2023-03-07",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-6",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-4",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-5",children:[],level:4}],level:3},{value:"1.0.0-beta.4 - 2023-03-01",id:"100-beta4---2023-03-01",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-4",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-6",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-7",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-6",children:[],level:4}],level:3},{value:"1.0.0-beta.3 - 2023-02-21",id:"100-beta3---2023-02-21",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-5",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-7",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-8",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-5",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-3",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-7",children:[],level:4}],level:3},{value:"1.0.0-beta.2 - 2023-02-13",id:"100-beta2---2023-02-13",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-8",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-9",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-6",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-8",children:[],level:4}],level:3},{value:"1.0.0-beta.1 - 2023-02-09",id:"100-beta1---2023-02-09",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-6",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-10",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-9",children:[],level:4}],level:3},{value:"1.0.0-alpha.15 - 2023-02-08",id:"100-alpha15---2023-02-08",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-7",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-9",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-11",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-10",children:[],level:4}],level:3},{value:"1.0.0-alpha.14 - 2023-01-30",id:"100-alpha14---2023-01-30",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-12",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-11",children:[],level:4}],level:3},{value:"1.0.0-alpha.13.1 - 2023-01-30",id:"100-alpha131---2023-01-30",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-13",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-12",children:[],level:4}],level:3},{value:"1.0.0-alpha.13 - 2023-01-27",id:"100-alpha13---2023-01-27",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-8",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-10",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-14",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-13",children:[],level:4}],level:3},{value:"1.0.0-alpha.12 - 2023-01-24",id:"100-alpha12---2023-01-24",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-9",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-11",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-15",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-4",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-14",children:[],level:4}],level:3},{value:"1.0.0-alpha.11 - 2023-01-17",id:"100-alpha11---2023-01-17",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-10",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-12",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-16",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-5",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-15",children:[],level:4}],level:3},{value:"1.0.0-alpha.10 - 2023-01-13",id:"100-alpha10---2023-01-13",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-13",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-16",children:[],level:4}],level:3},{value:"1.0.0-alpha.9 - 2022-12-28",id:"100-alpha9---2022-12-28",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-17",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-17",children:[],level:4}],level:3},{value:"1.0.0-alpha.8 - 2022-12-23",id:"100-alpha8---2022-12-23",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-11",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-18",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-7",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-6",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-18",children:[],level:4}],level:3},{value:"1.0.0-alpha.7 - 2022-12-16",id:"100-alpha7---2022-12-16",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-12",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-14",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-19",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-19",children:[],level:4}],level:3},{value:"1.0.0-alpha.6 - 2022-12-07",id:"100-alpha6---2022-12-07",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-13",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-15",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-20",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-7",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-20",children:[],level:4}],level:3},{value:"1.0.0-alpha.5 - 2022-11-29",id:"100-alpha5---2022-11-29",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-14",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-16",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-21",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-8",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-8",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-21",children:[],level:4}],level:3},{value:"1.0.0-alpha.4 - 2022-11-22",id:"100-alpha4---2022-11-22",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-17",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-22",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-22",children:[],level:4}],level:3},{value:"1.0.0-alpha.3 - 2022-11-16",id:"100-alpha3---2022-11-16",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-15",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-18",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-23",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-9",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-23",children:[],level:4}],level:3},{value:"1.0.0-alpha.2 - 2022-10-28",id:"100-alpha2---2022-10-28",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-24",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-10",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-24",children:[],level:4}],level:3},{value:"1.0.0-alpha.1 - 2022-10-20",id:"100-alpha1---2022-10-20",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-25",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-11",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-9",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-25",children:[],level:4}],level:3},{value:"0.9.6 - 2022-12-16",id:"096---2022-12-16",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-26",children:[],level:4}],level:3},{value:"0.9.5 - 2022-10-20",id:"095---2022-10-20",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-19",children:[],level:4}],level:3},{value:"0.9.4 - 2022-10-19",id:"094---2022-10-19",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-20",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-26",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-27",children:[],level:4}],level:3},{value:"0.9.3 - 2022-10-04",id:"093---2022-10-04",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-21",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-27",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-10",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-28",children:[],level:4}],level:3},{value:"0.9.2 - 2022-09-27",id:"092---2022-09-27",children:[],level:3},{value:"0.9.1 - 2022-09-27",id:"091---2022-09-27",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-28",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-29",children:[],level:4}],level:3},{value:"0.9.0 - 2022-09-19",id:"090---2022-09-19",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-16",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-22",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-29",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-12",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-11",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-30",children:[],level:4}],level:3},{value:"0.8.1 - 2022-08-26",id:"081---2022-08-26",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-23",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-30",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-12",children:[],level:4}],level:3},{value:"0.8.0 - 2022-08-20",id:"080---2022-08-20",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-17",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-24",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-31",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-31",children:[],level:4}],level:3},{value:"0.7.6 - 2022-08-15",id:"076---2022-08-15",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-32",children:[],level:4}],level:3},{value:"0.7.5 - 2022-08-11",id:"075---2022-08-11",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-33",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-32",children:[],level:4}],level:3},{value:"0.7.3 - 2022-08-04",id:"073---2022-08-04",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-34",children:[],level:4}],level:3},{value:"0.7.2 - 2022-08-03",id:"072---2022-08-03",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-25",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-33",children:[],level:4}],level:3},{value:"0.7.1 - 2022-08-01",id:"071---2022-08-01",children:[],level:3},{value:"0.7.0 - 2022-08-01",id:"070---2022-08-01",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-18",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-26",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-35",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-34",children:[],level:4}],level:3},{value:"0.6.5 - 2022-07-06",id:"065---2022-07-06",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-27",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-36",children:[],level:4}],level:3},{value:"0.6.1 - 2022-07-01",id:"061---2022-07-01",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-19",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-37",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-13",children:[],level:4}],level:3},{value:"0.6.0 - 2022-07-01",id:"060---2022-07-01",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-28",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-38",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-14",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-13",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-35",children:[],level:4}],level:3},{value:"0.5.5 - 2022-06-23",id:"055---2022-06-23",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-29",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-39",children:[],level:4}],level:3},{value:"0.5.4 - 2022-06-16",id:"054---2022-06-16",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-30",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-40",children:[],level:4}],level:3},{value:"0.5.3 - 2022-06-16",id:"053---2022-06-16",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-31",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-41",children:[],level:4}],level:3},{value:"0.5.2 - 2022-06-14",id:"052---2022-06-14",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-20",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-42",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-15",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-36",children:[],level:4}],level:3},{value:"0.5.1 - 2022-06-13",id:"051---2022-06-13",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-43",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-37",children:[],level:4}],level:3},{value:"0.5.0 - 2022-06-11",id:"050---2022-06-11",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-21",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-32",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-44",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-38",children:[],level:4}],level:3},{value:"0.4.5 - 2022-06-08",id:"045---2022-06-08",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-45",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-39",children:[],level:4}],level:3},{value:"0.4.4 - 2022-06-08",id:"044---2022-06-08",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-22",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-33",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-46",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-14",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-40",children:[],level:4}],level:3},{value:"0.4.3 - 2022-06-03",id:"043---2022-06-03",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-34",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-47",children:[],level:4}],level:3},{value:"0.4.2 - 2022-06-02",id:"042---2022-06-02",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-48",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-15",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-41",children:[],level:4}],level:3},{value:"0.4.1 - 2022-06-02",id:"041---2022-06-02",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-23",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-35",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-49",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-16",children:[],level:4}],level:3},{value:"0.4.0 - 2022-06-01",id:"040---2022-06-01",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-24",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-36",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-50",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-16",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-42",children:[],level:4}],level:3},{value:"0.3.1 - 2022-05-19",id:"031---2022-05-19",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-37",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-51",children:[],level:4}],level:3},{value:"0.3.0 - 2022-05-17",id:"030---2022-05-17",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-25",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-38",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-52",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-43",children:[],level:4}],level:3},{value:"0.2.4 - 2022-05-13",id:"024---2022-05-13",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-53",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-44",children:[],level:4}],level:3},{value:"0.2.3 - 2022-04-29",id:"023---2022-04-29",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-26",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-54",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-17",children:[],level:4}],level:3},{value:"0.2.2 - 2022-04-22",id:"022---2022-04-22",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-39",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-55",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-17",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-45",children:[],level:4}],level:3},{value:"0.2.1 - 2022-04-08",id:"021---2022-04-08",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-40",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-46",children:[],level:4}],level:3},{value:"0.2.0 - 2022-04-04",id:"020---2022-04-04",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-27",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-41",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-56",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-18",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-47",children:[],level:4}],level:3},{value:"0.1.9 - 2022-03-25",id:"019---2022-03-25",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-28",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-42",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-57",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-19",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-48",children:[],level:4}],level:3},{value:"0.1.8 - 2022-03-18",id:"018---2022-03-18",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-43",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-58",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-20",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-18",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-49",children:[],level:4}],level:3},{value:"0.1.7 - 2022-03-15",id:"017---2022-03-15",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-29",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-44",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-59",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-21",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-19",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-50",children:[],level:4}],level:3},{value:"0.1.6 - 2022-03-11",id:"016---2022-03-11",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-30",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-45",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-60",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-22",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-51",children:[],level:4}],level:3},{value:"0.1.5 - 2022-03-08",id:"015---2022-03-08",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-31",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-46",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-61",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-23",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-20",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-52",children:[],level:4}],level:3},{value:"0.1.4 - 2022-03-01",id:"014---2022-03-01",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-62",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-21",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-53",children:[],level:4}],level:3},{value:"0.1.4-beta.0 - 2022-02-25",id:"014-beta0---2022-02-25",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-32",children:[],level:4}],level:3},{value:"0.1.3 - 2022-02-25",id:"013---2022-02-25",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-47",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-63",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-24",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-54",children:[],level:4}],level:3},{value:"0.1.2 - 2022-02-17",id:"012---2022-02-17",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-33",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-48",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-64",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-25",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-22",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-55",children:[],level:4}],level:3},{value:"0.1.2-beta.2 - 2022-01-03",id:"012-beta2---2022-01-03",children:[],level:3},{value:"0.1.2-beta.1 - 2021-12-22",id:"012-beta1---2021-12-22",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-56",children:[],level:4}],level:3},{value:"0.1.2-beta.0 - 2021-12-18",id:"012-beta0---2021-12-18",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-57",children:[],level:4}],level:3},{value:"0.1.1 - 2021-12-16",id:"011---2021-12-16",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-58",children:[],level:4}],level:3},{value:"0.1.1-beta.0 - 2021-12-09",id:"011-beta0---2021-12-09",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-59",children:[],level:4}],level:3},{value:"0.1.0 - 2021-11-17",id:"010---2021-11-17",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-60",children:[],level:4}],level:3},{value:"0.0.1 - 2021-11-17",id:"001---2021-11-17",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-61",children:[],level:4}],level:3}],r={toc:d},c="wrapper";function s(e){let{components:a,...t}=e;return(0,n.kt)(c,(0,i.Z)({},r,t,{components:a,mdxType:"MDXLayout"}),(0,n.kt)("h3",{id:"eea-design-system-10"},"EEA Design System (1.0)"),(0,n.kt)("h4",{id:"components-ready-to-be-used"},"Components ready to be used"),(0,n.kt)("p",null,"The following components are ready to be used as Volto ",(0,n.kt)("inlineCode",{parentName:"p"},"blocks"),", ",(0,n.kt)("inlineCode",{parentName:"p"},"slate")," integration, or via the advanced ",(0,n.kt)("inlineCode",{parentName:"p"},"block styler"),":"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Accordion ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Call to Action ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Callout - part of the Description ",(0,n.kt)("inlineCode",{parentName:"li"},"block"),", ",(0,n.kt)("inlineCode",{parentName:"li"},"slate")),(0,n.kt)("li",{parentName:"ul"},"Card - part of the Teaser ",(0,n.kt)("inlineCode",{parentName:"li"},"block")," and Listing ",(0,n.kt)("inlineCode",{parentName:"li"},"block"),", it includes several variations like round card e.g., used for Avatar"),(0,n.kt)("li",{parentName:"ul"},"Divider ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Headings ",(0,n.kt)("inlineCode",{parentName:"li"},"slate")),(0,n.kt)("li",{parentName:"ul"},"Hero ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Item ",(0,n.kt)("inlineCode",{parentName:"li"},"block")," - used for text with an icon (remixicon or custom SVG/image) on the left/right"),(0,n.kt)("li",{parentName:"ul"},"List ",(0,n.kt)("inlineCode",{parentName:"li"},"slate")," - ordered and unordered"),(0,n.kt)("li",{parentName:"ul"},"Quote ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Statistic ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Tag ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Table ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Tabs ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Timeline ",(0,n.kt)("inlineCode",{parentName:"li"},"block"))),(0,n.kt)("h4",{id:"future-releases"},"Future releases"),(0,n.kt)("p",null,"Below is a non-exhaustive list of the work-in-progress which is planned for future releases:"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Navigation Portlet (used on the left/right hand of content)"),(0,n.kt)("li",{parentName:"ul"},"Spacing/padding system. We want to add the ability for editors to consistently apply various spacing/padding on certain components in order to allow a better alignment when components are used together."),(0,n.kt)("li",{parentName:"ul"},"Improve docusaurus and storybook with more components, controls, and variations in order to better reflect what is possible in Volto.")),(0,n.kt)("p",null,"Generated by ",(0,n.kt)("a",{parentName:"p",href:"https://github.com/CookPete/auto-changelog"},(0,n.kt)("inlineCode",{parentName:"a"},"auto-changelog")),"."),(0,n.kt)("h3",{id:"unreleased---2023-04-06t134714894z"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.6...HEAD"},"Unreleased")," - 2023-04-06T13:47:14.894Z"),(0,n.kt)("h4",{id:"-bug-fixes"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(header): external url in header now takes you to the correct url #330 from eea/header-external-url-fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/086c61d683a7ac67dea221aa39ffe4cef05a9a68"},(0,n.kt)("inlineCode",{parentName:"a"},"086c61d"))),(0,n.kt)("li",{parentName:"ul"},"fix(item): flex variant on edit when inside blockchooser #333 from eea/fix-item-csss ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/65b9099779180feeb7d10384928bb0a3224b947d"},(0,n.kt)("inlineCode",{parentName:"a"},"65b9099"))),(0,n.kt)("li",{parentName:"ul"},"fix: dont run isInternalURL twice ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a48984e0cb224944aed3846447c416511d080779"},(0,n.kt)("inlineCode",{parentName:"a"},"a48984e"))),(0,n.kt)("li",{parentName:"ul"},"fix: github autoformat ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/be9774981032759b3284a6fb93490a204a817c7a"},(0,n.kt)("inlineCode",{parentName:"a"},"be97749"))),(0,n.kt)("li",{parentName:"ul"},"fix: external url in header ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9e3aea649ca6f9446324d5d351cdfcde08332f84"},(0,n.kt)("inlineCode",{parentName:"a"},"9e3aea6"))),(0,n.kt)("li",{parentName:"ul"},"fix: check if client method change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7c53b83a54e4e7d3c5329c46de03cdf7aabedf13"},(0,n.kt)("inlineCode",{parentName:"a"},"7c53b83"))),(0,n.kt)("li",{parentName:"ul"},"fix(item): use child selector instead of descendent as it interferes with blockchooser refs #157040 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ad4ca3725c595c8dbeaff69f730928313c1779ec"},(0,n.kt)("inlineCode",{parentName:"a"},"ad4ca37")))),(0,n.kt)("h4",{id:"-enhancements"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): align menu items with demo site for better testing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/82a5c84cfde81dd8243f3f9a2d1fcaa8ac4b1463"},(0,n.kt)("inlineCode",{parentName:"a"},"82a5c84"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumbs): updates on structure and story for accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/770c8c0bce88c5d9301ab0293a8e4865849bfeb2"},(0,n.kt)("inlineCode",{parentName:"a"},"770c8c0"))),(0,n.kt)("li",{parentName:"ul"},"change(logo): update eionet svg ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c87fc750a3dc376205a643eefced410a41b22c6"},(0,n.kt)("inlineCode",{parentName:"a"},"3c87fc7"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): Restructure Topics and Countries lists ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d816e7ab9cdf2f202ab994201c16241cfb26c33a"},(0,n.kt)("inlineCode",{parentName:"a"},"d816e7a"))),(0,n.kt)("li",{parentName:"ul"},"change(mega-menu): use lists for navigation, enhance voice over support for better accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d13137f024d6357514b85f184d219eb81dd585f2"},(0,n.kt)("inlineCode",{parentName:"a"},"d13137f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): firefox accessibility errors fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c7d35b92b90940b466ea016dbbb3f1c6dfa0c3ab"},(0,n.kt)("inlineCode",{parentName:"a"},"c7d35b9"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumbs): label modification for better screen reader output ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c967bef63ac6f622f5936235dd5590831a674d15"},(0,n.kt)("inlineCode",{parentName:"a"},"c967bef"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): clean up function after test ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/883eb73cbc3db6a1fadd0200118eafdce91b7aab"},(0,n.kt)("inlineCode",{parentName:"a"},"883eb73"))),(0,n.kt)("li",{parentName:"ul"},"change(mega-menu): added code to align countries left column subtitle with the right column ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1aa33dd7ac7154a91515eef688f276d664d5d7f3"},(0,n.kt)("inlineCode",{parentName:"a"},"1aa33dd"))),(0,n.kt)("li",{parentName:"ul"},"change(mega-menu): sub-title padding tweaks for better spacing normalization ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e08668dd9fd948e57628e5582e7a4a7f08d96451"},(0,n.kt)("inlineCode",{parentName:"a"},"e08668d"))),(0,n.kt)("li",{parentName:"ul"},"change(logos): updated eionet logo used in the site footer #318 from eea/footer-logo-update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70671d03bbc228e3013e382cb51e6764a83b01a8"},(0,n.kt)("inlineCode",{parentName:"a"},"70671d0"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumbs,mega-menu): better screen readers support, see links instead of groups #309 from eea/firefox-accessibility-tab-issues ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d6b0b4adba8f04799491025fb41ac97e875bcce0"},(0,n.kt)("inlineCode",{parentName:"a"},"d6b0b4a"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumbs): fixed sizing of breadcrumbs list items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1761e984a6ffebbcca0c7b88128a01235fc6b903"},(0,n.kt)("inlineCode",{parentName:"a"},"1761e98")))),(0,n.kt)("h4",{id:"-internal-changes"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(megaMenu): remove comments and unused properties ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fa5f8f878421d879026aacd86e5390112b8852a1"},(0,n.kt)("inlineCode",{parentName:"a"},"fa5f8f8")))),(0,n.kt)("h4",{id:"-documentation-changes"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(footer): logo update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ad982d63423442bc292cd7553ad3163b33b337bb"},(0,n.kt)("inlineCode",{parentName:"a"},"ad982d6")))),(0,n.kt)("h3",{id:"106---2023-03-29"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.5...1.0.6"},"1.0.6")," - 2023-03-29"),(0,n.kt)("h4",{id:"-new-features"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat: add viewport-(width/height) less functions and fixed banner image url #329 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e8e70bdc81f4f301a9dce370867a873e55563048"},(0,n.kt)("inlineCode",{parentName:"a"},"e8e70bd"))),(0,n.kt)("li",{parentName:"ul"},"feat: add viewport-(width/height) less functions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/68300a3c34e66954c7ef3a6e52baa37431fbfa9e"},(0,n.kt)("inlineCode",{parentName:"a"},"68300a3")))),(0,n.kt)("h4",{id:"-enhancements-1"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): set full class name for remix icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f435e10034b04cab4aeb301d8521559f98be299e"},(0,n.kt)("inlineCode",{parentName:"a"},"f435e10"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner.jsx): use flattenToAppURL helper function to get image source URL ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24b13d7c09a498ca889d413135c9abc4e6cab9ad"},(0,n.kt)("inlineCode",{parentName:"a"},"24b13d7")))),(0,n.kt)("h4",{id:"-internal-changes-1"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(theme): update container width and margins in eea theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e4446a3af641ddca03f1f2833dd6e79535feb98"},(0,n.kt)("inlineCode",{parentName:"a"},"3e4446a")))),(0,n.kt)("h4",{id:"\ufe0f-others"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"horizontal overflow hidden in view mode ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f395f276df003480a219bae639f87bebcf35799f"},(0,n.kt)("inlineCode",{parentName:"a"},"f395f27")))),(0,n.kt)("h3",{id:"105---2023-03-28"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.4...1.0.5"},"1.0.5")," - 2023-03-28"),(0,n.kt)("h4",{id:"-new-features-1"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat: improve full-width class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70bba7e295dd237e7c579ef0446ff05e0c8529d8"},(0,n.kt)("inlineCode",{parentName:"a"},"70bba7e")))),(0,n.kt)("h4",{id:"-bug-fixes-1"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(banner): Add missing divider for time tag #327 from eea/banner-metadata ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c46a58336ec9eb2ce75d2637f3197f417e8ca326"},(0,n.kt)("inlineCode",{parentName:"a"},"c46a583"))),(0,n.kt)("li",{parentName:"ul"},"fix(banner): Add missing divider for time tag ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d68c395d368a267baef4422df6e72f63d099b75"},(0,n.kt)("inlineCode",{parentName:"a"},"7d68c39")))),(0,n.kt)("h3",{id:"104---2023-03-27"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.3...1.0.4"},"1.0.4")," - 2023-03-27"),(0,n.kt)("h4",{id:"-new-features-2"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(copyright): Add copyright prefix - Image - refs #250724 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6a727723c15aee499ed7cedc9f364c5e2c8014bb"},(0,n.kt)("inlineCode",{parentName:"a"},"6a72772")))),(0,n.kt)("h4",{id:"-internal-changes-2"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(copyright): Cleanup useless min-height - refs #250724 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2457df6376ac1a4d00f87eee90e61f66f7ffebb"},(0,n.kt)("inlineCode",{parentName:"a"},"f2457df")))),(0,n.kt)("h4",{id:"\ufe0f-others-1"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cfd6eba8b01eceff4e28ab7ab51b2457672ac172"},(0,n.kt)("inlineCode",{parentName:"a"},"cfd6eba")))),(0,n.kt)("h3",{id:"103---2023-03-24"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.2...1.0.3"},"1.0.3")," - 2023-03-24"),(0,n.kt)("h4",{id:"-bug-fixes-2"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix: improve full-width class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93222590a630b27f3dfccb7df0a50070c9c9901c"},(0,n.kt)("inlineCode",{parentName:"a"},"9322259"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): Remove z-index from subsite logo #320 from eea/subsite-logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/50911009918faf7d3064d97ea7b685ad71970521"},(0,n.kt)("inlineCode",{parentName:"a"},"5091100"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): Remove z-index from subsite logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d433a9788d76db0f1c08ef6bb2313f479c2bb19b"},(0,n.kt)("inlineCode",{parentName:"a"},"d433a97")))),(0,n.kt)("h4",{id:"-enhancements-2"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(header): Add search popup customizations from eea-website-theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/43e5a78be8efa1098ea0fc87f43f40f2b5d482c1"},(0,n.kt)("inlineCode",{parentName:"a"},"43e5a78"))),(0,n.kt)("li",{parentName:"ul"},"change(popup): create custom popup for better accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/036aac95509b6d78b2d3b251578a7de878e28371"},(0,n.kt)("inlineCode",{parentName:"a"},"036aac9"))),(0,n.kt)("li",{parentName:"ul"},"change(popup): added most important popup properties from Semantic ui implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/61f65bc0e5806aaac33b54db36d5360fd05a48cc"},(0,n.kt)("inlineCode",{parentName:"a"},"61f65bc"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): use custom-made Popup for better accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/10d0fcfb28ca97efe9fa5c0f6c9c350b76a73140"},(0,n.kt)("inlineCode",{parentName:"a"},"10d0fcf"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): use custom-made Popup for better accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9108bee5f671505be5199e72a4749bb0af0c0cb9"},(0,n.kt)("inlineCode",{parentName:"a"},"9108bee"))),(0,n.kt)("li",{parentName:"ul"},"change(popup): added also the basic property ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4497acddde258ed31cda09f4d905e003a1e4611"},(0,n.kt)("inlineCode",{parentName:"a"},"a4497ac"))),(0,n.kt)("li",{parentName:"ul"},"change(colors): update gray-4 color value #321 from eea/update-gray-4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f458ff0965debd3629cdd78362244836d0d42687"},(0,n.kt)("inlineCode",{parentName:"a"},"f458ff0"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): MetadataField now uses proper time tag when value is datetime ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4c4d34d5905a6771a281fc3db1174b4998c8fa8"},(0,n.kt)("inlineCode",{parentName:"a"},"b4c4d34"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): updated gray-4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b890df7693880fb965e41752eda64df992a1cdc4"},(0,n.kt)("inlineCode",{parentName:"a"},"b890df7"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): Fix error and empty div if no social links are present #319 from eea/footer-social ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/89222466b76a4720af73c0d516074efec0757c34"},(0,n.kt)("inlineCode",{parentName:"a"},"8922246"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): Fix error and empty div if no social links are present ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5d934a6545ae783ff41dc9e3eda389c571d1369b"},(0,n.kt)("inlineCode",{parentName:"a"},"5d934a6")))),(0,n.kt)("h4",{id:"\ufe0f-others-2"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"lint ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca41def7a3743a8328f26cec868bd20395b62446"},(0,n.kt)("inlineCode",{parentName:"a"},"ca41def"))),(0,n.kt)("li",{parentName:"ul"},"refactor ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9789201c7966cd711bfa85fe448f6f6df2583eaf"},(0,n.kt)("inlineCode",{parentName:"a"},"9789201"))),(0,n.kt)("li",{parentName:"ul"},"lint ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/646dfaa729b51367ce7545ea928837a481a5485a"},(0,n.kt)("inlineCode",{parentName:"a"},"646dfaa"))),(0,n.kt)("li",{parentName:"ul"},"(feat):Page Header Banner accessibility #316 from eea/accesibility-banner ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e587f4657de137273053480a3536a066ab032a29"},(0,n.kt)("inlineCode",{parentName:"a"},"e587f46"))),(0,n.kt)("li",{parentName:"ul"},"storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c8c77de372060328d535b190f30747797db0d23a"},(0,n.kt)("inlineCode",{parentName:"a"},"c8c77de"))),(0,n.kt)("li",{parentName:"ul"},"banner accesibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5e2f23bae30b5bb14d3f607e0cfeb85d0cfe4a9f"},(0,n.kt)("inlineCode",{parentName:"a"},"5e2f23b"))),(0,n.kt)("li",{parentName:"ul"},"prettier ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6ed78e50ee68accca10b06b0790c231ddeb1a1fa"},(0,n.kt)("inlineCode",{parentName:"a"},"6ed78e5"))),(0,n.kt)("li",{parentName:"ul"},"cleaning ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4391aa6c6611d1a15f5977eb150416909ad83bc1"},(0,n.kt)("inlineCode",{parentName:"a"},"4391aa6"))),(0,n.kt)("li",{parentName:"ul"},"lint 3 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2e0bed19a24d8abfa230212cd8c09f8313dc00f2"},(0,n.kt)("inlineCode",{parentName:"a"},"2e0bed1"))),(0,n.kt)("li",{parentName:"ul"},"lint 1 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4c958034870a9861c542359144e3c56f9157994"},(0,n.kt)("inlineCode",{parentName:"a"},"b4c9580")))),(0,n.kt)("h3",{id:"102---2023-03-14"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.1...1.0.2"},"1.0.2")," - 2023-03-14"),(0,n.kt)("h4",{id:"-bug-fixes-3"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(megamenu): topic menu title is now placed before content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6004bcb2683dedf6d6e18e61f33fde84a54c38d5"},(0,n.kt)("inlineCode",{parentName:"a"},"6004bcb"))),(0,n.kt)("li",{parentName:"ul"},"fix(megamenu): removed in depth nav_title renaming that set title wrongly to a-z topics ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/899ca0e2ba5f8f9eb61e4280d786f74a17c186b7"},(0,n.kt)("inlineCode",{parentName:"a"},"899ca0e")))),(0,n.kt)("h4",{id:"-enhancements-3"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(megamenu): removed special styling from at a glance mega menu section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fd0c4c8a06bb4c4aa26f57c453132d13d30bc691"},(0,n.kt)("inlineCode",{parentName:"a"},"fd0c4c8"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): renamed thematic information platforms to environmental information systems ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e7004a7ea39451dbf97e1faed222b0cc5a12d6ce"},(0,n.kt)("inlineCode",{parentName:"a"},"e7004a7"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): updated static image of footer sections ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ff3185edf9257c790d2a124d3f937f61d84e147"},(0,n.kt)("inlineCode",{parentName:"a"},"4ff3185")))),(0,n.kt)("h4",{id:"-documentation-changes-1"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(What's new): Update 'What's new' ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d7ed9d619aa60d087c3821a972ebe5bf5766521a"},(0,n.kt)("inlineCode",{parentName:"a"},"d7ed9d6")))),(0,n.kt)("h4",{id:"\ufe0f-others-3"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fixed accordion selector typo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f4cabc8f2222cf587af9e04b0ea196799b84202f"},(0,n.kt)("inlineCode",{parentName:"a"},"f4cabc8")))),(0,n.kt)("h3",{id:"101---2023-03-13"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0...1.0.1"},"1.0.1")," - 2023-03-13"),(0,n.kt)("h3",{id:"100---2023-03-13"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-beta.6...1.0.0"},"1.0.0")," - 2023-03-13"),(0,n.kt)("h4",{id:"-bug-fixes-4"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(Footer): Open internal links within the same page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5b3e409c71281800bb0fd137a1bac256efaca2b5"},(0,n.kt)("inlineCode",{parentName:"a"},"5b3e409")))),(0,n.kt)("h4",{id:"-enhancements-4"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(banner): use huge scale instead of full image for better performance ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/381c58e3521436f562d9e1727428a18435e2c0f3"},(0,n.kt)("inlineCode",{parentName:"a"},"381c58e")))),(0,n.kt)("h3",{id:"100-beta6---2023-03-10"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-beta.5...1.0.0-beta.6"},"1.0.0-beta.6")," - 2023-03-10"),(0,n.kt)("h4",{id:"-new-features-3"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(site): serve Roboto fonts from eea design system package instead of google fonts #311 from eea/roboto-library ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6a1b3e3864a0bc8602e9c434ff70746bba59f44"},(0,n.kt)("inlineCode",{parentName:"a"},"f6a1b3e")))),(0,n.kt)("h4",{id:"-bug-fixes-5"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix: full-width is now properly sized ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e2e3482d658febbd692112608df14279bed05e7"},(0,n.kt)("inlineCode",{parentName:"a"},"6e2e348"))),(0,n.kt)("li",{parentName:"ul"},"fix(storybook): add fontDisplay ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/078966a6a5c7277d36fcd31bb4c0704bcc43e523"},(0,n.kt)("inlineCode",{parentName:"a"},"078966a")))),(0,n.kt)("h4",{id:"-enhancements-5"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(image): copyright position fixes, moved image floating to image-block-container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53422e0ea345a7cb6e8cb07bf9006b48d86ded58"},(0,n.kt)("inlineCode",{parentName:"a"},"53422e0"))),(0,n.kt)("li",{parentName:"ul"},"change(colors:) update the design system colour palette #312 from eea/update-color-palette ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a5fb69465717dbdc0fe8091640a0e46f66199b65"},(0,n.kt)("inlineCode",{parentName:"a"},"a5fb694"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): added roboto library ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19de7b19fe795870102000bfebbf452d88b3a7b1"},(0,n.kt)("inlineCode",{parentName:"a"},"19de7b1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): added roboto library ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e9916215728dda0ff423f8196e7442588058042e"},(0,n.kt)("inlineCode",{parentName:"a"},"e991621"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): update colours ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3a2c1e1da8f0224e08f9f8afac3f0a74f7ce91d3"},(0,n.kt)("inlineCode",{parentName:"a"},"3a2c1e1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): restored site variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a48478bae9bdf1d9275be999e1ec8382f10a2fec"},(0,n.kt)("inlineCode",{parentName:"a"},"a48478b"))),(0,n.kt)("li",{parentName:"ul"},"change(copyright): implemented copyright hover design ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6b1244163de7ff58d1529fdd791502c862ee48ec"},(0,n.kt)("inlineCode",{parentName:"a"},"6b12441")))),(0,n.kt)("h4",{id:"-internal-changes-3"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(storybook): switched google fonts to true ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a8cae46582356cc24ec3cd7ec47e692bc67a6a5"},(0,n.kt)("inlineCode",{parentName:"a"},"4a8cae4"))),(0,n.kt)("li",{parentName:"ul"},"chore(colours): changed back yellow 6 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87c9bbc0ec9a2a0f4bf8eeb03525d43ce6f502be"},(0,n.kt)("inlineCode",{parentName:"a"},"87c9bbc"))),(0,n.kt)("li",{parentName:"ul"},"chore(lint): lint ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9b0f1256a8b0a583ac7724a8d88259c615d7e0c7"},(0,n.kt)("inlineCode",{parentName:"a"},"9b0f125"))),(0,n.kt)("li",{parentName:"ul"},"chore(storybook): lint ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/29bc809ab2e9fa4207b8b067785e6b17e91db3b4"},(0,n.kt)("inlineCode",{parentName:"a"},"29bc809")))),(0,n.kt)("h4",{id:"-documentation-changes-2"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(colours): colours update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/161007e2480aa79517c4ca772364a12a0756f1af"},(0,n.kt)("inlineCode",{parentName:"a"},"161007e"))),(0,n.kt)("li",{parentName:"ul"},"docs(colours): accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee342aa6af3863d243222eaa89709be2ba61f988"},(0,n.kt)("inlineCode",{parentName:"a"},"ee342aa")))),(0,n.kt)("h4",{id:"\ufe0f-others-4"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"test(cypress): Use latest stable Volto for testing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/20516617ae045f48c37a7ac7ad05c3d1090339b3"},(0,n.kt)("inlineCode",{parentName:"a"},"2051661"))),(0,n.kt)("li",{parentName:"ul"},"Update What's new section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/caa4b5d93affa7b63a332eaed9e73ea161a508cf"},(0,n.kt)("inlineCode",{parentName:"a"},"caa4b5d"))),(0,n.kt)("li",{parentName:"ul"},"Prepare final release 1.0.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef4383d05b295cbbb377f877522b9f83cd0873ef"},(0,n.kt)("inlineCode",{parentName:"a"},"ef4383d"))),(0,n.kt)("li",{parentName:"ul"},"lint fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/599f5098904f607bd694dd5d2e642c8820f11b3c"},(0,n.kt)("inlineCode",{parentName:"a"},"599f509"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/80cd3df3534e46e52ba246256c3d990a52753bbd"},(0,n.kt)("inlineCode",{parentName:"a"},"80cd3df")))),(0,n.kt)("h3",{id:"100-beta5---2023-03-07"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-beta.4...1.0.0-beta.5"},"1.0.0-beta.5")," - 2023-03-07"),(0,n.kt)("h4",{id:"-enhancements-6"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(carousel): tweak size of carousel dots for better touch interaction ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e1fb8230806de2e157a9a5ea87e63765769565b4"},(0,n.kt)("inlineCode",{parentName:"a"},"e1fb823"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): removed min width and height from links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac33219fb77f23bb5148355551a7aad9f453d2e7"},(0,n.kt)("inlineCode",{parentName:"a"},"ac33219")))),(0,n.kt)("h4",{id:"-internal-changes-4"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(hiddenStructure): Add hiddenStructure utility to be used with h1 heading on frontpage - refs #158717 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/672cca2401003f56e5ea104f18103ea090e38fd7"},(0,n.kt)("inlineCode",{parentName:"a"},"672cca2")))),(0,n.kt)("h4",{id:"\ufe0f-others-5"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fixed less build failure due to changes in footer.less ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/190bc8cfa88191b45808f1e27c6e2737ee3d15b1"},(0,n.kt)("inlineCode",{parentName:"a"},"190bc8c"))),(0,n.kt)("li",{parentName:"ul"},"lazyload bg img on footer also ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ae07162ba1b27bff58fed70eaabc28c78c5f45a3"},(0,n.kt)("inlineCode",{parentName:"a"},"ae07162"))),(0,n.kt)("li",{parentName:"ul"},"lazyload footer images ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a0633c9ec4ccfb63a48eb4e4c4a63c90daac1a37"},(0,n.kt)("inlineCode",{parentName:"a"},"a0633c9"))),(0,n.kt)("li",{parentName:"ul"},"Increase performance - mobile friendly ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/07d86c8e77568f91d50b3a45248de9427140a295"},(0,n.kt)("inlineCode",{parentName:"a"},"07d86c8"))),(0,n.kt)("li",{parentName:"ul"},"better useOnScreen hook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c214b6b76443f81c795ce2f3aa457562ec088b30"},(0,n.kt)("inlineCode",{parentName:"a"},"c214b6b"))),(0,n.kt)("li",{parentName:"ul"},"role change for accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5e758e0a7fa8c56ba688d0a43de5890686f14ea3"},(0,n.kt)("inlineCode",{parentName:"a"},"5e758e0"))),(0,n.kt)("li",{parentName:"ul"},"minimum tap dimension for mobile ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a25e9a8ba8a8a0f24d287ed7513e549ae2caab0f"},(0,n.kt)("inlineCode",{parentName:"a"},"a25e9a8"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-beta.5 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e4417e121477511c350ae3fbe4e70aadb445ed86"},(0,n.kt)("inlineCode",{parentName:"a"},"e4417e1"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using eea-website-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b227cf8a8c44b9d91e9fda8a7999fb0a42bacdca"},(0,n.kt)("inlineCode",{parentName:"a"},"b227cf8"))),(0,n.kt)("li",{parentName:"ul"},"feature(mobile): increased performance by lazy loading footer images #303 from eea/increase_performance ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/80d1df1c459680331d486f9e8e6a95c9db0adbf6"},(0,n.kt)("inlineCode",{parentName:"a"},"80d1df1"))),(0,n.kt)("li",{parentName:"ul"},"useOnScreen default export ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e6cfdd4dcb814aad328f97be7af41af071ccba6"},(0,n.kt)("inlineCode",{parentName:"a"},"3e6cfdd"))),(0,n.kt)("li",{parentName:"ul"},"use aria-labels on dropdown ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/27e144315416ceace0f01def03b5b24640f5c7da"},(0,n.kt)("inlineCode",{parentName:"a"},"27e1443"))),(0,n.kt)("li",{parentName:"ul"},"prettier ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7f838470c1bcc4e2be115d514d92a1b686a5e9b"},(0,n.kt)("inlineCode",{parentName:"a"},"a7f8384")))),(0,n.kt)("h3",{id:"100-beta4---2023-03-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-beta.3...1.0.0-beta.4"},"1.0.0-beta.4")," - 2023-03-01"),(0,n.kt)("h4",{id:"-new-features-4"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(footer): Add footer description ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ad0f714556c5b8c2fd95a2caea5c3a1e82c75d1"},(0,n.kt)("inlineCode",{parentName:"a"},"2ad0f71"))),(0,n.kt)("li",{parentName:"ul"},"feat(footer): Add footer description #306 from eea/footer-description ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bf655d133dd75b217c34b3d4303ad450a59f2c51"},(0,n.kt)("inlineCode",{parentName:"a"},"bf655d1")))),(0,n.kt)("h4",{id:"-bug-fixes-6"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(footer): Don't show empty row if description is not present ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ca7f7d3247668ae8583b8cd629856aac82eb07d"},(0,n.kt)("inlineCode",{parentName:"a"},"2ca7f7d"))),(0,n.kt)("li",{parentName:"ul"},"fix(footer): Add class for children ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c50d15cd6ed46d78ef10d48fd851ed7c4b5ddea"},(0,n.kt)("inlineCode",{parentName:"a"},"3c50d15"))),(0,n.kt)("li",{parentName:"ul"},"fix(search): Fix search links color #307 from eea/search-accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a76f48bab3a7d3f6b748eaa85b33266401372e40"},(0,n.kt)("inlineCode",{parentName:"a"},"a76f48b"))),(0,n.kt)("li",{parentName:"ul"},"fix(search): Fix search links color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/69c42effc5bdc3d31f18de74d77a3b7cc0018dc5"},(0,n.kt)("inlineCode",{parentName:"a"},"69c42ef")))),(0,n.kt)("h4",{id:"-enhancements-7"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(carousel): tweak card width and padding for better arrow alignment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e184f70062d622e1ec53e8e1e2b012c080e62d77"},(0,n.kt)("inlineCode",{parentName:"a"},"e184f70"))),(0,n.kt)("li",{parentName:"ul"},"change(storybook): include footer description in storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e904aa0850e101d736e8d045e822d9a58b75ff6a"},(0,n.kt)("inlineCode",{parentName:"a"},"e904aa0")))),(0,n.kt)("h4",{id:"\ufe0f-others-6"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-beta.4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8c335c56c5a2a76ea87f9da318055770f904e649"},(0,n.kt)("inlineCode",{parentName:"a"},"8c335c5"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/38b03333066416915b056f8ac45da4de87ed7184"},(0,n.kt)("inlineCode",{parentName:"a"},"38b0333")))),(0,n.kt)("h3",{id:"100-beta3---2023-02-21"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-beta.2...1.0.0-beta.3"},"1.0.0-beta.3")," - 2023-02-21"),(0,n.kt)("h4",{id:"-new-features-5"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(accordion): storybook accessibility by using buttons for titles #297 from eea/accessibility-accordion ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/809d52b203ef40fab735006b3b8358d68682f7cf"},(0,n.kt)("inlineCode",{parentName:"a"},"809d52b")))),(0,n.kt)("h4",{id:"-bug-fixes-7"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(dropdown): remove close on blur so that we can navigate links using keyboard ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5442715e022b3eb2eeb709ff597f815947ac45bd"},(0,n.kt)("inlineCode",{parentName:"a"},"5442715")))),(0,n.kt)("h4",{id:"-enhancements-8"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(language): dropdown to use links for proper keyboard navigation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6a7de30d9d229443d6d2070d9649129e6d35badf"},(0,n.kt)("inlineCode",{parentName:"a"},"6a7de30"))),(0,n.kt)("li",{parentName:"ul"},"refactor(images): cleared unused/renamed images assets ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/821f5c1da5c1e2350818cd9b8b82bc0b1893370d"},(0,n.kt)("inlineCode",{parentName:"a"},"821f5c1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Accessibility): add box-shadow on focus-visible components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b1adcc315a89c7d3431e542e8d1b6ec479a346e2"},(0,n.kt)("inlineCode",{parentName:"a"},"b1adcc3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(images): remove unused docusaurus svgs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5ef14cdb1923d803feb673559d41b3064211653"},(0,n.kt)("inlineCode",{parentName:"a"},"c5ef14c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add escape key functionality, actions from div to button to have proper focus state ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8081aa4e3b77f8a3dc89aa358408d75e3dca5579"},(0,n.kt)("inlineCode",{parentName:"a"},"8081aa4"))),(0,n.kt)("li",{parentName:"ul"},"change(language): restore dropdown duplication in order to properly show and hide language dropdown ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb28888ff19bd9894b58403e674f69de42ad8d09"},(0,n.kt)("inlineCode",{parentName:"a"},"cb28888"))),(0,n.kt)("li",{parentName:"ul"},"change(search): to reflect changes from eea-website-theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2cc35e0da6e6eac1473724293fcf6cd6b0a914b5"},(0,n.kt)("inlineCode",{parentName:"a"},"2cc35e0"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update p with h3 heading tag for header ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca1477b554f56423d40a33d8ee788c3f3bd3e341"},(0,n.kt)("inlineCode",{parentName:"a"},"ca1477b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer images): removed unused/renamed ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/186de6b23906e05ec700c3db5180a4d7f7e5ed68"},(0,n.kt)("inlineCode",{parentName:"a"},"186de6b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Accordion): div titles to buttons, test in mobile mega menu accordions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/eaad4b479e37ebf5ac004cfc5759e0be603000a7"},(0,n.kt)("inlineCode",{parentName:"a"},"eaad4b4"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): cleanup decorative images ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fedc4d4dc156f9c1394fcedcebece4fb87dc70b6"},(0,n.kt)("inlineCode",{parentName:"a"},"fedc4d4"))),(0,n.kt)("li",{parentName:"ul"},"change(accessibility): style outline instead of box-shadow ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53209f3b28c9a1dd54a8a86ab418b8bc2a8e01b3"},(0,n.kt)("inlineCode",{parentName:"a"},"53209f3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Footer): update mobile header size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/01ab7f0d9abe688b3d96aaec018838e1abefec73"},(0,n.kt)("inlineCode",{parentName:"a"},"01ab7f0"))),(0,n.kt)("li",{parentName:"ul"},"change(header): set the logo class directly on the link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f8fba508f925d9e6b86720fcb2c7dcfffee4ab5e"},(0,n.kt)("inlineCode",{parentName:"a"},"f8fba50"))),(0,n.kt)("li",{parentName:"ul"},"refactor(images): clear docusaurus unused pngs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/db5c61124182e3030f753f6baa294fbdecaa3798"},(0,n.kt)("inlineCode",{parentName:"a"},"db5c611"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header-images): removed unused ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8250d94421d9d1ee13144e71bc0938af2b7309f5"},(0,n.kt)("inlineCode",{parentName:"a"},"8250d94"))),(0,n.kt)("li",{parentName:"ul"},"change(language): hide language dropdown by default ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cc6064f72dcb4dbf96e9b05205cc796775d75205"},(0,n.kt)("inlineCode",{parentName:"a"},"cc6064f"))),(0,n.kt)("li",{parentName:"ul"},"change(header): top dropdown menu keyboard navigation #293 from eea/accessibility-megamenu-searchbox ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1e6fa658e52b9d5e6cc38f065b5707b592005241"},(0,n.kt)("inlineCode",{parentName:"a"},"1e6fa65"))),(0,n.kt)("li",{parentName:"ul"},"change(button): set focus styling for buttons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/33ebfcacb014fca365ae58079bfa5429d9007e54"},(0,n.kt)("inlineCode",{parentName:"a"},"33ebfca"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): Avoid devtools warning in FooterActions #304 from eea/avoid_warning ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d774824c5d3d0998b3440ac83152428cfa821087"},(0,n.kt)("inlineCode",{parentName:"a"},"d774824"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): Accessibility update p with h3 heading tag for theme sites title #302 from eea/footer-accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5bf70de97aee216a0b88f5843a290c6bcb5da6f2"},(0,n.kt)("inlineCode",{parentName:"a"},"5bf70de"))),(0,n.kt)("li",{parentName:"ul"},"change(documentation): Rename all image files to follow the agreed convention #301 from eea/refactor-image-filenames ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cfe44ef79943af9b9179df1b8ec5f8c743e8bb39"},(0,n.kt)("inlineCode",{parentName:"a"},"cfe44ef")))),(0,n.kt)("h4",{id:"-internal-changes-5"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(header): react syntax fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3add1271c785a92bea0ef925d7bc562cef1e0d92"},(0,n.kt)("inlineCode",{parentName:"a"},"3add127"))),(0,n.kt)("li",{parentName:"ul"},"chore(docusaurus): ignore website/.yarn ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0b33ffd1dda61b126e3cc5ff48888124d6aee41b"},(0,n.kt)("inlineCode",{parentName:"a"},"0b33ffd")))),(0,n.kt)("h4",{id:"-documentation-changes-3"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(guidelines): add image name convention ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/290747c8df6919199577bc7fce6a0e337cb57853"},(0,n.kt)("inlineCode",{parentName:"a"},"290747c")))),(0,n.kt)("h4",{id:"\ufe0f-others-7"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Avoid warning in FooterActions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0fe73d70e44e32be73049f3b5cf826de42115942"},(0,n.kt)("inlineCode",{parentName:"a"},"0fe73d7"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-beta.3 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/386c9032d39317b0bb95191bd59e3b7a99bded69"},(0,n.kt)("inlineCode",{parentName:"a"},"386c903")))),(0,n.kt)("h3",{id:"100-beta2---2023-02-13"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-beta.1...1.0.0-beta.2"},"1.0.0-beta.2")," - 2023-02-13"),(0,n.kt)("h4",{id:"-bug-fixes-8"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(footer): action and copyright #300 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/579f3e436e9608b38a2407a16c070345462bfccc"},(0,n.kt)("inlineCode",{parentName:"a"},"579f3e4"))),(0,n.kt)("li",{parentName:"ul"},"fix(footer): action or copyright links are simple a tags for external link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9af5070187ec975e58387f133afedcf1bbc47a50"},(0,n.kt)("inlineCode",{parentName:"a"},"9af5070"))),(0,n.kt)("li",{parentName:"ul"},"fix(accessibility): added navigation and footer id's for skip link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48354b908e7d1a87b4e1a965d225e8f1b3e0ac59"},(0,n.kt)("inlineCode",{parentName:"a"},"48354b9")))),(0,n.kt)("h4",{id:"-enhancements-9"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(footer): typos and modified footer links to be center aligned ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac23f046bcac06525985dff7520bb2766dec44ec"},(0,n.kt)("inlineCode",{parentName:"a"},"ac23f04"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): added gap for actions and copyright ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d32ddd3c28a48c6c2fb73dea373bb5873b6f76b"},(0,n.kt)("inlineCode",{parentName:"a"},"7d32ddd"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): modified footer gap ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8a820ac90c7d6664e4d4655c2c06edfa976c64e"},(0,n.kt)("inlineCode",{parentName:"a"},"b8a820a"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): removed extra text and date from copyright section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af47bbec298678fece6f879fbc18fe2e01ab0894"},(0,n.kt)("inlineCode",{parentName:"a"},"af47bbe"))),(0,n.kt)("li",{parentName:"ul"},"change(navigation): raise z-index of go to top link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/485ca7291da7a156b6b580c42e46d4f3602211bb"},(0,n.kt)("inlineCode",{parentName:"a"},"485ca72")))),(0,n.kt)("h4",{id:"-internal-changes-6"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(docs): Update eea.hbs template to beta - refs #158717 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/196538ed7bb9dab36a0efb4cef84e96dd3038ff8"},(0,n.kt)("inlineCode",{parentName:"a"},"196538e")))),(0,n.kt)("h4",{id:"\ufe0f-others-8"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change version to beta 2 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cbb07981454b28de840561eca281888e8bc29f9e"},(0,n.kt)("inlineCode",{parentName:"a"},"cbb0798"))),(0,n.kt)("li",{parentName:"ul"},"Beta release ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ad51b3c2bbb75f19af14fa56afdbddf57b6c95e"},(0,n.kt)("inlineCode",{parentName:"a"},"4ad51b3")))),(0,n.kt)("h3",{id:"100-beta1---2023-02-09"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.15...1.0.0-beta.1"},"1.0.0-beta.1")," - 2023-02-09"),(0,n.kt)("h4",{id:"-new-features-6"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(search): Add search suggestions style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6b2b77bbaba11541606ae2bc1f4e8ffc823f470d"},(0,n.kt)("inlineCode",{parentName:"a"},"6b2b77b"))),(0,n.kt)("li",{parentName:"ul"},"feat(search): Add search suggestions style #296 from eea/search-suggestions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3b0c956f569ebdc8400b88249c45067a1f881264"},(0,n.kt)("inlineCode",{parentName:"a"},"3b0c956")))),(0,n.kt)("h4",{id:"-enhancements-10"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(search): Add proper margin for search popup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/190c9f5be570215586086f42aebc7e36d6a26ea2"},(0,n.kt)("inlineCode",{parentName:"a"},"190c9f5")))),(0,n.kt)("h4",{id:"\ufe0f-others-9"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Extra bottom padding for header menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4f38c7a96d93fbcd47de4ec60176de2a667c5643"},(0,n.kt)("inlineCode",{parentName:"a"},"4f38c7a"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-beta.1 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4384ae28597c725f66ab0f1361ffd5167ee5e3a1"},(0,n.kt)("inlineCode",{parentName:"a"},"4384ae2"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c2ee90c1754f17a304897839adf482bc2a111212"},(0,n.kt)("inlineCode",{parentName:"a"},"c2ee90c")))),(0,n.kt)("h3",{id:"100-alpha15---2023-02-08"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.14...1.0.0-alpha.15"},"1.0.0-alpha.15")," - 2023-02-08"),(0,n.kt)("h4",{id:"-new-features-7"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(Card): add teaser card grid story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53cac0b0d1c40ad6ad8c9dc91c5d24bfb160f98e"},(0,n.kt)("inlineCode",{parentName:"a"},"53cac0b"))),(0,n.kt)("li",{parentName:"ul"},"feat(utilities): Complete list of text-align utilities - refs #160747 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/224fab602184b8974f588c91a7412e3d03e4e2f7"},(0,n.kt)("inlineCode",{parentName:"a"},"224fab6"))),(0,n.kt)("li",{parentName:"ul"},"feat(small): CSS for small HTML tag - refs #160747 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ad3c0adec4efa7cead69153d399c6452131c94cc"},(0,n.kt)("inlineCode",{parentName:"a"},"ad3c0ad"))),(0,n.kt)("li",{parentName:"ul"},"feat(fw-light): Add font weight light utility - refs #160747 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c44cf57db5845fbb9c07233aeedab79e1438f80f"},(0,n.kt)("inlineCode",{parentName:"a"},"c44cf57")))),(0,n.kt)("h4",{id:"-bug-fixes-9"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(card): teaser card dimensions on tablet size #290 from eea/teaser-card-grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/013fdf5cad347aee14bdc51553dbd95d972a7c66"},(0,n.kt)("inlineCode",{parentName:"a"},"013fdf5")))),(0,n.kt)("h4",{id:"-enhancements-11"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(card): added extra content for teaser card story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/30690ae6c499682853cb19db10b0cdc13c6f9508"},(0,n.kt)("inlineCode",{parentName:"a"},"30690ae"))),(0,n.kt)("li",{parentName:"ul"},"refactor(style-menu): add text-color to paragraphs styles #291 from eea/stylemenu-theme-colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2d783075b8089184e50b1763226af0d60ed11786"},(0,n.kt)("inlineCode",{parentName:"a"},"2d78307"))),(0,n.kt)("li",{parentName:"ul"},"change(header): Small fix in search popup #292 from eea/search-popup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/86c130539455b9a00b4b088b1871a98b9756df79"},(0,n.kt)("inlineCode",{parentName:"a"},"86c1305"))),(0,n.kt)("li",{parentName:"ul"},"refactor(style-menu): add text-color to paragraphs styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3446bc2704603bbfead7ff6c72d4e3a1ce81c7d4"},(0,n.kt)("inlineCode",{parentName:"a"},"3446bc2"))),(0,n.kt)("li",{parentName:"ul"},"change(color): darkCyan is now replaced everywhere by the new green ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef3791de6e2ea23487791c717eefc575e21fd283"},(0,n.kt)("inlineCode",{parentName:"a"},"ef3791d"))),(0,n.kt)("li",{parentName:"ul"},"change(header): Small fix in search popup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3d622ea99df5a1f1088f70998e38fd5bf43997cf"},(0,n.kt)("inlineCode",{parentName:"a"},"3d622ea")))),(0,n.kt)("h4",{id:"\ufe0f-others-10"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Release alpha 15 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3b72b29aaf9b3e1bfb7015808aafbd73a7167895"},(0,n.kt)("inlineCode",{parentName:"a"},"3b72b29")))),(0,n.kt)("h3",{id:"100-alpha14---2023-01-30"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.13.1...1.0.0-alpha.14"},"1.0.0-alpha.14")," - 2023-01-30"),(0,n.kt)("h4",{id:"-enhancements-12"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(mobile menu): integrate a-z topic with menu rendering logic #287 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/05d4c04603e6572cd6f9b255faa03c4636d8efdb"},(0,n.kt)("inlineCode",{parentName:"a"},"05d4c04"))),(0,n.kt)("li",{parentName:"ul"},"change(mobile menu): integrate a-z topic with menu rendering logic ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/246d3d839b773e2f6e1fff7fed5f9aa7a4968daa"},(0,n.kt)("inlineCode",{parentName:"a"},"246d3d8")))),(0,n.kt)("h4",{id:"\ufe0f-others-11"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"bump release to alpha 14 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/92f01975a809553ed122824c8407c74da9132c23"},(0,n.kt)("inlineCode",{parentName:"a"},"92f0197"))),(0,n.kt)("li",{parentName:"ul"},"link fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e1c12a132a1a99d773af359ebce071fb37c7e661"},(0,n.kt)("inlineCode",{parentName:"a"},"e1c12a1")))),(0,n.kt)("h3",{id:"100-alpha131---2023-01-30"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.13...1.0.0-alpha.13.1"},"1.0.0-alpha.13.1")," - 2023-01-30"),(0,n.kt)("h4",{id:"-enhancements-13"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(mobile menu): hardcode a-z topics to '/en/topics-in-depth' #286 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6436224e1922fb5d4b4053c874cebe5c57b2a6b9"},(0,n.kt)("inlineCode",{parentName:"a"},"6436224"))),(0,n.kt)("li",{parentName:"ul"},"change(mobile menu): hardcode a-z topics to '/en/topics-in-depth' ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5235b52047a80a8b626aa5ef3ef304c4d9a82003"},(0,n.kt)("inlineCode",{parentName:"a"},"5235b52")))),(0,n.kt)("h4",{id:"\ufe0f-others-12"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change release to 13.1 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70aa5648e7d9e14796445323b6ebaf7733cc7fd8"},(0,n.kt)("inlineCode",{parentName:"a"},"70aa564")))),(0,n.kt)("h3",{id:"100-alpha13---2023-01-27"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.12...1.0.0-alpha.13"},"1.0.0-alpha.13")," - 2023-01-27"),(0,n.kt)("h4",{id:"-new-features-8"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(utilities): added has--bg--top center and bottom utility classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/051e6d7c33aca7947802ddaa9fe68ac41ed7fe11"},(0,n.kt)("inlineCode",{parentName:"a"},"051e6d7")))),(0,n.kt)("h4",{id:"-bug-fixes-10"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(header): update green color used in page header #284 from eea/fix-banner-background ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/29d54db06487d18a367202725e525ac26e5b7c58"},(0,n.kt)("inlineCode",{parentName:"a"},"29d54db")))),(0,n.kt)("h4",{id:"-enhancements-14"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(site): added fixes from customVolto.css to design package ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51ba9b5df0186bdf075d803dea6032bac52e540f"},(0,n.kt)("inlineCode",{parentName:"a"},"51ba9b5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner): update banner background green color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fd4a552d9ff7a2973ebd6d18b6fbfd9bba5d98c6"},(0,n.kt)("inlineCode",{parentName:"a"},"fd4a552"))),(0,n.kt)("li",{parentName:"ul"},"change(mobile menu): changed link for a-z topics to point to in depth ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/721bf237d23d2a8e47fc2132912646c4ce182c9d"},(0,n.kt)("inlineCode",{parentName:"a"},"721bf23")))),(0,n.kt)("h4",{id:"\ufe0f-others-13"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"1.0.0-alpha.13 release #285 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c96694005e2d4160876f6a900db13940d42266d5"},(0,n.kt)("inlineCode",{parentName:"a"},"c966940"))),(0,n.kt)("li",{parentName:"ul"},"bump next version to alpha 13 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/897e9069062282f1b5cd8d86a02b8e54c40a4690"},(0,n.kt)("inlineCode",{parentName:"a"},"897e906"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5780dc7abeb24da5e77b043a34593ff7a44f350d"},(0,n.kt)("inlineCode",{parentName:"a"},"5780dc7")))),(0,n.kt)("h3",{id:"100-alpha12---2023-01-24"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.11...1.0.0-alpha.12"},"1.0.0-alpha.12")," - 2023-01-24"),(0,n.kt)("h4",{id:"-new-features-9"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(card, colors): visited color change and title on image option for cards #283 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e638ee6b77885fd5989179aa9e6532e46e475247"},(0,n.kt)("inlineCode",{parentName:"a"},"e638ee6")))),(0,n.kt)("h4",{id:"-bug-fixes-11"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(mobile menu): sub links when an accordion section is active ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bb3be81416340ad0e3e992cd4e75642fc50f8ad3"},(0,n.kt)("inlineCode",{parentName:"a"},"bb3be81")))),(0,n.kt)("h4",{id:"-enhancements-15"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(Card): create card template for stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2fa77f3f93935dd01cd5e3d77437fe8dc03721da"},(0,n.kt)("inlineCode",{parentName:"a"},"2fa77f3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Card): add image with title css ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e6e63e2362a27b0bbf4b8dd968f11a0dc87da2a"},(0,n.kt)("inlineCode",{parentName:"a"},"6e6e63e"))),(0,n.kt)("li",{parentName:"ul"},"change(card): implement title on image within image section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff6cc600978355e04dde704d014d2cbe27df1298"},(0,n.kt)("inlineCode",{parentName:"a"},"ff6cc60"))),(0,n.kt)("li",{parentName:"ul"},"change(card): added image card section, tweaked mobile heading size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0f879e15d22ae066f020d8188ef3e355c27d016c"},(0,n.kt)("inlineCode",{parentName:"a"},"0f879e1"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): moved image gradient overlay to a mixin.less file ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8b4928a87bfe5fae6f64c93d7c8f1f7a3045816c"},(0,n.kt)("inlineCode",{parentName:"a"},"8b4928a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): Update titles value and size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c35ad5c76caa00556f8a501d2e7d516464790dc4"},(0,n.kt)("inlineCode",{parentName:"a"},"c35ad5c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): applied image naming convention ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee7bc290084e198f9f94e40fbf44c6d9cb19d1ba"},(0,n.kt)("inlineCode",{parentName:"a"},"ee7bc29"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): added image for all storybook card examples ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3f194130bb6fb7b9ab04a7e1305f26fa135c23d2"},(0,n.kt)("inlineCode",{parentName:"a"},"3f19413"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): restored label value of metadata field when type isn't date ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/571a4f27fe73d0465b6482f70dd70b2dc47dffe8"},(0,n.kt)("inlineCode",{parentName:"a"},"571a4f2"))),(0,n.kt)("li",{parentName:"ul"},"change(card): title padding value for a more balance look ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/74b65563d973eb9c6afc534935e253f2705fe9ee"},(0,n.kt)("inlineCode",{parentName:"a"},"74b6556"))),(0,n.kt)("li",{parentName:"ul"},"change(card): removed uppercase transform from title on image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2948ae16f748911929910ac53d1e0acf96952317"},(0,n.kt)("inlineCode",{parentName:"a"},"2948ae1"))),(0,n.kt)("li",{parentName:"ul"},"change(colors, Docusaurus): Visited link colour change and thematic logo replacement #278 from eea/refactor-visited-link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f82d9781cc3b34443f181565c2ec1892d534f8e2"},(0,n.kt)("inlineCode",{parentName:"a"},"f82d978"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): visited link variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b209b2f7703641926c6d4b1f7162eef39b2a1ad8"},(0,n.kt)("inlineCode",{parentName:"a"},"b209b2f")))),(0,n.kt)("h4",{id:"-documentation-changes-4"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(colors): visited link update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ece77fec130de1d9d8014d40e7da975bf57061ee"},(0,n.kt)("inlineCode",{parentName:"a"},"ece77fe")))),(0,n.kt)("h4",{id:"\ufe0f-others-14"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix typos in footer gradient variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/40066405d97af838e986370101371a8162029e02"},(0,n.kt)("inlineCode",{parentName:"a"},"4006640"))),(0,n.kt)("li",{parentName:"ul"},"change version to alpha 12 instead of 1 final ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32250253f5d7fe9f01126136ad86b8a4f2f5c700"},(0,n.kt)("inlineCode",{parentName:"a"},"3225025"))),(0,n.kt)("li",{parentName:"ul"},"feature(card): new card variation with title on top of image #267 from eea/title-on-image-card ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2c0ca95700bb162bc1273c83f2fc4f591de8dcf0"},(0,n.kt)("inlineCode",{parentName:"a"},"2c0ca95"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/477d997513ef5152ab98e080ad07f927b5869705"},(0,n.kt)("inlineCode",{parentName:"a"},"477d997")))),(0,n.kt)("h3",{id:"100-alpha11---2023-01-17"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.10...1.0.0-alpha.11"},"1.0.0-alpha.11")," - 2023-01-17"),(0,n.kt)("h4",{id:"-new-features-10"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(docusaurus): Header and footer elements section #277 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0df271c4c79bd8a24750cfe44d69f32cb04a1b63"},(0,n.kt)("inlineCode",{parentName:"a"},"0df271c")))),(0,n.kt)("h4",{id:"-bug-fixes-12"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(banner): storybook date input and simplified gradient opacity ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7674d767bb770342828d6bea6953ce45b823943f"},(0,n.kt)("inlineCode",{parentName:"a"},"7674d76"))),(0,n.kt)("li",{parentName:"ul"},"fix(banner): re-added title class on banner title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d157994934c3da9af4e3dd37844f910bddf8377"},(0,n.kt)("inlineCode",{parentName:"a"},"6d15799")))),(0,n.kt)("h4",{id:"-enhancements-16"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(banner): sync storybook and Volto component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c9087cc8edc3fb27e0b96b509354861ec306f22a"},(0,n.kt)("inlineCode",{parentName:"a"},"c9087cc"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): removed margin from title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/17e592c4f3fd16a78069af50574e2ac608166a0f"},(0,n.kt)("inlineCode",{parentName:"a"},"17e592c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): sync storybook and Volto component #275 from eea/sync-page-banner-theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4331fb4a6d5744e7d7d6a001bca91265a22587fd"},(0,n.kt)("inlineCode",{parentName:"a"},"4331fb4")))),(0,n.kt)("h4",{id:"-documentation-changes-5"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(footer): updates on header elements ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b41c550475dc5a2eefcad5d75439601d079613e2"},(0,n.kt)("inlineCode",{parentName:"a"},"b41c550"))),(0,n.kt)("li",{parentName:"ul"},"docs(footer): add elements anatomy ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d9f0872f93a6f7572f798b2c001d3af00eb282e3"},(0,n.kt)("inlineCode",{parentName:"a"},"d9f0872")))),(0,n.kt)("h4",{id:"\ufe0f-others-15"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"add(banner): banner title css ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d0032474d2b57eb63a4b50a882ced2ee743a48e6"},(0,n.kt)("inlineCode",{parentName:"a"},"d003247"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-alpha.11 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/07e8f858b0bdeaa6a348c0bfc2b785f26017e1ea"},(0,n.kt)("inlineCode",{parentName:"a"},"07e8f85"))),(0,n.kt)("li",{parentName:"ul"},"renamed image elements as requested in review ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8541fb6739d3c935ed8d44a220114546b2aef682"},(0,n.kt)("inlineCode",{parentName:"a"},"8541fb6"))),(0,n.kt)("li",{parentName:"ul"},"remove(banner-gradiant): image gradiant in favour of text ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1b58520490be5e17ea4ce6fc98329d467dad3960"},(0,n.kt)("inlineCode",{parentName:"a"},"1b58520"))),(0,n.kt)("li",{parentName:"ul"},"update(gradient): use 8deg angle ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6fd597d8d7a83fdf8a27939e4c69dfc3975b6a81"},(0,n.kt)("inlineCode",{parentName:"a"},"6fd597d"))),(0,n.kt)("li",{parentName:"ul"},"update(gradiant): make it 0deg ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1bb2696375eef233b509e27d9d464b8343421430"},(0,n.kt)("inlineCode",{parentName:"a"},"1bb2696"))),(0,n.kt)("li",{parentName:"ul"},"remove(comment) referencing old verison of title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4226d42e34b119e057cf4e9878b6a99172cb976a"},(0,n.kt)("inlineCode",{parentName:"a"},"4226d42")))),(0,n.kt)("h3",{id:"100-alpha10---2023-01-13"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.9...1.0.0-alpha.10"},"1.0.0-alpha.10")," - 2023-01-13"),(0,n.kt)("h4",{id:"-bug-fixes-13"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(subsite): Fix logo size on subsite section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/65fff54503a9ace573dc7198f6bedb372e65d211"},(0,n.kt)("inlineCode",{parentName:"a"},"65fff54"))),(0,n.kt)("li",{parentName:"ul"},"fix(subsite): Fix logo size on subsite section #279 from eea/subsite-fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f6cf94811dbebc2081c0ca812570a72dd977b06"},(0,n.kt)("inlineCode",{parentName:"a"},"8f6cf94"))),(0,n.kt)("li",{parentName:"ul"},"fix(mega-menu): show sub grid only if there are children ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ddfbd82aab2be723ae230d703f72a8cd489f17d8"},(0,n.kt)("inlineCode",{parentName:"a"},"ddfbd82")))),(0,n.kt)("h4",{id:"\ufe0f-others-16"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Add variable definitions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/293fe65e2f24e6290e1286229169a77f9be4750e"},(0,n.kt)("inlineCode",{parentName:"a"},"293fe65"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-alpha.10 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7014d080ce114bd0bc039abeecbd7229333b0971"},(0,n.kt)("inlineCode",{parentName:"a"},"7014d08"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using advisory-board-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef58a6f5ad8deea26b1395a86778fe1159b7617b"},(0,n.kt)("inlineCode",{parentName:"a"},"ef58a6f"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/31d461662b9184a7bbe190e86f3c47fab39229fe"},(0,n.kt)("inlineCode",{parentName:"a"},"31d4616")))),(0,n.kt)("h3",{id:"100-alpha9---2022-12-28"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.8...1.0.0-alpha.9"},"1.0.0-alpha.9")," - 2022-12-28"),(0,n.kt)("h4",{id:"-enhancements-17"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(contextnav): Default title is text, custom title is link #273 from eea/context-nav-link-title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef7bdb7c40cd12c3d7e059074aa5797b8cb3378c"},(0,n.kt)("inlineCode",{parentName:"a"},"ef7bdb7")))),(0,n.kt)("h4",{id:"\ufe0f-others-17"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Show document and folder content-type in Navigation listing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8471db3b3d555e8602f1076d0f96a2ba38a12247"},(0,n.kt)("inlineCode",{parentName:"a"},"8471db3"))),(0,n.kt)("li",{parentName:"ul"},"Default title is text, custom title is link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1ae95b05b67423121566448c6b0cededca4b2b1d"},(0,n.kt)("inlineCode",{parentName:"a"},"1ae95b0"))),(0,n.kt)("li",{parentName:"ul"},"Context nav title link to # ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a27a6b78bcda0eb6037f73f1d36b06e00e3ffc52"},(0,n.kt)("inlineCode",{parentName:"a"},"a27a6b7")))),(0,n.kt)("h3",{id:"100-alpha8---2022-12-23"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.7...1.0.0-alpha.8"},"1.0.0-alpha.8")," - 2022-12-23"),(0,n.kt)("h4",{id:"-new-features-11"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(copyright): Align copyright options with Volto integration - refs #158210 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6bac7f6a9ad969af4be1c8c08a18a1144d5bad63"},(0,n.kt)("inlineCode",{parentName:"a"},"6bac7f6")))),(0,n.kt)("h4",{id:"-enhancements-18"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(logo): import theme site logos to the story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2f29136ca457f2419ca25a5292a036b2cd0fc402"},(0,n.kt)("inlineCode",{parentName:"a"},"2f29136"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logo): update logo and mega search gradient ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e11f44d59334fc02e3833a133b20e7b2240a2022"},(0,n.kt)("inlineCode",{parentName:"a"},"e11f44d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logos): convert logo names to lowercase ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/07b822864490b4cc63bef94f3306466ba5933e16"},(0,n.kt)("inlineCode",{parentName:"a"},"07b8228"))),(0,n.kt)("li",{parentName:"ul"},"change(item): use default logic of setting align class on content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6b5b47c10ce5a6d3710bedd492aa3d362d62d225"},(0,n.kt)("inlineCode",{parentName:"a"},"6b5b47c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logo): update logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/170efe5bfc7fd4988f4a4d4aac18ace32c360cd6"},(0,n.kt)("inlineCode",{parentName:"a"},"170efe5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logos): convert storybook logo names to lowercase ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4b24ec8796f8fffd87158a55f4ac19624ebe04c"},(0,n.kt)("inlineCode",{parentName:"a"},"c4b24ec"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logo): add eea roboto font logo variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/de1224a97568c0b48b509c65170a6080d8a058d4"},(0,n.kt)("inlineCode",{parentName:"a"},"de1224a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logo): add container and segment to logo story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/61eff16fcd080194fe1187656d67ef73a7dd4d6c"},(0,n.kt)("inlineCode",{parentName:"a"},"61eff16"))),(0,n.kt)("li",{parentName:"ul"},"change(item): removed requirement for aligned classes to be on content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/30c0d5d2de7ac05172cfb726b60a8bd763de7b31"},(0,n.kt)("inlineCode",{parentName:"a"},"30c0d5d"))),(0,n.kt)("li",{parentName:"ul"},"change(logos): cleanup eea logo reference to only eea-logo and eea-logo-white.svg ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2796e054a21a9025036c8b2882afe23a6984cd37"},(0,n.kt)("inlineCode",{parentName:"a"},"2796e05")))),(0,n.kt)("h4",{id:"-internal-changes-7"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(npmignore): Reduce npmjs package size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/164c8a5ad0f7241eb8e30c53eccfdff9cec1fb93"},(0,n.kt)("inlineCode",{parentName:"a"},"164c8a5"))),(0,n.kt)("li",{parentName:"ul"},"chore(npmignore): Reduce npmjs package size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ade9d5ba3411efc47cdd3b461fd60b2b7389f9be"},(0,n.kt)("inlineCode",{parentName:"a"},"ade9d5b"))),(0,n.kt)("li",{parentName:"ul"},"chore(docs): renamed logo mdx to md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/52e9d46bb2decabdc935eeee84dacc3e063e3616"},(0,n.kt)("inlineCode",{parentName:"a"},"52e9d46")))),(0,n.kt)("h4",{id:"-documentation-changes-6"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(logos): svgs without classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/28a58336ac57deb3eec7287b6fbf5cd58ada8a7e"},(0,n.kt)("inlineCode",{parentName:"a"},"28a5833"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): add dark mode logos ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ccc1609643cff5f851942ab95198d44252ddb22e"},(0,n.kt)("inlineCode",{parentName:"a"},"ccc1609"))),(0,n.kt)("li",{parentName:"ul"},"docs(logo): update eea logos and add logo wrapper ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91cdd6636dfb102e4712177ad5fa7e952eb6ea45"},(0,n.kt)("inlineCode",{parentName:"a"},"91cdd66"))),(0,n.kt)("li",{parentName:"ul"},"docs(logo): update logos on docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/760e1012892ab28b25e8d9b0de50cfa0ba07addf"},(0,n.kt)("inlineCode",{parentName:"a"},"760e101"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): updated svgs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dc224e1dbcf46a29b0639afde694d44221affe27"},(0,n.kt)("inlineCode",{parentName:"a"},"dc224e1"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): add thematic logos ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5a21a3076e506e6bd7f82fa97697f81825e87255"},(0,n.kt)("inlineCode",{parentName:"a"},"5a21a30"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): add zipped svgs for download ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5855bf83b471a9849ee71370d7eee4f6a1d12a44"},(0,n.kt)("inlineCode",{parentName:"a"},"5855bf8"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): wisef logo update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f90b59d03c1c4eaa760dd981e082f237c09e96f"},(0,n.kt)("inlineCode",{parentName:"a"},"8f90b59"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): move to static, add download ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8c1fd5f9a64bd8fb976687fe5ed96bc515b95393"},(0,n.kt)("inlineCode",{parentName:"a"},"8c1fd5f"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): improve eea logo visibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/82188abb99aa080d7bea15975497e03c653d311c"},(0,n.kt)("inlineCode",{parentName:"a"},"82188ab"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): change eea logo to svg ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f57b846ca9d635f5af4d1adeee280a5adcaf7b5f"},(0,n.kt)("inlineCode",{parentName:"a"},"f57b846")))),(0,n.kt)("h4",{id:"\ufe0f-others-18"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"logo update or docusaurus thematic logo listing #274 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dde90beb68ac129e476ece22e7ced4640786f094"},(0,n.kt)("inlineCode",{parentName:"a"},"dde90be"))),(0,n.kt)("li",{parentName:"ul"},"(feat): Add ability to disable the language select from website top menu - refs #158616 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/411c8e4afaf0b2b9edfdeeecdca22aa4cc41f329"},(0,n.kt)("inlineCode",{parentName:"a"},"411c8e4"))),(0,n.kt)("li",{parentName:"ul"},"Proof reading page header section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/230239e1b22734fb8606656985bc5e513731e244"},(0,n.kt)("inlineCode",{parentName:"a"},"230239e"))),(0,n.kt)("li",{parentName:"ul"},"bump package version ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4628bed134abc76e38a243d4e98143e19cef989"},(0,n.kt)("inlineCode",{parentName:"a"},"b4628be"))),(0,n.kt)("li",{parentName:"ul"},"feature(docusaurus, storybook): logos selection for sites plus inverted options #253 from eea/doc-logo-page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dbfc90d035dc40e9d4054347f00fde4de486d63d"},(0,n.kt)("inlineCode",{parentName:"a"},"dbfc90d"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using advisory-board-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4769e987d525f5dcafac8e6cf8a89fd8111667d"},(0,n.kt)("inlineCode",{parentName:"a"},"c4769e9"))),(0,n.kt)("li",{parentName:"ul"},"test(Jenkins): Run tests and cypress with latest canary @plone/volto ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/92feea09796c9ef0530f65fa1d34139905133215"},(0,n.kt)("inlineCode",{parentName:"a"},"92feea0")))),(0,n.kt)("h3",{id:"100-alpha7---2022-12-16"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.6...1.0.0-alpha.7"},"1.0.0-alpha.7")," - 2022-12-16"),(0,n.kt)("h4",{id:"-new-features-12"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(item): normalized size for image or icon items #258 from eea/refactor-items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/945170f1503be68aa3fc1bd950a97eeebfd81037"},(0,n.kt)("inlineCode",{parentName:"a"},"945170f")))),(0,n.kt)("h4",{id:"-bug-fixes-14"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(card): rounded after removal of has--rounded--true style class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4727afdecf3d25e3e5bc98d472b976d60154183"},(0,n.kt)("inlineCode",{parentName:"a"},"d4727af"))),(0,n.kt)("li",{parentName:"ul"},"fix(item): removed margin set for description which pushed the text from icon ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d9d40310fcfb1bd214bd901b79dcbac41e9a8518"},(0,n.kt)("inlineCode",{parentName:"a"},"d9d4031"))),(0,n.kt)("li",{parentName:"ul"},"fix(project): Proper paths if volto-eea-design-system package is not installed, but in development #270 from eea/correct_paths ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0f8ee8d770f1b26d4315be8f615d58a61acbafc8"},(0,n.kt)("inlineCode",{parentName:"a"},"0f8ee8d")))),(0,n.kt)("h4",{id:"-enhancements-19"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(item): update icon variations and paddings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6a407b3e7f743eb7b73247bcc5d489685d567bc6"},(0,n.kt)("inlineCode",{parentName:"a"},"6a407b3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): update spacing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2fd91c4aa1a76dd2f7099d3f24f94067e95e06a1"},(0,n.kt)("inlineCode",{parentName:"a"},"2fd91c4"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): initial values for new sizes & add description class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3546296f0cacb96411c8c67b98e9763e2b843b05"},(0,n.kt)("inlineCode",{parentName:"a"},"3546296"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): add icon and more size options ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1120bb62d9ab908c5c97a4871a66e3c08c5c7ece"},(0,n.kt)("inlineCode",{parentName:"a"},"1120bb6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): update image and icon sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8025735121aaa0024a5783afbde0f6be3715618"},(0,n.kt)("inlineCode",{parentName:"a"},"b802573"))),(0,n.kt)("li",{parentName:"ul"},"change(item): set same height as width on item images ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/69cbd23ca53dd68ae9f7c00a69ed2d8820746305"},(0,n.kt)("inlineCode",{parentName:"a"},"69cbd23"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): update item part 2 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9812ae2e41ac86cfd4c56e13af8af570b752966f"},(0,n.kt)("inlineCode",{parentName:"a"},"9812ae2"))),(0,n.kt)("li",{parentName:"ul"},"change(item): rename large to big class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24ff1275b9a0556b85ab86757bc0c84f50357e7d"},(0,n.kt)("inlineCode",{parentName:"a"},"24ff127"))),(0,n.kt)("li",{parentName:"ul"},"change(item): added tiny size that outputs 24px icon sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ea96363a957f9033cb5bfe2d7fd311e92377493"},(0,n.kt)("inlineCode",{parentName:"a"},"2ea9636"))),(0,n.kt)("li",{parentName:"ul"},"change(image): added preview image size default to 400px ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a0aa867e932d1b3c0bf449553726d6feb645853e"},(0,n.kt)("inlineCode",{parentName:"a"},"a0aa867"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): update operator for condition controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/149ccb2f1e498c27e5550214cdee25eb808ab27e"},(0,n.kt)("inlineCode",{parentName:"a"},"149ccb2")))),(0,n.kt)("h4",{id:"\ufe0f-others-19"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Proper paths if the package is not installed, but in development ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7a2655f7cf9d3c687f172eefcf2b4cff4b12f832"},(0,n.kt)("inlineCode",{parentName:"a"},"7a2655f"))),(0,n.kt)("li",{parentName:"ul"},"Update .project.eslintrc.js ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a2fd3f23473325976c2b146e066eeb538d140dce"},(0,n.kt)("inlineCode",{parentName:"a"},"a2fd3f2"))),(0,n.kt)("li",{parentName:"ul"},"added back descriptionDistance variable until package release ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3af811a8d86a132e16de118697ba5a4302a8a4da"},(0,n.kt)("inlineCode",{parentName:"a"},"3af811a"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-alpha.7 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e66bcc296b389bc55073e7f99681534977dce3a"},(0,n.kt)("inlineCode",{parentName:"a"},"7e66bcc"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using cca-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce47e9b163bcb4eda988e3a87718b54ffbd3f99f"},(0,n.kt)("inlineCode",{parentName:"a"},"ce47e9b"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb531c933c907bdbb88c9de0f1df2eb7ce899a4c"},(0,n.kt)("inlineCode",{parentName:"a"},"cb531c9")))),(0,n.kt)("h3",{id:"100-alpha6---2022-12-07"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.5...1.0.0-alpha.6"},"1.0.0-alpha.6")," - 2022-12-07"),(0,n.kt)("h4",{id:"-new-features-13"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(copyright): create copyright component and import it in banner ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8fcde9df2915585e2336024436cef76642820d75"},(0,n.kt)("inlineCode",{parentName:"a"},"8fcde9d"))),(0,n.kt)("li",{parentName:"ul"},"feat(Header): add hideSearch prop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/13ddfe59a6bd7fe2050b70ac4524a6f6c5c169ea"},(0,n.kt)("inlineCode",{parentName:"a"},"13ddfe5"))),(0,n.kt)("li",{parentName:"ul"},"feat(Docusaurus): Image copyright information #257 from eea/image-copyright-info ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/21195153240da052acb7171f7904449ed7854cb3"},(0,n.kt)("inlineCode",{parentName:"a"},"2119515")))),(0,n.kt)("h4",{id:"-bug-fixes-15"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(tags): content gap when using tags-content wrapper ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4eb9b89d4ea09f936b7fcdc22a84105fd8639af"},(0,n.kt)("inlineCode",{parentName:"a"},"c4eb9b8")))),(0,n.kt)("h4",{id:"-enhancements-20"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(hero): add copyright component to hero ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0fa88fad3e7b48789dc6d0462b9f78dd359b8949"},(0,n.kt)("inlineCode",{parentName:"a"},"0fa88fa"))),(0,n.kt)("li",{parentName:"ul"},"change(copyright): implementation to add classes on content sections ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e10bde674f2b1f722ec6c70734e4a72c018f4afe"},(0,n.kt)("inlineCode",{parentName:"a"},"e10bde6"))),(0,n.kt)("li",{parentName:"ul"},"change(copyright): removed color variant ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/747b8a27155569247d4975837587e3320327fce9"},(0,n.kt)("inlineCode",{parentName:"a"},"747b8a2"))),(0,n.kt)("li",{parentName:"ul"},"change(copyright): removed copyrightVariant from Banner and Hero stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac62e079d4eafb818f9cae25880a04d9e069d107"},(0,n.kt)("inlineCode",{parentName:"a"},"ac62e07"))),(0,n.kt)("li",{parentName:"ul"},"change(tagList): modified implementation to align to volto-tags-block ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7a57a3d4bf7ede4b5ab5f3ef045d664aaaf67f2c"},(0,n.kt)("inlineCode",{parentName:"a"},"7a57a3d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(copyright): remove data section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/52cb09dc363bb0a2e363ec86dcefb4c57e07a14d"},(0,n.kt)("inlineCode",{parentName:"a"},"52cb09d"))),(0,n.kt)("li",{parentName:"ul"},"change(copyright): line height to match page header implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a56254e7588cfc6aca999f550084d79dca6e9a6c"},(0,n.kt)("inlineCode",{parentName:"a"},"a56254e"))),(0,n.kt)("li",{parentName:"ul"},"change(copyright): now uses text color css variable with fallback to white ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee7268ba359f079dfce45fd0fe91f75ae5c37e94"},(0,n.kt)("inlineCode",{parentName:"a"},"ee7268b")))),(0,n.kt)("h4",{id:"-documentation-changes-7"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(copyright): copyright documentation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a90ed766e60b5eb5b027beb36d2b1967d2c41fa3"},(0,n.kt)("inlineCode",{parentName:"a"},"a90ed76")))),(0,n.kt)("h4",{id:"\ufe0f-others-20"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Update usage_markdown.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f76d4a242f795451d64ef2d192d0006a0ed5eac1"},(0,n.kt)("inlineCode",{parentName:"a"},"f76d4a2"))),(0,n.kt)("li",{parentName:"ul"},"grammar fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb2a5a5fd9dfc01eccc179721b06988742f5b2e2"},(0,n.kt)("inlineCode",{parentName:"a"},"cb2a5a5"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-alpha.6 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6ca32f03c1860781d3c1c4ff9558713ad8acac95"},(0,n.kt)("inlineCode",{parentName:"a"},"6ca32f0"))),(0,n.kt)("li",{parentName:"ul"},"feature(copyright): image information #250 from eea/feature-copyright ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a8618c7f0230a19b6c973aa2c9646463de9eeffb"},(0,n.kt)("inlineCode",{parentName:"a"},"a8618c7"))),(0,n.kt)("li",{parentName:"ul"},"lint fix by introducing local variable tagsGap ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7b6c0ae2ebfed06221700faf9a0d0c2bdeb60d99"},(0,n.kt)("inlineCode",{parentName:"a"},"7b6c0ae"))),(0,n.kt)("li",{parentName:"ul"},"Update 3-images.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1b0ef033f9c8a36aaa739f268263f24a6d0fb473"},(0,n.kt)("inlineCode",{parentName:"a"},"1b0ef03")))),(0,n.kt)("h3",{id:"100-alpha5---2022-11-29"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.4...1.0.0-alpha.5"},"1.0.0-alpha.5")," - 2022-11-29"),(0,n.kt)("h4",{id:"-new-features-14"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(Iconography): import and showcase remix icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/777112f7e77ce8c74c3fd4384bff6ec9694aba04"},(0,n.kt)("inlineCode",{parentName:"a"},"777112f")))),(0,n.kt)("h4",{id:"-bug-fixes-16"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(docusaurus): right bar overflow fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/197c763624f70556c62379bc0751763725d0fed3"},(0,n.kt)("inlineCode",{parentName:"a"},"197c763"))),(0,n.kt)("li",{parentName:"ul"},"fix(lists): bullet position by using padding instead of margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0ecae2e7fe61b98d8795f876a525fbbc873bf799"},(0,n.kt)("inlineCode",{parentName:"a"},"0ecae2e"))),(0,n.kt)("li",{parentName:"ul"},"fix(label): color for yellow variant as white isn't accessible on yellow color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91d8880a829d2728c49a1953f6d2d8c2c812990c"},(0,n.kt)("inlineCode",{parentName:"a"},"91d8880"))),(0,n.kt)("li",{parentName:"ul"},"fix(contentBox): avoid text decoration for header-link added on cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ccb592db6f465cec59124b94fb6918b513bb761"},(0,n.kt)("inlineCode",{parentName:"a"},"3ccb592"))),(0,n.kt)("li",{parentName:"ul"},"fix(label): margin value for ribbon image left and right margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f8e1129734709d6034539a6522105af9d43fef20"},(0,n.kt)("inlineCode",{parentName:"a"},"f8e1129")))),(0,n.kt)("h4",{id:"-enhancements-21"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): eea color palette in separate file ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6c855df9c2238f8d21860ade4578aa969b68448e"},(0,n.kt)("inlineCode",{parentName:"a"},"6c855df"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): classes for color boxes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/80219d52bc63842d8e6382dbbe7d43cdc8a29b9c"},(0,n.kt)("inlineCode",{parentName:"a"},"80219d5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): move supplementary, state and link colors to partials ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2776be32615d7a6bdd8561a523fb9cfb1a85e38b"},(0,n.kt)("inlineCode",{parentName:"a"},"2776be3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): fix side menu / moved more content in palette partial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f5b70775471369ca8f3193784b9bc66caa8fb76f"},(0,n.kt)("inlineCode",{parentName:"a"},"f5b7077"))),(0,n.kt)("li",{parentName:"ul"},"change(tag): set gap on tags element for margin between tag elements ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/726bc6da821a366a5afa03659e614cc73ed02c0b"},(0,n.kt)("inlineCode",{parentName:"a"},"726bc6d")))),(0,n.kt)("h4",{id:"-internal-changes-8"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(colours): fix wrong class name ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51ad0a8232f7f35cae05f5861d7822db852b3f8d"},(0,n.kt)("inlineCode",{parentName:"a"},"51ad0a8")))),(0,n.kt)("h4",{id:"-documentation-changes-8"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): Iconography updates, thematic platforms ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2a0e596bd002290e0759d8c5e568da4d318f7d59"},(0,n.kt)("inlineCode",{parentName:"a"},"2a0e596"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): thematic pages integration ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea7a4220a93d3fd2f437b51462f7f19d99f52595"},(0,n.kt)("inlineCode",{parentName:"a"},"ea7a422"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): color updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cc13b5499a9ae13bb45925a057f8ff4d6a2e4643"},(0,n.kt)("inlineCode",{parentName:"a"},"cc13b54"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): fix swatches accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/306cb74d3e06390a9c15da9b8b29c9d3c8f0f6c5"},(0,n.kt)("inlineCode",{parentName:"a"},"306cb74"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): typography and colors fixes according to comments on PR ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ae20a7258cc88465fa0937895c2999952736f456"},(0,n.kt)("inlineCode",{parentName:"a"},"ae20a72"))),(0,n.kt)("li",{parentName:"ul"},"docs(colours): adjust logos heights ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/854d4fb761be7307e83e5dd2eb0fe5a0117727c5"},(0,n.kt)("inlineCode",{parentName:"a"},"854d4fb"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): merge designer and dev units ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/65c240eddbf20b3fc870d301b96837f49ad9caca"},(0,n.kt)("inlineCode",{parentName:"a"},"65c240e"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): readded extra font sizes, fixed fluid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4a5d892538a9713d14ac718b1bf2c771be09810"},(0,n.kt)("inlineCode",{parentName:"a"},"a4a5d89"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): changed em to percentages ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4176007ff4b421bc988b618488e0ba6b550f9fe"},(0,n.kt)("inlineCode",{parentName:"a"},"d417600"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): minors updates and instructions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/84ac8828e430b4af2b461534b4e2f81189080145"},(0,n.kt)("inlineCode",{parentName:"a"},"84ac882"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): blue-grey-6 adjustment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e7ab2d15d3a617bc5b3713897f3e3521d9e2720a"},(0,n.kt)("inlineCode",{parentName:"a"},"e7ab2d1"))),(0,n.kt)("li",{parentName:"ul"},"docs(colours): added active colour ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/574f7a95ea8a9510d03a104ad72fafafcae5d738"},(0,n.kt)("inlineCode",{parentName:"a"},"574f7a9"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): switch FISE logo to png ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/335471fd95bbd78cd7bd80b960272baa0a32e1c5"},(0,n.kt)("inlineCode",{parentName:"a"},"335471f"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): updated visited ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0248fd164cbf85168945797244977c305c67608d"},(0,n.kt)("inlineCode",{parentName:"a"},"0248fd1"))),(0,n.kt)("li",{parentName:"ul"},"docs(FISE): replaced logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f7d833127f769d79f099618b98789c6929b4ba08"},(0,n.kt)("inlineCode",{parentName:"a"},"f7d8331")))),(0,n.kt)("h4",{id:"\ufe0f-others-21"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"perf(docusaurus): added remixicon and roboto locally ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b67b1a72bc9cdc7c62a25967e81b430f8b62d558"},(0,n.kt)("inlineCode",{parentName:"a"},"b67b1a7"))),(0,n.kt)("li",{parentName:"ul"},"feature(Docusaurus): Updates on color palette information including thematic websites #231 from eea/refactor-docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ec7843dea07f626dc1c71ae1baa8bb5b0caa52f3"},(0,n.kt)("inlineCode",{parentName:"a"},"ec7843d"))),(0,n.kt)("li",{parentName:"ul"},"Upgrade Jenkinsfile storybook to yarn 3 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d20de8d6e21a14660b7b5125a80218a8a6f19e62"},(0,n.kt)("inlineCode",{parentName:"a"},"d20de8d"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/563fbc5fac0d4b0295690d0a3a4e04271753f18a"},(0,n.kt)("inlineCode",{parentName:"a"},"563fbc5")))),(0,n.kt)("h3",{id:"100-alpha4---2022-11-22"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.3...1.0.0-alpha.4"},"1.0.0-alpha.4")," - 2022-11-22"),(0,n.kt)("h4",{id:"-bug-fixes-17"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(cards-storybook): load slick carousel css for arrow and pagination styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1159b1beea0d7f7e026f1f1181fea91b7ac38ffa"},(0,n.kt)("inlineCode",{parentName:"a"},"1159b1b")))),(0,n.kt)("h4",{id:"-enhancements-22"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(cards): refactor cards theming implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4e454238d540ef306f4c1a4f8e9a94c7aa10189"},(0,n.kt)("inlineCode",{parentName:"a"},"d4e4542"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): allow rounded, inverted and theme parameter to be set by has classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4b4ad893fc5d39629b4e8d874327f31ea2e7d885"},(0,n.kt)("inlineCode",{parentName:"a"},"4b4ad89"))),(0,n.kt)("li",{parentName:"ul"},"change(card): expect has classes on the card directly ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6a9e38bcae0656685a99b47800d556813663d2ee"},(0,n.kt)("inlineCode",{parentName:"a"},"6a9e38b"))),(0,n.kt)("li",{parentName:"ul"},"change(utilities): added has text classes to the text alignment utilities ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e6974c634551fe0d19a9c9da269f5c6fbaefab7a"},(0,n.kt)("inlineCode",{parentName:"a"},"e6974c6"))),(0,n.kt)("li",{parentName:"ul"},"change(utilities): modified class name for text align using has naming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/579a0cbe0f704eb9305119fdd162f4f29c8086d5"},(0,n.kt)("inlineCode",{parentName:"a"},"579a0cb"))),(0,n.kt)("li",{parentName:"ul"},"change(theme): ensure that only direct children of container have a default top and bottom margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7f8b8dcc72827004d366e1c531311cf8734053fc"},(0,n.kt)("inlineCode",{parentName:"a"},"7f8b8dc"))),(0,n.kt)("li",{parentName:"ul"},"change(build): upgrade action to trigger workflow and wait to latest version ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c63ad3fdae7972bb2c722dea3d046861fa0ac086"},(0,n.kt)("inlineCode",{parentName:"a"},"c63ad3f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): theming implementation to allow has theming classes #265 from eea/card-refactoring ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24edc99d85c0c619fc763a8774a96f7208f529a5"},(0,n.kt)("inlineCode",{parentName:"a"},"24edc99"))),(0,n.kt)("li",{parentName:"ul"},"change(theme): add slick-carousel dependency ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2eec7d7233adf86b9c4f61670eb87d9754ff94c"},(0,n.kt)("inlineCode",{parentName:"a"},"f2eec7d")))),(0,n.kt)("h4",{id:"\ufe0f-others-22"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Update eea.github.io on all commits in develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3d0b8d745138bd2e0219560c8c895ce2c56dbf04"},(0,n.kt)("inlineCode",{parentName:"a"},"3d0b8d7"))),(0,n.kt)("li",{parentName:"ul"},"Exclude mockups from npm package ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/634af8e3ddabec36a18597d8d7638888269875fc"},(0,n.kt)("inlineCode",{parentName:"a"},"634af8e"))),(0,n.kt)("li",{parentName:"ul"},"fix rounded selector ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1fa15442f03d3f3d9ef59afa14075b061483cf3a"},(0,n.kt)("inlineCode",{parentName:"a"},"1fa1544"))),(0,n.kt)("li",{parentName:"ul"},"Trigger re-build ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3566dd2b4d2cd12496e05b792c85a78de550dd50"},(0,n.kt)("inlineCode",{parentName:"a"},"3566dd2"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea47f6f10097f23f635d98f0c5483bebf8378fc4"},(0,n.kt)("inlineCode",{parentName:"a"},"ea47f6f")))),(0,n.kt)("h3",{id:"100-alpha3---2022-11-16"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.2...1.0.0-alpha.3"},"1.0.0-alpha.3")," - 2022-11-16"),(0,n.kt)("h4",{id:"-new-features-15"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(Header): Add subsite section styling #263 from eea/subsite ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/00398b8a6c5d83241c30d0ba85d95c115edf2480"},(0,n.kt)("inlineCode",{parentName:"a"},"00398b8")))),(0,n.kt)("h4",{id:"-bug-fixes-18"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(search): position now changed by default to absolute from relative ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51b08fc217e25c1391a2bac0b42a8c3f7ae091c7"},(0,n.kt)("inlineCode",{parentName:"a"},"51b08fc"))),(0,n.kt)("li",{parentName:"ul"},"fix(megaMenu): remove paddings for buttons added by active class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ec33ebfe23a6064c88383ab465bd45edee2dba9b"},(0,n.kt)("inlineCode",{parentName:"a"},"ec33ebf")))),(0,n.kt)("h4",{id:"-enhancements-23"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(components): load overrides files for our defined semantic files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/adde7a9519f38fa779d8d038f3b6817281f0b4a2"},(0,n.kt)("inlineCode",{parentName:"a"},"adde7a9"))),(0,n.kt)("li",{parentName:"ul"},"change(container): fullwidth now take into account devices without hover ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5a35a65ce4928972027325bd01265db3f046f0e8"},(0,n.kt)("inlineCode",{parentName:"a"},"5a35a65"))),(0,n.kt)("li",{parentName:"ul"},"change(container): ensure only the top level elements behave like containers ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/98b85d1fb285919a8851454fa3007131b2a0ffc3"},(0,n.kt)("inlineCode",{parentName:"a"},"98b85d1"))),(0,n.kt)("li",{parentName:"ul"},"change(container): modified column-block grid to remove margin and padding when using full width class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/35c1cee7b3b35e7c361562ab7a430240f0117cc3"},(0,n.kt)("inlineCode",{parentName:"a"},"35c1cee"))),(0,n.kt)("li",{parentName:"ul"},"change(mega-menu): hide home link and accordion content from mobile menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1a691729b6d61c0daf46c5de035c1c55b0fda0d9"},(0,n.kt)("inlineCode",{parentName:"a"},"1a69172"))),(0,n.kt)("li",{parentName:"ul"},"change(container): width from min width 1280px to 1365px max width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/66e551e532da2cc5e9716e5179f943f172663be4"},(0,n.kt)("inlineCode",{parentName:"a"},"66e551e"))),(0,n.kt)("li",{parentName:"ul"},"change(container): removed app extras and view setting of layout sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6dc1ee602634df85140f6db75e41293b72eacf1"},(0,n.kt)("inlineCode",{parentName:"a"},"f6dc1ee"))),(0,n.kt)("li",{parentName:"ul"},"change(views): customized DefaultView to pass class into page-document area ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91123aad429f4bb086110b4997e43e9809a97581"},(0,n.kt)("inlineCode",{parentName:"a"},"91123aa"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): desktop - use buttons for menu section titles and readjust content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb9315f2b999193b7b64cec27c49fc8dda306899"},(0,n.kt)("inlineCode",{parentName:"a"},"cb9315f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): add nav_title and nav_description attributes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0d7a5686daab2ecec87d78728437d8f994606448"},(0,n.kt)("inlineCode",{parentName:"a"},"0d7a568"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): style sub-title and nav-description ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b2a48fd3588ffdc75f61f0b8d52284d13edf2d92"},(0,n.kt)("inlineCode",{parentName:"a"},"b2a48fd"))),(0,n.kt)("li",{parentName:"ul"},"refactor(sidemenu): add third level list and items & update active indication ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2d87da9fddca2b867f3d065a007c0b921587a61"},(0,n.kt)("inlineCode",{parentName:"a"},"e2d87da"))),(0,n.kt)("li",{parentName:"ul"},"change(columns): implement narrow, container and wide width classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9696b5457e50ba3186406a584da16f5248c14439"},(0,n.kt)("inlineCode",{parentName:"a"},"9696b54"))),(0,n.kt)("li",{parentName:"ul"},"change(container): story to add classes that modify the max width of the containers ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/37948f89ee797738bd8bbb0023bc5dca018d7331"},(0,n.kt)("inlineCode",{parentName:"a"},"37948f8"))),(0,n.kt)("li",{parentName:"ul"},"change(container): affect only left and right margin of containers ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/183265b7dd8d20359b6c3956ea05b62df6e70f75"},(0,n.kt)("inlineCode",{parentName:"a"},"183265b"))),(0,n.kt)("li",{parentName:"ul"},"change(containers): modified class names after layout checks ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1dc3689509001031f0afd30422f517de5316e47a"},(0,n.kt)("inlineCode",{parentName:"a"},"1dc3689"))),(0,n.kt)("li",{parentName:"ul"},"refactor(sidemenu): add is_in_path and is_current attributes for an active example ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a3fe7fd8da93db0a065d4408ce154c9d8c26b568"},(0,n.kt)("inlineCode",{parentName:"a"},"a3fe7fd"))),(0,n.kt)("li",{parentName:"ul"},"change(container): story to avoid adding containerwidth property to container div ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c13d83cdbc8741bf4075cdfcd884f39f3f71d73c"},(0,n.kt)("inlineCode",{parentName:"a"},"c13d83c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): mobile - use buttons for menu section titles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7b632fd29a8ac815d2e590509baa51f1279e659"},(0,n.kt)("inlineCode",{parentName:"a"},"a7b632f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): update padding variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5f25838ba9ec367a58c98c929921ebf09cd8ad8"},(0,n.kt)("inlineCode",{parentName:"a"},"c5f2583"))),(0,n.kt)("li",{parentName:"ul"},"change(views): moved narrow style bellow the default container width styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/72fa58dce9ea03a1e4f409a9f9aab21b01efbfc8"},(0,n.kt)("inlineCode",{parentName:"a"},"72fa58d"))),(0,n.kt)("li",{parentName:"ul"},"change(listing): removed container from default view page-document area ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/69f3d8f422e3cb95e89937929aaef48b5569bcdf"},(0,n.kt)("inlineCode",{parentName:"a"},"69f3d8f"))),(0,n.kt)("li",{parentName:"ul"},"change(views): rename classes names to width_view and added app extras layout component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/745b7720839754d1e248795cb1263f8c02f5f3c2"},(0,n.kt)("inlineCode",{parentName:"a"},"745b772"))),(0,n.kt)("li",{parentName:"ul"},"change(container): use important flag for left and right margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a49c83abe9a045d28118a680558de5416a0516a3"},(0,n.kt)("inlineCode",{parentName:"a"},"a49c83a"))),(0,n.kt)("li",{parentName:"ul"},"change(container): add variables for edit and add section of containers ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2e2c335dc82c120d15d4c536c400ae742f68fe7"},(0,n.kt)("inlineCode",{parentName:"a"},"f2e2c33"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): update sub-title paddings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/992f919bb5155c8e6fc169e43adf00dcae41f400"},(0,n.kt)("inlineCode",{parentName:"a"},"992f919"))),(0,n.kt)("li",{parentName:"ul"},"change(site): add a 1rem margin top and bottom on all styled classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dabf6c1162fe23cef61a2053eefd7e687f649a56"},(0,n.kt)("inlineCode",{parentName:"a"},"dabf6c1"))),(0,n.kt)("li",{parentName:"ul"},"change(homepage): removed hiding of staging banner from homepage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ba2cd7fc17cdf1bf58381aa58e05acad0ac77ba"},(0,n.kt)("inlineCode",{parentName:"a"},"4ba2cd7"))),(0,n.kt)("li",{parentName:"ul"},"change(container): unset values of page-document on 1200+ browser width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dd5bea37d414e2a8689eaf6cc99c7b3a3d4b0e08"},(0,n.kt)("inlineCode",{parentName:"a"},"dd5bea3"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): set children to be appended to the right of the menu title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b69c23a20ef2ded1f0382650ff8e85d1bead6941"},(0,n.kt)("inlineCode",{parentName:"a"},"b69c23a"))),(0,n.kt)("li",{parentName:"ul"},"change(theme): modified wide width to point to 1320px as it's perfectly divisible by 4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f825737d6dafd595024bb4537eab624a47a9ad0"},(0,n.kt)("inlineCode",{parentName:"a"},"8f82573"))),(0,n.kt)("li",{parentName:"ul"},"change(theme): modified wide width to point to 1368px as it's perfectly divisible by 4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2349fee36ee72783665a0b101d684389f1fdf834"},(0,n.kt)("inlineCode",{parentName:"a"},"2349fee"))),(0,n.kt)("li",{parentName:"ul"},"change(container): renamed content-text-width to container-text-width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6f788c282348292dd4b5deb47ffe83ca4573e5c8"},(0,n.kt)("inlineCode",{parentName:"a"},"6f788c2"))),(0,n.kt)("li",{parentName:"ul"},"change(listing): provide ui container fallback if no class is passed to default view ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af9e94ded1e301f4c811749badbcc1f59e6d0de5"},(0,n.kt)("inlineCode",{parentName:"a"},"af9e94d"))),(0,n.kt)("li",{parentName:"ul"},"change(narrow-view): re-added container class to page-document ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/56b44a6e09d45f96c106dc471bb2e1cde58ef10f"},(0,n.kt)("inlineCode",{parentName:"a"},"56b44a6"))),(0,n.kt)("li",{parentName:"ul"},"change(view): set container width for view-viewview class as well ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/29dc324319d6dc2450dd0e906c1b4c93fd65ed56"},(0,n.kt)("inlineCode",{parentName:"a"},"29dc324")))),(0,n.kt)("h4",{id:"-internal-changes-9"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style: load header/footer overrides ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e5b5e0fc00c61d81f45c12f119bd2f06a91b1b5c"},(0,n.kt)("inlineCode",{parentName:"a"},"e5b5e0f"))),(0,n.kt)("li",{parentName:"ul"},"style(megaMenu): restore item description color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8a19bbb4866cdeb31d87b782587c499e621055b7"},(0,n.kt)("inlineCode",{parentName:"a"},"8a19bbb"))),(0,n.kt)("li",{parentName:"ul"},"style(megaMenu): restore accordion content bottom padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8e0c5a79f06247d353511b412b0122c6f614f5ec"},(0,n.kt)("inlineCode",{parentName:"a"},"8e0c5a7")))),(0,n.kt)("h4",{id:"\ufe0f-others-23"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Add subsite styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e79c0ed7931d6287dbeb3bab1e9155b8707481a3"},(0,n.kt)("inlineCode",{parentName:"a"},"e79c0ed"))),(0,n.kt)("li",{parentName:"ul"},"WIP settings column grid width when using full size class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/affc7ac99527aa92d5a192d90dc8c9ec46a66404"},(0,n.kt)("inlineCode",{parentName:"a"},"affc7ac"))),(0,n.kt)("li",{parentName:"ul"},"code cleanup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2cdc3e590b6d36865f16890c45ce56d32963e1d0"},(0,n.kt)("inlineCode",{parentName:"a"},"2cdc3e5"))),(0,n.kt)("li",{parentName:"ul"},"fix eslint ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/30c52e4eb443555ca44c1b35df064e73d52c0a8b"},(0,n.kt)("inlineCode",{parentName:"a"},"30c52e4"))),(0,n.kt)("li",{parentName:"ul"},"test(estlint): Fix .project.eslintrc.js ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aaeaa07b27491551daba29bbfdd7cab4a54b6bec"},(0,n.kt)("inlineCode",{parentName:"a"},"aaeaa07"))),(0,n.kt)("li",{parentName:"ul"},"modified left value of full width classes with toolbars ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70d82d47fbc2c00a3a709de0d5c087c8443a1eae"},(0,n.kt)("inlineCode",{parentName:"a"},"70d82d4"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-alpha.3 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8fc86a7d0bf4ad06ab339b3066ff56ea61d48878"},(0,n.kt)("inlineCode",{parentName:"a"},"8fc86a7"))),(0,n.kt)("li",{parentName:"ul"},"feature(content): added NarrowView useful for modifying the containers from content-area ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d937df7c262e8d8cc6e78eebec736e28263fc657"},(0,n.kt)("inlineCode",{parentName:"a"},"d937df7"))),(0,n.kt)("li",{parentName:"ul"},"jslint fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/98461593605344d0b6d8cba81f91d1cafc2653cd"},(0,n.kt)("inlineCode",{parentName:"a"},"9846159"))),(0,n.kt)("li",{parentName:"ul"},"Feature(container): flexible container size #260 from eea/feature-flexible-container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f84c5b67afe9cbe01b2a44a8f92a9a554e1036a"},(0,n.kt)("inlineCode",{parentName:"a"},"8f84c5b"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using circularity-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/76a41c786995fd54afe4d1c345de939f683ffa70"},(0,n.kt)("inlineCode",{parentName:"a"},"76a41c7"))),(0,n.kt)("li",{parentName:"ul"},"fix broken variable call for contentBox.variables introduced in previous commit by mistake ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d249c1160d19bedb174a2fde3fdab48d9ce297d4"},(0,n.kt)("inlineCode",{parentName:"a"},"d249c11"))),(0,n.kt)("li",{parentName:"ul"},"clean up ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/89f3cb33d70a14806a953f0acd1807e94169ee5c"},(0,n.kt)("inlineCode",{parentName:"a"},"89f3cb3"))),(0,n.kt)("li",{parentName:"ul"},"removed console log from code ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fad86ae581dd81d0c29fc03d8528e57cadadd3fb"},(0,n.kt)("inlineCode",{parentName:"a"},"fad86ae")))),(0,n.kt)("h3",{id:"100-alpha2---2022-10-28"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.1...1.0.0-alpha.2"},"1.0.0-alpha.2")," - 2022-10-28"),(0,n.kt)("h4",{id:"-enhancements-24"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(documentation): grammarly proof-read suggestions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f609be3758673b0d479d99baee69e7238a5b7f9"},(0,n.kt)("inlineCode",{parentName:"a"},"9f609be"))),(0,n.kt)("li",{parentName:"ul"},"refactor(volto-slate): Upgrade to @plone/volto-slate - refs #153447 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/853d9d189dd17859e3999fbf53507df7083eefb4"},(0,n.kt)("inlineCode",{parentName:"a"},"853d9d1")))),(0,n.kt)("h4",{id:"-internal-changes-10"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(docs): Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e33113a0541d082d93f61c7494bcce2ac5f79a8c"},(0,n.kt)("inlineCode",{parentName:"a"},"e33113a")))),(0,n.kt)("h4",{id:"\ufe0f-others-24"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"test(cypress): Upgrade to Cypress 10 / Razzle 4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c1c1f4b280945a9f0b77eb0b59de003c1360bac9"},(0,n.kt)("inlineCode",{parentName:"a"},"c1c1f4b"))),(0,n.kt)("li",{parentName:"ul"},"more explanations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a8b22728659125ba6ea6fb41f29571a8f1b9953b"},(0,n.kt)("inlineCode",{parentName:"a"},"a8b2272"))),(0,n.kt)("li",{parentName:"ul"},"add announcement bar, showing that EEA DS is WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e14aeac02cf922493aff4f83c8d80af95cc63eb9"},(0,n.kt)("inlineCode",{parentName:"a"},"e14aeac"))),(0,n.kt)("li",{parentName:"ul"},"Update dependencies ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee30a2bad3769163d3ab4d996c0a7be8fcb4bc6e"},(0,n.kt)("inlineCode",{parentName:"a"},"ee30a2b")))),(0,n.kt)("h3",{id:"100-alpha1---2022-10-20"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.6...1.0.0-alpha.1"},"1.0.0-alpha.1")," - 2022-10-20"),(0,n.kt)("h4",{id:"-enhancements-25"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update svg and tablet contact link sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6aba061a5d37e84da706e94a2ce1140ffca81d43"},(0,n.kt)("inlineCode",{parentName:"a"},"6aba061"))),(0,n.kt)("li",{parentName:"ul"},"change(blockquote): renamed to Callout reflecting the correct naming from Storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/61a518c84f08b03d29b99aafce3d9108ae56b3a7"},(0,n.kt)("inlineCode",{parentName:"a"},"61a518c"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): Shadow removed from logo & tablet updates #252 from eea/fix-footer ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6df783d6571cb1b477202bf1d503763d98db66bf"},(0,n.kt)("inlineCode",{parentName:"a"},"6df783d"))),(0,n.kt)("li",{parentName:"ul"},"change(colors): updated theme classes for text to use css variable colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb089fd9a40b67430e0d4efaa2cb51902a46de4f"},(0,n.kt)("inlineCode",{parentName:"a"},"cb089fd")))),(0,n.kt)("h4",{id:"-internal-changes-11"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(footer): reduce social icons margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6a9cf7a6da4a46d9b85a63fbdfc8d421ae4c0d8"},(0,n.kt)("inlineCode",{parentName:"a"},"f6a9cf7")))),(0,n.kt)("h4",{id:"-documentation-changes-9"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(alpha): Update included components in 1.0 alpha version - refs #154387 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fcc5af9bb9163d158ccd6ce452d7f80ac26f7ac0"},(0,n.kt)("inlineCode",{parentName:"a"},"fcc5af9"))),(0,n.kt)("li",{parentName:"ul"},"docs(callout): Rename Blockqoute to Callout in docusaurus - refs #154387 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8d733ac7b00273581575ceddd1a4480ba67fa498"},(0,n.kt)("inlineCode",{parentName:"a"},"8d733ac")))),(0,n.kt)("h4",{id:"\ufe0f-others-25"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-alpha.1 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70e4d97c6a2b13f3b98efe1e2ba93174be2df476"},(0,n.kt)("inlineCode",{parentName:"a"},"70e4d97")))),(0,n.kt)("h3",{id:"096---2022-12-16"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.5...0.9.6"},"0.9.6")," - 2022-12-16"),(0,n.kt)("h4",{id:"\ufe0f-others-26"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Release 0.9.6 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ae19b837678ef5a6a26ebe7c69577e446b13ed50"},(0,n.kt)("inlineCode",{parentName:"a"},"ae19b83"))),(0,n.kt)("li",{parentName:"ul"},"feature(copyright): image information #250 from eea/feature-copyright ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7b323ed27e15f9b4265618099089526c97aa89a1"},(0,n.kt)("inlineCode",{parentName:"a"},"7b323ed"))),(0,n.kt)("li",{parentName:"ul"},"Release-it ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f5671de5a36a721f86a2f8ae4077fd2e0ffafb5"},(0,n.kt)("inlineCode",{parentName:"a"},"1f5671d")))),(0,n.kt)("h3",{id:"095---2022-10-20"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.4...0.9.5"},"0.9.5")," - 2022-10-20"),(0,n.kt)("h4",{id:"-bug-fixes-19"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(statistic): margin and slate colors when using the inverted options ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f263dea1940594ad00b3548c8640ca378fee5563"},(0,n.kt)("inlineCode",{parentName:"a"},"f263dea")))),(0,n.kt)("h3",{id:"094---2022-10-19"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.3...0.9.4"},"0.9.4")," - 2022-10-19"),(0,n.kt)("h4",{id:"-bug-fixes-20"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(edit-interface): block chooser and power user menu item colors when inside content-box ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7aee4f1619a0d798b5fd8d90844a780c25aca019"},(0,n.kt)("inlineCode",{parentName:"a"},"7aee4f1"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): hero text going over the logo and menu on mobile resolutions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1434508f5995d4316dfb2fd18fdc7926a4ece6ee"},(0,n.kt)("inlineCode",{parentName:"a"},"1434508"))),(0,n.kt)("li",{parentName:"ul"},"fix(content-box): z-index of box-inner and added underline to slate links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c8b7c7e41df39e1bf6377401a7aad4220287d454"},(0,n.kt)("inlineCode",{parentName:"a"},"c8b7c7e"))),(0,n.kt)("li",{parentName:"ul"},"fix(content-box): adding of underline to links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c2f5f0f45963e48342edb0046d84b945ffe4b6a8"},(0,n.kt)("inlineCode",{parentName:"a"},"c2f5f0f")))),(0,n.kt)("h4",{id:"-enhancements-26"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(banner,colors): content box theme aware colors banner changes#254 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bcb9a8cde0cb0f927a68c0872e590e5ab853f824"},(0,n.kt)("inlineCode",{parentName:"a"},"bcb9a8c"))),(0,n.kt)("li",{parentName:"ul"},"change(Banner): Add subtitle subcomponent ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bb67f4c83a2ff0e17958116fc4a52a426ba64a70"},(0,n.kt)("inlineCode",{parentName:"a"},"bb67f4c"))),(0,n.kt)("li",{parentName:"ul"},"change(item): moved svg filter definitions to item.overrides ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/de703661065648968903bb6b46efc13d19c51d2b"},(0,n.kt)("inlineCode",{parentName:"a"},"de70366"))),(0,n.kt)("li",{parentName:"ul"},"change(accordion): accordion titles with themes colors can now be modified by css variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2ac13ea56a74b2f7a22abc274bc94c770fbe3a2"},(0,n.kt)("inlineCode",{parentName:"a"},"e2ac13e"))),(0,n.kt)("li",{parentName:"ul"},"change(colors): in lists and callouts to allow color changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/940d1b8ed815b1a38f78d7602f0b221b48fe21f9"},(0,n.kt)("inlineCode",{parentName:"a"},"940d1b8"))),(0,n.kt)("li",{parentName:"ul"},"change(colors): added backgroundColorSupplementary color variable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f5262af2b90d2ffd9dd5560232f3bf47bcc85e3"},(0,n.kt)("inlineCode",{parentName:"a"},"1f5262a"))),(0,n.kt)("li",{parentName:"ul"},"change(list,bullet): color is no longer primary instead it's text color css variant ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8c046704871c7202406ff71b280a8a34e195e54d"},(0,n.kt)("inlineCode",{parentName:"a"},"8c04670"))),(0,n.kt)("li",{parentName:"ul"},"change(statistics): use theme colors with css variable for easy color customization ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fb72a012e81eba73fbace58317a52b5cdda31ee5"},(0,n.kt)("inlineCode",{parentName:"a"},"fb72a01"))),(0,n.kt)("li",{parentName:"ul"},"change(Banner): Show label in metadata field ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1acda3c53739b610b501a53baf10226769929d2d"},(0,n.kt)("inlineCode",{parentName:"a"},"1acda3c"))),(0,n.kt)("li",{parentName:"ul"},"change(tags, items): use text color with css variable for content color for easy customization ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6660e2e49c6e732a13283ad7c922c5a5091bffc1"},(0,n.kt)("inlineCode",{parentName:"a"},"6660e2e"))),(0,n.kt)("li",{parentName:"ul"},"change(styling): modified naming of theme css variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a332961e1c4d55cdee3a8bcdf652f53cf03e251b"},(0,n.kt)("inlineCode",{parentName:"a"},"a332961"))),(0,n.kt)("li",{parentName:"ul"},"change(colors): added backgroundColor color variable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b7e68311f77a724c49a3cf858a76239ca5f6876c"},(0,n.kt)("inlineCode",{parentName:"a"},"b7e6831"))),(0,n.kt)("li",{parentName:"ul"},"change(quote): use secondary css var for easier color replacement ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7a3231228c2eb9b420cc7b59a4a07fba96643e5e"},(0,n.kt)("inlineCode",{parentName:"a"},"7a32312"))),(0,n.kt)("li",{parentName:"ul"},"change(statistics): tweaked margin of statistics so that they don't overflow over context boxes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4a8e33dfaa716f38ac9ce5448d400c74ef9ba62"},(0,n.kt)("inlineCode",{parentName:"a"},"b4a8e33"))),(0,n.kt)("li",{parentName:"ul"},"change(accordion): allow customization of accordion title background color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6590baf1716867eabe897e765ae1924122ba2333"},(0,n.kt)("inlineCode",{parentName:"a"},"6590baf"))),(0,n.kt)("li",{parentName:"ul"},"change(colors): introduced css variables for primary colors #247 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac8082590f978ab953ece70082e06b124c292ddf"},(0,n.kt)("inlineCode",{parentName:"a"},"ac80825"))),(0,n.kt)("li",{parentName:"ul"},"change(content-box): override primary text color to white as well ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/28b43c72b9fcfeb153ac7e734bbbca67f2e42111"},(0,n.kt)("inlineCode",{parentName:"a"},"28b43c7")))),(0,n.kt)("h4",{id:"\ufe0f-others-27"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Include changes in the storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4d9fa4c631a6a1ec0d7d525721fd32c5ff01d9c"},(0,n.kt)("inlineCode",{parentName:"a"},"a4d9fa4")))),(0,n.kt)("h3",{id:"093---2022-10-04"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.2...0.9.3"},"0.9.3")," - 2022-10-04"),(0,n.kt)("h4",{id:"-bug-fixes-21"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(card, contentBox): meta font size, removed header override of cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7f94b9ca8c65a887ced5c4812563a2226fca869"},(0,n.kt)("inlineCode",{parentName:"a"},"a7f94b9"))),(0,n.kt)("li",{parentName:"ul"},"fix(List): Ordered list item story - refs #155248 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c70a2bceecf4ce9497cbe0e9cdb30944fff2287d"},(0,n.kt)("inlineCode",{parentName:"a"},"c70a2bc"))),(0,n.kt)("li",{parentName:"ul"},"fix(OrderedList): li third level margin left - refs #155248 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fba5cb9d3897d2827951cd218405b1ae7c8e818a"},(0,n.kt)("inlineCode",{parentName:"a"},"fba5cb9"))),(0,n.kt)("li",{parentName:"ul"},"fix(cards): inherit color of card description ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ceda79971663785c81292b85ae07b7f9f922213c"},(0,n.kt)("inlineCode",{parentName:"a"},"ceda799"))),(0,n.kt)("li",{parentName:"ul"},"fix(accordion): Fix content default padding - refs #153783 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/566adf7a53c48fb24044eeba1d159d5ce715ecc6"},(0,n.kt)("inlineCode",{parentName:"a"},"566adf7")))),(0,n.kt)("h4",{id:"-enhancements-27"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(site): committed fixed from custom into eea design package ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9b9a1fd3648796a502ca4eb3abd08b61b33bdff2"},(0,n.kt)("inlineCode",{parentName:"a"},"9b9a1fd"))),(0,n.kt)("li",{parentName:"ul"},"change(jenkins): added yarn policy for storybook building ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3d1b844efeea40b99c00c9aa97089e0a0be58a57"},(0,n.kt)("inlineCode",{parentName:"a"},"3d1b844"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): typography updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/60a93a4aece4e478ae13c2dfe697fd3703aa178a"},(0,n.kt)("inlineCode",{parentName:"a"},"60a93a4"))),(0,n.kt)("li",{parentName:"ul"},"change(item): added item image coloring when applying theming classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0403fe4974f37a46ec7418d9b8492ad74d7c5688"},(0,n.kt)("inlineCode",{parentName:"a"},"0403fe4"))),(0,n.kt)("li",{parentName:"ul"},"change(accordion, site): change text color to tertiary instead of black ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/464105842508a62216aa0a3f28e9565af1b93232"},(0,n.kt)("inlineCode",{parentName:"a"},"4641058"))),(0,n.kt)("li",{parentName:"ul"},"change(accordion): allow customization of accordion title with css variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/15e7d27f02c640df582f51a51ef36e645723f842"},(0,n.kt)("inlineCode",{parentName:"a"},"15e7d27"))),(0,n.kt)("li",{parentName:"ul"},"change(content-box): added css variables that will set text color and background for children ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/86cac531cc94386b6022e1be80dba826b39f2443"},(0,n.kt)("inlineCode",{parentName:"a"},"86cac53"))),(0,n.kt)("li",{parentName:"ul"},"change(tabs): allow customization of tab active and hover color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4370f4270dcaa29b1193fc2347567b748f6d5d82"},(0,n.kt)("inlineCode",{parentName:"a"},"4370f42"))),(0,n.kt)("li",{parentName:"ul"},"change(tabs): color for tabs-block section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6778c923618e725194120d7f35e2ee7d66e1be8e"},(0,n.kt)("inlineCode",{parentName:"a"},"6778c92"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): by default date is set to appear on the right of the meta section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b7b80e86b69a0179f1e48748bef909bbd2a98d58"},(0,n.kt)("inlineCode",{parentName:"a"},"b7b80e8"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): carousel dots are now relative positioned ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/daa40a4ab6532497830d5f7536bf0a7f20d9cd00"},(0,n.kt)("inlineCode",{parentName:"a"},"daa40a4")))),(0,n.kt)("h4",{id:"-documentation-changes-10"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(typography): update, local fonts ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/39a32d9aa4dec21c0e7df32aa5798432fc6bd403"},(0,n.kt)("inlineCode",{parentName:"a"},"39a32d9"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): token fix to match used values for heightheight and letterspacing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91693ecd2dd367cd83fa2752756557d463e214a7"},(0,n.kt)("inlineCode",{parentName:"a"},"91693ec"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): token fix to match used values for lineheight ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff41b56b4365a3e70ac20e548c7c74671e7c584c"},(0,n.kt)("inlineCode",{parentName:"a"},"ff41b56"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): remove semibold ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6eb3e0856f01aacf6d294f68e7d845f74f752685"},(0,n.kt)("inlineCode",{parentName:"a"},"6eb3e08")))),(0,n.kt)("h4",{id:"\ufe0f-others-28"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"test(cypress): Fix md5 dependency ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/17f618e7c5eef01759494e787a8c9cb96449fbca"},(0,n.kt)("inlineCode",{parentName:"a"},"17f618e")))),(0,n.kt)("h3",{id:"092---2022-09-27"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.1...0.9.2"},"0.9.2")," - 2022-09-27"),(0,n.kt)("h3",{id:"091---2022-09-27"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.0...0.9.1"},"0.9.1")," - 2022-09-27"),(0,n.kt)("h4",{id:"-enhancements-28"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(cards): added ability to change the text alignment using css variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ed532ac20c82a6933c4f12613c80ce92eec78405"},(0,n.kt)("inlineCode",{parentName:"a"},"ed532ac"))),(0,n.kt)("li",{parentName:"ul"},"change(styles): use flex-end values only instead of end to avoid babel warning ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24244b22ea69b9f4dc3006597c7836f814b74cf2"},(0,n.kt)("inlineCode",{parentName:"a"},"24244b2"))),(0,n.kt)("li",{parentName:"ul"},"change(rounded): image size, border radius to ensure more image are turned into rounded options ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51e23c1bb38f277b2bfbad5d814925eb61d17668"},(0,n.kt)("inlineCode",{parentName:"a"},"51e23c1")))),(0,n.kt)("h4",{id:"\ufe0f-others-29"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Merge pull request #243 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/576564ce395ee6ac9e74bcb19d5c4f0b4cd3c33b"},(0,n.kt)("inlineCode",{parentName:"a"},"576564c"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using eea-website-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a5be6eec78dae230626e61ea2c77e7f3c62510d"},(0,n.kt)("inlineCode",{parentName:"a"},"4a5be6e"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b251255a7ed14d8290717726d86eaf54b87aa2d4"},(0,n.kt)("inlineCode",{parentName:"a"},"b251255")))),(0,n.kt)("h3",{id:"090---2022-09-19"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.8.1...0.9.0"},"0.9.0")," - 2022-09-19"),(0,n.kt)("h4",{id:"-new-features-16"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(countUp): intall countup package and import it in statistics ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/10ba7cf2975ffc33cc8e6965998b7ab7ec58b1ab"},(0,n.kt)("inlineCode",{parentName:"a"},"10ba7cf"))),(0,n.kt)("li",{parentName:"ul"},"feat(docusaurus): custom editUrl function for the components usage pages - taskman refs #154076 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93c4240f269d72e4e353665dacd57d079a31afac"},(0,n.kt)("inlineCode",{parentName:"a"},"93c4240"))),(0,n.kt)("li",{parentName:"ul"},"feat(site): Styling scroll-to-text fragments #238 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1883fcf4e80055f68bdff4d66fc6db3ccad4614a"},(0,n.kt)("inlineCode",{parentName:"a"},"1883fcf"))),(0,n.kt)("li",{parentName:"ul"},"feat(docusaurus): added Edit this page link in footer of each page - taskman refs #154076 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2cf8746e42631ea2e214223e208bdbfb76ffafa7"},(0,n.kt)("inlineCode",{parentName:"a"},"2cf8746")))),(0,n.kt)("h4",{id:"-bug-fixes-22"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(header): Prevent dropdown closing when clicking inside content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/838f34006260ce7c331fd933a595e95d78e1a927"},(0,n.kt)("inlineCode",{parentName:"a"},"838f340"))),(0,n.kt)("li",{parentName:"ul"},"fix(cards): position of bullets and arrow clicking on events page 148723 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/22ef8282247401b0f8cf5a44f2e65f0b469cc6fa"},(0,n.kt)("inlineCode",{parentName:"a"},"22ef828"))),(0,n.kt)("li",{parentName:"ul"},"fix(cards): rounded images show up now even when card parent is cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48f5e81a5b76168435537d92aec35ab3a184b4d2"},(0,n.kt)("inlineCode",{parentName:"a"},"48f5e81"))),(0,n.kt)("li",{parentName:"ul"},"fix(statistic): add a min-width to content so unwrapped statistics don't break ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7c5d511c35d50f3afabf77f14b27e5760c49051f"},(0,n.kt)("inlineCode",{parentName:"a"},"7c5d511"))),(0,n.kt)("li",{parentName:"ul"},"fix(sideNavigation): add role list to list item ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/58f322b732c995349ba588db3bac6a1ffea40f89"},(0,n.kt)("inlineCode",{parentName:"a"},"58f322b"))),(0,n.kt)("li",{parentName:"ul"},"fix(sideNavigation): remove unused useState import ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f9ea6779d2c584203b77f11b3127f39aba7799f3"},(0,n.kt)("inlineCode",{parentName:"a"},"f9ea677")))),(0,n.kt)("h4",{id:"-enhancements-29"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(sideNavigation): implement the design to the initial navigation & make component dynamic ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b673d63a45e56e1d05354d8675c01b15ec9543f5"},(0,n.kt)("inlineCode",{parentName:"a"},"b673d63"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update top bar ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/626bdd5805bde1e97b91d83dae7adc1d39c62234"},(0,n.kt)("inlineCode",{parentName:"a"},"626bdd5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): create custom export and add links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f9ed560a68d261e9e6a9b6fa3c44944a252e596"},(0,n.kt)("inlineCode",{parentName:"a"},"9f9ed56"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): update inverted style and add background variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7578dc6a408094fbc215218b3ffe21a878841568"},(0,n.kt)("inlineCode",{parentName:"a"},"7578dc6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): remove horizontal display on mobiles & update columns control ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/58f00e12851c4a1af1bb200d0577d76f6222df3c"},(0,n.kt)("inlineCode",{parentName:"a"},"58f00e1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): minor fixes spotted in testing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0f0f3aba7ea282c4ecc4f602f9ff3144c04e2146"},(0,n.kt)("inlineCode",{parentName:"a"},"0f0f3ab"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update main section heights ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d669f012f1b831952dbb73b7d40134b1243ba7e4"},(0,n.kt)("inlineCode",{parentName:"a"},"d669f01"))),(0,n.kt)("li",{parentName:"ul"},"refactor(sideNavigation): remove green border and divider ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/939cd9bf2a9a7338fd770550a8396586c5f610b3"},(0,n.kt)("inlineCode",{parentName:"a"},"939cd9b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(link): update colors for link states ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e9f59950838f9119131797550945963c2965dcf"},(0,n.kt)("inlineCode",{parentName:"a"},"3e9f599"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): styles img tag outside of .image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee892745a4748da12007ba5cedab16c1810c1dd9"},(0,n.kt)("inlineCode",{parentName:"a"},"ee89274"))),(0,n.kt)("li",{parentName:"ul"},"refactor(sideNavigation): update controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a3e8430d88ee52fd92f4f8c2d6f5e01ea82dd9eb"},(0,n.kt)("inlineCode",{parentName:"a"},"a3e8430"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): fix firefox issue for fit content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87aa113667ea53d83d479cd52347e7298e60e9b0"},(0,n.kt)("inlineCode",{parentName:"a"},"87aa113"))),(0,n.kt)("li",{parentName:"ul"},"change(statistics): rearrange controls order ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b19ae70568f18873732ff62ee82251c9256a214d"},(0,n.kt)("inlineCode",{parentName:"a"},"b19ae70"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): add max width to wrap text for all content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/758f8ce09f78a6343ac0226e5d332c0216dea95b"},(0,n.kt)("inlineCode",{parentName:"a"},"758f8ce"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): add max width to label so it wraps the text ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/824a12702f133485a1c254e267d9e75c1b22048c"},(0,n.kt)("inlineCode",{parentName:"a"},"824a127"))),(0,n.kt)("li",{parentName:"ul"},"change(Side menu & in page navigation): styling according to figma design #221 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b2df858a2dc88f61d686ad0991e711dc763f4cc6"},(0,n.kt)("inlineCode",{parentName:"a"},"b2df858"))),(0,n.kt)("li",{parentName:"ul"},"change(header): align header with latest figma changes #232 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/135cd68307c6ebdc5d48b361d1696457c6f99b4c"},(0,n.kt)("inlineCode",{parentName:"a"},"135cd68"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): integration when cards also contain call to action buttons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f0d876616b211c79dde5b18c1fe862ff019073a1"},(0,n.kt)("inlineCode",{parentName:"a"},"f0d8766"))),(0,n.kt)("li",{parentName:"ul"},"refactor(iconography): icon group headings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b9ccd8031049d6b91c5676930ea3e44d9587435d"},(0,n.kt)("inlineCode",{parentName:"a"},"b9ccd80"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add variables for some sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8eae84ef665d7b3331090a8a8ac6b714ecdacbb3"},(0,n.kt)("inlineCode",{parentName:"a"},"8eae84e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Statisctic): Rename slateVariation to extraVariation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a07c5896c8c4b8f3179622f335e3f02e68dadfbd"},(0,n.kt)("inlineCode",{parentName:"a"},"a07c589"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): started example on how to add headings for iconography ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53cf8431446954eee6c5d27be31e15c075ffe16d"},(0,n.kt)("inlineCode",{parentName:"a"},"53cf843"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): remove center alignment of rounded cards body area, only the image is now centered ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fdfac4876903272b437c7dcf0e65f7cfe66bbf66"},(0,n.kt)("inlineCode",{parentName:"a"},"fdfac48"))),(0,n.kt)("li",{parentName:"ul"},"change(color): updated link colors #234 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/feabfe7a3b6d6b89bfd4065a32bae8148ddc5a4c"},(0,n.kt)("inlineCode",{parentName:"a"},"feabfe7"))),(0,n.kt)("li",{parentName:"ul"},"change(mockup): Access to figma style tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0bb25bec495f9046a15924ee92f4f17152148ba8"},(0,n.kt)("inlineCode",{parentName:"a"},"0bb25be"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): update margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5190f56e134d672ccb9d5d1a8efacac4d41530d3"},(0,n.kt)("inlineCode",{parentName:"a"},"5190f56"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button): adjust vertical margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/db6d44102171738907b4b03fcc5f526463f59389"},(0,n.kt)("inlineCode",{parentName:"a"},"db6d441")))),(0,n.kt)("h4",{id:"-internal-changes-12"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(statistic): update decimal point ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7976aa4cac4c56e70e196eb62791a2b3f2aba749"},(0,n.kt)("inlineCode",{parentName:"a"},"7976aa4"))),(0,n.kt)("li",{parentName:"ul"},"style(link): update visited link color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d3b18b305bb2bd2f20bb2509584a6bc86b0e252c"},(0,n.kt)("inlineCode",{parentName:"a"},"d3b18b3")))),(0,n.kt)("h4",{id:"-documentation-changes-11"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(iconography): added icons, guidelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0073f1d42600be1d14bff406083b112014a2061f"},(0,n.kt)("inlineCode",{parentName:"a"},"0073f1d")))),(0,n.kt)("h4",{id:"\ufe0f-others-30"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Delete 2-test-new-page.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/749eff9b81e1c08068650cff1aba6cd574ea403b"},(0,n.kt)("inlineCode",{parentName:"a"},"749eff9"))),(0,n.kt)("li",{parentName:"ul"},"Create 2-test-new-page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab623ffc27f65e3e5fdcfe627009df1799582325"},(0,n.kt)("inlineCode",{parentName:"a"},"ab623ff"))),(0,n.kt)("li",{parentName:"ul"},"Release 0.9.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/eb7e2e57b5f2778e709b67deee3624f6e9f9e716"},(0,n.kt)("inlineCode",{parentName:"a"},"eb7e2e5"))),(0,n.kt)("li",{parentName:"ul"},"stylelint fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/114e3f97c6209f100aae2d6e24c595b7ba0a6500"},(0,n.kt)("inlineCode",{parentName:"a"},"114e3f9"))),(0,n.kt)("li",{parentName:"ul"},"Move text fragments style to site.overrides ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8368cbe2cecfc296a2fc81dd0bb49cb9e9a9314c"},(0,n.kt)("inlineCode",{parentName:"a"},"8368cbe"))),(0,n.kt)("li",{parentName:"ul"},"Styling scroll-to-text fragments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1bb39148717cdac922c403a0cdbfa3681a65dd9f"},(0,n.kt)("inlineCode",{parentName:"a"},"1bb3914"))),(0,n.kt)("li",{parentName:"ul"},"Update Header.stories.js ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9036c74d54640df2ccfcfdea9ddcdb29787d8ae2"},(0,n.kt)("inlineCode",{parentName:"a"},"9036c74"))),(0,n.kt)("li",{parentName:"ul"},"feature(Docusaurus): Reflect usage of remixicon in iconography page #239 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0802b32c13d978e380960befb78647dadb2d7e53"},(0,n.kt)("inlineCode",{parentName:"a"},"0802b32"))),(0,n.kt)("li",{parentName:"ul"},"Update 1-design.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/146115a13ac7a1943b6878df42f0b8e7f1fcd3f1"},(0,n.kt)("inlineCode",{parentName:"a"},"146115a"))),(0,n.kt)("li",{parentName:"ul"},"Test workflow for contribution - taskman refs #154076 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dcb924f79306ba26bb5168ac0a12d82c0c354caa"},(0,n.kt)("inlineCode",{parentName:"a"},"dcb924f"))),(0,n.kt)("li",{parentName:"ul"},"perf(figma): access to style tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/27d8dbe3c282e187f93bc4d93a0c9aa5c8162b00"},(0,n.kt)("inlineCode",{parentName:"a"},"27d8dbe"))),(0,n.kt)("li",{parentName:"ul"},"Rename 2-test-new-page to 2-test-new-page.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4e3be106cc4739e60ee5038901dbb626cf17f2e7"},(0,n.kt)("inlineCode",{parentName:"a"},"4e3be10")))),(0,n.kt)("h3",{id:"081---2022-08-26"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.8.0...0.8.1"},"0.8.1")," - 2022-08-26"),(0,n.kt)("h4",{id:"-bug-fixes-23"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(message): fix size controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee51e1dca4f84aeb9e39be525016f751acc147de"},(0,n.kt)("inlineCode",{parentName:"a"},"ee51e1d"))),(0,n.kt)("li",{parentName:"ul"},"fix(docusaurus): intro page hero title color now that headers are using tertiary color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/618e3cb7ac5533b1c087aea10452947c8676ab4e"},(0,n.kt)("inlineCode",{parentName:"a"},"618e3cb")))),(0,n.kt)("h4",{id:"-enhancements-30"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(message): restore semantic variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1c16621b4862efc64d82d475798ed40938c65f5e"},(0,n.kt)("inlineCode",{parentName:"a"},"1c16621"))),(0,n.kt)("li",{parentName:"ul"},"refactor(messages): mix semantc and token colors for messages ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/12efa75c30956df9958058242be4b8732819a5a1"},(0,n.kt)("inlineCode",{parentName:"a"},"12efa75"))),(0,n.kt)("li",{parentName:"ul"},"refactor(emotiveColors): temp update for tests ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/61a720c1ddbbad2c5bab17c8b2f890618f2a747c"},(0,n.kt)("inlineCode",{parentName:"a"},"61a720c"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): removed line between sections and moved actions back to the bottom of footer ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d9f33e4cf5a517acfbae497d6cb2fdccb048c281"},(0,n.kt)("inlineCode",{parentName:"a"},"d9f33e4"))),(0,n.kt)("li",{parentName:"ul"},"change(storybook): headings storybook now uses tertiary color by default reflecting site options ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1061e7749de2d4fe1233ccdc7f6f835ad491504a"},(0,n.kt)("inlineCode",{parentName:"a"},"1061e77"))),(0,n.kt)("li",{parentName:"ul"},"refactor(message): add container to story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1259ecead7162d2a46f5e802ba07e7e0dcb72e42"},(0,n.kt)("inlineCode",{parentName:"a"},"1259ece"))),(0,n.kt)("li",{parentName:"ul"},"refactor(message): remove override with custom background color on error ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9b40cd7ef2cca901e65a812585943c2e2d867b5f"},(0,n.kt)("inlineCode",{parentName:"a"},"9b40cd7"))),(0,n.kt)("li",{parentName:"ul"},"refactor(message): add header controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/960c2f7b524b1f049bb2f666e3e8278feca506da"},(0,n.kt)("inlineCode",{parentName:"a"},"960c2f7"))),(0,n.kt)("li",{parentName:"ul"},"change(message): use semantic colors for messages #204 from eea/refactor-message ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/22d2c43cd55a82621f2da3103652677b4b45db1a"},(0,n.kt)("inlineCode",{parentName:"a"},"22d2c43")))),(0,n.kt)("h4",{id:"-documentation-changes-12"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(figma): added figma files to repo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6bd4144ffc9c563ce224a07fe942fc4f2615c53f"},(0,n.kt)("inlineCode",{parentName:"a"},"6bd4144")))),(0,n.kt)("h3",{id:"080---2022-08-20"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.7.6...0.8.0"},"0.8.0")," - 2022-08-20"),(0,n.kt)("h4",{id:"-new-features-17"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(IconCard): card with icon instead of image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a85a1791e3a1245474dcafc4fd833350156dccb4"},(0,n.kt)("inlineCode",{parentName:"a"},"a85a179")))),(0,n.kt)("h4",{id:"-bug-fixes-24"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(docusaurus): typography guideline now has real font values for headings, body, caption and small text ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9508db918687b524c4d464539b9a4667399abb43"},(0,n.kt)("inlineCode",{parentName:"a"},"9508db9"))),(0,n.kt)("li",{parentName:"ul"},"fix(card): fix content gaps, adjust new meta section and update text color for default ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f1a78e14fc9a4b809572bd5d4d45bd10711c6eaa"},(0,n.kt)("inlineCode",{parentName:"a"},"f1a78e1"))),(0,n.kt)("li",{parentName:"ul"},"fix(item): remove duplicate argType ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dde0be5f7fe362143e248f7e53aa1d2e5df1fda0"},(0,n.kt)("inlineCode",{parentName:"a"},"dde0be5"))),(0,n.kt)("li",{parentName:"ul"},"fix(iconCard): add aria-label at links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/44f64c7127c0ccabbbf81eb5a838ee0f63284cea"},(0,n.kt)("inlineCode",{parentName:"a"},"44f64c7"))),(0,n.kt)("li",{parentName:"ul"},"fix(card): merge fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/df440ecd89eeb228f6f28df9109b84460cdfd523"},(0,n.kt)("inlineCode",{parentName:"a"},"df440ec"))),(0,n.kt)("li",{parentName:"ul"},"fix(heroblock): color even on edit page by inheriting color instead of using the tertiary color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac53fb74dedafcce231d1ca72843eff8a589c530"},(0,n.kt)("inlineCode",{parentName:"a"},"ac53fb7"))),(0,n.kt)("li",{parentName:"ul"},"fix(tab): add tabindex for accessibility error ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab512be71b86a3b696a228840e34d297928485ab"},(0,n.kt)("inlineCode",{parentName:"a"},"ab512be"))),(0,n.kt)("li",{parentName:"ul"},"fix(carousel): restore missing variable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1728312162d102aa2812eb3c7a55dac83bca8a04"},(0,n.kt)("inlineCode",{parentName:"a"},"1728312"))),(0,n.kt)("li",{parentName:"ul"},"fix(carousel): restore flex grow for cards and opacity for arrows ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce71305ab3fed5ff5c09b577e970050d3b29a2cb"},(0,n.kt)("inlineCode",{parentName:"a"},"ce71305")))),(0,n.kt)("h4",{id:"-enhancements-31"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(carousel) add links in carousel cards & update structure and variables of less files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f99cb219f3a95f5aab49a180434a4f5e0db14462"},(0,n.kt)("inlineCode",{parentName:"a"},"f99cb21"))),(0,n.kt)("li",{parentName:"ul"},"refactor(iconCard): add control for variations and link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5e1b6a1c7ab9fdce138c5643bc01763a02bed287"},(0,n.kt)("inlineCode",{parentName:"a"},"5e1b6a1"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus, fonts): documented font letter spacing modification ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/522712aeddb55f4ff96fdf4e8bea26f4575504ec"},(0,n.kt)("inlineCode",{parentName:"a"},"522712a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): css updates for card variations and styling updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c8b4a43dd25c50e77e8c71fa8fbc45cd70bde94e"},(0,n.kt)("inlineCode",{parentName:"a"},"c8b4a43"))),(0,n.kt)("li",{parentName:"ul"},"refactor(publicationCard): add links and fix accessibily issue ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/80adf6ce0f01e577c34ddba8b345a1fc562f6711"},(0,n.kt)("inlineCode",{parentName:"a"},"80adf6c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add new section in meta and remove links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bfb82ae9635d26ef478db3d63b39f67b25d11fd5"},(0,n.kt)("inlineCode",{parentName:"a"},"bfb82ae"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): add stackable functionality ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8d714fad0465cc71650dcb41236d5667ccc3e789"},(0,n.kt)("inlineCode",{parentName:"a"},"8d714fa"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): update meta section and controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5e28e12bacec6a226659553b8244aeb0165378c9"},(0,n.kt)("inlineCode",{parentName:"a"},"5e28e12"))),(0,n.kt)("li",{parentName:"ul"},"refactor(roundedCard): remove unnecessary code and controls and add all variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6305c54df14faada4058c602af2e33dbc4fad39d"},(0,n.kt)("inlineCode",{parentName:"a"},"6305c54"))),(0,n.kt)("li",{parentName:"ul"},"refactor(roundedCard): add optional link for image and header ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a6d3bf27031d189c403c4a099b09a9066a1620a2"},(0,n.kt)("inlineCode",{parentName:"a"},"a6d3bf2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add tertiary hover and update css selectors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca069484da914520c92f7d67ac92c476ff2ee4a2"},(0,n.kt)("inlineCode",{parentName:"a"},"ca06948"))),(0,n.kt)("li",{parentName:"ul"},"change(fonts): updated font sizes with values given in figma ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4b0ae48ab140d8bbbf6ccbf46eda8d957195ca50"},(0,n.kt)("inlineCode",{parentName:"a"},"4b0ae48"))),(0,n.kt)("li",{parentName:"ul"},"change(style): color, space and adjust line-height as described in docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3366da262ba2dc1c34f57964accf4d6ef6ed37e1"},(0,n.kt)("inlineCode",{parentName:"a"},"3366da2"))),(0,n.kt)("li",{parentName:"ul"},"change(headings): only h2-h6 get tertiary color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d81308c4c0d52d5610a922146f5b426d9eaf323"},(0,n.kt)("inlineCode",{parentName:"a"},"7d81308"))),(0,n.kt)("li",{parentName:"ul"},"change(site): removed Archivo import as we should only use Roboto font ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a6af0564667075d2012c114acb2ad8e1f39b926f"},(0,n.kt)("inlineCode",{parentName:"a"},"a6af056"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): use tertiary color for headings and body color mirroring the design system styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/145fe7348a19b51784a2879225d1b71a642eed45"},(0,n.kt)("inlineCode",{parentName:"a"},"145fe73"))),(0,n.kt)("li",{parentName:"ul"},"change(fonts): modified headings font size as well as line height ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f0771ea1942b6ef436a03c256491a690a52d7413"},(0,n.kt)("inlineCode",{parentName:"a"},"f0771ea"))),(0,n.kt)("li",{parentName:"ul"},"change(fonts): updated font sizes with values given in figma ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f16eef7128ed4f2e7fe97b1ec77f651dc062b771"},(0,n.kt)("inlineCode",{parentName:"a"},"f16eef7"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): use Roboto font from google fonts also for docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/adca8e911faac2d541eb2b9fecf1d9db5b8f9b4c"},(0,n.kt)("inlineCode",{parentName:"a"},"adca8e9"))),(0,n.kt)("li",{parentName:"ul"},"change(headers): added headerColor variable so that thematic sites can easily choose another heading color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f09d2c5e95e82077cc7dfef43a5c56fc73d435c3"},(0,n.kt)("inlineCode",{parentName:"a"},"f09d2c5"))),(0,n.kt)("li",{parentName:"ul"},"change(fonts): typo fixes for typography section of docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cae4b02b20ff578f5cad7c4238c36baa3cae545a"},(0,n.kt)("inlineCode",{parentName:"a"},"cae4b02"))),(0,n.kt)("li",{parentName:"ul"},"change(fonts): modified footer and header values afer global font size changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f160d354b36dc2bee0707b6d63097d5f08408abe"},(0,n.kt)("inlineCode",{parentName:"a"},"f160d35"))),(0,n.kt)("li",{parentName:"ul"},"refactor(iconCards): run prettier ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fe84e46adbc385098385120d14e7583b890db027"},(0,n.kt)("inlineCode",{parentName:"a"},"fe84e46"))),(0,n.kt)("li",{parentName:"ul"},"change(typography): inherit header colors with @headerColor variable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91d93577772534f67bb74df0c9ed260bbaccdd4c"},(0,n.kt)("inlineCode",{parentName:"a"},"91d9357"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumb): use tertiary color also for breadcrumb ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5cbd44bcabae36bcb99a1e987d701e2ea75434b"},(0,n.kt)("inlineCode",{parentName:"a"},"c5cbd44"))),(0,n.kt)("li",{parentName:"ul"},"change(heading): on homepage on the first hero set font size to h1 and inherit color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5711096e45c57b0c3c871f8dcf870c05405d217d"},(0,n.kt)("inlineCode",{parentName:"a"},"5711096"))),(0,n.kt)("li",{parentName:"ul"},"refactor(carousel): update card titles to display styling fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/edd966b5648be51f2d4056c68489648574506656"},(0,n.kt)("inlineCode",{parentName:"a"},"edd966b"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): use the tertiary color for body and heading colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/11c4ed4683df4527ce79155bc65424789e3864af"},(0,n.kt)("inlineCode",{parentName:"a"},"11c4ed4"))),(0,n.kt)("li",{parentName:"ul"},"change(typography): modified lineheight-0 after headers now use 1.2 instead of 1.25 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/04d78a8b0094d9187548e1e3b16d6fbf2248821c"},(0,n.kt)("inlineCode",{parentName:"a"},"04d78a8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add links to cards and replace description with title in carousel ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0258737d26bbb3015ee6222ec878e0477001f615"},(0,n.kt)("inlineCode",{parentName:"a"},"0258737")))),(0,n.kt)("h4",{id:"\ufe0f-others-31"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feature(heading): and cards refactoring #227 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/334fbda2d5b751858d4cc8cae832ca7f5c1ad6c2"},(0,n.kt)("inlineCode",{parentName:"a"},"334fbda"))),(0,n.kt)("li",{parentName:"ul"},"Update package.json ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3870cf3265f0dab4e181c94a6657b9fa408bf186"},(0,n.kt)("inlineCode",{parentName:"a"},"3870cf3"))),(0,n.kt)("li",{parentName:"ul"},"Header refactor 153536 #226 from eea/header-refactor-153536 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87a6fe73211eb028861e099a67e90d365c5111ea"},(0,n.kt)("inlineCode",{parentName:"a"},"87a6fe7"))),(0,n.kt)("li",{parentName:"ul"},"feature(item): icon is now stackable moving the icon on top #220 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b716acfc850345d666d99840445798cdae201a63"},(0,n.kt)("inlineCode",{parentName:"a"},"b716acf")))),(0,n.kt)("h3",{id:"076---2022-08-15"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.7.5...0.7.6"},"0.7.6")," - 2022-08-15"),(0,n.kt)("h4",{id:"-enhancements-32"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(footer): Footer updates 147837 #225 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fa9ae580c7fd45fb4983672167cb5b0b33cc6279"},(0,n.kt)("inlineCode",{parentName:"a"},"fa9ae58"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): initial redesign of main section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8e85617157cdc31a7470acfcd72b85d8fadd1bce"},(0,n.kt)("inlineCode",{parentName:"a"},"8e85617"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): restructure theme sites logo columns ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dcba45a0bfd832c7d5d1e092db8ea4040eceda57"},(0,n.kt)("inlineCode",{parentName:"a"},"dcba45a"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): set actions before thematic section on mobile ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/db25f966a214c94677192215181453e9d59ca957"},(0,n.kt)("inlineCode",{parentName:"a"},"db25f96"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): fix missing key warning from react dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/77f72d5bdc719805a6314058c741387ee7155d28"},(0,n.kt)("inlineCode",{parentName:"a"},"77f72d5"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): Footer updates 147837 #222 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32fed231f1209caeddb18e0bb75d670f20bafb88"},(0,n.kt)("inlineCode",{parentName:"a"},"32fed23")))),(0,n.kt)("h3",{id:"075---2022-08-11"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.7.3...0.7.5"},"0.7.5")," - 2022-08-11"),(0,n.kt)("h4",{id:"-enhancements-33"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(megamenu): mobile improvements with See all links, active elements and non accordion children #224 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6767b99fea3925b35e9dede0a67ea90242e5e730"},(0,n.kt)("inlineCode",{parentName:"a"},"6767b99"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): render accordion only if children have children ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/be63ce2a8e240eac26eedeff0ca104813afbc6b3"},(0,n.kt)("inlineCode",{parentName:"a"},"be63ce2"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): mobile menu design tweaks as seen in latest figma ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/26d74dc063f0b3f8d541c714a10038d79145047e"},(0,n.kt)("inlineCode",{parentName:"a"},"26d74dc"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): removed icon from at a change menu items and they are no longer bold as requested ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/043e77219979711d2f25845c6811b546e791fbf7"},(0,n.kt)("inlineCode",{parentName:"a"},"043e772"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): reset first level panels after each item pass ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/175351bdc9bab5c2d02b2717c24071ba62d4b924"},(0,n.kt)("inlineCode",{parentName:"a"},"175351b"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): mobile menu improvements #223 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b3cabfe3ddc42c2ea39ae20d01bb6fd0db478ecc"},(0,n.kt)("inlineCode",{parentName:"a"},"b3cabfe"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): fixed key error warnings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/075bf0167554869e9fc2f4938c972112e4afa2f7"},(0,n.kt)("inlineCode",{parentName:"a"},"075bf01"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): handle default active sub accordion ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6192a9938b53522682953cb73d7ccfc6ef9c1aec"},(0,n.kt)("inlineCode",{parentName:"a"},"6192a99"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): enable active border only for items not titles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fb0b8696dd73cbf3083c3006a7cff5a1901a6bac"},(0,n.kt)("inlineCode",{parentName:"a"},"fb0b869")))),(0,n.kt)("h4",{id:"\ufe0f-others-32"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Update package.json ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e21e00dc1e0b54daef2c71311a9da709bc1f7e6d"},(0,n.kt)("inlineCode",{parentName:"a"},"e21e00d")))),(0,n.kt)("h3",{id:"073---2022-08-04"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.7.2...0.7.3"},"0.7.3")," - 2022-08-04"),(0,n.kt)("h4",{id:"-enhancements-34"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(megamenu): added icon on mega menu header section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d0ad4d80fc4941e0cdbd8a2d81415387f86efc1c"},(0,n.kt)("inlineCode",{parentName:"a"},"d0ad4d8")))),(0,n.kt)("h3",{id:"072---2022-08-03"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.7.1...0.7.2"},"0.7.2")," - 2022-08-03"),(0,n.kt)("h4",{id:"-bug-fixes-25"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(contentBox): z-index of content hidden by bg when using content-box-inner ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5a7dac923d648d8fe9c9a9cbb8001969d32aea2"},(0,n.kt)("inlineCode",{parentName:"a"},"c5a7dac")))),(0,n.kt)("h4",{id:"\ufe0f-others-33"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Set focus on search input field in the popup on click ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d12c05106d9b95df1885ffa12cb284a0e50e0dfd"},(0,n.kt)("inlineCode",{parentName:"a"},"d12c051"))),(0,n.kt)("li",{parentName:"ul"},"Make cypress tests work with both slate and draft selectors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4d8e5b1d7719637a46eac8232891fc5ed1f51b6f"},(0,n.kt)("inlineCode",{parentName:"a"},"4d8e5b1")))),(0,n.kt)("h3",{id:"071---2022-08-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.7.0...0.7.1"},"0.7.1")," - 2022-08-01"),(0,n.kt)("h3",{id:"070---2022-08-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.6.5...0.7.0"},"0.7.0")," - 2022-08-01"),(0,n.kt)("h4",{id:"-new-features-18"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(accordion,buttons): primary, secondary and tertiary variations #209 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c34617f7a7d7b6b7568c3127f4ae0f52bd57cf8a"},(0,n.kt)("inlineCode",{parentName:"a"},"c34617f")))),(0,n.kt)("h4",{id:"-bug-fixes-26"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(megamenu): key warning errors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ecd27921546204dfa4aa23d25188876e52cda7a"},(0,n.kt)("inlineCode",{parentName:"a"},"4ecd279"))),(0,n.kt)("li",{parentName:"ul"},"fix(container): add padding also for block editors when we are on the add page not just edit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b857aad7855c30c5059b0f0f7c0f720826a71aa7"},(0,n.kt)("inlineCode",{parentName:"a"},"b857aad"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): bump opacity of gradient class to get rid of green hue of header text ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2011b40d384ae5b54a0525e6d9afc88c02f6ca90"},(0,n.kt)("inlineCode",{parentName:"a"},"2011b40"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): remove console log ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3a200233609bbcea39d8e519dc292a132a98aaa3"},(0,n.kt)("inlineCode",{parentName:"a"},"3a20023")))),(0,n.kt)("h4",{id:"-enhancements-35"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(callToAction): add tertiary variant and restructure exports ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac6695ab3066c41739ec4852f0ec3c3bb6cea346"},(0,n.kt)("inlineCode",{parentName:"a"},"ac6695a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(accordion): add color variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3504c15cc861803dc263fb2ad3b6a478043ced33"},(0,n.kt)("inlineCode",{parentName:"a"},"3504c15"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): WIP bringing back rendering of item with callback and path modification ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e43d4340ea82afde950e5fee44a76119060fc28"},(0,n.kt)("inlineCode",{parentName:"a"},"6e43d43"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): add slide down transition and update targetRefs on close ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/96671574f5f7dd992269c42e509598f62bba516d"},(0,n.kt)("inlineCode",{parentName:"a"},"9667157"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): use renderMenuItem in order to render menu items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9ed5cbdf120ee2c92e5f14c09e5289a5abe3f8b0"},(0,n.kt)("inlineCode",{parentName:"a"},"9ed5cbd"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): replaced eionet logo with an svg variant and tweaked size of eionet to match size of eea logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32ce4623ad454edec864ad6c8b45cbf99465bede"},(0,n.kt)("inlineCode",{parentName:"a"},"32ce462"))),(0,n.kt)("li",{parentName:"ul"},"refactor(callToAction): update tertiary state colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/159668ac526a98032392bcbd2c115dc448193152"},(0,n.kt)("inlineCode",{parentName:"a"},"159668a"))),(0,n.kt)("li",{parentName:"ul"},"change(accordion): style default accordion using the grey from semantic ui ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e24907df397457bd9704905aa29ea5d7e1d396cd"},(0,n.kt)("inlineCode",{parentName:"a"},"e24907d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(accordion): add variations and create a default export ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a9c68ffe933c9d700e46db3e0cbbd9e3820c7c7"},(0,n.kt)("inlineCode",{parentName:"a"},"4a9c68f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(colors): add tertiary shades for element states ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1e24a7e13b50f1ee7bd9bd44f3b2eb8e4460c691"},(0,n.kt)("inlineCode",{parentName:"a"},"1e24a7e"))),(0,n.kt)("li",{parentName:"ul"},"change(tests): try to modify tests to use slate instead of draft ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a2e248593433a7a8bf612008c12a3a20a0049d86"},(0,n.kt)("inlineCode",{parentName:"a"},"a2e2485"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): set active class on storybook list items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/112bff195cd07e789b352ae239a148a168b4d877"},(0,n.kt)("inlineCode",{parentName:"a"},"112bff1"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): add border for active element of menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5e7dfa539dc0d126dfb057ac2d293c94b31561bb"},(0,n.kt)("inlineCode",{parentName:"a"},"5e7dfa5"))),(0,n.kt)("li",{parentName:"ul"},"change(package): condition modification of navDepth settings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dd21dadf34f87f08223be3b98c06e7a2f0714326"},(0,n.kt)("inlineCode",{parentName:"a"},"dd21dad"))),(0,n.kt)("li",{parentName:"ul"},"change(mega menu): use non variable to fix build of volto-kitkat-frontend ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ecd652405ba616c9defc86fd793f8c066c0af1e"},(0,n.kt)("inlineCode",{parentName:"a"},"3ecd652"))),(0,n.kt)("li",{parentName:"ul"},"change(header): prefix mega-menu active class for adding border ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32898cb19c20ee7696c51b99cd9df25a333ae6e9"},(0,n.kt)("inlineCode",{parentName:"a"},"32898cb"))),(0,n.kt)("li",{parentName:"ul"},"change(tests): use data-slate-editor instead of contents that was found in draft js instead of slate ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1e0413cf117c098b188e00249c323f2f718b9299"},(0,n.kt)("inlineCode",{parentName:"a"},"1e0413c"))),(0,n.kt)("li",{parentName:"ul"},"change(stories): hide variant control from button link story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/43f8c412f6762edbed9c60e613736d5b60677cd1"},(0,n.kt)("inlineCode",{parentName:"a"},"43f8c41"))),(0,n.kt)("li",{parentName:"ul"},"change(stories): hide variant control from button link story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aea712668331f5681028d961b42a05655f1113d3"},(0,n.kt)("inlineCode",{parentName:"a"},"aea7126")))),(0,n.kt)("h4",{id:"\ufe0f-others-34"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feature(theme): added context navigation component story and default style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5a6955fe935cf6a07f6593164014ed4c9e77d88f"},(0,n.kt)("inlineCode",{parentName:"a"},"5a6955f"))),(0,n.kt)("li",{parentName:"ul"},"feature(megamenu): open default accordions on mobile navigation based on pathname ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cc299c1047f96aa5f85cdc4bb8bb9b3b4fb9ca5e"},(0,n.kt)("inlineCode",{parentName:"a"},"cc299c1"))),(0,n.kt)("li",{parentName:"ul"},"fix eslint warnings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3b30282ea4df59f2d05644cae5c1d703b4dc48b3"},(0,n.kt)("inlineCode",{parentName:"a"},"3b30282"))),(0,n.kt)("li",{parentName:"ul"},"bump release version to 0.7.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fa82cbd7d50765c322bc5c7c58abb5675e0aadad"},(0,n.kt)("inlineCode",{parentName:"a"},"fa82cbd"))),(0,n.kt)("li",{parentName:"ul"},"Theme fixes, mega menu selected element both in desktop and mobile #211 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4827292a9badb02f178b7431cc63e11070784ea"},(0,n.kt)("inlineCode",{parentName:"a"},"b482729"))),(0,n.kt)("li",{parentName:"ul"},"feature(mega-menu): added menu slide down animation #208 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4360d0ef570fbfcc9989170219f7826e5ed780cf"},(0,n.kt)("inlineCode",{parentName:"a"},"4360d0e")))),(0,n.kt)("h3",{id:"065---2022-07-06"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.6.1...0.6.5"},"0.6.5")," - 2022-07-06"),(0,n.kt)("h4",{id:"-bug-fixes-27"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(header): double click to close dropdown is no longer required ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8a2ed0d1e671d12239ecaf250e68b3187c12a53"},(0,n.kt)("inlineCode",{parentName:"a"},"b8a2ed0"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): menu generation when atAGlance isn't found ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d68b03c05f7671e7ea154efe0199c29a3734fbcf"},(0,n.kt)("inlineCode",{parentName:"a"},"d68b03c"))),(0,n.kt)("li",{parentName:"ul"},"fix(menu): removed minHeight that enlarged the global menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/133be1e43d9b7778fd94388629400c5f2b707ff4"},(0,n.kt)("inlineCode",{parentName:"a"},"133be1e"))),(0,n.kt)("li",{parentName:"ul"},"fix(hero): image dimensions when full width and height isn't enabled ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4114f731cce63dc520bfd00cd487943181cec2ee"},(0,n.kt)("inlineCode",{parentName:"a"},"4114f73"))),(0,n.kt)("li",{parentName:"ul"},"fix(contentBox): removed negative z-index that hid fullwidth bg color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bd60faff53205da95d94930517f2ac830ec523d1"},(0,n.kt)("inlineCode",{parentName:"a"},"bd60faf")))),(0,n.kt)("h4",{id:"-enhancements-36"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(hero): tweaked hero block height and padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/994b6f8943c061657792df8adcbdee5da487ce43"},(0,n.kt)("inlineCode",{parentName:"a"},"994b6f8"))),(0,n.kt)("li",{parentName:"ul"},"change(item): tweak size and padding of icon when used inside item ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dbdef191e70bf59dcfddf63c8f9f9a1343266a59"},(0,n.kt)("inlineCode",{parentName:"a"},"dbdef19"))),(0,n.kt)("li",{parentName:"ul"},"change(typography): updated letterspacing values and clarified values used for certain type tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8a13bf8b3691d288209532842fb2c80962d652c0"},(0,n.kt)("inlineCode",{parentName:"a"},"8a13bf8"))),(0,n.kt)("li",{parentName:"ul"},"change(item): enable theming for icon and text color and added tertiary option ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d4444feedd1cd7e6e8f8da630b4b53a19050d1b"},(0,n.kt)("inlineCode",{parentName:"a"},"6d4444f"))),(0,n.kt)("li",{parentName:"ul"},"change(header): top section chevron sizes and margin as requested in enhancements document ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b307c74a671c10a5a6703dcb2126c3c36679c6f5"},(0,n.kt)("inlineCode",{parentName:"a"},"b307c74"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): add underline to links when applied to headers and use tertiary color by default ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/874f956c61e65ddbb6a240865f3946bb84247712"},(0,n.kt)("inlineCode",{parentName:"a"},"874f956"))),(0,n.kt)("li",{parentName:"ul"},"change(utilities): wrap in quotes h2 and h3 of quoted-wrapper ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8aa471604fb127cfa535373bb90a44b4204dd0f4"},(0,n.kt)("inlineCode",{parentName:"a"},"8aa4716"))),(0,n.kt)("li",{parentName:"ul"},"change(package): bump package version to 0.6.5 denoting bug fixes release ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0585aebaeb9e3483ba230110d99a1a875590ad66"},(0,n.kt)("inlineCode",{parentName:"a"},"0585aeb")))),(0,n.kt)("h3",{id:"061---2022-07-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.6.0...0.6.1"},"0.6.1")," - 2022-07-01"),(0,n.kt)("h4",{id:"-new-features-19"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(UnderlinedTitle): create story and necessary utilities ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8beb56b64ca76fb9f0f6df0f3554e64449a64868"},(0,n.kt)("inlineCode",{parentName:"a"},"8beb56b"))),(0,n.kt)("li",{parentName:"ul"},"feat(headers): added underlined titles with theming support ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af675616f9e002458501cf8b90742514153a298f"},(0,n.kt)("inlineCode",{parentName:"a"},"af67561")))),(0,n.kt)("h4",{id:"-enhancements-37"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(heading): move underline story and update controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2c9bfd279eafc44435d223be326f9496856c2154"},(0,n.kt)("inlineCode",{parentName:"a"},"2c9bfd2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(underlineTitle): add content box for different variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/087891535059d6c2d7d2c2accded20f6ba601bb5"},(0,n.kt)("inlineCode",{parentName:"a"},"0878915"))),(0,n.kt)("li",{parentName:"ul"},"refactor(underlinedTitle): add control for changing heading size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/211f5158bff2b437aac60f26ba63f9adb6be540a"},(0,n.kt)("inlineCode",{parentName:"a"},"211f515"))),(0,n.kt)("li",{parentName:"ul"},"refactor(underlinedTitle): Restore text variation dropdown control ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bd8c61129d2c80475af8d0e9310412d5c3a82169"},(0,n.kt)("inlineCode",{parentName:"a"},"bd8c611"))),(0,n.kt)("li",{parentName:"ul"},"refactor(utilities): add color variation for headings and text ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e3a779ec4fa3b712fcd32124f6f83ab784d2223"},(0,n.kt)("inlineCode",{parentName:"a"},"7e3a779"))),(0,n.kt)("li",{parentName:"ul"},"refactor(utilities): update border bottom utility and restore line height for headings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7fe4a7b9fee579d213fe3945a4e548ff089784bd"},(0,n.kt)("inlineCode",{parentName:"a"},"7fe4a7b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(headings): update the line height of headers according to docusaurus instructions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9da19b3e1ea1fd93431e00edf3dc9a443e94f27a"},(0,n.kt)("inlineCode",{parentName:"a"},"9da19b3")))),(0,n.kt)("h4",{id:"-internal-changes-13"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(countup): package for statistics ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/26fcd09bbd8d44119d5ca957542863be8c64836b"},(0,n.kt)("inlineCode",{parentName:"a"},"26fcd09")))),(0,n.kt)("h3",{id:"060---2022-07-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.5.5...0.6.0"},"0.6.0")," - 2022-07-01"),(0,n.kt)("h4",{id:"-bug-fixes-28"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(item): adjust the container in stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a848c46b5bf3153ec993a21a530e120bae872407"},(0,n.kt)("inlineCode",{parentName:"a"},"a848c46"))),(0,n.kt)("li",{parentName:"ul"},"fix(tag): align start for tags on mobile, update path for Tag List and add containers ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b9de8452c42ed6d16028ce147f2d7a062b895d67"},(0,n.kt)("inlineCode",{parentName:"a"},"b9de845"))),(0,n.kt)("li",{parentName:"ul"},"fix(item): update image width & height on mobiles and add 3 line clamp for description ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0cd2c46c945ff85b55183994990fae9cf450f3d1"},(0,n.kt)("inlineCode",{parentName:"a"},"0cd2c46"))),(0,n.kt)("li",{parentName:"ul"},"fix(pageheader): metadata font size on mobile to be readable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0a9b1fa7db6f0b11265f9eb4d28f25b23bedc79a"},(0,n.kt)("inlineCode",{parentName:"a"},"0a9b1fa"))),(0,n.kt)("li",{parentName:"ul"},"fix(breadcrumb): fixed variable name for breadcrumb item ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2b547eb43e0db4aa9bb63b4e4ba7f541f357fbd0"},(0,n.kt)("inlineCode",{parentName:"a"},"2b547eb")))),(0,n.kt)("h4",{id:"-enhancements-38"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(Item):create item story with custom default class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/069ae02a7cc2b15b7e6732e46f52d07eaa4502b1"},(0,n.kt)("inlineCode",{parentName:"a"},"069ae02"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pagination): add pastanage menu overrides and remove any eea theme css from default story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/508081090baaeb455130c760c6c0e7e23972d84a"},(0,n.kt)("inlineCode",{parentName:"a"},"5080810"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): update variables from px to rem ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/30eed78c170e5719ba4fb85c3a171db3f97d63c8"},(0,n.kt)("inlineCode",{parentName:"a"},"30eed78"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Item):add default item mobile padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/35184655e3225b8ad63626c8e521b5dcf59eaa3b"},(0,n.kt)("inlineCode",{parentName:"a"},"3518465"))),(0,n.kt)("li",{parentName:"ul"},"change(site): added fixes from custom ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0fe4d80586c8877d58905ec40aa7df19c2f4e32f"},(0,n.kt)("inlineCode",{parentName:"a"},"0fe4d80"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Pagination): add default pagination stopry and rename previous as Secondary ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a5e3e13b40d4d1d0c96f1efaa3a0c326d60c6d93"},(0,n.kt)("inlineCode",{parentName:"a"},"a5e3e13"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pagination): comment out secondary pagination and its styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bcf4cff1cff490718751475354b8fb32da174383"},(0,n.kt)("inlineCode",{parentName:"a"},"bcf4cff"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tags): remove content class and add flex wrap ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d6333ca7e61a588d8ffe4d0d2e02005c0aa12379"},(0,n.kt)("inlineCode",{parentName:"a"},"d6333ca"))),(0,n.kt)("li",{parentName:"ul"},"change(logo): use a real svg logo for white eea logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3b80dc7698c3dbab5d3834cc62f5102c2ace0166"},(0,n.kt)("inlineCode",{parentName:"a"},"3b80dc7"))),(0,n.kt)("li",{parentName:"ul"},"change(header): show eea information systems on tablet as well ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce82cebb554eb11a35ea2b3ee0c62bc645716476"},(0,n.kt)("inlineCode",{parentName:"a"},"ce82ceb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): update letter spacing tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f8753b7527b1bf7271102666a8662a74b2b1775"},(0,n.kt)("inlineCode",{parentName:"a"},"5f8753b"))),(0,n.kt)("li",{parentName:"ul"},"change(letterspacing): updated letter spacing positive values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b31818f292ce7ce8711084116a7b4df78cca33f0"},(0,n.kt)("inlineCode",{parentName:"a"},"b31818f"))),(0,n.kt)("li",{parentName:"ul"},"change(pageheader): add bottom margin on mobile for sharing dropdown actions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d3cda4732ec94dac91b36ef10014fbbe08a0a470"},(0,n.kt)("inlineCode",{parentName:"a"},"d3cda47"))),(0,n.kt)("li",{parentName:"ul"},"change(pageheader): removed blogger, reddit and stumbleupon sharing links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e4acc4e83c120cda59d94f04867a53e21bf322ab"},(0,n.kt)("inlineCode",{parentName:"a"},"e4acc4e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Item): add default item background color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c978c8d05355065466a8a661844237a9df103b94"},(0,n.kt)("inlineCode",{parentName:"a"},"c978c8d"))),(0,n.kt)("li",{parentName:"ul"},"change(package): bump package version ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f01f72ba6b09b6aae00c54e446bafddb48c4cd1"},(0,n.kt)("inlineCode",{parentName:"a"},"1f01f72")))),(0,n.kt)("h4",{id:"-internal-changes-14"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(item): update item image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e585e9d8c85a3627696b55c0505e29e8a8c33f7f"},(0,n.kt)("inlineCode",{parentName:"a"},"e585e9d")))),(0,n.kt)("h4",{id:"-documentation-changes-13"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(colors): token usage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c433ec6fcf190f85ab1dd81ea3e63eeb381d0c28"},(0,n.kt)("inlineCode",{parentName:"a"},"c433ec6"))),(0,n.kt)("li",{parentName:"ul"},"docs(Docusaurus): typography and spacing updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48d1269dce396aec26db1d1e2f777851a26eaa81"},(0,n.kt)("inlineCode",{parentName:"a"},"48d1269"))),(0,n.kt)("li",{parentName:"ul"},"docs(Docusaurus): various fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a972a31f7932d29d61a46da251c0c98994516365"},(0,n.kt)("inlineCode",{parentName:"a"},"a972a31"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/66d95e4fee695a20de47f5476712034f9f07f4a8"},(0,n.kt)("inlineCode",{parentName:"a"},"66d95e4")))),(0,n.kt)("h4",{id:"\ufe0f-others-35"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Tabs block custom border left/top ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca4cce05ddb603a26d729dfe31f0f11fda7563fb"},(0,n.kt)("inlineCode",{parentName:"a"},"ca4cce0"))),(0,n.kt)("li",{parentName:"ul"},"Fix sidebar tabs in Volto CSS ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c287db5abbfe068d4b255c41fd58d0433d2640c4"},(0,n.kt)("inlineCode",{parentName:"a"},"c287db5")))),(0,n.kt)("h3",{id:"055---2022-06-23"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.5.4...0.5.5"},"0.5.5")," - 2022-06-23"),(0,n.kt)("h4",{id:"-bug-fixes-29"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(contentBox): color of cards when inside content-boxes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/76a452031473f43928dee1d3ee705d06101e6a21"},(0,n.kt)("inlineCode",{parentName:"a"},"76a4520")))),(0,n.kt)("h4",{id:"-enhancements-39"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(homepage): moved fixes of homepage to custom and colored carousel arrow ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0a226ef3f5d328d45513764bec02d58241417db0"},(0,n.kt)("inlineCode",{parentName:"a"},"0a226ef")))),(0,n.kt)("h3",{id:"054---2022-06-16"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.5.3...0.5.4"},"0.5.4")," - 2022-06-16"),(0,n.kt)("h4",{id:"-bug-fixes-30"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(block-style): Content box preview in sidebar ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6362766f5e8dabf778e3864d2bb08966a55fc078"},(0,n.kt)("inlineCode",{parentName:"a"},"6362766"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): ensure transparency goes as high as the search icon ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4470e132e1e70fba3fdfb33fc63a1cc9d62700e8"},(0,n.kt)("inlineCode",{parentName:"a"},"4470e13")))),(0,n.kt)("h4",{id:"-enhancements-40"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(contentBox): add background as before element instead of using full-width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e0a5962c1b9cb0d3ef9a8d7b7208eded34eb3ce"},(0,n.kt)("inlineCode",{parentName:"a"},"7e0a596"))),(0,n.kt)("li",{parentName:"ul"},"change(content-box): content box links are now underlined ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f7976f50f5807a884522d6dba871a2757a1c5a98"},(0,n.kt)("inlineCode",{parentName:"a"},"f7976f5"))),(0,n.kt)("li",{parentName:"ul"},"change(homepage): added fixes from custom ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c3e03331d328f4fd7c6689f93bc1f1156013b8a9"},(0,n.kt)("inlineCode",{parentName:"a"},"c3e0333"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): add margin top with the height of the top section on edit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fefa6bb0f513e221ddb587f081c0e7d0c3067dfd"},(0,n.kt)("inlineCode",{parentName:"a"},"fefa6bb"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): fix default card color when inside content-boxes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6fdf3aabf9515289b36a5822e21edc5d282c4536"},(0,n.kt)("inlineCode",{parentName:"a"},"6fdf3aa"))),(0,n.kt)("li",{parentName:"ul"},"change(container): removed override of content-box-inner container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/66fe7d45adc631c3ebf0e8dd11de19d7ff60b894"},(0,n.kt)("inlineCode",{parentName:"a"},"66fe7d4")))),(0,n.kt)("h3",{id:"053---2022-06-16"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.5.2...0.5.3"},"0.5.3")," - 2022-06-16"),(0,n.kt)("h4",{id:"-bug-fixes-31"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(homepage): hero and homepage fixes for #151156 #198 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/43d4efc508750e0e9cbb93b9bffc3721be452c5a"},(0,n.kt)("inlineCode",{parentName:"a"},"43d4efc"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): fixed top section width on edit page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce5898b5ee41ea6959a2c454b3fb98216d71feb3"},(0,n.kt)("inlineCode",{parentName:"a"},"ce5898b")))),(0,n.kt)("h4",{id:"-enhancements-41"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(hero): added min height to hero-block-image-wrapper ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3cc37c027597573281710c9db98c687057d261dd"},(0,n.kt)("inlineCode",{parentName:"a"},"3cc37c0"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): spaced hero block has a 3rem margin top and bottom ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c463b033dda601bfd475b282bc0003200a053d45"},(0,n.kt)("inlineCode",{parentName:"a"},"c463b03"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): added extra top margin on hero-block-body from tablet and up within homepage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/64142c3c45f6a8ea6502842055a2341dcf16088c"},(0,n.kt)("inlineCode",{parentName:"a"},"64142c3"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): tweak min height of hero block ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e1271b4b5fdcd8205f0bec8b88ab9ae31f62251f"},(0,n.kt)("inlineCode",{parentName:"a"},"e1271b4"))),(0,n.kt)("li",{parentName:"ul"},"change(card,contentBox): use inherit for text color to inherit black from body ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c1ba3b6ddc16ddc7394aba8d78cad73b5a8c34cb"},(0,n.kt)("inlineCode",{parentName:"a"},"c1ba3b6"))),(0,n.kt)("li",{parentName:"ul"},"change(container): on section-edit modify only left and right padding values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fe6e3ec764643ec01e20ae9dbdde921774ef04cd"},(0,n.kt)("inlineCode",{parentName:"a"},"fe6e3ec"))),(0,n.kt)("li",{parentName:"ul"},"change(utilities): bump z-index of overlay class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ede3209556b620d2252bb03d4c994a92b6708fd2"},(0,n.kt)("inlineCode",{parentName:"a"},"ede3209"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): fixed variable reference for margin of body from homepage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/092b90b2a902b71cc96132ca3c96108edda56342"},(0,n.kt)("inlineCode",{parentName:"a"},"092b90b")))),(0,n.kt)("h3",{id:"052---2022-06-14"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.5.1...0.5.2"},"0.5.2")," - 2022-06-14"),(0,n.kt)("h4",{id:"-new-features-20"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(contentBox) : add new Content Box component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ebbb47fe685f9809aa3572263be376d9688371e"},(0,n.kt)("inlineCode",{parentName:"a"},"2ebbb47"))),(0,n.kt)("li",{parentName:"ul"},"feat(ContentBox): Add primary, secondary, tertiary themes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87cb2fe7e4cd5c2872299756f493e371abcbb05f"},(0,n.kt)("inlineCode",{parentName:"a"},"87cb2fe"))),(0,n.kt)("li",{parentName:"ul"},"feat(ContentBox): Update storybook with available themes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93b26b2f5f1d627aa8049df61257499e4798dd79"},(0,n.kt)("inlineCode",{parentName:"a"},"93b26b2")))),(0,n.kt)("h4",{id:"-enhancements-42"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(contentBox): restructure the component to be more flexible ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f0d2de67e43fafa10052871f99ac841c83cf8157"},(0,n.kt)("inlineCode",{parentName:"a"},"f0d2de6")))),(0,n.kt)("h4",{id:"-internal-changes-15"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(contentBox) : add lint changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5aaf740594f0001b1672bb6dc18d973f55c881f0"},(0,n.kt)("inlineCode",{parentName:"a"},"5aaf740")))),(0,n.kt)("h4",{id:"\ufe0f-others-36"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"perf(eol): change to lf ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/78b2955ff73d9436134d1a6399040b2d7c7f5714"},(0,n.kt)("inlineCode",{parentName:"a"},"78b2955"))),(0,n.kt)("li",{parentName:"ul"},"Cleanup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2b128dface95b560588a343f1ddf7bbaf3efb320"},(0,n.kt)("inlineCode",{parentName:"a"},"2b128df")))),(0,n.kt)("h3",{id:"051---2022-06-13"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.5.0...0.5.1"},"0.5.1")," - 2022-06-13"),(0,n.kt)("h4",{id:"-enhancements-43"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(header): changed homepage text color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/64ce8b61f8f2150513e09bf2926b48aa2ae1071c"},(0,n.kt)("inlineCode",{parentName:"a"},"64ce8b6"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): added styles for adding dark overlay to hero ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bf1d292fecfa8a6b222558f0d93f48e19bf6b8ea"},(0,n.kt)("inlineCode",{parentName:"a"},"bf1d292"))),(0,n.kt)("li",{parentName:"ul"},"change(homepage): hide stagingBanner on homepage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fb6e319dd10f4d148cc8f3b33dafc43280a0254f"},(0,n.kt)("inlineCode",{parentName:"a"},"fb6e319"))),(0,n.kt)("li",{parentName:"ul"},"change(header): use variable for homepage hero-block padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/89ff3441f269281ffb3da32cd3e5c64715b3204b"},(0,n.kt)("inlineCode",{parentName:"a"},"89ff344"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): modified grey-4 color to point to a 10% shade from original color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b406283e61c7356bec9d453567cd1ccde496880d"},(0,n.kt)("inlineCode",{parentName:"a"},"b406283"))),(0,n.kt)("li",{parentName:"ul"},"change(header): added min-height for mega menu needed for 1 items menus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/18814f48fb743c88d05554e9a1773f8d85dec86c"},(0,n.kt)("inlineCode",{parentName:"a"},"18814f4"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): hero section block integration #192 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ea2f40583951016c164c9abdf22d8e809d207fe"},(0,n.kt)("inlineCode",{parentName:"a"},"4ea2f40")))),(0,n.kt)("h4",{id:"\ufe0f-others-37"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Add hero block style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fa39656fd661d8af95f483a6f33a08e4c93c42f1"},(0,n.kt)("inlineCode",{parentName:"a"},"fa39656"))),(0,n.kt)("li",{parentName:"ul"},"Add padding if hero block is not full-width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/808b83957d6a866cc31c928f414fa8fa5da517a1"},(0,n.kt)("inlineCode",{parentName:"a"},"808b839"))),(0,n.kt)("li",{parentName:"ul"},"Cleanup available languages ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0c490512a6a6524efe9a37b4b61ab0061a240abb"},(0,n.kt)("inlineCode",{parentName:"a"},"0c49051"))),(0,n.kt)("li",{parentName:"ul"},"Use 1.5 rem ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1125cd7c65332fc5961ffbbbd2d2ab6bcc8b1b5b"},(0,n.kt)("inlineCode",{parentName:"a"},"1125cd7")))),(0,n.kt)("h3",{id:"050---2022-06-11"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.4.5...0.5.0"},"0.5.0")," - 2022-06-11"),(0,n.kt)("h4",{id:"-new-features-21"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(hero): added storybook implementation of hero component #172 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/17b9d1693e31bf7b3b41ca84be7bd21f07065674"},(0,n.kt)("inlineCode",{parentName:"a"},"17b9d16"))),(0,n.kt)("li",{parentName:"ul"},"feat(hero): add hero block component and stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6019fc843ec14a8afc7558e92c2d4b4bb14ee199"},(0,n.kt)("inlineCode",{parentName:"a"},"6019fc8")))),(0,n.kt)("h4",{id:"-bug-fixes-32"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(header): Internal links in mega menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d8ca13558c3e8c336800791f2fea8a8d33a2b602"},(0,n.kt)("inlineCode",{parentName:"a"},"d8ca135"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): show active menu when clicking on children ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a54fa67a1a92e2ab4216e6d149f66e1ee53aab89"},(0,n.kt)("inlineCode",{parentName:"a"},"a54fa67"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): accessibility and dropdown possition fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/505ac36a27d86e620fb5af515a0b8b5979610f0a"},(0,n.kt)("inlineCode",{parentName:"a"},"505ac36"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): fix accessibility issue by David ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/783dcec0d140e6e6e568d0f82833dcbf8a5c7d3d"},(0,n.kt)("inlineCode",{parentName:"a"},"783dcec"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): dropdowns disappear on resize ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/52338fd3e711f4918612e052dc2034a8d9bd40bd"},(0,n.kt)("inlineCode",{parentName:"a"},"52338fd"))),(0,n.kt)("li",{parentName:"ul"},"fix(header-topdropdown): dedupe html elements for topdropdowns ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cd8a2a7ea091e81b736438f7c2a87c254af1b092"},(0,n.kt)("inlineCode",{parentName:"a"},"cd8a2a7"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): transparency class should apply on the current bg color or image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f9a0033c5538cb19f08f26cf28d47954cc52607d"},(0,n.kt)("inlineCode",{parentName:"a"},"f9a0033"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): mobile dropdown now visible ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/34371b436f2ec100f3920f78de49983ba16679b0"},(0,n.kt)("inlineCode",{parentName:"a"},"34371b4"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): dropdown disappears after window resize #116 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fc7dd8bd7911421fb734a696a2dd5d3ad3b652b0"},(0,n.kt)("inlineCode",{parentName:"a"},"fc7dd8b"))),(0,n.kt)("li",{parentName:"ul"},"fix(header-topdropdown): dedupe html dropdown elements for topdropdowns #115 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f10a7a8743a5fb2cecd0c3374ec9d894e914143f"},(0,n.kt)("inlineCode",{parentName:"a"},"f10a7a8")))),(0,n.kt)("h4",{id:"-enhancements-44"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): update mega menu in header component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2d1ce454553d116efa96288079b8b77649e10abb"},(0,n.kt)("inlineCode",{parentName:"a"},"2d1ce45"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update structure and variables of top bar ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af709094f94f0cc2e2309b1aedb376e45dc7f136"},(0,n.kt)("inlineCode",{parentName:"a"},"af70909"))),(0,n.kt)("li",{parentName:"ul"},"change(header): renamed mega menu items href attribute to url ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ed8144589f87a9ad219c97193863c999a72cb6d"},(0,n.kt)("inlineCode",{parentName:"a"},"3ed8144"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update main section and and add color variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2f0fd1de7c04eff4b2a9b62d03dd13a1b0d69bc"},(0,n.kt)("inlineCode",{parentName:"a"},"f2f0fd1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): minor updates on colors and widths ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a70129fd929fedb344a47e049cca94274e84a3b1"},(0,n.kt)("inlineCode",{parentName:"a"},"a70129f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero): add full-heigh control to adjust height ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a45cb7c599cdc11426207001e67d8f7d727233fe"},(0,n.kt)("inlineCode",{parentName:"a"},"a45cb7c"))),(0,n.kt)("li",{parentName:"ul"},"change(header): disable sticky setting until feature is more stable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1d7af954c85cb6a8a657c1625e4ae863e562346a"},(0,n.kt)("inlineCode",{parentName:"a"},"1d7af95"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero):make button variant and inverted different button controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e182ca9ecdb76507205d84f83cad6a79dd74a03"},(0,n.kt)("inlineCode",{parentName:"a"},"7e182ca"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header):main bar sticky on scroll up ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9c9e7c6f9651c0663a1eab1856d7324a73afb2de"},(0,n.kt)("inlineCode",{parentName:"a"},"9c9e7c6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(headings): update heading sizes for mobile ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19f3ccacaf2c744b5f5c2ec8635773de7ef0016b"},(0,n.kt)("inlineCode",{parentName:"a"},"19f3cca"))),(0,n.kt)("li",{parentName:"ul"},"change(header): hide first link(home) from header menu on site ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ae7f3b9385620eb3d840dd90f512e37cd8556a6d"},(0,n.kt)("inlineCode",{parentName:"a"},"ae7f3b9"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): typo correction and key setting on list.items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/96d2c4fbfa722d22a215e8d27f1400e65fe9476e"},(0,n.kt)("inlineCode",{parentName:"a"},"96d2c4f"))),(0,n.kt)("li",{parentName:"ul"},"change(header): use Link instead of a tag for menu items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9812b3fba7b8305399d6972daf135b8a2d88e876"},(0,n.kt)("inlineCode",{parentName:"a"},"9812b3f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add control for inverted logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/023ca45e6f263166211cbea0d63b1938d11221da"},(0,n.kt)("inlineCode",{parentName:"a"},"023ca45"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero): move quoted utility to h2 tag ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7376676b4875494f16c49945f6b5dac19c6b8009"},(0,n.kt)("inlineCode",{parentName:"a"},"7376676"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add link for menu title inside desktop mega menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24355d000b2bd808b2031cd2b78e60cafb9ad5b1"},(0,n.kt)("inlineCode",{parentName:"a"},"24355d0"))),(0,n.kt)("li",{parentName:"ul"},"refactor(utilities): update hex with color token ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8dc65ef55a62dcb32b6eb8a684524a8dc1fa6ba6"},(0,n.kt)("inlineCode",{parentName:"a"},"8dc65ef"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): and mega menu to latest spec #114 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/44fcf68be242f97ced852b28ac3ab820dc0e1045"},(0,n.kt)("inlineCode",{parentName:"a"},"44fcf68"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update search input and file endings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/afab36f96f245e197eff528cb1d9e6fea45bc7ba"},(0,n.kt)("inlineCode",{parentName:"a"},"afab36f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add control that toggles transparency class on main section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8d4bdb9c527f102ffd3718f32bf1a43309a9bb4"},(0,n.kt)("inlineCode",{parentName:"a"},"b8d4bdb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): restore union dropdown after implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e98bab497ee10ad89d2dfed76c7117b633206fe"},(0,n.kt)("inlineCode",{parentName:"a"},"7e98bab"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): minor responsive fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/16a000634505c9e8f8b310860a30b62798a0fb87"},(0,n.kt)("inlineCode",{parentName:"a"},"16a0006"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero): align hero's text and meta seperately ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4fa958f7c7cc6d331a8eb7aaf25dc44d6cd3632a"},(0,n.kt)("inlineCode",{parentName:"a"},"4fa958f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero):add button variant controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f362a7b2ec273131fa0876f23b74c740c7217b3a"},(0,n.kt)("inlineCode",{parentName:"a"},"f362a7b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update search input ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/368962eabb668e2ec1bdcd18ae81658e7b1d911b"},(0,n.kt)("inlineCode",{parentName:"a"},"368962e"))),(0,n.kt)("li",{parentName:"ul"},"change(header): mark top level active menu item ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/665c449bc2667cc1471a4b97923c897ad3506792"},(0,n.kt)("inlineCode",{parentName:"a"},"665c449"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero):prettier & style changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d84688440417a430afd9fd24f4c8cfeef0121203"},(0,n.kt)("inlineCode",{parentName:"a"},"d846884"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add control for main section stickiness ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2f07572f78074137e7e6a49585273210ed5cedcb"},(0,n.kt)("inlineCode",{parentName:"a"},"2f07572"))),(0,n.kt)("li",{parentName:"ul"},"change(header): use viewport width for changing mobile text in header dropdowns ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b50fa585c0abeedc04a46395f08e50a9e112c430"},(0,n.kt)("inlineCode",{parentName:"a"},"b50fa58"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add fluid font sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f2743e39107fd1bd00a54e03bf92963eb9853f2"},(0,n.kt)("inlineCode",{parentName:"a"},"5f2743e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header) add position sticky & transparent for main section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/29df772edfe23b1752aa3d184659eea90c3c9221"},(0,n.kt)("inlineCode",{parentName:"a"},"29df772"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero): update variables with new design tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1d9792231c50f12fd68364e201054f6ab0926665"},(0,n.kt)("inlineCode",{parentName:"a"},"1d97922"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Language List): render language dropdown as ul and li elements ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3617442da78af07d3f473d0c43c47dd48c9b2ac3"},(0,n.kt)("inlineCode",{parentName:"a"},"3617442"))),(0,n.kt)("li",{parentName:"ul"},"change(header): introduced item class to the mega menu link content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/00ca376ea4cf1de4851e84567b97c374ee7f66e3"},(0,n.kt)("inlineCode",{parentName:"a"},"00ca376"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Language List): add less variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7ccc1ccf57419b6eecbf71d479db72b84428d43a"},(0,n.kt)("inlineCode",{parentName:"a"},"7ccc1cc"))),(0,n.kt)("li",{parentName:"ul"},"change(header): disabled active menu when clicking on globalnav links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3f7b5eedb038b51fbae8a14a683dc6adc919549b"},(0,n.kt)("inlineCode",{parentName:"a"},"3f7b5ee"))),(0,n.kt)("li",{parentName:"ul"},"change(header): target link instead of span directly ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9e865fbb5b256196756c3d84de397296ac0b447a"},(0,n.kt)("inlineCode",{parentName:"a"},"9e865fb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): remove unused imports ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e232db6ce0b2553be79d98d8497fa06f548b772"},(0,n.kt)("inlineCode",{parentName:"a"},"7e232db")))),(0,n.kt)("h4",{id:"\ufe0f-others-38"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Add item themes; override .block .ui.image width based on size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/06010db21398638d46d2e007317d72a7aff7e7d9"},(0,n.kt)("inlineCode",{parentName:"a"},"06010db"))),(0,n.kt)("li",{parentName:"ul"},"Move item icon themes to item.overrides ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/31e8921f4ee4d92ba3a9c58275b41dd3101cffd2"},(0,n.kt)("inlineCode",{parentName:"a"},"31e8921"))),(0,n.kt)("li",{parentName:"ul"},"Override only the width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8d4927084e5daedcb69e6f3a57cab73a9016a55f"},(0,n.kt)("inlineCode",{parentName:"a"},"8d49270"))),(0,n.kt)("li",{parentName:"ul"},"Override tile image in .block parrent ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/005655ddff6f45e211f1ff8156b0b7efa1e47a2e"},(0,n.kt)("inlineCode",{parentName:"a"},"005655d"))),(0,n.kt)("li",{parentName:"ul"},"Update package.json ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9dc38165a95deca1faf2dfccdc03fd6cab3d8c54"},(0,n.kt)("inlineCode",{parentName:"a"},"9dc3816"))),(0,n.kt)("li",{parentName:"ul"},"feature(item): added themes to item icons #190 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a6a2907df09575a18fb6e81dc52e8d6651eff118"},(0,n.kt)("inlineCode",{parentName:"a"},"a6a2907"))),(0,n.kt)("li",{parentName:"ul"},"update storybook header.topdropdown ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e58ac0821af56c06272e3373383647cbbff20978"},(0,n.kt)("inlineCode",{parentName:"a"},"e58ac08"))),(0,n.kt)("li",{parentName:"ul"},"use volto-screen-helper width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea156aad1100166ba78635163cfacdcfb913c1d4"},(0,n.kt)("inlineCode",{parentName:"a"},"ea156aa"))),(0,n.kt)("li",{parentName:"ul"},"Add divider content for metadata field in Banner ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/327ad1c5fdca0d376d04fd36084b940e5dd016ab"},(0,n.kt)("inlineCode",{parentName:"a"},"327ad1c"))),(0,n.kt)("li",{parentName:"ul"},"rename to viewportWidth ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32162e7c695774bbb68ac63a0008e8b148f1e9f5"},(0,n.kt)("inlineCode",{parentName:"a"},"32162e7"))),(0,n.kt)("li",{parentName:"ul"},"don't connect component to store ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/470b8bade5e8f2eaabb20a7bb02c8e82ca42f8a0"},(0,n.kt)("inlineCode",{parentName:"a"},"470b8ba"))),(0,n.kt)("li",{parentName:"ul"},"Add end of line ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51639d804a2b84f66373fb77c569bcc43b22e303"},(0,n.kt)("inlineCode",{parentName:"a"},"51639d8"))),(0,n.kt)("li",{parentName:"ul"},"behave as mobile under 480 only ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/11b99e15cb83245a32bb04f3937f5b95a60b1e95"},(0,n.kt)("inlineCode",{parentName:"a"},"11b99e1"))),(0,n.kt)("li",{parentName:"ul"},"make it account for all mobile-s,m,l ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/69e23ae8d12042f241dc53c9e296c340d5b17089"},(0,n.kt)("inlineCode",{parentName:"a"},"69e23ae")))),(0,n.kt)("h3",{id:"045---2022-06-08"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.4.4...0.4.5"},"0.4.5")," - 2022-06-08"),(0,n.kt)("h4",{id:"-enhancements-45"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(tabs): Add style for tabs accordion template #187 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fb8adbf84ac564a14d45bb6e8f4e1661811672d5"},(0,n.kt)("inlineCode",{parentName:"a"},"fb8adbf"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): avoid react error by providing key prop to grid column ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef0b1937d614a889a0c2117e483a834ed1aec1e3"},(0,n.kt)("inlineCode",{parentName:"a"},"ef0b193")))),(0,n.kt)("h4",{id:"\ufe0f-others-39"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Cleanup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4b9637ebd2d6c015f8d4323551c6cbc4b7506df"},(0,n.kt)("inlineCode",{parentName:"a"},"d4b9637"))),(0,n.kt)("li",{parentName:"ul"},"Add style for tabs accordion template ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a10998372a268b99991f7dda55103149f29d00cb"},(0,n.kt)("inlineCode",{parentName:"a"},"a109983")))),(0,n.kt)("h3",{id:"044---2022-06-08"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.4.3...0.4.4"},"0.4.4")," - 2022-06-08"),(0,n.kt)("h4",{id:"-new-features-22"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(divider): create story for divider ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b10a2e08b14962bed9f13317754f4124ee60d313"},(0,n.kt)("inlineCode",{parentName:"a"},"b10a2e0")))),(0,n.kt)("h4",{id:"-bug-fixes-33"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(divider): restore space between classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c595c152c144463f33757157ed7d6797ae31ceed"},(0,n.kt)("inlineCode",{parentName:"a"},"c595c15"))),(0,n.kt)("li",{parentName:"ul"},"fix(divider): Text colors and transform ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e524e1002bb0700ea69782cf5a95c6073ab383d2"},(0,n.kt)("inlineCode",{parentName:"a"},"e524e10"))),(0,n.kt)("li",{parentName:"ul"},"fix(footer): story aria labels for social media links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/254bdc7ba944943f5d08a71f9d0a3a31bdc06044"},(0,n.kt)("inlineCode",{parentName:"a"},"254bdc7")))),(0,n.kt)("h4",{id:"-enhancements-46"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update logos and less structure ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/66b8e0f12825968d94f7d572f2823d9a8a3a239b"},(0,n.kt)("inlineCode",{parentName:"a"},"66b8e0f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): first footer updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d18a2ee59d0deb143075d8dfeb949898ad1f6399"},(0,n.kt)("inlineCode",{parentName:"a"},"d18a2ee"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): logo updates and adjustments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/101bc9dfe4136240457f335de867a83c28d59339"},(0,n.kt)("inlineCode",{parentName:"a"},"101bc9d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): use tokens and adjust spacing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2cb166949913f725271050e863b38e7630748135"},(0,n.kt)("inlineCode",{parentName:"a"},"2cb1669"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): moved SubFooter logic to SubFooter.jsx from Footer story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/902383a0bb3446dc69237099bd429ead5e30a6c1"},(0,n.kt)("inlineCode",{parentName:"a"},"902383a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Divider):add divider with content inside story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2d66dca901fa189d69b65239dc34b1969097be8"},(0,n.kt)("inlineCode",{parentName:"a"},"e2d66dc"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): added managed by section as properties ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9328fc3084baf22439e1892d256d9a167b911849"},(0,n.kt)("inlineCode",{parentName:"a"},"9328fc3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(divider): remove custom divider ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4870d2252ad216e82213fa1f94cc39609ae676d"},(0,n.kt)("inlineCode",{parentName:"a"},"d4870d2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Divider_:remove green color class & add tertiary ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/95f30186bc1768e08f00ad7d5ffa2a70402ac553"},(0,n.kt)("inlineCode",{parentName:"a"},"95f3018"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): use remix icons for social links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5ef9aa2cebb6f96857a1920cefbf7e367b4d7c28"},(0,n.kt)("inlineCode",{parentName:"a"},"5ef9aa2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Divider):remove clean class and use fitted prop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8d2be350dcc44fd56b5fbfb791fb6b2a45bd8a52"},(0,n.kt)("inlineCode",{parentName:"a"},"8d2be35"))),(0,n.kt)("li",{parentName:"ul"},"change(Divider): Rename color property to theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0deffc823609d23131a85bc180e4a3f5a67a64aa"},(0,n.kt)("inlineCode",{parentName:"a"},"0deffc8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update links and logo align ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7afbab9b37982a557ac8bfa4430205ce912c3b8b"},(0,n.kt)("inlineCode",{parentName:"a"},"7afbab9"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): tweaked column sizes to the values before my changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fdf271868e44bce2904cc28c6fa924ee4c9ba759"},(0,n.kt)("inlineCode",{parentName:"a"},"fdf2718"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): to latest figma design #182 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e0ba2b659db9dc1b140d853840a06bd3ce31cab"},(0,n.kt)("inlineCode",{parentName:"a"},"3e0ba2b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): move subfooter logic to the proper component #185 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/303457719128c9699dd34939bd8db2b647977667"},(0,n.kt)("inlineCode",{parentName:"a"},"3034577"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b0b872b1415c9792a5886f619195f9c0471ea564"},(0,n.kt)("inlineCode",{parentName:"a"},"b0b872b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(testimonial): update divider ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/784450abdf395318fe89d8d3d0a1e398393cc93c"},(0,n.kt)("inlineCode",{parentName:"a"},"784450a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(testimonial): changed divider color to secondary ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/84282f960ab22ccb8403e975c055c61d1023193a"},(0,n.kt)("inlineCode",{parentName:"a"},"84282f9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(divider): remove custom divider from theme config ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a0409e8df3c9ba043717140455369a3630f0da85"},(0,n.kt)("inlineCode",{parentName:"a"},"a0409e8")))),(0,n.kt)("h4",{id:"-documentation-changes-14"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(divider): switch to secondary color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/239844be374a2f6bc4667e7ab3d2f52bfdc181ad"},(0,n.kt)("inlineCode",{parentName:"a"},"239844b"))),(0,n.kt)("li",{parentName:"ul"},"docs(divider): showcase path fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5ea03f60034edc918054aa273e44b84b2537716"},(0,n.kt)("inlineCode",{parentName:"a"},"d5ea03f")))),(0,n.kt)("h4",{id:"\ufe0f-others-40"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Remove unnecessary spaces ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d137981430809345bfb3ad494e7ab981c93c3e51"},(0,n.kt)("inlineCode",{parentName:"a"},"d137981"))),(0,n.kt)("li",{parentName:"ul"},"lint fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/657cf4ed917c4ff992aa033c3d9f4884a949d86d"},(0,n.kt)("inlineCode",{parentName:"a"},"657cf4e"))),(0,n.kt)("li",{parentName:"ul"},"perf(storybook): added storybook favicon ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/38eabc3124c85dd56bf5c68c0fb1e967c39055ec"},(0,n.kt)("inlineCode",{parentName:"a"},"38eabc3")))),(0,n.kt)("h3",{id:"043---2022-06-03"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.4.2...0.4.3"},"0.4.3")," - 2022-06-03"),(0,n.kt)("h4",{id:"-bug-fixes-34"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(edit): Fix columns/accordion inner toolbar padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fafbb525baa60c339906dc6a33d2f9418d050be6"},(0,n.kt)("inlineCode",{parentName:"a"},"fafbb52")))),(0,n.kt)("h4",{id:"-enhancements-47"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): completed removal of description from guides ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/42424b9213ece8d8df84d40f1b73e142cb0ffc6b"},(0,n.kt)("inlineCode",{parentName:"a"},"42424b9")))),(0,n.kt)("h3",{id:"042---2022-06-02"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.4.1...0.4.2"},"0.4.2")," - 2022-06-02"),(0,n.kt)("h4",{id:"-enhancements-48"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): moved color swatches around in the color guide ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8a395fce52a32cf92449a24d3d4cce5abf25a284"},(0,n.kt)("inlineCode",{parentName:"a"},"8a395fc"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): removed description from components and introduced category listing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f220bf0785f5aaede8c25c4164120b09de67b018"},(0,n.kt)("inlineCode",{parentName:"a"},"f220bf0"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): rename gap to space and added em spaces ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f5b042d311518ec3fb32c7f259c39ff62d4547f8"},(0,n.kt)("inlineCode",{parentName:"a"},"f5b042d"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): moved extra docs to webdev section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1ce0797b91418272e4e405467cd1468292620005"},(0,n.kt)("inlineCode",{parentName:"a"},"1ce0797"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): moved md_components files into webdev/md_components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/73c1c08a270d504fa6f2ba2579bcb3e6e25fb112"},(0,n.kt)("inlineCode",{parentName:"a"},"73c1c08"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): added category yml for all sections ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/17405728e3f44828da50890b9fc0f4e8a07f8bf2"},(0,n.kt)("inlineCode",{parentName:"a"},"1740572"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): color guideline updates and spacing tokens documentation #148 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c1154ba172c3b3b40b565c2bcb590f1a5e6b25a4"},(0,n.kt)("inlineCode",{parentName:"a"},"c1154ba"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): modified story links to avoid broken usage tabs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/78dc8d8f4e7cade3ab0e911e6dc002eefc1e7986"},(0,n.kt)("inlineCode",{parentName:"a"},"78dc8d8"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): renamed several file id's so that they match the incremental naming sequence ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/11299c9a4c41ca901926f852227dbca0bc1aee17"},(0,n.kt)("inlineCode",{parentName:"a"},"11299c9")))),(0,n.kt)("h4",{id:"-documentation-changes-15"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(Docusaurus): timeline, testimonial, quote and tags ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aaa54ecbe182872ffc7fff275d5065ebe790d348"},(0,n.kt)("inlineCode",{parentName:"a"},"aaa54ec"))),(0,n.kt)("li",{parentName:"ul"},"docs(spacing): add relative gap tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/92abc8fff2c7006e2c64684048e7783216a230bb"},(0,n.kt)("inlineCode",{parentName:"a"},"92abc8f"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): updated colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a28c99e60867c1eaa1b7b68d4154ccaa8c9ef958"},(0,n.kt)("inlineCode",{parentName:"a"},"a28c99e"))),(0,n.kt)("li",{parentName:"ul"},"docs(tags/content): new page about tags and content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/60be40268a77606c53fc45641bc22166b50b75e7"},(0,n.kt)("inlineCode",{parentName:"a"},"60be402"))),(0,n.kt)("li",{parentName:"ul"},"docs(Docusaurus): labeled icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6a0f61ede3a36c7d66d9b3091b93b0b5ff9a445"},(0,n.kt)("inlineCode",{parentName:"a"},"f6a0f61"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): add font size and line height tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ff65e47cfe56eb3efe976300b764ba13f8685ce"},(0,n.kt)("inlineCode",{parentName:"a"},"2ff65e4"))),(0,n.kt)("li",{parentName:"ul"},"docs(spacing): add spacing gap tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2d53727f8e817588421efea464e849c9f9e16dce"},(0,n.kt)("inlineCode",{parentName:"a"},"2d53727"))),(0,n.kt)("li",{parentName:"ul"},"docs(spacing): add missing gaps ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/442db468830150c8e4ad5f91775fc5b3c47dd655"},(0,n.kt)("inlineCode",{parentName:"a"},"442db46"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): minor fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e66513f08cff598881ce1051b482ddadf8e0593"},(0,n.kt)("inlineCode",{parentName:"a"},"6e66513"))),(0,n.kt)("li",{parentName:"ul"},"docs(spacing): aligned images ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e946fe59457b861a31939e99adf4b380777e01e0"},(0,n.kt)("inlineCode",{parentName:"a"},"e946fe5"))),(0,n.kt)("li",{parentName:"ul"},"docs(spacing): new image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fcd3294d53db76580b8bffc9678a09fd65b33113"},(0,n.kt)("inlineCode",{parentName:"a"},"fcd3294")))),(0,n.kt)("h4",{id:"\ufe0f-others-41"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"merge changes from develop into docusaurus token documentation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a9401384ddf5fcfbf29e50d34f3d7851be85f19a"},(0,n.kt)("inlineCode",{parentName:"a"},"a940138"))),(0,n.kt)("li",{parentName:"ul"},"perf(docs): restructuring order ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f4134d81d1cc59b8ba0d8669415b5eb31c0513d"},(0,n.kt)("inlineCode",{parentName:"a"},"8f4134d")))),(0,n.kt)("h3",{id:"041---2022-06-02"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.4.0...0.4.1"},"0.4.1")," - 2022-06-02"),(0,n.kt)("h4",{id:"-new-features-23"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(languageLabeledIcon) : add new component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/110558eeec37d5b5f616a95298a313ba230dd6f4"},(0,n.kt)("inlineCode",{parentName:"a"},"110558e"))),(0,n.kt)("li",{parentName:"ul"},"feat(LanguageLabeledIcon):add new component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d00200c278e1dab02b449b460a325e0f2e7b8ccd"},(0,n.kt)("inlineCode",{parentName:"a"},"d00200c"))),(0,n.kt)("li",{parentName:"ul"},"feat(newTabLabeledIcon) : add new component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f5cd31257a306a58c1d9cdbf7cb428701412369"},(0,n.kt)("inlineCode",{parentName:"a"},"8f5cd31"))),(0,n.kt)("li",{parentName:"ul"},"feat(labeledIconGroup) : add new component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/787d648342d78c4f9d28fde9d08e83089ef7b08f"},(0,n.kt)("inlineCode",{parentName:"a"},"787d648"))),(0,n.kt)("li",{parentName:"ul"},"feat(DownLoadLabeledIcon) : add new component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6ea2fa1ec17ce235401a8ac741afa8fede920d26"},(0,n.kt)("inlineCode",{parentName:"a"},"6ea2fa1")))),(0,n.kt)("h4",{id:"-bug-fixes-35"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(LabeledIcon) : fix lint errors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91b042f8c16bd3e99659c1c24a5f2a946c72b03f"},(0,n.kt)("inlineCode",{parentName:"a"},"91b042f"))),(0,n.kt)("li",{parentName:"ul"},"fix(LabeledIconGroup) : fix links for tests ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/daa10653ca37f3e83302e2ebcc566b5f5ec4c4d9"},(0,n.kt)("inlineCode",{parentName:"a"},"daa1065"))),(0,n.kt)("li",{parentName:"ul"},"fix(LanguageLabeledIcon):bug fix & languages change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1436e2bc270f8f079f07b7909254bd2e6e087084"},(0,n.kt)("inlineCode",{parentName:"a"},"1436e2b"))),(0,n.kt)("li",{parentName:"ul"},"fix(LabeledIconGroup):fix based on Langauge & Download Labeled icon components changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3015864ce740f534aa204402f85a9f392e342513"},(0,n.kt)("inlineCode",{parentName:"a"},"3015864"))),(0,n.kt)("li",{parentName:"ul"},"fix(newTabLabeledIcon) : add link item ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b1a9ada3dd7dae9e1841cfde5319a6ab37b15de2"},(0,n.kt)("inlineCode",{parentName:"a"},"b1a9ada"))),(0,n.kt)("li",{parentName:"ul"},"fix(Labeled Icons):minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/00f3022cdc2bfad634707f0d6d05768868f599be"},(0,n.kt)("inlineCode",{parentName:"a"},"00f3022")))),(0,n.kt)("h4",{id:"-enhancements-49"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcons): adjust new tab labeled icon to figma and replace px with rems ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/904615d789ea711678f43ce9f9d02a450289031f"},(0,n.kt)("inlineCode",{parentName:"a"},"904615d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(LanguageLabeledIcon):implement with pop up ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0f3dd8f0388484f94351a0ab0798ab53e84c9229"},(0,n.kt)("inlineCode",{parentName:"a"},"0f3dd8f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcon): add group wrapper in labeled icon stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4b7dd314230145b6239fd800d41f546ab5d9eebb"},(0,n.kt)("inlineCode",{parentName:"a"},"4b7dd31"))),(0,n.kt)("li",{parentName:"ul"},"refactor(DownloadLabeledIcon):implement with pop up ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aa61f9b7d449c08c08bc4c004da6a0458598c828"},(0,n.kt)("inlineCode",{parentName:"a"},"aa61f9b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcons): adjust language labeled icon to figma ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5741e3d2e95665ef12670335b12d29cfbf998fdc"},(0,n.kt)("inlineCode",{parentName:"a"},"5741e3d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcons): adjust download icon to figma and replace px with rems ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ae85307a62526fed75ef0b1d37ad59076370b5a"},(0,n.kt)("inlineCode",{parentName:"a"},"4ae8530"))),(0,n.kt)("li",{parentName:"ul"},"refactor(LanguageLabeledIcons):minor storybook change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/78f55442a80cbc2f716ba81274ed08204e3c502a"},(0,n.kt)("inlineCode",{parentName:"a"},"78f5544"))),(0,n.kt)("li",{parentName:"ul"},"refactor(LanguageLabeledIcon): set language code to uppercase and minor storybook change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac286931282c0a69bc6d7803e96cbe302db8994f"},(0,n.kt)("inlineCode",{parentName:"a"},"ac28693"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcon): adjust paddings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9c1ecddc52c81be1d952d0af67862a284eba9eec"},(0,n.kt)("inlineCode",{parentName:"a"},"9c1ecdd"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcons): update margins for group labeled icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5fa5ca9103a5d8ad1510c90cc8c46d0c82abcc63"},(0,n.kt)("inlineCode",{parentName:"a"},"5fa5ca9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcons): add variable for icon color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f9d3cba5115c5c91aaaca49c1f834950400673a"},(0,n.kt)("inlineCode",{parentName:"a"},"9f9d3cb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcons): update colors on download links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c04264229c91bfdea927fd22f4ee1e8ddbcebd5c"},(0,n.kt)("inlineCode",{parentName:"a"},"c042642")))),(0,n.kt)("h4",{id:"-internal-changes-16"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(labeledIconGroup) : lint changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/535cee4795dff75b35856cb4406a9bd33ee07ca4"},(0,n.kt)("inlineCode",{parentName:"a"},"535cee4"))),(0,n.kt)("li",{parentName:"ul"},"style(downloadLabeledIcon) : fix styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d8e3acb3bac1a4174d4bb526d6188cb5e5f8faa"},(0,n.kt)("inlineCode",{parentName:"a"},"6d8e3ac"))),(0,n.kt)("li",{parentName:"ul"},"style(downloadLabeledIcon) : fix alignment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/455801701d2958515885ba2c398312f0c56057b0"},(0,n.kt)("inlineCode",{parentName:"a"},"4558017"))),(0,n.kt)("li",{parentName:"ul"},"chore(LabeledIconGroup) : lint changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab364763bb2526adbbb7fc3c656a16b497568940"},(0,n.kt)("inlineCode",{parentName:"a"},"ab36476")))),(0,n.kt)("h3",{id:"040---2022-06-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.3.1...0.4.0"},"0.4.0")," - 2022-06-01"),(0,n.kt)("h4",{id:"-new-features-24"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(Carousel): create carousel for cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2b0d73798b4fcbf2897d7a8167d9b4d3b3374fb2"},(0,n.kt)("inlineCode",{parentName:"a"},"2b0d737"))),(0,n.kt)("li",{parentName:"ul"},"feat(ItemwithIcons): Initial Item group with icons, new item variation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7f4ea476264856845a07cd24be6ec86ccd21ed8d"},(0,n.kt)("inlineCode",{parentName:"a"},"7f4ea47"))),(0,n.kt)("li",{parentName:"ul"},"feat(utilities): add file and basic utilities ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/05c88b294a49590e3fb355fb6e113f5020442915"},(0,n.kt)("inlineCode",{parentName:"a"},"05c88b2"))),(0,n.kt)("li",{parentName:"ul"},"feat(utilities): add file with basic utilities classes #173 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/855185ff22c77efb75cc5c7850d181254b4c4927"},(0,n.kt)("inlineCode",{parentName:"a"},"855185f")))),(0,n.kt)("h4",{id:"-bug-fixes-36"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(tokens): hsla function for shadows ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8e5d37a6e88321b1e2daf995b407c4ddd6e866e"},(0,n.kt)("inlineCode",{parentName:"a"},"b8e5d37"))),(0,n.kt)("li",{parentName:"ul"},"fix(tokens): remove css var from less file ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a9c422476b412287713a6b475406615c3aed2aca"},(0,n.kt)("inlineCode",{parentName:"a"},"a9c4224"))),(0,n.kt)("li",{parentName:"ul"},"fix(carousel):add storybook controls descriptions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/269a60383ed1e54fc57e26d4eed6b37d1da32236"},(0,n.kt)("inlineCode",{parentName:"a"},"269a603"))),(0,n.kt)("li",{parentName:"ul"},"fix(item): remove image width css from item.less ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7b21cb2d5ddf6a6f72646f47fd268a0bd7af757d"},(0,n.kt)("inlineCode",{parentName:"a"},"7b21cb2"))),(0,n.kt)("li",{parentName:"ul"},"fix(table): Set responsive breakpoint to @tabletBreakpoint ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/067e01842030bfa5639e2a55cb8af5047bb2996f"},(0,n.kt)("inlineCode",{parentName:"a"},"067e018")))),(0,n.kt)("h4",{id:"-enhancements-50"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(item): import item.less in theme definitions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c51637480192dbece828616010174648ac865e2e"},(0,n.kt)("inlineCode",{parentName:"a"},"c516374"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Label):add corner,ribbon & basic label stories and styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2bbbb947113a59127f91b86917ef0edbf36ab16"},(0,n.kt)("inlineCode",{parentName:"a"},"e2bbbb9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Label):style changes based on label importance class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce4d5d1a5bf1b1183242a253e37c509d61f82b8c"},(0,n.kt)("inlineCode",{parentName:"a"},"ce4d5d1"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): rename gap to space and added em spaces ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/719efc44070ef87f049a92e4da96bb111e9fc8ff"},(0,n.kt)("inlineCode",{parentName:"a"},"719efc4"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): add classes for size, set default to tile and add controls for grouped items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5a0405abba4e5f5d36f899dc9e47f43a96d5e49"},(0,n.kt)("inlineCode",{parentName:"a"},"d5a0405"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): add borders, shadows, shapes and z-index tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7069106c2b0ada9cdbad63249b4ada7fde72e05f"},(0,n.kt)("inlineCode",{parentName:"a"},"7069106"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): name spacing tokens gaps and added missing values up to 80px as documented ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9fbd912a6f027150149d82678f88885a939120b0"},(0,n.kt)("inlineCode",{parentName:"a"},"9fbd912"))),(0,n.kt)("li",{parentName:"ul"},"refactor(quote): Rename sourceInfo to extra info ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/76c2b400de4814fe79f303bfd2a82842c848231c"},(0,n.kt)("inlineCode",{parentName:"a"},"76c2b40"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): WIP replacing unstackable with row ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e3a44de4b2dd26667e80e0d131c55b08f3c527d9"},(0,n.kt)("inlineCode",{parentName:"a"},"e3a44de"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tocens): add color design tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/13bb165e103a25aadb9da6414773dc0d35081d88"},(0,n.kt)("inlineCode",{parentName:"a"},"13bb165"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): adjust margins to match figma designs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6334581b336a2f486e85199f371126beea47b92f"},(0,n.kt)("inlineCode",{parentName:"a"},"6334581"))),(0,n.kt)("li",{parentName:"ul"},"refactor(carousel): remove title from story and color on card hover ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/12a1d7c3bd5e7ba6edf4eb20a2d7a6f8f22955f9"},(0,n.kt)("inlineCode",{parentName:"a"},"12a1d7c"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): updated sizes with 4-8-16px increments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f53d655df2b24053a5d331c56dfd14bd3602dfd"},(0,n.kt)("inlineCode",{parentName:"a"},"1f53d65"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): added size tokens to be used for width of elements ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cda5dea1f6ad1ae980c89999d323d7b385894025"},(0,n.kt)("inlineCode",{parentName:"a"},"cda5dea"))),(0,n.kt)("li",{parentName:"ul"},"change(utilities): values need important rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/96150d9a22cb6be6f338f1e9d052cbd65e3602fc"},(0,n.kt)("inlineCode",{parentName:"a"},"96150d9"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): added also rem space values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aedbbddaf7f8be88ed2f8a2b8c21b60752896c53"},(0,n.kt)("inlineCode",{parentName:"a"},"aedbbdd"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): updated z-index tokens with negative values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/404efe4244d67276b435e60a1d7a69aaa90e3d8a"},(0,n.kt)("inlineCode",{parentName:"a"},"404efe4"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): add 14px font size token ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8d8695dce62e7f29af01447308460e4fe3f72b21"},(0,n.kt)("inlineCode",{parentName:"a"},"8d8695d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): restructured and improved sections navigation #174 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b47b0266ffd6baeaf1a5aea1a7ab22c909976de1"},(0,n.kt)("inlineCode",{parentName:"a"},"b47b026"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): add 12 and 14px font size token #176 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/368114729536f03dd85c2d3565b984c3bdfe3a72"},(0,n.kt)("inlineCode",{parentName:"a"},"3681147"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): remove conditional border radius ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f0fe5ada7b74e9c87623dd2b2774283dd89b9a58"},(0,n.kt)("inlineCode",{parentName:"a"},"f0fe5ad")))),(0,n.kt)("h4",{id:"-documentation-changes-16"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(website): created new sections, improved website navigation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/243f0be4d7fa6e988da0ca0f586f5ea478573eef"},(0,n.kt)("inlineCode",{parentName:"a"},"243f0be"))),(0,n.kt)("li",{parentName:"ul"},"docs(homepage): adding design system homepage with links for upcoming sections ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c9a968508acff74d1182e68cf049046dafd564c5"},(0,n.kt)("inlineCode",{parentName:"a"},"c9a9685"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): copyedit, improved navigation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/998762a5bd40d08f619c00743b66d82b43aed653"},(0,n.kt)("inlineCode",{parentName:"a"},"998762a"))),(0,n.kt)("li",{parentName:"ul"},"docs(website): restructuring, moved current DS docs to new folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8bb612f1313dfc739d7912aa2e3252f468e1122f"},(0,n.kt)("inlineCode",{parentName:"a"},"8bb612f"))),(0,n.kt)("li",{parentName:"ul"},"docs(homepage): copy editing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee37d6f1d282b973af744f4305c0eb94c0993113"},(0,n.kt)("inlineCode",{parentName:"a"},"ee37d6f")))),(0,n.kt)("h4",{id:"\ufe0f-others-42"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Release 0.4.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f4bc50928ab877f3670b181dbe6e8cfff7fa2daa"},(0,n.kt)("inlineCode",{parentName:"a"},"f4bc509"))),(0,n.kt)("li",{parentName:"ul"},"feature(homepage): added Item group with icons #167 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ec99f53aeb183b24073be4014a9c2ec30d5235c"},(0,n.kt)("inlineCode",{parentName:"a"},"2ec99f5"))),(0,n.kt)("li",{parentName:"ul"},"feature(tokens): added borders, z-index, shadows tokens #171 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/74c178837cedc7ee9fc55effde1096dc03245574"},(0,n.kt)("inlineCode",{parentName:"a"},"74c1788"))),(0,n.kt)("li",{parentName:"ul"},"feature(tokens): added initial color design tokens #169 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/da3eae05d07783aa5eadaed5d508ee3be8acc47d"},(0,n.kt)("inlineCode",{parentName:"a"},"da3eae0"))),(0,n.kt)("li",{parentName:"ul"},"perf(carousel): added slick library ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca9be5125efa864bc30a0178274d744c5b2bc500"},(0,n.kt)("inlineCode",{parentName:"a"},"ca9be51")))),(0,n.kt)("h3",{id:"031---2022-05-19"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.3.0...0.3.1"},"0.3.1")," - 2022-05-19"),(0,n.kt)("h4",{id:"-bug-fixes-37"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(input,segment): toggle inputs and padding fixes within Volto sidebar forms ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/de030d617325a8f9d028a5c1615faa160fcdd763"},(0,n.kt)("inlineCode",{parentName:"a"},"de030d6")))),(0,n.kt)("h4",{id:"-enhancements-51"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(login): restored width of login container to 376px ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0564293346b2402c3c86009b61066da4200662b8"},(0,n.kt)("inlineCode",{parentName:"a"},"0564293")))),(0,n.kt)("h3",{id:"030---2022-05-17"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.2.4...0.3.0"},"0.3.0")," - 2022-05-17"),(0,n.kt)("h4",{id:"-new-features-25"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(Callout):create Callout component with Blockquote style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3d486b1c2c7f74ee8bc4b3a5e1bf3993ac98f6dd"},(0,n.kt)("inlineCode",{parentName:"a"},"3d486b1"))),(0,n.kt)("li",{parentName:"ul"},"feat(callout): Align the Callout component with Volto slate component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e9343ff7008cd3d60700929e8861c7bdd06df4d3"},(0,n.kt)("inlineCode",{parentName:"a"},"e9343ff")))),(0,n.kt)("h4",{id:"-bug-fixes-38"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(testimonial): fix storybook arg names ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b9df52f7151ef759fd672d365b2d74f6db535ad0"},(0,n.kt)("inlineCode",{parentName:"a"},"b9df52f"))),(0,n.kt)("li",{parentName:"ul"},"fix(table): tweak responsive table for extra long headers ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7f9f9e25f7c57d4bf7edd2546a7579b892867b5c"},(0,n.kt)("inlineCode",{parentName:"a"},"7f9f9e2"))),(0,n.kt)("li",{parentName:"ul"},"fix(quote): fix color and padding issue ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/310d6b37bdf5df3da2d2103eab8f4fa5020c95ab"},(0,n.kt)("inlineCode",{parentName:"a"},"310d6b3"))),(0,n.kt)("li",{parentName:"ul"},"fix(accordion): Fix accordion active title color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/57af1650a0b830e01c79e21b130784190defbcc0"},(0,n.kt)("inlineCode",{parentName:"a"},"57af165"))),(0,n.kt)("li",{parentName:"ul"},"fix(testimonial): remove info arguement ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9593d95f6352fb5aea48c3611b27b4bc6a9ae7e4"},(0,n.kt)("inlineCode",{parentName:"a"},"9593d95")))),(0,n.kt)("h4",{id:"-enhancements-52"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(Table):add responsive mobile table story and styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aed69e698e5b89e33a4c331570755934267492af"},(0,n.kt)("inlineCode",{parentName:"a"},"aed69e6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(testimonial): adjust to volto design | fix avatar image size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/546070e494ad187c50913b5742dab49ce5475a84"},(0,n.kt)("inlineCode",{parentName:"a"},"546070e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Quote):rename Pullquote component to Quote ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9384a0c129b8e4eed637e51a9669c41d8ade69d4"},(0,n.kt)("inlineCode",{parentName:"a"},"9384a0c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Quote):rename Quote.Metadata to Quote.SourceInfo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dfae8b1c147659d24dfd1a13fb4c3098e5865a12"},(0,n.kt)("inlineCode",{parentName:"a"},"dfae8b1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Quote): rename Author to Source ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d400f6a0ec0062f58782b4e170f4a1a9a31c56c"},(0,n.kt)("inlineCode",{parentName:"a"},"6d400f6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Quote):move Testimonial component under Quote folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2467c2089577d67ef5689a2507cb860a837f6a0"},(0,n.kt)("inlineCode",{parentName:"a"},"e2467c2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(testimonial): readjust rounded card ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b41933417a44dabcf829a3346d91c142dd6472d3"},(0,n.kt)("inlineCode",{parentName:"a"},"b419334"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Table):wrap table with semantic ui container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24ac2bb4813df33547f684220e1e12af5ca6df7e"},(0,n.kt)("inlineCode",{parentName:"a"},"24ac2bb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Testimonial):minor storybook bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7b6d128c6be3b2481d4765cebca82af6cafbea05"},(0,n.kt)("inlineCode",{parentName:"a"},"7b6d128"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Callout): wrap story with semantic ui container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ead362d88f43fa1380e8be5481cbc38c055060f8"},(0,n.kt)("inlineCode",{parentName:"a"},"ead362d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(quote): update action name to match the functionality ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/caf2e359cada8056f280d2cd137776d64f82a2af"},(0,n.kt)("inlineCode",{parentName:"a"},"caf2e35"))),(0,n.kt)("li",{parentName:"ul"},"refactor(table): add borders to responsive table with celled attribute ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8a71a670fb34a11fbe4cef7365b91c6be84b5b54"},(0,n.kt)("inlineCode",{parentName:"a"},"8a71a67"))),(0,n.kt)("li",{parentName:"ul"},"change(table): make use of headerSortableWhiteSpace variable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fd836fbe82e92864a628bf4d9d3093674890f722"},(0,n.kt)("inlineCode",{parentName:"a"},"fd836fb"))),(0,n.kt)("li",{parentName:"ul"},"change(table): use the @mobileLandscapeBreakpoint for max 480px media query ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/90880ab324b6a66c7741819dd0d913504751454f"},(0,n.kt)("inlineCode",{parentName:"a"},"90880ab"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Quote):rename pullquote to Quote in Testimonial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f54da192ab3b0823b0d6c77254f8954ab94506c8"},(0,n.kt)("inlineCode",{parentName:"a"},"f54da19"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Testimonial): change card class name ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e995c32bc70780e4315c4dc02d6b6fa9a0c5b29d"},(0,n.kt)("inlineCode",{parentName:"a"},"e995c32"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Testimonial): prettier changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/904594b9814c3d8900656f0e4c8d3a99481efe94"},(0,n.kt)("inlineCode",{parentName:"a"},"904594b")))),(0,n.kt)("h4",{id:"\ufe0f-others-43"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feature(tokens): added tokens folder for design tokens we can use in the system ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a542172cfd84dde0286b4332e66a617a1f3d13bf"},(0,n.kt)("inlineCode",{parentName:"a"},"a542172"))),(0,n.kt)("li",{parentName:"ul"},"perf(lint): fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2ef3abb9daa8fee3dd103adc14246c412951427"},(0,n.kt)("inlineCode",{parentName:"a"},"f2ef3ab"))),(0,n.kt)("li",{parentName:"ul"},"Release 0.3.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8724b2809027b2e359dcd64e418a33cade4ad487"},(0,n.kt)("inlineCode",{parentName:"a"},"8724b28")))),(0,n.kt)("h3",{id:"024---2022-05-13"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.2.3...0.2.4"},"0.2.4")," - 2022-05-13"),(0,n.kt)("h4",{id:"-enhancements-53"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(segment): brought back overrides from pastanaga into our theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/14efd021f81898bb0f2d3f1a2e8677445420591a"},(0,n.kt)("inlineCode",{parentName:"a"},"14efd02"))),(0,n.kt)("li",{parentName:"ul"},"change(container): removed padding from containers restoring thus the defaults ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c2ed813cf2f7ce284e33f2e94e02ff16678c2d05"},(0,n.kt)("inlineCode",{parentName:"a"},"c2ed813"))),(0,n.kt)("li",{parentName:"ul"},"change(grid-story): added container as grid width is influenced by container width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/459f4813ee3c5325a3db22d417ac5f23063bd4d2"},(0,n.kt)("inlineCode",{parentName:"a"},"459f481"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumb): removed padding from breadcrumb added by container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5df5675a519085badc030416e5bb784a9f73321"},(0,n.kt)("inlineCode",{parentName:"a"},"c5df567"))),(0,n.kt)("li",{parentName:"ul"},"change(container): modified all outputted widths to align to grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f29cefa4bfee1fe50844c8450de39ef4b0915d4"},(0,n.kt)("inlineCode",{parentName:"a"},"9f29cef"))),(0,n.kt)("li",{parentName:"ul"},"change(breakpoints): restore Semantic UI breakpoints, adding extra needed values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e7f5b1e4fac6453458078bb02cdc66c328843b59"},(0,n.kt)("inlineCode",{parentName:"a"},"e7f5b1e"))),(0,n.kt)("li",{parentName:"ul"},"change(container): restore maxWidth to 100% now that the last value is 1120px ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8b55c58d3bbc8967b20de19a828aedd2f1473ee5"},(0,n.kt)("inlineCode",{parentName:"a"},"8b55c58"))),(0,n.kt)("li",{parentName:"ul"},"change(header): wrap header globalnav links useful for editing section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/10d4f56624510eb63155ab330dcf0475b0728ed4"},(0,n.kt)("inlineCode",{parentName:"a"},"10d4f56"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumb): added vertical variant to the breadcrumbs like we do in Volto ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f405f8437be6be221b055a41c5d391f4cc94385d"},(0,n.kt)("inlineCode",{parentName:"a"},"f405f84"))),(0,n.kt)("li",{parentName:"ul"},"change(breakpoints): added also contentBreakpoint for backward compatibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b6c9212378a37639e6154d8d8e837169bcbac8b5"},(0,n.kt)("inlineCode",{parentName:"a"},"b6c9212")))),(0,n.kt)("h4",{id:"\ufe0f-others-44"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"[JENKINSFILE]"," Add failure comment, no jenkins fail ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c325bf14f3fb0da150f2a56cda0a9f03d8d8a628"},(0,n.kt)("inlineCode",{parentName:"a"},"c325bf1"))),(0,n.kt)("li",{parentName:"ul"},"prettier changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/134da52549b9d5eac5a12b7ad3005073500ac2c4"},(0,n.kt)("inlineCode",{parentName:"a"},"134da52"))),(0,n.kt)("li",{parentName:"ul"},"[JENKINSFILE]"," format PR comments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/739438c64950c745d630d1998314a2bed595b23a"},(0,n.kt)("inlineCode",{parentName:"a"},"739438c"))),(0,n.kt)("li",{parentName:"ul"},"[JENKINSFILE]"," mention comment author in comment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/39a26aa1ff0f35e93e8df9f442c29c5ab79ff493"},(0,n.kt)("inlineCode",{parentName:"a"},"39a26aa"))),(0,n.kt)("li",{parentName:"ul"},"[JENKINSFILE]"," remove debug, add error per stage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/903eecdb6bcbb8d73cff5e447d80c85e2a2c906d"},(0,n.kt)("inlineCode",{parentName:"a"},"903eecd")))),(0,n.kt)("h3",{id:"023---2022-04-29"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.2.2...0.2.3"},"0.2.3")," - 2022-04-29"),(0,n.kt)("h4",{id:"-new-features-26"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(CallToAction):add feat call to action ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab53642f27c996f929ff871d0794add39bab6c23"},(0,n.kt)("inlineCode",{parentName:"a"},"ab53642")))),(0,n.kt)("h4",{id:"-enhancements-54"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(button): add container to stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6c02c1953e102f2d90ab23023d6b4dfc738ced2e"},(0,n.kt)("inlineCode",{parentName:"a"},"6c02c19"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tab): update vertical tab columns and content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b473fabee196a3ec420e29160448d2be3d1685cc"},(0,n.kt)("inlineCode",{parentName:"a"},"b473fab"))),(0,n.kt)("li",{parentName:"ul"},'refactor(call to action):render call to action with Button as="a" ',(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e7dfabfc2f006505b0f1c802dc6fb48611518bcb"},(0,n.kt)("inlineCode",{parentName:"a"},"e7dfabf"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button): update inverted button colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c822021ab37939632416ce74c0cc88a64b98a3c1"},(0,n.kt)("inlineCode",{parentName:"a"},"c822021"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Tab):scrollbar change in mobile & vertical tab fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0e34cbf459e67b6910217f30a44a1e81f33df622"},(0,n.kt)("inlineCode",{parentName:"a"},"0e34cbf"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): added icon class to share icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48e866e4251dd517c0477cd5a42cec1a98e2f16d"},(0,n.kt)("inlineCode",{parentName:"a"},"48e866e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Button): move button to forms folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/94996fcdf1ea7e55c63dd44e10edf1b44b9bdef5"},(0,n.kt)("inlineCode",{parentName:"a"},"94996fc"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Tab):minor change in secondary pointing menu variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/280b6c41a2107bccb38500f54eb5663ef62c7ae3"},(0,n.kt)("inlineCode",{parentName:"a"},"280b6c4")))),(0,n.kt)("h4",{id:"-documentation-changes-17"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(button): import call to action stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e4eed44e3519ae3dba7d16e252271a964fcb7a4b"},(0,n.kt)("inlineCode",{parentName:"a"},"e4eed44")))),(0,n.kt)("h3",{id:"022---2022-04-22"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.2.1...0.2.2"},"0.2.2")," - 2022-04-22"),(0,n.kt)("h4",{id:"-bug-fixes-39"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(publicationCard): restore line endings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/582859e0ab4fa969662d4cf3e60fe75b160f052a"},(0,n.kt)("inlineCode",{parentName:"a"},"582859e"))),(0,n.kt)("li",{parentName:"ul"},"fix(form): added back overrides from Pastanaga theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a3f7ff810cdeb55b009c2dadc6753d01bbd10d8c"},(0,n.kt)("inlineCode",{parentName:"a"},"a3f7ff8"))),(0,n.kt)("li",{parentName:"ul"},"fix(OrderedList) : add list only if sub list exists ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8acbc8d5a492b411b169b106ab64bb78563f891f"},(0,n.kt)("inlineCode",{parentName:"a"},"8acbc8d"))),(0,n.kt)("li",{parentName:"ul"},"fix(label): update highlight label color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d55bbb03a5d28b2f269c1a1ca447c67dcdc7a748"},(0,n.kt)("inlineCode",{parentName:"a"},"d55bbb0"))),(0,n.kt)("li",{parentName:"ul"},"fix(publication card): run prettier ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/81a5bfc123ce69c44562a5585e41a630fe0bbf5a"},(0,n.kt)("inlineCode",{parentName:"a"},"81a5bfc"))),(0,n.kt)("li",{parentName:"ul"},"fix(avatar) : fix naming convention for arg ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/84fc5fa8faa7887f45cd52e58aa6fa6f8b951d26"},(0,n.kt)("inlineCode",{parentName:"a"},"84fc5fa"))),(0,n.kt)("li",{parentName:"ul"},"fix(tab): restore mobile font sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/58f39be02a45ade92873b86597c33763379e0f44"},(0,n.kt)("inlineCode",{parentName:"a"},"58f39be"))),(0,n.kt)("li",{parentName:"ul"},"fix(addForm): add min height to add form and fixed block chooser overflow ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca4415d49b973378894ec9270501beafbefff776"},(0,n.kt)("inlineCode",{parentName:"a"},"ca4415d"))),(0,n.kt)("li",{parentName:"ul"},"fix(OrderedList): adjust margins to fourth sublists ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/663d384790920f164d51edb304c411275972fbb7"},(0,n.kt)("inlineCode",{parentName:"a"},"663d384"))),(0,n.kt)("li",{parentName:"ul"},"fix(dropdown): being hidden because of third party css ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d353dfd65e93d08a3c8584adeeebea50bf7efe8"},(0,n.kt)("inlineCode",{parentName:"a"},"7d353df"))),(0,n.kt)("li",{parentName:"ul"},"fix(modal): overflow hidden as clearfix of last child from modal ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4923f5165a0a7e8d2dd33ea4c35f9f951372909"},(0,n.kt)("inlineCode",{parentName:"a"},"b4923f5"))),(0,n.kt)("li",{parentName:"ul"},"fix(RelatedContent):fix merge conflict ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/adc34bfdac7d668aa27578eb2a4844c136e0360f"},(0,n.kt)("inlineCode",{parentName:"a"},"adc34bf"))),(0,n.kt)("li",{parentName:"ul"},"fix(button): labeled class needs to be placed after left or right keyword ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53d1204fe52665fe1023747da359d3100d45e58f"},(0,n.kt)("inlineCode",{parentName:"a"},"53d1204")))),(0,n.kt)("h4",{id:"-enhancements-55"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(card): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e10e3d610a313c4e1995676130e2677f0ebab070"},(0,n.kt)("inlineCode",{parentName:"a"},"e10e3d6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add card variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e16d05b4afa678b9089987b42a8257323a78093f"},(0,n.kt)("inlineCode",{parentName:"a"},"e16d05b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): remove stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0deb0cab6d7fd73957b149325960c266c33cdc6f"},(0,n.kt)("inlineCode",{parentName:"a"},"0deb0ca"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):delete primary and secondary card stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f95d227a026ecc34b29cc3e4938c3d13906cfd8"},(0,n.kt)("inlineCode",{parentName:"a"},"1f95d22"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Avatar) : remake avatar as card variant ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea77cdd1acafd2ea288f11074423705e5d6b7412"},(0,n.kt)("inlineCode",{parentName:"a"},"ea77cdd"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add styles for card variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7407bd30e722f2d7b1a9d75a8c7cf155bf1c4996"},(0,n.kt)("inlineCode",{parentName:"a"},"7407bd3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): add story with related content inside of a tab ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dca008a35b27e4a75c13ef965ab8764df0d3b357"},(0,n.kt)("inlineCode",{parentName:"a"},"dca008a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): Rename variables from avatar to rounded ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/be0131631cf8e303f4077fe93b6685fd6b34bf46"},(0,n.kt)("inlineCode",{parentName:"a"},"be01316"))),(0,n.kt)("li",{parentName:"ul"},"refactor(avatar): update less variables and layer structure ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f965db1dd17d90e7165f66d39fdda9016c2eae91"},(0,n.kt)("inlineCode",{parentName:"a"},"f965db1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(PublicationCard):remake publication card to be a semantic card variation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5a0c6ab21c22a53aa6e34fafecfae15a3d435391"},(0,n.kt)("inlineCode",{parentName:"a"},"5a0c6ab"))),(0,n.kt)("li",{parentName:"ul"},"change(button): simplified button styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fe892d6f2f59aecf3f9e8b04f18b55fb0d384021"},(0,n.kt)("inlineCode",{parentName:"a"},"fe892d6"))),(0,n.kt)("li",{parentName:"ul"},"change(button): simplified storybook naming and examples ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9a7df4f46c24a234dd8bb290336ac8e7d5c7422b"},(0,n.kt)("inlineCode",{parentName:"a"},"9a7df4f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Avatar) : convert avatar component to card variation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2004a941c18f8fe21f96f88d3288446fd5e283e8"},(0,n.kt)("inlineCode",{parentName:"a"},"2004a94"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Related Content): change in grid and add see all button ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/955450e974c89aa2297eaa28d278e5098fea7705"},(0,n.kt)("inlineCode",{parentName:"a"},"955450e"))),(0,n.kt)("li",{parentName:"ul"},"change(button): added back button.overrides from pastanaga theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3b55acbf8b8df0e3daa475ab12e4db44693a4053"},(0,n.kt)("inlineCode",{parentName:"a"},"3b55acb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add card class control ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/68c91a9bf7e78874e12e868a0c466f12715a0698"},(0,n.kt)("inlineCode",{parentName:"a"},"68c91a9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):delete publication card variables & overrides files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6be8a037118762cf2280fbe44ba097a0cb7a79e0"},(0,n.kt)("inlineCode",{parentName:"a"},"6be8a03"))),(0,n.kt)("li",{parentName:"ul"},"refactor(OrderedList): rename TOC to Ordered List and add container to the story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e00c4db8e623651eb2ec9ad45de6e3d8c2693b2b"},(0,n.kt)("inlineCode",{parentName:"a"},"e00c4db"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add card grid fluid story with no columns ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f38251ca3fa04a9b586468ead44bbfe8ae110fbb"},(0,n.kt)("inlineCode",{parentName:"a"},"f38251c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(list): remove horizontal control ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f5e576a37452ed368d6f9cf4d55960e737d48ad"},(0,n.kt)("inlineCode",{parentName:"a"},"1f5e576"))),(0,n.kt)("li",{parentName:"ul"},"refactor(avatarGrid): update less variables and layer structure ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/db554a894ca10ba50ff425883000177854ea2455"},(0,n.kt)("inlineCode",{parentName:"a"},"db554a8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Related Content):show button when there are more hidden cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/57ff1c8d485d16c34002da22bd765069e6eb3df0"},(0,n.kt)("inlineCode",{parentName:"a"},"57ff1c8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(RelatedContent):change to use new card variant instead of publication card component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7cf424ae885d9b657a7635fc67a74a8af4c4e905"},(0,n.kt)("inlineCode",{parentName:"a"},"7cf424a"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumb): brought back pastanaga overrides to breadcrumbs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bca1c939c1d49dab1d4b8e72c0999d78383fd643"},(0,n.kt)("inlineCode",{parentName:"a"},"bca1c93"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):delete publication card folder & story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/68bf77306d710651bb2177d429f42b8efc127db2"},(0,n.kt)("inlineCode",{parentName:"a"},"68bf773"))),(0,n.kt)("li",{parentName:"ul"},"change(buttons): modified basic and circular variant behavior ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c06fed9fa74216cf76971b7789dad231a5125ce8"},(0,n.kt)("inlineCode",{parentName:"a"},"c06fed9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):tertiary variation minor story update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87b8dca0b8ef6c6f0fbf1ea6bc71b7b8b6ee9205"},(0,n.kt)("inlineCode",{parentName:"a"},"87b8dca"))),(0,n.kt)("li",{parentName:"ul"},"refactor(DescriptionList): add container to story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d647c1a17097eae9bdfaf8eb8068f6d1d0b13972"},(0,n.kt)("inlineCode",{parentName:"a"},"d647c1a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(List):render ordered list with ol,li tags ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87813c1a942ce498f89b51fe79a59b117afd28b0"},(0,n.kt)("inlineCode",{parentName:"a"},"87813c1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(OrderedList) : change table of contents story to ordered list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb6197c872a97f1b990c675554b1da9b0a8f7959"},(0,n.kt)("inlineCode",{parentName:"a"},"cb6197c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(publicationCard): update tag and name variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c109ad98f257fea233f31d767c4a037a2758be2d"},(0,n.kt)("inlineCode",{parentName:"a"},"c109ad9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(UnorderedList): update list as ul, list items as li and add container to strory ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2c096e117125a7fb943a5d2e665c0077761b271c"},(0,n.kt)("inlineCode",{parentName:"a"},"2c096e1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):organize controls and minor bug fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f3f6e35df077e348ea1e0c2e5c5bd73d4af5aef9"},(0,n.kt)("inlineCode",{parentName:"a"},"f3f6e35"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables): publication card style changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5a84e99ebea6345e45fac3b7ffc077ec42dfb45"},(0,n.kt)("inlineCode",{parentName:"a"},"c5a84e9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables): add less to related content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e1a55438a9fc9dd141a9515c5363d834732a0c4d"},(0,n.kt)("inlineCode",{parentName:"a"},"e1a5543"))),(0,n.kt)("li",{parentName:"ul"},"refactor(RelatedContent):delete publication card component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ed0ed4a1497224b669386f6d0942a79d00555ea"},(0,n.kt)("inlineCode",{parentName:"a"},"2ed0ed4"))),(0,n.kt)("li",{parentName:"ul"},"change(button): basic button is again without padding, border and background ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5a907c721bda1d065153b108d6c9dc0ee20a886d"},(0,n.kt)("inlineCode",{parentName:"a"},"5a907c7"))),(0,n.kt)("li",{parentName:"ul"},"refactor(PublicationCard):remove link wrapper ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5911a0db1967c58311a6776864f92bc0692052fa"},(0,n.kt)("inlineCode",{parentName:"a"},"5911a0d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables): change publication card height per viewport ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d7a525615672f387a2c8a0457bcde5c08aec45dd"},(0,n.kt)("inlineCode",{parentName:"a"},"d7a5256"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Timeline):change timeline icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b2fe0bf9a7a4583f1f10765a9f8c3c989412d472"},(0,n.kt)("inlineCode",{parentName:"a"},"b2fe0bf"))),(0,n.kt)("li",{parentName:"ul"},"refactor(publicationCard): replace px with rems ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53bf8da5e42343de7f7f940c266beb5e530dd63a"},(0,n.kt)("inlineCode",{parentName:"a"},"53bf8da"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Related Content): change in related content grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bf856ce66f9a74cb440cf8a7c93f62cd0d3965e9"},(0,n.kt)("inlineCode",{parentName:"a"},"bf856ce"))),(0,n.kt)("li",{parentName:"ul"},"refactor(List):render description list with dl,dt,dd tags ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ec669a74da08f7a82bb4a1a0a2d752b6ee5ba4bb"},(0,n.kt)("inlineCode",{parentName:"a"},"ec669a7"))),(0,n.kt)("li",{parentName:"ul"},"change(button): show only labeled variant for buttons with icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bf499446dc02e4be8d6452a3e0cba5797b8a005e"},(0,n.kt)("inlineCode",{parentName:"a"},"bf49944"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): import image for rounded card ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca5a47ea2cd713336c7c8ecdebebbdacd681282f"},(0,n.kt)("inlineCode",{parentName:"a"},"ca5a47e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progress): add container to story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dfb33bb8f3560d43e3e7300560bb557591c0a6ba"},(0,n.kt)("inlineCode",{parentName:"a"},"dfb33bb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): add publication card story with different description sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/23af97bc708ac70d70b92efe9a782548c65aabc5"},(0,n.kt)("inlineCode",{parentName:"a"},"23af97b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(List):render default list with dl & dt tags ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ece2280eb06481b3fd42e7a1ffec5c71c08e736f"},(0,n.kt)("inlineCode",{parentName:"a"},"ece2280"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): add publication cards stories with longer description ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/37adefa500c8a85a5b0b86e5b17c687828ea21fc"},(0,n.kt)("inlineCode",{parentName:"a"},"37adefa"))),(0,n.kt)("li",{parentName:"ul"},"change(button): basic icon buttons no longer have box shadows ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c2f3ea38ec3c62dce37612ac1e666a0b064309f7"},(0,n.kt)("inlineCode",{parentName:"a"},"c2f3ea3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): remove story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/afc5f7903a0049563355e3c9292fdd89fa532740"},(0,n.kt)("inlineCode",{parentName:"a"},"afc5f79"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables): change card description line number per device ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6946fdae2a1ede28a0e5971736817b3ae19bf290"},(0,n.kt)("inlineCode",{parentName:"a"},"6946fda"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): update rounded card image path ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8db3a85a45e8e05a3fe86ab824e7550d437222c3"},(0,n.kt)("inlineCode",{parentName:"a"},"8db3a85"))),(0,n.kt)("li",{parentName:"ul"},"refactor(DefaultList): add container to story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f971193369007a45fea7d517cdf0fc2314ebda69"},(0,n.kt)("inlineCode",{parentName:"a"},"f971193"))),(0,n.kt)("li",{parentName:"ul"},"change(button): bumped z-index of sidenav expand button ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/445ed8a8ede4e458814f380bee0600dbb8ff42f6"},(0,n.kt)("inlineCode",{parentName:"a"},"445ed8a"))),(0,n.kt)("li",{parentName:"ul"},"change(progress,label): color accessibility fixes #151 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/09cf6e34ed5a57bfbfc8fe95787591387776df86"},(0,n.kt)("inlineCode",{parentName:"a"},"09cf6e3"))),(0,n.kt)("li",{parentName:"ul"},"change(button): text button now has an underline with a focus border like other buttons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cdd90436bf0c4f8acaca8bf27afef672fb0f3a89"},(0,n.kt)("inlineCode",{parentName:"a"},"cdd9043"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): update card variation grids path ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/756589cff5d3607994d6cf092cb5dd0e36d51903"},(0,n.kt)("inlineCode",{parentName:"a"},"756589c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): minor fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3a880d7d14c89137b2a33342aed1a31c1b2b3939"},(0,n.kt)("inlineCode",{parentName:"a"},"3a880d7"))),(0,n.kt)("li",{parentName:"ul"},"change(button): primary color is blue and secondary is green ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53e0a0c6d32a04c52d089914a224b010b04a8846"},(0,n.kt)("inlineCode",{parentName:"a"},"53e0a0c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(List):change styles to match with the tags lists are rendered ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2673890449579a0421d8ac1c89ad4c5e850322d7"},(0,n.kt)("inlineCode",{parentName:"a"},"2673890"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progress): update colors for accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea2f454f73c859ac21c4fe6e415a2442a6c3d64c"},(0,n.kt)("inlineCode",{parentName:"a"},"ea2f454"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): move avatarGrid & relatedContent to Card folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1959d521de222c95aa13d9b3db249d133f879ccd"},(0,n.kt)("inlineCode",{parentName:"a"},"1959d52"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Timeline): change storybook timeline colors to fix accessibility issues ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/79da8dca48c709fd1df83b858296126f5e5c5753"},(0,n.kt)("inlineCode",{parentName:"a"},"79da8dc"))),(0,n.kt)("li",{parentName:"ul"},"change(segment): restore light grey background color for secondary segments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8716b08a977cacf5dbdab8ab23c714bb03066b0c"},(0,n.kt)("inlineCode",{parentName:"a"},"8716b08"))),(0,n.kt)("li",{parentName:"ul"},"refactor(relatedContent): adjust column paddings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8a1520d1b958b65e968bffdba22c3484916a475e"},(0,n.kt)("inlineCode",{parentName:"a"},"8a1520d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): clear up code ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ada154b5ab562dc7605604de8002a9d3461e594"},(0,n.kt)("inlineCode",{parentName:"a"},"3ada154"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): use the rounded class for avatar grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8c000f3c37103e0068b6d6554783da8188603442"},(0,n.kt)("inlineCode",{parentName:"a"},"8c000f3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card) Update rounded card class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/140b58746673a864d7ea218c4f8a02dc70207af4"},(0,n.kt)("inlineCode",{parentName:"a"},"140b587"))),(0,n.kt)("li",{parentName:"ul"},"refactor(avatar): add variable for image border radius ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c23341c66d34a9dfa572be4df24f1faf4325d58e"},(0,n.kt)("inlineCode",{parentName:"a"},"c23341c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(label): add container to story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/565101fff2c8860deedd599b7b0cff0660c663f6"},(0,n.kt)("inlineCode",{parentName:"a"},"565101f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progress): update value color for accessibility error ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6fc76f8ff3df4bf2b83863687e5ab6bd5e4cd1ef"},(0,n.kt)("inlineCode",{parentName:"a"},"6fc76f8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):use jsx extension ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/413d3284869a35f39f886df7862db6a52e8cc18e"},(0,n.kt)("inlineCode",{parentName:"a"},"413d328")))),(0,n.kt)("h4",{id:"-internal-changes-17"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(Avatar) : add container to stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/41b748cd23002d597d9b6fbb7947a443ef40f9b2"},(0,n.kt)("inlineCode",{parentName:"a"},"41b748c"))),(0,n.kt)("li",{parentName:"ul"},"style(OrderedList): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ed95e4dea2f33d46ca604e1b2c30d63b5596c03d"},(0,n.kt)("inlineCode",{parentName:"a"},"ed95e4d")))),(0,n.kt)("h4",{id:"\ufe0f-others-45"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"perf(eol): change to LF ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c71e42e4a8cf49c4a3b943bfdc8a94c9a9cc4940"},(0,n.kt)("inlineCode",{parentName:"a"},"c71e42e"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): linux eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e0bb30132904f92b9755356f6b5ccbf72075425"},(0,n.kt)("inlineCode",{parentName:"a"},"6e0bb30"))),(0,n.kt)("li",{parentName:"ul"},"lint fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a68866d4058f7412a2635371adebc370b6445281"},(0,n.kt)("inlineCode",{parentName:"a"},"a68866d"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): lf fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7054b2067b0802c5bd04e185cba76e2577ccfdd1"},(0,n.kt)("inlineCode",{parentName:"a"},"7054b20"))),(0,n.kt)("li",{parentName:"ul"},"doco(list): update Ordered List showcase ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/75e40bf4487ea334c9ebc2dd6c2a392d82e662f3"},(0,n.kt)("inlineCode",{parentName:"a"},"75e40bf"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): lf fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19235e585ac50c3669f654a93798b8998894f900"},(0,n.kt)("inlineCode",{parentName:"a"},"19235e5"))),(0,n.kt)("li",{parentName:"ul"},"fixed js syntax error from previous commit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/37dc1f5c1506040c1f155afdea76c4ed739ddda2"},(0,n.kt)("inlineCode",{parentName:"a"},"37dc1f5"))),(0,n.kt)("li",{parentName:"ul"},"Next relese: 0.2.2 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b3fb40ff5e46d7519b6356fdaf7326780bd89d9e"},(0,n.kt)("inlineCode",{parentName:"a"},"b3fb40f")))),(0,n.kt)("h3",{id:"021---2022-04-08"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.2.0...0.2.1"},"0.2.1")," - 2022-04-08"),(0,n.kt)("h4",{id:"-bug-fixes-40"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(version): Switch to 2.0.0.alpha.1 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/83b8b8ebba4f1eb31514b16476ac23a5d2b03ea9"},(0,n.kt)("inlineCode",{parentName:"a"},"83b8b8e")))),(0,n.kt)("h4",{id:"\ufe0f-others-46"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"cleanup(loader): Remove useless HTML ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d1d180c714ea225c1ad269360413a5e5e4b39f22"},(0,n.kt)("inlineCode",{parentName:"a"},"d1d180c")))),(0,n.kt)("h3",{id:"020---2022-04-04"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.9...0.2.0"},"0.2.0")," - 2022-04-04"),(0,n.kt)("h4",{id:"-new-features-27"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(card) : add new default card color-schme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/965adea8eef6d8729790f6d2bd5e71daeee15d75"},(0,n.kt)("inlineCode",{parentName:"a"},"965adea"))),(0,n.kt)("li",{parentName:"ul"},"feat(label): Handle slate links and footnotes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f382431219df29be498fe5063f3d579f0b918068"},(0,n.kt)("inlineCode",{parentName:"a"},"f382431")))),(0,n.kt)("h4",{id:"-bug-fixes-41"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(buttons,toggles): border and background color when active 147629 #139 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea36f31e986110d6c28c104d01666104ac38e2ba"},(0,n.kt)("inlineCode",{parentName:"a"},"ea36f31"))),(0,n.kt)("li",{parentName:"ul"},"fix(checkboxes): background color when they are toggles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4b6ab67085b7514c4f0ab2322e8f45de8bc09449"},(0,n.kt)("inlineCode",{parentName:"a"},"4b6ab67"))),(0,n.kt)("li",{parentName:"ul"},"fix(buttons): border set on basic buttons appearing on svg elements of Volto UI ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/69ca73f33b562b3f87bf11ce43a52ac01f83b951"},(0,n.kt)("inlineCode",{parentName:"a"},"69ca73f"))),(0,n.kt)("li",{parentName:"ul"},"fix(label): Zotero/Footnotes inside label ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0ee4d584f2771b739ed5f2332cb33aad61391786"},(0,n.kt)("inlineCode",{parentName:"a"},"0ee4d58"))),(0,n.kt)("li",{parentName:"ul"},"fix(card) : add control for image url in storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b28e5303ba04c6aee673f1d7f98ce42037c672e1"},(0,n.kt)("inlineCode",{parentName:"a"},"b28e530"))),(0,n.kt)("li",{parentName:"ul"},"fix(less variables):change font family ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e4bca9e0cb7ab9f1fd86e9f4c558382ec129e5a1"},(0,n.kt)("inlineCode",{parentName:"a"},"e4bca9e"))),(0,n.kt)("li",{parentName:"ul"},"fix(storybook):minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9fc53bcad61bbe0561d7a986dbba567d53777a8c"},(0,n.kt)("inlineCode",{parentName:"a"},"9fc53bc"))),(0,n.kt)("li",{parentName:"ul"},"fix(tag): fixes merged theme config ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/eb30363fda8a8a88155ee05268c4d7660fe99df1"},(0,n.kt)("inlineCode",{parentName:"a"},"eb30363"))),(0,n.kt)("li",{parentName:"ul"},"fix(Banner): prop types fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a270e5b4d6e571f219b5da31ca8f883f74da05e3"},(0,n.kt)("inlineCode",{parentName:"a"},"a270e5b")))),(0,n.kt)("h4",{id:"-enhancements-56"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(tag): splits Tags component to TagList and tag, changes default tags style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/78a5f8c245149706a1f7b825ef3e02da5ba86445"},(0,n.kt)("inlineCode",{parentName:"a"},"78a5f8c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner):add banner share pop up in banner story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c9688b2b697c879bbaed3cb3a688a0af7fc71234"},(0,n.kt)("inlineCode",{parentName:"a"},"c9688b2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tag): remove classes and actions that add background color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce9b6f92589618f6cb1e839a2cddc44381ef7406"},(0,n.kt)("inlineCode",{parentName:"a"},"ce9b6f9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner):change banner's image wrapper implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9153dd1073999e67c105b5ba90538bc963e17abc"},(0,n.kt)("inlineCode",{parentName:"a"},"9153dd1"))),(0,n.kt)("li",{parentName:"ul"},"change(package): bump release version to 1.10.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e984c1e1a6ea481a58a5b7a783d077b5769a621"},(0,n.kt)("inlineCode",{parentName:"a"},"7e984c1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): align cards and images, update less variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d47c9780bfbc23d1cba3578f181864074db97e98"},(0,n.kt)("inlineCode",{parentName:"a"},"d47c978"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add class inverted for default card ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/919a56e79c0243fa567144fadd4b842f75f1cf8f"},(0,n.kt)("inlineCode",{parentName:"a"},"919a56e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tag): changes component name ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e1db068bd7ac336a451a4514c61fe44557e14cc2"},(0,n.kt)("inlineCode",{parentName:"a"},"e1db068"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tag): changes color metallicBlue to bottleGreen ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e4b68acf95bb3e192914aab89b2122e0434bf72c"},(0,n.kt)("inlineCode",{parentName:"a"},"e4b68ac"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables): change tag list mobile view ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fcded3dbc67465eec6ef7f72d3fd599ec5cd3c13"},(0,n.kt)("inlineCode",{parentName:"a"},"fcded3d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tagList): update story to not use tag color classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8b5b61bfad9225c0538b713937ed39bbd0bd14e9"},(0,n.kt)("inlineCode",{parentName:"a"},"8b5b61b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner):minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff8c352b899b78528897547df0b20c357fd153cd"},(0,n.kt)("inlineCode",{parentName:"a"},"ff8c352"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner): add metadata field sub component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/327b7e77626c18ae783aea9efae0c7589f63d4f5"},(0,n.kt)("inlineCode",{parentName:"a"},"327b7e7"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): add and adjust remix icon for banner action ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1bf3ffaa16432746c5e5577f0b1643f6659b3f56"},(0,n.kt)("inlineCode",{parentName:"a"},"1bf3ffa"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): replace px with rem and adjust share popup padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a5683294570227d0b25a99e410eb824b2c6d643c"},(0,n.kt)("inlineCode",{parentName:"a"},"a568329"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner):add type class to metadata field and apply styles to it ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/86a286699146c7dda9e288e2183ec8cc86f35a23"},(0,n.kt)("inlineCode",{parentName:"a"},"86a2866"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables):change tag list styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/867008791545769aa003ef7a8a820a7e5a873e4b"},(0,n.kt)("inlineCode",{parentName:"a"},"8670087"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): share items display flex on desktop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ff86840e548f47cd597a0c76b23f996d4a9d74b"},(0,n.kt)("inlineCode",{parentName:"a"},"3ff8684"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): added background gradient, share popup, metadata show and hide #136 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2f5dccacf1e23f45f351b0be58c9bbda04da1518"},(0,n.kt)("inlineCode",{parentName:"a"},"2f5dcca"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): update gradient ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/570ee1e1e9778cb98757804fbd8ad7d9dee9ad13"},(0,n.kt)("inlineCode",{parentName:"a"},"570ee1e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tags): removes hardcoded ':' ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea58e86a79b46b5150d84ff2fbb6a7b8ba47876c"},(0,n.kt)("inlineCode",{parentName:"a"},"ea58e86"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): remove card border ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bc777397026f0efe8e569c8fd0e90d98b585b0eb"},(0,n.kt)("inlineCode",{parentName:"a"},"bc77739")))),(0,n.kt)("h4",{id:"-internal-changes-18"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(card) : add lint and prettier changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9d9a77363f7e4f7ec2ea4db5fa777dc97e086156"},(0,n.kt)("inlineCode",{parentName:"a"},"9d9a773"))),(0,n.kt)("li",{parentName:"ul"},"style(tag): remove comments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/501fcdfb8271f4a3558dadb96c546e71cfdef286"},(0,n.kt)("inlineCode",{parentName:"a"},"501fcdf"))),(0,n.kt)("li",{parentName:"ul"},"style(tag): stylelint and prettier changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/08b63864e8394fd86ada78df0b441cda52cd8063"},(0,n.kt)("inlineCode",{parentName:"a"},"08b6386")))),(0,n.kt)("h4",{id:"\ufe0f-others-47"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"1.10 release #140 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/88d33396845f00830789867663a9cd66ad88920f"},(0,n.kt)("inlineCode",{parentName:"a"},"88d3339"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/328ef2cda2d3470b5cb5ae2ef9854323f6b0f3c7"},(0,n.kt)("inlineCode",{parentName:"a"},"328ef2c"))),(0,n.kt)("li",{parentName:"ul"},"undo changes to Header.jsx committed wrongly in 4b6ab ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bfc4c51d39cf9c5151c39b099071174897de10b0"},(0,n.kt)("inlineCode",{parentName:"a"},"bfc4c51"))),(0,n.kt)("li",{parentName:"ul"},"Update 0-intro.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af75f81a84ddb9b78a77a96450976c6cd1223924"},(0,n.kt)("inlineCode",{parentName:"a"},"af75f81"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): lf fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ecf474ffbaab6796434d49c30fb09deafe9d1125"},(0,n.kt)("inlineCode",{parentName:"a"},"ecf474f"))),(0,n.kt)("li",{parentName:"ul"},"Update 0-intro.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93a073242693fa3c24c39532c2c462f58071e5c4"},(0,n.kt)("inlineCode",{parentName:"a"},"93a0732"))),(0,n.kt)("li",{parentName:"ul"},"modifies tags title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/33c3714660aa6cfbca7e362fd7baa8c396b60a0e"},(0,n.kt)("inlineCode",{parentName:"a"},"33c3714"))),(0,n.kt)("li",{parentName:"ul"},"reafactor(taglist): fixes tags root class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d09959f85d2d21cdc890a71457ed5840b5b2c53"},(0,n.kt)("inlineCode",{parentName:"a"},"7d09959")))),(0,n.kt)("h3",{id:"019---2022-03-25"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.8...0.1.9"},"0.1.9")," - 2022-03-25"),(0,n.kt)("h4",{id:"-new-features-28"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(all): 1.9 release #124 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0d3f6fbf32a4948e00410d9d0943a077863cb869"},(0,n.kt)("inlineCode",{parentName:"a"},"0d3f6fb"))),(0,n.kt)("li",{parentName:"ul"},"feat(callout): Align volto-slate callout with blockquote style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9e0bb49ffe66ebb8b8173af411873ab887b91058"},(0,n.kt)("inlineCode",{parentName:"a"},"9e0bb49")))),(0,n.kt)("h4",{id:"-bug-fixes-42"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(inpageNavigation): restore hidden on top functionality ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c554e6e02e0c82b74653498e2f3fd32a982002a4"},(0,n.kt)("inlineCode",{parentName:"a"},"c554e6e"))),(0,n.kt)("li",{parentName:"ul"},"fix(list): Fix TOC margin on 3rd level ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f17da79394e29baf62bae1247dd954cdd0362108"},(0,n.kt)("inlineCode",{parentName:"a"},"f17da79"))),(0,n.kt)("li",{parentName:"ul"},"fix(inpageNavigation) : add smooth scroll animation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/42f6564276b9214257e2dbc1e2a8f7e501625aee"},(0,n.kt)("inlineCode",{parentName:"a"},"42f6564")))),(0,n.kt)("h4",{id:"-enhancements-57"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update visual and mobile margins ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/64f05af91638d91d2c07217b8edc2fb70a5e7347"},(0,n.kt)("inlineCode",{parentName:"a"},"64f05af"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): restore union dropdown after implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7029c556a9adc1ab9b0269de666e0ed0530f67e"},(0,n.kt)("inlineCode",{parentName:"a"},"a7029c5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pullquote): adjust to the new figma design ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/78e4606ac299938021f9e525898ae7f5cede311f"},(0,n.kt)("inlineCode",{parentName:"a"},"78e4606"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumb): adjust font sizes and import remix divider ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5fcabaf589074716b34fb5d0904e14549d7f4ef2"},(0,n.kt)("inlineCode",{parentName:"a"},"5fcabaf"))),(0,n.kt)("li",{parentName:"ul"},"change(header): use viewport width for changing mobile text in header dropdowns ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5a7868e1725f8766ae1be68d3c27b1313f79196b"},(0,n.kt)("inlineCode",{parentName:"a"},"5a7868e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(inpageNavigation): adjust to the new figma design ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4073acfb87378224d071079467bcfa195b1fc6ac"},(0,n.kt)("inlineCode",{parentName:"a"},"4073acf"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tab): add max width for tab items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/366d279a94d5f388c6167e7afb72d108c77c4085"},(0,n.kt)("inlineCode",{parentName:"a"},"366d279"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables):change pullquote styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9ad94bb424a14713ffa605c7497c95bdefeb6e5f"},(0,n.kt)("inlineCode",{parentName:"a"},"9ad94bb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Pullquote):change quote positions and add Pullquote.Metadata sub component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6bce35fa3cc158d9d18a07d0faf812c5c38bae0b"},(0,n.kt)("inlineCode",{parentName:"a"},"6bce35f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(inpageNavigation): Update to remix icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19a606170b4163cf4f751a419ca36a4c163b566d"},(0,n.kt)("inlineCode",{parentName:"a"},"19a6061"))),(0,n.kt)("li",{parentName:"ul"},"refactor(inpageNavigation) : move icon & text to be in column ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/09539102489ec511cb2b6cd047d316ab8b87ed55"},(0,n.kt)("inlineCode",{parentName:"a"},"0953910"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumbs): modified breadcrumbs template to behave like breadrumb template ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/490a559bc99f3a9d174a344cf0be85086293578e"},(0,n.kt)("inlineCode",{parentName:"a"},"490a559"))),(0,n.kt)("li",{parentName:"ul"},"change(package): bump release version to 1.9.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/43a6e4b92fd05ca272fb140922213834ee426938"},(0,n.kt)("inlineCode",{parentName:"a"},"43a6e4b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumb): adjust font sizes and import remix divider #120 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/09a3a01910ed898b62a9535fe5d2a41cfdb3a91b"},(0,n.kt)("inlineCode",{parentName:"a"},"09a3a01"))),(0,n.kt)("li",{parentName:"ul"},"change(menu): modified secondaryPointingItemMaxWidth to a value that equals to 250 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea138a10257206fae32c4e9a30233a3ddfd424b6"},(0,n.kt)("inlineCode",{parentName:"a"},"ea138a1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pullquote): introduce meta section, use remix icons, integrate slate callouts #119 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fd740c9e72b2defa5cc858ac020f0cb051aa527c"},(0,n.kt)("inlineCode",{parentName:"a"},"fd740c9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): updated visuals and gradients #117 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e5c6d18dc3fb33e5dfa654ecebdc12c6f5f0cf32"},(0,n.kt)("inlineCode",{parentName:"a"},"e5c6d18"))),(0,n.kt)("li",{parentName:"ul"},"change(scrollToTop): feature inpage navigation revamp #121 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3cf20a82b723b8df0b53f16c737e5c8990f891f1"},(0,n.kt)("inlineCode",{parentName:"a"},"3cf20a8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update visual and gradient ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/764ec23a456397b478456f7d628baa4e6c0b4713"},(0,n.kt)("inlineCode",{parentName:"a"},"764ec23"))),(0,n.kt)("li",{parentName:"ul"},"change(header): use 12px font size for mobile resolution dropdowns ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6dad0fab24f37f87696bb50f5a592e88510d053e"},(0,n.kt)("inlineCode",{parentName:"a"},"6dad0fa"))),(0,n.kt)("li",{parentName:"ul"},"change(nav): added navDepth to 3 in order to enable mega menu integration ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4f73fdd0dfadcd63b2f4be7a691bf12dcd9bb76"},(0,n.kt)("inlineCode",{parentName:"a"},"c4f73fd")))),(0,n.kt)("h4",{id:"-internal-changes-19"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(inpageNavigation) : lint changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3641d78374063904c00f1ba19f2f234f7a43892b"},(0,n.kt)("inlineCode",{parentName:"a"},"3641d78"))),(0,n.kt)("li",{parentName:"ul"},"style(inpageNavigation) : add less variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0699c70c66403ff75bf41ba252a74e9f4379671c"},(0,n.kt)("inlineCode",{parentName:"a"},"0699c70"))),(0,n.kt)("li",{parentName:"ul"},"style(pullquote): create variable for icon font size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fea9b0a7c33237ad036522b4dde567718d640210"},(0,n.kt)("inlineCode",{parentName:"a"},"fea9b0a"))),(0,n.kt)("li",{parentName:"ul"},"style(inpageNavigation) : add lint & prettier changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f8dd012a964e0c1f0bc22c36826a4a94bd052759"},(0,n.kt)("inlineCode",{parentName:"a"},"f8dd012"))),(0,n.kt)("li",{parentName:"ul"},"style(inpageNavigation): remove comment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1aee011d032c1a2b7fe564a40688bc39ca457c18"},(0,n.kt)("inlineCode",{parentName:"a"},"1aee011")))),(0,n.kt)("h4",{id:"\ufe0f-others-48"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"perf(eol): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/85a3dc55c7676c0feb8dd5b39fe0cbb9d66a9370"},(0,n.kt)("inlineCode",{parentName:"a"},"85a3dc5"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/00776211ccfa1cb90d9fa0e5269f47f5b3845741"},(0,n.kt)("inlineCode",{parentName:"a"},"0077621"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f1bb1c630edb669b03929a978cc116bae012255"},(0,n.kt)("inlineCode",{parentName:"a"},"9f1bb1c"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2b19fec30d6086f486bdca631a9114d8369fe43"},(0,n.kt)("inlineCode",{parentName:"a"},"e2b19fe"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/03dbc9b027578934f89d9480d981e1bc28f38aa3"},(0,n.kt)("inlineCode",{parentName:"a"},"03dbc9b"))),(0,n.kt)("li",{parentName:"ul"},"Hide breadcrumbs on homepage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e2f609df8d4b6bdb826e539fc0c613406d357a5"},(0,n.kt)("inlineCode",{parentName:"a"},"3e2f609"))),(0,n.kt)("li",{parentName:"ul"},"bug(inpageNavigation): less layers structure fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8d34fbdd5130ed36157db1ff70e8b039faa9f81"},(0,n.kt)("inlineCode",{parentName:"a"},"b8d34fb"))),(0,n.kt)("li",{parentName:"ul"},"prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4b1c572411cbc58dec51d5eeefe9847675c2e41"},(0,n.kt)("inlineCode",{parentName:"a"},"d4b1c57"))),(0,n.kt)("li",{parentName:"ul"},"fefactor(tab): add max width for tab items #118 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/716c408fa4c73f3feb8e36e35fb1f6bb50ac264c"},(0,n.kt)("inlineCode",{parentName:"a"},"716c408"))),(0,n.kt)("li",{parentName:"ul"},"Add reversed option to Timeline grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7c9023245f2fc943380f79743b5f10c6b6f65264"},(0,n.kt)("inlineCode",{parentName:"a"},"7c90232"))),(0,n.kt)("li",{parentName:"ul"},"doc(grid): update grid showcases ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/83671a382e39a2736c2c1353098d5f4fc2a0e67e"},(0,n.kt)("inlineCode",{parentName:"a"},"83671a3"))),(0,n.kt)("li",{parentName:"ul"},"End of line ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7f46fb752ec8918325ebadd386ee88248e02566c"},(0,n.kt)("inlineCode",{parentName:"a"},"7f46fb7")))),(0,n.kt)("h3",{id:"018---2022-03-18"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.7...0.1.8"},"0.1.8")," - 2022-03-18"),(0,n.kt)("h4",{id:"-bug-fixes-43"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(card): avoid long links from spilling outside of card body area ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/95b8951ab87bfab7a68cc20b89b25aa15113aa9d"},(0,n.kt)("inlineCode",{parentName:"a"},"95b8951")))),(0,n.kt)("h4",{id:"-enhancements-58"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(typography): set heading sizes as detailed in docusaurus typography section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/189bf20409581587061ffa30ff2bf04d97f284cf"},(0,n.kt)("inlineCode",{parentName:"a"},"189bf20"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): content tweaks, inpage navigation section #112 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b62d1b1def7c3d8890ffbba30950e8e422e9ed89"},(0,n.kt)("inlineCode",{parentName:"a"},"b62d1b1")))),(0,n.kt)("h4",{id:"-internal-changes-20"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(docusaurus): fixed grid tablet breakpoint value ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c7fbc0912131396e3a1e35803968eda1eff77d40"},(0,n.kt)("inlineCode",{parentName:"a"},"c7fbc09")))),(0,n.kt)("h4",{id:"-documentation-changes-18"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): capitalization remove ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bf8fa4407e7110da1c6a911506d56800bd5c32d7"},(0,n.kt)("inlineCode",{parentName:"a"},"bf8fa44"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1c04976a141324f0dde01b139a77f611e6f51840"},(0,n.kt)("inlineCode",{parentName:"a"},"1c04976"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): comment address on pr 112 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e4fe3bed285eae8b2cff03b1ef558debc0b4edb"},(0,n.kt)("inlineCode",{parentName:"a"},"6e4fe3b"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): color minor update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/13f9fda09287da5b8733d17f9c7567b6b7df750a"},(0,n.kt)("inlineCode",{parentName:"a"},"13f9fda"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): tabs and breadcrump update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d0547e5ad09a8608335b1e77e24c891e49213694"},(0,n.kt)("inlineCode",{parentName:"a"},"d0547e5")))),(0,n.kt)("h4",{id:"\ufe0f-others-49"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"doc(colours): add more content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ec66248f1290369dcf63ee12f7b71a1630df887b"},(0,n.kt)("inlineCode",{parentName:"a"},"ec66248"))),(0,n.kt)("li",{parentName:"ul"},"Add divider content for metadata field in Banner ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f1e34bd6a199f6418fba909e9dfdf50b0100e860"},(0,n.kt)("inlineCode",{parentName:"a"},"f1e34bd"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.8.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fd6ba047e8f8b257c3c75d07a6caefad376f888a"},(0,n.kt)("inlineCode",{parentName:"a"},"fd6ba04")))),(0,n.kt)("h3",{id:"017---2022-03-15"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.6...0.1.7"},"0.1.7")," - 2022-03-15"),(0,n.kt)("h4",{id:"-new-features-29"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(less): add global gap sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c83f20280b8a7ab0b5c78e3df7646beebe08709"},(0,n.kt)("inlineCode",{parentName:"a"},"3c83f20"))),(0,n.kt)("li",{parentName:"ul"},"feat(icons): import remix css ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/29967fb39034910dce286880f347a670f77421b3"},(0,n.kt)("inlineCode",{parentName:"a"},"29967fb")))),(0,n.kt)("h4",{id:"-bug-fixes-44"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(menu): fix border overflow for tabs and pagination ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e88721f916affa2a6d2f03930eb4266f9a2b0fb9"},(0,n.kt)("inlineCode",{parentName:"a"},"e88721f"))),(0,n.kt)("li",{parentName:"ul"},"fix(accordion): responsive and accessibility issues ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c225935ceb9fdba45c6f94086a35e177495fe584"},(0,n.kt)("inlineCode",{parentName:"a"},"c225935")))),(0,n.kt)("h4",{id:"-enhancements-59"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(menu): update paddings for tabs and pagination ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/533a5093e6c306034cb16e0a88e045019677951e"},(0,n.kt)("inlineCode",{parentName:"a"},"533a509"))),(0,n.kt)("li",{parentName:"ul"},"refactor(accordion): import semantic icon for remix arrows ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9aa77d856d1e43f4ec3daaab37f06fa91ebd1eaf"},(0,n.kt)("inlineCode",{parentName:"a"},"9aa77d8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(all) icons, accordion, button and menu itml #108 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/52ed2ca19b5e8dea60f1ee7bfd9c3b6b49a49f7d"},(0,n.kt)("inlineCode",{parentName:"a"},"52ed2ca"))),(0,n.kt)("li",{parentName:"ul"},"change(storybook): segment stories now contain several elements ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/98a7654b0d4a7c30c7a2df35103ddb2740f3ca2d"},(0,n.kt)("inlineCode",{parentName:"a"},"98a7654"))),(0,n.kt)("li",{parentName:"ul"},"change(table): inherit header alignment instead of hard-coding values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ebb5193babfe8b99094db6778afdaf2d91b2c4dd"},(0,n.kt)("inlineCode",{parentName:"a"},"ebb5193"))),(0,n.kt)("li",{parentName:"ul"},"refactor(icons): add remix icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4c1a92b671b52c509386addc02e8919c93391fb"},(0,n.kt)("inlineCode",{parentName:"a"},"c4c1a92"))),(0,n.kt)("li",{parentName:"ul"},"refactor(container): restore mobile width to auto ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2df184c19a8685c69e6b9a55b147a97853cc6b74"},(0,n.kt)("inlineCode",{parentName:"a"},"2df184c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button): update action button hover color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bb09d718433f93091ca1b325471d48741825ca96"},(0,n.kt)("inlineCode",{parentName:"a"},"bb09d71")))),(0,n.kt)("h4",{id:"-internal-changes-21"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(docusaurus): docs delete ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f9d733287902ccb096f5a976a2928e43a43a8e7"},(0,n.kt)("inlineCode",{parentName:"a"},"5f9d733")))),(0,n.kt)("h4",{id:"-documentation-changes-19"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(colors): corrections ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/da64c4c6b58e8840ea98be75d442b90911197e28"},(0,n.kt)("inlineCode",{parentName:"a"},"da64c4c"))),(0,n.kt)("li",{parentName:"ul"},"docs(list): default list showcase ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8ded06231c14d1394f77559aeb2d5a7e3a0c1bf1"},(0,n.kt)("inlineCode",{parentName:"a"},"8ded062")))),(0,n.kt)("h4",{id:"\ufe0f-others-50"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"bug(form): input min-width more specific to not break volto interface ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3f5b5d498ea1a0e3bb6fd62af5930f6579029b11"},(0,n.kt)("inlineCode",{parentName:"a"},"3f5b5d4"))),(0,n.kt)("li",{parentName:"ul"},"Update package.json ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3dba28b5a3d28adbf946a8df3d9cc9b8ef4c68e0"},(0,n.kt)("inlineCode",{parentName:"a"},"3dba28b")))),(0,n.kt)("h3",{id:"016---2022-03-11"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.5...0.1.6"},"0.1.6")," - 2022-03-11"),(0,n.kt)("h4",{id:"-new-features-30"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(cards): add custom display for volto-block-image-cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/645096ac5a0aa3326834191f56ee8a77db0464f5"},(0,n.kt)("inlineCode",{parentName:"a"},"645096a"))),(0,n.kt)("li",{parentName:"ul"},"feat(PublicationCard):create publication card component & styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e5f9b7a9bb301f446b232b99f7db54e6a7470ae"},(0,n.kt)("inlineCode",{parentName:"a"},"3e5f9b7"))),(0,n.kt)("li",{parentName:"ul"},"feat(PublicationCard):create publication card component & styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/12cdd5d50dc4c05f2c2b83586df90c7b91c11a75"},(0,n.kt)("inlineCode",{parentName:"a"},"12cdd5d"))),(0,n.kt)("li",{parentName:"ul"},"feat(Related Content): create Related Content component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/77eda953196f9e686d4ec2c996d6902a614af4a0"},(0,n.kt)("inlineCode",{parentName:"a"},"77eda95"))),(0,n.kt)("li",{parentName:"ul"},"feat(Related Content): create Related Content component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/08d495baeae575a07813056176ac940d7edc91eb"},(0,n.kt)("inlineCode",{parentName:"a"},"08d495b"))),(0,n.kt)("li",{parentName:"ul"},"feat(pagination,related) added several r3 components #105 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/08d47c199286402c31a0ff0de38fd08533d2cd91"},(0,n.kt)("inlineCode",{parentName:"a"},"08d47c1")))),(0,n.kt)("h4",{id:"-bug-fixes-45"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(Related Content): limit publication card number to 4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e7df03214824a85911c26499c8975f88ffa9fe4d"},(0,n.kt)("inlineCode",{parentName:"a"},"e7df032"))),(0,n.kt)("li",{parentName:"ul"},"fix(less variables):rename publication card variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/55c6fb8e5e9660352ce1bf2bd38c4ef8834ce184"},(0,n.kt)("inlineCode",{parentName:"a"},"55c6fb8"))),(0,n.kt)("li",{parentName:"ul"},"fix(Publication Card): add link to card and arg name fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/36a7c961639b2ff07acd455ccf277dd0a93f753c"},(0,n.kt)("inlineCode",{parentName:"a"},"36a7c96"))),(0,n.kt)("li",{parentName:"ul"},"fix(radio): fix bullet scaling issue with firefox ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f02c95f18c77527f949f115471cf24302df4d49"},(0,n.kt)("inlineCode",{parentName:"a"},"5f02c95"))),(0,n.kt)("li",{parentName:"ul"},"fix(radio): fix bullet scaling issue with firefox ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dbb2e27b43e6d267a436a8475107ad01e940ec93"},(0,n.kt)("inlineCode",{parentName:"a"},"dbb2e27")))),(0,n.kt)("h4",{id:"-enhancements-60"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(form): remove custom classes and add container to form items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6b5442a3c56854bf30269f235099d8507ba588f7"},(0,n.kt)("inlineCode",{parentName:"a"},"6b5442a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form): remove custom classes and add container to form items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d1ec083647f854c09d8a64dffa6a5c829321049e"},(0,n.kt)("inlineCode",{parentName:"a"},"d1ec083"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form): update form wrapper component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7195768bbe86121fc82bebca29abfb20b50d77a"},(0,n.kt)("inlineCode",{parentName:"a"},"a719576"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form): update form wrapper component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0736ec7d671d756c13a69bd8bf93488805da27e2"},(0,n.kt)("inlineCode",{parentName:"a"},"0736ec7"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form): adjust form items to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4213cfb79430273e637b06a76af28c9cd660aa74"},(0,n.kt)("inlineCode",{parentName:"a"},"4213cfb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form): adjust form items to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/374ffbc1c380df1b1a5f9939fc658d9ecca4ae1b"},(0,n.kt)("inlineCode",{parentName:"a"},"374ffbc"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumb): remove custom class anf and new variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b3cb83d90e0be7f8a80f619d57bc90cae4f8f207"},(0,n.kt)("inlineCode",{parentName:"a"},"b3cb83d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumb): remove custom class anf and new variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5808ad3576439df010bebfb8fd423858ffc4e66"},(0,n.kt)("inlineCode",{parentName:"a"},"d5808ad"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): clear up unnecessary form elements controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f7e7d5bc285ea5115bc8770c7471729f06da891e"},(0,n.kt)("inlineCode",{parentName:"a"},"f7e7d5b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): small change in unordered list story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ffd87246df9dffcc064683e93d6f3aff35b3931"},(0,n.kt)("inlineCode",{parentName:"a"},"3ffd872"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): small change in unordered list story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6ce16e990f15ef8c61493359815405517756c32c"},(0,n.kt)("inlineCode",{parentName:"a"},"6ce16e9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pagination): fix menu overrides for tabs that affects pagination ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fe8c4ca32072518820ad38f8b334b38f52ef2df5"},(0,n.kt)("inlineCode",{parentName:"a"},"fe8c4ca"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pagination): fix menu overrides for tabs that affects pagination ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3f4b726c2a2047f6f9a65375074dd7ea38717f5c"},(0,n.kt)("inlineCode",{parentName:"a"},"3f4b726"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Loader):remove image & add background image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70fe041e06cfee946bb9557f9fcb5ff49d08c287"},(0,n.kt)("inlineCode",{parentName:"a"},"70fe041"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Loader):remove image & add background image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac3812684ee4377914801cd770890c78bdeecedf"},(0,n.kt)("inlineCode",{parentName:"a"},"ac38126"))),(0,n.kt)("li",{parentName:"ul"},"refactor(list): remove selection control ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a09b1798a62a6e192deb1d217d0c44b4b881ce6a"},(0,n.kt)("inlineCode",{parentName:"a"},"a09b179"))),(0,n.kt)("li",{parentName:"ul"},"refactor(list): remove selection control ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/17bf710d00a91acd35356dbaa9d5093ca80a8987"},(0,n.kt)("inlineCode",{parentName:"a"},"17bf710"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook):unordered list minor change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/df2b72730500aee5d0bbc82185222edacad38b2b"},(0,n.kt)("inlineCode",{parentName:"a"},"df2b727"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook):unordered list minor change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef6db73ce2236d0f653212d2f57c336f1f8d806e"},(0,n.kt)("inlineCode",{parentName:"a"},"ef6db73"))),(0,n.kt)("li",{parentName:"ul"},"refactor(colors): remove metalic blue color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b2f95b6dc3b1d8314827d56e88efa0dfc719aca2"},(0,n.kt)("inlineCode",{parentName:"a"},"b2f95b6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(colors): remove metalic blue color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1eea33f71fdde5834f82d244224c185fde3ab8ba"},(0,n.kt)("inlineCode",{parentName:"a"},"1eea33f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button): update variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b1774d8c7f32ded2eff654b0d16e45d944fe5690"},(0,n.kt)("inlineCode",{parentName:"a"},"b1774d8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button): update variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/061f3e3042f28575dbb1a70f09a62bda728815be"},(0,n.kt)("inlineCode",{parentName:"a"},"061f3e3"))),(0,n.kt)("li",{parentName:"ul"},"change(blockquote): treat slate as a variation of blockquote component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19bd9a5f67e573b71531fe34b29d2e08e0856eae"},(0,n.kt)("inlineCode",{parentName:"a"},"19bd9a5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(container): remove important from rules ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e984771ed59fe849246ae8a01d9d84f3f2f232c5"},(0,n.kt)("inlineCode",{parentName:"a"},"e984771"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook):add textarea control to add/remove fluid class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/475f540efa76d0993c3f7bd72d4c646385f4c909"},(0,n.kt)("inlineCode",{parentName:"a"},"475f540"))),(0,n.kt)("li",{parentName:"ul"},"refactor(container): remove important from rules ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1cc69848705d3d592221bf7fa7d43c8b0eb37f09"},(0,n.kt)("inlineCode",{parentName:"a"},"1cc6984"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): add required attribute to form fields ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fecee278b920c44dd0dd34ace81f9606258c8f7c"},(0,n.kt)("inlineCode",{parentName:"a"},"fecee27"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progressBar): update progress bar colors with vars ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4ef1f0f6eba9792901bc9e0ec5b01877e9da96e"},(0,n.kt)("inlineCode",{parentName:"a"},"c4ef1f0"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progressBar): update progress bar colors with vars ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a44d73c48b6ccc988508fed5c3fb585353fe0958"},(0,n.kt)("inlineCode",{parentName:"a"},"a44d73c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): add required attribute to form fields ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/21da79eafa9f23dcf01cac7e096da7fab2187450"},(0,n.kt)("inlineCode",{parentName:"a"},"21da79e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(list): adjust bullet size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2b29e4e429f939500bc7d7ebd5836b8bc24090ec"},(0,n.kt)("inlineCode",{parentName:"a"},"2b29e4e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(list): adjust bullet size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/61c341cfdad3fccdd7499f6957f91ab99159ea16"},(0,n.kt)("inlineCode",{parentName:"a"},"61c341c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): add inverted background to global variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1427e70f2b208531bbb91ab1a708430f1c03ea3a"},(0,n.kt)("inlineCode",{parentName:"a"},"1427e70"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): add inverted background to global variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea25dfa5589181b7d23bef153bae3ab279e70167"},(0,n.kt)("inlineCode",{parentName:"a"},"ea25dfa"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): remove custom class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/46cc5601e378c7bfcf927b7c25dae2a2d3f795fd"},(0,n.kt)("inlineCode",{parentName:"a"},"46cc560"))),(0,n.kt)("li",{parentName:"ul"},"refactor(container): update mobile width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d548a44d86745270778134028be597f559d7a0b4"},(0,n.kt)("inlineCode",{parentName:"a"},"d548a44"))),(0,n.kt)("li",{parentName:"ul"},"refactor(grid): replace px with rem units ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e792f51e4f41b8f3f53e297b9e5a01d5e2d9bfb1"},(0,n.kt)("inlineCode",{parentName:"a"},"e792f51"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): remove custom class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b5c8e7c2aeb2751d4b981eacc51e3dda58a922dc"},(0,n.kt)("inlineCode",{parentName:"a"},"b5c8e7c"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): updated template to change what's new title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e15f4d3c3e5d4199886bb4cfeda8dce6a4bf041"},(0,n.kt)("inlineCode",{parentName:"a"},"3e15f4d"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): added display variable for footer site logos ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5b3c2f6d85b3a42eefa8521a074a7581bfbd8fb"},(0,n.kt)("inlineCode",{parentName:"a"},"d5b3c2f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(grid): replace px with rem units ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f0331d00f537cf41ca184796386f60a88bfe6c86"},(0,n.kt)("inlineCode",{parentName:"a"},"f0331d0"))),(0,n.kt)("li",{parentName:"ul"},"change(github): auto deploy only on develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/11d6b4e9059674b6dd1fe655995231be03a910fb"},(0,n.kt)("inlineCode",{parentName:"a"},"11d6b4e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): implementation in preparation for Volto integration #20 #89 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/95b136d51ddbc5632c0fa1cc696c2297a8c4695c"},(0,n.kt)("inlineCode",{parentName:"a"},"95b136d"))),(0,n.kt)("li",{parentName:"ul"},"change(github): trigger autobuild when modifying templates contents ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/46094b1427793cd88da6f615b16b70e6cfaee9af"},(0,n.kt)("inlineCode",{parentName:"a"},"46094b1")))),(0,n.kt)("h4",{id:"-internal-changes-22"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(list): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f9e3b05effc0afeddc234b491bc86f2ec82a764f"},(0,n.kt)("inlineCode",{parentName:"a"},"f9e3b05"))),(0,n.kt)("li",{parentName:"ul"},"style(list): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8eb715b05b3bef2795d2485084386c6e910392cf"},(0,n.kt)("inlineCode",{parentName:"a"},"8eb715b"))),(0,n.kt)("li",{parentName:"ul"},"chore(github): merge changes from develop to develop-itml ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/063bd6ecc5e47321854ca4994a91bf0a43ab3e3e"},(0,n.kt)("inlineCode",{parentName:"a"},"063bd6e"))),(0,n.kt)("li",{parentName:"ul"},"chore(github): build deployment only on develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a5a1b0802b46d674d04ae099afc8510e3cb62222"},(0,n.kt)("inlineCode",{parentName:"a"},"a5a1b08"))),(0,n.kt)("li",{parentName:"ul"},"chore(github): build deployment only on develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bb455aa4308e6593c45bcb3a62b8058709d74f83"},(0,n.kt)("inlineCode",{parentName:"a"},"bb455aa"))),(0,n.kt)("li",{parentName:"ul"},"chore(github): merge changes from develop to develop-itml ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/129c12f60025db50bac5b2d3dd36e04a97d49499"},(0,n.kt)("inlineCode",{parentName:"a"},"129c12f")))),(0,n.kt)("h4",{id:"\ufe0f-others-51"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},'Revert "chore(github): merge changes from develop to develop-itml" ',(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca9520fe8d91f8924ea203eb32001e3e6518e472"},(0,n.kt)("inlineCode",{parentName:"a"},"ca9520f"))),(0,n.kt)("li",{parentName:"ul"},"refactor breadcrumbs component, make it functional and customizable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e902d6931060c5676d67842f95391379fcb3cccf"},(0,n.kt)("inlineCode",{parentName:"a"},"e902d69"))),(0,n.kt)("li",{parentName:"ul"},"rollback(cards): move custom display to volto-block-image-cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2564b1ec2cc52670c0f2abc92c49161f5cd1b006"},(0,n.kt)("inlineCode",{parentName:"a"},"2564b1e"))),(0,n.kt)("li",{parentName:"ul"},"bring back segment wrapper and make it attached ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8458f0321f44f22a605e7179485d97f41a0afa38"},(0,n.kt)("inlineCode",{parentName:"a"},"8458f03"))),(0,n.kt)("li",{parentName:"ul"},"no ",(0,n.kt)("inlineCode",{parentName:"li"},"display: flex")," for blockquote added from slate ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5595ce1b8173e6952ab3926dc5f3c988279a42dc"},(0,n.kt)("inlineCode",{parentName:"a"},"5595ce1"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about code length ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a5f36523682dde8d1e16f416a07cd0c8c615a386"},(0,n.kt)("inlineCode",{parentName:"a"},"a5f3652"))),(0,n.kt)("li",{parentName:"ul"},"Add indenting rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/15c44cbcb6a52d0fd0438ff9b5d0e5963a4b53a0"},(0,n.kt)("inlineCode",{parentName:"a"},"15c44cb"))),(0,n.kt)("li",{parentName:"ul"},"fix warning related to proptype ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/946c6c6bc9dece0985ae4b9f9cad6ece2be0ff2c"},(0,n.kt)("inlineCode",{parentName:"a"},"946c6c6"))),(0,n.kt)("li",{parentName:"ul"},"fix profile section css overflow ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/db5126fc902e191d1e18fb7e4c54877c8d8786e6"},(0,n.kt)("inlineCode",{parentName:"a"},"db5126f"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about import sorting ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/804e188eea30427053111310ad2d3edf6a4ec78b"},(0,n.kt)("inlineCode",{parentName:"a"},"804e188"))),(0,n.kt)("li",{parentName:"ul"},"don't use volto-slate ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6a029765d3a59ac65b3b5dd18c1a9624bae1d52a"},(0,n.kt)("inlineCode",{parentName:"a"},"6a02976"))),(0,n.kt)("li",{parentName:"ul"},"remove segment custom width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1d3ea40f98bbdc1eab95b4da739a659b5e29ec16"},(0,n.kt)("inlineCode",{parentName:"a"},"1d3ea40"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about naming vars ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f9020fa3073190681de36cf1dcdf62e69ac2c74"},(0,n.kt)("inlineCode",{parentName:"a"},"8f9020f"))),(0,n.kt)("li",{parentName:"ul"},"update style for accordion title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0b0d678c69d8b0765ff015b0355c01d57c643192"},(0,n.kt)("inlineCode",{parentName:"a"},"0b0d678"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.6.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e771e657e5bedca3630d05cda643c45da5369d4c"},(0,n.kt)("inlineCode",{parentName:"a"},"e771e65"))),(0,n.kt)("li",{parentName:"ul"},"update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bbcab87ef4c8475f347f0daf4ab7e428e69c2316"},(0,n.kt)("inlineCode",{parentName:"a"},"bbcab87"))),(0,n.kt)("li",{parentName:"ul"},"add margin to ","<","br",">"," element to simulate gap as in design ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c6685c11a14febfc9b6c592a9adc9a25a0b80458"},(0,n.kt)("inlineCode",{parentName:"a"},"c6685c1"))),(0,n.kt)("li",{parentName:"ul"},"make breadcrumbs default size as tiny ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/589581fa29a7e249e59393bebe9dfe284090db6f"},(0,n.kt)("inlineCode",{parentName:"a"},"589581f"))),(0,n.kt)("li",{parentName:"ul"},"remove uneeded style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/82a8fb1eb3a359d54bc59234e498eb122d07223c"},(0,n.kt)("inlineCode",{parentName:"a"},"82a8fb1"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about hardcoded values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e04e0df7cd47d575e649d1995ea5c64b2a431b05"},(0,n.kt)("inlineCode",{parentName:"a"},"e04e0df"))),(0,n.kt)("li",{parentName:"ul"},"Add file mode rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/65c9a9357a82a39bf54862eff9231264a6277ab5"},(0,n.kt)("inlineCode",{parentName:"a"},"65c9a93"))),(0,n.kt)("li",{parentName:"ul"},"Add DRY rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/66c9c3a6b05bf3395f5bda1a7c5af26a9962e66c"},(0,n.kt)("inlineCode",{parentName:"a"},"66c9c3a"))),(0,n.kt)("li",{parentName:"ul"},"set profile section overflow to auto ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/71ab47f89a433233c14b394c3824e607dd18a393"},(0,n.kt)("inlineCode",{parentName:"a"},"71ab47f"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using eea-website-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/647a6e3e2093f2c4884c356eb148453551c8f33f"},(0,n.kt)("inlineCode",{parentName:"a"},"647a6e3"))),(0,n.kt)("li",{parentName:"ul"},"removed override already present in card.less ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/50d2ab26f85c8f409da02ec128cc1df34848ca69"},(0,n.kt)("inlineCode",{parentName:"a"},"50d2ab2"))),(0,n.kt)("li",{parentName:"ul"},"update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7a1d482aa875ab2669ed688663228d79ce9b7bea"},(0,n.kt)("inlineCode",{parentName:"a"},"7a1d482"))),(0,n.kt)("li",{parentName:"ul"},"Add functional components rule; add classnames rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91a0b067c7a36002a6d49c5c0238f593b5a6ac6e"},(0,n.kt)("inlineCode",{parentName:"a"},"91a0b06"))),(0,n.kt)("li",{parentName:"ul"},"added comment about need for removal of this fix later ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/65b81665c1cc41991b4903bb44a5eb7fb8ec5f3b"},(0,n.kt)("inlineCode",{parentName:"a"},"65b8166")))),(0,n.kt)("h3",{id:"015---2022-03-08"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.4...0.1.5"},"0.1.5")," - 2022-03-08"),(0,n.kt)("h4",{id:"-new-features-31"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(cards): add custom display for volto-block-image-cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f49ffb65f41c78499f56251c2de267ce5617b4c5"},(0,n.kt)("inlineCode",{parentName:"a"},"f49ffb6"))),(0,n.kt)("li",{parentName:"ul"},"feat(KeyContent): add new component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2534c542c2fd729b31a9064a21dae2bd3cacb2e4"},(0,n.kt)("inlineCode",{parentName:"a"},"2534c54"))),(0,n.kt)("li",{parentName:"ul"},"feat(docusaurus): Updated developer guidelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca146ffd42cb31286a5c49fa09390d0a93270cfa"},(0,n.kt)("inlineCode",{parentName:"a"},"ca146ff"))),(0,n.kt)("li",{parentName:"ul"},"feat(storybook): add testimonial component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/55d97472d82f3819674e78f684e197625c9f854c"},(0,n.kt)("inlineCode",{parentName:"a"},"55d9747"))),(0,n.kt)("li",{parentName:"ul"},"feat(storybook): add AvatarGrid component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b6684456ea6fa17695734b5179b39be77644da93"},(0,n.kt)("inlineCode",{parentName:"a"},"b668445"))),(0,n.kt)("li",{parentName:"ul"},"feat(storybook):add Loader component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6758346a516f7c4be5d66dfdf198dbe2ffe3f01"},(0,n.kt)("inlineCode",{parentName:"a"},"f675834")))),(0,n.kt)("h4",{id:"-bug-fixes-46"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(breakpoints): fix largest screen breakpoint bug on scaling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e4a11c876c20187351fa9454b4fbf0de3e502bff"},(0,n.kt)("inlineCode",{parentName:"a"},"e4a11c8"))),(0,n.kt)("li",{parentName:"ul"},"fix(profile): section css overflow and padding issues #95 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bb9eb0f83307524bda5cf86aa0dfd678c65da653"},(0,n.kt)("inlineCode",{parentName:"a"},"bb9eb0f"))),(0,n.kt)("li",{parentName:"ul"},"fix(storybook): lint auto changes for AvatarGrid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8e74f17df77f8f9f96bf442dc178417bbfc04c6"},(0,n.kt)("inlineCode",{parentName:"a"},"b8e74f1"))),(0,n.kt)("li",{parentName:"ul"},"fix(components): add grid structure to various components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cc33546deda634cee6031bd6cde6eef3eaacb76a"},(0,n.kt)("inlineCode",{parentName:"a"},"cc33546"))),(0,n.kt)("li",{parentName:"ul"},"fix(header) re-added span tags removed in pull request #74 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/00702d7831b84aad52f10368dbef740baf581ab8"},(0,n.kt)("inlineCode",{parentName:"a"},"00702d7")))),(0,n.kt)("h4",{id:"-enhancements-61"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(button): styling updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/37afda5b00797d456e303fb585dad145b575b2ed"},(0,n.kt)("inlineCode",{parentName:"a"},"37afda5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tab): updates on variables and overrides ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/54bf703f9f34f2f945f4635cd4bc4728174c7d47"},(0,n.kt)("inlineCode",{parentName:"a"},"54bf703"))),(0,n.kt)("li",{parentName:"ul"},"change(blockquote): treat slate as a variation of blockquote component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5e8a8b8220c7c25a266f045442aae44303eb8701"},(0,n.kt)("inlineCode",{parentName:"a"},"5e8a8b8"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): added display variable for footer site logos ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2f942b4a80c3ed9eb94e8b71299f4ebf33501eea"},(0,n.kt)("inlineCode",{parentName:"a"},"2f942b4"))),(0,n.kt)("li",{parentName:"ul"},"refactor(checkbox/radio): remove header from message and adjust top position of bullet ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a072b30bb01cf59339960cfd3254584cfae57c6"},(0,n.kt)("inlineCode",{parentName:"a"},"4a072b3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(color): remove secondaryColorDarken variable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/74c8ba073cc92af3987d81d484768235b95fcffb"},(0,n.kt)("inlineCode",{parentName:"a"},"74c8ba0"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): updated template to change what's new title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/58f58c887560e707ced47ccbac6897d8ebcf45d2"},(0,n.kt)("inlineCode",{parentName:"a"},"58f58c8"))),(0,n.kt)("li",{parentName:"ul"},"change(github): auto deploy only on develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bfa35a32bf0fefd4433aec4f7f8ee2cfe53eaae5"},(0,n.kt)("inlineCode",{parentName:"a"},"bfa35a3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): implementation in preparation for Volto integration #20 #97 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cddda2090d3d17c086dfd0cdb8a4dab3f886bfcd"},(0,n.kt)("inlineCode",{parentName:"a"},"cddda20"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumbs): component, make it functional and pluggable #32 #94 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f42e802bdf29d02c76131379b168c8c2119864b"},(0,n.kt)("inlineCode",{parentName:"a"},"9f42e80"))),(0,n.kt)("li",{parentName:"ul"},"change(card): added styles for volto cards integration #92 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a46ac21e6229059fb982174610a733c44000a2b6"},(0,n.kt)("inlineCode",{parentName:"a"},"a46ac21"))),(0,n.kt)("li",{parentName:"ul"},"refactor(grid): remove column count from example ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac0e9cf8e9f6ea99ddf8d5a92e49903999cde262"},(0,n.kt)("inlineCode",{parentName:"a"},"ac0e9cf"))),(0,n.kt)("li",{parentName:"ul"},"change(github): trigger autobuild when modifying templates contents ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f7d1523e92c1c4b3e6285a48d5f8c776aecfa9c"},(0,n.kt)("inlineCode",{parentName:"a"},"5f7d152"))),(0,n.kt)("li",{parentName:"ul"},"refactor(grid): remove custom grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1d978a96a464b3285961d54cb1cbc7c9eaf35faf"},(0,n.kt)("inlineCode",{parentName:"a"},"1d978a9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Form):change form field wrapper implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/73cdd6daba19aefce091552a62a528a42b323228"},(0,n.kt)("inlineCode",{parentName:"a"},"73cdd6d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(message): update colors to match design ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/633ce311dc5a6a141ee514a9108753531aa661e4"},(0,n.kt)("inlineCode",{parentName:"a"},"633ce31"))),(0,n.kt)("li",{parentName:"ul"},"refactor(checkbox/radio): update variables and remove important rules ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ad533b4e3e821c126f62b558523057720d2573c8"},(0,n.kt)("inlineCode",{parentName:"a"},"ad533b4"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables): add variables to less for new components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/47df026655748865bc7af8f44d51e5a9fcf7ee34"},(0,n.kt)("inlineCode",{parentName:"a"},"47df026"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Tab): fix vertical tab alignment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/401bdf2868e8c8305ad2c3cefa3188b730348574"},(0,n.kt)("inlineCode",{parentName:"a"},"401bdf2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(lint changes): add lint changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6f6847fc19db7922c93cb5f52e50db845d053e04"},(0,n.kt)("inlineCode",{parentName:"a"},"6f6847f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(inpageNavigation): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/62f74ea3c08069da8615516a52df8415d50048d5"},(0,n.kt)("inlineCode",{parentName:"a"},"62f74ea"))),(0,n.kt)("li",{parentName:"ul"},"refactor(message): updates on styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4cf8501de961794baf5a8ecec99e4bcddc2d71b"},(0,n.kt)("inlineCode",{parentName:"a"},"b4cf850"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): update class name ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef0969bd873e9fdd0eb32593f7c3f995270ef44c"},(0,n.kt)("inlineCode",{parentName:"a"},"ef0969b"))),(0,n.kt)("li",{parentName:"ul"},"change(github): use develop for auto pushing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a32a723f8126292f62a71cb4c4f94a2c7dec7605"},(0,n.kt)("inlineCode",{parentName:"a"},"a32a723")))),(0,n.kt)("h4",{id:"-internal-changes-23"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(design-system): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/631fa90e2ec5352c01e2ee0824de4a45cc33de34"},(0,n.kt)("inlineCode",{parentName:"a"},"631fa90"))),(0,n.kt)("li",{parentName:"ul"},"style(checkbox/radio): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a04939fdb530ed998a40aeb5b85a748d5dace0cd"},(0,n.kt)("inlineCode",{parentName:"a"},"a04939f"))),(0,n.kt)("li",{parentName:"ul"},"style(design-system): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c753f0b378384150597283c97f657eafbfff296"},(0,n.kt)("inlineCode",{parentName:"a"},"3c753f0"))),(0,n.kt)("li",{parentName:"ul"},"style(message): stylelint fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5b75057cb3a7b366a940ca9d1ba577cd09dc7225"},(0,n.kt)("inlineCode",{parentName:"a"},"5b75057")))),(0,n.kt)("h4",{id:"-documentation-changes-20"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): visuals guidelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/544a9502dc046d7e8bc635c19480a8deb2b31379"},(0,n.kt)("inlineCode",{parentName:"a"},"544a950"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): search guidelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0fb229d8b6a042bd716a093faaf8a1461b70cdb8"},(0,n.kt)("inlineCode",{parentName:"a"},"0fb229d"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): loader page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/892a25dba66f3557af22f8f0f96db695ddf1b402"},(0,n.kt)("inlineCode",{parentName:"a"},"892a25d")))),(0,n.kt)("h4",{id:"\ufe0f-others-52"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Reformat header.less ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f99dfc82c165304ca5600ce5138c1233615ab69"},(0,n.kt)("inlineCode",{parentName:"a"},"1f99dfc"))),(0,n.kt)("li",{parentName:"ul"},"Close menu when changing path ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/65daea9ee34c64bd5e51104077bc745b68169cd2"},(0,n.kt)("inlineCode",{parentName:"a"},"65daea9"))),(0,n.kt)("li",{parentName:"ul"},"refactor breadcrumbs component, make it functional and customizable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ec374e20565eb0a5aed0ff67a02cd6f77eba1f0"},(0,n.kt)("inlineCode",{parentName:"a"},"4ec374e"))),(0,n.kt)("li",{parentName:"ul"},"rollback(cards): move custom display to volto-block-image-cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/79d4c8914b7184d559465135f046b60ee96301e1"},(0,n.kt)("inlineCode",{parentName:"a"},"79d4c89"))),(0,n.kt)("li",{parentName:"ul"},"Open overlay menu on global menu click ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cc749bc4266aae793b85d72c43c8a08b0c2fec48"},(0,n.kt)("inlineCode",{parentName:"a"},"cc749bc"))),(0,n.kt)("li",{parentName:"ul"},"bring back segment wrapper and make it attached ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f413ffaf641c161e8ff0f8010759cffd7e30238"},(0,n.kt)("inlineCode",{parentName:"a"},"9f413ff"))),(0,n.kt)("li",{parentName:"ul"},"Use renderMenuItem also in mobile menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/02de0bb4750062a310109256b6c6d29120287fd4"},(0,n.kt)("inlineCode",{parentName:"a"},"02de0bb"))),(0,n.kt)("li",{parentName:"ul"},"Fix clicking outside closes menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af526646559d1a00ade04dc24def26e5665a5a8c"},(0,n.kt)("inlineCode",{parentName:"a"},"af52664"))),(0,n.kt)("li",{parentName:"ul"},"Cleanup args in header story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2bf6a304b1149ec1204f08f318248ed52ad8fa3d"},(0,n.kt)("inlineCode",{parentName:"a"},"2bf6a30"))),(0,n.kt)("li",{parentName:"ul"},"fix warning related to proptype ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/824b9beff77aae139882cd50a1d670a02ec6f723"},(0,n.kt)("inlineCode",{parentName:"a"},"824b9be"))),(0,n.kt)("li",{parentName:"ul"},"fix profile section css overflow ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8fd265413149f1b5e033dffa0fbcb5ef5ecad15f"},(0,n.kt)("inlineCode",{parentName:"a"},"8fd2654"))),(0,n.kt)("li",{parentName:"ul"},"don't use volto-slate ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70ca3d4ec4e8e4dc633e957b842d94b708af8b82"},(0,n.kt)("inlineCode",{parentName:"a"},"70ca3d4"))),(0,n.kt)("li",{parentName:"ul"},"remove segment custom width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a60d84d5fe76578b7760aa1dad6eef9a20916a7"},(0,n.kt)("inlineCode",{parentName:"a"},"4a60d84"))),(0,n.kt)("li",{parentName:"ul"},"update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/96f4af0fb22605fd294472eb18f7f62e4bd7b0fb"},(0,n.kt)("inlineCode",{parentName:"a"},"96f4af0"))),(0,n.kt)("li",{parentName:"ul"},"Fix TopDropdownMenu component rendering in mobile ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4626def4e1f97f323f3fef130f5d531925ba15b"},(0,n.kt)("inlineCode",{parentName:"a"},"a4626de"))),(0,n.kt)("li",{parentName:"ul"},"Add usePrevious hook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/797faba3cad73288755f6c6e685448d780905189"},(0,n.kt)("inlineCode",{parentName:"a"},"797faba"))),(0,n.kt)("li",{parentName:"ul"},"make breadcrumbs default size as tiny ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c8e1c64f27596421e78927f11616093667b04c6"},(0,n.kt)("inlineCode",{parentName:"a"},"3c8e1c6"))),(0,n.kt)("li",{parentName:"ul"},"Update package.json ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fa020cb5dd85e28d0713b3e8a11aff5b2c1060af"},(0,n.kt)("inlineCode",{parentName:"a"},"fa020cb"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about hardcoded values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0c6912c82625c2e389fd75f0d0a051348781d407"},(0,n.kt)("inlineCode",{parentName:"a"},"0c6912c"))),(0,n.kt)("li",{parentName:"ul"},"set profile section overflow to auto ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8db62bbcd0258fee16411e94888c732a29b1949d"},(0,n.kt)("inlineCode",{parentName:"a"},"8db62bb"))),(0,n.kt)("li",{parentName:"ul"},"added comment about need for removal of this fix later ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6fdbd713dbfe795e7e81cfa37398774fad71c054"},(0,n.kt)("inlineCode",{parentName:"a"},"6fdbd71"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using eea-website-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6051724437a38675e659c797bb5586ef81286ec0"},(0,n.kt)("inlineCode",{parentName:"a"},"6051724"))),(0,n.kt)("li",{parentName:"ul"},"removed override already present in card.less ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93c4e5aac9cc85ff2cc6c04180f6655d5f5616dc"},(0,n.kt)("inlineCode",{parentName:"a"},"93c4e5a"))),(0,n.kt)("li",{parentName:"ul"},"Remove console.log calls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8a3a4cb32bfed2daa86339b15c0301eb01e19f23"},(0,n.kt)("inlineCode",{parentName:"a"},"8a3a4cb"))),(0,n.kt)("li",{parentName:"ul"},"update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/81bb7d4a02576887b80e978c32724580b772d57a"},(0,n.kt)("inlineCode",{parentName:"a"},"81bb7d4"))),(0,n.kt)("li",{parentName:"ul"},"Update comment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ffa24001728f824b8e7154c93c5aad8196bd92ea"},(0,n.kt)("inlineCode",{parentName:"a"},"ffa2400"))),(0,n.kt)("li",{parentName:"ul"},"merge develop into this branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ad5b388957b7d67f1b7ae06f2b80b1c30868d72a"},(0,n.kt)("inlineCode",{parentName:"a"},"ad5b388"))),(0,n.kt)("li",{parentName:"ul"},"WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a8d97f10b9768894a135549e9dc8f938b663f905"},(0,n.kt)("inlineCode",{parentName:"a"},"a8d97f1"))),(0,n.kt)("li",{parentName:"ul"},"Use header.less from develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/99edbc6ccd6023162dcce75b36d6b9451b06f6dc"},(0,n.kt)("inlineCode",{parentName:"a"},"99edbc6"))),(0,n.kt)("li",{parentName:"ul"},"WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/57b5783e2b03859f89c5926951ea232547b455cc"},(0,n.kt)("inlineCode",{parentName:"a"},"57b5783"))),(0,n.kt)("li",{parentName:"ul"},"WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/785da36b725bf14bff28a67da799c51bc5b4f20f"},(0,n.kt)("inlineCode",{parentName:"a"},"785da36"))),(0,n.kt)("li",{parentName:"ul"},"WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5d1eba9a1df2d2bb078f119ee99b0627ac55ae1d"},(0,n.kt)("inlineCode",{parentName:"a"},"5d1eba9"))),(0,n.kt)("li",{parentName:"ul"},"adds Tags ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e37fc1957ed8357bc2190239da4440bb98b0dabe"},(0,n.kt)("inlineCode",{parentName:"a"},"e37fc19"))),(0,n.kt)("li",{parentName:"ul"},"Add useClickOutside hook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70364c88631cbfa6e6854a99dde42ea2ad73221f"},(0,n.kt)("inlineCode",{parentName:"a"},"70364c8"))),(0,n.kt)("li",{parentName:"ul"},"Implement outside click handling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fa6f81823c47ca32209f3f1c8b1810b5447f97ec"},(0,n.kt)("inlineCode",{parentName:"a"},"fa6f818"))),(0,n.kt)("li",{parentName:"ul"},"Simplify overlay menu template ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/28b04784cf32ed4393e452c56680bffda411d526"},(0,n.kt)("inlineCode",{parentName:"a"},"28b0478"))),(0,n.kt)("li",{parentName:"ul"},"fixes less variables, fixes tags positioning ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cc19b9b537b5f21ceaba986bbd0182bb3b867ac7"},(0,n.kt)("inlineCode",{parentName:"a"},"cc19b9b"))),(0,n.kt)("li",{parentName:"ul"},"WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/15bc0f4287b705839f6fd5ac8835f03e2e99f1f1"},(0,n.kt)("inlineCode",{parentName:"a"},"15bc0f4"))),(0,n.kt)("li",{parentName:"ul"},"no ",(0,n.kt)("inlineCode",{parentName:"li"},"display: flex")," for blockquote added from slate ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/312a893e924dea4e7aed182be4a615bc3c4f04f8"},(0,n.kt)("inlineCode",{parentName:"a"},"312a893"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about code length ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/318cd48f8116a49897590137eebe2ce35285b813"},(0,n.kt)("inlineCode",{parentName:"a"},"318cd48"))),(0,n.kt)("li",{parentName:"ul"},"Add indenting rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d58968522ef82a7d5381fc4958ae2049562b7103"},(0,n.kt)("inlineCode",{parentName:"a"},"d589685"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about import sorting ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cd337c16650ae169e4b634b034f40f3cd887ceb8"},(0,n.kt)("inlineCode",{parentName:"a"},"cd337c1"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about naming vars ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b112de0dcaa4209cfe143dcd26ba929b4cbe0a42"},(0,n.kt)("inlineCode",{parentName:"a"},"b112de0"))),(0,n.kt)("li",{parentName:"ul"},"Bring back classNames from header subpopup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e477a5150bee569fadca300a3ccc3586e7d7ef4a"},(0,n.kt)("inlineCode",{parentName:"a"},"e477a51"))),(0,n.kt)("li",{parentName:"ul"},"removes tags hashtag from jsx ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6b8b3e94a6a1060304c1e5b228806985343ef6a0"},(0,n.kt)("inlineCode",{parentName:"a"},"6b8b3e9"))),(0,n.kt)("li",{parentName:"ul"},"WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d481324ff7a63e3cb0847b89fa188cc8781de4dc"},(0,n.kt)("inlineCode",{parentName:"a"},"d481324"))),(0,n.kt)("li",{parentName:"ul"},"fixes undefined on empty classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4b29080d646c44b02a28c4619f5285227fa2bf78"},(0,n.kt)("inlineCode",{parentName:"a"},"4b29080"))),(0,n.kt)("li",{parentName:"ul"},"stylelint changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a5ab83018bccd8fbfcf2160fe9c6c4fc24abe83a"},(0,n.kt)("inlineCode",{parentName:"a"},"a5ab830"))),(0,n.kt)("li",{parentName:"ul"},"Footer link color @white ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/578e4f7bb174cd46d50a8b5c5a97f8bbff510f11"},(0,n.kt)("inlineCode",{parentName:"a"},"578e4f7"))),(0,n.kt)("li",{parentName:"ul"},"add margin to ","<","br",">"," element to simulate gap as in design ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9ab9a97dc231fd3b704fedd99c742f425be4578c"},(0,n.kt)("inlineCode",{parentName:"a"},"9ab9a97"))),(0,n.kt)("li",{parentName:"ul"},"impors colors from site variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6117267716b76b17379ae989911c5d5f00e63259"},(0,n.kt)("inlineCode",{parentName:"a"},"6117267"))),(0,n.kt)("li",{parentName:"ul"},"small fix for the link in footer action ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/72df049aa644ac2a675057bf3a96440144acabfb"},(0,n.kt)("inlineCode",{parentName:"a"},"72df049"))),(0,n.kt)("li",{parentName:"ul"},"remove uneeded style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/66e9064de395b37caef1436aaee3a164b53ae406"},(0,n.kt)("inlineCode",{parentName:"a"},"66e9064"))),(0,n.kt)("li",{parentName:"ul"},"use proper naming conventions for var naming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/596e3143e28f23e60f20becd97276831c89d9684"},(0,n.kt)("inlineCode",{parentName:"a"},"596e314"))),(0,n.kt)("li",{parentName:"ul"},"Add file mode rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/805baa7db5ae1863bc85687f8f872c74a26647c8"},(0,n.kt)("inlineCode",{parentName:"a"},"805baa7"))),(0,n.kt)("li",{parentName:"ul"},"use less variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b43ac8d3bfc0231313f3d8bc719e373a127c6329"},(0,n.kt)("inlineCode",{parentName:"a"},"b43ac8d"))),(0,n.kt)("li",{parentName:"ul"},"Add DRY rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2f1584e769d0462c0385847630e3bbfe48a52339"},(0,n.kt)("inlineCode",{parentName:"a"},"2f1584e"))),(0,n.kt)("li",{parentName:"ul"},"Add functional components rule; add classnames rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1b2915ed3a4a3446e11058ac7de8937cf5755630"},(0,n.kt)("inlineCode",{parentName:"a"},"1b2915e"))),(0,n.kt)("li",{parentName:"ul"},"fix z-index of header ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d2a5d6bb822a298367ce58d867939318171a300"},(0,n.kt)("inlineCode",{parentName:"a"},"7d2a5d6"))),(0,n.kt)("li",{parentName:"ul"},"Remove comment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d120b16491406ea7cc26428dcf13ec2565868d0"},(0,n.kt)("inlineCode",{parentName:"a"},"7d120b1")))),(0,n.kt)("h3",{id:"014---2022-03-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.4-beta.0...0.1.4"},"0.1.4")," - 2022-03-01"),(0,n.kt)("h4",{id:"-enhancements-62"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(pagination): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/06cc3b6db6f56040264e4c70fe2e39ace14499d7"},(0,n.kt)("inlineCode",{parentName:"a"},"06cc3b6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Form):create form field wrapper file ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/95b9934a75ffd6b254b7bb9c119b8087c7565c13"},(0,n.kt)("inlineCode",{parentName:"a"},"95b9934"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): update margins for menu items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/230e476d133b3f7853a73f3f2ee372c6306bd43f"},(0,n.kt)("inlineCode",{parentName:"a"},"230e476"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): update gradient ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/47f2ea40c4f214a41af58ceb90839a05932b0b55"},(0,n.kt)("inlineCode",{parentName:"a"},"47f2ea4")))),(0,n.kt)("h4",{id:"-documentation-changes-21"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): divider page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c6bb2389f819a9ebd8e34db0e825f3e5f62130d4"},(0,n.kt)("inlineCode",{parentName:"a"},"c6bb238")))),(0,n.kt)("h4",{id:"\ufe0f-others-53"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"add footer links,align footer image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b039564e8cd3a0319ebe07f434f20bb7d7827fe1"},(0,n.kt)("inlineCode",{parentName:"a"},"b039564"))),(0,n.kt)("li",{parentName:"ul"},"cosmetics: remove formatting ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e02b08dc2adc8b89a5b9117b5a572c7080248c29"},(0,n.kt)("inlineCode",{parentName:"a"},"e02b08d"))),(0,n.kt)("li",{parentName:"ul"},"refactor Footer component to consume children and prop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/faafcffe07383ba55f5746cb971cdf706d988f78"},(0,n.kt)("inlineCode",{parentName:"a"},"faafcff"))),(0,n.kt)("li",{parentName:"ul"},"update footer stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4e5742872f21d9737f3de443fa0e9d1b6ba02637"},(0,n.kt)("inlineCode",{parentName:"a"},"4e57428"))),(0,n.kt)("li",{parentName:"ul"},"update stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/81973cac96ee48e9b294c45e32c0ec3d2956fe67"},(0,n.kt)("inlineCode",{parentName:"a"},"81973ca"))),(0,n.kt)("li",{parentName:"ul"},"Small improvements to footer ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6d1fdc000ab83932df62244142068f097aeeb85"},(0,n.kt)("inlineCode",{parentName:"a"},"f6d1fdc"))),(0,n.kt)("li",{parentName:"ul"},"fix header urls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e5908916823a1f5771ddbeb51b3e8af026425c49"},(0,n.kt)("inlineCode",{parentName:"a"},"e590891"))),(0,n.kt)("li",{parentName:"ul"},"Rename files in footer story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3de0c19d1ddeb69d8567026e1532fceb9221049a"},(0,n.kt)("inlineCode",{parentName:"a"},"3de0c19"))),(0,n.kt)("li",{parentName:"ul"},"add style for accordion title input on edit mode ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/598aa129f2dff0a2cb2ec57f551fa72481aa911e"},(0,n.kt)("inlineCode",{parentName:"a"},"598aa12"))),(0,n.kt)("li",{parentName:"ul"},"remove comments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2db0d2c2bbebe8bab8cf9801c5ea2650dde96b87"},(0,n.kt)("inlineCode",{parentName:"a"},"2db0d2c"))),(0,n.kt)("li",{parentName:"ul"},"Apply slate customization if volto-slate addon is used ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c066701dc359c6daf01703dac8fa61c2314c11cf"},(0,n.kt)("inlineCode",{parentName:"a"},"c066701"))),(0,n.kt)("li",{parentName:"ul"},"use relative links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af91a203bb30f5c9aa1335bfa8cdaa7857d577e2"},(0,n.kt)("inlineCode",{parentName:"a"},"af91a20"))),(0,n.kt)("li",{parentName:"ul"},"make footer anchor links white ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0c671e1bf52268505a5dc58196c285c04da33b10"},(0,n.kt)("inlineCode",{parentName:"a"},"0c671e1"))),(0,n.kt)("li",{parentName:"ul"},"use custom var for line-height ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f7f6c7ea605014741b9426b19008a4e6eda6704c"},(0,n.kt)("inlineCode",{parentName:"a"},"f7f6c7e"))),(0,n.kt)("li",{parentName:"ul"},"Update semantic.less ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4a90aed030a8927fa2ea949e4f44d23638c751a"},(0,n.kt)("inlineCode",{parentName:"a"},"a4a90ae"))),(0,n.kt)("li",{parentName:"ul"},"Bump release version ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c41a42bc2fd8174a2554e6dce1a1090eff4f3bd1"},(0,n.kt)("inlineCode",{parentName:"a"},"c41a42b"))),(0,n.kt)("li",{parentName:"ul"},"Update style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/89686990b2481f339c9bec7e7f9d35d9caab94c5"},(0,n.kt)("inlineCode",{parentName:"a"},"8968699"))),(0,n.kt)("li",{parentName:"ul"},"remove styling on header popups ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/86c499be61c0d2df46cb3469a47f0afae2e46c49"},(0,n.kt)("inlineCode",{parentName:"a"},"86c499b"))),(0,n.kt)("li",{parentName:"ul"},"remove search icon styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aca80fdc78859461cfee1d902b1d122d4a189b31"},(0,n.kt)("inlineCode",{parentName:"a"},"aca80fd"))),(0,n.kt)("li",{parentName:"ul"},"adjust popup height for computer screens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/47c5edb06c8d8cdb9af8ac64f68be0e0360eccaf"},(0,n.kt)("inlineCode",{parentName:"a"},"47c5edb"))),(0,n.kt)("li",{parentName:"ul"},"fix login container width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9a887e3b15aa63aab9be8738f599febcfe245b81"},(0,n.kt)("inlineCode",{parentName:"a"},"9a887e3"))),(0,n.kt)("li",{parentName:"ul"},"Typo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/90da95c67e965124da7f431e464bcbc15fa67894"},(0,n.kt)("inlineCode",{parentName:"a"},"90da95c"))),(0,n.kt)("li",{parentName:"ul"},"fix search-input icon line-height ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b087ff86d7753f3ee0bf90a9b07c4ee7ef5e336c"},(0,n.kt)("inlineCode",{parentName:"a"},"b087ff8"))),(0,n.kt)("li",{parentName:"ul"},"lint fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e9790ca72b8d3caf114c1b80b9c5837fb6a1a56e"},(0,n.kt)("inlineCode",{parentName:"a"},"e9790ca"))),(0,n.kt)("li",{parentName:"ul"},"Rename, reorganize logos ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1ef8d22df5a757258d8610818f44362046bc828d"},(0,n.kt)("inlineCode",{parentName:"a"},"1ef8d22")))),(0,n.kt)("h3",{id:"014-beta0---2022-02-25"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.3...0.1.4-beta.0"},"0.1.4-beta.0")," - 2022-02-25"),(0,n.kt)("h4",{id:"-new-features-32"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(github): added feature and bug reports templates with our guidelines as checkboxes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/15490937382ced93f5ac69cc1939256c0a468823"},(0,n.kt)("inlineCode",{parentName:"a"},"1549093")))),(0,n.kt)("h3",{id:"013---2022-02-25"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.2...0.1.3"},"0.1.3")," - 2022-02-25"),(0,n.kt)("h4",{id:"-bug-fixes-47"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(all): change eol to unix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/62e72244f78d43ce1c7b1a5ceb8405e4a617c88a"},(0,n.kt)("inlineCode",{parentName:"a"},"62e7224"))),(0,n.kt)("li",{parentName:"ul"},"fix(banner): separate url value ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f9c9140a6f8640bbb83a08f9c5c268f31ff7b6a8"},(0,n.kt)("inlineCode",{parentName:"a"},"f9c9140"))),(0,n.kt)("li",{parentName:"ul"},"fix(all): merge eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c68f6e0e7ab11d7451c8aabf194f62da0b6adb28"},(0,n.kt)("inlineCode",{parentName:"a"},"c68f6e0"))),(0,n.kt)("li",{parentName:"ul"},"fix(blockquote): align self property now uses a valid entry ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ec761634765105694386ce48153fb95c09339273"},(0,n.kt)("inlineCode",{parentName:"a"},"ec76163")))),(0,n.kt)("h4",{id:"-enhancements-63"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): new implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff013afc68fed97d085e3930f6d728b266786dc1"},(0,n.kt)("inlineCode",{parentName:"a"},"ff013af"))),(0,n.kt)("li",{parentName:"ul"},"change(volto): removed customizations made for ims theme from volto-eea-design-system ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bc8d514d82da0811c10eefe6dde16e0846497a4a"},(0,n.kt)("inlineCode",{parentName:"a"},"bc8d514"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Timeline): divide to sub components and change files to .jsx ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e2bd3b6c8dd064e7269819ce465b961a0cee849"},(0,n.kt)("inlineCode",{parentName:"a"},"3e2bd3b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4e5d08d565ef08e4e390ede4a611145a16ca2fa9"},(0,n.kt)("inlineCode",{parentName:"a"},"4e5d08d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): link header's menu to mega menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/08406d84e5bc1c7eb1358baff19ff6731f124b32"},(0,n.kt)("inlineCode",{parentName:"a"},"08406d8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Menu): change mega menu implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/455a51b9a9fbb00c6a89c42de226787c143176f7"},(0,n.kt)("inlineCode",{parentName:"a"},"455a51b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Grid):minor changes and delete extra files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/272585dfed0c0e82b26c1e6843484ad0981ba75f"},(0,n.kt)("inlineCode",{parentName:"a"},"272585d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(timeline): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b98641af00f23302b728094ed00a4563b6813387"},(0,n.kt)("inlineCode",{parentName:"a"},"b98641a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): fix link hover issue for tablet ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/564e9721aea7d4ed998d88764e37454bc3154d3d"},(0,n.kt)("inlineCode",{parentName:"a"},"564e972"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add remix icons and minor updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c9c97dd719187e996efabaee28ccbf23d43f03af"},(0,n.kt)("inlineCode",{parentName:"a"},"c9c97dd"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): change header buttons implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6608b8cfffb75dda90b01728dc4fe657cbd84069"},(0,n.kt)("inlineCode",{parentName:"a"},"6608b8c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): add sub components and change existing Main ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/74c35a3fe462bdad7b9b2a5a6e969043439fdf5b"},(0,n.kt)("inlineCode",{parentName:"a"},"74c35a3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(table): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab7a0e8d9e83edb3035d57285a5f85557bcd7576"},(0,n.kt)("inlineCode",{parentName:"a"},"ab7a0e8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Footer): delete Actions & ThemeSites files and clear imports ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7a78456f55742a1b356070303218342876641e52"},(0,n.kt)("inlineCode",{parentName:"a"},"7a78456"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/326655a48aeac65b32beadb48707d0193c952702"},(0,n.kt)("inlineCode",{parentName:"a"},"326655a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Breadcrumb): add react router link and minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/073a3a36215427dce274a533b10d2d0bb3526de9"},(0,n.kt)("inlineCode",{parentName:"a"},"073a3a3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): show menu on search & minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4d49a8ae6958b84bd2dbaf7bd5f62310037eb288"},(0,n.kt)("inlineCode",{parentName:"a"},"4d49a8a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(List): add extra default list story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/95665cdca945cba104a25d5efcbc56436dffbd7f"},(0,n.kt)("inlineCode",{parentName:"a"},"95665cd"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus) change generation of what's new section and bump package version ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6c35cff4d65bb44755376c85ff4de8c6b39af00b"},(0,n.kt)("inlineCode",{parentName:"a"},"6c35cff"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Footer): minor code changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/67cb4bc5f9d341da78e7816ed89f219d8ac2836e"},(0,n.kt)("inlineCode",{parentName:"a"},"67cb4bc"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Menu): add class to mega menu items for styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19baa342c29322d11371303dc0092f472da1eeee"},(0,n.kt)("inlineCode",{parentName:"a"},"19baa34"))),(0,n.kt)("li",{parentName:"ul"},"change(accordion): modified default accordion stories titles with real accordion names ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cf11cc81d7096d338c565180597822e51fcaa8b7"},(0,n.kt)("inlineCode",{parentName:"a"},"cf11cc8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): accessibility image alt fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7347a688c2f37f08390b189f8bfa990c26c7f75"},(0,n.kt)("inlineCode",{parentName:"a"},"a7347a6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): adjust to volto in progress ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/760becabf40dbbaed36dac6c37275c7e31aa2509"},(0,n.kt)("inlineCode",{parentName:"a"},"760beca"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): header items as storybook arguments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/388c752aa0694e78f5306c2b2efa4a34df4b9ca6"},(0,n.kt)("inlineCode",{parentName:"a"},"388c752"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): update less variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/35b0a98eced49212bb08c3c7d2ac6987a16ec6be"},(0,n.kt)("inlineCode",{parentName:"a"},"35b0a98"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): actions as buttons; don't hardcode url for banner image; subcomponentize Banner, add Banner.Action; add developer guidelines on inline styles and line endings; ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6dd5a41248e8bf4095744bd89217707f3ad820a1"},(0,n.kt)("inlineCode",{parentName:"a"},"6dd5a41"))),(0,n.kt)("li",{parentName:"ul"},"refactor(blockquote): fix responsive margins and sizes rems ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/209f94f5535d83678af5fd650dcc3892a94c8a34"},(0,n.kt)("inlineCode",{parentName:"a"},"209f94f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Input): label position and style change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/970074aacae0c1ffabe88be58779b332993a37fd"},(0,n.kt)("inlineCode",{parentName:"a"},"970074a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update dropdown menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32eb0fa5dbb431c5d8e74e4c3e28b0555dab8aea"},(0,n.kt)("inlineCode",{parentName:"a"},"32eb0fa"))),(0,n.kt)("li",{parentName:"ul"},"refactor(timeline): theming updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c80c9aa5eb08c3b58199c6f6faca06445640f9f8"},(0,n.kt)("inlineCode",{parentName:"a"},"c80c9aa"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Blockquote):remove image stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a6357caa641e18e7a19b834cd907ba8c7117367f"},(0,n.kt)("inlineCode",{parentName:"a"},"a6357ca"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus) proofread blockquote usage section and removed unused api section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0bb29fdb73bce90f842748abd978a388fff93932"},(0,n.kt)("inlineCode",{parentName:"a"},"0bb29fd"))),(0,n.kt)("li",{parentName:"ul"},"change(infrastructure) cherry-pick fix 9639243 skipping jenkins on auto commits ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fc744cda5a4e6d9da0ab6e7f92868d53f28f53c1"},(0,n.kt)("inlineCode",{parentName:"a"},"fc744cd"))),(0,n.kt)("li",{parentName:"ul"},"change(ci) build storybook and docusaurus only when pushing to develop-itml branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4de0cbf9bfc4ecb46605dca1048a38db844880e7"},(0,n.kt)("inlineCode",{parentName:"a"},"4de0cbf"))),(0,n.kt)("li",{parentName:"ul"},"change(infrastructure): modify whats new doc when committing the auto deployment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/39df33ed946a8167e4954cffb676144700e0ec38"},(0,n.kt)("inlineCode",{parentName:"a"},"39df33e"))),(0,n.kt)("li",{parentName:"ul"},"change(blockquote): introduce float argument for blockquote with image storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8fc72906c264b5e96702f8518e81d5724b494a5c"},(0,n.kt)("inlineCode",{parentName:"a"},"8fc7290"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pullquote): add word break ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2245e53dde6dd8abf437afa94e92bbedc60c9f8c"},(0,n.kt)("inlineCode",{parentName:"a"},"2245e53"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner): minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b9073b60e337eab40a992283b5b9e75d5cffe895"},(0,n.kt)("inlineCode",{parentName:"a"},"b9073b6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(table): fix th font weight ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a96a0a7a4cb450b5f947bc397495a2a41c605c87"},(0,n.kt)("inlineCode",{parentName:"a"},"a96a0a7"))),(0,n.kt)("li",{parentName:"ul"},"refactor(comment): remove avatar border radius ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d42c37bb8f71e20e1d0ec438c14e3c7ac00cf0ae"},(0,n.kt)("inlineCode",{parentName:"a"},"d42c37b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): adjust title size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7a24d9c07a5994fa46c39fdf1e827e0d1ae5e504"},(0,n.kt)("inlineCode",{parentName:"a"},"7a24d9c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Image): change image path ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a580da68a45bbe68d314f60e9495fc321489caf5"},(0,n.kt)("inlineCode",{parentName:"a"},"a580da6"))),(0,n.kt)("li",{parentName:"ul"},"change(infrastructure): specify that docs folder contains changes for deployment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a1ca9153b70e3525cd73423d059a8607f63fc2b9"},(0,n.kt)("inlineCode",{parentName:"a"},"a1ca915")))),(0,n.kt)("h4",{id:"-internal-changes-24"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(input) prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e83fa0c3e95e33d89ab668de38e6b0b12d9fb0d9"},(0,n.kt)("inlineCode",{parentName:"a"},"e83fa0c"))),(0,n.kt)("li",{parentName:"ul"},"chore(storybook): prettier fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/354c7b33c92a9f48ca9cbb0b96b6cec213e465c8"},(0,n.kt)("inlineCode",{parentName:"a"},"354c7b3"))),(0,n.kt)("li",{parentName:"ul"},"chore(design system): technical commit for edw integration tests ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f76035122d647e14b5151af3b39f0ab3e199af2"},(0,n.kt)("inlineCode",{parentName:"a"},"9f76035"))),(0,n.kt)("li",{parentName:"ul"},"style(storybook): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c9ad345268335c42e41d13b35c0da93e9770847"},(0,n.kt)("inlineCode",{parentName:"a"},"3c9ad34"))),(0,n.kt)("li",{parentName:"ul"},"chore(infrastructure) updated branch with changes from bitbucket ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/77866f8c7ac203db0645a74b7a7456b5c4de5dd7"},(0,n.kt)("inlineCode",{parentName:"a"},"77866f8")))),(0,n.kt)("h4",{id:"\ufe0f-others-54"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"doc(colours):fix color to better show primary ones ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/705b7899f9d687747d2deb27ac4d8b4429878de0"},(0,n.kt)("inlineCode",{parentName:"a"},"705b789"))),(0,n.kt)("li",{parentName:"ul"},"doc(colours):change font size to fit text in one line ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ad751660ec832e67a0c858e75685259b9ef8d82"},(0,n.kt)("inlineCode",{parentName:"a"},"4ad7516"))),(0,n.kt)("li",{parentName:"ul"},"bump package release to 1.3.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f3cfe4f5232ff96a9845d12da72008cf838c1010"},(0,n.kt)("inlineCode",{parentName:"a"},"f3cfe4f"))),(0,n.kt)("li",{parentName:"ul"},"Refactor banner into content subcomponent ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f8df238b4db90fdb841cdd5436a644e582f73b82"},(0,n.kt)("inlineCode",{parentName:"a"},"f8df238"))),(0,n.kt)("li",{parentName:"ul"},"lint fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cda322d8c013ef303b93b4b8d29594aa3bbd0bc1"},(0,n.kt)("inlineCode",{parentName:"a"},"cda322d"))),(0,n.kt)("li",{parentName:"ul"},"rollback don'ts grammar change and disable unresolved import for Banner.stories.jsx ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a1bd7154fa64451b6a521743955a57405dc7fb67"},(0,n.kt)("inlineCode",{parentName:"a"},"a1bd715"))),(0,n.kt)("li",{parentName:"ul"},"Add space line in component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4d1a5fbe9a9ea53701702d7ce33622795f5ab00"},(0,n.kt)("inlineCode",{parentName:"a"},"d4d1a5f")))),(0,n.kt)("h3",{id:"012---2022-02-17"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.2-beta.2...0.1.2"},"0.1.2")," - 2022-02-17"),(0,n.kt)("h4",{id:"-new-features-33"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(blockquote) added blockquote styles as a custom module ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d30662e23176cf7a5ab64aa322acd5a09a0c4130"},(0,n.kt)("inlineCode",{parentName:"a"},"d30662e")))),(0,n.kt)("h4",{id:"-bug-fixes-48"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(inpageNavigation): hide at the top of the page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/97ef50069cd9b29345fb68ce8b557a47577669a4"},(0,n.kt)("inlineCode",{parentName:"a"},"97ef500"))),(0,n.kt)("li",{parentName:"ul"},"fix(footer):missing image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac91a29a134c97af842c6be4987c60c44c4c96d8"},(0,n.kt)("inlineCode",{parentName:"a"},"ac91a29"))),(0,n.kt)("li",{parentName:"ul"},"fix(comment):fix broken image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8125dc179923f652ecd25003df8ecb4fb0aeffb9"},(0,n.kt)("inlineCode",{parentName:"a"},"8125dc1"))),(0,n.kt)("li",{parentName:"ul"},"fix(message): fix font loading ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fdc498e178a04315c88e005fbc1371ba954ff402"},(0,n.kt)("inlineCode",{parentName:"a"},"fdc498e"))),(0,n.kt)("li",{parentName:"ul"},"fix(logo): logo change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f8c8af4453774386d5d0432a078b049416d034b"},(0,n.kt)("inlineCode",{parentName:"a"},"5f8c8af")))),(0,n.kt)("h4",{id:"-enhancements-64"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): multiple components fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a3ff518323a3eab18edc5057c6f1233e5422a22"},(0,n.kt)("inlineCode",{parentName:"a"},"4a3ff51"))),(0,n.kt)("li",{parentName:"ul"},"change(infrastructure) re-enable integration tests for auto release stack ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce8daf8abc6eb9a6b7fd8579904a3e5642896e3a"},(0,n.kt)("inlineCode",{parentName:"a"},"ce8daf8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): global site files styling update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f3770f1756bca3898e2a67fa532a9d97b0fd1ef2"},(0,n.kt)("inlineCode",{parentName:"a"},"f3770f1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): multiple components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9277aaccb09aa03575b95851d55fc69b1f530e23"},(0,n.kt)("inlineCode",{parentName:"a"},"9277aac"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer) adjust to volto theming update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a59f1c354ceea661c60faabfdb6226c9f4ba1209"},(0,n.kt)("inlineCode",{parentName:"a"},"a59f1c3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): minor styling update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dd6b55c6c5331383a42f6865bd9bd0641feb9a3b"},(0,n.kt)("inlineCode",{parentName:"a"},"dd6b55c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): change header mega menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7559b57a08c2f0e9f3eb95167479ca041b998bc5"},(0,n.kt)("inlineCode",{parentName:"a"},"7559b57"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/451b9493b100dae80bed4b6629da725195dddff1"},(0,n.kt)("inlineCode",{parentName:"a"},"451b949"))),(0,n.kt)("li",{parentName:"ul"},"refactor(accordion): minor styling update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aeaf25f585c1379a2bd40de1c1bf03fee00ef76e"},(0,n.kt)("inlineCode",{parentName:"a"},"aeaf25f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bdff1768096443f2f453d76bf9958adabd309cb7"},(0,n.kt)("inlineCode",{parentName:"a"},"bdff176"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer):mobile responsiveness ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/14822bec78feebc2b06fc26d6992a481be2e3609"},(0,n.kt)("inlineCode",{parentName:"a"},"14822be"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): main and custom less files update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1607760bb1582c63ab1a6b978ac13bb0ca51b0c2"},(0,n.kt)("inlineCode",{parentName:"a"},"1607760"))),(0,n.kt)("li",{parentName:"ul"},"refactor(timeline): update after removing timeline addon ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f54d3806eb0a60379b46b03a04a6602ed465cd15"},(0,n.kt)("inlineCode",{parentName:"a"},"f54d380"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Footer): replace with subcomponents ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/378c652265213bafac9de1d946cb328fa2fe90cb"},(0,n.kt)("inlineCode",{parentName:"a"},"378c652"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): header change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/029e85039bb3f35a6ba4ff2870d98e1faa23661b"},(0,n.kt)("inlineCode",{parentName:"a"},"029e850"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): change header bar ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2b766fd62c86d22f01278c54d3a1dbfb696b095b"},(0,n.kt)("inlineCode",{parentName:"a"},"2b766fd"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus) use itml branch for docusaurus deployment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e286c50056aa6d0d5735cb330789b4e48a1f927"},(0,n.kt)("inlineCode",{parentName:"a"},"6e286c5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(accordion): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/971fcb824f6aa55ac28b4b275927b202d2c08ca6"},(0,n.kt)("inlineCode",{parentName:"a"},"971fcb8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): add sub components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7f955dbafa94c13e71ff587af70aa84d18da8da0"},(0,n.kt)("inlineCode",{parentName:"a"},"7f955db"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus) tweak auto deployment to always commit changes from docs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a2940daef1cf281bac87dec3cec68337053cc52d"},(0,n.kt)("inlineCode",{parentName:"a"},"a2940da"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): less and variables files created ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5b1a8aaf7f678dd60fb88149284058fcab617fd"},(0,n.kt)("inlineCode",{parentName:"a"},"d5b1a8a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(label): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c945e1600b4beb3667b389542adade317d285c6"},(0,n.kt)("inlineCode",{parentName:"a"},"3c945e1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(message): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e950fc56461540be24d9e5b2ff3c0bf8ad53738"},(0,n.kt)("inlineCode",{parentName:"a"},"3e950fc"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Footer): add sub components and props ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c3d14871887a83fb91792fbc8977c0439bcb16f2"},(0,n.kt)("inlineCode",{parentName:"a"},"c3d1487"))),(0,n.kt)("li",{parentName:"ul"},"refactor(modal): modal and confirm adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/83b60e94bdd3203a92a1b9038f9cc45011ba72a5"},(0,n.kt)("inlineCode",{parentName:"a"},"83b60e9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(comment): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/84348c36b5b750c324c89b5e3c462319bb9ebf46"},(0,n.kt)("inlineCode",{parentName:"a"},"84348c3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook):adjust headings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32f64f9b71d1cb8c96c9c37ba1850a2278f95287"},(0,n.kt)("inlineCode",{parentName:"a"},"32f64f9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): add comments to header menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c2c83b202e5117d8e0013101d8e922e9d93d21de"},(0,n.kt)("inlineCode",{parentName:"a"},"c2c83b2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Accordion): clear up accordion stories code ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4e59b8fa961b878591e9806e1ebbfdb841523077"},(0,n.kt)("inlineCode",{parentName:"a"},"4e59b8f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(segmant): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ab211e868296f377fddba203847549f0e5e07df"},(0,n.kt)("inlineCode",{parentName:"a"},"3ab211e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button) minor styling update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8782bb27c789a4aac97b380d718f4de129fdf682"},(0,n.kt)("inlineCode",{parentName:"a"},"8782bb2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): change image position ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cdd76d59ade86f3f989bf7d94e45e4d9b439115f"},(0,n.kt)("inlineCode",{parentName:"a"},"cdd76d5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumbs): update less variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/640817ee904f88a04f0e8f11b258f95b8db97039"},(0,n.kt)("inlineCode",{parentName:"a"},"640817e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(list): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1079c733e6ec634fedaab5b4630888a52b28e482"},(0,n.kt)("inlineCode",{parentName:"a"},"1079c73"))),(0,n.kt)("li",{parentName:"ul"},"refactor(timeline):adjust timeline module ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/213eb11e8e87940c18d81738609b4684329a5ce4"},(0,n.kt)("inlineCode",{parentName:"a"},"213eb11"))),(0,n.kt)("li",{parentName:"ul"},"refactor(blockquote):adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5eec87fc1b3017011266241c20b31217ac27c12d"},(0,n.kt)("inlineCode",{parentName:"a"},"5eec87f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progress): add progress bar colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ccf3c9823b2583fc70183554df7c4588fbf9ca13"},(0,n.kt)("inlineCode",{parentName:"a"},"ccf3c98"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pullquote):adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fee446668a8d65a717b42667af825cb5cec836b2"},(0,n.kt)("inlineCode",{parentName:"a"},"fee4466"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): change mobile mega menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c7ecf18a81024121218d580f201f324cf990829e"},(0,n.kt)("inlineCode",{parentName:"a"},"c7ecf18"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b726e49519914b02766bcd993b94ce9ff164e1df"},(0,n.kt)("inlineCode",{parentName:"a"},"b726e49"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button) adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/eb257f83541871ccc635842664722b914661770c"},(0,n.kt)("inlineCode",{parentName:"a"},"eb257f8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form): minor styling update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/79934b2cde2e806418a6422df2914321181f7a22"},(0,n.kt)("inlineCode",{parentName:"a"},"79934b2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Footer): create Actions & Sites sub components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/446840b99abd6897c1b59a9462d72b1f06f1dd4e"},(0,n.kt)("inlineCode",{parentName:"a"},"446840b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(inpageNavigation): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/85c631a9e9c1454f1f2530e4f1851089663dd610"},(0,n.kt)("inlineCode",{parentName:"a"},"85c631a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Inpage Navigation): changed button's display ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/36e5b4f107ce3535b607f7ed169c723a66ce6ac2"},(0,n.kt)("inlineCode",{parentName:"a"},"36e5b4f"))),(0,n.kt)("li",{parentName:"ul"},"enhancement(docusaurus) modified headings to be within release versions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19ace3038d6b4535b29634209e4d506e7dca2c2c"},(0,n.kt)("inlineCode",{parentName:"a"},"19ace30"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): move components to ui folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb91f88f628580f565eb01ea8627763bc2243dfb"},(0,n.kt)("inlineCode",{parentName:"a"},"cb91f88"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): change mega menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/de0fc6b3862a88ac04058b56020af23c1946ce41"},(0,n.kt)("inlineCode",{parentName:"a"},"de0fc6b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Pullquote): divide Pullquote to sub components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/34413c44ab9e318d67408f7497782b7de693deeb"},(0,n.kt)("inlineCode",{parentName:"a"},"34413c4"))),(0,n.kt)("li",{parentName:"ul"},"enhancement(docusaurus) replace changelog when auto-building docs Refs #145331 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/da25c0e25ffa80131ab4b5503b28e43385d9f827"},(0,n.kt)("inlineCode",{parentName:"a"},"da25c0e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(popup): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d0d192dc2b2a5edd422cf6a7b359c384ec4b1d55"},(0,n.kt)("inlineCode",{parentName:"a"},"d0d192d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ab6f914f487bea0df299de7da0bbd917733ee00"},(0,n.kt)("inlineCode",{parentName:"a"},"2ab6f91"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/89a16af86a165d7798b68b95ff3de215a92f0569"},(0,n.kt)("inlineCode",{parentName:"a"},"89a16af"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pullquotes) remove unnecessary variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e0d20a3febec060ac24c5498846e768d7068e8b9"},(0,n.kt)("inlineCode",{parentName:"a"},"e0d20a3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progress):adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d1ab950ee9cc14bbe95869d4f143fc428aad5a8d"},(0,n.kt)("inlineCode",{parentName:"a"},"d1ab950"))),(0,n.kt)("li",{parentName:"ul"},"refactor(blockquote) change variables names ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/36fd5be9bde1a3ceb8390639414f254fc26b8e76"},(0,n.kt)("inlineCode",{parentName:"a"},"36fd5be"))),(0,n.kt)("li",{parentName:"ul"},"refactor(comment): adjust font sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0311ed14c951eb9cba18a58f6f954c19601d838b"},(0,n.kt)("inlineCode",{parentName:"a"},"0311ed1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(InpageNavigation): clear up code ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1d7afdc8d751e61c3eef75360555807fdbef8619"},(0,n.kt)("inlineCode",{parentName:"a"},"1d7afdc"))),(0,n.kt)("li",{parentName:"ul"},"refactor(container): change variable name for computer padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/26d123f3e7e30a706b09efc10773694af79377f9"},(0,n.kt)("inlineCode",{parentName:"a"},"26d123f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(inpageNavigation): remove imports ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/25c1d1c3016695d92d104a12b22a6a9254f41b20"},(0,n.kt)("inlineCode",{parentName:"a"},"25c1d1c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): update ui index components exports ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce78d47880cab5849f4c01785cdd97a9b26771ec"},(0,n.kt)("inlineCode",{parentName:"a"},"ce78d47"))),(0,n.kt)("li",{parentName:"ul"},"change(infrastructure) auto build storybook when pushing to develop-itml branch of volto-eea-design-system ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e9aa5bc3de9c2e1c5dc55b5d317679bc14dd1cbd"},(0,n.kt)("inlineCode",{parentName:"a"},"e9aa5bc"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): delete demo stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8b58d0245f5bda7e2022a2ef9ace11015f13da01"},(0,n.kt)("inlineCode",{parentName:"a"},"8b58d02"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus) align deployment steps for building docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/37e4ce05d2772ac320a7ad561536189c5ea0a582"},(0,n.kt)("inlineCode",{parentName:"a"},"37e4ce0"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): remove components from customizations folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8930edeaf064ec316f1d086e1301a7e5269bfe4b"},(0,n.kt)("inlineCode",{parentName:"a"},"8930ede"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tab): minor styling update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1252ad0317ecf7e583dbb975b29a4c8e4c75330e"},(0,n.kt)("inlineCode",{parentName:"a"},"1252ad0"))),(0,n.kt)("li",{parentName:"ul"},"refactor(comment): change avatar src ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e5f9c4c02f5de5ae6480eedb45730bb76efbf7b4"},(0,n.kt)("inlineCode",{parentName:"a"},"e5f9c4c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner) : change file type and folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/878742ba0f95440ffbb5aec33f2cc4201dfacd43"},(0,n.kt)("inlineCode",{parentName:"a"},"878742b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form elements):changed text ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/919beea9deccec68ac0cdbbc1249ef4ab4c12230"},(0,n.kt)("inlineCode",{parentName:"a"},"919beea"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Image): change image src ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b9710849adf0cf4f10815186b6293bcc3881d68d"},(0,n.kt)("inlineCode",{parentName:"a"},"b971084"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Pullquote): add component propTypes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d32c5e69e76d7f369a286d29e49d767125550ebc"},(0,n.kt)("inlineCode",{parentName:"a"},"d32c5e6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(blockquote): adjust font sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d71a3cef7bfd4109c56b7fe8c07271c60a4bd19e"},(0,n.kt)("inlineCode",{parentName:"a"},"d71a3ce"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update font sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1c91c357a59669df0da0f4fc70d3aa420db27a14"},(0,n.kt)("inlineCode",{parentName:"a"},"1c91c35"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Blockquote): add component proTypes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea02649f92b0e41b1eb62a771330c2e53b3960e8"},(0,n.kt)("inlineCode",{parentName:"a"},"ea02649"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logo): update image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6113728e248c3e0fd0a467bb34406aa4403399e"},(0,n.kt)("inlineCode",{parentName:"a"},"f611372"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): restore config ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2c5239d92abe6be70b092e7e43f195308800f87"},(0,n.kt)("inlineCode",{parentName:"a"},"f2c5239"))),(0,n.kt)("li",{parentName:"ul"},"refactor(blockquote): update component name ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/572e655c033d93b32a48a61b1bf6383f6c993b26"},(0,n.kt)("inlineCode",{parentName:"a"},"572e655"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): fix story header import ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ceda6c7790964b150b95daf161d10364d6b67427"},(0,n.kt)("inlineCode",{parentName:"a"},"ceda6c7"))),(0,n.kt)("li",{parentName:"ul"},"change(infrastructure) auto build docusaurus when pushing to develop-itml branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7bebdf5e58f37400a8ae3d5f816c64c6b9ca3a5b"},(0,n.kt)("inlineCode",{parentName:"a"},"7bebdf5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): remove components from customization folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a9bb9b34e6961eaf16e54ed6f6ca4942944e8a0"},(0,n.kt)("inlineCode",{parentName:"a"},"4a9bb9b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner):story rename ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/56ff603d6c9cec7c22483a088624f5bd7911f717"},(0,n.kt)("inlineCode",{parentName:"a"},"56ff603"))),(0,n.kt)("li",{parentName:"ul"},"change(testing) removed navigation from cypress tests until component is finished ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5549f4c07cb0ffd725342f365aae07745d7e25f7"},(0,n.kt)("inlineCode",{parentName:"a"},"5549f4c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Segment): change to .jsx extension ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5cb35d81e8628832bab2e6ad50de6892e7e4370e"},(0,n.kt)("inlineCode",{parentName:"a"},"5cb35d8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Pullquote): change to .jsx extension ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/564cf7ea379703315f179ab922b4e0a02df63e47"},(0,n.kt)("inlineCode",{parentName:"a"},"564cf7e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(PopUp):change to .jsx extension ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dcb24ff252665a79fda2fec645e6f2a48ff71fd0"},(0,n.kt)("inlineCode",{parentName:"a"},"dcb24ff"))),(0,n.kt)("li",{parentName:"ul"},"refactor(InpageNavigation): change to .jsx extension ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dfefce3ebe55f8eb6f67974ccc33b0cb0bb13d9f"},(0,n.kt)("inlineCode",{parentName:"a"},"dfefce3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Blockquote): change to .jsx extension ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/44a164532c1ae969e4411e0cfb68b705ff2bfc1e"},(0,n.kt)("inlineCode",{parentName:"a"},"44a1645"))),(0,n.kt)("li",{parentName:"ul"},"refactor(heading): story name update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aa10f3412323321650e20401038d44b9bfdb507a"},(0,n.kt)("inlineCode",{parentName:"a"},"aa10f34")))),(0,n.kt)("h4",{id:"-internal-changes-25"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(footer): prettier fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/902c25712c88330db841240c9f1d6004e3e2674f"},(0,n.kt)("inlineCode",{parentName:"a"},"902c257"))),(0,n.kt)("li",{parentName:"ul"},"style(storybook): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/59f941dea9bf05f31257230f1a871c6eb0e98aae"},(0,n.kt)("inlineCode",{parentName:"a"},"59f941d")))),(0,n.kt)("h4",{id:"-documentation-changes-22"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus):multiple page updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2aba73ea6ff86c5a94789c707d98699fc1397e01"},(0,n.kt)("inlineCode",{parentName:"a"},"2aba73e"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus):update page content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/565697fecb4528cc5b4a6a43ca3ab9b026a2779e"},(0,n.kt)("inlineCode",{parentName:"a"},"565697f"))),(0,n.kt)("li",{parentName:"ul"},"docs(grid):update components grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/60eb083aa5d00840642caf73f6e0bb86b814aed5"},(0,n.kt)("inlineCode",{parentName:"a"},"60eb083"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): page adjustments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0641eacf9f4715acd4baaa651335ff84ac418009"},(0,n.kt)("inlineCode",{parentName:"a"},"0641eac"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus):updated various pages ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f860176a5f755d75d7b9558661e675fc678fe7ac"},(0,n.kt)("inlineCode",{parentName:"a"},"f860176"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): logo change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3af5e5c3acbf7ba4e152ca6944c500dbb0cf10ee"},(0,n.kt)("inlineCode",{parentName:"a"},"3af5e5c")))),(0,n.kt)("h4",{id:"\ufe0f-others-55"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"added sortable table stories and descriptions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d44dd7c651abe46c380b62efd3258c92223e99c"},(0,n.kt)("inlineCode",{parentName:"a"},"6d44dd7"))),(0,n.kt)("li",{parentName:"ul"},"Layout components theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/586101341f713bb072f2753d8df6e8b2ad6e4938"},(0,n.kt)("inlineCode",{parentName:"a"},"5861013"))),(0,n.kt)("li",{parentName:"ul"},"recovered files from origin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4ac04fde9c4297b09c834385f772e955b7f3b4a"},(0,n.kt)("inlineCode",{parentName:"a"},"a4ac04f"))),(0,n.kt)("li",{parentName:"ul"},"grid component & stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a5752e49aac05251905f7355234c3f9bc6b798f"},(0,n.kt)("inlineCode",{parentName:"a"},"4a5752e"))),(0,n.kt)("li",{parentName:"ul"},"Updated what's new section with actual commits from volto-eea-design-system repo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fc5e3c385d82ff7eccbd5841736f3ce292b2b7fd"},(0,n.kt)("inlineCode",{parentName:"a"},"fc5e3c3"))),(0,n.kt)("li",{parentName:"ul"},"Docusaurus title possible fix. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/db699e771b13bbd7e75c3bd84bb91ecf5d0459d8"},(0,n.kt)("inlineCode",{parentName:"a"},"db699e7"))),(0,n.kt)("li",{parentName:"ul"},"form elements stories added description & default values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6b4f6ebeed275a86f5ef6dafb13219db0c0fbbc6"},(0,n.kt)("inlineCode",{parentName:"a"},"6b4f6eb"))),(0,n.kt)("li",{parentName:"ul"},"removed API tabs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/58aa9286eb5d8cc520239aa6ee424ee5cd5446c3"},(0,n.kt)("inlineCode",{parentName:"a"},"58aa928"))),(0,n.kt)("li",{parentName:"ul"},"Layout updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/854f388c5b049e41217ddb444bc7bd0f2c61cdf6"},(0,n.kt)("inlineCode",{parentName:"a"},"854f388"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142123 removed extra customization of semantic.less: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab9de811b20b20a9f91ddc8b45b4de2eb9c47f6c"},(0,n.kt)("inlineCode",{parentName:"a"},"ab9de81"))),(0,n.kt)("li",{parentName:"ul"},"added page-header,footer and grid in docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/660c8e382068c179ca66831ae23588a4fb67cde6"},(0,n.kt)("inlineCode",{parentName:"a"},"660c8e3"))),(0,n.kt)("li",{parentName:"ul"},"Manual docs build and commit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/666eb6aff8535bb586a49579152fcf8a88961f35"},(0,n.kt)("inlineCode",{parentName:"a"},"666eb6a"))),(0,n.kt)("li",{parentName:"ul"},"added svg & png files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f1338d5bb02e17e402cea4b1584c7d01896097f9"},(0,n.kt)("inlineCode",{parentName:"a"},"f1338d5"))),(0,n.kt)("li",{parentName:"ul"},"added missing components to docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/934dfd8a98942c247deb2b5b8693604ad77cafa3"},(0,n.kt)("inlineCode",{parentName:"a"},"934dfd8"))),(0,n.kt)("li",{parentName:"ul"},"Control descriptions updated ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/56581ebc86a91fd012a98984b20f6daad25900fe"},(0,n.kt)("inlineCode",{parentName:"a"},"56581eb"))),(0,n.kt)("li",{parentName:"ul"},"Grid updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/700332d354aea84526ff22acf3bc2f8903c0f584"},(0,n.kt)("inlineCode",{parentName:"a"},"700332d"))),(0,n.kt)("li",{parentName:"ul"},"Button theming update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0ec68b6bd1ab060ac224a859180b9f750834c0b8"},(0,n.kt)("inlineCode",{parentName:"a"},"0ec68b6"))),(0,n.kt)("li",{parentName:"ul"},"site variebales & overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7251162f182f1528d72070aae8a5a14e9ec5ee93"},(0,n.kt)("inlineCode",{parentName:"a"},"7251162"))),(0,n.kt)("li",{parentName:"ul"},"Table and Tabs theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/49f08608e8be8475d561e1ce5c1bfbcfd21001f9"},(0,n.kt)("inlineCode",{parentName:"a"},"49f0860"))),(0,n.kt)("li",{parentName:"ul"},"Responsiveness updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48e1351104249fea610941793ff8ec3bf35d0699"},(0,n.kt)("inlineCode",{parentName:"a"},"48e1351"))),(0,n.kt)("li",{parentName:"ul"},"added various components to docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/550d71963b0957b1c5597bbdb2c699c411c649bd"},(0,n.kt)("inlineCode",{parentName:"a"},"550d719"))),(0,n.kt)("li",{parentName:"ul"},"Checkbox and radio updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24652a238f2c98fe5d8e8032e3320e0b3b4753e5"},(0,n.kt)("inlineCode",{parentName:"a"},"24652a2"))),(0,n.kt)("li",{parentName:"ul"},"remove images from typography and colour docs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8493e924f5af4ba7c2ed478d7bae6992b4ef6ed6"},(0,n.kt)("inlineCode",{parentName:"a"},"8493e92"))),(0,n.kt)("li",{parentName:"ul"},"added guidelines' text and finished all components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/02d75fcdc5a98633e4d563c7ec2863a9588b5506"},(0,n.kt)("inlineCode",{parentName:"a"},"02d75fc"))),(0,n.kt)("li",{parentName:"ul"},"added more missing components in docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8be82634c681a073b13a5a90ee2b699bd25b422a"},(0,n.kt)("inlineCode",{parentName:"a"},"8be8263"))),(0,n.kt)("li",{parentName:"ul"},"Prettier changes on docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f1e5eb796f2072e3b816a39a35cf48523405167"},(0,n.kt)("inlineCode",{parentName:"a"},"5f1e5eb"))),(0,n.kt)("li",{parentName:"ul"},"Grid updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ae099453e280de800a5a06c6fcbe074acc1f7bfd"},(0,n.kt)("inlineCode",{parentName:"a"},"ae09945"))),(0,n.kt)("li",{parentName:"ul"},"Minor fixes for tests ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3bdf3063d9bbc101f4b83c6aa4fc5fef5e87c776"},(0,n.kt)("inlineCode",{parentName:"a"},"3bdf306"))),(0,n.kt)("li",{parentName:"ul"},"Layout updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8b7a4dc8731cb02946e604a0dd73d2a45f61cd8b"},(0,n.kt)("inlineCode",{parentName:"a"},"8b7a4dc"))),(0,n.kt)("li",{parentName:"ul"},"Footer and TOC theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bb3d3c486f64e123b9009a76c6f054a8e2973230"},(0,n.kt)("inlineCode",{parentName:"a"},"bb3d3c4"))),(0,n.kt)("li",{parentName:"ul"},"Refs #145331 manually commit changelog until autobuild is stabilized ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93168b096b60fc6a208b20d1cbe610384be62f42"},(0,n.kt)("inlineCode",{parentName:"a"},"93168b0"))),(0,n.kt)("li",{parentName:"ul"},"label component changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/df8c0ff2d9646e4dcc7ed1a25a80712ca9ea2c9b"},(0,n.kt)("inlineCode",{parentName:"a"},"df8c0ff"))),(0,n.kt)("li",{parentName:"ul"},"added several sections to the theming guidelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff1a649d9c83794024e2db4f6349b3cac4fe79a0"},(0,n.kt)("inlineCode",{parentName:"a"},"ff1a649"))),(0,n.kt)("li",{parentName:"ul"},"Updated removed files. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/84f9b8cf7c469525367764909fa0d322532a13be"},(0,n.kt)("inlineCode",{parentName:"a"},"84f9b8c"))),(0,n.kt)("li",{parentName:"ul"},"added more docusaurus components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/52a3b9edd4c751225609dcaf2d16f08688e9cfeb"},(0,n.kt)("inlineCode",{parentName:"a"},"52a3b9e"))),(0,n.kt)("li",{parentName:"ul"},"Progress Bar ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f2efc9ded5a766df0c611a15f6a93f27bd14a37"},(0,n.kt)("inlineCode",{parentName:"a"},"9f2efc9"))),(0,n.kt)("li",{parentName:"ul"},"Modal and Confirm updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3b306c6fa5631e1e4e37456d483a69bc8cc3b234"},(0,n.kt)("inlineCode",{parentName:"a"},"3b306c6"))),(0,n.kt)("li",{parentName:"ul"},"Add proper changes to whatsnew meant in previous commit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/40f78e362ca607ef3893fff3d03c8ed1b4447c11"},(0,n.kt)("inlineCode",{parentName:"a"},"40f78e3"))),(0,n.kt)("li",{parentName:"ul"},"Form Descriptions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/de0dfbcb3a0a9610f1cbf7337f598b0c5338f2a3"},(0,n.kt)("inlineCode",{parentName:"a"},"de0dfbc"))),(0,n.kt)("li",{parentName:"ul"},"Prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1337e6fffb13fa8447488129d5dcd5af9e35e46a"},(0,n.kt)("inlineCode",{parentName:"a"},"1337e6f"))),(0,n.kt)("li",{parentName:"ul"},"Deleted files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b82f982fbfbaff4e74e35424c6122410e3830faf"},(0,n.kt)("inlineCode",{parentName:"a"},"b82f982"))),(0,n.kt)("li",{parentName:"ul"},"add new images for spacing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7b7b2c48317c45e3ff89162d703434f615c840e9"},(0,n.kt)("inlineCode",{parentName:"a"},"7b7b2c4"))),(0,n.kt)("li",{parentName:"ul"},"Messages Theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ad621a38c121f585125d5934c1939ba6a7198b33"},(0,n.kt)("inlineCode",{parentName:"a"},"ad621a3"))),(0,n.kt)("li",{parentName:"ul"},"added new content to docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1c83452be983d46f4128c33c25e69afef333f82a"},(0,n.kt)("inlineCode",{parentName:"a"},"1c83452"))),(0,n.kt)("li",{parentName:"ul"},"Minor less updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a36a8bbfeb201049fa13987894a5ec2ec167ed03"},(0,n.kt)("inlineCode",{parentName:"a"},"a36a8bb"))),(0,n.kt)("li",{parentName:"ul"},"Tabs and lists updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e37eef19e67c3c5720d5a9565e9884dc5c19f127"},(0,n.kt)("inlineCode",{parentName:"a"},"e37eef1"))),(0,n.kt)("li",{parentName:"ul"},"Inpage nav and timeline components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/76f0f82dc3a8f683268a4df7580b8f73a0cc1cb4"},(0,n.kt)("inlineCode",{parentName:"a"},"76f0f82"))),(0,n.kt)("li",{parentName:"ul"},"Prettier updated files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/679b9d2026091685d6982ab68e5088544ea0941e"},(0,n.kt)("inlineCode",{parentName:"a"},"679b9d2"))),(0,n.kt)("li",{parentName:"ul"},"dropdown initial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d8aef26dc905adbb0fb72c73d6188b50944931c9"},(0,n.kt)("inlineCode",{parentName:"a"},"d8aef26"))),(0,n.kt)("li",{parentName:"ul"},"Prettier changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f068af0b307d85146e1d8a529947c98988c506f7"},(0,n.kt)("inlineCode",{parentName:"a"},"f068af0"))),(0,n.kt)("li",{parentName:"ul"},"List initial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d3b96974bc35ad958b8cfc7921c1fbe345e5ebf"},(0,n.kt)("inlineCode",{parentName:"a"},"6d3b969"))),(0,n.kt)("li",{parentName:"ul"},"List story updated ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e96a6f6cff9a4db994df7cbf584842b18ca1c432"},(0,n.kt)("inlineCode",{parentName:"a"},"e96a6f6"))),(0,n.kt)("li",{parentName:"ul"},"Statistics updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/74bf63999cfeb0791b9475d3895a49a245be2cd3"},(0,n.kt)("inlineCode",{parentName:"a"},"74bf639"))),(0,n.kt)("li",{parentName:"ul"},"styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c169cc026189ca71e6e9cad17bde9d65d93ffbde"},(0,n.kt)("inlineCode",{parentName:"a"},"c169cc0"))),(0,n.kt)("li",{parentName:"ul"},"timeline comp storybook changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f42686ae19b619fa659730567bdceb369ecd4b0"},(0,n.kt)("inlineCode",{parentName:"a"},"1f42686"))),(0,n.kt)("li",{parentName:"ul"},"feature(docusaurus) added theming guidelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ded1f04a3197ac34640f98bcfe363c75a0a3745f"},(0,n.kt)("inlineCode",{parentName:"a"},"ded1f04"))),(0,n.kt)("li",{parentName:"ul"},"Properly commented out integration tests. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48b3a15f426db52b9fa27f6d7792c424b4939867"},(0,n.kt)("inlineCode",{parentName:"a"},"48b3a15"))),(0,n.kt)("li",{parentName:"ul"},"Reattempting commented out integrations tests. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3dd8211ecfca6c7891ef6851d0dc82899ab50f05"},(0,n.kt)("inlineCode",{parentName:"a"},"3dd8211"))),(0,n.kt)("li",{parentName:"ul"},"Button theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4231e1c264165ef6f7e2f2cd6fbd7c51159330b6"},(0,n.kt)("inlineCode",{parentName:"a"},"4231e1c"))),(0,n.kt)("li",{parentName:"ul"},"Card initial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/06dace5c4aa54d90ec4bcdc0b3fbc0883f825947"},(0,n.kt)("inlineCode",{parentName:"a"},"06dace5"))),(0,n.kt)("li",{parentName:"ul"},"form element storybook changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4b06aabddedbc281f23fc75a1e56476c4d1c1af"},(0,n.kt)("inlineCode",{parentName:"a"},"c4b06aa"))),(0,n.kt)("li",{parentName:"ul"},"Pagination theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2a80175762fbab23691d52f89cd38eb6f7740c4e"},(0,n.kt)("inlineCode",{parentName:"a"},"2a80175"))),(0,n.kt)("li",{parentName:"ul"},"Accordion theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8061bf90823a9172cfccb0ea1ed544ceda1c3fe9"},(0,n.kt)("inlineCode",{parentName:"a"},"8061bf9"))),(0,n.kt)("li",{parentName:"ul"},"global var updates and radio story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9526ee2fc8269db60ce912bfd4edfadbb55fed3a"},(0,n.kt)("inlineCode",{parentName:"a"},"9526ee2"))),(0,n.kt)("li",{parentName:"ul"},"created pullquote component & stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/df35563fb7ba2be403461c120b32ebffaa391736"},(0,n.kt)("inlineCode",{parentName:"a"},"df35563"))),(0,n.kt)("li",{parentName:"ul"},"Item stories added description & default values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9d459f2cd92e419813e7edf0f28dec4c750a5940"},(0,n.kt)("inlineCode",{parentName:"a"},"9d459f2"))),(0,n.kt)("li",{parentName:"ul"},"storybook clean up code ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bffd32603a70cf6cafa4874937f3fe218ba5de9d"},(0,n.kt)("inlineCode",{parentName:"a"},"bffd326"))),(0,n.kt)("li",{parentName:"ul"},"List updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/28f1b5352d83e144acdaae694cf20755a3b04106"},(0,n.kt)("inlineCode",{parentName:"a"},"28f1b53"))),(0,n.kt)("li",{parentName:"ul"},"Button classes updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/788c289549490d9ac5f1c40f1e39124349e1dbcd"},(0,n.kt)("inlineCode",{parentName:"a"},"788c289"))),(0,n.kt)("li",{parentName:"ul"},"Prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/678c9be717468fd2c8c425bec5999e81a66dabf6"},(0,n.kt)("inlineCode",{parentName:"a"},"678c9be"))),(0,n.kt)("li",{parentName:"ul"},"Removed header title from partial docusaurus components. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ed7c45e458504fa76ad500ab26f59a442b3c6952"},(0,n.kt)("inlineCode",{parentName:"a"},"ed7c45e"))),(0,n.kt)("li",{parentName:"ul"},"created banner component and stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9be170f2ccb20218a7bdae48c85f77acd69427ff"},(0,n.kt)("inlineCode",{parentName:"a"},"9be170f"))),(0,n.kt)("li",{parentName:"ul"},"Breadcrumb stories description & defaultValue -- clean up code ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/186ab65ca8635c853c919fc645c1ef0486e22a43"},(0,n.kt)("inlineCode",{parentName:"a"},"186ab65"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142123 added customization of semantic.less: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1e02356722fcb7528883b6dc3bf71279343fd1f7"},(0,n.kt)("inlineCode",{parentName:"a"},"1e02356"))),(0,n.kt)("li",{parentName:"ul"},"Card stories added description & default values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6b408f1ed24ee69ad8faacc6b36cf06e9917478"},(0,n.kt)("inlineCode",{parentName:"a"},"f6b408f"))),(0,n.kt)("li",{parentName:"ul"},"Statistic and accordion updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/16064ceeb6e1a7f097979365473c6a86ced4056f"},(0,n.kt)("inlineCode",{parentName:"a"},"16064ce"))),(0,n.kt)("li",{parentName:"ul"},"breadcrumb component & stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5bceb980502828c182a3998943ab086159c3fcb6"},(0,n.kt)("inlineCode",{parentName:"a"},"5bceb98"))),(0,n.kt)("li",{parentName:"ul"},"Container initial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3eb7155332f83bb8896a831e24cbae028413aba2"},(0,n.kt)("inlineCode",{parentName:"a"},"3eb7155"))),(0,n.kt)("li",{parentName:"ul"},"doc(docusaurus):Fix text for various parts ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bfd3fa2584a6e7aa2c26f3502b1ede912682905e"},(0,n.kt)("inlineCode",{parentName:"a"},"bfd3fa2"))),(0,n.kt)("li",{parentName:"ul"},"blockquote component & stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/879b6402f08112fedfffe6d66e72c37750593bb8"},(0,n.kt)("inlineCode",{parentName:"a"},"879b640"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 removed doc comments breaking doc building ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e6a6756b0533e6dbfdb636f9a9e6485e30187cad"},(0,n.kt)("inlineCode",{parentName:"a"},"e6a6756"))),(0,n.kt)("li",{parentName:"ul"},"Popup updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce2d641d8f5d940cbb93deefdabbbfb85ad20ad7"},(0,n.kt)("inlineCode",{parentName:"a"},"ce2d641"))),(0,n.kt)("li",{parentName:"ul"},"Global variables for colors and borders added ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e5fbd619d163acae03d3d1bb26e082390f90c21"},(0,n.kt)("inlineCode",{parentName:"a"},"6e5fbd6"))),(0,n.kt)("li",{parentName:"ul"},"Tab stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5429cfb7751d6ad31231f9cc19d8bd7e8d24d0b8"},(0,n.kt)("inlineCode",{parentName:"a"},"5429cfb"))),(0,n.kt)("li",{parentName:"ul"},"Confirm stories added description & default value ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/85cda14b1338dc986bbab5aa7846b4ef3ec8d0bd"},(0,n.kt)("inlineCode",{parentName:"a"},"85cda14"))),(0,n.kt)("li",{parentName:"ul"},"Kebab case class names ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b41cd078ab5b349dc1d15769832913dcc8e6786f"},(0,n.kt)("inlineCode",{parentName:"a"},"b41cd07"))),(0,n.kt)("li",{parentName:"ul"},"Card and Comment class updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/389946540d3def2ea81c5c7c489e79dc24d4efb3"},(0,n.kt)("inlineCode",{parentName:"a"},"3899465"))),(0,n.kt)("li",{parentName:"ul"},"Accordion updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c97ba39cc7823cb72180a858c0b8a69cc9434927"},(0,n.kt)("inlineCode",{parentName:"a"},"c97ba39"))),(0,n.kt)("li",{parentName:"ul"},"item stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/772e41f3d90034827afcb118c38ab075d3bb7bb9"},(0,n.kt)("inlineCode",{parentName:"a"},"772e41f"))),(0,n.kt)("li",{parentName:"ul"},"Accordion class updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9cdde86f14a17701d66b3d2850980251094934b5"},(0,n.kt)("inlineCode",{parentName:"a"},"9cdde86"))),(0,n.kt)("li",{parentName:"ul"},"Comment stories added description & default value ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb6f25bc1452330f4155ccf6a64df491740ed8da"},(0,n.kt)("inlineCode",{parentName:"a"},"cb6f25b"))),(0,n.kt)("li",{parentName:"ul"},"Accrodion stories description & default value ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab8fb883c3cbfeea1807bf1aaf72f5d8424933f4"},(0,n.kt)("inlineCode",{parentName:"a"},"ab8fb88"))),(0,n.kt)("li",{parentName:"ul"},"Pullquotes updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5984213ba9397ddb4c1932394a5cc368336cf0a"},(0,n.kt)("inlineCode",{parentName:"a"},"c598421"))),(0,n.kt)("li",{parentName:"ul"},"Modal and confirm class updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0ae47e6f55645c0d6318123a5783648326c16852"},(0,n.kt)("inlineCode",{parentName:"a"},"0ae47e6"))),(0,n.kt)("li",{parentName:"ul"},"Tab and paggination updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/96796fffb189d2fa3628423280f3622dcacb449f"},(0,n.kt)("inlineCode",{parentName:"a"},"96796ff"))),(0,n.kt)("li",{parentName:"ul"},"Form Updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e986a9f0fc48ddcbc17488a8bbbaec82cee92232"},(0,n.kt)("inlineCode",{parentName:"a"},"e986a9f"))),(0,n.kt)("li",{parentName:"ul"},"Classes renamed ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/73c8c3d622bb3b9c0b5cf09e340de4df6606a14c"},(0,n.kt)("inlineCode",{parentName:"a"},"73c8c3d"))),(0,n.kt)("li",{parentName:"ul"},"List and item less updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce0de1708ca410c7839f3ce9b5b3cfbdb6979939"},(0,n.kt)("inlineCode",{parentName:"a"},"ce0de17"))),(0,n.kt)("li",{parentName:"ul"},"Confirm theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/36e20ce0dd6cd159e9f8e519d22ab696a622efd9"},(0,n.kt)("inlineCode",{parentName:"a"},"36e20ce"))),(0,n.kt)("li",{parentName:"ul"},"container overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4b3970bd28df5939fd438f7fc58b5d1dfbe33719"},(0,n.kt)("inlineCode",{parentName:"a"},"4b3970b"))),(0,n.kt)("li",{parentName:"ul"},"Docusaurus theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fc4a8c5534b6eb85192a687890846b3a4bed9401"},(0,n.kt)("inlineCode",{parentName:"a"},"fc4a8c5"))),(0,n.kt)("li",{parentName:"ul"},"refacto(headings): update mobile headings sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b2e9f838766ffd73095ecf7eccc71629c09d6bc0"},(0,n.kt)("inlineCode",{parentName:"a"},"b2e9f83"))),(0,n.kt)("li",{parentName:"ul"},"list stories and style changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c61db53b153f8f0e51eddd6a6c82dd38e6278c82"},(0,n.kt)("inlineCode",{parentName:"a"},"c61db53"))),(0,n.kt)("li",{parentName:"ul"},"Tab theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e31e6c3b1f0d6b4dbd63425a1846914d8dfa318d"},(0,n.kt)("inlineCode",{parentName:"a"},"e31e6c3"))),(0,n.kt)("li",{parentName:"ul"},"Message and pagination classes updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c230687c48953208461aa92376588246d49dadaa"},(0,n.kt)("inlineCode",{parentName:"a"},"c230687"))),(0,n.kt)("li",{parentName:"ul"},"Segment initial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5724fe639e0f2aecbb1c633fe7e69b742ddfaf5"},(0,n.kt)("inlineCode",{parentName:"a"},"d5724fe"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 removed doc comments from api_markdown breaking doc building ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/efeacba82875c6b36ee1ef76792e86ca03ee6f35"},(0,n.kt)("inlineCode",{parentName:"a"},"efeacba"))),(0,n.kt)("li",{parentName:"ul"},"Timeline and responsiveness updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1ed152476e33bc41fdf9d89a6bc80f83af538373"},(0,n.kt)("inlineCode",{parentName:"a"},"1ed1524"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142123 use swap font-display for performance reasons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/083738f0834982b5684d67d75c080dc50b1c74ef"},(0,n.kt)("inlineCode",{parentName:"a"},"083738f"))),(0,n.kt)("li",{parentName:"ul"},"Breadcrumb stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3d0d17ca4f04123d55fda64c516b8f867ee1bd13"},(0,n.kt)("inlineCode",{parentName:"a"},"3d0d17c"))),(0,n.kt)("li",{parentName:"ul"},"Table component stories minor change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0bf40835204f57ab300e2c325309fddf5279d76b"},(0,n.kt)("inlineCode",{parentName:"a"},"0bf4083"))),(0,n.kt)("li",{parentName:"ul"},"List stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a64b304a3aa025873643d592de03cbfbc0d02d81"},(0,n.kt)("inlineCode",{parentName:"a"},"a64b304"))),(0,n.kt)("li",{parentName:"ul"},"blockquote component minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cdf71a883d3778e1bde25ec0b4a2f3e370b98b09"},(0,n.kt)("inlineCode",{parentName:"a"},"cdf71a8"))),(0,n.kt)("li",{parentName:"ul"},"ckeckbox stories minor change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d6e508f73a18d7ce9fcdb779026113659ce8950"},(0,n.kt)("inlineCode",{parentName:"a"},"6d6e508"))),(0,n.kt)("li",{parentName:"ul"},"image component storybook changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91290ec540ae913fff76f0dbed6c310668a2eeb3"},(0,n.kt)("inlineCode",{parentName:"a"},"91290ec"))),(0,n.kt)("li",{parentName:"ul"},"button overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5b78dd7b794e2e0ece2d5af9eb171e73b77ee93"},(0,n.kt)("inlineCode",{parentName:"a"},"d5b78dd"))),(0,n.kt)("li",{parentName:"ul"},"accordion overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fdcf7d58eea3ce9e68c49649fb4a788c8a801b49"},(0,n.kt)("inlineCode",{parentName:"a"},"fdcf7d5"))),(0,n.kt)("li",{parentName:"ul"},"Accordion component and stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5079247b2d4b96b2a7252692ea538ca620cbec38"},(0,n.kt)("inlineCode",{parentName:"a"},"5079247"))),(0,n.kt)("li",{parentName:"ul"},"Card theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/23bbb9d1b5751bc4877d02ae1c676ea28463ec39"},(0,n.kt)("inlineCode",{parentName:"a"},"23bbb9d"))),(0,n.kt)("li",{parentName:"ul"},"statistic overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2b11cb5ffb9c907563b37a3db8fea3b1ef3584bc"},(0,n.kt)("inlineCode",{parentName:"a"},"2b11cb5"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 build docs only on pull request like we do with storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/473bb87be53610a654d35c9b399de14824301385"},(0,n.kt)("inlineCode",{parentName:"a"},"473bb87"))),(0,n.kt)("li",{parentName:"ul"},"Card component stories minor change | added link icon ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/deb423af02643697c3781212b177487174d341f7"},(0,n.kt)("inlineCode",{parentName:"a"},"deb423a"))),(0,n.kt)("li",{parentName:"ul"},"comment component stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f1c5e75f1af24c5b39a2e61cf07c773abfa96f66"},(0,n.kt)("inlineCode",{parentName:"a"},"f1c5e75"))),(0,n.kt)("li",{parentName:"ul"},"Accordion component bug fixed ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/815e91df66ed738f3d91cadc8df151782829f545"},(0,n.kt)("inlineCode",{parentName:"a"},"815e91d"))),(0,n.kt)("li",{parentName:"ul"},"Refs #145331 use iso date to release so that we see also time ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ceedf08937ab683c3e624cd3c909bf4a4788f883"},(0,n.kt)("inlineCode",{parentName:"a"},"ceedf08"))),(0,n.kt)("li",{parentName:"ul"},"correct connfig for doco ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93e13135e7f00fe32f4db2d720db4159970da021"},(0,n.kt)("inlineCode",{parentName:"a"},"93e1313"))),(0,n.kt)("li",{parentName:"ul"},"Item updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fae93d43a0ad56c4c9b8ce7bf436ad4f47421744"},(0,n.kt)("inlineCode",{parentName:"a"},"fae93d4"))),(0,n.kt)("li",{parentName:"ul"},"added layout grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2e6be557bcd3bef836338380ef68acade1c6b3e3"},(0,n.kt)("inlineCode",{parentName:"a"},"2e6be55"))),(0,n.kt)("li",{parentName:"ul"},"tab overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87aaf32cac5a0dee0da5833217de68da62327f5a"},(0,n.kt)("inlineCode",{parentName:"a"},"87aaf32"))),(0,n.kt)("li",{parentName:"ul"},"message overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6dccfca52d9673f394d81bd40da0af1b1504af0c"},(0,n.kt)("inlineCode",{parentName:"a"},"6dccfca"))),(0,n.kt)("li",{parentName:"ul"},"segment storie changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/296371fa71e43c2341bee8069f66d5cd1f7aa5f8"},(0,n.kt)("inlineCode",{parentName:"a"},"296371f"))),(0,n.kt)("li",{parentName:"ul"},"progress component stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/df10c2ed1289ae770008c71e1545c1ac0a223fc5"},(0,n.kt)("inlineCode",{parentName:"a"},"df10c2e"))),(0,n.kt)("li",{parentName:"ul"},"message comp storybook changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c86b40563f655fd5833dd05119f04d0e4256e75f"},(0,n.kt)("inlineCode",{parentName:"a"},"c86b405"))),(0,n.kt)("li",{parentName:"ul"},"Accordion cmponent stories | minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6de0d816287a9beeb9e8a5a890a2e14f3457a792"},(0,n.kt)("inlineCode",{parentName:"a"},"6de0d81"))),(0,n.kt)("li",{parentName:"ul"},"Refs #145331 add all changes when auto building docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce11cce4fe3dadc16a0da56c36bc5db480e4ff91"},(0,n.kt)("inlineCode",{parentName:"a"},"ce11cce"))),(0,n.kt)("li",{parentName:"ul"},"perf(timeline):removed semantic timeline package ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0aeb34a189eb53a5fc0fc45d716da515b7ed0301"},(0,n.kt)("inlineCode",{parentName:"a"},"0aeb34a"))),(0,n.kt)("li",{parentName:"ul"},"Tablet Breakpoint update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b229c2739e75a00e403dd07c31eb0dac7700baac"},(0,n.kt)("inlineCode",{parentName:"a"},"b229c27"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 set storyBook Url to eea.github.io ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b7fdecbb5e9e6e7db0b128ab7fd3a98dd1dbbc74"},(0,n.kt)("inlineCode",{parentName:"a"},"b7fdecb"))),(0,n.kt)("li",{parentName:"ul"},"bump package version to signaling of a major release ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c835f1d8193685153b8a9b54edbc2e8d3d095321"},(0,n.kt)("inlineCode",{parentName:"a"},"c835f1d"))),(0,n.kt)("li",{parentName:"ul"},"small commit to trigger deployment of storybook and docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/be46ea3b581cccc82369c9cf6d4e29b02822cd71"},(0,n.kt)("inlineCode",{parentName:"a"},"be46ea3"))),(0,n.kt)("li",{parentName:"ul"},"doc(accordion):revert previous change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3de02da26472c17389366d933f3293f658fd783a"},(0,n.kt)("inlineCode",{parentName:"a"},"3de02da"))),(0,n.kt)("li",{parentName:"ul"},"fix typo for caption @desktop line-height pixel number ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/167155234a897334a03a4f3eadc71701185bb924"},(0,n.kt)("inlineCode",{parentName:"a"},"1671552"))),(0,n.kt)("li",{parentName:"ul"},"Commented out integration tests. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/574cfec852f39bdd30430d2ca3a466aec417180d"},(0,n.kt)("inlineCode",{parentName:"a"},"574cfec"))),(0,n.kt)("li",{parentName:"ul"},"popup overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a9555e3128bd0c92691410c202d9b26dd5a5e0c5"},(0,n.kt)("inlineCode",{parentName:"a"},"a9555e3"))),(0,n.kt)("li",{parentName:"ul"},"container component stories fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/692cfce5e795ac718855349424e7e8eb9c7518ec"},(0,n.kt)("inlineCode",{parentName:"a"},"692cfce"))),(0,n.kt)("li",{parentName:"ul"},"Added timeline to package json fixed ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2e93e0478a1502cccb8d7f866cef337a2546b6c"},(0,n.kt)("inlineCode",{parentName:"a"},"f2e93e0"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142123 modified import of volto-eea-design-system icon.less: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7fab7d2871f153c2db139e3258da071ace7c09d"},(0,n.kt)("inlineCode",{parentName:"a"},"a7fab7d"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142123 reference icon.less from this package: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5616e6d730f1a8cbc04784230c35f3490fd0f921"},(0,n.kt)("inlineCode",{parentName:"a"},"5616e6d"))),(0,n.kt)("li",{parentName:"ul"},"Menu component stories change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2797716aa050a8f70d2b6f0f19b7d01e5cd035be"},(0,n.kt)("inlineCode",{parentName:"a"},"2797716"))),(0,n.kt)("li",{parentName:"ul"},"Image stories minor change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ddb9f1dd56fe42e17df1eac5bfd93ee6eaac3179"},(0,n.kt)("inlineCode",{parentName:"a"},"ddb9f1d"))),(0,n.kt)("li",{parentName:"ul"},"card component stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6ccba1ec4a388ced5a3671bf88d4f18aefc8cff3"},(0,n.kt)("inlineCode",{parentName:"a"},"6ccba1e"))),(0,n.kt)("li",{parentName:"ul"},"Added timeline to package json ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93031d6b6b3215e98074700554d7546f9f17f320"},(0,n.kt)("inlineCode",{parentName:"a"},"93031d6"))),(0,n.kt)("li",{parentName:"ul"},"table stories code clean up ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b7b2a56e37b847a3a3fc3d78f2099aba052826c3"},(0,n.kt)("inlineCode",{parentName:"a"},"b7b2a56"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 removed extra baseUrl from docusaurus config ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/79f36da6a38866765025cedd4f5eeb63e273785c"},(0,n.kt)("inlineCode",{parentName:"a"},"79f36da"))),(0,n.kt)("li",{parentName:"ul"},"Accordion stories minor change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ffe808aabc77c6cb324e8fe097a97bb82c291c29"},(0,n.kt)("inlineCode",{parentName:"a"},"ffe808a"))),(0,n.kt)("li",{parentName:"ul"},"Theme assets ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3f4bea4b53e393bc3d926b63683265c0b5df32c2"},(0,n.kt)("inlineCode",{parentName:"a"},"3f4bea4"))),(0,n.kt)("li",{parentName:"ul"},"Merged with develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/167ec9f7847162965ad045259989cc31abaad7f1"},(0,n.kt)("inlineCode",{parentName:"a"},"167ec9f")))),(0,n.kt)("h3",{id:"012-beta2---2022-01-03"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.2-beta.1...0.1.2-beta.2"},"0.1.2-beta.2")," - 2022-01-03"),(0,n.kt)("h3",{id:"012-beta1---2021-12-22"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.2-beta.0...0.1.2-beta.1"},"0.1.2-beta.1")," - 2021-12-22"),(0,n.kt)("h4",{id:"\ufe0f-others-56"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Tab component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4690a6fc1e739eeeeaa3dc90ee35e05a22875bf8"},(0,n.kt)("inlineCode",{parentName:"a"},"4690a6f"))),(0,n.kt)("li",{parentName:"ul"},"Comment component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a87cb6ad7959ce939c9decbfaa08026d4f00a10e"},(0,n.kt)("inlineCode",{parentName:"a"},"a87cb6a"))),(0,n.kt)("li",{parentName:"ul"},"Form stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fc30c900e5adf5a27930aa64a79a632e2b7d84ae"},(0,n.kt)("inlineCode",{parentName:"a"},"fc30c90"))),(0,n.kt)("li",{parentName:"ul"},"Grid component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/798fdd0d0fecb7980308c831fc9dc111a36c5d9f"},(0,n.kt)("inlineCode",{parentName:"a"},"798fdd0"))),(0,n.kt)("li",{parentName:"ul"},"Image component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/be93385f1ea29846512eb7762d69bb98f33be7f2"},(0,n.kt)("inlineCode",{parentName:"a"},"be93385"))),(0,n.kt)("li",{parentName:"ul"},"Menu component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb1f9a82843bb4e3011be9813ae692c94d986495"},(0,n.kt)("inlineCode",{parentName:"a"},"cb1f9a8"))),(0,n.kt)("li",{parentName:"ul"},"Dropdown component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/57cf954599292e6a2f8a1644c6b6d61706ecaf60"},(0,n.kt)("inlineCode",{parentName:"a"},"57cf954"))),(0,n.kt)("li",{parentName:"ul"},"Header component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/264fd463734c9587e3a820f4d14527af89274e12"},(0,n.kt)("inlineCode",{parentName:"a"},"264fd46"))),(0,n.kt)("li",{parentName:"ul"},"Confirn component minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9a00bc174fb676e626d6cc93fac225e8a6165790"},(0,n.kt)("inlineCode",{parentName:"a"},"9a00bc1"))),(0,n.kt)("li",{parentName:"ul"},"Item component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6994fa00c0f91550f64d7345503df7f562480d32"},(0,n.kt)("inlineCode",{parentName:"a"},"6994fa0"))),(0,n.kt)("li",{parentName:"ul"},"Label component stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5cc5843327deeaa5ae2cedc03e6f0c314be6586a"},(0,n.kt)("inlineCode",{parentName:"a"},"5cc5843"))),(0,n.kt)("li",{parentName:"ul"},"Container component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e6e40b3a505c2e2fe88a36d74ea4e9728e3491f6"},(0,n.kt)("inlineCode",{parentName:"a"},"e6e40b3"))),(0,n.kt)("li",{parentName:"ul"},"Message component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ba9d377fd5b04274f1d42065eafa2401a1b0bbca"},(0,n.kt)("inlineCode",{parentName:"a"},"ba9d377"))),(0,n.kt)("li",{parentName:"ul"},"Breadcrumb component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff7a176141c3a59d71df98a0ed0b23b8c08787df"},(0,n.kt)("inlineCode",{parentName:"a"},"ff7a176"))),(0,n.kt)("li",{parentName:"ul"},"Modal component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af1fe6a84d058fb937b555f4dc3e0efceebefa04"},(0,n.kt)("inlineCode",{parentName:"a"},"af1fe6a"))),(0,n.kt)("li",{parentName:"ul"},"List stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0016042856fa2275aed373eebd6f996b837619a2"},(0,n.kt)("inlineCode",{parentName:"a"},"0016042"))),(0,n.kt)("li",{parentName:"ul"},"Button component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/690dfd234bee017c1f1cda7077265e6cf4a870e9"},(0,n.kt)("inlineCode",{parentName:"a"},"690dfd2"))),(0,n.kt)("li",{parentName:"ul"},"Radio component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/84eac30ab5b523ed09c56b9cca41b058cee3e5d2"},(0,n.kt)("inlineCode",{parentName:"a"},"84eac30"))),(0,n.kt)("li",{parentName:"ul"},"Progress component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e6763571afe637375e8260babd9f2219f29b432a"},(0,n.kt)("inlineCode",{parentName:"a"},"e676357"))),(0,n.kt)("li",{parentName:"ul"},"Pagination component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b1af226b9bd42097dc3c74be3d9ca3fab29b80f6"},(0,n.kt)("inlineCode",{parentName:"a"},"b1af226"))),(0,n.kt)("li",{parentName:"ul"},"Segment component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f8c7efcb9b1de209ff146dd315ea9d43b16f4db"},(0,n.kt)("inlineCode",{parentName:"a"},"5f8c7ef"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 eslint fixes for component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/badcb9158cb4a847380f66592b22c78b5117626a"},(0,n.kt)("inlineCode",{parentName:"a"},"badcb91"))),(0,n.kt)("li",{parentName:"ul"},"Table component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7c104b8e89272b0e2505d165184093ee2680c6f3"},(0,n.kt)("inlineCode",{parentName:"a"},"7c104b8"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 more eslint fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a88c091723af0b87cfa85c83307d9510d2bae65c"},(0,n.kt)("inlineCode",{parentName:"a"},"a88c091"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 warn for broken links instead of throwing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bd5821cb78e030aaf69de73dc4d3bdadbe320195"},(0,n.kt)("inlineCode",{parentName:"a"},"bd5821c"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 merge changes from develop-itml to develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bca28b968bc88720aff9e29e1a94a597a7375666"},(0,n.kt)("inlineCode",{parentName:"a"},"bca28b9"))),(0,n.kt)("li",{parentName:"ul"},"made tabs dynamic for api tab ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea37ecb3ec9fe0ace41d7650d59e209929d8e95f"},(0,n.kt)("inlineCode",{parentName:"a"},"ea37ecb"))),(0,n.kt)("li",{parentName:"ul"},"Basic storybook/Docusaurus components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/840ab60f22f7b73d8742fa7452f198d486c6ec5b"},(0,n.kt)("inlineCode",{parentName:"a"},"840ab60"))),(0,n.kt)("li",{parentName:"ul"},"created List directory & srories based on semantic-ui List component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51f19016b27228a4d391c88b7eee27357d6fdc0d"},(0,n.kt)("inlineCode",{parentName:"a"},"51f1901"))),(0,n.kt)("li",{parentName:"ul"},"made tabs as component easy to call for other components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/07bae4900a4076f3429d3a26978b92aabf6b23ba"},(0,n.kt)("inlineCode",{parentName:"a"},"07bae49"))),(0,n.kt)("li",{parentName:"ul"},"Popup Component | minor fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ff9908a9374f93b9eaf4d8ee8de24acdf5be3ec"},(0,n.kt)("inlineCode",{parentName:"a"},"2ff9908"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Tab component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/95e3a733921b42fbe2540fa39548284abff9fdc0"},(0,n.kt)("inlineCode",{parentName:"a"},"95e3a73"))),(0,n.kt)("li",{parentName:"ul"},"created Table directory and stories based on semantic-ui Table component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e16115daa000962ccd8d141e3c11fd099446a388"},(0,n.kt)("inlineCode",{parentName:"a"},"e16115d"))),(0,n.kt)("li",{parentName:"ul"},"List component stories - minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/de113430b487297417c4697178f9ee37412a5389"},(0,n.kt)("inlineCode",{parentName:"a"},"de11343"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Comment component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a20f8842e8cb5c937dfc450030ac9afcf78ffe11"},(0,n.kt)("inlineCode",{parentName:"a"},"a20f884"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Grid component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/360d2a897f36e86c58b0ba6ac3d4fc852d10287d"},(0,n.kt)("inlineCode",{parentName:"a"},"360d2a8"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Image component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c1d2bcaf886c96052af45fcce98243ea56c98a5"},(0,n.kt)("inlineCode",{parentName:"a"},"3c1d2bc"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Menu component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/17e3b37ae447d8cc86228fa6c0c48a8fd8be9d03"},(0,n.kt)("inlineCode",{parentName:"a"},"17e3b37"))),(0,n.kt)("li",{parentName:"ul"},"Added untracked files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/75f0afda10114e70348e23d480f8f74528531674"},(0,n.kt)("inlineCode",{parentName:"a"},"75f0afd"))),(0,n.kt)("li",{parentName:"ul"},"created Dropdown stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d6a25381078e0b3cabdb9270d5224b3886ab6af9"},(0,n.kt)("inlineCode",{parentName:"a"},"d6a2538"))),(0,n.kt)("li",{parentName:"ul"},"created Header component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8339798f3e7d40f1b5a033bf4d7303c756c38d3"},(0,n.kt)("inlineCode",{parentName:"a"},"b833979"))),(0,n.kt)("li",{parentName:"ul"},"created stories for semantic-ui Confirm component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6fddccc6cf97f9929da52064ceb379f9fc427b42"},(0,n.kt)("inlineCode",{parentName:"a"},"6fddccc"))),(0,n.kt)("li",{parentName:"ul"},"created Statistic directory and stories with semantic-ui Statistic component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cd62498dbd75d5dff0adf849ff95d22bb9dc3b34"},(0,n.kt)("inlineCode",{parentName:"a"},"cd62498"))),(0,n.kt)("li",{parentName:"ul"},"created Item component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/90ec2be7eede347352e318c70615c30e7d422073"},(0,n.kt)("inlineCode",{parentName:"a"},"90ec2be"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Container component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/41934f6c5961ae0ac034a496ac169a191c7a5288"},(0,n.kt)("inlineCode",{parentName:"a"},"41934f6"))),(0,n.kt)("li",{parentName:"ul"},"created Label component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/71732f68b3153320710fbf7fb78dac460b8a084f"},(0,n.kt)("inlineCode",{parentName:"a"},"71732f6"))),(0,n.kt)("li",{parentName:"ul"},"created Message component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/adcbeabe6d4e8c1bbd7bd925c5f7fd3109fb407c"},(0,n.kt)("inlineCode",{parentName:"a"},"adcbeab"))),(0,n.kt)("li",{parentName:"ul"},"created Modal component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c25409d8901ad4eba66fa66a9f5c34b0353569b9"},(0,n.kt)("inlineCode",{parentName:"a"},"c25409d"))),(0,n.kt)("li",{parentName:"ul"},"Breadcrumb component stories and minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6264d92bcf6565e284ae9dc0c7a918652bb3959e"},(0,n.kt)("inlineCode",{parentName:"a"},"6264d92"))),(0,n.kt)("li",{parentName:"ul"},"created Pagination component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/57cdad35e21fdacf303e407abcb8988e97e87242"},(0,n.kt)("inlineCode",{parentName:"a"},"57cdad3"))),(0,n.kt)("li",{parentName:"ul"},"created Segment component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d8d01d70dab9359be46eb1629b3198f871091c7a"},(0,n.kt)("inlineCode",{parentName:"a"},"d8d01d7"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Radio component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1fd062d8a08cbe8507f5154201632ea96f765a2c"},(0,n.kt)("inlineCode",{parentName:"a"},"1fd062d"))),(0,n.kt)("li",{parentName:"ul"},"Menu stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6ba5e0d00a26ffd4625fb51f759af3764cef28de"},(0,n.kt)("inlineCode",{parentName:"a"},"6ba5e0d"))),(0,n.kt)("li",{parentName:"ul"},"Statistic component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c874a520c9959b7673b5c86f63e53e90f006f22"},(0,n.kt)("inlineCode",{parentName:"a"},"3c874a5"))),(0,n.kt)("li",{parentName:"ul"},"Card component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/290bda8dac4c9bb4476108c2e4969fa283f935e2"},(0,n.kt)("inlineCode",{parentName:"a"},"290bda8"))),(0,n.kt)("li",{parentName:"ul"},"Accrordion stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ee3f592fbfaead01506fb6a4dbfb36d06269564"},(0,n.kt)("inlineCode",{parentName:"a"},"2ee3f59"))),(0,n.kt)("li",{parentName:"ul"},"renamed Demo folder to Layout ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b9f6d05708310889dd018961bf5df9d5edd66e12"},(0,n.kt)("inlineCode",{parentName:"a"},"b9f6d05"))),(0,n.kt)("li",{parentName:"ul"},"remove test exclusion ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/94dba3eaa864e25d34bcc33ab19494f83ecabb25"},(0,n.kt)("inlineCode",{parentName:"a"},"94dba3e"))),(0,n.kt)("li",{parentName:"ul"},"Accordion component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e672d59f86a79e69f15b5212e2953aa7c5fea1d1"},(0,n.kt)("inlineCode",{parentName:"a"},"e672d59"))),(0,n.kt)("li",{parentName:"ul"},"fix docusaurus url (removed trailing /) ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b6c59fc7733b3df47dca797906e8f7e40a2f4ada"},(0,n.kt)("inlineCode",{parentName:"a"},"b6c59fc"))),(0,n.kt)("li",{parentName:"ul"},"Item component stories - minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f0a99025b9093ecf2eb25fd4b4e401b5b532a481"},(0,n.kt)("inlineCode",{parentName:"a"},"f0a9902"))),(0,n.kt)("li",{parentName:"ul"},"eea logos and assets ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b435b511d64b0ca99bfd310d66bdbfd5985390cc"},(0,n.kt)("inlineCode",{parentName:"a"},"b435b51")))),(0,n.kt)("h3",{id:"012-beta0---2021-12-18"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.1...0.1.2-beta.0"},"0.1.2-beta.0")," - 2021-12-18"),(0,n.kt)("h4",{id:"\ufe0f-others-57"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Refs #140454 added github action to build docusaurus to the develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/abe6a72882a41c9bca3649a3a6697619038e1677"},(0,n.kt)("inlineCode",{parentName:"a"},"abe6a72")))),(0,n.kt)("h3",{id:"011---2021-12-16"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.1-beta.0...0.1.1"},"0.1.1")," - 2021-12-16"),(0,n.kt)("h4",{id:"\ufe0f-others-58"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Refs #140454 changed the following to volto-eea-design-system: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6791d413cf1b9e434970564d9e59ed56b41907f0"},(0,n.kt)("inlineCode",{parentName:"a"},"6791d41"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 corrected base url for docusaurus website build ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/98271b3d39e2e21dfb4a0e31c334dc9e87811e4a"},(0,n.kt)("inlineCode",{parentName:"a"},"98271b3"))),(0,n.kt)("li",{parentName:"ul"},"Initial test changes on design system/docusaurus. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9dad612f385cc9fde712809f07dbe2b7111432cf"},(0,n.kt)("inlineCode",{parentName:"a"},"9dad612"))),(0,n.kt)("li",{parentName:"ul"},"After prettier check ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9ec40b4fe9d8a18e99f774e1a96a55b286a9733a"},(0,n.kt)("inlineCode",{parentName:"a"},"9ec40b4"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 restore SearchWidget.jsx content and removed dummy text from docs intro page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7505df89d93ac99156834a0c50a8e2b174c506f8"},(0,n.kt)("inlineCode",{parentName:"a"},"7505df8"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 added references to eea and the storybook in the docusaurus footer ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/42bbfcdd67888c3a7a55875d67acae9f7eb753bb"},(0,n.kt)("inlineCode",{parentName:"a"},"42bbfcd"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 lint fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9502f2bdbd45262b38926def5b7b55efabf4c32c"},(0,n.kt)("inlineCode",{parentName:"a"},"9502f2b"))),(0,n.kt)("li",{parentName:"ul"},"Add SonarQube badges ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4e0a4053ff2313fc3939caab80d874470aca062"},(0,n.kt)("inlineCode",{parentName:"a"},"a4e0a40"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 brought changes from develop-itml and upgrades docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/207c873532e38fb7909cdc32a02bf50e575b66fa"},(0,n.kt)("inlineCode",{parentName:"a"},"207c873"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 removed extra content not needed by the docusaurus site ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bc68ebe8259c9b8ed6bc73df8102885554bbc4ed"},(0,n.kt)("inlineCode",{parentName:"a"},"bc68ebe"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 updated docusaurus to latest beta ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d68ed8a1660910067a09550626a5f0e8fbbeeac9"},(0,n.kt)("inlineCode",{parentName:"a"},"d68ed8a")))),(0,n.kt)("h3",{id:"011-beta0---2021-12-09"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.0...0.1.1-beta.0"},"0.1.1-beta.0")," - 2021-12-09"),(0,n.kt)("h4",{id:"\ufe0f-others-59"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Refs #140454 moved header and footer templates from volto-ims-theme: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2d5e56045c0b7d917153d95492dd340668b6222"},(0,n.kt)("inlineCode",{parentName:"a"},"e2d5e56"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 added website folder with docusaurus site skeleton ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6fd15f4365a207308c068fe7eb197c0717e93954"},(0,n.kt)("inlineCode",{parentName:"a"},"6fd15f4"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142794 added commented implementation of the header and footer area: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/773ad8784f4a03e4b600406999d3a274a3984d39"},(0,n.kt)("inlineCode",{parentName:"a"},"773ad87"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 changed the following: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4137ec42270c28cbe036ba11e9475f00a7a5cba3"},(0,n.kt)("inlineCode",{parentName:"a"},"4137ec4"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 removed storybook from volto-eea-design-system: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a129ffb485c4c55f19129a209d920da8f8f52418"},(0,n.kt)("inlineCode",{parentName:"a"},"a129ffb"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 added storybook as a dev dependency: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e04ae4e0294fbb4a09f367d1693a158d5a1e8f2f"},(0,n.kt)("inlineCode",{parentName:"a"},"e04ae4e"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 updated Breadcrumbs.jsx to latest version: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/63fe5076781f3cf2ce5c79641a5f1b45f298b476"},(0,n.kt)("inlineCode",{parentName:"a"},"63fe507"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 we should use jsx and not mdx for storybook tests ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3668e667f857cb3052b9d63cf27ec629fe1c8394"},(0,n.kt)("inlineCode",{parentName:"a"},"3668e66"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 updated eea-design-system readme with extra info on package contents ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d2efc3ddae7b91efc82cf3bce8fb8e42d696a780"},(0,n.kt)("inlineCode",{parentName:"a"},"d2efc3d"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142010 - Optimize Volto-addons gitflow pipelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3af46d2b14fa0b1ef44736f25b0f9ac93b23d18d"},(0,n.kt)("inlineCode",{parentName:"a"},"3af46d2"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 Renamed folders of docusaurus website: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/15bca7462ba1b3c626e2bf76597f6436aa5e9092"},(0,n.kt)("inlineCode",{parentName:"a"},"15bca74"))),(0,n.kt)("li",{parentName:"ul"},"Add demo story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/757c409271eb70baa54bff8bd7c71ba29aaa4f66"},(0,n.kt)("inlineCode",{parentName:"a"},"757c409"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142794 enabled minimum css so that header looks decent ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/adbe2335bacf5ae09541c3679a246a5ec28376a4"},(0,n.kt)("inlineCode",{parentName:"a"},"adbe233"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 use the develop branch for the readme linking, it's always more up to date ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/23dcf166d5d633df2a63ab6fa5bac4be086e99a3"},(0,n.kt)("inlineCode",{parentName:"a"},"23dcf16"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 added missing themes reference for the eea theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e9ca244fcedf0be420748b3e5347e98309b5d996"},(0,n.kt)("inlineCode",{parentName:"a"},"e9ca244"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 modified assets imports after move to volto-eea-design-system ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2250cc7ba4155c328837cea09e2e7d94afc984f8"},(0,n.kt)("inlineCode",{parentName:"a"},"2250cc7"))),(0,n.kt)("li",{parentName:"ul"},"Load footer in segment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/80d38a96284e7fa9416ba327a43e29eb94bebe55"},(0,n.kt)("inlineCode",{parentName:"a"},"80d38a9"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 bump package version to 1.1.0 from 0.1.1 from develop branch: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1314039ceb45d405af6bc4698b489bbd6562c6ae"},(0,n.kt)("inlineCode",{parentName:"a"},"1314039"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142794 keep toolbalWidth variables in case design system runs in an older version of Volto ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1a8b30562e4167fe36b095877db0b215d10cb620"},(0,n.kt)("inlineCode",{parentName:"a"},"1a8b305"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142794 changed the following: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fbb80b1dbd0e3078777b8b3496d4b207ba25639a"},(0,n.kt)("inlineCode",{parentName:"a"},"fbb80b1"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 moved storybook scripts to the scripts section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/705c4c365d26152d917c62991f3f8202bc75287d"},(0,n.kt)("inlineCode",{parentName:"a"},"705c4c3"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 removed dangling comma ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/514f24d503a1f05497696c22c7fdbf7bc19d4e54"},(0,n.kt)("inlineCode",{parentName:"a"},"514f24d"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 changed link to the start of the docs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0e16fdfc77e119da4e1f15183d9cb95ef9b4b6cf"},(0,n.kt)("inlineCode",{parentName:"a"},"0e16fdf"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 add h1 to the list of elements that are max 800px and centered ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d3c30f409aa4cb43810839f8960589456cc1b2e"},(0,n.kt)("inlineCode",{parentName:"a"},"7d3c30f"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using ims-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8d657d056cde5163cfe90ac66bc973f55d82e5e9"},(0,n.kt)("inlineCode",{parentName:"a"},"8d657d0")))),(0,n.kt)("h3",{id:"010---2021-11-17"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.0.1...0.1.0"},"0.1.0")," - 2021-11-17"),(0,n.kt)("h4",{id:"\ufe0f-others-60"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Refs #140454 changed the following to volto-eea-design-system: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/40d2af693e35abdda3ededc7aabcb17e9a12e781"},(0,n.kt)("inlineCode",{parentName:"a"},"40d2af6"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 elements folder now has the variables and overrides from pastanaga theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/595b4e60816d3e24950ede3afea6e5f2aa2d7008"},(0,n.kt)("inlineCode",{parentName:"a"},"595b4e6"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 use font awesome from SemanticUI instead of Pastanaga: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4e273ca1b9a2be1f169d12258ac2335c3ebeefff"},(0,n.kt)("inlineCode",{parentName:"a"},"4e273ca"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 removed the components customizations from volto-eea-design-system: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c98c260b549cd1db48bfe556e994692a4855b95d"},(0,n.kt)("inlineCode",{parentName:"a"},"c98c260"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 added customizations folder from volto-ims-theme to volto-eea-design-system: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff4bf44bd648ff179bd7c82d0cf80da968b291b0"},(0,n.kt)("inlineCode",{parentName:"a"},"ff4bf44"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 modules folder now has the variables and overrides from pastanaga theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2841b62c87e3242423bca1117c7e1793baa7974"},(0,n.kt)("inlineCode",{parentName:"a"},"f2841b6"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 customized Comments.jsx to remove unnecessary container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b2e95d7ae875a7fc85366c76ef35ce215dd7b5ff"},(0,n.kt)("inlineCode",{parentName:"a"},"b2e95d7"))),(0,n.kt)("li",{parentName:"ul"},"Refs #132149 added initial commit for volto-eea-design-system: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2934b911d589fde126f70363a61cbdd2e3dcf7c9"},(0,n.kt)("inlineCode",{parentName:"a"},"2934b91"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 collection folder now has the variables and overrides from pastanaga: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/213d4968e4efa380a389fb7ab40ec3196f030050"},(0,n.kt)("inlineCode",{parentName:"a"},"213d496"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 removed search widget customization, we can use volto-ims-theme for that file ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b7e8b0c4821584a84f940d8f780057122321aae7"},(0,n.kt)("inlineCode",{parentName:"a"},"b7e8b0c"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 stylelint quick fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5595925f68871135a07d703c8ba009b0172c7ccd"},(0,n.kt)("inlineCode",{parentName:"a"},"5595925"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 changed the following: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/769f4f9eca0ed9fffe0c8c49c56bcb123a203f3c"},(0,n.kt)("inlineCode",{parentName:"a"},"769f4f9"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 changed the following to the eea theme: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/06d8d86a7be81fd3feadf034eacfa61eb69743ab"},(0,n.kt)("inlineCode",{parentName:"a"},"06d8d86"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 eea site.variables now use all values from pastanaga's site.variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6535c0f4e1968822a232b017a55babd280716d88"},(0,n.kt)("inlineCode",{parentName:"a"},"6535c0f"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 simplified container overrides: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51250038527f2e4b1135a2b5bfc6adccc3f77a06"},(0,n.kt)("inlineCode",{parentName:"a"},"5125003"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/177d0ce854a8a963faa2aae9481cbcc7e340e0fa"},(0,n.kt)("inlineCode",{parentName:"a"},"177d0ce"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 globals folder now has the variables and overrides from pastanaga theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/116a0c338bd92dd14636a649476b4f00951e3734"},(0,n.kt)("inlineCode",{parentName:"a"},"116a0c3"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 changed the following: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2e7f42381b63e65bafac3b754d49b65daca9663d"},(0,n.kt)("inlineCode",{parentName:"a"},"2e7f423"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 modules folder now has the variables and overrides from pastanaga theme: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/27a201d57024a7c621f4943b8eb59a3247b6c89d"},(0,n.kt)("inlineCode",{parentName:"a"},"27a201d"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 text elements are now with a max width and centered within content-area: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bbed7bbfb3e79a371b7bf7dea2206cdbdcdfe76d"},(0,n.kt)("inlineCode",{parentName:"a"},"bbed7bb"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 added main.variables entries from pastanaga to eea theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1cbbc550436c889d1b297ae9e6880167fce28fe1"},(0,n.kt)("inlineCode",{parentName:"a"},"1cbbc55"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 modified theme image imports for component customizations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef3238a4d615fa1b496e83f4e6c4c0d27f3d68f4"},(0,n.kt)("inlineCode",{parentName:"a"},"ef3238a"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 modified container width to be auto: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2e8d2e0ebb3e4a55b7cf1b66c3dff222ef12aa18"},(0,n.kt)("inlineCode",{parentName:"a"},"2e8d2e0"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 modified several icons to use the \\f values instead of \\e: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c397145bc1e76916ae72a94faaf33f49bd9ca5a6"},(0,n.kt)("inlineCode",{parentName:"a"},"c397145"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 changed the following: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c518edacad9b8bed61ea50d318d8d43bf7f483a0"},(0,n.kt)("inlineCode",{parentName:"a"},"c518eda"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 ensure that main column isn't enlarged over the sidebar section on edit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f7a28684223494933bcd8ec1f6d86b1b3da17e10"},(0,n.kt)("inlineCode",{parentName:"a"},"f7a2868"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 changed the following to the form styling: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/eb92e054fe330730c1a44737cbbdf33985216cbb"},(0,n.kt)("inlineCode",{parentName:"a"},"eb92e05"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 modified path of theme folder location for image selection ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f8cca4594857ab4afd654f35e4ec97e4d3e04be4"},(0,n.kt)("inlineCode",{parentName:"a"},"f8cca45"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 added missing mobileScrollbarWidth variables introduced as part of the mobile navigation pull request ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/444c78d998199e703d7ecde01b3feb0d44c60977"},(0,n.kt)("inlineCode",{parentName:"a"},"444c78d"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 reference font and image path from ~volto-themes instead of relative ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ec93ed3a496673eed7d7ec07a2f76aaa6a29d7ca"},(0,n.kt)("inlineCode",{parentName:"a"},"ec93ed3"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 ensure that Volto doesn't crash when site module is set to eea: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51f2f27f5ba947b49b4b69fcf9b8890676cd1d7e"},(0,n.kt)("inlineCode",{parentName:"a"},"51f2f27"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 added tiny size prop to Breadcrumbs in order to have it as 12px ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/56a12e200c27c3a1826fa3088c34f762ed74dff7"},(0,n.kt)("inlineCode",{parentName:"a"},"56a12e2")))),(0,n.kt)("h3",{id:"001---2021-11-17"},"0.0.1 - 2021-11-17"),(0,n.kt)("h4",{id:"\ufe0f-others-61"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Initial commit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b0bdd445c95a20d088e00469f81028c16482640a"},(0,n.kt)("inlineCode",{parentName:"a"},"b0bdd44")))))}s.isMDXComponent=!0}}]); \ No newline at end of file diff --git a/docs/assets/js/runtime~main.46d2157e.js b/docs/assets/js/runtime~main.ea9eaeaf.js similarity index 99% rename from docs/assets/js/runtime~main.46d2157e.js rename to docs/assets/js/runtime~main.ea9eaeaf.js index 81104dba95..de796e47c2 100644 --- a/docs/assets/js/runtime~main.46d2157e.js +++ b/docs/assets/js/runtime~main.ea9eaeaf.js @@ -1 +1 @@ -(()=>{"use strict";var e,d,a,f,c,b={},t={};function r(e){var d=t[e];if(void 0!==d)return d.exports;var a=t[e]={id:e,loaded:!1,exports:{}};return b[e].call(a.exports,a,a.exports,r),a.loaded=!0,a.exports}r.m=b,r.c=t,e=[],r.O=(d,a,f,c)=>{if(!a){var b=1/0;for(i=0;i=c)&&Object.keys(r.O).every((e=>r.O[e](a[o])))?a.splice(o--,1):(t=!1,c0&&e[i-1][2]>c;i--)e[i]=e[i-1];e[i]=[a,f,c]},r.n=e=>{var d=e&&e.__esModule?()=>e.default:()=>e;return r.d(d,{a:d}),d},a=Object.getPrototypeOf?e=>Object.getPrototypeOf(e):e=>e.__proto__,r.t=function(e,f){if(1&f&&(e=this(e)),8&f)return e;if("object"==typeof e&&e){if(4&f&&e.__esModule)return e;if(16&f&&"function"==typeof e.then)return e}var c=Object.create(null);r.r(c);var b={};d=d||[null,a({}),a([]),a(a)];for(var t=2&f&&e;"object"==typeof t&&!~d.indexOf(t);t=a(t))Object.getOwnPropertyNames(t).forEach((d=>b[d]=()=>e[d]));return b.default=()=>e,r.d(c,b),c},r.d=(e,d)=>{for(var a in d)r.o(d,a)&&!r.o(e,a)&&Object.defineProperty(e,a,{enumerable:!0,get:d[a]})},r.f={},r.e=e=>Promise.all(Object.keys(r.f).reduce(((d,a)=>(r.f[a](e,d),d)),[])),r.u=e=>"assets/js/"+({53:"935f2afb",123:"3fc91083",296:"a64f9232",432:"323ff172",554:"8fd6869d",585:"c74413f4",596:"ca221c65",698:"56bbe726",918:"1e6d2369",952:"4442ee2e",1129:"30e35848",1327:"9c235974",1356:"7ca1ae16",1500:"3508f21e",1704:"6c6ad4cd",2099:"f4f5dc73",2163:"0bef62f9",2263:"e9a55e4f",2282:"9a6dc4ea",2305:"686ae6d4",2359:"d61699b0",2438:"d9dbb717",2453:"a5822498",2463:"42e0342b",2543:"86298114",2582:"63791757",2672:"bdd5fc8f",2678:"9b6f4efd",2853:"06df40a2",2873:"398224d0",3018:"2d344845",3166:"f9ee06b1",3293:"b78356b1",3305:"1f485700",3412:"792760cc",3436:"860b2a9d",3608:"9e4087bc",3661:"39f50359",3808:"fe8a233d",3822:"77dd8181",3902:"a8b15fb1",3934:"aa38dcb9",4009:"8050142d",4195:"c4f5d8e4",4419:"f601d3af",4521:"1a10606c",5294:"76fe1567",5386:"54e4468f",5435:"24202412",5437:"a186f965",5886:"7e4403b7",6061:"046f8cb9",6196:"c3faf33a",6245:"41d5c757",6304:"1c178b4f",6515:"f8c0402f",6570:"23d147e2",6671:"8effdd7e",6966:"c7d85666",7098:"d727d0d1",7426:"671d942a",7492:"b0f56568",7578:"3aee128f",7918:"17896441",8027:"2d39cd59",8150:"85201c01",8362:"0b225811",8518:"627750f7",8635:"0a8b14be",9003:"072ed0e5",9053:"75066279",9110:"7810a5ba",9173:"6d890e16",9184:"b3c62368",9213:"6dda7ddb",9221:"797402ac",9340:"d6e43592",9456:"aed7c9bd",9514:"1be78505",9744:"224603d4",9817:"14eb3368"}[e]||e)+"."+{53:"af8c3126",123:"1fc5f8a1",296:"a3fe1499",432:"8e77499f",554:"9012c388",585:"88e2ed16",596:"c934dcb0",698:"02ecf8a0",918:"74ff9fcc",952:"51f99e28",1129:"07372634",1327:"37d0ed39",1356:"02804555",1500:"929876a1",1704:"6511d866",2099:"2a653be0",2163:"096fabb0",2263:"3980a0d4",2282:"f1d8d943",2305:"600335dc",2359:"e041662b",2438:"e1067b46",2453:"7f593cf2",2463:"6d5f3ad4",2543:"52def2ee",2582:"b5f68b7e",2672:"25d9da0a",2678:"b0273f83",2853:"23875b5f",2873:"b722ee28",3018:"1383b54d",3166:"136c147f",3293:"655674df",3305:"1237957a",3412:"08f0edc4",3436:"cba9bde3",3608:"6e912446",3661:"593bba5c",3808:"a7fce259",3822:"dbb98ec9",3902:"73af5b7e",3934:"a4f5c736",4009:"1e9f60f9",4195:"684c270e",4419:"4a574066",4521:"216f709e",4608:"46768f56",5294:"86227180",5386:"f96775e6",5435:"67d0c84c",5437:"e2c081c8",5886:"f539fb56",6061:"24207895",6196:"aa89e306",6245:"c97b6622",6304:"6abca704",6515:"6a8c6376",6570:"dd09dcfc",6671:"78438c01",6966:"3b2a23c4",7098:"451ca2c2",7426:"361333e3",7492:"01af3d6a",7578:"465c5637",7918:"6d7b2f82",8027:"c3e1229f",8150:"e3153012",8362:"69f9ed96",8518:"6f79a50b",8635:"9eacda40",9003:"b1cc3b3e",9053:"90332cf0",9110:"cbdafccc",9173:"3ab4f8fe",9184:"9ae02f15",9213:"3a3aae20",9221:"261f0d22",9340:"c521528a",9456:"3112a237",9514:"a4a3adad",9744:"bcc78ee9",9817:"d6f1bb65"}[e]+".js",r.miniCssF=e=>"assets/css/styles.6aa5c4cf.css",r.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),r.o=(e,d)=>Object.prototype.hasOwnProperty.call(e,d),f={},c="website:",r.l=(e,d,a,b)=>{if(f[e])f[e].push(d);else{var t,o;if(void 0!==a)for(var n=document.getElementsByTagName("script"),i=0;i{t.onerror=t.onload=null,clearTimeout(u);var c=f[e];if(delete f[e],t.parentNode&&t.parentNode.removeChild(t),c&&c.forEach((e=>e(a))),d)return d(a)},u=setTimeout(l.bind(null,void 0,{type:"timeout",target:t}),12e4);t.onerror=l.bind(null,t.onerror),t.onload=l.bind(null,t.onload),o&&document.head.appendChild(t)}},r.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r.p="/volto-eea-design-system/",r.gca=function(e){return e={17896441:"7918",24202412:"5435",63791757:"2582",75066279:"9053",86298114:"2543","935f2afb":"53","3fc91083":"123",a64f9232:"296","323ff172":"432","8fd6869d":"554",c74413f4:"585",ca221c65:"596","56bbe726":"698","1e6d2369":"918","4442ee2e":"952","30e35848":"1129","9c235974":"1327","7ca1ae16":"1356","3508f21e":"1500","6c6ad4cd":"1704",f4f5dc73:"2099","0bef62f9":"2163",e9a55e4f:"2263","9a6dc4ea":"2282","686ae6d4":"2305",d61699b0:"2359",d9dbb717:"2438",a5822498:"2453","42e0342b":"2463",bdd5fc8f:"2672","9b6f4efd":"2678","06df40a2":"2853","398224d0":"2873","2d344845":"3018",f9ee06b1:"3166",b78356b1:"3293","1f485700":"3305","792760cc":"3412","860b2a9d":"3436","9e4087bc":"3608","39f50359":"3661",fe8a233d:"3808","77dd8181":"3822",a8b15fb1:"3902",aa38dcb9:"3934","8050142d":"4009",c4f5d8e4:"4195",f601d3af:"4419","1a10606c":"4521","76fe1567":"5294","54e4468f":"5386",a186f965:"5437","7e4403b7":"5886","046f8cb9":"6061",c3faf33a:"6196","41d5c757":"6245","1c178b4f":"6304",f8c0402f:"6515","23d147e2":"6570","8effdd7e":"6671",c7d85666:"6966",d727d0d1:"7098","671d942a":"7426",b0f56568:"7492","3aee128f":"7578","2d39cd59":"8027","85201c01":"8150","0b225811":"8362","627750f7":"8518","0a8b14be":"8635","072ed0e5":"9003","7810a5ba":"9110","6d890e16":"9173",b3c62368:"9184","6dda7ddb":"9213","797402ac":"9221",d6e43592:"9340",aed7c9bd:"9456","1be78505":"9514","224603d4":"9744","14eb3368":"9817"}[e]||e,r.p+r.u(e)},(()=>{var e={1303:0,532:0};r.f.j=(d,a)=>{var f=r.o(e,d)?e[d]:void 0;if(0!==f)if(f)a.push(f[2]);else if(/^(1303|532)$/.test(d))e[d]=0;else{var c=new Promise(((a,c)=>f=e[d]=[a,c]));a.push(f[2]=c);var b=r.p+r.u(d),t=new Error;r.l(b,(a=>{if(r.o(e,d)&&(0!==(f=e[d])&&(e[d]=void 0),f)){var c=a&&("load"===a.type?"missing":a.type),b=a&&a.target&&a.target.src;t.message="Loading chunk "+d+" failed.\n("+c+": "+b+")",t.name="ChunkLoadError",t.type=c,t.request=b,f[1](t)}}),"chunk-"+d,d)}},r.O.j=d=>0===e[d];var d=(d,a)=>{var f,c,b=a[0],t=a[1],o=a[2],n=0;if(b.some((d=>0!==e[d]))){for(f in t)r.o(t,f)&&(r.m[f]=t[f]);if(o)var i=o(r)}for(d&&d(a);n{"use strict";var e,d,a,f,c,b={},t={};function r(e){var d=t[e];if(void 0!==d)return d.exports;var a=t[e]={id:e,loaded:!1,exports:{}};return b[e].call(a.exports,a,a.exports,r),a.loaded=!0,a.exports}r.m=b,r.c=t,e=[],r.O=(d,a,f,c)=>{if(!a){var b=1/0;for(i=0;i=c)&&Object.keys(r.O).every((e=>r.O[e](a[o])))?a.splice(o--,1):(t=!1,c0&&e[i-1][2]>c;i--)e[i]=e[i-1];e[i]=[a,f,c]},r.n=e=>{var d=e&&e.__esModule?()=>e.default:()=>e;return r.d(d,{a:d}),d},a=Object.getPrototypeOf?e=>Object.getPrototypeOf(e):e=>e.__proto__,r.t=function(e,f){if(1&f&&(e=this(e)),8&f)return e;if("object"==typeof e&&e){if(4&f&&e.__esModule)return e;if(16&f&&"function"==typeof e.then)return e}var c=Object.create(null);r.r(c);var b={};d=d||[null,a({}),a([]),a(a)];for(var t=2&f&&e;"object"==typeof t&&!~d.indexOf(t);t=a(t))Object.getOwnPropertyNames(t).forEach((d=>b[d]=()=>e[d]));return b.default=()=>e,r.d(c,b),c},r.d=(e,d)=>{for(var a in d)r.o(d,a)&&!r.o(e,a)&&Object.defineProperty(e,a,{enumerable:!0,get:d[a]})},r.f={},r.e=e=>Promise.all(Object.keys(r.f).reduce(((d,a)=>(r.f[a](e,d),d)),[])),r.u=e=>"assets/js/"+({53:"935f2afb",123:"3fc91083",296:"a64f9232",432:"323ff172",554:"8fd6869d",585:"c74413f4",596:"ca221c65",698:"56bbe726",918:"1e6d2369",952:"4442ee2e",1129:"30e35848",1327:"9c235974",1356:"7ca1ae16",1500:"3508f21e",1704:"6c6ad4cd",2099:"f4f5dc73",2163:"0bef62f9",2263:"e9a55e4f",2282:"9a6dc4ea",2305:"686ae6d4",2359:"d61699b0",2438:"d9dbb717",2453:"a5822498",2463:"42e0342b",2543:"86298114",2582:"63791757",2672:"bdd5fc8f",2678:"9b6f4efd",2853:"06df40a2",2873:"398224d0",3018:"2d344845",3166:"f9ee06b1",3293:"b78356b1",3305:"1f485700",3412:"792760cc",3436:"860b2a9d",3608:"9e4087bc",3661:"39f50359",3808:"fe8a233d",3822:"77dd8181",3902:"a8b15fb1",3934:"aa38dcb9",4009:"8050142d",4195:"c4f5d8e4",4419:"f601d3af",4521:"1a10606c",5294:"76fe1567",5386:"54e4468f",5435:"24202412",5437:"a186f965",5886:"7e4403b7",6061:"046f8cb9",6196:"c3faf33a",6245:"41d5c757",6304:"1c178b4f",6515:"f8c0402f",6570:"23d147e2",6671:"8effdd7e",6966:"c7d85666",7098:"d727d0d1",7426:"671d942a",7492:"b0f56568",7578:"3aee128f",7918:"17896441",8027:"2d39cd59",8150:"85201c01",8362:"0b225811",8518:"627750f7",8635:"0a8b14be",9003:"072ed0e5",9053:"75066279",9110:"7810a5ba",9173:"6d890e16",9184:"b3c62368",9213:"6dda7ddb",9221:"797402ac",9340:"d6e43592",9456:"aed7c9bd",9514:"1be78505",9744:"224603d4",9817:"14eb3368"}[e]||e)+"."+{53:"af8c3126",123:"1fc5f8a1",296:"a3fe1499",432:"8e77499f",554:"9012c388",585:"88e2ed16",596:"c934dcb0",698:"02ecf8a0",918:"74ff9fcc",952:"51f99e28",1129:"07372634",1327:"37d0ed39",1356:"02804555",1500:"929876a1",1704:"6511d866",2099:"2a653be0",2163:"096fabb0",2263:"3980a0d4",2282:"f1d8d943",2305:"600335dc",2359:"e041662b",2438:"e1067b46",2453:"7f593cf2",2463:"6d5f3ad4",2543:"52def2ee",2582:"b5f68b7e",2672:"25d9da0a",2678:"b0273f83",2853:"23875b5f",2873:"b722ee28",3018:"1383b54d",3166:"136c147f",3293:"655674df",3305:"1237957a",3412:"08f0edc4",3436:"cba9bde3",3608:"6e912446",3661:"593bba5c",3808:"a7fce259",3822:"dbb98ec9",3902:"73af5b7e",3934:"a4f5c736",4009:"1e9f60f9",4195:"684c270e",4419:"4a574066",4521:"216f709e",4608:"46768f56",5294:"86227180",5386:"f96775e6",5435:"67d0c84c",5437:"e2c081c8",5886:"f539fb56",6061:"24207895",6196:"aa89e306",6245:"8b547e3f",6304:"6abca704",6515:"6a8c6376",6570:"dd09dcfc",6671:"78438c01",6966:"3b2a23c4",7098:"451ca2c2",7426:"361333e3",7492:"01af3d6a",7578:"465c5637",7918:"6d7b2f82",8027:"c3e1229f",8150:"e3153012",8362:"69f9ed96",8518:"6f79a50b",8635:"9eacda40",9003:"b1cc3b3e",9053:"90332cf0",9110:"cbdafccc",9173:"3ab4f8fe",9184:"9ae02f15",9213:"3a3aae20",9221:"261f0d22",9340:"c521528a",9456:"3112a237",9514:"a4a3adad",9744:"bcc78ee9",9817:"d6f1bb65"}[e]+".js",r.miniCssF=e=>"assets/css/styles.6aa5c4cf.css",r.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),r.o=(e,d)=>Object.prototype.hasOwnProperty.call(e,d),f={},c="website:",r.l=(e,d,a,b)=>{if(f[e])f[e].push(d);else{var t,o;if(void 0!==a)for(var n=document.getElementsByTagName("script"),i=0;i{t.onerror=t.onload=null,clearTimeout(u);var c=f[e];if(delete f[e],t.parentNode&&t.parentNode.removeChild(t),c&&c.forEach((e=>e(a))),d)return d(a)},u=setTimeout(l.bind(null,void 0,{type:"timeout",target:t}),12e4);t.onerror=l.bind(null,t.onerror),t.onload=l.bind(null,t.onload),o&&document.head.appendChild(t)}},r.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r.p="/volto-eea-design-system/",r.gca=function(e){return e={17896441:"7918",24202412:"5435",63791757:"2582",75066279:"9053",86298114:"2543","935f2afb":"53","3fc91083":"123",a64f9232:"296","323ff172":"432","8fd6869d":"554",c74413f4:"585",ca221c65:"596","56bbe726":"698","1e6d2369":"918","4442ee2e":"952","30e35848":"1129","9c235974":"1327","7ca1ae16":"1356","3508f21e":"1500","6c6ad4cd":"1704",f4f5dc73:"2099","0bef62f9":"2163",e9a55e4f:"2263","9a6dc4ea":"2282","686ae6d4":"2305",d61699b0:"2359",d9dbb717:"2438",a5822498:"2453","42e0342b":"2463",bdd5fc8f:"2672","9b6f4efd":"2678","06df40a2":"2853","398224d0":"2873","2d344845":"3018",f9ee06b1:"3166",b78356b1:"3293","1f485700":"3305","792760cc":"3412","860b2a9d":"3436","9e4087bc":"3608","39f50359":"3661",fe8a233d:"3808","77dd8181":"3822",a8b15fb1:"3902",aa38dcb9:"3934","8050142d":"4009",c4f5d8e4:"4195",f601d3af:"4419","1a10606c":"4521","76fe1567":"5294","54e4468f":"5386",a186f965:"5437","7e4403b7":"5886","046f8cb9":"6061",c3faf33a:"6196","41d5c757":"6245","1c178b4f":"6304",f8c0402f:"6515","23d147e2":"6570","8effdd7e":"6671",c7d85666:"6966",d727d0d1:"7098","671d942a":"7426",b0f56568:"7492","3aee128f":"7578","2d39cd59":"8027","85201c01":"8150","0b225811":"8362","627750f7":"8518","0a8b14be":"8635","072ed0e5":"9003","7810a5ba":"9110","6d890e16":"9173",b3c62368:"9184","6dda7ddb":"9213","797402ac":"9221",d6e43592:"9340",aed7c9bd:"9456","1be78505":"9514","224603d4":"9744","14eb3368":"9817"}[e]||e,r.p+r.u(e)},(()=>{var e={1303:0,532:0};r.f.j=(d,a)=>{var f=r.o(e,d)?e[d]:void 0;if(0!==f)if(f)a.push(f[2]);else if(/^(1303|532)$/.test(d))e[d]=0;else{var c=new Promise(((a,c)=>f=e[d]=[a,c]));a.push(f[2]=c);var b=r.p+r.u(d),t=new Error;r.l(b,(a=>{if(r.o(e,d)&&(0!==(f=e[d])&&(e[d]=void 0),f)){var c=a&&("load"===a.type?"missing":a.type),b=a&&a.target&&a.target.src;t.message="Loading chunk "+d+" failed.\n("+c+": "+b+")",t.name="ChunkLoadError",t.type=c,t.request=b,f[1](t)}}),"chunk-"+d,d)}},r.O.j=d=>0===e[d];var d=(d,a)=>{var f,c,b=a[0],t=a[1],o=a[2],n=0;if(b.some((d=>0!==e[d]))){for(f in t)r.o(t,f)&&(r.m[f]=t[f]);if(o)var i=o(r)}for(d&&d(a);n Archive | EEA Design System - +

Archive

Archive

- + \ No newline at end of file diff --git a/docs/docs/category/components/index.html b/docs/docs/category/components/index.html index a9c7addbb6..c32e519fe0 100644 --- a/docs/docs/category/components/index.html +++ b/docs/docs/category/components/index.html @@ -5,13 +5,13 @@ Components | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/category/forms/index.html b/docs/docs/category/forms/index.html index a442cd9cd4..14a7c9e1c7 100644 --- a/docs/docs/category/forms/index.html +++ b/docs/docs/category/forms/index.html @@ -5,13 +5,13 @@ Forms | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/category/guidelines/index.html b/docs/docs/category/guidelines/index.html index ab9535147a..b447dfa668 100644 --- a/docs/docs/category/guidelines/index.html +++ b/docs/docs/category/guidelines/index.html @@ -5,13 +5,13 @@ Guidelines | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/category/maps-and-charts/index.html b/docs/docs/category/maps-and-charts/index.html index e1e8b546c1..fd410f5188 100644 --- a/docs/docs/category/maps-and-charts/index.html +++ b/docs/docs/category/maps-and-charts/index.html @@ -5,13 +5,13 @@ Maps and charts | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/category/publications/index.html b/docs/docs/category/publications/index.html index 356cf40658..83f8096dac 100644 --- a/docs/docs/category/publications/index.html +++ b/docs/docs/category/publications/index.html @@ -5,13 +5,13 @@ Publications | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/category/quotes/index.html b/docs/docs/category/quotes/index.html index b1321f3403..771b535b11 100644 --- a/docs/docs/category/quotes/index.html +++ b/docs/docs/category/quotes/index.html @@ -5,13 +5,13 @@ Quotes | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/category/resources/index.html b/docs/docs/category/resources/index.html index 8ef620581a..b0a7adc625 100644 --- a/docs/docs/category/resources/index.html +++ b/docs/docs/category/resources/index.html @@ -5,13 +5,13 @@ Resources | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/category/search/index.html b/docs/docs/category/search/index.html index 038b97bf55..0c6b9df2cb 100644 --- a/docs/docs/category/search/index.html +++ b/docs/docs/category/search/index.html @@ -5,13 +5,13 @@ Search | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/category/templates/index.html b/docs/docs/category/templates/index.html index d3d4bcf44d..c7c4b4173a 100644 --- a/docs/docs/category/templates/index.html +++ b/docs/docs/category/templates/index.html @@ -5,13 +5,13 @@ Templates | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/category/utilities/index.html b/docs/docs/category/utilities/index.html index b5907eda7a..84248f71bf 100644 --- a/docs/docs/category/utilities/index.html +++ b/docs/docs/category/utilities/index.html @@ -5,13 +5,13 @@ Utilities | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/category/visuals/index.html b/docs/docs/category/visuals/index.html index 508e588e03..10c3cfdc39 100644 --- a/docs/docs/category/visuals/index.html +++ b/docs/docs/category/visuals/index.html @@ -5,13 +5,13 @@ Visuals | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/category/web-content/index.html b/docs/docs/category/web-content/index.html index 30f6da7e72..5dbfb629f3 100644 --- a/docs/docs/category/web-content/index.html +++ b/docs/docs/category/web-content/index.html @@ -5,13 +5,13 @@ Web content | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/category/web-development/index.html b/docs/docs/category/web-development/index.html index 8e3cd1a7c0..cce6facbb4 100644 --- a/docs/docs/category/web-development/index.html +++ b/docs/docs/category/web-development/index.html @@ -5,13 +5,13 @@ Web development | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/dataguide/intro/index.html b/docs/docs/dataguide/intro/index.html index e8111efd6e..4a35b9448c 100644 --- a/docs/docs/dataguide/intro/index.html +++ b/docs/docs/dataguide/intro/index.html @@ -5,13 +5,13 @@ Dos and don'ts | EEA Design System - +
- + \ No newline at end of file diff --git a/docs/docs/intro/index.html b/docs/docs/intro/index.html index 33542ff16f..af862b5568 100644 --- a/docs/docs/intro/index.html +++ b/docs/docs/intro/index.html @@ -5,13 +5,13 @@ Introduction | EEA Design System - +

Introduction

We created the EEA Design System (EEA-DS) to standardize the visual language and user experience of the EEA’s online applications.

This also allows us to be more effecient when creating online applications instead of reinventing the wheel over and over.

EEA-DS was built by a multi-disciplinary team of developers, designers, UX researchers, writers and data scientists. Combining the expertise of all of these roles allowed us to create a design system with a wide range of elements and for various target users (Web Designer, Web Writer/Content manager, Web Developer and Data scientist).

What is a design system?

A design system is a catalogue of everything that makes up your digital product including user interface elements, writing style, guiding principles, coding standards, visual design, etc. using reusable components for easy development.

All library elements are accompanied by:

  • documentation explaining what a component is and how it should be used
  • a visual demonstration
  • HTML/CSS code for implementation
- + \ No newline at end of file diff --git a/docs/docs/pubguide/design/index.html b/docs/docs/pubguide/design/index.html index 18a91e1cb1..2d8f446036 100644 --- a/docs/docs/pubguide/design/index.html +++ b/docs/docs/pubguide/design/index.html @@ -5,14 +5,14 @@ Design guidelines | EEA Design System - +
- + \ No newline at end of file diff --git a/docs/docs/pubguide/writing/index.html b/docs/docs/pubguide/writing/index.html index 54cdb596fb..5cb569ec49 100644 --- a/docs/docs/pubguide/writing/index.html +++ b/docs/docs/pubguide/writing/index.html @@ -5,13 +5,13 @@ Writing guidelines | EEA Design System - +
- + \ No newline at end of file diff --git a/docs/docs/webcontent/intro/index.html b/docs/docs/webcontent/intro/index.html index 51e196278e..5a5a9bed98 100644 --- a/docs/docs/webcontent/intro/index.html +++ b/docs/docs/webcontent/intro/index.html @@ -5,13 +5,13 @@ Guidelines | EEA Design System - +
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Accordion/index.html b/docs/docs/webdev/Components/Accordion/index.html index 098e3d2837..253bdb834e 100644 --- a/docs/docs/webdev/Components/Accordion/index.html +++ b/docs/docs/webdev/Components/Accordion/index.html @@ -5,13 +5,13 @@ Accordion | EEA Design System - +

Accordion

The accordion component is used to generate vertically stacked content in a page. It is intended to save vertical space by hiding content, reducing scrolling.

Accordions contain labels with the relevant information. Users can click on the accordion to read additional information. For this reason, accordion labels (collapsed state) should be as descriptive and concise as possible.

Do's

  • use labels that are representative of the content inside the (initially hidden) container
  • order logically (such as 1st quarter, 2nd quarter, 3rd quarter, 4th quarter)
  • make sure this component is required in order to shorten the page

Don'ts

  • don't use unless users will benefit from hidden information
  • don't use actionable items (i.e. forms, accordions, buttons, CTAs, etc.) or pictures in the content container as they will have decreased visibility
  • don't hide important information that should be present at all times
  • don't use long labels, ideally keep it to one line, maximum 2

When to use

  • when you need to present multiple sections of content in a simple way on one page, without overwhelming the user (especially applicable to mobile)
  • when it’s not critical for every user to read every section of content, adding value
  • when you can make extensive and complex content easier to digest through descriptive labels

When not to use

  • don't use when pages are short (reading time: under 3 minutes)
  • don't use when information would be better structured horizontally (does not need comparison between sections) - use tabs instead
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Breadcrumb/index.html b/docs/docs/webdev/Components/Breadcrumb/index.html index e28e26b5aa..35b6582dcc 100644 --- a/docs/docs/webdev/Components/Breadcrumb/index.html +++ b/docs/docs/webdev/Components/Breadcrumb/index.html @@ -5,13 +5,13 @@ Breadcrumb | EEA Design System - +

Breadcrumb

The Breadcrumb informs the users on their current location relative to the homepage of the website and allows them to navigate to higher levels. It is a series links except the last item in the group, which is the current page.

Do's

  • the first element of the breadcrumb must always be labelled "Home" and must link to the homepage of the actual site where the current user page is located

Don'ts

  • use long labels which creates visual clutter
  • breadcrumb links cannot exceed 220px in length else they will be truncated

When to use

  • if your website's navigational structure is a tree of more than 2 levels

When not to use

  • if your website's navigational structure has less than 3 levels of depth
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Buttons/index.html b/docs/docs/webdev/Components/Buttons/index.html index 7c54a346af..6ee4346257 100644 --- a/docs/docs/webdev/Components/Buttons/index.html +++ b/docs/docs/webdev/Components/Buttons/index.html @@ -5,13 +5,13 @@ Buttons | EEA Design System - +

Buttons

Buttons trigger an action in a web page. There are 4 variants of the button component with different levels of importance and usages.

Primary Button

Use for basic and successful actions. They direct the user’s attention to the primary action the application is suggesting that the user take.

Do's

  • make sure the button‘s microcopy represents the action such as “Submit“ or “Register“
  • use an icon only when it is necessary
  • use to perform a new action, task, move to next step

Don'ts

  • don't assign an action that should be assigned for a CTA (Call To Action) or other variations of buttons
  • don't use an icon when it is not relevant or necessary to the action

When not to use

  • don't use for navigation
  • don't use for downloads
  • don't use when the primary action is negative - use secondary button
  • don't use when the action can't be undone, such as delete

Secondary Button

Use for medium-emphasis actions. They contain actions that are important but aren’t the primary action. They are used to indicate a secondary action that compliments a primary action or to reduce visual noise when there are many actions of equal importance on the page.

Do's

  • ensure the button performs an action, such as "Cancel", "Delete," "Remove" or "Replace" as the secondary action next to the primary button
  • use an icon only when it is necessary

Don'ts

  • don't use for primary positive actions – such as Submit, Send, Accept, Apply or navigation
  • don't use on its own
  • don't use for navigation
  • don't use an icon when it is not relevant or necessary to the action

Inverted Button

When to use

  • use inverted and inverted-green only on white or light color background
  • use inverted-dark only on dark background

Use for low-emphasis actions or for buttons that could have a long length text. It can be grouped with other buttons or placed independently.

When to use

  • use with low emphasis in a button group
  • use on pages/cards when the main focus should be the content and not the button
  • when there is a single action intended

When not to use

  • do not use for navigation purpose
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Callout/index.html b/docs/docs/webdev/Components/Callout/index.html index 7198fa67fc..f6ef41fd6a 100644 --- a/docs/docs/webdev/Components/Callout/index.html +++ b/docs/docs/webdev/Components/Callout/index.html @@ -5,13 +5,13 @@ Callout | EEA Design System - +

Callout

The callout component is used to capture users' attention of an excerpt, testimonial, or a quote cited from the article or other sources. The design style makes the quoted section more distinguishable than the rest of the content in the web page.

Do's

  • always name the source of the quoted content
  • limit the quote to no longer than 80 characters
  • use the image variant to add a portrait of the quoted person

Don'ts

  • do not apply more than two callout components on the webpage
  • for the image variant, do not use a photoshopped composition of images

When to use

  • quoting something important

When not to use

  • to emphasize text style
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Cards/index.html b/docs/docs/webdev/Components/Cards/index.html index 4d43a946e8..95e3285f3e 100644 --- a/docs/docs/webdev/Components/Cards/index.html +++ b/docs/docs/webdev/Components/Cards/index.html @@ -5,14 +5,14 @@ Card | EEA Design System - +

Card

Cards component is used as an entry point to more detailed information. The component can include various sets of elements to serve users' specific needs.

Do's

  • use cards to emphasize on contents
  • only display the most relevant information on each card illustration: card with a thumbnail, title, description
  • keep the amount of links on the cards as low as possible

Don'ts

  • overuse cards
  • limit the amount of cards to small groups of items
  • limit to 3-4 cards within a row
  • display too many links on a cards, the main and ideally only action on card should remain to navigate to the content it represent

When to use

  • browsing for information (as opposed to searching)

  • grouping heterogeneous types of content

  • allowing users to scan through content in small portions

    • to display structured content
    • to make information discoverable
  • the user goals that the card-based web design best responds to:

    • scrolling through
    • scanning through
    • browsing through

When not to use

  • searching for information (as opposed to browsing)
  • on small screen display avoid using too many cards as they force users to scroll down and rely on their short-term memory. This creates a cognitive overload, a negative user experience
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Comment/index.html b/docs/docs/webdev/Components/Comment/index.html index 4422a86c70..0f5b098a2f 100644 --- a/docs/docs/webdev/Components/Comment/index.html +++ b/docs/docs/webdev/Components/Comment/index.html @@ -5,13 +5,13 @@ Comment | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Confirm/index.html b/docs/docs/webdev/Components/Confirm/index.html index 9175a712dc..9f51e670ad 100644 --- a/docs/docs/webdev/Components/Confirm/index.html +++ b/docs/docs/webdev/Components/Confirm/index.html @@ -5,13 +5,13 @@ Confirm | EEA Design System - +

Confirm

A confirmation dialog asks users whether they are sure that they want to proceed with an action.

Do’s

  • use a confirmation dialog before actions that cannot be undone
  • be specific and inform users about the consequence of their actions.

Don’ts

  • do not use confirmation dialogs for routine actions
  • avoid giving confirmation dialogs a default Yes answer
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Content/index.html b/docs/docs/webdev/Components/Content/index.html index d54f540074..77ac6f9489 100644 --- a/docs/docs/webdev/Components/Content/index.html +++ b/docs/docs/webdev/Components/Content/index.html @@ -5,7 +5,7 @@ Content | EEA Design System - + @@ -18,7 +18,7 @@ Don’t indent paragraphs, use whitespace before. While most longform print design uses indented lines to distinguish paragraphs, it’s more conventional on the web to use unindented paragraphs separated by whitespace. Use at least 1em of whitespace between paragraphs. To properly separate paragraphs from one another, use the equivalent of one blank line of whitespace between them. Using more than 1.5em disturbs the flow of the text, and using less than 0.5em doesn’t provide enough separation. Headings should be closer to the text they introduce than the text that preceeds them. It’s important that headings are more visually connected to the text for which they’re the heading than the text of the previous section to reduce ambiguity and cognitive dissonance. Use at least 1.5 times the amount of whitespace above the heading as below it.

- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Divider/index.html b/docs/docs/webdev/Components/Divider/index.html index 11c903d56e..ce7112fe04 100644 --- a/docs/docs/webdev/Components/Divider/index.html +++ b/docs/docs/webdev/Components/Divider/index.html @@ -5,13 +5,13 @@ Divider | EEA Design System - +

Divider

Dividers are used throughout all types of design to establish content hierarchy and separate themes. Deceptively simple, they are one of the main contributors to our visual style.

Kinds of Visual Dividers

Talking about dividers, we can analyze them in two aspects: their appearance and their functions. Starting with the visual part, there are 4 basic and broadly used methods of dividing content in our user interfaces:

  • Lines

  • Color contrast

  • Negative space

  • Images

Lines have belonged to the top methods of separating the pieces of content since time immemorial, both in print production and in digital interfaces. They are recognized easily in this role, so users won’t need to think twice.

Don’ts

Too many lines can overload the screen with visual noise and create unnecessary visual tension. Use lines only if the content cannot be effectively divided in another way.

When to use

  • when whitespace is not enough of a separator

  • in lists, separate items to show they are individual and unrelated items when each item is long and otherwise difficult to scan

  • in layouts, when background color changes (e.g. from Gray 100 to White)

When not to use

  • for surrounding an item, use a border instead

  • for grouping content, use a card or table

Color Contrast is another effective type of visual divider. Contrast is one of the key factors influencing scannability and visual hierarchy of the page or screen. With all that, color contrast can effective separate different option, items, or interactive zones, that means work as a visual divider.

Negative space (aka white space) means empty space on the screen around and often inside the elements. Yet, empty does not mean passive or wasted: as well as any other element of the screen, it works supporting a positive user experience. Negative space is one of the most popular kinds of visual dividers, especially in interfaces built on the idea of minimalism and simplicity. Negative space turns into an effective and elegant visual divider that also let the interface to breathe and avoid clutter.

Images of all kinds present one more effective visual divider. In this role, they are especially popular in the interfaces with lots of text content pages. Photos, illustrations, 3D graphics, as well as animated images, help to balance the text content, increase scannability and readability levels, effectively divide the visual blocks, as well as add fun and emotional appeal.

- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Forms/Checkbox/index.html b/docs/docs/webdev/Components/Forms/Checkbox/index.html index e23d689089..0114cb1e4f 100644 --- a/docs/docs/webdev/Components/Forms/Checkbox/index.html +++ b/docs/docs/webdev/Components/Forms/Checkbox/index.html @@ -5,13 +5,13 @@ Checkbox | EEA Design System - +

Checkbox

The checkbox is a form input for users to choose one or more options from the list of selections.

Dos

  • always make sure each checkbox has a short, distinct and indicative checkbox label
  • use checkbox labels as click targets (clicking the label will select that option)
  • arrange them vertically, in a single column layout
  • group related fields
  • order logically
  • indicate whether the input group is optional or mandatory
  • make use of helper text if there are further directions or hints the users may need in completing their goal
  • write specific and clear error messages, so users understand how to properly address and recover from the error

Don'ts

  • don't add them without grouping first, in a logical order
  • don't restrict the number of checkboxes that can be ticked at any time
  • don't nest elements under the checkbox - keep all the options on the same level

When to use

  • use in any situation where the input information is known to the organisation
  • when users need to select options or toggle settings
  • in forms with multiple non-exclusive options
  • in search filters
  • to turn a setting option on or off

When not to use

  • do not use it when you have mutually exclusive items
  • do not use it if the checkbox selection will perform an action
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Forms/Dropdown/index.html b/docs/docs/webdev/Components/Forms/Dropdown/index.html index ec794a7e9f..e93f4fde83 100644 --- a/docs/docs/webdev/Components/Forms/Dropdown/index.html +++ b/docs/docs/webdev/Components/Forms/Dropdown/index.html @@ -5,13 +5,13 @@ Dropdown | EEA Design System - +

Dropdown

Default single select

The select component, is a widget which displays a list of selectable items from which the user can select one values.

Do's

  • write short, distinct and indicative headings for the items listed inside the dropdown
  • use dropdown select menu labels as click targets (clicking the label will trigger the action)
  • indicate whether the input is optional
  • make use of helper text if there are further directions or hints the users may need in completing their goal (example: you must be a current resident of this country)
  • write specific and clear error message texts, so users understand how to address the error

Don'ts

  • don't use as navigation
  • don't use it for multi-select

When to use

  • when there are more than 5 options to select from

When not to use

  • when you want users to read all options
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Forms/Radio/index.html b/docs/docs/webdev/Components/Forms/Radio/index.html index 88ee4e7fe9..36e7a6dcea 100644 --- a/docs/docs/webdev/Components/Forms/Radio/index.html +++ b/docs/docs/webdev/Components/Forms/Radio/index.html @@ -5,13 +5,13 @@ Radio | EEA Design System - +

Radio

Radio buttons provides a selection with two or more options. Only one option can be selected.

Do's

  • use labels as click targets (clicking the label will select that option)
  • group related fields
  • order logically (e.g. ages 18-25, ages 25-35, ages, 35-50, over 65)
  • indicate whether the input group is optional - if it's mandatory, have a neutral option (e.g. other, n/a) selected by default
  • make use of helper text if there are further directions or hints the users may need in completing their goal
  • write specific and clear error messages, so users understand how to address the error

Don'ts

  • don't add them without grouping first
  • don't nest elements under radio buttons - keep all the options on the same level

When to use

  • when you have under 10 items
  • when users need to select options or toggle settings, for example
  • in forms with multiple non-exclusive options (e.g. search filters)
  • only one selection can be made

When not to use

  • avoid when more than one option can be selected - use checkboxes instead
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Forms/TextArea/index.html b/docs/docs/webdev/Components/Forms/TextArea/index.html index 54bb1e8539..6b7a1f6dca 100644 --- a/docs/docs/webdev/Components/Forms/TextArea/index.html +++ b/docs/docs/webdev/Components/Forms/TextArea/index.html @@ -5,13 +5,13 @@ Text Area | EEA Design System - +

Text Area

A text area is an input field allowing users to enter multiple lines of text. Use in any situation where the user needs to input a large, or unknown, amount of data.

Do's

  • allow copy/paste for ease of use
  • match the text field to the expected size of the input - make it wide enough for the user to see their entire entry
  • write specific and clear error message texts, so users understand how to address the error

Don'ts

  • don't use placeholder text in the text field - this may not be read by screen reading software, leading to accessibility issues
  • don't have a mandatory minimum input of characters
  • don't restrict the use of uncommon or special characters
  • don't disable copy and paste functions
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Forms/TextInput/index.html b/docs/docs/webdev/Components/Forms/TextInput/index.html index 1435d2d6f6..049a39f066 100644 --- a/docs/docs/webdev/Components/Forms/TextInput/index.html +++ b/docs/docs/webdev/Components/Forms/TextInput/index.html @@ -5,13 +5,13 @@ Text Input | EEA Design System - +

Text Input

A text field is an input that can be used on a form, sign-in or any place where data is requested from the user.

Do's

  • minimise the number of input fields - only ask for necessary information
  • arrange them vertically for better layout and readability
  • group related fields together
  • order input fields logically, matching real-world task succession and interactions
  • always label each text area with a short, descriptive title, placed above the text area
  • indicate whether the input field is optional or mandatory
  • make use of helper text if there are further directions or hints the users may need in completing their goal (example: Must be at least 6 characters and contain a number and a special character)
  • allow copy/paste for ease of use
  • if a character counter is necessary, place it below the text area
  • match the text field area to the expected size of the input - make it wide enough for the user to see their entire entry
  • write specific and descriptive error message for easy comprehension

Don'ts

  • don't use placeholder text in the text area - this may not be read by screen reading software, leading to accessibility issues
  • don't have a mandatory minimum input of characters
  • don't restrict the use of uncommon or special characters
  • don't disable copyand paste functions

When to use

  • use in any situation where the user needs to input limited amount of data (name, email address, age, etc)

When not to use

  • do not use where the user needs to input a large, or unknown amount of data
  • do not use when the user must respond with specific options which are known to the organisation
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Headings/index.html b/docs/docs/webdev/Components/Headings/index.html index c59ba123a2..af37b5f627 100644 --- a/docs/docs/webdev/Components/Headings/index.html +++ b/docs/docs/webdev/Components/Headings/index.html @@ -5,13 +5,13 @@ Headings | EEA Design System - +

Headings

Effective headings are recognizable immediately, and help readers understand the flow of content on the page.

How to Use

  • employ visual contrast to make headings stand out. Headings need to appear separate from the rest of the content on the page
  • size matters: Headings should be big
  • use headings as titles. If we’re labeling a section of a website, the heading serves as the title for the section
  • be concise. Keep headings short. In some cases, it’s even okay to drop articles like “the” and “a,” as they can be assumed
  • not all headings should be bold
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Image/index.html b/docs/docs/webdev/Components/Image/index.html index 3951e020c2..4dd0c056dc 100644 --- a/docs/docs/webdev/Components/Image/index.html +++ b/docs/docs/webdev/Components/Image/index.html @@ -5,13 +5,13 @@ Image | EEA Design System - +

Image

Images must have natural snapshots that show unique situations.

Do’s

  • use stylistic tools such as light, perspective, color, focus and composition to tell stories that are authentic and believable.
  • the content of the photographs should be positive, optimistic, natural, realistic, warm, and welcoming. Framing should be playful and feel spontaneous
  • use image copyrights to be respectful of the author’s ownership rights

Don’ts

  • do not use images that are too dark or do not have enough contrast
  • do not use overlaying gradients
  • images that are too static or that appear too symmetrical should not be used
  • do not use images that are over exposed or over saturated
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Inpage-Navigation/index.html b/docs/docs/webdev/Components/Inpage-Navigation/index.html index 5203b10906..48087a2a7f 100644 --- a/docs/docs/webdev/Components/Inpage-Navigation/index.html +++ b/docs/docs/webdev/Components/Inpage-Navigation/index.html @@ -5,13 +5,13 @@ Inpage Navigation | EEA Design System - +

Inpage Navigation

A Back to Top button, which is a shortcut that allows users to quickly navigate to the top of the page.

When users get at the bottom of a really long page, they often will need to get back to the top to:

  • see the navigation menu and choose a new destination
  • access filtering and sorting features
  • enter or edit a query in the search box

When the page is really long (for example, because of infinite scrolling), it becomes too tedious to scroll back up through screens and screens of content. Hence the role of the Back to Top button.

Do's

  • use a 'Back to Top button' for pages that are longer than 4 screens. For relatively short page lengths, 'Back to Top links' are overkill
  • place a persistent 'Back to Top button' in the lower right side of the page. This is where people expect to see it. This position is out of the way, but noticeable. When the button is placed in a different place on the screen, it is often ignored
  • label the button 'Back to Top'. This phrase is most descriptive. An icon only (.e.g., an arrow pointing up) can be ambiguous and, depending on the graphical realization, may not convey the right meaning
  • keep the button small so it doesn’t cover important page elements. But, if you are on a touch screen, make it big enough so people can tap it
  • make the button stand out visually on the page rather than blend in. When Back to Top blends too much with the background content, users are less likely to notice and use it
  • consider delaying the appearance of a 'Back to Top' option until after users scroll a few pages and indicate that they want to scroll up (e.g., move the scroll bar up, flick up on the page). Thus, the button appears only when it is most likely needed, without covering up important parts of the screen the rest of the time
  • make the button stationary. Once it appears, don’t allow it to move. Moving elements cause major distractions, since the eye is automatically attracted to any movement on the screen
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Item/index.html b/docs/docs/webdev/Components/Item/index.html index f0fc89df54..b566b4efda 100644 --- a/docs/docs/webdev/Components/Item/index.html +++ b/docs/docs/webdev/Components/Item/index.html @@ -5,13 +5,13 @@ Item | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Labeled-icons/index.html b/docs/docs/webdev/Components/Labeled-icons/index.html index 705ae61491..2eaf37298a 100644 --- a/docs/docs/webdev/Components/Labeled-icons/index.html +++ b/docs/docs/webdev/Components/Labeled-icons/index.html @@ -5,13 +5,13 @@ Labeled icons | EEA Design System - +

Labeled icons

The labeled icons are used as a visual represenation of every available action below data products.

Do's

  • keep the labels as short as possible
  • always choose icons that the users can easily identify

Don'ts

  • don't use more than 5-6 labeled icons at once
  • dont use less than two in one row
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Labels/index.html b/docs/docs/webdev/Components/Labels/index.html index 6d465fb46b..165bbf28a2 100644 --- a/docs/docs/webdev/Components/Labels/index.html +++ b/docs/docs/webdev/Components/Labels/index.html @@ -5,13 +5,13 @@ Label | EEA Design System - +

Label

Labels are used to indicate the different states for items in a list. They bring supplementary meaning by adding an indicative state (label) that is visually distinct (background colour) from other elements.

Do's

  • keep the message consistent on a single list of items and express meaning based on the content in which it is being used (e.g. "canceled" for events)
  • keep the label succinct (1-2 words)

Don'ts

  • don't use 2 labels at the same time (in one list)

When to use

  • when you have items in a list with multiple states (e.g. featured item & generic list item; canceled, rescheduled & upcoming event)

When not to use

  • when all items in a list have the same state (e.g. search list items)
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Lists/index.html b/docs/docs/webdev/Components/Lists/index.html index cdb878e6b2..baa4191920 100644 --- a/docs/docs/webdev/Components/Lists/index.html +++ b/docs/docs/webdev/Components/Lists/index.html @@ -5,13 +5,13 @@ List | EEA Design System - +

List

Used to present chunks of information in a concise and scannable way, lists help to organise content related to a single topic, grouping together a set of items or text options.

Ordered lists

Ordered lists display a set of items in a sequential and logical order, indicated by a number in front of the label. Common use cases include counting, ranking or sequencing, but can be used in everything that has a hierarchy. Different list styles can be applied to list items, like numbers, roman numerals or letters, which can be used interchangeably when nesting (e.g. nested item 1 & 2 under item 3).

Do's

  • make sure the items are placed in hierarchical order so that the relation, rank or order is obvious to the user
  • indicate the external links, if linking to any pages external to the EEA
  • for easy to read purpose, try to use labels that are relatively consistent in characters & width

Don'ts

  • do not nest lists deeper than 3 levels

When to use

  • use ordered lists when you need to display items in a specific order or to indicate hierarchy

When not to use

  • do not use it for navigation purpose
  • do not use it when all items have equal value or importance
  • do not use when you have one or more overarching categories that require descriptions

Unordered list

Unordered lists are used to group related content without any particular order, with bullet points placed in front of the labels. Common use cases are much broader than ordered lists. They are used for a set of items that can be arranged in any specific order. Different bullet list styles are available to unordered list items, such as disc, circle, square or hyphen when nesting (eg. 2 sub-points under point 2).

Do's

  • indicate the external links, if linking to any pages external to the EEA
  • for easy to read purpose, try to use labels that are relatively consistent in characters & width

Don'ts

  • do not nest lists deeper than 3 levels in order to avoid clutters

When to use

  • use it when you need to display items that do not have a specific order or hierarchy

When not to use

  • do not use it for navigation purpose
  • do not use it when items can be ranked, counted or sequenced
  • do not use when you have one or more overarching categories or terms require descriptions

Description lists

Description lists are used to display and organise content with a descriptions. Common use cases include glossary, or a list of speakers with their biographies.

Do's

  • keep label short and meaningful
  • order logically according to their hierarchy, significance and degree of relatedness
  • avoid using long sentences
  • try to use labels that are relatively consistent in characters & width
  • add a meaningful description or explanation of each term

Don'ts

  • do not use an active voice
  • do not nest description lists

When to use

  • use a description list when the terms in the list require a specific description or explanation
  • on content pages to add additional information(such as latest update on the content of a page) or link to pages of interest

When not to use

  • do not use it for navigation purpose
  • do not use it when items can be ranked, counted or sequenced
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Loader/index.html b/docs/docs/webdev/Components/Loader/index.html index a9aa9f8a2e..c19b9cac42 100644 --- a/docs/docs/webdev/Components/Loader/index.html +++ b/docs/docs/webdev/Components/Loader/index.html @@ -5,13 +5,13 @@ Loader | EEA Design System - +

Loader

Loaders can be used to indicate progress on long actions/waits which meet some or preferably all of these characteristics:

  • the action/wait is blocking user flow. That is, it's difficult or impossible for the user to proceed with the flow she is on without waiting.

    • e.g. The user asked a question and the answer is being retrieved from a server

    • e.g. The user scrolled to the bottom of page feed and new content is being loaded

  • the action is long enough that a user may feel anxious if there is no indication of progress. For short actions or waits having a short-lived throbber is not a great idea because it can confuse users

  • it's difficult or impossible to indicate exact progress. If it's possible to indicate progress (eg percentage complete) then progress bars or widgets are more appropriately communicative and less likely to frustrate users

Dont ‘s

Do not use it for actions that take less than 1 sec.

- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Logo/index.html b/docs/docs/webdev/Components/Logo/index.html index 91b85bacbf..9eb945b988 100644 --- a/docs/docs/webdev/Components/Logo/index.html +++ b/docs/docs/webdev/Components/Logo/index.html @@ -5,13 +5,13 @@ Logo | EEA Design System - +

Logo

To ensure consistency, it is important that the EEA logo appears only in the colours specified in these guidelines.

When applying the logo to images ensure that it is against a light, uncluttered background.

To ensure logo's integrity and visibility, it must always be kept clear of competing text, images or graphic elements. It must be surrounded by a minimum clear space οf 16px as indicated below.

EEA LOGO - Dark version

The only time the white version of the EEA logo appears on is against the dark background of the footer.

- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Messages/index.html b/docs/docs/webdev/Components/Messages/index.html index 3a819518a8..c716299ffc 100644 --- a/docs/docs/webdev/Components/Messages/index.html +++ b/docs/docs/webdev/Components/Messages/index.html @@ -5,13 +5,13 @@ Messages | EEA Design System - +

Messages

Messages component contains important information to alert users to take a certain actions.

Do's

  • keep the message brief and clear
  • use consistent messages for the same information/success/warning/error throughout your site

Don'ts

  • overuse messages - users may ignore them and they can get in the way of a user completing their task
  • write messages that are neutral. For example, instead of The postal code you entered is invalid, the message should say Please enter a valid postal code

When to use

  • when the information is essential to convey to the users in order to go to the next step
  • success message: the user has performed an action which was successfully completed
  • warning message: the user needs to know about the potential dangers of completing their task (for example: "you are about replace/erase your data")
  • error message: the user tried to perform an action that failed because of a problem (for example: a file could not be uploaded because it wasn't the correct type of file)

When not to use

  • don't use to show non critical information
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Modal/index.html b/docs/docs/webdev/Components/Modal/index.html index 0c9d1cf3dc..3f405b8023 100644 --- a/docs/docs/webdev/Components/Modal/index.html +++ b/docs/docs/webdev/Components/Modal/index.html @@ -5,13 +5,13 @@ Modal | EEA Design System - +

Modal

Modals appear on top of the main content and require user interaction. This dialog disables the main content until the user explicitly interacts with the modal dialog.

Do’s

  • use modal dialogs for important warnings, to prevent or correct critical errors
  • use modal dialogs to request the user to enter information critical to continuing the current process
  • modal dialogs can be used to fragment a complex workflow into simpler steps

Don’ts

  • do not use modal dialogs for nonessential information that is not related to the current user flow
  • avoid modal dialogs that interrupt high-stake processes
  • avoid modal dialogues for complex decision making that require additional sources of information unavailable in the modal
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Pagination/index.html b/docs/docs/webdev/Components/Pagination/index.html index b3a7ec4648..12ba9f06eb 100644 --- a/docs/docs/webdev/Components/Pagination/index.html +++ b/docs/docs/webdev/Components/Pagination/index.html @@ -5,13 +5,13 @@ Pagination | EEA Design System - +

Pagination

Pagination component is the control to navigate through multiple pages.

Do's

  • place the pagination below the list of items

Don'ts

  • don't replace this component with an "infinite scrolling" feature

When to use

  • to show long lists otherwise redundant scrolling in one page

When not to use

  • don't use to break unrelated content on different pages
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Popup/index.html b/docs/docs/webdev/Components/Popup/index.html index 78eae04b13..331bbf2509 100644 --- a/docs/docs/webdev/Components/Popup/index.html +++ b/docs/docs/webdev/Components/Popup/index.html @@ -5,14 +5,14 @@ Popup | EEA Design System - +

Popup

A popup (also known as an overlay) is a window or dialog that appears on top of the page content. A popup can be classified according to two dimensions:

  • whether the user can interact with the rest of the page, and it is called 'Modal' when the content on the page is disabled until the user explicitly interacts with the overlay or 'Nonmodal' when users can still interact with the background content (for example, by selecting links or tapping buttons) while the overlay remains visible
  • whether the background is dimmed the popup is called a 'Lightbox'

Do’s

  • present the content in the popup when it’s contextually relevant to the user
  • if you must present critical information (e.g., important warnings to prevent or correct errors) in a popup, be sure to show only one at a time

Don’ts

  • do not show a popup before the main page content loads
  • do not display a popup right after the user logs in
  • you should not ask for feedback before people have done anything meaningful
  • do not show multiple popups one after another
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Progress/index.html b/docs/docs/webdev/Components/Progress/index.html index feb40da39b..32e498e5a7 100644 --- a/docs/docs/webdev/Components/Progress/index.html +++ b/docs/docs/webdev/Components/Progress/index.html @@ -5,13 +5,13 @@ Progress | EEA Design System - +

Progress

Progress indicators tell users that more time is needed to process the last user action (for instance, to load a file, or to install a new update), and how much time remains.

Do’s

  • use a progress indicator for any action that takes longer than about 1.0 second
  • use Looped animation only for fast actions. The animated-spinner icon is an example of this common progress indicator. This indicator should be used for actions that take between 2-10 seconds
  • percent-done animation: Use for actions that take 10 seconds or more.

Don’ts

  • do not use static progress indicators
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Quote/Quote/index.html b/docs/docs/webdev/Components/Quote/Quote/index.html index adeb3e3894..30d58c2261 100644 --- a/docs/docs/webdev/Components/Quote/Quote/index.html +++ b/docs/docs/webdev/Components/Quote/Quote/index.html @@ -5,13 +5,13 @@ Quote | EEA Design System - +

Quote

Quote is a key phrase, quotation, or excerpt that has been pulled from an article and used as a page layout graphic element, serving to entice readers into the article or to highlight a key topic.

Dont's

  • Do not use more than one quote per page
  • Do not use long text or job title
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Quote/Testimonial/index.html b/docs/docs/webdev/Components/Quote/Testimonial/index.html index c7d64cc36a..7b6df3a004 100644 --- a/docs/docs/webdev/Components/Quote/Testimonial/index.html +++ b/docs/docs/webdev/Components/Quote/Testimonial/index.html @@ -5,13 +5,13 @@ Testimonial | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Search/Filters/index.html b/docs/docs/webdev/Components/Search/Filters/index.html index ee6eb47f78..1b50fbf82f 100644 --- a/docs/docs/webdev/Components/Search/Filters/index.html +++ b/docs/docs/webdev/Components/Search/Filters/index.html @@ -5,13 +5,13 @@ Filters | EEA Design System - +

Filters

The filter options must cover the most important aspects of whatever users will be filtering, based on relevance to users’ needs.

To design a filter that serves our users, we need to answer the following questions:

  • which characteristics are most influential to users in making their choice?

  • what words do users use to describe these characteristics?

  • do users understand our labels, or do they look like jargon to them?

  • which filter values are the most popular or most used?

    How to use Search filters

  • make sure users can find the search filters:

    • on desktop, users tend to find and use them easily when they are placed to the top and top left area of the page
    • on mobile where usually they are behind a button or drawer Keep them at the top and don’t rely on just an icon. Remove any ambiguity by adding a label to the icon or removing the icon altogether and just have text
  • ensure the options are relevant to users. When it comes to filters, matching the user’s mental model of how they would choose something in the physical world, is important in helping them choose something on a website

  • clearly display the selections to users. Feedback is an important heuristic for the usability of a website. So, once users have found the filters, understood the options they have, and made their selections – it’s important to let them know their choices have been applied to the list of products

  • allow a combination of filters. A big part of filters’ effectiveness will come down to using a number of them at the same time, letting the filters interact to produce the best results

  • live filtering updates. Live update for filtering UIs is great because the user gets to immediately see the changed results they are getting

  • include a ‘Clear all’ interaction. Let the users clear all applied filters with one click to action

  • show the number of results. Another key element in communicating feedback is to display the number of results. This provides users with feedback as to how effective their input was to reduce the result list and save time

  • make Important filters easily found. Users often do not reach useful filters because they are hidden at the bottom of a long menu. Filters at the top of the menu are the most used ones

Don’ts

Do not use live filtering updates

  • on mobile devices. Their screens are simply too small to pack the results, filters, and the live update feedback, without a visual overload

  • when handling a lot of data. For users doing a lot of research, having to wait for the results to update after each individual filter would be simply unbearable

In this case let the user batch their filters and click on an apply button before any actual updating takes place.

- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Search/Searchbox/index.html b/docs/docs/webdev/Components/Search/Searchbox/index.html index 7e3cb0351a..1691c20dfd 100644 --- a/docs/docs/webdev/Components/Search/Searchbox/index.html +++ b/docs/docs/webdev/Components/Search/Searchbox/index.html @@ -5,13 +5,13 @@ Searchbox | EEA Design System - +

Searchbox

Search lets users assert independence from websites' attempt to direct how they use it. Therefore, many users go straight to the homepage search function.

Search is also users' escape hatch when they are stuck in navigation. When they cannot find a reasonable place to go next, they often turn to the site's search function. This is why you should make search available from every page on the site; you cannot predict where users will be when they decide they are lost.

Do's

  • use placeholder text. Placeholder text provides context as to what can be searched and describes the action of the input

  • use a magnifying glass icon. The magnifying glass is universally recognized as a symbol for search and one which users can easily identify

  • provide a button to submit search queries. Inputs should be accessible. Ensure users can return results using their keyboard as well as clicking a button or the magnifying glass icon

  • consider the search icon position. In most cases, it is beneficial to place the Icon to the right of placeholder text. This allows the Icon to act as the submit button and makes more sense hierarchically as queries are entered first, and results returned after

  • use input widths which are appropriate for the typical query length. The width of the Input field should be wide enough to contain the typical search query. If an Input field is too narrow, it results in scrolling and decreases usability. It is recommended to use a minimum width of 27 characters

- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Search/Suggestions/index.html b/docs/docs/webdev/Components/Search/Suggestions/index.html index 67f0c638dd..6c2abefbd2 100644 --- a/docs/docs/webdev/Components/Search/Suggestions/index.html +++ b/docs/docs/webdev/Components/Search/Suggestions/index.html @@ -5,13 +5,13 @@ Suggestions | EEA Design System - +

Suggestions

Auto-suggestion is a powerful tool that reduces data input. Typical users are very poor at query formulation: if they don’t get good results on the first try, later search attempts rarely succeed. When autocomplete suggestions work well, they help the user articulate better search queries.

Usage

  • ensure that auto-suggestions are useful. Poorly designed auto-suggestions can confuse and distract users. Thus, use spelling auto-corrections, recognition of root words, and predictive text in order to improve the tool

  • present less than 10 items in the list of suggestions (and without a scrollbar) so the information doesn’t become overwhelming

  • allow for keyboard navigation for the list of suggestions. Once a user scrolls down past the last item, they should return to the top of the list. The Esc key should allow users to exit the list

  • highlight differences between the inputted information and suggested information. For example, the input text might have a standard weight, while suggested terms are bolded

- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Segment/index.html b/docs/docs/webdev/Components/Segment/index.html index 0ee0ff9ed1..867a4ddadf 100644 --- a/docs/docs/webdev/Components/Segment/index.html +++ b/docs/docs/webdev/Components/Segment/index.html @@ -5,13 +5,13 @@ Segment | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Statistic/index.html b/docs/docs/webdev/Components/Statistic/index.html index 375dcdae45..f999ce841e 100644 --- a/docs/docs/webdev/Components/Statistic/index.html +++ b/docs/docs/webdev/Components/Statistic/index.html @@ -5,13 +5,13 @@ Statistic | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Tab/index.html b/docs/docs/webdev/Components/Tab/index.html index a1348d69e3..25ece6dc1b 100644 --- a/docs/docs/webdev/Components/Tab/index.html +++ b/docs/docs/webdev/Components/Tab/index.html @@ -5,14 +5,14 @@ Tab | EEA Design System - +

Tab

The tabs component lets users navigate between related sections of content, displaying one section at a time.

Do’s

Tabs can be useful for users to quickly switch between related information if:

  • your content can be usefully separated into sections
  • the first section is more relevant than the others for most users
  • users will not need to view all the sections at once

Don’ts

Tabs hide content from users and not everyone will notice them or understand how they work. Do not use tabs if your users might need to:

  • read all the content in order, for example, to understand a step-by-step process
  • compare information in different tabs

Having to memorize information and switch between tabs can be frustrating. Test your content without tabs first.

Consider if it is better to:

  • simplify and reduce the amount of content
  • split the content across multiple pages
  • keep the content on a single page, separated by headings
  • use a table of contents to let users navigate quickly to specific sections of content

Tab labels

  • use short tab labels to appear in a single row. In exceptions, they can use a second line if needed, with a tab max width of 250px. Alternatively, you can use scrollable tabs to allow room for longer titles
  • don’t truncate labels unless required, as truncated text can impede comprehension
  • tab labels should consist of 1 – 2 words: Labels on tabs should clearly describe their function or destination within 2 words at most. Constraining yourself to 1 – 2 words will also help you in thinking more about selecting the best words for your tab labels.
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Table/index.html b/docs/docs/webdev/Components/Table/index.html index f28c0dbe40..5ddb0ce9e1 100644 --- a/docs/docs/webdev/Components/Table/index.html +++ b/docs/docs/webdev/Components/Table/index.html @@ -5,13 +5,13 @@ Table | EEA Design System - +

Table

Tables are used to structure complex data in an organised way that is more user friendly and discoverable.

Do's

  • reduce the table width to fit the content
  • align content left to right within cells
  • use a dash ( - ) in null data cells
  • adjusts the styling to render a small/large table

Don'ts

  • don't spell out numbers
  • don't use colour alone to convey information

When to use

  • use when you want to show structured information, or static data
  • use when you want to help users to compare information

When not to use

  • when you don't have any relationship among content you want to present
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Tags/index.html b/docs/docs/webdev/Components/Tags/index.html index 9d833c74c3..1aeb9d08d9 100644 --- a/docs/docs/webdev/Components/Tags/index.html +++ b/docs/docs/webdev/Components/Tags/index.html @@ -5,13 +5,13 @@ Tags | EEA Design System - +

Tags

Labels, Tags, or Badges are all types of classification component that help to categorize, organize, and label elements. Tags are used to call attention to new or updated content.

Do's

  • use them to draw attention to new, important content. Tags can focus attention on important content on that might otherwise be missed
  • when needed to filter results with one or more tags
  • to indicate the number of new or unread items within a container. For example, to indicate the number of unread emails within a person’s inbox

Don'ts

  • if your tags aren’t interactive, disable hover, focus, and active styles
  • don’t mix interactive and static tags
  • don’t overdo it. If everything on a page is called out as important, nothing commands unique attention.
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Timeline/index.html b/docs/docs/webdev/Components/Timeline/index.html index 3d3ebacea5..b49bafca97 100644 --- a/docs/docs/webdev/Components/Timeline/index.html +++ b/docs/docs/webdev/Components/Timeline/index.html @@ -5,13 +5,13 @@ Timeline | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Visuals/Charts/index.html b/docs/docs/webdev/Components/Visuals/Charts/index.html index 1638870c3f..9e1083ea9e 100644 --- a/docs/docs/webdev/Components/Visuals/Charts/index.html +++ b/docs/docs/webdev/Components/Visuals/Charts/index.html @@ -5,13 +5,13 @@ Charts | EEA Design System - +

Charts

Static and Interactive

Data accuracy and integrity come first. Don’t distort or confuse the information for embellishment or partiality. Emphasize clarity and transparency. Reduce cognitive load and focus on what matters. Every action, color, and visual element should support data insights and understanding.

More information can be referenced here https://www.eea.europa.eu/data-and-maps/daviz/learn-more/chart-dos-and-donts

Use the interactive chart if:

  • you want to give the user the possibility to visually filter data

  • you want the user to gain insights before filtering large datasets

Do not use the interactive chart if:

  • you want to visualize data without using it for filtering

  • you are not using the visual filter bar

- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Visuals/Dashboard/index.html b/docs/docs/webdev/Components/Visuals/Dashboard/index.html index e10dd08caa..939a4bbc38 100644 --- a/docs/docs/webdev/Components/Visuals/Dashboard/index.html +++ b/docs/docs/webdev/Components/Visuals/Dashboard/index.html @@ -5,13 +5,13 @@ Dashboard | EEA Design System - +

Dashboard

A good dashboard design means:

  • information available at the fingertip
  • metrics are clear
  • intuitive design
  • customizable
  • summarized data

Do’s

  • reside on a single screen
  • support the aims and objectives of the intended user
  • show what the underlying data means:  This can be done through adequate labelling, logical grouping of related visualisations and the use of clear statistical and verbal descriptions
  • summarise data and provide a means to dig deeper into the data 
  • make optimal use of the available space: Double your margins

Don’ts

  • don’t hide information or rely on interactions too much
  • don’t flood the user with data
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Visuals/Maps/index.html b/docs/docs/webdev/Components/Visuals/Maps/index.html index e636888510..8840873d66 100644 --- a/docs/docs/webdev/Components/Visuals/Maps/index.html +++ b/docs/docs/webdev/Components/Visuals/Maps/index.html @@ -5,13 +5,13 @@ Maps | EEA Design System - +

Maps

Static

There are five main design principles in map design.

  • legibility
  • visual contrast
  • figure-ground organization
  • hierarchical organization, and
  • balance

Together these principles form a system for seeing and understanding the relative importance of the content in the map and on the page.

What are the qualities of a good map?

  • clear idea of what the map is trying to demonstrate
  • easy to interpret legend or key
  • good use of symbols to demonstrate a clear point
  • good sources/metadata
  • clear features not overcrowded

Styles

  • do not use underlined text! This is difficult for low-vision users to read and indicates a possible hyperlink
  • italics should be used as little as possible, for water labels and short labels only
  • bolding of fonts is a good way to call out features, but avoid it for continuous, readable text
  • although ALL CAPS labels stand out, they are harder to read and should be used sparingly

Map Objects

  • avoid overlapping points or annotations, when possible. Try to place them offset from a line
  • there should be visible whitespace between symbols; touching symbols blend together for users with low vision
  • there should be a 2x size difference in levels of information

Colors

  • use a limited color palette. Limited color palette works the best for all UIs, and map UI is not an exception. It’s much easier to create visual harmony with a limited color palette. You should use between 10 to 12 colors for a full-body color palette, depending on the complexity of your map. Choose colors for individuals with visual impairments such as color-blindness (i.e. don’t use red-green color schemes)
  • try to use the same hue for similar features. For example, features related to transportation (bus stops, railway stations, etc.) should share the same hue. The same hue will help users to decode visual elements without reading text, and this will help you to create a more cohesive UI.
  • always consider accessibility. Many people have limited color vision, so you also need to take this into account when selecting colors to ensure that you have a proper contrast ratio

Text

  • choose fonts that have a variety of styles, such as bold, extra bold, italic, bold italic light, etc to differentiate between different kinds of features on your map
  • use one version of fonts for the map body and one for the explainer text outside the map

Interactive Maps

Interactive maps are high risk, high reward. Highly interactive maps can be too difficult for new users, yet they can also allow users to learn and explore at their own pace. It is always important to test designs on multiple people with varying degrees of technical expertise to see how they interact differently with the layout. Interactive map design should reflect what the cartographer is trying to convey (beauty vs. function) and never sacrifice visual hierarchy or great styling for interactivity.

Tips for designing effective interactive maps:

  • simplify the interface
  • panels should be the minimum possible size so they don’t clutter the space
  • don’t innovate to the point where users don’t know what to do
  • use panel opacity and margins to help them blend with your basemap and look cohesive
  • leave space for the maps to be used on mobile devices. This means avoiding permanent panels

Pop-ups and markers

  • keep pop-ups concise
  • only one pop-up on the screen at a time (generally)
  • cluster markers for better readability
  • use a legend when you have multiple types of markers
  • remove unnecessary padding and margins from popups
  • use a slight shadow to “lift” pop-ups off the map
- + \ No newline at end of file diff --git a/docs/docs/webdev/Guidelines/colours/index.html b/docs/docs/webdev/Guidelines/colours/index.html index cd72ef60a3..0fb129bb5a 100644 --- a/docs/docs/webdev/Guidelines/colours/index.html +++ b/docs/docs/webdev/Guidelines/colours/index.html @@ -5,14 +5,14 @@ Colours | EEA Design System - +

Colours

Communication is key

Although we value an aesthetically pleasing use of colour, clear communication is our focus. We use colours to support the purpose of the content, communicating things like hierarchy of information, interactive states, and the difference between distinct elements.

Accessibility

Accessibility is crucial and AA colour contrast must be achieved. It is up to the designer to ensure these standards are met but please refer to the accessibility guide for support. The colour system is designed to generate themes that meet WCAG 2.1 compliant contrast ratios. This makes things easier to find, identify, and interact with. It also makes the whole experience more accessible for visitors who are colour blind or who have low vision. However, you should never convey information using colour alone.

Legend:
AA: Compatible with WCAG AA requirements
AAA: Compatible with WCAG AAA requirements
AA L: Compatible with WCAG AA requirements only for Large text (WCAG defines large text as text that is 18pt and larger, or 14pt and larger if it is bold.)

You can find more on WCAG requirements here

Brand Colours

This colour should be eye-catching but not harsh. It can be liberally applied to your layout as its main identity. A primary colour is the colour displayed most frequently across your screens and components. Brand colours are extracted from the EEA logo in order to help users to easily identify the brand.

#007B6C
EEA GREEN
#004B7F
EEA BLUE

Shades

#C8FFF8
#A0E5DC
#78CAC0
#50B0A4
#289588
#007B6C
#005248

#A0D7FF
#47B3FF
#0A99FF
#0083E0
#006BB8
#004B7F
#003052

Supplementary colours

These colours highlight or complement the primary colours. These are to be used sparingly to make the UI elements stand out. These colours can be used together together or separately.

#3D5265
AAA
#F9F9F9
AAA
ΕΕΑ main background colour is white but the secondary colours can also be used as background to compliment text elements or components.

You can use #F9F9F9 as background with #3D5265 text (10.44:1 AAA) or, you can use #3D5265 background with #F9F9F9 text (10.44:1 AAA)

Shades

#DAE8F4
#ACCAE5
#87A7C3
#6989A5
#4C677F
#3D5265
#2E3E4C

#FFFFFF
#F9F9F9
#E6E7E8
#BCBEC0
#747678
#323232
#000000

Core colours

#3D5265
Text colour
#FFFFFF
Background colour
#007B6C
Highlight
(EEA Green)
#006BB8
Default
#004B7F
Hover
#753AAD
Visited
#003052
Active

Discrete colours

#3D5265
Usually used with a small text style
#323232
Used with a background

State colours

These are the colours that communicate purpose. They help users convey messages. For example, Green has a positive connotation. We use Green to convey success, confirmation messages, etc.

#B83230
ERROR
#FF9933
WARNING
#007B6C
SUCCESS
#004B7F
INFO









Thematic Platforms

info

All thematic platforms use EEA Supplementary colours, state colours, link colours and discrete colours.


Biodiversity

Brand Colours

This colour should be eye-catching but not harsh. It can be liberally applied to your layout as its main identity. A primary colour is the colour displayed most frequently across your screens and components. Brand colours are extracted from the Biodiversity logo in order to help users to easily identify the brand.

#289588
#FAC50D

Shades

#C8FFF8
#A0E5DC
#78CAC0
#50B0A4
#289588
#007B6C
#005248

#FEF6CD
#FBEC9B
#FAD936
#FAC50D
#FDAF20
#FF9933
#C35527

Core colours

#3D5265
Text colour
#FFFFFF
Background colour
#005248
Elements
#289588
Highlight










Forest Information System

Brand Colours

This colour should be eye-catching but not harsh. It can be liberally applied to your layout as its main identity. A primary colour is the colour displayed most frequently across your screens and components. Brand colours are extracted from the Forest information system logo in order to help users to easily identify the brand.

#007B6C
#005248

Shades

#C8FFF8
#A0E5DC
#78CAC0
#50B0A4
#289588
#007B6C
#005248

Core colours

#3D5265
Text colour
#FFFFFF
Background colour
#005248
Elements
#007B6C
Highlight










Wise Freshwater

Brand Colours

This colour should be eye-catching but not harsh. It can be liberally applied to your layout as its main identity. A primary colour is the colour displayed most frequently across your screens and components. Brand colours are extracted from the Wise Freshwater logo in order to help users to easily identify the brand.

#0083E0
#004B7F

Shades

#A0D7FF
#47B3FF
#0A99FF
#0083E0
#006BB8
#004B7F
#003052

Core colours

#3D5265
Text colour
#FFFFFF
Background colour
#0083E0
Elements
#004B7F
Highlight










Wise Marine

Brand Colours

This colour should be eye-catching but not harsh. It can be liberally applied to your layout as its main identity. A primary colour is the colour displayed most frequently across your screens and components. Brand colours are extracted from the Wise Marine logo in order to help users to easily identify the brand.

#004B7F
#0083E0

Shades

#A0D7FF
#47B3FF
#0A99FF
#0083E0
#006BB8
#004B7F
#003052

Core colours

#3D5265
Text colour
#FFFFFF
Background colour
#0083E0
Elements
#004B7F
Highlight









EEA complete colour palette

Not all colours have to be used - sometimes a simple colour scheme works best. Accessible text and background colour combinations are included and marked with their accesibility level.

#FFF6EC
brown-0
#FFEDD8
brown-1
#E7BC91
brown-2
#BC8A5F
brown-3
#8B5E34
brown-4
#603808
brown-5
#3D2201
brown-6

#EFEBF2
purple-0
#DFD6E7
purple-1
#BEADCE
purple-2
#9E84B6
purple-3
#753AAD
purple-4
#5C3285
purple-5
#3C096C
purple-6
#FBEEF8
red-0
#F6DDF0
red-1
#E7B2C0
red-2
#D78890
red-3
#C65B59
red-4
#B83230
red-5
#5C1918
red-6

#FEF6CD
yellow-0
#FBEC9B
yellow-1
#FAD936
yellow-2
#FAC50D
yellow-3
#FDAF20
yellow-4
#FF9933
yellow-5
#C35527
yellow-6
#C8FFF8
green-0
#A0E5DC
green-1
#78CAC0
green-2
#50B0A4
green-3
#289588
green-4
#007B6C
green-5
#005248
green-6

#A0D7FF
blue-0
#47B3FF
blue-1
#0A99FF
blue-2
#0083E0
blue-3
#006BB8
blue-4
#004B7F
blue-5
#003052
blue-6
#DAE8F4
blue-grey-0
#ACCAE5
blue-grey-1
#87A7C3
blue-grey-2
#6989A5
blue-grey-3
#4C677F
blue-grey-4
#3D5265
blue-grey-5
#2E3E4C
blue-grey-6

#FFFFFF
grey-0
#F9F9F9
grey-1
#E6E7E8
grey-2
#BCBEC0
grey-3
#747678
grey-4
#323232
grey-5
#000000
grey-6

Tools for creating colour palettes

You can use the following tools for creating colour wheels and additional shades for every main colour at each of EEA's network sites.

https://color.adobe.com/create/color-wheel

https://coolors.co/

Colours for maps

For optional creation of additional colour shades to use in maps and charts you can use the following tools.

https://colorbrewer2.org

https://carto.com/carto-colors/

- + \ No newline at end of file diff --git a/docs/docs/webdev/Guidelines/iconography/index.html b/docs/docs/webdev/Guidelines/iconography/index.html index 1eebb043fc..b923b3a9bc 100644 --- a/docs/docs/webdev/Guidelines/iconography/index.html +++ b/docs/docs/webdev/Guidelines/iconography/index.html @@ -5,14 +5,14 @@ Iconography | EEA Design System - +

Iconography

In our websites we use the Remix icon set

Remix Icon is a set of open-source neutral-style system symbols elaborately crafted for designers and developers. All of the icons are free for both personal and commercial use. (http://remixicon.com/)

We use icons to help our users understand the core idea of the content quickly or enhance the aesthetic appeal of the interface.

Consistency is key with icons, and all your icons should be the same size when you build them. Our grid is based on 8s, you'd want to build at 16, 24, or 32.

Choose a common size to build all your icons to, and then allow your engineers to scale to other sizes that might be needed by other designers. You don't want to build the same icon over and over at a multitude of sizes.

For product icons, use 1 color. Anything more than that and your components are going to become too complex and difficult for other designers to leverage. Anything with 3 or more colors is an illustration, not an icon.

Grids

The pixel grid is the fundamental grid that uses the smallest increment: a pixel. When building icons, you always want to align objects to the pixel grid, especially straight lines. But, you can build other shapes on the pixel grid. You want to build things on the pixel grid, not just because it will render more nicely, but because it makes your life easier. Spacing things evenly is much easier when you're using a grid. It helps you stay consistent with your placement, and overall will make your icons look better.

The optical grid helps us figure out where the center of mass of the icon is, as well as how large it is perceived by the human eye. Circles and curved objects take up less visual space than squares. It is best to put your icons in a fixed size container so that they’re all identical dimensions when exported. Adding this intrinsic padding supports the optical/perceptive weighting without additional effort in dev later.

In building the optical grid, you should give padding at the edge that’s equal to your stroke weight, or possibly double if using a 1px stroke.

Strokes and fills

Making sure our icons are all styled the same way is very important. We might have use cases for applying a fill to show something is selected, for instance, but you definitely want to create a set with one style, and possibly create the other variant.

Typically, filled icons have higher recognizability. Stroked icons give us great ability to create tiny details. When choosing which style is more appropriate, you should also consider your overall brand.

If you're going to create stroked icons, strokes all need to be the same weight. The space between strokes not be thinner than your stroke weight.

Don’ts

When possible, avoid type in icons. Icons are meant to be global. If you do need type (for instance, currency symbols), draw it yourself, rather than using a typeface.

Icon set

ri-home-line

ri-home-fill

ri-home-2-line

ri-home-2-fill

ri-home-3-line

ri-home-3-fill

ri-home-4-line

ri-home-4-fill

ri-home-5-line

ri-home-5-fill

ri-home-6-line

ri-home-6-fill

ri-home-7-line

ri-home-7-fill

ri-home-8-line

ri-home-8-fill

ri-home-gear-line

ri-home-gear-fill

ri-home-wifi-line

ri-home-wifi-fill

ri-home-smile-line

ri-home-smile-fill

ri-home-smile-2-line

ri-home-smile-2-fill

ri-home-heart-line

ri-home-heart-fill

ri-building-line

ri-building-fill

ri-building-2-line

ri-building-2-fill

ri-building-3-line

ri-building-3-fill

ri-building-4-line

ri-building-4-fill

ri-hotel-line

ri-hotel-fill

ri-community-line

ri-community-fill

ri-government-line

ri-government-fill

ri-bank-line

ri-bank-fill

ri-store-line

ri-store-fill

ri-store-2-line

ri-store-2-fill

ri-store-3-line

ri-store-3-fill

ri-hospital-line

ri-hospital-fill

ri-ancient-gate-line

ri-ancient-gate-fill

ri-ancient-pavilion-line

ri-ancient-pavilion-fill

Buildings

ri-mail-line

ri-mail-fill

ri-mail-open-line

ri-mail-open-fill

ri-mail-send-line

ri-mail-send-fill

ri-mail-unread-line

ri-mail-unread-fill

ri-mail-add-line

ri-mail-add-fill

ri-mail-check-line

ri-mail-check-fill

ri-mail-close-line

ri-mail-close-fill

ri-mail-download-line

ri-mail-download-fill

ri-mail-forbid-line

ri-mail-forbid-fill

ri-mail-lock-line

ri-mail-lock-fill

ri-mail-settings-line

ri-mail-settings-fill

ri-mail-star-line

ri-mail-star-fill

ri-mail-volume-line

ri-mail-volume-fill

ri-inbox-line

ri-inbox-fill

ri-inbox-archive-line

ri-inbox-archive-fill

ri-inbox-unarchive-line

ri-inbox-unarchive-fill

ri-cloud-line

ri-cloud-fill

ri-cloud-off-line

ri-cloud-off-fill

ri-attachment-line

ri-attachment-fill

ri-profile-line

ri-profile-fill

ri-archive-line

ri-archive-fill

ri-archive-drawer-line

ri-archive-drawer-fill

ri-at-line

ri-at-fill

ri-award-line

ri-award-fill

ri-medal-line

ri-medal-fill

ri-medal-2-line

ri-medal-2-fill

ri-bar-chart-line

ri-bar-chart-fill

ri-bar-chart-horizontal-line

ri-bar-chart-horizontal-fill

ri-bar-chart-2-line

ri-bar-chart-2-fill

ri-bar-chart-box-line

ri-bar-chart-box-fill

ri-bar-chart-grouped-line

ri-bar-chart-grouped-fill

ri-bubble-chart-line

ri-bubble-chart-fill

ri-pie-chart-line

ri-pie-chart-fill

ri-pie-chart-2-line

ri-pie-chart-2-fill

ri-pie-chart-box-line

ri-pie-chart-box-fill

ri-donut-chart-line

ri-donut-chart-fill

ri-line-chart-line

ri-line-chart-fill

ri-bookmark-line

ri-bookmark-fill

ri-bookmark-2-line

ri-bookmark-2-fill

ri-bookmark-3-line

ri-bookmark-3-fill

ri-briefcase-line

ri-briefcase-fill

ri-briefcase-2-line

ri-briefcase-2-fill

ri-briefcase-3-line

ri-briefcase-3-fill

ri-briefcase-4-line

ri-briefcase-4-fill

ri-briefcase-5-line

ri-briefcase-5-fill

ri-calculator-line

ri-calculator-fill

ri-calendar-line

ri-calendar-fill

ri-calendar-2-line

ri-calendar-2-fill

ri-calendar-event-line

ri-calendar-event-fill

ri-calendar-todo-line

ri-calendar-todo-fill

ri-calendar-check-line

ri-calendar-check-fill

ri-customer-service-line

ri-customer-service-fill

ri-customer-service-2-line

ri-customer-service-2-fill

ri-flag-line

ri-flag-fill

ri-flag-2-line

ri-flag-2-fill

ri-global-line

ri-global-fill

ri-honour-line

ri-honour-fill

ri-links-line

ri-links-fill

ri-printer-line

ri-printer-fill

ri-printer-cloud-line

ri-printer-cloud-fill

ri-record-mail-line

ri-record-mail-fill

ri-reply-line

ri-reply-fill

ri-reply-all-line

ri-reply-all-fill

ri-send-plane-line

ri-send-plane-fill

ri-send-plane-2-line

ri-send-plane-2-fill

ri-projector-line

ri-projector-fill

ri-projector-2-line

ri-projector-2-fill

ri-slideshow-line

ri-slideshow-fill

ri-slideshow-2-line

ri-slideshow-2-fill

ri-slideshow-3-line

ri-slideshow-3-fill

ri-slideshow-4-line

ri-slideshow-4-fill

ri-window-line

ri-window-fill

ri-window-2-line

ri-window-2-fill

ri-stack-line

ri-stack-fill

ri-service-line

ri-service-fill

ri-registered-line

ri-registered-fill

ri-trademark-line

ri-trademark-fill

ri-advertisement-line

ri-advertisement-fill

ri-copyleft-line

ri-copyleft-fill

ri-copyright-line

ri-copyright-fill

ri-creative-commons-line

ri-creative-commons-fill

ri-creative-commons-by-line

ri-creative-commons-by-fill

ri-creative-commons-nc-line

ri-creative-commons-nc-fill

ri-creative-commons-nd-line

ri-creative-commons-nd-fill

ri-creative-commons-sa-line

ri-creative-commons-sa-fill

ri-creative-commons-zero-line

ri-creative-commons-zero-fill

Business

ri-chat-1-line

ri-chat-1-fill

ri-chat-2-line

ri-chat-2-fill

ri-chat-3-line

ri-chat-3-fill

ri-chat-4-line

ri-chat-4-fill

ri-message-line

ri-message-fill

ri-message-2-line

ri-message-2-fill

ri-message-3-line

ri-message-3-fill

ri-chat-check-line

ri-chat-check-fill

ri-chat-delete-line

ri-chat-delete-fill

ri-chat-forward-line

ri-chat-forward-fill

ri-chat-upload-line

ri-chat-upload-fill

ri-chat-download-line

ri-chat-download-fill

ri-chat-new-line

ri-chat-new-fill

ri-chat-settings-line

ri-chat-settings-fill

ri-chat-smile-line

ri-chat-smile-fill

ri-chat-smile-2-line

ri-chat-smile-2-fill

ri-chat-smile-3-line

ri-chat-smile-3-fill

ri-chat-heart-line

ri-chat-heart-fill

ri-chat-off-line

ri-chat-off-fill

ri-feedback-line

ri-feedback-fill

ri-discuss-line

ri-discuss-fill

ri-question-answer-line

ri-question-answer-fill

ri-questionnaire-line

ri-questionnaire-fill

ri-video-chat-line

ri-video-chat-fill

ri-chat-voice-line

ri-chat-voice-fill

ri-chat-quote-line

ri-chat-quote-fill

ri-chat-follow-up-line

ri-chat-follow-up-fill

ri-chat-poll-line

ri-chat-poll-fill

ri-chat-history-line

ri-chat-history-fill

ri-chat-private-line

ri-chat-private-fill

Communication

ri-pencil-line

ri-pencil-fill

ri-edit-line

ri-edit-fill

ri-edit-2-line

ri-edit-2-fill

ri-ball-pen-line

ri-ball-pen-fill

ri-quill-pen-line

ri-quill-pen-fill

ri-pen-nib-line

ri-pen-nib-fill

ri-ink-bottle-line

ri-ink-bottle-fill

ri-mark-pen-line

ri-mark-pen-fill

ri-markup-line

ri-markup-fill

ri-edit-box-line

ri-edit-box-fill

ri-edit-circle-line

ri-edit-circle-fill

ri-sip-line

ri-sip-fill

ri-brush-line

ri-brush-fill

ri-brush-2-line

ri-brush-2-fill

ri-brush-3-line

ri-brush-3-fill

ri-brush-4-line

ri-brush-4-fill

ri-paint-brush-line

ri-paint-brush-fill

ri-contrast-line

ri-contrast-fill

ri-contrast-2-line

ri-contrast-2-fill

ri-drop-line

ri-drop-fill

ri-blur-off-line

ri-blur-off-fill

ri-contrast-drop-line

ri-contrast-drop-fill

ri-contrast-drop-2-line

ri-contrast-drop-2-fill

ri-compasses-line

ri-compasses-fill

ri-compasses-2-line

ri-compasses-2-fill

ri-scissors-line

ri-scissors-fill

ri-scissors-cut-line

ri-scissors-cut-fill

ri-scissors-2-line

ri-scissors-2-fill

ri-slice-line

ri-slice-fill

ri-eraser-line

ri-eraser-fill

ri-ruler-line

ri-ruler-fill

ri-ruler-2-line

ri-ruler-2-fill

ri-pencil-ruler-line

ri-pencil-ruler-fill

ri-pencil-ruler-2-line

ri-pencil-ruler-2-fill

ri-t-box-line

ri-t-box-fill

ri-input-method-line

ri-input-method-fill

ri-artboard-line

ri-artboard-fill

ri-artboard-2-line

ri-artboard-2-fill

ri-crop-line

ri-crop-fill

ri-crop-2-line

ri-crop-2-fill

ri-screenshot-line

ri-screenshot-fill

ri-screenshot-2-line

ri-screenshot-2-fill

ri-drag-move-line

ri-drag-move-fill

ri-drag-move-2-line

ri-drag-move-2-fill

ri-focus-line

ri-focus-fill

ri-focus-2-line

ri-focus-2-fill

ri-focus-3-line

ri-focus-3-fill

ri-paint-line

ri-paint-fill

ri-palette-line

ri-palette-fill

ri-pantone-line

ri-pantone-fill

ri-shape-line

ri-shape-fill

ri-shape-2-line

ri-shape-2-fill

ri-magic-line

ri-magic-fill

ri-anticlockwise-line

ri-anticlockwise-fill

ri-anticlockwise-2-line

ri-anticlockwise-2-fill

ri-clockwise-line

ri-clockwise-fill

ri-clockwise-2-line

ri-clockwise-2-fill

ri-hammer-line

ri-hammer-fill

ri-tools-line

ri-tools-fill

ri-drag-drop-line

ri-drag-drop-fill

ri-table-line

ri-table-fill

ri-table-alt-line

ri-table-alt-fill

ri-layout-line

ri-layout-fill

ri-layout-2-line

ri-layout-2-fill

ri-layout-3-line

ri-layout-3-fill

ri-layout-4-line

ri-layout-4-fill

ri-layout-5-line

ri-layout-5-fill

ri-layout-6-line

ri-layout-6-fill

ri-layout-column-line

ri-layout-column-fill

ri-layout-row-line

ri-layout-row-fill

ri-layout-top-line

ri-layout-top-fill

ri-layout-right-line

ri-layout-right-fill

ri-layout-bottom-line

ri-layout-bottom-fill

ri-layout-left-line

ri-layout-left-fill

ri-layout-top-2-line

ri-layout-top-2-fill

ri-layout-right-2-line

ri-layout-right-2-fill

ri-layout-bottom-2-line

ri-layout-bottom-2-fill

ri-layout-left-2-line

ri-layout-left-2-fill

ri-layout-grid-line

ri-layout-grid-fill

ri-layout-masonry-line

ri-layout-masonry-fill

ri-collage-line

ri-collage-fill

ri-grid-line

ri-grid-fill

Design

ri-bug-line

ri-bug-fill

ri-bug-2-line

ri-bug-2-fill

ri-code-line

ri-code-fill

ri-code-s-line

ri-code-s-fill

ri-code-s-slash-line

ri-code-s-slash-fill

ri-code-box-line

ri-code-box-fill

ri-terminal-box-line

ri-terminal-box-fill

ri-terminal-line

ri-terminal-fill

ri-terminal-window-line

ri-terminal-window-fill

ri-parentheses-line

ri-parentheses-fill

ri-brackets-line

ri-brackets-fill

ri-braces-line

ri-braces-fill

ri-command-line

ri-command-fill

ri-cursor-line

ri-cursor-fill

ri-git-commit-line

ri-git-commit-fill

ri-git-pull-request-line

ri-git-pull-request-fill

ri-git-merge-line

ri-git-merge-fill

ri-git-branch-line

ri-git-branch-fill

ri-git-repository-line

ri-git-repository-fill

ri-git-repository-commits-line

ri-git-repository-commits-fill

ri-git-repository-private-line

ri-git-repository-private-fill

ri-html5-line

ri-html5-fill

ri-css3-line

ri-css3-fill

Development

ri-tv-line

ri-tv-fill

ri-tv-2-line

ri-tv-2-fill

ri-computer-line

ri-computer-fill

ri-mac-line

ri-mac-fill

ri-macbook-line

ri-macbook-fill

ri-cellphone-line

ri-cellphone-fill

ri-smartphone-line

ri-smartphone-fill

ri-tablet-line

ri-tablet-fill

ri-device-line

ri-device-fill

ri-phone-line

ri-phone-fill

ri-database-line

ri-database-fill

ri-database-2-line

ri-database-2-fill

ri-server-line

ri-server-fill

ri-hard-drive-line

ri-hard-drive-fill

ri-hard-drive-2-line

ri-hard-drive-2-fill

ri-install-line

ri-install-fill

ri-uninstall-line

ri-uninstall-fill

ri-save-line

ri-save-fill

ri-save-2-line

ri-save-2-fill

ri-save-3-line

ri-save-3-fill

ri-sd-card-line

ri-sd-card-fill

ri-sd-card-mini-line

ri-sd-card-mini-fill

ri-sim-card-line

ri-sim-card-fill

ri-sim-card-2-line

ri-sim-card-2-fill

ri-dual-sim-1-line

ri-dual-sim-1-fill

ri-dual-sim-2-line

ri-dual-sim-2-fill

ri-u-disk-line

ri-u-disk-fill

ri-battery-line

ri-battery-fill

ri-battery-charge-line

ri-battery-charge-fill

ri-battery-low-line

ri-battery-low-fill

ri-battery-2-line

ri-battery-2-fill

ri-battery-2-charge-line

ri-battery-2-charge-fill

ri-battery-saver-line

ri-battery-saver-fill

ri-battery-share-line

ri-battery-share-fill

ri-cast-line

ri-cast-fill

ri-airplay-line

ri-airplay-fill

ri-cpu-line

ri-cpu-fill

ri-gradienter-line

ri-gradienter-fill

ri-keyboard-line

ri-keyboard-fill

ri-keyboard-box-line

ri-keyboard-box-fill

ri-mouse-line

ri-mouse-fill

ri-sensor-line

ri-sensor-fill

ri-router-line

ri-router-fill

ri-radar-line

ri-radar-fill

ri-gamepad-line

ri-gamepad-fill

ri-remote-control-line

ri-remote-control-fill

ri-remote-control-2-line

ri-remote-control-2-fill

ri-device-recover-line

ri-device-recover-fill

ri-hotspot-line

ri-hotspot-fill

ri-phone-find-line

ri-phone-find-fill

ri-phone-lock-line

ri-phone-lock-fill

ri-rotate-lock-line

ri-rotate-lock-fill

ri-restart-line

ri-restart-fill

ri-shut-down-line

ri-shut-down-fill

ri-fingerprint-line

ri-fingerprint-fill

ri-fingerprint-2-line

ri-fingerprint-2-fill

ri-barcode-line

ri-barcode-fill

ri-barcode-box-line

ri-barcode-box-fill

ri-qr-code-line

ri-qr-code-fill

ri-qr-scan-line

ri-qr-scan-fill

ri-qr-scan-2-line

ri-qr-scan-2-fill

ri-scan-line

ri-scan-fill

ri-scan-2-line

ri-scan-2-fill

ri-rss-line

ri-rss-fill

ri-gps-line

ri-gps-fill

ri-base-station-line

ri-base-station-fill

ri-bluetooth-line

ri-bluetooth-fill

ri-bluetooth-connect-line

ri-bluetooth-connect-fill

ri-wifi-line

ri-wifi-fill

ri-wifi-off-line

ri-wifi-off-fill

ri-signal-wifi-line

ri-signal-wifi-fill

ri-signal-wifi-1-line

ri-signal-wifi-1-fill

ri-signal-wifi-2-line

ri-signal-wifi-2-fill

ri-signal-wifi-3-line

ri-signal-wifi-3-fill

ri-signal-wifi-error-line

ri-signal-wifi-error-fill

ri-signal-wifi-off-line

ri-signal-wifi-off-fill

ri-wireless-charging-line

ri-wireless-charging-fill

ri-dashboard-2-line

ri-dashboard-2-fill

ri-dashboard-3-line

ri-dashboard-3-fill

ri-usb-line

ri-usb-fill

Device

ri-file-line

ri-file-fill

ri-file-2-line

ri-file-2-fill

ri-file-3-line

ri-file-3-fill

ri-file-4-line

ri-file-4-fill

ri-sticky-note-line

ri-sticky-note-fill

ri-sticky-note-2-line

ri-sticky-note-2-fill

ri-file-edit-line

ri-file-edit-fill

ri-draft-line

ri-draft-fill

ri-file-paper-line

ri-file-paper-fill

ri-file-paper-2-line

ri-file-paper-2-fill

ri-file-text-line

ri-file-text-fill

ri-file-list-line

ri-file-list-fill

ri-file-list-2-line

ri-file-list-2-fill

ri-file-list-3-line

ri-file-list-3-fill

ri-bill-line

ri-bill-fill

ri-file-copy-line

ri-file-copy-fill

ri-file-copy-2-line

ri-file-copy-2-fill

ri-clipboard-line

ri-clipboard-fill

ri-survey-line

ri-survey-fill

ri-article-line

ri-article-fill

ri-newspaper-line

ri-newspaper-fill

ri-file-zip-line

ri-file-zip-fill

ri-file-mark-line

ri-file-mark-fill

ri-task-line

ri-task-fill

ri-todo-line

ri-todo-fill

ri-book-line

ri-book-fill

ri-book-mark-line

ri-book-mark-fill

ri-book-2-line

ri-book-2-fill

ri-book-3-line

ri-book-3-fill

ri-book-open-line

ri-book-open-fill

ri-book-read-line

ri-book-read-fill

ri-contacts-book-line

ri-contacts-book-fill

ri-contacts-book-2-line

ri-contacts-book-2-fill

ri-contacts-book-upload-line

ri-contacts-book-upload-fill

ri-booklet-line

ri-booklet-fill

ri-file-code-line

ri-file-code-fill

ri-file-pdf-line

ri-file-pdf-fill

ri-file-word-line

ri-file-word-fill

ri-file-ppt-line

ri-file-ppt-fill

ri-file-excel-line

ri-file-excel-fill

ri-file-word-2-line

ri-file-word-2-fill

ri-file-ppt-2-line

ri-file-ppt-2-fill

ri-file-excel-2-line

ri-file-excel-2-fill

ri-file-hwp-line

ri-file-hwp-fill

ri-keynote-line

ri-keynote-fill

ri-numbers-line

ri-numbers-fill

ri-pages-line

ri-pages-fill

ri-file-search-line

ri-file-search-fill

ri-file-add-line

ri-file-add-fill

ri-file-reduce-line

ri-file-reduce-fill

ri-file-settings-line

ri-file-settings-fill

ri-file-upload-line

ri-file-upload-fill

ri-file-transfer-line

ri-file-transfer-fill

ri-file-download-line

ri-file-download-fill

ri-file-lock-line

ri-file-lock-fill

ri-file-chart-line

ri-file-chart-fill

ri-file-chart-2-line

ri-file-chart-2-fill

ri-file-music-line

ri-file-music-fill

ri-file-gif-line

ri-file-gif-fill

ri-file-forbid-line

ri-file-forbid-fill

ri-file-info-line

ri-file-info-fill

ri-file-warning-line

ri-file-warning-fill

ri-file-unknow-line

ri-file-unknow-fill

ri-file-user-line

ri-file-user-fill

ri-file-shield-line

ri-file-shield-fill

ri-file-shield-2-line

ri-file-shield-2-fill

ri-file-damage-line

ri-file-damage-fill

ri-file-history-line

ri-file-history-fill

ri-file-shred-line

ri-file-shred-fill

ri-file-cloud-line

ri-file-cloud-fill

ri-folder-line

ri-folder-fill

ri-folder-2-line

ri-folder-2-fill

ri-folder-3-line

ri-folder-3-fill

ri-folder-4-line

ri-folder-4-fill

ri-folder-5-line

ri-folder-5-fill

ri-folders-line

ri-folders-fill

ri-folder-add-line

ri-folder-add-fill

ri-folder-reduce-line

ri-folder-reduce-fill

ri-folder-settings-line

ri-folder-settings-fill

ri-folder-upload-line

ri-folder-upload-fill

ri-folder-transfer-line

ri-folder-transfer-fill

ri-folder-download-line

ri-folder-download-fill

ri-folder-lock-line

ri-folder-lock-fill

ri-folder-chart-line

ri-folder-chart-fill

ri-folder-chart-2-line

ri-folder-chart-2-fill

ri-folder-music-line

ri-folder-music-fill

ri-folder-forbid-line

ri-folder-forbid-fill

ri-folder-info-line

ri-folder-info-fill

ri-folder-warning-line

ri-folder-warning-fill

ri-folder-unknow-line

ri-folder-unknow-fill

ri-folder-user-line

ri-folder-user-fill

ri-folder-shield-line

ri-folder-shield-fill

ri-folder-shield-2-line

ri-folder-shield-2-fill

ri-folder-shared-line

ri-folder-shared-fill

ri-folder-received-line

ri-folder-received-fill

ri-folder-open-line

ri-folder-open-fill

ri-folder-keyhole-line

ri-folder-keyhole-fill

ri-folder-zip-line

ri-folder-zip-fill

ri-folder-history-line

ri-folder-history-fill

ri-markdown-line

ri-markdown-fill

Document

ri-bold

ri-italic

ri-heading

ri-text

ri-font-color

ri-font-size

ri-font-size-2

ri-underline

ri-emphasis

ri-emphasis-cn

ri-strikethrough

ri-strikethrough-2

ri-format-clear

ri-align-left

ri-align-center

ri-align-right

ri-align-justify

ri-align-top

ri-align-vertically

ri-align-bottom

ri-list-check

ri-list-check-2

ri-list-ordered

ri-list-unordered

ri-indent-decrease

ri-indent-increase

ri-line-height

ri-text-spacing

ri-text-wrap

ri-attachment-2

ri-link

ri-link-unlink

ri-link-m

ri-link-unlink-m

ri-separator

ri-space

ri-page-separator

ri-code-view

ri-double-quotes-l

ri-double-quotes-r

ri-single-quotes-l

ri-single-quotes-r

ri-table-2

ri-subscript

ri-subscript-2

ri-superscript

ri-superscript-2

ri-paragraph

ri-text-direction-l

ri-text-direction-r

ri-functions

ri-omega

ri-hashtag

ri-asterisk

ri-question-mark

ri-translate

ri-translate-2

ri-a-b

ri-english-input

ri-pinyin-input

ri-wubi-input

ri-input-cursor-move

ri-number-1

ri-number-2

ri-number-3

ri-number-4

ri-number-5

ri-number-6

ri-number-7

ri-number-8

ri-number-9

ri-number-0

ri-sort-asc

ri-sort-desc

ri-bring-forward

ri-send-backward

ri-bring-to-front

ri-send-to-back

ri-h-1

ri-h-2

ri-h-3

ri-h-4

ri-h-5

ri-h-6

ri-insert-column-left

ri-insert-column-right

ri-insert-row-top

ri-insert-row-bottom

ri-delete-column

ri-delete-row

ri-merge-cells-horizontal

ri-merge-cells-vertical

ri-split-cells-horizontal

ri-split-cells-vertical

ri-flow-chart

ri-mind-map

ri-node-tree

ri-organization-chart

ri-rounded-corner

Editor

ri-wallet-line

ri-wallet-fill

ri-wallet-2-line

ri-wallet-2-fill

ri-wallet-3-line

ri-wallet-3-fill

ri-bank-card-line

ri-bank-card-fill

ri-bank-card-2-line

ri-bank-card-2-fill

ri-secure-payment-line

ri-secure-payment-fill

ri-refund-line

ri-refund-fill

ri-refund-2-line

ri-refund-2-fill

ri-safe-line

ri-safe-fill

ri-safe-2-line

ri-safe-2-fill

ri-price-tag-line

ri-price-tag-fill

ri-price-tag-2-line

ri-price-tag-2-fill

ri-price-tag-3-line

ri-price-tag-3-fill

ri-ticket-line

ri-ticket-fill

ri-ticket-2-line

ri-ticket-2-fill

ri-coupon-line

ri-coupon-fill

ri-coupon-2-line

ri-coupon-2-fill

ri-coupon-3-line

ri-coupon-3-fill

ri-coupon-4-line

ri-coupon-4-fill

ri-coupon-5-line

ri-coupon-5-fill

ri-shopping-bag-line

ri-shopping-bag-fill

ri-shopping-bag-2-line

ri-shopping-bag-2-fill

ri-shopping-bag-3-line

ri-shopping-bag-3-fill

ri-shopping-basket-line

ri-shopping-basket-fill

ri-shopping-basket-2-line

ri-shopping-basket-2-fill

ri-shopping-cart-line

ri-shopping-cart-fill

ri-shopping-cart-2-line

ri-shopping-cart-2-fill

ri-vip-line

ri-vip-fill

ri-vip-crown-line

ri-vip-crown-fill

ri-vip-crown-2-line

ri-vip-crown-2-fill

ri-vip-diamond-line

ri-vip-diamond-fill

ri-trophy-line

ri-trophy-fill

ri-exchange-line

ri-exchange-fill

ri-exchange-box-line

ri-exchange-box-fill

ri-swap-line

ri-swap-fill

ri-swap-box-line

ri-swap-box-fill

ri-exchange-dollar-line

ri-exchange-dollar-fill

ri-exchange-cny-line

ri-exchange-cny-fill

ri-exchange-funds-line

ri-exchange-funds-fill

ri-increase-decrease-line

ri-increase-decrease-fill

ri-percent-line

ri-percent-fill

ri-copper-coin-line

ri-copper-coin-fill

ri-copper-diamond-line

ri-copper-diamond-fill

ri-money-cny-box-line

ri-money-cny-box-fill

ri-money-cny-circle-line

ri-money-cny-circle-fill

ri-money-dollar-box-line

ri-money-dollar-box-fill

ri-money-dollar-circle-line

ri-money-dollar-circle-fill

ri-money-euro-box-line

ri-money-euro-box-fill

ri-money-euro-circle-line

ri-money-euro-circle-fill

ri-money-pound-box-line

ri-money-pound-box-fill

ri-money-pound-circle-line

ri-money-pound-circle-fill

ri-bit-coin-line

ri-bit-coin-fill

ri-coin-line

ri-coin-fill

ri-coins-line

ri-coins-fill

ri-currency-line

ri-currency-fill

ri-funds-line

ri-funds-fill

ri-funds-box-line

ri-funds-box-fill

ri-red-packet-line

ri-red-packet-fill

ri-water-flash-line

ri-water-flash-fill

ri-stock-line

ri-stock-fill

ri-auction-line

ri-auction-fill

ri-gift-line

ri-gift-fill

ri-gift-2-line

ri-gift-2-fill

ri-hand-coin-line

ri-hand-coin-fill

ri-hand-heart-line

ri-hand-heart-fill

ri-24-hours-line

ri-24-hours-fill

Finance

ri-heart-line

ri-heart-fill

ri-heart-2-line

ri-heart-2-fill

ri-heart-3-line

ri-heart-3-fill

ri-heart-add-line

ri-heart-add-fill

ri-dislike-line

ri-dislike-fill

ri-hearts-line

ri-hearts-fill

ri-heart-pulse-line

ri-heart-pulse-fill

ri-pulse-line

ri-pulse-fill

ri-empathize-line

ri-empathize-fill

ri-nurse-line

ri-nurse-fill

ri-dossier-line

ri-dossier-fill

ri-health-book-line

ri-health-book-fill

ri-first-aid-kit-line

ri-first-aid-kit-fill

ri-capsule-line

ri-capsule-fill

ri-medicine-bottle-line

ri-medicine-bottle-fill

ri-flask-line

ri-flask-fill

ri-test-tube-line

ri-test-tube-fill

ri-microscope-line

ri-microscope-fill

ri-hand-sanitizer-line

ri-hand-sanitizer-fill

ri-mental-health-line

ri-mental-health-fill

ri-psychotherapy-line

ri-psychotherapy-fill

ri-stethoscope-line

ri-stethoscope-fill

ri-syringe-line

ri-syringe-fill

ri-thermometer-line

ri-thermometer-fill

ri-infrared-thermometer-line

ri-infrared-thermometer-fill

ri-surgical-mask-line

ri-surgical-mask-fill

ri-virus-line

ri-virus-fill

ri-lungs-line

ri-lungs-fill

ri-rest-time-line

ri-rest-time-fill

ri-zzz-line

ri-zzz-fill

Health & Medical

ri-alipay-line

ri-alipay-fill

ri-amazon-line

ri-amazon-fill

ri-android-line

ri-android-fill

ri-angularjs-line

ri-angularjs-fill

ri-app-store-line

ri-app-store-fill

ri-apple-line

ri-apple-fill

ri-baidu-line

ri-baidu-fill

ri-behance-line

ri-behance-fill

ri-bilibili-line

ri-bilibili-fill

ri-centos-line

ri-centos-fill

ri-chrome-line

ri-chrome-fill

ri-codepen-line

ri-codepen-fill

ri-coreos-line

ri-coreos-fill

ri-dingding-line

ri-dingding-fill

ri-discord-line

ri-discord-fill

ri-disqus-line

ri-disqus-fill

ri-douban-line

ri-douban-fill

ri-dribbble-line

ri-dribbble-fill

ri-drive-line

ri-drive-fill

ri-dropbox-line

ri-dropbox-fill

ri-edge-line

ri-edge-fill

ri-evernote-line

ri-evernote-fill

ri-facebook-line

ri-facebook-fill

ri-facebook-circle-line

ri-facebook-circle-fill

ri-facebook-box-line

ri-facebook-box-fill

ri-finder-line

ri-finder-fill

ri-firefox-line

ri-firefox-fill

ri-flutter-line

ri-flutter-fill

ri-gatsby-line

ri-gatsby-fill

ri-github-line

ri-github-fill

ri-gitlab-line

ri-gitlab-fill

ri-google-line

ri-google-fill

ri-google-play-line

ri-google-play-fill

ri-honor-of-kings-line

ri-honor-of-kings-fill

ri-ie-line

ri-ie-fill

ri-instagram-line

ri-instagram-fill

ri-invision-line

ri-invision-fill

ri-kakao-talk-line

ri-kakao-talk-fill

ri-line-line

ri-line-fill

ri-linkedin-line

ri-linkedin-fill

ri-linkedin-box-line

ri-linkedin-box-fill

ri-mastercard-line

ri-mastercard-fill

ri-mastodon-line

ri-mastodon-fill

ri-medium-line

ri-medium-fill

ri-messenger-line

ri-messenger-fill

ri-microsoft-line

ri-microsoft-fill

ri-mini-program-line

ri-mini-program-fill

ri-netease-cloud-music-line

ri-netease-cloud-music-fill

ri-netflix-line

ri-netflix-fill

ri-npmjs-line

ri-npmjs-fill

ri-open-source-line

ri-open-source-fill

ri-opera-line

ri-opera-fill

ri-patreon-line

ri-patreon-fill

ri-paypal-line

ri-paypal-fill

ri-pinterest-line

ri-pinterest-fill

ri-pixelfed-line

ri-pixelfed-fill

ri-playstation-line

ri-playstation-fill

ri-product-hunt-line

ri-product-hunt-fill

ri-qq-line

ri-qq-fill

ri-reactjs-line

ri-reactjs-fill

ri-reddit-line

ri-reddit-fill

ri-remixicon-line

ri-remixicon-fill

ri-safari-line

ri-safari-fill

ri-skype-line

ri-skype-fill

ri-slack-line

ri-slack-fill

ri-snapchat-line

ri-snapchat-fill

ri-soundcloud-line

ri-soundcloud-fill

ri-spectrum-line

ri-spectrum-fill

ri-spotify-line

ri-spotify-fill

ri-stack-overflow-line

ri-stack-overflow-fill

ri-stackshare-line

ri-stackshare-fill

ri-steam-line

ri-steam-fill

ri-switch-line

ri-switch-fill

ri-taobao-line

ri-taobao-fill

ri-telegram-line

ri-telegram-fill

ri-trello-line

ri-trello-fill

ri-tumblr-line

ri-tumblr-fill

ri-twitch-line

ri-twitch-fill

ri-twitter-line

ri-twitter-fill

ri-ubuntu-line

ri-ubuntu-fill

ri-unsplash-line

ri-unsplash-fill

ri-vimeo-line

ri-vimeo-fill

ri-visa-line

ri-visa-fill

ri-vuejs-line

ri-vuejs-fill

ri-wechat-line

ri-wechat-fill

ri-wechat-2-line

ri-wechat-2-fill

ri-wechat-pay-line

ri-wechat-pay-fill

ri-weibo-line

ri-weibo-fill

ri-whatsapp-line

ri-whatsapp-fill

ri-windows-line

ri-windows-fill

ri-xbox-line

ri-xbox-fill

ri-xing-line

ri-xing-fill

ri-youtube-line

ri-youtube-fill

ri-zcool-line

ri-zcool-fill

ri-zhihu-line

ri-zhihu-fill

Logos

ri-map-pin-line

ri-map-pin-fill

ri-map-pin-2-line

ri-map-pin-2-fill

ri-map-pin-3-line

ri-map-pin-3-fill

ri-map-pin-4-line

ri-map-pin-4-fill

ri-map-pin-5-line

ri-map-pin-5-fill

ri-map-pin-add-line

ri-map-pin-add-fill

ri-map-pin-range-line

ri-map-pin-range-fill

ri-map-pin-time-line

ri-map-pin-time-fill

ri-map-pin-user-line

ri-map-pin-user-fill

ri-pin-distance-line

ri-pin-distance-fill

ri-pushpin-line

ri-pushpin-fill

ri-pushpin-2-line

ri-pushpin-2-fill

ri-compass-line

ri-compass-fill

ri-compass-2-line

ri-compass-2-fill

ri-compass-3-line

ri-compass-3-fill

ri-compass-4-line

ri-compass-4-fill

ri-compass-discover-line

ri-compass-discover-fill

ri-anchor-line

ri-anchor-fill

ri-china-railway-line

ri-china-railway-fill

ri-space-ship-line

ri-space-ship-fill

ri-rocket-line

ri-rocket-fill

ri-rocket-2-line

ri-rocket-2-fill

ri-map-line

ri-map-fill

ri-map-2-line

ri-map-2-fill

ri-treasure-map-line

ri-treasure-map-fill

ri-road-map-line

ri-road-map-fill

ri-earth-line

ri-earth-fill

ri-globe-line

ri-globe-fill

ri-parking-line

ri-parking-fill

ri-parking-box-line

ri-parking-box-fill

ri-route-line

ri-route-fill

ri-guide-line

ri-guide-fill

ri-gas-station-line

ri-gas-station-fill

ri-charging-pile-line

ri-charging-pile-fill

ri-charging-pile-2-line

ri-charging-pile-2-fill

ri-car-line

ri-car-fill

ri-car-washing-line

ri-car-washing-fill

ri-roadster-line

ri-roadster-fill

ri-taxi-line

ri-taxi-fill

ri-taxi-wifi-line

ri-taxi-wifi-fill

ri-police-car-line

ri-police-car-fill

ri-bus-line

ri-bus-fill

ri-bus-2-line

ri-bus-2-fill

ri-bus-wifi-line

ri-bus-wifi-fill

ri-truck-line

ri-truck-fill

ri-train-line

ri-train-fill

ri-train-wifi-line

ri-train-wifi-fill

ri-subway-line

ri-subway-fill

ri-subway-wifi-line

ri-subway-wifi-fill

ri-flight-takeoff-line

ri-flight-takeoff-fill

ri-flight-land-line

ri-flight-land-fill

ri-plane-line

ri-plane-fill

ri-sailboat-line

ri-sailboat-fill

ri-ship-line

ri-ship-fill

ri-ship-2-line

ri-ship-2-fill

ri-bike-line

ri-bike-fill

ri-e-bike-line

ri-e-bike-fill

ri-e-bike-2-line

ri-e-bike-2-fill

ri-takeaway-line

ri-takeaway-fill

ri-motorbike-line

ri-motorbike-fill

ri-caravan-line

ri-caravan-fill

ri-walk-line

ri-walk-fill

ri-run-line

ri-run-fill

ri-riding-line

ri-riding-fill

ri-barricade-line

ri-barricade-fill

ri-footprint-line

ri-footprint-fill

ri-traffic-light-line

ri-traffic-light-fill

ri-signal-tower-line

ri-signal-tower-fill

ri-restaurant-line

ri-restaurant-fill

ri-restaurant-2-line

ri-restaurant-2-fill

ri-cup-line

ri-cup-fill

ri-goblet-line

ri-goblet-fill

ri-hotel-bed-line

ri-hotel-bed-fill

ri-navigation-line

ri-navigation-fill

ri-oil-line

ri-oil-fill

ri-direction-line

ri-direction-fill

ri-steering-line

ri-steering-fill

ri-steering-2-line

ri-steering-2-fill

ri-lifebuoy-line

ri-lifebuoy-fill

ri-passport-line

ri-passport-fill

ri-suitcase-line

ri-suitcase-fill

ri-suitcase-2-line

ri-suitcase-2-fill

ri-suitcase-3-line

ri-suitcase-3-fill

ri-luggage-deposit-line

ri-luggage-deposit-fill

ri-luggage-cart-line

ri-luggage-cart-fill

Map

ri-image-line

ri-image-fill

ri-image-2-line

ri-image-2-fill

ri-image-add-line

ri-image-add-fill

ri-image-edit-line

ri-image-edit-fill

ri-landscape-line

ri-landscape-fill

ri-gallery-line

ri-gallery-fill

ri-gallery-upload-line

ri-gallery-upload-fill

ri-video-line

ri-video-fill

ri-movie-line

ri-movie-fill

ri-movie-2-line

ri-movie-2-fill

ri-film-line

ri-film-fill

ri-clapperboard-line

ri-clapperboard-fill

ri-vidicon-line

ri-vidicon-fill

ri-vidicon-2-line

ri-vidicon-2-fill

ri-live-line

ri-live-fill

ri-video-add-line

ri-video-add-fill

ri-video-upload-line

ri-video-upload-fill

ri-video-download-line

ri-video-download-fill

ri-dv-line

ri-dv-fill

ri-camera-line

ri-camera-fill

ri-camera-off-line

ri-camera-off-fill

ri-camera-2-line

ri-camera-2-fill

ri-camera-3-line

ri-camera-3-fill

ri-camera-lens-line

ri-camera-lens-fill

ri-camera-switch-line

ri-camera-switch-fill

ri-polaroid-line

ri-polaroid-fill

ri-polaroid-2-line

ri-polaroid-2-fill

ri-phone-camera-line

ri-phone-camera-fill

ri-webcam-line

ri-webcam-fill

ri-mv-line

ri-mv-fill

ri-music-line

ri-music-fill

ri-music-2-line

ri-music-2-fill

ri-disc-line

ri-disc-fill

ri-album-line

ri-album-fill

ri-dvd-line

ri-dvd-fill

ri-headphone-line

ri-headphone-fill

ri-radio-line

ri-radio-fill

ri-radio-2-line

ri-radio-2-fill

ri-tape-line

ri-tape-fill

ri-mic-line

ri-mic-fill

ri-mic-2-line

ri-mic-2-fill

ri-mic-off-line

ri-mic-off-fill

ri-volume-down-line

ri-volume-down-fill

ri-volume-mute-line

ri-volume-mute-fill

ri-volume-up-line

ri-volume-up-fill

ri-volume-vibrate-line

ri-volume-vibrate-fill

ri-volume-off-vibrate-line

ri-volume-off-vibrate-fill

ri-speaker-line

ri-speaker-fill

ri-speaker-2-line

ri-speaker-2-fill

ri-speaker-3-line

ri-speaker-3-fill

ri-surround-sound-line

ri-surround-sound-fill

ri-broadcast-line

ri-broadcast-fill

ri-notification-line

ri-notification-fill

ri-notification-2-line

ri-notification-2-fill

ri-notification-3-line

ri-notification-3-fill

ri-notification-4-line

ri-notification-4-fill

ri-notification-off-line

ri-notification-off-fill

ri-play-circle-line

ri-play-circle-fill

ri-pause-circle-line

ri-pause-circle-fill

ri-record-circle-line

ri-record-circle-fill

ri-stop-circle-line

ri-stop-circle-fill

ri-eject-line

ri-eject-fill

ri-play-line

ri-play-fill

ri-pause-line

ri-pause-fill

ri-stop-line

ri-stop-fill

ri-rewind-line

ri-rewind-fill

ri-speed-line

ri-speed-fill

ri-skip-back-line

ri-skip-back-fill

ri-skip-forward-line

ri-skip-forward-fill

ri-play-mini-line

ri-play-mini-fill

ri-pause-mini-line

ri-pause-mini-fill

ri-stop-mini-line

ri-stop-mini-fill

ri-rewind-mini-line

ri-rewind-mini-fill

ri-speed-mini-line

ri-speed-mini-fill

ri-skip-back-mini-line

ri-skip-back-mini-fill

ri-skip-forward-mini-line

ri-skip-forward-mini-fill

ri-repeat-line

ri-repeat-fill

ri-repeat-2-line

ri-repeat-2-fill

ri-repeat-one-line

ri-repeat-one-fill

ri-order-play-line

ri-order-play-fill

ri-shuffle-line

ri-shuffle-fill

ri-play-list-line

ri-play-list-fill

ri-play-list-2-line

ri-play-list-2-fill

ri-play-list-add-line

ri-play-list-add-fill

ri-fullscreen-line

ri-fullscreen-fill

ri-fullscreen-exit-line

ri-fullscreen-exit-fill

ri-equalizer-line

ri-equalizer-fill

ri-sound-module-line

ri-sound-module-fill

ri-rhythm-line

ri-rhythm-fill

ri-voiceprint-line

ri-voiceprint-fill

ri-hq-line

ri-hq-fill

ri-hd-line

ri-hd-fill

ri-4k-line

ri-4k-fill

ri-closed-captioning-line

ri-closed-captioning-fill

ri-aspect-ratio-line

ri-aspect-ratio-fill

ri-picture-in-picture-line

ri-picture-in-picture-fill

ri-picture-in-picture-2-line

ri-picture-in-picture-2-fill

ri-picture-in-picture-exit-line

ri-picture-in-picture-exit-fill

Media

ri-apps-line

ri-apps-fill

ri-apps-2-line

ri-apps-2-fill

ri-function-line

ri-function-fill

ri-dashboard-line

ri-dashboard-fill

ri-menu-line

ri-menu-fill

ri-menu-2-line

ri-menu-2-fill

ri-menu-3-line

ri-menu-3-fill

ri-menu-4-line

ri-menu-4-fill

ri-menu-5-line

ri-menu-5-fill

ri-menu-add-line

ri-menu-add-fill

ri-menu-fold-line

ri-menu-fold-fill

ri-menu-unfold-line

ri-menu-unfold-fill

ri-more-line

ri-more-fill

ri-more-2-line

ri-more-2-fill

ri-star-line

ri-star-fill

ri-star-s-line

ri-star-s-fill

ri-star-half-line

ri-star-half-fill

ri-star-half-s-line

ri-star-half-s-fill

ri-settings-line

ri-settings-fill

ri-settings-2-line

ri-settings-2-fill

ri-settings-3-line

ri-settings-3-fill

ri-settings-4-line

ri-settings-4-fill

ri-settings-5-line

ri-settings-5-fill

ri-settings-6-line

ri-settings-6-fill

ri-list-settings-line

ri-list-settings-fill

ri-forbid-line

ri-forbid-fill

ri-forbid-2-line

ri-forbid-2-fill

ri-information-line

ri-information-fill

ri-error-warning-line

ri-error-warning-fill

ri-question-line

ri-question-fill

ri-alert-line

ri-alert-fill

ri-spam-line

ri-spam-fill

ri-spam-2-line

ri-spam-2-fill

ri-spam-3-line

ri-spam-3-fill

ri-checkbox-blank-line

ri-checkbox-blank-fill

ri-checkbox-line

ri-checkbox-fill

ri-checkbox-indeterminate-line

ri-checkbox-indeterminate-fill

ri-add-box-line

ri-add-box-fill

ri-checkbox-blank-circle-line

ri-checkbox-blank-circle-fill

ri-checkbox-circle-line

ri-checkbox-circle-fill

ri-indeterminate-circle-line

ri-indeterminate-circle-fill

ri-add-circle-line

ri-add-circle-fill

ri-close-circle-line

ri-close-circle-fill

ri-radio-button-line

ri-radio-button-fill

ri-checkbox-multiple-blank-line

ri-checkbox-multiple-blank-fill

ri-checkbox-multiple-line

ri-checkbox-multiple-fill

ri-check-line

ri-check-fill

ri-check-double-line

ri-check-double-fill

ri-close-line

ri-close-fill

ri-add-line

ri-add-fill

ri-subtract-line

ri-subtract-fill

ri-divide-line

ri-divide-fill

ri-arrow-left-up-line

ri-arrow-left-up-fill

ri-arrow-up-line

ri-arrow-up-fill

ri-arrow-right-up-line

ri-arrow-right-up-fill

ri-arrow-right-line

ri-arrow-right-fill

ri-arrow-right-down-line

ri-arrow-right-down-fill

ri-arrow-down-line

ri-arrow-down-fill

ri-arrow-left-down-line

ri-arrow-left-down-fill

ri-arrow-left-line

ri-arrow-left-fill

ri-arrow-up-circle-line

ri-arrow-up-circle-fill

ri-arrow-right-circle-line

ri-arrow-right-circle-fill

ri-arrow-down-circle-line

ri-arrow-down-circle-fill

ri-arrow-left-circle-line

ri-arrow-left-circle-fill

ri-arrow-up-s-line

ri-arrow-up-s-fill

ri-arrow-down-s-line

ri-arrow-down-s-fill

ri-arrow-right-s-line

ri-arrow-right-s-fill

ri-arrow-left-s-line

ri-arrow-left-s-fill

ri-arrow-drop-up-line

ri-arrow-drop-up-fill

ri-arrow-drop-right-line

ri-arrow-drop-right-fill

ri-arrow-drop-down-line

ri-arrow-drop-down-fill

ri-arrow-drop-left-line

ri-arrow-drop-left-fill

ri-arrow-left-right-line

ri-arrow-left-right-fill

ri-arrow-up-down-line

ri-arrow-up-down-fill

ri-arrow-go-back-line

ri-arrow-go-back-fill

ri-arrow-go-forward-line

ri-arrow-go-forward-fill

ri-download-line

ri-download-fill

ri-upload-line

ri-upload-fill

ri-download-2-line

ri-download-2-fill

ri-upload-2-line

ri-upload-2-fill

ri-download-cloud-line

ri-download-cloud-fill

ri-download-cloud-2-line

ri-download-cloud-2-fill

ri-upload-cloud-line

ri-upload-cloud-fill

ri-upload-cloud-2-line

ri-upload-cloud-2-fill

ri-login-box-line

ri-login-box-fill

ri-logout-box-line

ri-logout-box-fill

ri-logout-box-r-line

ri-logout-box-r-fill

ri-login-circle-line

ri-login-circle-fill

ri-logout-circle-line

ri-logout-circle-fill

ri-logout-circle-r-line

ri-logout-circle-r-fill

ri-refresh-line

ri-refresh-fill

ri-shield-line

ri-shield-fill

ri-shield-cross-line

ri-shield-cross-fill

ri-shield-flash-line

ri-shield-flash-fill

ri-shield-star-line

ri-shield-star-fill

ri-shield-user-line

ri-shield-user-fill

ri-shield-keyhole-line

ri-shield-keyhole-fill

ri-shield-check-line

ri-shield-check-fill

ri-delete-back-line

ri-delete-back-fill

ri-delete-back-2-line

ri-delete-back-2-fill

ri-delete-bin-line

ri-delete-bin-fill

ri-delete-bin-2-line

ri-delete-bin-2-fill

ri-delete-bin-3-line

ri-delete-bin-3-fill

ri-delete-bin-4-line

ri-delete-bin-4-fill

ri-delete-bin-5-line

ri-delete-bin-5-fill

ri-delete-bin-6-line

ri-delete-bin-6-fill

ri-delete-bin-7-line

ri-delete-bin-7-fill

ri-lock-line

ri-lock-fill

ri-lock-2-line

ri-lock-2-fill

ri-lock-password-line

ri-lock-password-fill

ri-lock-unlock-line

ri-lock-unlock-fill

ri-eye-line

ri-eye-fill

ri-eye-off-line

ri-eye-off-fill

ri-eye-2-line

ri-eye-2-fill

ri-eye-close-line

ri-eye-close-fill

ri-search-line

ri-search-fill

ri-search-2-line

ri-search-2-fill

ri-search-eye-line

ri-search-eye-fill

ri-zoom-in-line

ri-zoom-in-fill

ri-zoom-out-line

ri-zoom-out-fill

ri-find-replace-line

ri-find-replace-fill

ri-share-line

ri-share-fill

ri-share-box-line

ri-share-box-fill

ri-share-circle-line

ri-share-circle-fill

ri-share-forward-line

ri-share-forward-fill

ri-share-forward-2-line

ri-share-forward-2-fill

ri-share-forward-box-line

ri-share-forward-box-fill

ri-side-bar-line

ri-side-bar-fill

ri-time-line

ri-time-fill

ri-timer-line

ri-timer-fill

ri-timer-2-line

ri-timer-2-fill

ri-timer-flash-line

ri-timer-flash-fill

ri-alarm-line

ri-alarm-fill

ri-history-line

ri-history-fill

ri-thumb-down-line

ri-thumb-down-fill

ri-thumb-up-line

ri-thumb-up-fill

ri-alarm-warning-line

ri-alarm-warning-fill

ri-notification-badge-line

ri-notification-badge-fill

ri-toggle-line

ri-toggle-fill

ri-filter-line

ri-filter-fill

ri-filter-2-line

ri-filter-2-fill

ri-filter-3-line

ri-filter-3-fill

ri-filter-off-line

ri-filter-off-fill

ri-loader-line

ri-loader-fill

ri-loader-2-line

ri-loader-2-fill

ri-loader-3-line

ri-loader-3-fill

ri-loader-4-line

ri-loader-4-fill

ri-loader-5-line

ri-loader-5-fill

ri-external-link-line

ri-external-link-fill

System

ri-user-line

ri-user-fill

ri-user-2-line

ri-user-2-fill

ri-user-3-line

ri-user-3-fill

ri-user-4-line

ri-user-4-fill

ri-user-5-line

ri-user-5-fill

ri-user-6-line

ri-user-6-fill

ri-user-smile-line

ri-user-smile-fill

ri-account-box-line

ri-account-box-fill

ri-account-circle-line

ri-account-circle-fill

ri-account-pin-box-line

ri-account-pin-box-fill

ri-account-pin-circle-line

ri-account-pin-circle-fill

ri-user-add-line

ri-user-add-fill

ri-user-follow-line

ri-user-follow-fill

ri-user-unfollow-line

ri-user-unfollow-fill

ri-user-shared-line

ri-user-shared-fill

ri-user-shared-2-line

ri-user-shared-2-fill

ri-user-received-line

ri-user-received-fill

ri-user-received-2-line

ri-user-received-2-fill

ri-user-location-line

ri-user-location-fill

ri-user-search-line

ri-user-search-fill

ri-user-settings-line

ri-user-settings-fill

ri-user-star-line

ri-user-star-fill

ri-user-heart-line

ri-user-heart-fill

ri-admin-line

ri-admin-fill

ri-contacts-line

ri-contacts-fill

ri-group-line

ri-group-fill

ri-group-2-line

ri-group-2-fill

ri-team-line

ri-team-fill

ri-user-voice-line

ri-user-voice-fill

ri-emotion-line

ri-emotion-fill

ri-emotion-2-line

ri-emotion-2-fill

ri-emotion-happy-line

ri-emotion-happy-fill

ri-emotion-normal-line

ri-emotion-normal-fill

ri-emotion-unhappy-line

ri-emotion-unhappy-fill

ri-emotion-laugh-line

ri-emotion-laugh-fill

ri-emotion-sad-line

ri-emotion-sad-fill

ri-skull-line

ri-skull-fill

ri-skull-2-line

ri-skull-2-fill

ri-men-line

ri-men-fill

ri-women-line

ri-women-fill

ri-travesti-line

ri-travesti-fill

ri-genderless-line

ri-genderless-fill

ri-open-arm-line

ri-open-arm-fill

ri-body-scan-line

ri-body-scan-fill

ri-parent-line

ri-parent-fill

ri-robot-line

ri-robot-fill

ri-aliens-line

ri-aliens-fill

ri-bear-smile-line

ri-bear-smile-fill

ri-mickey-line

ri-mickey-fill

ri-criminal-line

ri-criminal-fill

ri-ghost-line

ri-ghost-fill

ri-ghost-2-line

ri-ghost-2-fill

ri-ghost-smile-line

ri-ghost-smile-fill

ri-star-smile-line

ri-star-smile-fill

ri-spy-line

ri-spy-fill

User & Faces

ri-sun-line

ri-sun-fill

ri-moon-line

ri-moon-fill

ri-flashlight-line

ri-flashlight-fill

ri-cloudy-line

ri-cloudy-fill

ri-cloudy-2-line

ri-cloudy-2-fill

ri-mist-line

ri-mist-fill

ri-foggy-line

ri-foggy-fill

ri-cloud-windy-line

ri-cloud-windy-fill

ri-windy-line

ri-windy-fill

ri-rainy-line

ri-rainy-fill

ri-drizzle-line

ri-drizzle-fill

ri-showers-line

ri-showers-fill

ri-heavy-showers-line

ri-heavy-showers-fill

ri-thunderstorms-line

ri-thunderstorms-fill

ri-hail-line

ri-hail-fill

ri-snowy-line

ri-snowy-fill

ri-sun-cloudy-line

ri-sun-cloudy-fill

ri-moon-cloudy-line

ri-moon-cloudy-fill

ri-tornado-line

ri-tornado-fill

ri-typhoon-line

ri-typhoon-fill

ri-haze-line

ri-haze-fill

ri-haze-2-line

ri-haze-2-fill

ri-sun-foggy-line

ri-sun-foggy-fill

ri-moon-foggy-line

ri-moon-foggy-fill

ri-moon-clear-line

ri-moon-clear-fill

ri-temp-hot-line

ri-temp-hot-fill

ri-temp-cold-line

ri-temp-cold-fill

ri-celsius-line

ri-celsius-fill

ri-fahrenheit-line

ri-fahrenheit-fill

ri-fire-line

ri-fire-fill

ri-blaze-line

ri-blaze-fill

ri-earthquake-line

ri-earthquake-fill

ri-flood-line

ri-flood-fill

ri-meteor-line

ri-meteor-fill

ri-rainbow-line

ri-rainbow-fill

Weather

ri-basketball-line

ri-basketball-fill

ri-bell-line

ri-bell-fill

ri-billiards-line

ri-billiards-fill

ri-boxing-line

ri-boxing-fill

ri-cake-line

ri-cake-fill

ri-cake-2-line

ri-cake-2-fill

ri-cake-3-line

ri-cake-3-fill

ri-door-lock-line

ri-door-lock-fill

ri-door-lock-box-line

ri-door-lock-box-fill

ri-football-line

ri-football-fill

ri-game-line

ri-game-fill

ri-handbag-line

ri-handbag-fill

ri-key-line

ri-key-fill

ri-key-2-line

ri-key-2-fill

ri-knife-line

ri-knife-fill

ri-knife-blood-line

ri-knife-blood-fill

ri-lightbulb-line

ri-lightbulb-fill

ri-lightbulb-flash-line

ri-lightbulb-flash-fill

ri-outlet-line

ri-outlet-fill

ri-outlet-2-line

ri-outlet-2-fill

ri-ping-pong-line

ri-ping-pong-fill

ri-plug-line

ri-plug-fill

ri-plug-2-line

ri-plug-2-fill

ri-reserved-line

ri-reserved-fill

ri-shirt-line

ri-shirt-fill

ri-sword-line

ri-sword-fill

ri-t-shirt-line

ri-t-shirt-fill

ri-t-shirt-2-line

ri-t-shirt-2-fill

ri-t-shirt-air-line

ri-t-shirt-air-fill

ri-umbrella-line

ri-umbrella-fill

ri-character-recognition-line

ri-character-recognition-fill

ri-voice-recognition-line

ri-voice-recognition-fill

ri-leaf-line

ri-leaf-fill

ri-plant-line

ri-plant-fill

ri-seedling-line

ri-seedling-fill

ri-recycle-line

ri-recycle-fill

ri-scales-line

ri-scales-fill

ri-scales-2-line

ri-scales-2-fill

ri-scales-3-line

ri-scales-3-fill

ri-fridge-line

ri-fridge-fill

ri-wheelchair-line

ri-wheelchair-fill

ri-cactus-line

ri-cactus-fill

ri-door-line

ri-door-fill

ri-door-open-line

ri-door-open-fill

ri-door-closed-line

ri-door-closed-fill

Others

- + \ No newline at end of file diff --git a/docs/docs/webdev/Guidelines/images/index.html b/docs/docs/webdev/Guidelines/images/index.html index bb9dec266b..51b9440589 100644 --- a/docs/docs/webdev/Guidelines/images/index.html +++ b/docs/docs/webdev/Guidelines/images/index.html @@ -5,7 +5,7 @@ Use of images | EEA Design System - + @@ -14,7 +14,7 @@ To acknowledge a copyrighted work add three things to the image, the copyright symbol, the year of the copyright, and the name of the copyright holder.

Best practices

  • your visual content is relevant to the topic of the webpage
  • only add an image whenever it adds value to the webpage
  • place images near the relevant text
  • the most important image should be near the top of the webpage
  • avoid embedding text in images, not all users can access them (page translation tools can't read images)
  • text in HTML, provide alt text for images; follow rules of accessibility
  • create good content is equally important as visual content for images

Widely supported image formats

File type (short)File type (long)File extension
GIFgraphics Interchange Format.gif
JPEGjoint Photographic Expert Group image.jpeg .jpg
PNGportable Network Graphics.png
SVGscalable Vector Graphics.svg

Raster graphic

Raster images are pixel-based. When you scale up a raster image you'll see jagged and blurry edges.

GIF (Graphics Interchange Format)

  • fewer colours, file size is smaller than JPEG
  • interlaced progressive loading, low-quality version first, more detailed image is loaded next
  • fewer colours, file size is smaller than JPEG
  • does not lose any data with compression
  • best use for web graphics with few colours only, and line drawings

JPG/JPEG (Joint Photographic-Experts-Group)

  • can display millions of colours, use JPEG format for photographs, still images, shading with light and dark
  • use JPEG when file size is more important than the quality of the image
  • optimising JPEG images; 60% - 75% is usually optimal for web publishing 16-bit data format
  • compatible across many platforms and image editors

PNG (Portable Network Graphics)

  • support transparency (alpha channel), allow a translucent look
  • lossless compression, no loss of data
  • manage high-contrast or detailed images better than JPEG
  • they can go down to very small file sizes when there are limited colours, use an 8-bit colour palette instead of a 24 colour palette
  • PNG images can be used in any colour background still maintain the original appearance

Vector graphic

Vector image format can produce results with high fidelity at every resolution setting. It is an ideal format for high-resolution screens. If you zoom into a vector graphic it will always remain the same quality.

SVG (Scalable Vector Graphics)

  • SVG is in vector format – it does not lose any data when compressed
  • SVG formats are supported by most contemporary browsers
  • the image file size is lightweight and compressible supports transparency

Editing visuals

  • don't apply effects, gradients, borders or filters. It can make the picture look manipulated
  • don't pick photos with frames, rounded corners or drop shadows
  • cropping. Pay attention to the copyright. In some cases you need prior consent from the author to alter the image
- + \ No newline at end of file diff --git a/docs/docs/webdev/Guidelines/intro/index.html b/docs/docs/webdev/Guidelines/intro/index.html index c784d089e6..c425dc0bf2 100644 --- a/docs/docs/webdev/Guidelines/intro/index.html +++ b/docs/docs/webdev/Guidelines/intro/index.html @@ -5,14 +5,14 @@ Intro | EEA Design System - +

Intro

Guidelines

The DS v1 is the EEA's design system, created with a set of guiding principles that followed throughout the process. By following a user-centered design approach and best UX practices, the DS v1 is the result of in-depth research into the users' needs and goals, offering solutions that are assessed, tested and revised continuously. All components included in the DS v1 follow the Web Content Accessibility Guidelines (WCAG).

The main characteristics of our design system are:

  • Minimal use of drop shadows
  • Sharp edges and corners
  • Uncluttered, distraction-free design
  • High readability with clear typography
  • Easily adjusted for responsive design

We emphasize more on functionality rather than appearance and in parallel we try to offer a consistent appearance irrespective of the screen resolution and types of devices. Trying not to use unnecessary designing elements, we focus on faster site designing and minimum loading time.

- + \ No newline at end of file diff --git a/docs/docs/webdev/Guidelines/spacing/index.html b/docs/docs/webdev/Guidelines/spacing/index.html index 397c6f282d..2d5b4db13a 100644 --- a/docs/docs/webdev/Guidelines/spacing/index.html +++ b/docs/docs/webdev/Guidelines/spacing/index.html @@ -5,7 +5,7 @@ Spacing | EEA Design System - + @@ -13,7 +13,7 @@

Spacing

To ensure that layouts are visually balanced, most measurements align to 8px, which corresponds to both spacing and the overall layout. Consistent spacing creates visual balance that makes the user interface (UI) easier for merchants to scan. Apply consistent spacing to improve the quality of the UI. Components are sized in 8px increments, ensuring a consistent visual rhythm across each screen. Smaller elements, such as icons, can align to a 4px grid, while typography can fall on a 4px baseline grid, meaning that each line’s typographic baseline is spaced in increments of 4px from its neighbor.

Principles

Create visual rhythm
We use incrementally measured spacing to create harmonious arrangements of components and text. This gives the elements a predictable rhythm, which makes the experience as a whole feel intentional and well designed.

Precise but flexible
Beyond mathematical precision, spacing also reacts to the objects it surrounds, giving more space to larger objects, less to small. Optical adjustments can also be made if an element looks off and the spacing needs a nudge to make things feel right.

Two types of spacing scale

Component Spacing
Controls the spacing inside the components.
For components use smaller increments. ( 4px, 8px, 12px, 16px, 20px, 24px, 32px, 36px, 40px, 48px)

Layout Spacing
Controls space between the components.
For layout scale use larger increments (16px, 24px, 32px, 48px, 64px, 96px )

Spacing Gaps in pixels

Token namePixelsTypically used
space-0251pxnot typically used
space-052pxnot typically used
space-14pxseparate related elements and for small padding
space-28pxonly for right and left padding of buttons, form elements and horizontal tabs
space-312pxto separate unrelated elements or groups and for normal padding
space-416pxto separate sub-sections of content
space-520pxto separate sub-sections of content
space-624pxto separate sub-sections of content
space-728pxto separate sections of content
space-832pxto separate sections of content
space-936pxto separate sections of content
space-1040px
space-1144px
space-1248px
space-1352px
space-1456px
space-1560px
space-1664px
space-1768px
space-1872px
space-1976px
space-2080px
space-2496px

Spacing Gaps in rem

Token nameRem
rem-space-0250.063rem
rem-space-050.125rem
rem-space-10.25rem
rem-space-20.5rem
rem-space-30.75rem
rem-space-41rem
rem-space-51.25rem
rem-space-61.5rem
rem-space-71.75rem
rem-space-82rem
rem-space-92.25rem
rem-space-102.5rem
rem-space-112.75rem
rem-space-123rem
rem-space-133.25rem
rem-space-143.5rem
rem-space-153.75rem
rem-space-164rem
rem-space-174.25rem
rem-space-184.5rem
rem-space-194.75rem
rem-space-205rem
rem-space-246rem

Spacing Gaps in em

Token nameRem
em-space-0250.063em
em-space-050.125em
em-space-10.25em
em-space-20.5em
em-space-30.75em
em-space-41em
em-space-51.25em
em-space-61.5em
em-space-71.75em
em-space-82em
em-space-92.25em
em-space-102.5em
em-space-112.75em
em-space-123em
em-space-133.25em
em-space-143.5em
em-space-153.75em
em-space-164em
em-space-174.25em
em-space-184.5em
em-space-194.75em
em-space-205em
em-space-246em
- + \ No newline at end of file diff --git a/docs/docs/webdev/Guidelines/typography/index.html b/docs/docs/webdev/Guidelines/typography/index.html index 44c821f83f..3285412a60 100644 --- a/docs/docs/webdev/Guidelines/typography/index.html +++ b/docs/docs/webdev/Guidelines/typography/index.html @@ -5,7 +5,7 @@ Typography | EEA Design System - + @@ -16,7 +16,7 @@ but 150% tends to be the most quoted sweet spot (and a WCAG recommendation). You should experiment to see what looks best with your text. The line-height value is always divisible by 4 to support the grid.

This is why for body text we use 150% line height, while for headers we use 120% due to the larger font size where using 150% would add too much space between the heading lines.


Letter spacing

Letter spacing (also known as character spacing or tracking ) is the adjustment of the horizontal white space between the letters in a block of text. Unlike kerning, which affects only designated pairs of letters, letterspacing affects every pair. By adjusting letter spacing to the environment you are working with you will help readers consume your information faster, and more efficiently. The fun part is that they won’t even notice it!

Headings -0.015em (-1.5%)

Body 0%

Caption and Small text 0.01em (1%)


Text color

Body text color is blue-grey-5 (#3D5265)

Color also plays a key role in an interface’s typographic hierarchy, often by established types like:

  • Brand colors and supplementary colors, for most interface text whether body or heading.
  • Interactive, not just for links but also flat buttons, tab labels, and more
  • Disabled, often resulting is especially lower contrast treatments
  • Error, usually red, for the highest contrast with its surroundings

Line length

Line-length is the number of characters displayed in a single line. Lines that are too long or too short can distract readers. For readability, limit to no more than 80 characters including spaces for desktop. Line length for mobile is recommended to use 40 to 60 characters including space per line.


Base Font Size

We set 16px (1rem) as the base font size for body text to ensure readability. It is the default font size for most browsers.


Desktop Styles

Heading 1

Font Size: 44px or 2.75rem
Letter spacing: -0.015em (-1.5%)
Line height: 1.2 (120%)

Heading 2

Font Size: 32px or 2rem
Letter spacing: -0.015em (-1.5%)
Line height: 1.2 (120%)

Heading 3

Font Size: 26px or 1.625rem
Letter spacing: -0.015em (-1.5%)
Line height: 1.2 (120%)

Heading 4

Font Size: 20px or 1.25rem
Letter spacing: -0.015em (-1.5%)
Line height: 1.2 (120%)
Heading 5
Font Size: 18px or 1.125rem
Letter spacing: -0.015em (-1.5%)
Line height: 1.2 (120%)

Body text

Font Size: 16px or 1rem
Letter spacing: 0 (0%)
Line height: 1.5 (150%)

Caption text

Font Size: 14px or 0.875rem
Letter spacing: 0.01 (1%)
Line height: 1.5 (150%)

Small text

Font Size: 12px or 0.75rem
Letter spacing: 0.01 (1%)
Line height: 1.5 (150%)

Mobile Styles

Heading 1

Font Size: 30px or 1.875rem
Letter spacing: -0.015em (-1.5%)
Line height: 1.2 (120%)

Heading 2

Font Size: 24px or 1.5rem
Letter spacing: -0.015em (-1.5%)
Line height: 1.2 (120%)

Heading 3

Font Size: 20px or 1.25rem
Letter spacing: -0.015em (-1.5%)
Line height: 1.2 (120%)

Heading 4

Font Size: 18px or 1.125rem
Letter spacing: -0.015em (-1.5%)
Line height: 1.2 (120%)

Body

Font Size: 16px or 1rem
Letter spacing: 0 (0%)
Line height: 1.5 (150%)

Caption

Font Size: 14px or 0.875rem
Letter spacing: 0.01em (1%)
Line height: 1.5 (150%)

Small text

Font Size: 12px or 0.75rem
Letter spacing: 0.01em (1%)
Line height: 1.5 (150%)

Typography tokens

Weight

Token nameValueStyle
font-weight-1100Thin
font-weight-2200Light
font-weight-3300Book
font-weight-4400Regular
font-weight-5500Medium
font-weight-6600SemiBold
font-weight-7700Bold
font-weight-8800ExtraBold
font-weight-9900Black

Line height

Token nameValue(no unit)
font-lineheight-00.95
font-lineheight-01.1
font-lineheight-11.2
font-lineheight-21.375
font-lineheight-31.5
font-lineheight-41.75
font-lineheight-52

Letter spacing

Token nameValue(em)
font-letterspacing-000-.02
font-letterspacing-00-.015
font-letterspacing-0-.01
font-letterspacing-1.01
font-letterspacing-2.015
font-letterspacing-3.02
font-letterspacing-4.075
font-letterspacing-5.15

Font size

Token nameValue(rem)Value(px)
font-size-00.7512
font-size-0.87514
font-size-1116
font-size-21.12518
font-size-31.2520
font-size-41.524
font-size-51.62526
font-size-61.87530
font-size-7232
font-size-82.2536
font-size-92.540
font-size-102.7544

Font size fluid

Token nameValue
font-size-fluid-0clamp(1.125rem, 2vw, 1.25rem)
font-size-fluid-1clamp(1.25rem, 4vw, 1.625rem)
font-size-fluid-2clamp(1.5rem, 6vw, 2rem)
font-size-fluid-3clamp(1.875rem, 9vw, 2.75rem)
- + \ No newline at end of file diff --git a/docs/docs/webdev/Resources/developer-guidelines/index.html b/docs/docs/webdev/Resources/developer-guidelines/index.html index 188a582e9e..6b74f237ea 100644 --- a/docs/docs/webdev/Resources/developer-guidelines/index.html +++ b/docs/docs/webdev/Resources/developer-guidelines/index.html @@ -5,7 +5,7 @@ Developer Guidelines | EEA Design System - + @@ -71,7 +71,7 @@ guidelines as to what combinations of props and variations are allowed, to ensure a consistent look and feel. One place to document these constraints is in the control options we have in Storybook.

- + \ No newline at end of file diff --git a/docs/docs/webdev/Resources/theming-guidelines/index.html b/docs/docs/webdev/Resources/theming-guidelines/index.html index 2c33a1ac3a..e2d0617436 100644 --- a/docs/docs/webdev/Resources/theming-guidelines/index.html +++ b/docs/docs/webdev/Resources/theming-guidelines/index.html @@ -5,7 +5,7 @@ Theming Guidelines | EEA Design System - + @@ -28,7 +28,7 @@ it's simply a job of changing one global variable:

// site.variables
/* This adjusts the meta alignment across all elements */
@metaAlign: right;

The same is true with colors used in components, try to avoid custom values set on components only as they should be part of the site.variables color pallete.

Semantic UI global setting example

We see this rule played out in many places within site.variables:

// site.variables
/*--------------
Form Input
---------------*/
/* This adjusts the default form input across all elements */
@inputBackground : @white;

Then within form.variables we have several rules that make use of the global setting:

// form.variables
/* Text Area */
@textAreaBackground: @inputBackground;

/* Inverted */
@invertedInputBackground: @inputBackground;

Check components design when having odd numbers or images

As written down in the Card component issue, if your component accepts images consider how they would adapt in case there is a mix between portrait and landscapei images.

What about situations where you have an odd number of elements or the body of the components differ in size?

The components need to be checked for such situations and to ensure they are flexible to deal with these mix and match elements.

Ex:

If the card is flex based and the parent wrapper is flex as well, consider adding a max-height to the card body or image wrapper so that they all keep a standard size.

Code formatting

  • CSS and less files should be formatted using prettier. Indent space will be 2 spaces.
  • Files should be edited as Unix files, with LF line endings.
- + \ No newline at end of file diff --git a/docs/docs/webdev/Templates/Grid/index.html b/docs/docs/webdev/Templates/Grid/index.html index 5f8b51a584..e3e022c35a 100644 --- a/docs/docs/webdev/Templates/Grid/index.html +++ b/docs/docs/webdev/Templates/Grid/index.html @@ -5,7 +5,7 @@ Grid | EEA Design System - + @@ -16,7 +16,7 @@

Don’ts

Do not make gutters too large or the same width as the columns. Oversized gutters will not leave enough room for content and may prevent a layout from appearing unified.

Breakpoints

A breakpoint is the screen size threshold determined by specific layout requirements. At a given breakpoint range, the layout adjusts to suit the screen size and orientation. ΕΕΑ provides responsive layouts based on 4-column, 8-column, and 12-column grids, available for use across different screens, devices, and orientations. Each breakpoint range determines the number of columns, and recommended margins and gutters for each display size.

BreakpointsColumnsGuttersMargins
Mobile320-480px420px or 1.25rem30px or 1.875rem
Tablet481-835px8 20px or 1.25rem40px or 2.5rem
Desktop1025px and above1220px or 1.25rem140px or 8.75rem
- + \ No newline at end of file diff --git a/docs/docs/webdev/Templates/PageHeader/index.html b/docs/docs/webdev/Templates/PageHeader/index.html index 31fa3afdbd..30a3549521 100644 --- a/docs/docs/webdev/Templates/PageHeader/index.html +++ b/docs/docs/webdev/Templates/PageHeader/index.html @@ -5,13 +5,13 @@ Page Header | EEA Design System - +

Page Header

The page header component provides users with the context of the page. It is always placed just below the site header.

Anatomy

ComponentsMandatoryOptional
Page titleyesno
Meta (content type, published date, modified date, reading time)noyes
Download - Bookmark actionsnoyes
Breadcrumb
The Breadcrumb component provides information on the page and its relationship to the site's hierarchy and structure.
It is optional if your website's navigational structure has less than 3 levels.
noyes
Image copyrightsyesno

Do's

  • ensure the pages contain all the components and elements in the anatomy table above
  • always use a page header when building your internal pages
  • when choosing a background image, make sure it highlights the main object related to the content and is meaningful
  • choose image copyright text colors accordingly, use light font color on darker images and darker font color on lighter ones

Don'ts

  • don't use more than one-page header per page
  • do not use a background image unless there is a communication need, as it might be a distraction

When to use

  • to highlight the topic of the page, or to show important information about the page

When not to use

  • the page header is not used for the homepage of the website
- + \ No newline at end of file diff --git a/docs/docs/webdev/Templates/SiteFooter/index.html b/docs/docs/webdev/Templates/SiteFooter/index.html index cdcfb87620..4b2d4f97f1 100644 --- a/docs/docs/webdev/Templates/SiteFooter/index.html +++ b/docs/docs/webdev/Templates/SiteFooter/index.html @@ -5,13 +5,13 @@ Site Footer | EEA Design System - +

Site Footer

The core footer provides supplementary information such as copyright, legal, privacy, social media, contact information and links to other important sites within the EEA. It is always placed at the bottom of every page. Always use a footer when building your page

Anatomy

Νο.ComponentsMandatoryDescription
1EEA logoyesLogo of European Environment Agency (EEA)
2EIONET logoyesLogo of European Environment Information and Observation Network
3Contact information
yesLinks to the associated services available through the EEA site
4Social mediayesLinks to social EEA's social media
5Environmental information systemsyesEuropean Information Systems
6Legal navigationyesContains legal information links - consistent throughout the family sites
7Content owner detailsyesIndicates ownership over the site's content

Do's

  • make sure the footer contain all the elements in the anatomy table above

Don'ts

  • don't use more than one footer per page
- + \ No newline at end of file diff --git a/docs/docs/webdev/Templates/SiteHeader/index.html b/docs/docs/webdev/Templates/SiteHeader/index.html index 6279cafc65..723204bd3f 100644 --- a/docs/docs/webdev/Templates/SiteHeader/index.html +++ b/docs/docs/webdev/Templates/SiteHeader/index.html @@ -5,13 +5,13 @@ Site Header | EEA Design System - +

Site Header

The EEA header shows users that they are on EEA portal and which service they are using.

Anatomy

Νο.ComponentsMandatoryDescription
1Official EU website statementyesAll official European Union website addresses are in the europa.eu domain
2Environmental Information systemsyesComplete list of EEA's thematic websites
3Languages
yesLanguage select
4EEA IdentityyesLogo of European Environmental Agency
5MenuyesMain navigation of the website
6SearchyesEnables the user to search and retrieve related information from using keywords

Do’s

  • You must use the EEA header at the top of every page if your service is being hosted on one of these domains:
    • Eea.europa.eu
  • Make sure that contain all mandatory element from the Anatomy table

Dont’s

  • You must not use the EEA header if your service is not being hosted in one of the above domains.
- + \ No newline at end of file diff --git a/docs/docs/webdev/Utilities/intro/index.html b/docs/docs/webdev/Utilities/intro/index.html index 00d244ab15..143038843c 100644 --- a/docs/docs/webdev/Utilities/intro/index.html +++ b/docs/docs/webdev/Utilities/intro/index.html @@ -5,13 +5,13 @@ Utilities | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/whatsnew/index.html b/docs/docs/whatsnew/index.html index 4b1c75d2f4..0a522b4ff8 100644 --- a/docs/docs/whatsnew/index.html +++ b/docs/docs/whatsnew/index.html @@ -5,13 +5,13 @@ What's new | EEA Design System - +
-

What's new

EEA Design System (1.0)

Components ready to be used

The following components are ready to be used as Volto blocks, slate integration, or via the advanced block styler:

  • Accordion block
  • Call to Action block
  • Callout - part of the Description block, slate
  • Card - part of the Teaser block and Listing block, it includes several variations like round card e.g., used for Avatar
  • Divider block
  • Headings slate
  • Hero block
  • Item block - used for text with an icon (remixicon or custom SVG/image) on the left/right
  • List slate - ordered and unordered
  • Quote block
  • Statistic block
  • Tag block
  • Table block
  • Tabs block
  • Timeline block

Future releases

Below is a non-exhaustive list of the work-in-progress which is planned for future releases:

  • Navigation Portlet (used on the left/right hand of content)
  • Spacing/padding system. We want to add the ability for editors to consistently apply various spacing/padding on certain components in order to allow a better alignment when components are used together.
  • Improve docusaurus and storybook with more components, controls, and variations in order to better reflect what is possible in Volto.

Generated by auto-changelog.

Unreleased - 2023-04-06T13:47:14.894Z

🐛 Bug Fixes

  • fix(header): external url in header now takes you to the correct url #330 from eea/header-external-url-fix 086c61d
  • fix(item): flex variant on edit when inside blockchooser #333 from eea/fix-item-csss 65b9099
  • fix: dont run isInternalURL twice a48984e
  • fix: github autoformat be97749
  • fix: external url in header 9e3aea6
  • fix: check if client method change 7c53b83
  • fix(item): use child selector instead of descendent as it interferes with blockchooser refs #157040 ad4ca37

💅 Enhancements

  • refactor(megaMenu): align menu items with demo site for better testing 82a5c84
  • refactor(breadcrumbs): updates on structure and story for accessibility 770c8c0
  • change(logo): update eionet svg 3c87fc7
  • refactor(megaMenu): Restructure Topics and Countries lists d816e7a
  • change(mega-menu): use lists for navigation, enhance voice over support for better accessibility d13137f
  • refactor(header): firefox accessibility errors fix c7d35b9
  • change(breadcrumbs): label modification for better screen reader output c967bef
  • refactor(megaMenu): clean up function after test 883eb73
  • change(mega-menu): added code to align countries left column subtitle with the right column 1aa33dd
  • change(mega-menu): sub-title padding tweaks for better spacing normalization e08668d
  • change(logos): updated eionet logo used in the site footer #318 from eea/footer-logo-update 70671d0
  • change(breadcrumbs,mega-menu): better screen readers support, see links instead of groups #309 from eea/firefox-accessibility-tab-issues d6b0b4a
  • change(breadcrumbs): fixed sizing of breadcrumbs list items 1761e98

🏠 Internal changes

  • style(megaMenu): remove comments and unused properties fa5f8f8

🏠 Documentation changes

1.0.6 - 2023-03-29

🚀 New Features

  • feat: add viewport-(width/height) less functions and fixed banner image url #329 from eea/develop e8e70bd
  • feat: add viewport-(width/height) less functions 68300a3

💅 Enhancements

  • change(docusaurus): set full class name for remix icons f435e10
  • refactor(Banner.jsx): use flattenToAppURL helper function to get image source URL 24b13d7

🏠 Internal changes

  • style(theme): update container width and margins in eea theme 3e4446a

🛠️ Others

  • horizontal overflow hidden in view mode f395f27

1.0.5 - 2023-03-28

🚀 New Features

  • feat: improve full-width class 70bba7e

🐛 Bug Fixes

  • fix(banner): Add missing divider for time tag #327 from eea/banner-metadata c46a583
  • fix(banner): Add missing divider for time tag 7d68c39

1.0.4 - 2023-03-27

🚀 New Features

  • feat(copyright): Add copyright prefix - Image - refs #250724 6a72772

🏠 Internal changes

  • style(copyright): Cleanup useless min-height - refs #250724 f2457df

🛠️ Others

1.0.3 - 2023-03-24

🐛 Bug Fixes

  • fix: improve full-width class 9322259
  • fix(header): Remove z-index from subsite logo #320 from eea/subsite-logo 5091100
  • fix(header): Remove z-index from subsite logo d433a97

💅 Enhancements

  • change(header): Add search popup customizations from eea-website-theme 43e5a78
  • change(popup): create custom popup for better accessibility 036aac9
  • change(popup): added most important popup properties from Semantic ui implementation 61f65bc
  • change(banner): use custom-made Popup for better accessibility 10d0fcf
  • change(banner): use custom-made Popup for better accessibility 9108bee
  • change(popup): added also the basic property a4497ac
  • change(colors): update gray-4 color value #321 from eea/update-gray-4 f458ff0
  • change(banner): MetadataField now uses proper time tag when value is datetime b4c4d34
  • refactor(tokens): updated gray-4 b890df7
  • change(footer): Fix error and empty div if no social links are present #319 from eea/footer-social 8922246
  • change(footer): Fix error and empty div if no social links are present 5d934a6

🛠️ Others

1.0.2 - 2023-03-14

🐛 Bug Fixes

  • fix(megamenu): topic menu title is now placed before content 6004bcb
  • fix(megamenu): removed in depth nav_title renaming that set title wrongly to a-z topics 899ca0e

💅 Enhancements

  • change(megamenu): removed special styling from at a glance mega menu section fd0c4c8
  • change(footer): renamed thematic information platforms to environmental information systems e7004a7
  • change(docusaurus): updated static image of footer sections 4ff3185

🏠 Documentation changes

  • docs(What's new): Update 'What's new' d7ed9d6

🛠️ Others

  • fixed accordion selector typo f4cabc8

1.0.1 - 2023-03-13

1.0.0 - 2023-03-13

🐛 Bug Fixes

  • fix(Footer): Open internal links within the same page 5b3e409

💅 Enhancements

  • change(banner): use huge scale instead of full image for better performance 381c58e

1.0.0-beta.6 - 2023-03-10

🚀 New Features

  • feat(site): serve Roboto fonts from eea design system package instead of google fonts #311 from eea/roboto-library f6a1b3e

🐛 Bug Fixes

  • fix: full-width is now properly sized 6e2e348
  • fix(storybook): add fontDisplay 078966a

💅 Enhancements

  • change(image): copyright position fixes, moved image floating to image-block-container 53422e0
  • change(colors:) update the design system colour palette #312 from eea/update-color-palette a5fb694
  • refactor(docusaurus): added roboto library 19de7b1
  • refactor(storybook): added roboto library e991621
  • refactor(tokens): update colours 3a2c1e1
  • refactor(storybook): restored site variables a48478b
  • change(copyright): implemented copyright hover design 6b12441

🏠 Internal changes

  • chore(storybook): switched google fonts to true 4a8cae4
  • chore(colours): changed back yellow 6 87c9bbc
  • chore(lint): lint 9b0f125
  • chore(storybook): lint 29bc809

🏠 Documentation changes

  • docs(colours): colours update 161007e
  • docs(colours): accessibility ee342aa

🛠️ Others

1.0.0-beta.5 - 2023-03-07

💅 Enhancements

  • change(carousel): tweak size of carousel dots for better touch interaction e1fb823
  • change(footer): removed min width and height from links ac33219

🏠 Internal changes

  • style(hiddenStructure): Add hiddenStructure utility to be used with h1 heading on frontpage - refs #158717 672cca2

🛠️ Others

  • fixed less build failure due to changes in footer.less 190bc8c
  • lazyload bg img on footer also ae07162
  • lazyload footer images a0633c9
  • Increase performance - mobile friendly 07d86c8
  • better useOnScreen hook c214b6b
  • role change for accessibility 5e758e0
  • minimum tap dimension for mobile a25e9a8
  • Release 1.0.0-beta.5 e4417e1
  • Add Sonarqube tag using eea-website-frontend addons list b227cf8
  • feature(mobile): increased performance by lazy loading footer images #303 from eea/increase_performance 80d1df1
  • useOnScreen default export 3e6cfdd
  • use aria-labels on dropdown 27e1443
  • prettier a7f8384

1.0.0-beta.4 - 2023-03-01

🚀 New Features

  • feat(footer): Add footer description 2ad0f71
  • feat(footer): Add footer description #306 from eea/footer-description bf655d1

🐛 Bug Fixes

  • fix(footer): Don't show empty row if description is not present 2ca7f7d
  • fix(footer): Add class for children 3c50d15
  • fix(search): Fix search links color #307 from eea/search-accessibility a76f48b
  • fix(search): Fix search links color 69c42ef

💅 Enhancements

  • change(carousel): tweak card width and padding for better arrow alignment e184f70
  • change(storybook): include footer description in storybook e904aa0

🛠️ Others

1.0.0-beta.3 - 2023-02-21

🚀 New Features

  • feat(accordion): storybook accessibility by using buttons for titles #297 from eea/accessibility-accordion 809d52b

🐛 Bug Fixes

  • fix(dropdown): remove close on blur so that we can navigate links using keyboard 5442715

💅 Enhancements

  • change(language): dropdown to use links for proper keyboard navigation 6a7de30
  • refactor(images): cleared unused/renamed images assets 821f5c1
  • refactor(Accessibility): add box-shadow on focus-visible components b1adcc3
  • refactor(images): remove unused docusaurus svgs c5ef14c
  • refactor(header): add escape key functionality, actions from div to button to have proper focus state 8081aa4
  • change(language): restore dropdown duplication in order to properly show and hide language dropdown cb28888
  • change(search): to reflect changes from eea-website-theme 2cc35e0
  • refactor(footer): update p with h3 heading tag for header ca1477b
  • refactor(footer images): removed unused/renamed 186de6b
  • refactor(Accordion): div titles to buttons, test in mobile mega menu accordions eaad4b4
  • refactor(docusaurus): cleanup decorative images fedc4d4
  • change(accessibility): style outline instead of box-shadow 53209f3
  • refactor(Footer): update mobile header size 01ab7f0
  • change(header): set the logo class directly on the link f8fba50
  • refactor(images): clear docusaurus unused pngs db5c611
  • refactor(header-images): removed unused 8250d94
  • change(language): hide language dropdown by default cc6064f
  • change(header): top dropdown menu keyboard navigation #293 from eea/accessibility-megamenu-searchbox 1e6fa65
  • change(button): set focus styling for buttons 33ebfca
  • change(footer): Avoid devtools warning in FooterActions #304 from eea/avoid_warning d774824
  • change(footer): Accessibility update p with h3 heading tag for theme sites title #302 from eea/footer-accessibility 5bf70de
  • change(documentation): Rename all image files to follow the agreed convention #301 from eea/refactor-image-filenames cfe44ef

🏠 Internal changes

  • style(header): react syntax fix 3add127
  • chore(docusaurus): ignore website/.yarn 0b33ffd

🏠 Documentation changes

  • docs(guidelines): add image name convention 290747c

🛠️ Others

1.0.0-beta.2 - 2023-02-13

🐛 Bug Fixes

  • fix(footer): action and copyright #300 from eea/develop 579f3e4
  • fix(footer): action or copyright links are simple a tags for external link 9af5070
  • fix(accessibility): added navigation and footer id's for skip link 48354b9

💅 Enhancements

  • change(footer): typos and modified footer links to be center aligned ac23f04
  • change(footer): added gap for actions and copyright 7d32ddd
  • change(footer): modified footer gap b8a820a
  • change(footer): removed extra text and date from copyright section af47bbe
  • change(navigation): raise z-index of go to top link 485ca72

🏠 Internal changes

  • chore(docs): Update eea.hbs template to beta - refs #158717 196538e

🛠️ Others

1.0.0-beta.1 - 2023-02-09

🚀 New Features

  • feat(search): Add search suggestions style 6b2b77b
  • feat(search): Add search suggestions style #296 from eea/search-suggestions 3b0c956

💅 Enhancements

  • change(search): Add proper margin for search popup 190c9f5

🛠️ Others

1.0.0-alpha.15 - 2023-02-08

🚀 New Features

  • feat(Card): add teaser card grid story 53cac0b
  • feat(utilities): Complete list of text-align utilities - refs #160747 224fab6
  • feat(small): CSS for small HTML tag - refs #160747 ad3c0ad
  • feat(fw-light): Add font weight light utility - refs #160747 c44cf57

🐛 Bug Fixes

  • fix(card): teaser card dimensions on tablet size #290 from eea/teaser-card-grid 013fdf5

💅 Enhancements

  • change(card): added extra content for teaser card story 30690ae
  • refactor(style-menu): add text-color to paragraphs styles #291 from eea/stylemenu-theme-colors 2d78307
  • change(header): Small fix in search popup #292 from eea/search-popup 86c1305
  • refactor(style-menu): add text-color to paragraphs styles 3446bc2
  • change(color): darkCyan is now replaced everywhere by the new green ef3791d
  • change(header): Small fix in search popup 3d622ea

🛠️ Others

1.0.0-alpha.14 - 2023-01-30

💅 Enhancements

  • change(mobile menu): integrate a-z topic with menu rendering logic #287 from eea/develop 05d4c04
  • change(mobile menu): integrate a-z topic with menu rendering logic 246d3d8

🛠️ Others

1.0.0-alpha.13.1 - 2023-01-30

💅 Enhancements

  • change(mobile menu): hardcode a-z topics to '/en/topics-in-depth' #286 from eea/develop 6436224
  • change(mobile menu): hardcode a-z topics to '/en/topics-in-depth' 5235b52

🛠️ Others

1.0.0-alpha.13 - 2023-01-27

🚀 New Features

  • feat(utilities): added has--bg--top center and bottom utility classes 051e6d7

🐛 Bug Fixes

  • fix(header): update green color used in page header #284 from eea/fix-banner-background 29d54db

💅 Enhancements

  • change(site): added fixes from customVolto.css to design package 51ba9b5
  • refactor(Banner): update banner background green color fd4a552
  • change(mobile menu): changed link for a-z topics to point to in depth 721bf23

🛠️ Others

  • 1.0.0-alpha.13 release #285 from eea/develop c966940
  • bump next version to alpha 13 897e906
  • Back to dev 5780dc7

1.0.0-alpha.12 - 2023-01-24

🚀 New Features

  • feat(card, colors): visited color change and title on image option for cards #283 from eea/develop e638ee6

🐛 Bug Fixes

  • fix(mobile menu): sub links when an accordion section is active bb3be81

💅 Enhancements

  • refactor(Card): create card template for stories 2fa77f3
  • refactor(Card): add image with title css 6e6e63e
  • change(card): implement title on image within image section ff6cc60
  • change(card): added image card section, tweaked mobile heading size 0f879e1
  • change(cards): moved image gradient overlay to a mixin.less file 8b4928a
  • refactor(card): Update titles value and size c35ad5c
  • refactor(docusaurus): applied image naming convention ee7bc29
  • change(cards): added image for all storybook card examples 3f19413
  • change(banner): restored label value of metadata field when type isn't date 571a4f2
  • change(card): title padding value for a more balance look 74b6556
  • change(card): removed uppercase transform from title on image 2948ae1
  • change(colors, Docusaurus): Visited link colour change and thematic logo replacement #278 from eea/refactor-visited-link f82d978
  • refactor(storybook): visited link variables b209b2f

🏠 Documentation changes

  • docs(colors): visited link update ece77fe

🛠️ Others

  • fix typos in footer gradient variables 4006640
  • change version to alpha 12 instead of 1 final 3225025
  • feature(card): new card variation with title on top of image #267 from eea/title-on-image-card 2c0ca95
  • Back to dev 477d997

1.0.0-alpha.11 - 2023-01-17

🚀 New Features

  • feat(docusaurus): Header and footer elements section #277 0df271c

🐛 Bug Fixes

  • fix(banner): storybook date input and simplified gradient opacity 7674d76
  • fix(banner): re-added title class on banner title 6d15799

💅 Enhancements

  • refactor(banner): sync storybook and Volto component c9087cc
  • change(banner): removed margin from title 17e592c
  • refactor(banner): sync storybook and Volto component #275 from eea/sync-page-banner-theme 4331fb4

🏠 Documentation changes

  • docs(footer): updates on header elements b41c550
  • docs(footer): add elements anatomy d9f0872

🛠️ Others

  • add(banner): banner title css d003247
  • Release 1.0.0-alpha.11 07e8f85
  • renamed image elements as requested in review 8541fb6
  • remove(banner-gradiant): image gradiant in favour of text 1b58520
  • update(gradient): use 8deg angle 6fd597d
  • update(gradiant): make it 0deg 1bb2696
  • remove(comment) referencing old verison of title 4226d42

1.0.0-alpha.10 - 2023-01-13

🐛 Bug Fixes

  • fix(subsite): Fix logo size on subsite section 65fff54
  • fix(subsite): Fix logo size on subsite section #279 from eea/subsite-fixes 8f6cf94
  • fix(mega-menu): show sub grid only if there are children ddfbd82

🛠️ Others

  • Add variable definitions 293fe65
  • Release 1.0.0-alpha.10 7014d08
  • Add Sonarqube tag using advisory-board-frontend addons list ef58a6f
  • Back to dev 31d4616

1.0.0-alpha.9 - 2022-12-28

💅 Enhancements

  • change(contextnav): Default title is text, custom title is link #273 from eea/context-nav-link-title ef7bdb7

🛠️ Others

  • Show document and folder content-type in Navigation listing 8471db3
  • Default title is text, custom title is link 1ae95b0
  • Context nav title link to # a27a6b7

1.0.0-alpha.8 - 2022-12-23

🚀 New Features

  • feat(copyright): Align copyright options with Volto integration - refs #158210 6bac7f6

💅 Enhancements

  • refactor(logo): import theme site logos to the story 2f29136
  • refactor(logo): update logo and mega search gradient e11f44d
  • refactor(logos): convert logo names to lowercase 07b8228
  • change(item): use default logic of setting align class on content 6b5b47c
  • refactor(logo): update logo 170efe5
  • refactor(logos): convert storybook logo names to lowercase c4b24ec
  • refactor(logo): add eea roboto font logo variations de1224a
  • refactor(logo): add container and segment to logo story 61eff16
  • change(item): removed requirement for aligned classes to be on content 30c0d5d
  • change(logos): cleanup eea logo reference to only eea-logo and eea-logo-white.svg 2796e05

🏠 Internal changes

  • chore(npmignore): Reduce npmjs package size 164c8a5
  • chore(npmignore): Reduce npmjs package size ade9d5b
  • chore(docs): renamed logo mdx to md 52e9d46

🏠 Documentation changes

  • docs(logos): svgs without classes 28a5833
  • docs(logos): add dark mode logos ccc1609
  • docs(logo): update eea logos and add logo wrapper 91cdd66
  • docs(logo): update logos on docusaurus 760e101
  • docs(logos): updated svgs dc224e1
  • docs(logos): add thematic logos 5a21a30
  • docs(logos): add zipped svgs for download 5855bf8
  • docs(logos): wisef logo update 8f90b59
  • docs(logos): move to static, add download 8c1fd5f
  • docs(logos): improve eea logo visibility 82188ab
  • docs(logos): change eea logo to svg f57b846

🛠️ Others

  • logo update or docusaurus thematic logo listing #274 from eea/develop dde90be
  • (feat): Add ability to disable the language select from website top menu - refs #158616 411c8e4
  • Proof reading page header section 230239e
  • bump package version b4628be
  • feature(docusaurus, storybook): logos selection for sites plus inverted options #253 from eea/doc-logo-page dbfc90d
  • Add Sonarqube tag using advisory-board-frontend addons list c4769e9
  • test(Jenkins): Run tests and cypress with latest canary @plone/volto 92feea0

1.0.0-alpha.7 - 2022-12-16

🚀 New Features

  • feat(item): normalized size for image or icon items #258 from eea/refactor-items 945170f

🐛 Bug Fixes

  • fix(card): rounded after removal of has--rounded--true style class d4727af
  • fix(item): removed margin set for description which pushed the text from icon d9d4031
  • fix(project): Proper paths if volto-eea-design-system package is not installed, but in development #270 from eea/correct_paths 0f8ee8d

💅 Enhancements

  • refactor(item): update icon variations and paddings 6a407b3
  • refactor(item): update spacing 2fd91c4
  • refactor(item): initial values for new sizes & add description class 3546296
  • refactor(item): add icon and more size options 1120bb6
  • refactor(item): update image and icon sizes b802573
  • change(item): set same height as width on item images 69cbd23
  • refactor(item): update item part 2 9812ae2
  • change(item): rename large to big class 24ff127
  • change(item): added tiny size that outputs 24px icon sizes 2ea9636
  • change(image): added preview image size default to 400px a0aa867
  • refactor(item): update operator for condition controls 149ccb2

🛠️ Others

  • Proper paths if the package is not installed, but in development 7a2655f
  • Update .project.eslintrc.js a2fd3f2
  • added back descriptionDistance variable until package release 3af811a
  • Release 1.0.0-alpha.7 7e66bcc
  • Add Sonarqube tag using cca-frontend addons list ce47e9b
  • Back to dev cb531c9

1.0.0-alpha.6 - 2022-12-07

🚀 New Features

  • feat(copyright): create copyright component and import it in banner 8fcde9d
  • feat(Header): add hideSearch prop 13ddfe5
  • feat(Docusaurus): Image copyright information #257 from eea/image-copyright-info 2119515

🐛 Bug Fixes

  • fix(tags): content gap when using tags-content wrapper c4eb9b8

💅 Enhancements

  • refactor(hero): add copyright component to hero 0fa88fa
  • change(copyright): implementation to add classes on content sections e10bde6
  • change(copyright): removed color variant 747b8a2
  • change(copyright): removed copyrightVariant from Banner and Hero stories ac62e07
  • change(tagList): modified implementation to align to volto-tags-block 7a57a3d
  • refactor(copyright): remove data section 52cb09d
  • change(copyright): line height to match page header implementation a56254e
  • change(copyright): now uses text color css variable with fallback to white ee7268b

🏠 Documentation changes

  • docs(copyright): copyright documentation a90ed76

🛠️ Others

  • Update usage_markdown.md f76d4a2
  • grammar fixes cb2a5a5
  • Release 1.0.0-alpha.6 6ca32f0
  • feature(copyright): image information #250 from eea/feature-copyright a8618c7
  • lint fix by introducing local variable tagsGap 7b6c0ae
  • Update 3-images.md 1b0ef03

1.0.0-alpha.5 - 2022-11-29

🚀 New Features

  • feat(Iconography): import and showcase remix icons 777112f

🐛 Bug Fixes

  • fix(docusaurus): right bar overflow fix 197c763
  • fix(lists): bullet position by using padding instead of margin 0ecae2e
  • fix(label): color for yellow variant as white isn't accessible on yellow color 91d8880
  • fix(contentBox): avoid text decoration for header-link added on cards 3ccb592
  • fix(label): margin value for ribbon image left and right margin f8e1129

💅 Enhancements

  • refactor(docusaurus): eea color palette in separate file 6c855df
  • refactor(docusaurus): classes for color boxes 80219d5
  • refactor(docusaurus): move supplementary, state and link colors to partials 2776be3
  • refactor(docusaurus): fix side menu / moved more content in palette partial f5b7077
  • change(tag): set gap on tags element for margin between tag elements 726bc6d

🏠 Internal changes

  • chore(colours): fix wrong class name 51ad0a8

🏠 Documentation changes

  • docs(docusaurus): Iconography updates, thematic platforms 2a0e596
  • docs(colors): thematic pages integration ea7a422
  • docs(docusaurus): color updates cc13b54
  • docs(colors): fix swatches accessibility 306cb74
  • docs(docusaurus): typography and colors fixes according to comments on PR ae20a72
  • docs(colours): adjust logos heights 854d4fb
  • docs(typography): merge designer and dev units 65c240e
  • docs(typography): readded extra font sizes, fixed fluid a4a5d89
  • docs(typography): changed em to percentages d417600
  • docs(colors): minors updates and instructions 84ac882
  • docs(colors): blue-grey-6 adjustment e7ab2d1
  • docs(colours): added active colour 574f7a9
  • docs(colors): switch FISE logo to png 335471f
  • docs(colors): updated visited 0248fd1
  • docs(FISE): replaced logo f7d8331

🛠️ Others

  • perf(docusaurus): added remixicon and roboto locally b67b1a7
  • feature(Docusaurus): Updates on color palette information including thematic websites #231 from eea/refactor-docusaurus ec7843d
  • Upgrade Jenkinsfile storybook to yarn 3 d20de8d
  • Back to dev 563fbc5

1.0.0-alpha.4 - 2022-11-22

🐛 Bug Fixes

  • fix(cards-storybook): load slick carousel css for arrow and pagination styles 1159b1b

💅 Enhancements

  • change(cards): refactor cards theming implementation d4e4542
  • change(cards): allow rounded, inverted and theme parameter to be set by has classes 4b4ad89
  • change(card): expect has classes on the card directly 6a9e38b
  • change(utilities): added has text classes to the text alignment utilities e6974c6
  • change(utilities): modified class name for text align using has naming 579a0cb
  • change(theme): ensure that only direct children of container have a default top and bottom margin 7f8b8dc
  • change(build): upgrade action to trigger workflow and wait to latest version c63ad3f
  • refactor(card): theming implementation to allow has theming classes #265 from eea/card-refactoring 24edc99
  • change(theme): add slick-carousel dependency f2eec7d

🛠️ Others

1.0.0-alpha.3 - 2022-11-16

🚀 New Features

  • feat(Header): Add subsite section styling #263 from eea/subsite 00398b8

🐛 Bug Fixes

  • fix(search): position now changed by default to absolute from relative 51b08fc
  • fix(megaMenu): remove paddings for buttons added by active class ec33ebf

💅 Enhancements

  • change(components): load overrides files for our defined semantic files adde7a9
  • change(container): fullwidth now take into account devices without hover 5a35a65
  • change(container): ensure only the top level elements behave like containers 98b85d1
  • change(container): modified column-block grid to remove margin and padding when using full width class 35c1cee
  • change(mega-menu): hide home link and accordion content from mobile menu 1a69172
  • change(container): width from min width 1280px to 1365px max width 66e551e
  • change(container): removed app extras and view setting of layout sizes f6dc1ee
  • change(views): customized DefaultView to pass class into page-document area 91123aa
  • refactor(megaMenu): desktop - use buttons for menu section titles and readjust content cb9315f
  • refactor(megaMenu): add nav_title and nav_description attributes 0d7a568
  • refactor(megaMenu): style sub-title and nav-description b2a48fd
  • refactor(sidemenu): add third level list and items & update active indication e2d87da
  • change(columns): implement narrow, container and wide width classes 9696b54
  • change(container): story to add classes that modify the max width of the containers 37948f8
  • change(container): affect only left and right margin of containers 183265b
  • change(containers): modified class names after layout checks 1dc3689
  • refactor(sidemenu): add is_in_path and is_current attributes for an active example a3fe7fd
  • change(container): story to avoid adding containerwidth property to container div c13d83c
  • refactor(megaMenu): mobile - use buttons for menu section titles a7b632f
  • refactor(megaMenu): update padding variables c5f2583
  • change(views): moved narrow style bellow the default container width styles 72fa58d
  • change(listing): removed container from default view page-document area 69f3d8f
  • change(views): rename classes names to width_view and added app extras layout component 745b772
  • change(container): use important flag for left and right margin a49c83a
  • change(container): add variables for edit and add section of containers f2e2c33
  • refactor(megaMenu): update sub-title paddings 992f919
  • change(site): add a 1rem margin top and bottom on all styled classes dabf6c1
  • change(homepage): removed hiding of staging banner from homepage 4ba2cd7
  • change(container): unset values of page-document on 1200+ browser width dd5bea3
  • change(megamenu): set children to be appended to the right of the menu title b69c23a
  • change(theme): modified wide width to point to 1320px as it's perfectly divisible by 4 8f82573
  • change(theme): modified wide width to point to 1368px as it's perfectly divisible by 4 2349fee
  • change(container): renamed content-text-width to container-text-width 6f788c2
  • change(listing): provide ui container fallback if no class is passed to default view af9e94d
  • change(narrow-view): re-added container class to page-document 56b44a6
  • change(view): set container width for view-viewview class as well 29dc324

🏠 Internal changes

  • style: load header/footer overrides e5b5e0f
  • style(megaMenu): restore item description color 8a19bbb
  • style(megaMenu): restore accordion content bottom padding 8e0c5a7

🛠️ Others

  • Add subsite styling e79c0ed
  • WIP settings column grid width when using full size class affc7ac
  • code cleanup 2cdc3e5
  • fix eslint 30c52e4
  • test(estlint): Fix .project.eslintrc.js aaeaa07
  • modified left value of full width classes with toolbars 70d82d4
  • Release 1.0.0-alpha.3 8fc86a7
  • feature(content): added NarrowView useful for modifying the containers from content-area d937df7
  • jslint fix 9846159
  • Feature(container): flexible container size #260 from eea/feature-flexible-container 8f84c5b
  • Add Sonarqube tag using circularity-frontend addons list 76a41c7
  • fix broken variable call for contentBox.variables introduced in previous commit by mistake d249c11
  • clean up 89f3cb3
  • removed console log from code fad86ae

1.0.0-alpha.2 - 2022-10-28

💅 Enhancements

  • change(documentation): grammarly proof-read suggestions 9f609be
  • refactor(volto-slate): Upgrade to @plone/volto-slate - refs #153447 853d9d1

🏠 Internal changes

🛠️ Others

  • test(cypress): Upgrade to Cypress 10 / Razzle 4 c1c1f4b
  • more explanations a8b2272
  • add announcement bar, showing that EEA DS is WIP e14aeac
  • Update dependencies ee30a2b

1.0.0-alpha.1 - 2022-10-20

💅 Enhancements

  • refactor(footer): update svg and tablet contact link sizes 6aba061
  • change(blockquote): renamed to Callout reflecting the correct naming from Storybook 61a518c
  • change(footer): Shadow removed from logo & tablet updates #252 from eea/fix-footer 6df783d
  • change(colors): updated theme classes for text to use css variable colors cb089fd

🏠 Internal changes

  • style(footer): reduce social icons margin f6a9cf7

🏠 Documentation changes

  • docs(alpha): Update included components in 1.0 alpha version - refs #154387 fcc5af9
  • docs(callout): Rename Blockqoute to Callout in docusaurus - refs #154387 8d733ac

🛠️ Others

0.9.6 - 2022-12-16

🛠️ Others

  • Release 0.9.6 ae19b83
  • feature(copyright): image information #250 from eea/feature-copyright 7b323ed
  • Release-it 1f5671d

0.9.5 - 2022-10-20

🐛 Bug Fixes

  • fix(statistic): margin and slate colors when using the inverted options f263dea

0.9.4 - 2022-10-19

🐛 Bug Fixes

  • fix(edit-interface): block chooser and power user menu item colors when inside content-box 7aee4f1
  • fix(header): hero text going over the logo and menu on mobile resolutions 1434508
  • fix(content-box): z-index of box-inner and added underline to slate links c8b7c7e
  • fix(content-box): adding of underline to links c2f5f0f

💅 Enhancements

  • change(banner,colors): content box theme aware colors banner changes#254 from eea/develop bcb9a8c
  • change(Banner): Add subtitle subcomponent bb67f4c
  • change(item): moved svg filter definitions to item.overrides de70366
  • change(accordion): accordion titles with themes colors can now be modified by css variables e2ac13e
  • change(colors): in lists and callouts to allow color changes 940d1b8
  • change(colors): added backgroundColorSupplementary color variable 1f5262a
  • change(list,bullet): color is no longer primary instead it's text color css variant 8c04670
  • change(statistics): use theme colors with css variable for easy color customization fb72a01
  • change(Banner): Show label in metadata field 1acda3c
  • change(tags, items): use text color with css variable for content color for easy customization 6660e2e
  • change(styling): modified naming of theme css variables a332961
  • change(colors): added backgroundColor color variable b7e6831
  • change(quote): use secondary css var for easier color replacement 7a32312
  • change(statistics): tweaked margin of statistics so that they don't overflow over context boxes b4a8e33
  • change(accordion): allow customization of accordion title background color 6590baf
  • change(colors): introduced css variables for primary colors #247 ac80825
  • change(content-box): override primary text color to white as well 28b43c7

🛠️ Others

  • Include changes in the storybook a4d9fa4

0.9.3 - 2022-10-04

🐛 Bug Fixes

  • fix(card, contentBox): meta font size, removed header override of cards a7f94b9
  • fix(List): Ordered list item story - refs #155248 c70a2bc
  • fix(OrderedList): li third level margin left - refs #155248 fba5cb9
  • fix(cards): inherit color of card description ceda799
  • fix(accordion): Fix content default padding - refs #153783 566adf7

💅 Enhancements

  • change(site): committed fixed from custom into eea design package 9b9a1fd
  • change(jenkins): added yarn policy for storybook building 3d1b844
  • change(docusaurus): typography updates 60a93a4
  • change(item): added item image coloring when applying theming classes 0403fe4
  • change(accordion, site): change text color to tertiary instead of black 4641058
  • change(accordion): allow customization of accordion title with css variables 15e7d27
  • change(content-box): added css variables that will set text color and background for children 86cac53
  • change(tabs): allow customization of tab active and hover color 4370f42
  • change(tabs): color for tabs-block section 6778c92
  • change(cards): by default date is set to appear on the right of the meta section b7b80e8
  • change(cards): carousel dots are now relative positioned daa40a4

🏠 Documentation changes

  • docs(typography): update, local fonts 39a32d9
  • docs(typography): token fix to match used values for heightheight and letterspacing 91693ec
  • docs(typography): token fix to match used values for lineheight ff41b56
  • docs(typography): remove semibold 6eb3e08

🛠️ Others

  • test(cypress): Fix md5 dependency 17f618e

0.9.2 - 2022-09-27

0.9.1 - 2022-09-27

💅 Enhancements

  • change(cards): added ability to change the text alignment using css variables ed532ac
  • change(styles): use flex-end values only instead of end to avoid babel warning 24244b2
  • change(rounded): image size, border radius to ensure more image are turned into rounded options 51e23c1

🛠️ Others

  • Merge pull request #243 from eea/develop 576564c
  • Add Sonarqube tag using eea-website-frontend addons list 4a5be6e
  • Back to dev b251255

0.9.0 - 2022-09-19

🚀 New Features

  • feat(countUp): intall countup package and import it in statistics 10ba7cf
  • feat(docusaurus): custom editUrl function for the components usage pages - taskman refs #154076 93c4240
  • feat(site): Styling scroll-to-text fragments #238 1883fcf
  • feat(docusaurus): added Edit this page link in footer of each page - taskman refs #154076 2cf8746

🐛 Bug Fixes

  • fix(header): Prevent dropdown closing when clicking inside content 838f340
  • fix(cards): position of bullets and arrow clicking on events page 148723 22ef828
  • fix(cards): rounded images show up now even when card parent is cards 48f5e81
  • fix(statistic): add a min-width to content so unwrapped statistics don't break 7c5d511
  • fix(sideNavigation): add role list to list item 58f322b
  • fix(sideNavigation): remove unused useState import f9ea677

💅 Enhancements

  • refactor(sideNavigation): implement the design to the initial navigation & make component dynamic b673d63
  • refactor(header): update top bar 626bdd5
  • refactor(statistic): create custom export and add links 9f9ed56
  • refactor(statistic): update inverted style and add background variations 7578dc6
  • refactor(statistic): remove horizontal display on mobiles & update columns control 58f00e1
  • refactor(header): minor fixes spotted in testing 0f0f3ab
  • refactor(header): update main section heights d669f01
  • refactor(sideNavigation): remove green border and divider 939cd9b
  • refactor(link): update colors for link states 3e9f599
  • change(cards): styles img tag outside of .image ee89274
  • refactor(sideNavigation): update controls a3e8430
  • refactor(statistic): fix firefox issue for fit content 87aa113
  • change(statistics): rearrange controls order b19ae70
  • refactor(statistic): add max width to wrap text for all content 758f8ce
  • refactor(statistic): add max width to label so it wraps the text 824a127
  • change(Side menu & in page navigation): styling according to figma design #221 b2df858
  • change(header): align header with latest figma changes #232 135cd68
  • change(cards): integration when cards also contain call to action buttons f0d8766
  • refactor(iconography): icon group headings b9ccd80
  • refactor(header): add variables for some sizes 8eae84e
  • refactor(Statisctic): Rename slateVariation to extraVariation a07c589
  • change(docusaurus): started example on how to add headings for iconography 53cf843
  • change(cards): remove center alignment of rounded cards body area, only the image is now centered fdfac48
  • change(color): updated link colors #234 feabfe7
  • change(mockup): Access to figma style tokens 0bb25be
  • refactor(statistic): update margin 5190f56
  • refactor(button): adjust vertical margin db6d441

🏠 Internal changes

  • style(statistic): update decimal point 7976aa4
  • style(link): update visited link color d3b18b3

🏠 Documentation changes

  • docs(iconography): added icons, guidelines 0073f1d

🛠️ Others

  • Delete 2-test-new-page.md 749eff9
  • Create 2-test-new-page ab623ff
  • Release 0.9.0 eb7e2e5
  • stylelint fix 114e3f9
  • Move text fragments style to site.overrides 8368cbe
  • Styling scroll-to-text fragments 1bb3914
  • Update Header.stories.js 9036c74
  • feature(Docusaurus): Reflect usage of remixicon in iconography page #239 0802b32
  • Update 1-design.md 146115a
  • Test workflow for contribution - taskman refs #154076 dcb924f
  • perf(figma): access to style tokens 27d8dbe
  • Rename 2-test-new-page to 2-test-new-page.md 4e3be10

0.8.1 - 2022-08-26

🐛 Bug Fixes

  • fix(message): fix size controls ee51e1d
  • fix(docusaurus): intro page hero title color now that headers are using tertiary color 618e3cb

💅 Enhancements

  • refactor(message): restore semantic variables 1c16621
  • refactor(messages): mix semantc and token colors for messages 12efa75
  • refactor(emotiveColors): temp update for tests 61a720c
  • change(footer): removed line between sections and moved actions back to the bottom of footer d9f33e4
  • change(storybook): headings storybook now uses tertiary color by default reflecting site options 1061e77
  • refactor(message): add container to story 1259ece
  • refactor(message): remove override with custom background color on error 9b40cd7
  • refactor(message): add header controls 960c2f7
  • change(message): use semantic colors for messages #204 from eea/refactor-message 22d2c43

🏠 Documentation changes

  • docs(figma): added figma files to repo 6bd4144

0.8.0 - 2022-08-20

🚀 New Features

  • feat(IconCard): card with icon instead of image a85a179

🐛 Bug Fixes

  • fix(docusaurus): typography guideline now has real font values for headings, body, caption and small text 9508db9
  • fix(card): fix content gaps, adjust new meta section and update text color for default f1a78e1
  • fix(item): remove duplicate argType dde0be5
  • fix(iconCard): add aria-label at links 44f64c7
  • fix(card): merge fix df440ec
  • fix(heroblock): color even on edit page by inheriting color instead of using the tertiary color ac53fb7
  • fix(tab): add tabindex for accessibility error ab512be
  • fix(carousel): restore missing variable 1728312
  • fix(carousel): restore flex grow for cards and opacity for arrows ce71305

💅 Enhancements

  • refactor(carousel) add links in carousel cards & update structure and variables of less files f99cb21
  • refactor(iconCard): add control for variations and link 5e1b6a1
  • change(docusaurus, fonts): documented font letter spacing modification 522712a
  • refactor(card): css updates for card variations and styling updates c8b4a43
  • refactor(publicationCard): add links and fix accessibily issue 80adf6c
  • refactor(card): add new section in meta and remove links bfb82ae
  • refactor(item): add stackable functionality 8d714fa
  • refactor(card): update meta section and controls 5e28e12
  • refactor(roundedCard): remove unnecessary code and controls and add all variations 6305c54
  • refactor(roundedCard): add optional link for image and header a6d3bf2
  • refactor(card): add tertiary hover and update css selectors ca06948
  • change(fonts): updated font sizes with values given in figma 4b0ae48
  • change(style): color, space and adjust line-height as described in docusaurus 3366da2
  • change(headings): only h2-h6 get tertiary color 7d81308
  • change(site): removed Archivo import as we should only use Roboto font a6af056
  • change(docusaurus): use tertiary color for headings and body color mirroring the design system styles 145fe73
  • change(fonts): modified headings font size as well as line height f0771ea
  • change(fonts): updated font sizes with values given in figma f16eef7
  • change(docusaurus): use Roboto font from google fonts also for docusaurus adca8e9
  • change(headers): added headerColor variable so that thematic sites can easily choose another heading color f09d2c5
  • change(fonts): typo fixes for typography section of docusaurus cae4b02
  • change(fonts): modified footer and header values afer global font size changes f160d35
  • refactor(iconCards): run prettier fe84e46
  • change(typography): inherit header colors with @headerColor variable 91d9357
  • change(breadcrumb): use tertiary color also for breadcrumb c5cbd44
  • change(heading): on homepage on the first hero set font size to h1 and inherit color 5711096
  • refactor(carousel): update card titles to display styling fix edd966b
  • change(docusaurus): use the tertiary color for body and heading colors 11c4ed4
  • change(typography): modified lineheight-0 after headers now use 1.2 instead of 1.25 04d78a8
  • refactor(card): add links to cards and replace description with title in carousel 0258737

🛠️ Others

  • feature(heading): and cards refactoring #227 from eea/develop 334fbda
  • Update package.json 3870cf3
  • Header refactor 153536 #226 from eea/header-refactor-153536 87a6fe7
  • feature(item): icon is now stackable moving the icon on top #220 b716acf

0.7.6 - 2022-08-15

💅 Enhancements

  • change(footer): Footer updates 147837 #225 fa9ae58
  • refactor(footer): initial redesign of main section 8e85617
  • refactor(footer): restructure theme sites logo columns dcba45a
  • change(footer): set actions before thematic section on mobile db25f96
  • change(footer): fix missing key warning from react dev 77f72d5
  • change(footer): Footer updates 147837 #222 32fed23

0.7.5 - 2022-08-11

💅 Enhancements

  • change(megamenu): mobile improvements with See all links, active elements and non accordion children #224 6767b99
  • change(megamenu): render accordion only if children have children be63ce2
  • change(megamenu): mobile menu design tweaks as seen in latest figma 26d74dc
  • change(megamenu): removed icon from at a change menu items and they are no longer bold as requested 043e772
  • change(megamenu): reset first level panels after each item pass 175351b
  • change(megamenu): mobile menu improvements #223 b3cabfe
  • change(megamenu): fixed key error warnings 075bf01
  • change(megamenu): handle default active sub accordion 6192a99
  • change(megamenu): enable active border only for items not titles fb0b869

🛠️ Others

0.7.3 - 2022-08-04

💅 Enhancements

  • change(megamenu): added icon on mega menu header section d0ad4d8

0.7.2 - 2022-08-03

🐛 Bug Fixes

  • fix(contentBox): z-index of content hidden by bg when using content-box-inner c5a7dac

🛠️ Others

  • Set focus on search input field in the popup on click d12c051
  • Make cypress tests work with both slate and draft selectors 4d8e5b1

0.7.1 - 2022-08-01

0.7.0 - 2022-08-01

🚀 New Features

  • feat(accordion,buttons): primary, secondary and tertiary variations #209 c34617f

🐛 Bug Fixes

  • fix(megamenu): key warning errors 4ecd279
  • fix(container): add padding also for block editors when we are on the add page not just edit b857aad
  • fix(header): bump opacity of gradient class to get rid of green hue of header text 2011b40
  • fix(header): remove console log 3a20023

💅 Enhancements

  • refactor(callToAction): add tertiary variant and restructure exports ac6695a
  • refactor(accordion): add color variations 3504c15
  • change(megamenu): WIP bringing back rendering of item with callback and path modification 6e43d43
  • refactor(megaMenu): add slide down transition and update targetRefs on close 9667157
  • change(megamenu): use renderMenuItem in order to render menu items 9ed5cbd
  • change(footer): replaced eionet logo with an svg variant and tweaked size of eionet to match size of eea logo 32ce462
  • refactor(callToAction): update tertiary state colors 159668a
  • change(accordion): style default accordion using the grey from semantic ui e24907d
  • refactor(accordion): add variations and create a default export 4a9c68f
  • refactor(colors): add tertiary shades for element states 1e24a7e
  • change(tests): try to modify tests to use slate instead of draft a2e2485
  • change(megamenu): set active class on storybook list items 112bff1
  • change(megamenu): add border for active element of menu 5e7dfa5
  • change(package): condition modification of navDepth settings dd21dad
  • change(mega menu): use non variable to fix build of volto-kitkat-frontend 3ecd652
  • change(header): prefix mega-menu active class for adding border 32898cb
  • change(tests): use data-slate-editor instead of contents that was found in draft js instead of slate 1e0413c
  • change(stories): hide variant control from button link story 43f8c41
  • change(stories): hide variant control from button link story aea7126

🛠️ Others

  • feature(theme): added context navigation component story and default style 5a6955f
  • feature(megamenu): open default accordions on mobile navigation based on pathname cc299c1
  • fix eslint warnings 3b30282
  • bump release version to 0.7.0 fa82cbd
  • Theme fixes, mega menu selected element both in desktop and mobile #211 b482729
  • feature(mega-menu): added menu slide down animation #208 4360d0e

0.6.5 - 2022-07-06

🐛 Bug Fixes

  • fix(header): double click to close dropdown is no longer required b8a2ed0
  • fix(header): menu generation when atAGlance isn't found d68b03c
  • fix(menu): removed minHeight that enlarged the global menu 133be1e
  • fix(hero): image dimensions when full width and height isn't enabled 4114f73
  • fix(contentBox): removed negative z-index that hid fullwidth bg color bd60faf

💅 Enhancements

  • change(hero): tweaked hero block height and padding 994b6f8
  • change(item): tweak size and padding of icon when used inside item dbdef19
  • change(typography): updated letterspacing values and clarified values used for certain type tokens 8a13bf8
  • change(item): enable theming for icon and text color and added tertiary option 6d4444f
  • change(header): top section chevron sizes and margin as requested in enhancements document b307c74
  • change(cards): add underline to links when applied to headers and use tertiary color by default 874f956
  • change(utilities): wrap in quotes h2 and h3 of quoted-wrapper 8aa4716
  • change(package): bump package version to 0.6.5 denoting bug fixes release 0585aeb

0.6.1 - 2022-07-01

🚀 New Features

  • feat(UnderlinedTitle): create story and necessary utilities 8beb56b
  • feat(headers): added underlined titles with theming support af67561

💅 Enhancements

  • refactor(heading): move underline story and update controls 2c9bfd2
  • refactor(underlineTitle): add content box for different variations 0878915
  • refactor(underlinedTitle): add control for changing heading size 211f515
  • refactor(underlinedTitle): Restore text variation dropdown control bd8c611
  • refactor(utilities): add color variation for headings and text 7e3a779
  • refactor(utilities): update border bottom utility and restore line height for headings 7fe4a7b
  • refactor(headings): update the line height of headers according to docusaurus instructions 9da19b3

🏠 Internal changes

  • chore(countup): package for statistics 26fcd09

0.6.0 - 2022-07-01

🐛 Bug Fixes

  • fix(item): adjust the container in stories a848c46
  • fix(tag): align start for tags on mobile, update path for Tag List and add containers b9de845
  • fix(item): update image width & height on mobiles and add 3 line clamp for description 0cd2c46
  • fix(pageheader): metadata font size on mobile to be readable 0a9b1fa
  • fix(breadcrumb): fixed variable name for breadcrumb item 2b547eb

💅 Enhancements

  • refactor(Item):create item story with custom default class 069ae02
  • refactor(pagination): add pastanage menu overrides and remove any eea theme css from default story 5080810
  • refactor(item): update variables from px to rem 30eed78
  • refactor(Item):add default item mobile padding 3518465
  • change(site): added fixes from custom 0fe4d80
  • refactor(Pagination): add default pagination stopry and rename previous as Secondary a5e3e13
  • refactor(pagination): comment out secondary pagination and its styling bcf4cff
  • refactor(tags): remove content class and add flex wrap d6333ca
  • change(logo): use a real svg logo for white eea logo 3b80dc7
  • change(header): show eea information systems on tablet as well ce82ceb
  • refactor(tokens): update letter spacing tokens 5f8753b
  • change(letterspacing): updated letter spacing positive values b31818f
  • change(pageheader): add bottom margin on mobile for sharing dropdown actions d3cda47
  • change(pageheader): removed blogger, reddit and stumbleupon sharing links e4acc4e
  • refactor(Item): add default item background color c978c8d
  • change(package): bump package version 1f01f72

🏠 Internal changes

  • style(item): update item image e585e9d

🏠 Documentation changes

  • docs(colors): token usage c433ec6
  • docs(Docusaurus): typography and spacing updates 48d1269
  • docs(Docusaurus): various fixes a972a31
  • docs(typography): updates 66d95e4

🛠️ Others

  • Tabs block custom border left/top ca4cce0
  • Fix sidebar tabs in Volto CSS c287db5

0.5.5 - 2022-06-23

🐛 Bug Fixes

  • fix(contentBox): color of cards when inside content-boxes 76a4520

💅 Enhancements

  • change(homepage): moved fixes of homepage to custom and colored carousel arrow 0a226ef

0.5.4 - 2022-06-16

🐛 Bug Fixes

  • fix(block-style): Content box preview in sidebar 6362766
  • fix(header): ensure transparency goes as high as the search icon 4470e13

💅 Enhancements

  • change(contentBox): add background as before element instead of using full-width 7e0a596
  • change(content-box): content box links are now underlined f7976f5
  • change(homepage): added fixes from custom c3e0333
  • change(hero): add margin top with the height of the top section on edit fefa6bb
  • change(cards): fix default card color when inside content-boxes 6fdf3aa
  • change(container): removed override of content-box-inner container 66fe7d4

0.5.3 - 2022-06-16

🐛 Bug Fixes

  • fix(homepage): hero and homepage fixes for #151156 #198 43d4efc
  • fix(header): fixed top section width on edit page ce5898b

💅 Enhancements

  • change(hero): added min height to hero-block-image-wrapper 3cc37c0
  • change(hero): spaced hero block has a 3rem margin top and bottom c463b03
  • change(hero): added extra top margin on hero-block-body from tablet and up within homepage 64142c3
  • change(hero): tweak min height of hero block e1271b4
  • change(card,contentBox): use inherit for text color to inherit black from body c1ba3b6
  • change(container): on section-edit modify only left and right padding values fe6e3ec
  • change(utilities): bump z-index of overlay class ede3209
  • change(hero): fixed variable reference for margin of body from homepage 092b90b

0.5.2 - 2022-06-14

🚀 New Features

  • feat(contentBox) : add new Content Box component 2ebbb47
  • feat(ContentBox): Add primary, secondary, tertiary themes 87cb2fe
  • feat(ContentBox): Update storybook with available themes 93b26b2

💅 Enhancements

  • refactor(contentBox): restructure the component to be more flexible f0d2de6

🏠 Internal changes

  • chore(contentBox) : add lint changes 5aaf740

🛠️ Others

0.5.1 - 2022-06-13

💅 Enhancements

  • change(header): changed homepage text color 64ce8b6
  • change(hero): added styles for adding dark overlay to hero bf1d292
  • change(homepage): hide stagingBanner on homepage fb6e319
  • change(header): use variable for homepage hero-block padding 89ff344
  • change(tokens): modified grey-4 color to point to a 10% shade from original color b406283
  • change(header): added min-height for mega menu needed for 1 items menus 18814f4
  • change(hero): hero section block integration #192 4ea2f40

🛠️ Others

0.5.0 - 2022-06-11

🚀 New Features

  • feat(hero): added storybook implementation of hero component #172 17b9d16
  • feat(hero): add hero block component and stories 6019fc8

🐛 Bug Fixes

  • fix(header): Internal links in mega menu d8ca135
  • fix(header): show active menu when clicking on children a54fa67
  • fix(header): accessibility and dropdown possition fixes 505ac36
  • fix(header): fix accessibility issue by David 783dcec
  • fix(header): dropdowns disappear on resize 52338fd
  • fix(header-topdropdown): dedupe html elements for topdropdowns cd8a2a7
  • fix(header): transparency class should apply on the current bg color or image f9a0033
  • fix(header): mobile dropdown now visible 34371b4
  • fix(header): dropdown disappears after window resize #116 fc7dd8b
  • fix(header-topdropdown): dedupe html dropdown elements for topdropdowns #115 f10a7a8

💅 Enhancements

  • refactor(megaMenu): update mega menu in header component 2d1ce45
  • refactor(header): update structure and variables of top bar af70909
  • change(header): renamed mega menu items href attribute to url 3ed8144
  • refactor(header): update main section and and add color variations f2f0fd1
  • refactor(header): minor updates on colors and widths a70129f
  • refactor(hero): add full-heigh control to adjust height a45cb7c
  • change(header): disable sticky setting until feature is more stable 1d7af95
  • refactor(hero):make button variant and inverted different button controls 7e182ca
  • refactor(header):main bar sticky on scroll up 9c9e7c6
  • refactor(headings): update heading sizes for mobile 19f3cca
  • change(header): hide first link(home) from header menu on site ae7f3b9
  • change(megamenu): typo correction and key setting on list.items 96d2c4f
  • change(header): use Link instead of a tag for menu items 9812b3f
  • refactor(header): add control for inverted logo 023ca45
  • refactor(hero): move quoted utility to h2 tag 7376676
  • refactor(header): add link for menu title inside desktop mega menu 24355d0
  • refactor(utilities): update hex with color token 8dc65ef
  • refactor(header): and mega menu to latest spec #114 44fcf68
  • refactor(header): update search input and file endings afab36f
  • refactor(header): add control that toggles transparency class on main section b8d4bdb
  • refactor(header): restore union dropdown after implementation 7e98bab
  • refactor(header): minor responsive fixes 16a0006
  • refactor(hero): align hero's text and meta seperately 4fa958f
  • refactor(hero):add button variant controls f362a7b
  • refactor(header): update search input 368962e
  • change(header): mark top level active menu item 665c449
  • refactor(hero):prettier & style changes d846884
  • refactor(header): add control for main section stickiness 2f07572
  • change(header): use viewport width for changing mobile text in header dropdowns b50fa58
  • refactor(header): add fluid font sizes 5f2743e
  • refactor(header) add position sticky & transparent for main section 29df772
  • refactor(hero): update variables with new design tokens 1d97922
  • refactor(Language List): render language dropdown as ul and li elements 3617442
  • change(header): introduced item class to the mega menu link content 00ca376
  • refactor(Language List): add less variables 7ccc1cc
  • change(header): disabled active menu when clicking on globalnav links 3f7b5ee
  • change(header): target link instead of span directly 9e865fb
  • refactor(header): remove unused imports 7e232db

🛠️ Others

  • Add item themes; override .block .ui.image width based on size 06010db
  • Move item icon themes to item.overrides 31e8921
  • Override only the width 8d49270
  • Override tile image in .block parrent 005655d
  • Update package.json 9dc3816
  • feature(item): added themes to item icons #190 a6a2907
  • update storybook header.topdropdown e58ac08
  • use volto-screen-helper width ea156aa
  • Add divider content for metadata field in Banner 327ad1c
  • rename to viewportWidth 32162e7
  • don't connect component to store 470b8ba
  • Add end of line 51639d8
  • behave as mobile under 480 only 11b99e1
  • make it account for all mobile-s,m,l 69e23ae

0.4.5 - 2022-06-08

💅 Enhancements

  • change(tabs): Add style for tabs accordion template #187 fb8adbf
  • change(footer): avoid react error by providing key prop to grid column ef0b193

🛠️ Others

0.4.4 - 2022-06-08

🚀 New Features

  • feat(divider): create story for divider b10a2e0

🐛 Bug Fixes

  • fix(divider): restore space between classes c595c15
  • fix(divider): Text colors and transform e524e10
  • fix(footer): story aria labels for social media links 254bdc7

💅 Enhancements

  • refactor(footer): update logos and less structure 66b8e0f
  • refactor(footer): first footer updates d18a2ee
  • refactor(footer): logo updates and adjustments 101bc9d
  • refactor(footer): use tokens and adjust spacing 2cb1669
  • change(footer): moved SubFooter logic to SubFooter.jsx from Footer story 902383a
  • refactor(Divider):add divider with content inside story e2d66dc
  • change(footer): added managed by section as properties 9328fc3
  • refactor(divider): remove custom divider d4870d2
  • refactor(Divider_:remove green color class & add tertiary 95f3018
  • refactor(footer): use remix icons for social links 5ef9aa2
  • refactor(Divider):remove clean class and use fitted prop 8d2be35
  • change(Divider): Rename color property to theme 0deffc8
  • refactor(footer): update links and logo align 7afbab9
  • change(footer): tweaked column sizes to the values before my changes fdf2718
  • refactor(footer): to latest figma design #182 3e0ba2b
  • refactor(footer): move subfooter logic to the proper component #185 3034577
  • refactor(footer): update controls b0b872b
  • refactor(testimonial): update divider 784450a
  • refactor(testimonial): changed divider color to secondary 84282f9
  • refactor(divider): remove custom divider from theme config a0409e8

🏠 Documentation changes

  • docs(divider): switch to secondary color 239844b
  • docs(divider): showcase path fix d5ea03f

🛠️ Others

0.4.3 - 2022-06-03

🐛 Bug Fixes

  • fix(edit): Fix columns/accordion inner toolbar padding fafbb52

💅 Enhancements

  • change(docusaurus): completed removal of description from guides 42424b9

0.4.2 - 2022-06-02

💅 Enhancements

  • change(docusaurus): moved color swatches around in the color guide 8a395fc
  • change(docusaurus): removed description from components and introduced category listing f220bf0
  • change(docusaurus): rename gap to space and added em spaces f5b042d
  • change(docusaurus): moved extra docs to webdev section 1ce0797
  • change(docusaurus): moved md_components files into webdev/md_components 73c1c08
  • change(docusaurus): added category yml for all sections 1740572
  • change(docusaurus): color guideline updates and spacing tokens documentation #148 c1154ba
  • change(docusaurus): modified story links to avoid broken usage tabs 78dc8d8
  • change(docusaurus): renamed several file id's so that they match the incremental naming sequence 11299c9

🏠 Documentation changes

  • docs(Docusaurus): timeline, testimonial, quote and tags aaa54ec
  • docs(spacing): add relative gap tokens 92abc8f
  • docs(colors): updated colors a28c99e
  • docs(tags/content): new page about tags and content 60be402
  • docs(Docusaurus): labeled icons f6a0f61
  • docs(typography): add font size and line height tokens 2ff65e4
  • docs(spacing): add spacing gap tokens 2d53727
  • docs(spacing): add missing gaps 442db46
  • docs(docusaurus): minor fix 6e66513
  • docs(spacing): aligned images e946fe5
  • docs(spacing): new image fcd3294

🛠️ Others

  • merge changes from develop into docusaurus token documentation a940138
  • perf(docs): restructuring order 8f4134d

0.4.1 - 2022-06-02

🚀 New Features

  • feat(languageLabeledIcon) : add new component 110558e
  • feat(LanguageLabeledIcon):add new component d00200c
  • feat(newTabLabeledIcon) : add new component 8f5cd31
  • feat(labeledIconGroup) : add new component 787d648
  • feat(DownLoadLabeledIcon) : add new component 6ea2fa1

🐛 Bug Fixes

  • fix(LabeledIcon) : fix lint errors 91b042f
  • fix(LabeledIconGroup) : fix links for tests daa1065
  • fix(LanguageLabeledIcon):bug fix & languages change 1436e2b
  • fix(LabeledIconGroup):fix based on Langauge & Download Labeled icon components changes 3015864
  • fix(newTabLabeledIcon) : add link item b1a9ada
  • fix(Labeled Icons):minor bug fix 00f3022

💅 Enhancements

  • refactor(labeledIcons): adjust new tab labeled icon to figma and replace px with rems 904615d
  • refactor(LanguageLabeledIcon):implement with pop up 0f3dd8f
  • refactor(labeledIcon): add group wrapper in labeled icon stories 4b7dd31
  • refactor(DownloadLabeledIcon):implement with pop up aa61f9b
  • refactor(labeledIcons): adjust language labeled icon to figma 5741e3d
  • refactor(labeledIcons): adjust download icon to figma and replace px with rems 4ae8530
  • refactor(LanguageLabeledIcons):minor storybook change 78f5544
  • refactor(LanguageLabeledIcon): set language code to uppercase and minor storybook change ac28693
  • refactor(labeledIcon): adjust paddings 9c1ecdd
  • refactor(labeledIcons): update margins for group labeled icons 5fa5ca9
  • refactor(labeledIcons): add variable for icon color 9f9d3cb
  • refactor(labeledIcons): update colors on download links c042642

🏠 Internal changes

  • chore(labeledIconGroup) : lint changes 535cee4
  • style(downloadLabeledIcon) : fix styling 6d8e3ac
  • style(downloadLabeledIcon) : fix alignment 4558017
  • chore(LabeledIconGroup) : lint changes ab36476

0.4.0 - 2022-06-01

🚀 New Features

  • feat(Carousel): create carousel for cards 2b0d737
  • feat(ItemwithIcons): Initial Item group with icons, new item variation 7f4ea47
  • feat(utilities): add file and basic utilities 05c88b2
  • feat(utilities): add file with basic utilities classes #173 855185f

🐛 Bug Fixes

  • fix(tokens): hsla function for shadows b8e5d37
  • fix(tokens): remove css var from less file a9c4224
  • fix(carousel):add storybook controls descriptions 269a603
  • fix(item): remove image width css from item.less 7b21cb2
  • fix(table): Set responsive breakpoint to @tabletBreakpoint 067e018

💅 Enhancements

  • refactor(item): import item.less in theme definitions c516374
  • refactor(Label):add corner,ribbon & basic label stories and styles e2bbbb9
  • refactor(Label):style changes based on label importance class ce4d5d1
  • change(tokens): rename gap to space and added em spaces 719efc4
  • refactor(item): add classes for size, set default to tile and add controls for grouped items d5a0405
  • refactor(tokens): add borders, shadows, shapes and z-index tokens 7069106
  • change(tokens): name spacing tokens gaps and added missing values up to 80px as documented 9fbd912
  • refactor(quote): Rename sourceInfo to extra info 76c2b40
  • refactor(item): WIP replacing unstackable with row e3a44de
  • refactor(tocens): add color design tokens 13bb165
  • refactor(item): adjust margins to match figma designs 6334581
  • refactor(carousel): remove title from story and color on card hover 12a1d7c
  • change(tokens): updated sizes with 4-8-16px increments 1f53d65
  • change(tokens): added size tokens to be used for width of elements cda5dea
  • change(utilities): values need important rule 96150d9
  • change(tokens): added also rem space values aedbbdd
  • change(tokens): updated z-index tokens with negative values 404efe4
  • refactor(tokens): add 14px font size token 8d8695d
  • refactor(docusaurus): restructured and improved sections navigation #174 b47b026
  • refactor(tokens): add 12 and 14px font size token #176 3681147
  • refactor(tokens): remove conditional border radius f0fe5ad

🏠 Documentation changes

  • docs(website): created new sections, improved website navigation 243f0be
  • docs(homepage): adding design system homepage with links for upcoming sections c9a9685
  • docs(docusaurus): copyedit, improved navigation 998762a
  • docs(website): restructuring, moved current DS docs to new folder 8bb612f
  • docs(homepage): copy editing ee37d6f

🛠️ Others

  • Release 0.4.0 f4bc509
  • feature(homepage): added Item group with icons #167 2ec99f5
  • feature(tokens): added borders, z-index, shadows tokens #171 74c1788
  • feature(tokens): added initial color design tokens #169 da3eae0
  • perf(carousel): added slick library ca9be51

0.3.1 - 2022-05-19

🐛 Bug Fixes

  • fix(input,segment): toggle inputs and padding fixes within Volto sidebar forms de030d6

💅 Enhancements

  • change(login): restored width of login container to 376px 0564293

0.3.0 - 2022-05-17

🚀 New Features

  • feat(Callout):create Callout component with Blockquote style 3d486b1
  • feat(callout): Align the Callout component with Volto slate component e9343ff

🐛 Bug Fixes

  • fix(testimonial): fix storybook arg names b9df52f
  • fix(table): tweak responsive table for extra long headers 7f9f9e2
  • fix(quote): fix color and padding issue 310d6b3
  • fix(accordion): Fix accordion active title color 57af165
  • fix(testimonial): remove info arguement 9593d95

💅 Enhancements

  • refactor(Table):add responsive mobile table story and styles aed69e6
  • refactor(testimonial): adjust to volto design | fix avatar image size 546070e
  • refactor(Quote):rename Pullquote component to Quote 9384a0c
  • refactor(Quote):rename Quote.Metadata to Quote.SourceInfo dfae8b1
  • refactor(Quote): rename Author to Source 6d400f6
  • refactor(Quote):move Testimonial component under Quote folder e2467c2
  • refactor(testimonial): readjust rounded card b419334
  • refactor(Table):wrap table with semantic ui container 24ac2bb
  • refactor(Testimonial):minor storybook bug fix 7b6d128
  • refactor(Callout): wrap story with semantic ui container ead362d
  • refactor(quote): update action name to match the functionality caf2e35
  • refactor(table): add borders to responsive table with celled attribute 8a71a67
  • change(table): make use of headerSortableWhiteSpace variable fd836fb
  • change(table): use the @mobileLandscapeBreakpoint for max 480px media query 90880ab
  • refactor(Quote):rename pullquote to Quote in Testimonial f54da19
  • refactor(Testimonial): change card class name e995c32
  • refactor(Testimonial): prettier changes 904594b

🛠️ Others

  • feature(tokens): added tokens folder for design tokens we can use in the system a542172
  • perf(lint): fix f2ef3ab
  • Release 0.3.0 8724b28

0.2.4 - 2022-05-13

💅 Enhancements

  • change(segment): brought back overrides from pastanaga into our theme 14efd02
  • change(container): removed padding from containers restoring thus the defaults c2ed813
  • change(grid-story): added container as grid width is influenced by container width 459f481
  • change(breadcrumb): removed padding from breadcrumb added by container c5df567
  • change(container): modified all outputted widths to align to grid 9f29cef
  • change(breakpoints): restore Semantic UI breakpoints, adding extra needed values e7f5b1e
  • change(container): restore maxWidth to 100% now that the last value is 1120px 8b55c58
  • change(header): wrap header globalnav links useful for editing section 10d4f56
  • change(breadcrumb): added vertical variant to the breadcrumbs like we do in Volto f405f84
  • change(breakpoints): added also contentBreakpoint for backward compatibility b6c9212

🛠️ Others

  • [JENKINSFILE] Add failure comment, no jenkins fail c325bf1
  • prettier changes 134da52
  • [JENKINSFILE] format PR comments 739438c
  • [JENKINSFILE] mention comment author in comment 39a26aa
  • [JENKINSFILE] remove debug, add error per stage 903eecd

0.2.3 - 2022-04-29

🚀 New Features

  • feat(CallToAction):add feat call to action ab53642

💅 Enhancements

  • refactor(button): add container to stories 6c02c19
  • refactor(tab): update vertical tab columns and content b473fab
  • refactor(call to action):render call to action with Button as="a" e7dfabf
  • refactor(button): update inverted button colors c822021
  • refactor(Tab):scrollbar change in mobile & vertical tab fix 0e34cbf
  • change(banner): added icon class to share icons 48e866e
  • refactor(Button): move button to forms folder 94996fc
  • refactor(Tab):minor change in secondary pointing menu variables 280b6c4

🏠 Documentation changes

  • docs(button): import call to action stories e4eed44

0.2.2 - 2022-04-22

🐛 Bug Fixes

  • fix(publicationCard): restore line endings 582859e
  • fix(form): added back overrides from Pastanaga theme a3f7ff8
  • fix(OrderedList) : add list only if sub list exists 8acbc8d
  • fix(label): update highlight label color d55bbb0
  • fix(publication card): run prettier 81a5bfc
  • fix(avatar) : fix naming convention for arg 84fc5fa
  • fix(tab): restore mobile font sizes 58f39be
  • fix(addForm): add min height to add form and fixed block chooser overflow ca4415d
  • fix(OrderedList): adjust margins to fourth sublists 663d384
  • fix(dropdown): being hidden because of third party css 7d353df
  • fix(modal): overflow hidden as clearfix of last child from modal b4923f5
  • fix(RelatedContent):fix merge conflict adc34bf
  • fix(button): labeled class needs to be placed after left or right keyword 53d1204

💅 Enhancements

  • refactor(card): prettier fixes e10e3d6
  • refactor(card): add card variations e16d05b
  • refactor(card): remove stories 0deb0ca
  • refactor(card):delete primary and secondary card stories 1f95d22
  • refactor(Avatar) : remake avatar as card variant ea77cdd
  • refactor(card): add styles for card variations 7407bd3
  • refactor(storybook): add story with related content inside of a tab dca008a
  • refactor(card): Rename variables from avatar to rounded be01316
  • refactor(avatar): update less variables and layer structure f965db1
  • refactor(PublicationCard):remake publication card to be a semantic card variation 5a0c6ab
  • change(button): simplified button styling fe892d6
  • change(button): simplified storybook naming and examples 9a7df4f
  • refactor(Avatar) : convert avatar component to card variation 2004a94
  • refactor(Related Content): change in grid and add see all button 955450e
  • change(button): added back button.overrides from pastanaga theme 3b55acb
  • refactor(card): add card class control 68c91a9
  • refactor(card):delete publication card variables & overrides files 6be8a03
  • refactor(OrderedList): rename TOC to Ordered List and add container to the story e00c4db
  • refactor(card): add card grid fluid story with no columns f38251c
  • refactor(list): remove horizontal control 1f5e576
  • refactor(avatarGrid): update less variables and layer structure db554a8
  • refactor(Related Content):show button when there are more hidden cards 57ff1c8
  • refactor(RelatedContent):change to use new card variant instead of publication card component 7cf424a
  • change(breadcrumb): brought back pastanaga overrides to breadcrumbs bca1c93
  • refactor(card):delete publication card folder & story 68bf773
  • change(buttons): modified basic and circular variant behavior c06fed9
  • refactor(card):tertiary variation minor story update 87b8dca
  • refactor(DescriptionList): add container to story d647c1a
  • refactor(List):render ordered list with ol,li tags 87813c1
  • refactor(OrderedList) : change table of contents story to ordered list cb6197c
  • refactor(publicationCard): update tag and name variables c109ad9
  • refactor(UnorderedList): update list as ul, list items as li and add container to strory 2c096e1
  • refactor(card):organize controls and minor bug fixes f3f6e35
  • refactor(less variables): publication card style changes c5a84e9
  • refactor(less variables): add less to related content e1a5543
  • refactor(RelatedContent):delete publication card component 2ed0ed4
  • change(button): basic button is again without padding, border and background 5a907c7
  • refactor(PublicationCard):remove link wrapper 5911a0d
  • refactor(less variables): change publication card height per viewport d7a5256
  • refactor(Timeline):change timeline icons b2fe0bf
  • refactor(publicationCard): replace px with rems 53bf8da
  • refactor(Related Content): change in related content grid bf856ce
  • refactor(List):render description list with dl,dt,dd tags ec669a7
  • change(button): show only labeled variant for buttons with icons bf49944
  • refactor(card): import image for rounded card ca5a47e
  • refactor(progress): add container to story dfb33bb
  • refactor(storybook): add publication card story with different description sizes 23af97b
  • refactor(List):render default list with dl & dt tags ece2280
  • refactor(storybook): add publication cards stories with longer description 37adefa
  • change(button): basic icon buttons no longer have box shadows c2f3ea3
  • refactor(card): remove story afc5f79
  • refactor(less variables): change card description line number per device 6946fda
  • refactor(card): update rounded card image path 8db3a85
  • refactor(DefaultList): add container to story f971193
  • change(button): bumped z-index of sidenav expand button 445ed8a
  • change(progress,label): color accessibility fixes #151 09cf6e3
  • change(button): text button now has an underline with a focus border like other buttons cdd9043
  • refactor(card): update card variation grids path 756589c
  • refactor(card): minor fixes 3a880d7
  • change(button): primary color is blue and secondary is green 53e0a0c
  • refactor(List):change styles to match with the tags lists are rendered 2673890
  • refactor(progress): update colors for accessibility ea2f454
  • refactor(card): move avatarGrid & relatedContent to Card folder 1959d52
  • refactor(Timeline): change storybook timeline colors to fix accessibility issues 79da8dc
  • change(segment): restore light grey background color for secondary segments 8716b08
  • refactor(relatedContent): adjust column paddings 8a1520d
  • refactor(storybook): clear up code 3ada154
  • refactor(card): use the rounded class for avatar grid 8c000f3
  • refactor(card) Update rounded card class 140b587
  • refactor(avatar): add variable for image border radius c23341c
  • refactor(label): add container to story 565101f
  • refactor(progress): update value color for accessibility error 6fc76f8
  • refactor(card):use jsx extension 413d328

🏠 Internal changes

  • chore(Avatar) : add container to stories 41b748c
  • style(OrderedList): prettier fixes ed95e4d

🛠️ Others

0.2.1 - 2022-04-08

🐛 Bug Fixes

  • fix(version): Switch to 2.0.0.alpha.1 83b8b8e

🛠️ Others

  • cleanup(loader): Remove useless HTML d1d180c

0.2.0 - 2022-04-04

🚀 New Features

  • feat(card) : add new default card color-schme 965adea
  • feat(label): Handle slate links and footnotes f382431

🐛 Bug Fixes

  • fix(buttons,toggles): border and background color when active 147629 #139 ea36f31
  • fix(checkboxes): background color when they are toggles 4b6ab67
  • fix(buttons): border set on basic buttons appearing on svg elements of Volto UI 69ca73f
  • fix(label): Zotero/Footnotes inside label 0ee4d58
  • fix(card) : add control for image url in storybook b28e530
  • fix(less variables):change font family e4bca9e
  • fix(storybook):minor bug fix 9fc53bc
  • fix(tag): fixes merged theme config eb30363
  • fix(Banner): prop types fix a270e5b

💅 Enhancements

  • refactor(tag): splits Tags component to TagList and tag, changes default tags style 78a5f8c
  • refactor(Banner):add banner share pop up in banner story c9688b2
  • refactor(tag): remove classes and actions that add background color ce9b6f9
  • refactor(Banner):change banner's image wrapper implementation 9153dd1
  • change(package): bump release version to 1.10.0 7e984c1
  • refactor(card): align cards and images, update less variables d47c978
  • refactor(card): add class inverted for default card 919a56e
  • refactor(tag): changes component name e1db068
  • refactor(tag): changes color metallicBlue to bottleGreen e4b68ac
  • refactor(less variables): change tag list mobile view fcded3d
  • refactor(tagList): update story to not use tag color classes 8b5b61b
  • refactor(Banner):minor bug fix ff8c352
  • refactor(Banner): add metadata field sub component 327b7e7
  • refactor(banner): add and adjust remix icon for banner action 1bf3ffa
  • refactor(banner): replace px with rem and adjust share popup padding a568329
  • refactor(Banner):add type class to metadata field and apply styles to it 86a2866
  • refactor(less variables):change tag list styles 8670087
  • refactor(banner): share items display flex on desktop 3ff8684
  • change(banner): added background gradient, share popup, metadata show and hide #136 2f5dcca
  • refactor(banner): update gradient 570ee1e
  • refactor(tags): removes hardcoded ':' ea58e86
  • refactor(card): remove card border bc77739

🏠 Internal changes

  • style(card) : add lint and prettier changes 9d9a773
  • style(tag): remove comments 501fcdf
  • style(tag): stylelint and prettier changes 08b6386

🛠️ Others

0.1.9 - 2022-03-25

🚀 New Features

  • feat(all): 1.9 release #124 0d3f6fb
  • feat(callout): Align volto-slate callout with blockquote style 9e0bb49

🐛 Bug Fixes

  • fix(inpageNavigation): restore hidden on top functionality c554e6e
  • fix(list): Fix TOC margin on 3rd level f17da79
  • fix(inpageNavigation) : add smooth scroll animation 42f6564

💅 Enhancements

  • refactor(footer): update visual and mobile margins 64f05af
  • refactor(header): restore union dropdown after implementation a7029c5
  • refactor(pullquote): adjust to the new figma design 78e4606
  • refactor(breadcrumb): adjust font sizes and import remix divider 5fcabaf
  • change(header): use viewport width for changing mobile text in header dropdowns 5a7868e
  • refactor(inpageNavigation): adjust to the new figma design 4073acf
  • refactor(tab): add max width for tab items 366d279
  • refactor(less variables):change pullquote styles 9ad94bb
  • refactor(Pullquote):change quote positions and add Pullquote.Metadata sub component 6bce35f
  • refactor(inpageNavigation): Update to remix icons 19a6061
  • refactor(inpageNavigation) : move icon & text to be in column 0953910
  • change(breadcrumbs): modified breadcrumbs template to behave like breadrumb template 490a559
  • change(package): bump release version to 1.9.0 43a6e4b
  • refactor(breadcrumb): adjust font sizes and import remix divider #120 09a3a01
  • change(menu): modified secondaryPointingItemMaxWidth to a value that equals to 250 ea138a1
  • refactor(pullquote): introduce meta section, use remix icons, integrate slate callouts #119 fd740c9
  • refactor(footer): updated visuals and gradients #117 e5c6d18
  • change(scrollToTop): feature inpage navigation revamp #121 3cf20a8
  • refactor(footer): update visual and gradient 764ec23
  • change(header): use 12px font size for mobile resolution dropdowns 6dad0fa
  • change(nav): added navDepth to 3 in order to enable mega menu integration c4f73fd

🏠 Internal changes

  • style(inpageNavigation) : lint changes 3641d78
  • style(inpageNavigation) : add less variables 0699c70
  • style(pullquote): create variable for icon font size fea9b0a
  • style(inpageNavigation) : add lint & prettier changes f8dd012
  • style(inpageNavigation): remove comment 1aee011

🛠️ Others

0.1.8 - 2022-03-18

🐛 Bug Fixes

  • fix(card): avoid long links from spilling outside of card body area 95b8951

💅 Enhancements

  • change(typography): set heading sizes as detailed in docusaurus typography section 189bf20
  • change(docusaurus): content tweaks, inpage navigation section #112 b62d1b1

🏠 Internal changes

  • chore(docusaurus): fixed grid tablet breakpoint value c7fbc09

🏠 Documentation changes

  • docs(docusaurus): capitalization remove bf8fa44
  • docs(docusaurus): update 1c04976
  • docs(docusaurus): comment address on pr 112 6e4fe3b
  • docs(docusaurus): color minor update 13f9fda
  • docs(docusaurus): tabs and breadcrump update d0547e5

🛠️ Others

  • doc(colours): add more content ec66248
  • Add divider content for metadata field in Banner f1e34bd
  • Release 1.8.0 fd6ba04

0.1.7 - 2022-03-15

🚀 New Features

  • feat(less): add global gap sizes 3c83f20
  • feat(icons): import remix css 29967fb

🐛 Bug Fixes

  • fix(menu): fix border overflow for tabs and pagination e88721f
  • fix(accordion): responsive and accessibility issues c225935

💅 Enhancements

  • refactor(menu): update paddings for tabs and pagination 533a509
  • refactor(accordion): import semantic icon for remix arrows 9aa77d8
  • refactor(all) icons, accordion, button and menu itml #108 52ed2ca
  • change(storybook): segment stories now contain several elements 98a7654
  • change(table): inherit header alignment instead of hard-coding values ebb5193
  • refactor(icons): add remix icons c4c1a92
  • refactor(container): restore mobile width to auto 2df184c
  • refactor(button): update action button hover color bb09d71

🏠 Internal changes

  • chore(docusaurus): docs delete 5f9d733

🏠 Documentation changes

  • docs(colors): corrections da64c4c
  • docs(list): default list showcase 8ded062

🛠️ Others

  • bug(form): input min-width more specific to not break volto interface 3f5b5d4
  • Update package.json 3dba28b

0.1.6 - 2022-03-11

🚀 New Features

  • feat(cards): add custom display for volto-block-image-cards 645096a
  • feat(PublicationCard):create publication card component & styles 3e5f9b7
  • feat(PublicationCard):create publication card component & styles 12cdd5d
  • feat(Related Content): create Related Content component 77eda95
  • feat(Related Content): create Related Content component 08d495b
  • feat(pagination,related) added several r3 components #105 08d47c1

🐛 Bug Fixes

  • fix(Related Content): limit publication card number to 4 e7df032
  • fix(less variables):rename publication card variables 55c6fb8
  • fix(Publication Card): add link to card and arg name fix 36a7c96
  • fix(radio): fix bullet scaling issue with firefox 5f02c95
  • fix(radio): fix bullet scaling issue with firefox dbb2e27

💅 Enhancements

  • refactor(form): remove custom classes and add container to form items 6b5442a
  • refactor(form): remove custom classes and add container to form items d1ec083
  • refactor(form): update form wrapper component a719576
  • refactor(form): update form wrapper component 0736ec7
  • refactor(form): adjust form items to volto theming 4213cfb
  • refactor(form): adjust form items to volto theming 374ffbc
  • refactor(breadcrumb): remove custom class anf and new variables b3cb83d
  • refactor(breadcrumb): remove custom class anf and new variables d5808ad
  • refactor(storybook): clear up unnecessary form elements controls f7e7d5b
  • refactor(storybook): small change in unordered list story 3ffd872
  • refactor(storybook): small change in unordered list story 6ce16e9
  • refactor(pagination): fix menu overrides for tabs that affects pagination fe8c4ca
  • refactor(pagination): fix menu overrides for tabs that affects pagination 3f4b726
  • refactor(Loader):remove image & add background image 70fe041
  • refactor(Loader):remove image & add background image ac38126
  • refactor(list): remove selection control a09b179
  • refactor(list): remove selection control 17bf710
  • refactor(storybook):unordered list minor change df2b727
  • refactor(storybook):unordered list minor change ef6db73
  • refactor(colors): remove metalic blue color b2f95b6
  • refactor(colors): remove metalic blue color 1eea33f
  • refactor(button): update variables b1774d8
  • refactor(button): update variables 061f3e3
  • change(blockquote): treat slate as a variation of blockquote component 19bd9a5
  • refactor(container): remove important from rules e984771
  • refactor(storybook):add textarea control to add/remove fluid class 475f540
  • refactor(container): remove important from rules 1cc6984
  • refactor(storybook): add required attribute to form fields fecee27
  • refactor(progressBar): update progress bar colors with vars c4ef1f0
  • refactor(progressBar): update progress bar colors with vars a44d73c
  • refactor(storybook): add required attribute to form fields 21da79e
  • refactor(list): adjust bullet size 2b29e4e
  • refactor(list): adjust bullet size 61c341c
  • refactor(statistic): add inverted background to global variables 1427e70
  • refactor(statistic): add inverted background to global variables ea25dfa
  • refactor(statistic): remove custom class 46cc560
  • refactor(container): update mobile width d548a44
  • refactor(grid): replace px with rem units e792f51
  • refactor(statistic): remove custom class b5c8e7c
  • change(docusaurus): updated template to change what's new title 3e15f4d
  • change(footer): added display variable for footer site logos d5b3c2f
  • refactor(grid): replace px with rem units f0331d0
  • change(github): auto deploy only on develop branch 11d6b4e
  • refactor(header): implementation in preparation for Volto integration #20 #89 95b136d
  • change(github): trigger autobuild when modifying templates contents 46094b1

🏠 Internal changes

  • style(list): prettier fixes f9e3b05
  • style(list): prettier fixes 8eb715b
  • chore(github): merge changes from develop to develop-itml 063bd6e
  • chore(github): build deployment only on develop branch a5a1b08
  • chore(github): build deployment only on develop branch bb455aa
  • chore(github): merge changes from develop to develop-itml 129c12f

🛠️ Others

  • Revert "chore(github): merge changes from develop to develop-itml" ca9520f
  • refactor breadcrumbs component, make it functional and customizable e902d69
  • rollback(cards): move custom display to volto-block-image-cards 2564b1e
  • bring back segment wrapper and make it attached 8458f03
  • no display: flex for blockquote added from slate 5595ce1
  • Add rule about code length a5f3652
  • Add indenting rule 15c44cb
  • fix warning related to proptype 946c6c6
  • fix profile section css overflow db5126f
  • Add rule about import sorting 804e188
  • don't use volto-slate 6a02976
  • remove segment custom width 1d3ea40
  • Add rule about naming vars 8f9020f
  • update style for accordion title 0b0d678
  • Release 1.6.0 e771e65
  • update bbcab87
  • add margin to <br> element to simulate gap as in design c6685c1
  • make breadcrumbs default size as tiny 589581f
  • remove uneeded style 82a8fb1
  • Add rule about hardcoded values e04e0df
  • Add file mode rule 65c9a93
  • Add DRY rule 66c9c3a
  • set profile section overflow to auto 71ab47f
  • Add Sonarqube tag using eea-website-frontend addons list 647a6e3
  • removed override already present in card.less 50d2ab2
  • update 7a1d482
  • Add functional components rule; add classnames rule 91a0b06
  • added comment about need for removal of this fix later 65b8166

0.1.5 - 2022-03-08

🚀 New Features

  • feat(cards): add custom display for volto-block-image-cards f49ffb6
  • feat(KeyContent): add new component 2534c54
  • feat(docusaurus): Updated developer guidelines ca146ff
  • feat(storybook): add testimonial component 55d9747
  • feat(storybook): add AvatarGrid component b668445
  • feat(storybook):add Loader component f675834

🐛 Bug Fixes

  • fix(breakpoints): fix largest screen breakpoint bug on scaling e4a11c8
  • fix(profile): section css overflow and padding issues #95 bb9eb0f
  • fix(storybook): lint auto changes for AvatarGrid b8e74f1
  • fix(components): add grid structure to various components cc33546
  • fix(header) re-added span tags removed in pull request #74 00702d7

💅 Enhancements

  • refactor(button): styling updates 37afda5
  • refactor(tab): updates on variables and overrides 54bf703
  • change(blockquote): treat slate as a variation of blockquote component 5e8a8b8
  • change(footer): added display variable for footer site logos 2f942b4
  • refactor(checkbox/radio): remove header from message and adjust top position of bullet 4a072b3
  • refactor(color): remove secondaryColorDarken variable 74c8ba0
  • change(docusaurus): updated template to change what's new title 58f58c8
  • change(github): auto deploy only on develop branch bfa35a3
  • refactor(header): implementation in preparation for Volto integration #20 #97 cddda20
  • refactor(breadcrumbs): component, make it functional and pluggable #32 #94 9f42e80
  • change(card): added styles for volto cards integration #92 a46ac21
  • refactor(grid): remove column count from example ac0e9cf
  • change(github): trigger autobuild when modifying templates contents 5f7d152
  • refactor(grid): remove custom grid 1d978a9
  • refactor(Form):change form field wrapper implementation 73cdd6d
  • refactor(message): update colors to match design 633ce31
  • refactor(checkbox/radio): update variables and remove important rules ad533b4
  • refactor(less variables): add variables to less for new components 47df026
  • refactor(Tab): fix vertical tab alignment 401bdf2
  • refactor(lint changes): add lint changes 6f6847f
  • refactor(inpageNavigation): adjust to volto theming 62f74ea
  • refactor(message): updates on styling b4cf850
  • refactor(banner): update class name ef0969b
  • change(github): use develop for auto pushing a32a723

🏠 Internal changes

  • style(design-system): unix eol 631fa90
  • style(checkbox/radio): prettier fixes a04939f
  • style(design-system): unix eol 3c753f0
  • style(message): stylelint fix 5b75057

🏠 Documentation changes

  • docs(docusaurus): visuals guidelines 544a950
  • docs(docusaurus): search guidelines 0fb229d
  • docs(docusaurus): loader page 892a25d

🛠️ Others

  • Reformat header.less 1f99dfc
  • Close menu when changing path 65daea9
  • refactor breadcrumbs component, make it functional and customizable 4ec374e
  • rollback(cards): move custom display to volto-block-image-cards 79d4c89
  • Open overlay menu on global menu click cc749bc
  • bring back segment wrapper and make it attached 9f413ff
  • Use renderMenuItem also in mobile menu 02de0bb
  • Fix clicking outside closes menu af52664
  • Cleanup args in header story 2bf6a30
  • fix warning related to proptype 824b9be
  • fix profile section css overflow 8fd2654
  • don't use volto-slate 70ca3d4
  • remove segment custom width 4a60d84
  • update 96f4af0
  • Fix TopDropdownMenu component rendering in mobile a4626de
  • Add usePrevious hook 797faba
  • make breadcrumbs default size as tiny 3c8e1c6
  • Update package.json fa020cb
  • Add rule about hardcoded values 0c6912c
  • set profile section overflow to auto 8db62bb
  • added comment about need for removal of this fix later 6fdbd71
  • Add Sonarqube tag using eea-website-frontend addons list 6051724
  • removed override already present in card.less 93c4e5a
  • Remove console.log calls 8a3a4cb
  • update 81bb7d4
  • Update comment ffa2400
  • merge develop into this branch ad5b388
  • WIP a8d97f1
  • Use header.less from develop branch 99edbc6
  • WIP 57b5783
  • WIP 785da36
  • WIP 5d1eba9
  • adds Tags e37fc19
  • Add useClickOutside hook 70364c8
  • Implement outside click handling fa6f818
  • Simplify overlay menu template 28b0478
  • fixes less variables, fixes tags positioning cc19b9b
  • WIP 15bc0f4
  • no display: flex for blockquote added from slate 312a893
  • Add rule about code length 318cd48
  • Add indenting rule d589685
  • Add rule about import sorting cd337c1
  • Add rule about naming vars b112de0
  • Bring back classNames from header subpopup e477a51
  • removes tags hashtag from jsx 6b8b3e9
  • WIP d481324
  • fixes undefined on empty classes 4b29080
  • stylelint changes a5ab830
  • Footer link color @white 578e4f7
  • add margin to <br> element to simulate gap as in design 9ab9a97
  • impors colors from site variables 6117267
  • small fix for the link in footer action 72df049
  • remove uneeded style 66e9064
  • use proper naming conventions for var naming 596e314
  • Add file mode rule 805baa7
  • use less variables b43ac8d
  • Add DRY rule 2f1584e
  • Add functional components rule; add classnames rule 1b2915e
  • fix z-index of header 7d2a5d6
  • Remove comment 7d120b1

0.1.4 - 2022-03-01

💅 Enhancements

  • refactor(pagination): adjust to volto theming 06cc3b6
  • refactor(Form):create form field wrapper file 95b9934
  • refactor(megaMenu): update margins for menu items 230e476
  • refactor(megaMenu): update gradient 47f2ea4

🏠 Documentation changes

  • docs(docusaurus): divider page c6bb238

🛠️ Others

0.1.4-beta.0 - 2022-02-25

🚀 New Features

  • feat(github): added feature and bug reports templates with our guidelines as checkboxes 1549093

0.1.3 - 2022-02-25

🐛 Bug Fixes

  • fix(all): change eol to unix 62e7224
  • fix(banner): separate url value f9c9140
  • fix(all): merge eol c68f6e0
  • fix(blockquote): align self property now uses a valid entry ec76163

💅 Enhancements

  • refactor(megaMenu): new implementation ff013af
  • change(volto): removed customizations made for ims theme from volto-eea-design-system bc8d514
  • refactor(Timeline): divide to sub components and change files to .jsx 3e2bd3b
  • refactor(header): update variables 4e5d08d
  • refactor(Header): link header's menu to mega menu 08406d8
  • refactor(Menu): change mega menu implementation 455a51b
  • refactor(Grid):minor changes and delete extra files 272585d
  • refactor(timeline): adjust to volto theming b98641a
  • refactor(megaMenu): fix link hover issue for tablet 564e972
  • refactor(header): add remix icons and minor updates c9c97dd
  • refactor(Header): change header buttons implementation 6608b8c
  • refactor(Header): add sub components and change existing Main 74c35a3
  • refactor(table): adjust to volto theming ab7a0e8
  • refactor(Footer): delete Actions & ThemeSites files and clear imports 7a78456
  • refactor(header): update variables 326655a
  • refactor(Breadcrumb): add react router link and minor bug fix 073a3a3
  • refactor(Header): show menu on search & minor bug fix 4d49a8a
  • refactor(List): add extra default list story 95665cd
  • change(docusaurus) change generation of what's new section and bump package version 6c35cff
  • refactor(Footer): minor code changes 67cb4bc
  • refactor(Menu): add class to mega menu items for styling 19baa34
  • change(accordion): modified default accordion stories titles with real accordion names cf11cc8
  • refactor(Header): accessibility image alt fix a7347a6
  • refactor(header): adjust to volto in progress 760beca
  • refactor(Header): header items as storybook arguments 388c752
  • refactor(banner): update less variables 35b0a98
  • refactor(banner): actions as buttons; don't hardcode url for banner image; subcomponentize Banner, add Banner.Action; add developer guidelines on inline styles and line endings; 6dd5a41
  • refactor(blockquote): fix responsive margins and sizes rems 209f94f
  • refactor(Input): label position and style change 970074a
  • refactor(header): update dropdown menu 32eb0fa
  • refactor(timeline): theming updates c80c9aa
  • refactor(Blockquote):remove image stories a6357ca
  • change(docusaurus) proofread blockquote usage section and removed unused api section 0bb29fd
  • change(infrastructure) cherry-pick fix 9639243 skipping jenkins on auto commits fc744cd
  • change(ci) build storybook and docusaurus only when pushing to develop-itml branch 4de0cbf
  • change(infrastructure): modify whats new doc when committing the auto deployment 39df33e
  • change(blockquote): introduce float argument for blockquote with image storybook 8fc7290
  • refactor(pullquote): add word break 2245e53
  • refactor(Banner): minor bug fix b9073b6
  • refactor(table): fix th font weight a96a0a7
  • refactor(comment): remove avatar border radius d42c37b
  • refactor(banner): adjust title size 7a24d9c
  • refactor(Image): change image path a580da6
  • change(infrastructure): specify that docs folder contains changes for deployment a1ca915

🏠 Internal changes

  • style(input) prettier fixes e83fa0c
  • chore(storybook): prettier fix 354c7b3
  • chore(design system): technical commit for edw integration tests 9f76035
  • style(storybook): prettier fixes 3c9ad34
  • chore(infrastructure) updated branch with changes from bitbucket 77866f8

🛠️ Others

  • doc(colours):fix color to better show primary ones 705b789
  • doc(colours):change font size to fit text in one line 4ad7516
  • bump package release to 1.3.0 f3cfe4f
  • Refactor banner into content subcomponent f8df238
  • lint fixes cda322d
  • rollback don'ts grammar change and disable unresolved import for Banner.stories.jsx a1bd715
  • Add space line in component d4d1a5f

0.1.2 - 2022-02-17

🚀 New Features

  • feat(blockquote) added blockquote styles as a custom module d30662e

🐛 Bug Fixes

  • fix(inpageNavigation): hide at the top of the page 97ef500
  • fix(footer):missing image ac91a29
  • fix(comment):fix broken image 8125dc1
  • fix(message): fix font loading fdc498e
  • fix(logo): logo change 5f8c8af

💅 Enhancements

  • refactor(storybook): multiple components fixes 4a3ff51
  • change(infrastructure) re-enable integration tests for auto release stack ce8daf8
  • refactor(storybook): global site files styling update f3770f1
  • refactor(storybook): multiple components 9277aac
  • refactor(footer) adjust to volto theming update a59f1c3
  • refactor(header): minor styling update dd6b55c
  • refactor(Header): change header mega menu 7559b57
  • refactor(banner): adjust to volto theming 451b949
  • refactor(accordion): minor styling update aeaf25f
  • refactor(footer): adjust to volto theming bdff176
  • refactor(footer):mobile responsiveness 14822be
  • refactor(storybook): main and custom less files update 1607760
  • refactor(timeline): update after removing timeline addon f54d380
  • refactor(Footer): replace with subcomponents 378c652
  • refactor(Header): header change 029e850
  • refactor(Header): change header bar 2b766fd
  • change(docusaurus) use itml branch for docusaurus deployment 6e286c5
  • refactor(accordion): adjust to volto theming 971fcb8
  • refactor(Header): add sub components 7f955db
  • change(docusaurus) tweak auto deployment to always commit changes from docs a2940da
  • refactor(banner): less and variables files created d5b1a8a
  • refactor(label): adjust to volto theming 3c945e1
  • refactor(message): adjust to volto theming 3e950fc
  • refactor(Footer): add sub components and props c3d1487
  • refactor(modal): modal and confirm adjust to volto theming 83b60e9
  • refactor(comment): adjust to volto theming 84348c3
  • refactor(storybook):adjust headings 32f64f9
  • refactor(Header): add comments to header menu c2c83b2
  • refactor(Accordion): clear up accordion stories code 4e59b8f
  • refactor(segmant): adjust to volto theming 3ab211e
  • refactor(button) minor styling update 8782bb2
  • refactor(banner): change image position cdd76d5
  • refactor(breadcrumbs): update less variables 640817e
  • refactor(list): adjust to volto theming 1079c73
  • refactor(timeline):adjust timeline module 213eb11
  • refactor(blockquote):adjust to volto theming 5eec87f
  • refactor(progress): add progress bar colors ccf3c98
  • refactor(pullquote):adjust to volto theming fee4466
  • refactor(Header): change mobile mega menu c7ecf18
  • refactor(statistic): adjust to volto theming b726e49
  • refactor(button) adjust to volto theming eb257f8
  • refactor(form): minor styling update 79934b2
  • refactor(Footer): create Actions & Sites sub components 446840b
  • refactor(inpageNavigation): adjust to volto theming 85c631a
  • refactor(Inpage Navigation): changed button's display 36e5b4f
  • enhancement(docusaurus) modified headings to be within release versions 19ace30
  • refactor(storybook): move components to ui folder cb91f88
  • refactor(Header): change mega menu de0fc6b
  • refactor(Pullquote): divide Pullquote to sub components 34413c4
  • enhancement(docusaurus) replace changelog when auto-building docs Refs #145331 da25c0e
  • refactor(popup): adjust to volto theming d0d192d
  • refactor(card):adjust to volto theming 2ab6f91
  • refactor(item): adjust to volto theming 89a16af
  • refactor(pullquotes) remove unnecessary variables e0d20a3
  • refactor(progress):adjust to volto theming d1ab950
  • refactor(blockquote) change variables names 36fd5be
  • refactor(comment): adjust font sizes 0311ed1
  • refactor(InpageNavigation): clear up code 1d7afdc
  • refactor(container): change variable name for computer padding 26d123f
  • refactor(inpageNavigation): remove imports 25c1d1c
  • refactor(storybook): update ui index components exports ce78d47
  • change(infrastructure) auto build storybook when pushing to develop-itml branch of volto-eea-design-system e9aa5bc
  • refactor(storybook): delete demo stories 8b58d02
  • change(docusaurus) align deployment steps for building docusaurus 37e4ce0
  • refactor(storybook): remove components from customizations folder 8930ede
  • refactor(tab): minor styling update 1252ad0
  • refactor(comment): change avatar src e5f9c4c
  • refactor(banner) : change file type and folder 878742b
  • refactor(form elements):changed text 919beea
  • refactor(Image): change image src b971084
  • refactor(Pullquote): add component propTypes d32c5e6
  • refactor(blockquote): adjust font sizes d71a3ce
  • refactor(footer): update font sizes 1c91c35
  • refactor(Blockquote): add component proTypes ea02649
  • refactor(logo): update image f611372
  • refactor(docusaurus): restore config f2c5239
  • refactor(blockquote): update component name 572e655
  • refactor(header): fix story header import ceda6c7
  • change(infrastructure) auto build docusaurus when pushing to develop-itml branch 7bebdf5
  • refactor(storybook): remove components from customization folder 4a9bb9b
  • refactor(banner):story rename 56ff603
  • change(testing) removed navigation from cypress tests until component is finished 5549f4c
  • refactor(Segment): change to .jsx extension 5cb35d8
  • refactor(Pullquote): change to .jsx extension 564cf7e
  • refactor(PopUp):change to .jsx extension dcb24ff
  • refactor(InpageNavigation): change to .jsx extension dfefce3
  • refactor(Blockquote): change to .jsx extension 44a1645
  • refactor(heading): story name update aa10f34

🏠 Internal changes

  • style(footer): prettier fix 902c257
  • style(storybook): prettier fixes 59f941d

🏠 Documentation changes

  • docs(docusaurus):multiple page updates 2aba73e
  • docs(docusaurus):update page content 565697f
  • docs(grid):update components grid 60eb083
  • docs(docusaurus): page adjustments 0641eac
  • docs(docusaurus):updated various pages f860176
  • docs(docusaurus): logo change 3af5e5c

🛠️ Others

  • added sortable table stories and descriptions 6d44dd7
  • Layout components theming 5861013
  • recovered files from origin a4ac04f
  • grid component & stories changes 4a5752e
  • Updated what's new section with actual commits from volto-eea-design-system repo fc5e3c3
  • Docusaurus title possible fix. db699e7
  • form elements stories added description & default values 6b4f6eb
  • removed API tabs 58aa928
  • Layout updates 854f388
  • Refs #142123 removed extra customization of semantic.less: ab9de81
  • added page-header,footer and grid in docusaurus 660c8e3
  • Manual docs build and commit 666eb6a
  • added svg & png files f1338d5
  • added missing components to docusaurus 934dfd8
  • Control descriptions updated 56581eb
  • Grid updates 700332d
  • Button theming update 0ec68b6
  • site variebales & overrides changes 7251162
  • Table and Tabs theming 49f0860
  • Responsiveness updates 48e1351
  • added various components to docusaurus 550d719
  • Checkbox and radio updates 24652a2
  • remove images from typography and colour docs 8493e92
  • added guidelines' text and finished all components 02d75fc
  • added more missing components in docusaurus 8be8263
  • Prettier changes on docusaurus 5f1e5eb
  • Grid updates ae09945
  • Minor fixes for tests 3bdf306
  • Layout updates 8b7a4dc
  • Footer and TOC theming bb3d3c4
  • Refs #145331 manually commit changelog until autobuild is stabilized 93168b0
  • label component changes df8c0ff
  • added several sections to the theming guidelines ff1a649
  • Updated removed files. 84f9b8c
  • added more docusaurus components 52a3b9e
  • Progress Bar 9f2efc9
  • Modal and Confirm updates 3b306c6
  • Add proper changes to whatsnew meant in previous commit 40f78e3
  • Form Descriptions de0dfbc
  • Prettier fixes 1337e6f
  • Deleted files b82f982
  • add new images for spacing 7b7b2c4
  • Messages Theming ad621a3
  • added new content to docusaurus 1c83452
  • Minor less updates a36a8bb
  • Tabs and lists updates e37eef1
  • Inpage nav and timeline components 76f0f82
  • Prettier updated files 679b9d2
  • dropdown initial d8aef26
  • Prettier changes f068af0
  • List initial 6d3b969
  • List story updated e96a6f6
  • Statistics updates 74bf639
  • styling c169cc0
  • timeline comp storybook changes 1f42686
  • feature(docusaurus) added theming guidelines ded1f04
  • Properly commented out integration tests. 48b3a15
  • Reattempting commented out integrations tests. 3dd8211
  • Button theming 4231e1c
  • Card initial 06dace5
  • form element storybook changes c4b06aa
  • Pagination theming 2a80175
  • Accordion theming 8061bf9
  • global var updates and radio story 9526ee2
  • created pullquote component & stories df35563
  • Item stories added description & default values 9d459f2
  • storybook clean up code bffd326
  • List updates 28f1b53
  • Button classes updates 788c289
  • Prettier fixes 678c9be
  • Removed header title from partial docusaurus components. ed7c45e
  • created banner component and stories 9be170f
  • Breadcrumb stories description & defaultValue -- clean up code 186ab65
  • Refs #142123 added customization of semantic.less: 1e02356
  • Card stories added description & default values f6b408f
  • Statistic and accordion updates 16064ce
  • breadcrumb component & stories changes 5bceb98
  • Container initial 3eb7155
  • doc(docusaurus):Fix text for various parts bfd3fa2
  • blockquote component & stories 879b640
  • Refs #143412 removed doc comments breaking doc building e6a6756
  • Popup updates ce2d641
  • Global variables for colors and borders added 6e5fbd6
  • Tab stories changes 5429cfb
  • Confirm stories added description & default value 85cda14
  • Kebab case class names b41cd07
  • Card and Comment class updates 3899465
  • Accordion updates c97ba39
  • item stories changes 772e41f
  • Accordion class updates 9cdde86
  • Comment stories added description & default value cb6f25b
  • Accrodion stories description & default value ab8fb88
  • Pullquotes updates c598421
  • Modal and confirm class updates 0ae47e6
  • Tab and paggination updates 96796ff
  • Form Updates e986a9f
  • Classes renamed 73c8c3d
  • List and item less updates ce0de17
  • Confirm theming 36e20ce
  • container overrides changes 4b3970b
  • Docusaurus theming fc4a8c5
  • refacto(headings): update mobile headings sizes b2e9f83
  • list stories and style changes c61db53
  • Tab theming e31e6c3
  • Message and pagination classes updates c230687
  • Segment initial d5724fe
  • Refs #143412 removed doc comments from api_markdown breaking doc building efeacba
  • Timeline and responsiveness updates 1ed1524
  • Refs #142123 use swap font-display for performance reasons 083738f
  • Breadcrumb stories minor changes 3d0d17c
  • Table component stories minor change 0bf4083
  • List stories changes a64b304
  • blockquote component minor changes cdf71a8
  • ckeckbox stories minor change 6d6e508
  • image component storybook changes 91290ec
  • button overrides changes d5b78dd
  • accordion overrides changes fdcf7d5
  • Accordion component and stories changes 5079247
  • Card theming 23bbb9d
  • statistic overrides changes 2b11cb5
  • Refs #143412 build docs only on pull request like we do with storybook 473bb87
  • Card component stories minor change | added link icon deb423a
  • comment component stories changes f1c5e75
  • Accordion component bug fixed 815e91d
  • Refs #145331 use iso date to release so that we see also time ceedf08
  • correct connfig for doco 93e1313
  • Item updates fae93d4
  • added layout grid 2e6be55
  • tab overrides changes 87aaf32
  • message overrides changes 6dccfca
  • segment storie changes 296371f
  • progress component stories changes df10c2e
  • message comp storybook changes c86b405
  • Accordion cmponent stories | minor bug fix 6de0d81
  • Refs #145331 add all changes when auto building docusaurus ce11cce
  • perf(timeline):removed semantic timeline package 0aeb34a
  • Tablet Breakpoint update b229c27
  • Refs #143412 set storyBook Url to eea.github.io b7fdecb
  • bump package version to signaling of a major release c835f1d
  • small commit to trigger deployment of storybook and docusaurus be46ea3
  • doc(accordion):revert previous change 3de02da
  • fix typo for caption @desktop line-height pixel number 1671552
  • Commented out integration tests. 574cfec
  • popup overrides changes a9555e3
  • container component stories fixes 692cfce
  • Added timeline to package json fixed f2e93e0
  • Refs #142123 modified import of volto-eea-design-system icon.less: a7fab7d
  • Refs #142123 reference icon.less from this package: 5616e6d
  • Menu component stories change 2797716
  • Image stories minor change ddb9f1d
  • card component stories changes 6ccba1e
  • Added timeline to package json 93031d6
  • table stories code clean up b7b2a56
  • Refs #143412 removed extra baseUrl from docusaurus config 79f36da
  • Accordion stories minor change ffe808a
  • Theme assets 3f4bea4
  • Merged with develop 167ec9f

0.1.2-beta.2 - 2022-01-03

0.1.2-beta.1 - 2021-12-22

🛠️ Others

  • Tab component stories minor changes 4690a6f
  • Comment component stories minor changes a87cb6a
  • Form stories changes fc30c90
  • Grid component stories minor changes 798fdd0
  • Image component stories minor changes be93385
  • Menu component stories minor changes cb1f9a8
  • Dropdown component stories minor changes 57cf954
  • Header component stories minor changes 264fd46
  • Confirn component minor changes 9a00bc1
  • Item component stories minor changes 6994fa0
  • Label component stories changes 5cc5843
  • Container component stories minor changes e6e40b3
  • Message component stories minor changes ba9d377
  • Breadcrumb component stories minor changes ff7a176
  • Modal component stories minor changes af1fe6a
  • List stories changes 0016042
  • Button component stories minor changes 690dfd2
  • Radio component stories minor changes 84eac30
  • Progress component stories minor changes e676357
  • Pagination component stories minor changes b1af226
  • Segment component stories minor changes 5f8c7ef
  • Refs #143412 eslint fixes for component stories badcb91
  • Table component stories minor changes 7c104b8
  • Refs #143412 more eslint fixes a88c091
  • Refs #143412 warn for broken links instead of throwing bd5821c
  • Refs #143412 merge changes from develop-itml to develop branch bca28b9
  • made tabs dynamic for api tab ea37ecb
  • Basic storybook/Docusaurus components 840ab60
  • created List directory & srories based on semantic-ui List component 51f1901
  • made tabs as component easy to call for other components 07bae49
  • Popup Component | minor fixes 2ff9908
  • created stories for Tab component 95e3a73
  • created Table directory and stories based on semantic-ui Table component e16115d
  • List component stories - minor changes de11343
  • created stories for Comment component a20f884
  • created stories for Grid component 360d2a8
  • created stories for Image component 3c1d2bc
  • created stories for Menu component 17e3b37
  • Added untracked files 75f0afd
  • created Dropdown stories d6a2538
  • created Header component stories b833979
  • created stories for semantic-ui Confirm component 6fddccc
  • created Statistic directory and stories with semantic-ui Statistic component cd62498
  • created Item component stories 90ec2be
  • created stories for Container component 41934f6
  • created Label component stories 71732f6
  • created Message component stories adcbeab
  • created Modal component stories c25409d
  • Breadcrumb component stories and minor changes 6264d92
  • created Pagination component stories 57cdad3
  • created Segment component stories d8d01d7
  • created stories for Radio component 1fd062d
  • Menu stories minor changes 6ba5e0d
  • Statistic component stories minor changes 3c874a5
  • Card component stories minor changes 290bda8
  • Accrordion stories minor changes 2ee3f59
  • renamed Demo folder to Layout b9f6d05
  • remove test exclusion 94dba3e
  • Accordion component stories minor changes e672d59
  • fix docusaurus url (removed trailing /) b6c59fc
  • Item component stories - minor changes f0a9902
  • eea logos and assets b435b51

0.1.2-beta.0 - 2021-12-18

🛠️ Others

  • Refs #140454 added github action to build docusaurus to the develop branch abe6a72

0.1.1 - 2021-12-16

🛠️ Others

  • Refs #140454 changed the following to volto-eea-design-system: 6791d41
  • Refs #140454 corrected base url for docusaurus website build 98271b3
  • Initial test changes on design system/docusaurus. 9dad612
  • After prettier check 9ec40b4
  • Refs #140454 restore SearchWidget.jsx content and removed dummy text from docs intro page 7505df8
  • Refs #140454 added references to eea and the storybook in the docusaurus footer 42bbfcd
  • Refs #140454 lint fixes 9502f2b
  • Add SonarQube badges a4e0a40
  • Refs #140454 brought changes from develop-itml and upgrades docusaurus 207c873
  • Refs #140454 removed extra content not needed by the docusaurus site bc68ebe
  • Refs #140454 updated docusaurus to latest beta d68ed8a

0.1.1-beta.0 - 2021-12-09

🛠️ Others

  • Refs #140454 moved header and footer templates from volto-ims-theme: e2d5e56
  • Refs #140454 added website folder with docusaurus site skeleton 6fd15f4
  • Refs #142794 added commented implementation of the header and footer area: 773ad87
  • Refs #140454 changed the following: 4137ec4
  • Refs #140454 removed storybook from volto-eea-design-system: a129ffb
  • Refs #140454 added storybook as a dev dependency: e04ae4e
  • Refs #140454 updated Breadcrumbs.jsx to latest version: 63fe507
  • Refs #140454 we should use jsx and not mdx for storybook tests 3668e66
  • Refs #140454 updated eea-design-system readme with extra info on package contents d2efc3d
  • Refs #142010 - Optimize Volto-addons gitflow pipelines 3af46d2
  • Refs #140454 Renamed folders of docusaurus website: 15bca74
  • Add demo story 757c409
  • Refs #142794 enabled minimum css so that header looks decent adbe233
  • Refs #140454 use the develop branch for the readme linking, it's always more up to date 23dcf16
  • Refs #140454 added missing themes reference for the eea theme e9ca244
  • Refs #140454 modified assets imports after move to volto-eea-design-system 2250cc7
  • Load footer in segment 80d38a9
  • Refs #140454 bump package version to 1.1.0 from 0.1.1 from develop branch: 1314039
  • Refs #142794 keep toolbalWidth variables in case design system runs in an older version of Volto 1a8b305
  • Refs #142794 changed the following: fbb80b1
  • Refs #140454 moved storybook scripts to the scripts section 705c4c3
  • Refs #140454 removed dangling comma 514f24d
  • Refs #140454 changed link to the start of the docs 0e16fdf
  • Refs #140454 add h1 to the list of elements that are max 800px and centered 7d3c30f
  • Add Sonarqube tag using ims-frontend addons list 8d657d0

0.1.0 - 2021-11-17

🛠️ Others

  • Refs #140454 changed the following to volto-eea-design-system: 40d2af6
  • Refs #141204 elements folder now has the variables and overrides from pastanaga theme 595b4e6
  • Refs #141204 use font awesome from SemanticUI instead of Pastanaga: 4e273ca
  • Refs #141204 removed the components customizations from volto-eea-design-system: c98c260
  • Refs #141204 added customizations folder from volto-ims-theme to volto-eea-design-system: ff4bf44
  • Refs #141204 modules folder now has the variables and overrides from pastanaga theme f2841b6
  • Refs #141204 customized Comments.jsx to remove unnecessary container b2e95d7
  • Refs #132149 added initial commit for volto-eea-design-system: 2934b91
  • Refs #141204 collection folder now has the variables and overrides from pastanaga: 213d496
  • Refs #141204 removed search widget customization, we can use volto-ims-theme for that file b7e8b0c
  • Refs #141204 stylelint quick fixes 5595925
  • Refs #141204 changed the following: 769f4f9
  • Refs #141204 changed the following to the eea theme: 06d8d86
  • Refs #141204 eea site.variables now use all values from pastanaga's site.variables 6535c0f
  • Refs #141204 simplified container overrides: 5125003
  • Release 1.0.0 177d0ce
  • Refs #141204 globals folder now has the variables and overrides from pastanaga theme 116a0c3
  • Refs #141204 changed the following: 2e7f423
  • Refs #141204 modules folder now has the variables and overrides from pastanaga theme: 27a201d
  • Refs #141204 text elements are now with a max width and centered within content-area: bbed7bb
  • Refs #141204 added main.variables entries from pastanaga to eea theme 1cbbc55
  • Refs #141204 modified theme image imports for component customizations ef3238a
  • Refs #141204 modified container width to be auto: 2e8d2e0
  • Refs #141204 modified several icons to use the \f values instead of \e: c397145
  • Refs #141204 changed the following: c518eda
  • Refs #141204 ensure that main column isn't enlarged over the sidebar section on edit f7a2868
  • Refs #141204 changed the following to the form styling: eb92e05
  • Refs #141204 modified path of theme folder location for image selection f8cca45
  • Refs #141204 added missing mobileScrollbarWidth variables introduced as part of the mobile navigation pull request 444c78d
  • Refs #140454 reference font and image path from ~volto-themes instead of relative ec93ed3
  • Refs #141204 ensure that Volto doesn't crash when site module is set to eea: 51f2f27
  • Refs #141204 added tiny size prop to Breadcrumbs in order to have it as 12px 56a12e2

0.0.1 - 2021-11-17

🛠️ Others

- +

What's new

EEA Design System (1.0)

Components ready to be used

The following components are ready to be used as Volto blocks, slate integration, or via the advanced block styler:

  • Accordion block
  • Call to Action block
  • Callout - part of the Description block, slate
  • Card - part of the Teaser block and Listing block, it includes several variations like round card e.g., used for Avatar
  • Divider block
  • Headings slate
  • Hero block
  • Item block - used for text with an icon (remixicon or custom SVG/image) on the left/right
  • List slate - ordered and unordered
  • Quote block
  • Statistic block
  • Tag block
  • Table block
  • Tabs block
  • Timeline block

Future releases

Below is a non-exhaustive list of the work-in-progress which is planned for future releases:

  • Navigation Portlet (used on the left/right hand of content)
  • Spacing/padding system. We want to add the ability for editors to consistently apply various spacing/padding on certain components in order to allow a better alignment when components are used together.
  • Improve docusaurus and storybook with more components, controls, and variations in order to better reflect what is possible in Volto.

Generated by auto-changelog.

Unreleased - 2023-04-07T18:14:46.589Z

🚀 New Features

  • feat(storybook): components keyboard and screen reader optimization #324 from eea/design-system-accessibility 85faff7

🐛 Bug Fixes

  • fix: dont run isInternalURL twice a48984e
  • fix: github autoformat be97749
  • fix(cards): focus outline for header needed for the overflow hidden solution with max title lines 849a7a8
  • fix(header): external url in header now takes you to the correct url #330 from eea/header-external-url-fix 086c61d
  • fix(item): flex variant on edit when inside blockchooser #333 from eea/fix-item-csss 65b9099
  • fix: external url in header 9e3aea6
  • fix: check if client method change 7c53b83
  • fix(item): use child selector instead of descendent as it interferes with blockchooser refs #157040 ad4ca37
  • fix(tag): fix in args 18eaaf4

💅 Enhancements

  • refactor(megaMenu): align menu items with demo site for better testing 82a5c84
  • refactor(breadcrumbs): updates on structure and story for accessibility 770c8c0
  • change(logo): update eionet svg 3c87fc7
  • refactor(downloadLabeledIcon): accessibility fix df3935d
  • refactor(languageLabeledIcon): accessibility fix 61edd9e
  • refactor(megaMenu): Restructure Topics and Countries lists d816e7a
  • refactor(newTabLabeledIcon): accessibility fix 211e40a
  • refactor(comment): accessibility fixes and text button update dad8cb6
  • change(mega-menu): use lists for navigation, enhance voice over support for better accessibility d13137f
  • change(storybook): removed links for Label and Comment that we implement without a link ee0bfdf
  • refactor(card): fix header outline not showing issue 48fc2e2
  • refactor(header): firefox accessibility errors fix c7d35b9
  • change(ContextNavigation): accessibility updates, not restructuring of the volto component 03fe83d
  • refactor(modal): restructure close icon as button f1b836e
  • refactor(label): add href attribute to links 05f664d
  • refactor(inpageNavigation): restructure as a button 48e22ac
  • refactor(labeledIconGroup): group updates for all labeled icons a679d9d
  • change(breadcrumbs): label modification for better screen reader output c967bef
  • refactor(checkbox): accessibility fix 3b3047f
  • change(mega-menu): sub-title padding tweaks for better spacing normalization e08668d
  • change(card): simplified headerLineHeightOffset used as margin top for cards header ca61105
  • refactor(megaMenu): clean up function after test 883eb73
  • change(mega-menu): added code to align countries left column subtitle with the right column 1aa33dd
  • change(logos): updated eionet logo used in the site footer #318 from eea/footer-logo-update 70671d0
  • change(breadcrumbs): fixed sizing of breadcrumbs list items 1761e98
  • change(checkbox): toggle hover color correction 4f4d0df
  • change(breadcrumbs,mega-menu): better screen readers support, see links instead of groups #309 from eea/firefox-accessibility-tab-issues d6b0b4a
  • change(card): add links to teaser titles cc64c74
  • change(inpageNavigation): story improvements ade63c6

🏠 Internal changes

  • style(megaMenu): remove comments and unused properties fa5f8f8

🏠 Documentation changes

1.0.6 - 2023-03-29

🚀 New Features

  • feat: add viewport-(width/height) less functions and fixed banner image url #329 from eea/develop e8e70bd
  • feat: add viewport-(width/height) less functions 68300a3

💅 Enhancements

  • change(docusaurus): set full class name for remix icons f435e10
  • refactor(Banner.jsx): use flattenToAppURL helper function to get image source URL 24b13d7

🏠 Internal changes

  • style(theme): update container width and margins in eea theme 3e4446a

🛠️ Others

  • horizontal overflow hidden in view mode f395f27

1.0.5 - 2023-03-28

🚀 New Features

  • feat: improve full-width class 70bba7e

🐛 Bug Fixes

  • fix(banner): Add missing divider for time tag #327 from eea/banner-metadata c46a583
  • fix(banner): Add missing divider for time tag 7d68c39

1.0.4 - 2023-03-27

🚀 New Features

  • feat(copyright): Add copyright prefix - Image - refs #250724 6a72772

🏠 Internal changes

  • style(copyright): Cleanup useless min-height - refs #250724 f2457df

🛠️ Others

1.0.3 - 2023-03-24

🐛 Bug Fixes

  • fix: improve full-width class 9322259
  • fix(header): Remove z-index from subsite logo #320 from eea/subsite-logo 5091100
  • fix(header): Remove z-index from subsite logo d433a97

💅 Enhancements

  • change(header): Add search popup customizations from eea-website-theme 43e5a78
  • change(popup): create custom popup for better accessibility 036aac9
  • change(popup): added most important popup properties from Semantic ui implementation 61f65bc
  • change(banner): use custom-made Popup for better accessibility 10d0fcf
  • change(banner): use custom-made Popup for better accessibility 9108bee
  • change(popup): added also the basic property a4497ac
  • change(colors): update gray-4 color value #321 from eea/update-gray-4 f458ff0
  • change(banner): MetadataField now uses proper time tag when value is datetime b4c4d34
  • refactor(tokens): updated gray-4 b890df7
  • change(footer): Fix error and empty div if no social links are present #319 from eea/footer-social 8922246
  • change(footer): Fix error and empty div if no social links are present 5d934a6

🛠️ Others

1.0.2 - 2023-03-14

🐛 Bug Fixes

  • fix(megamenu): topic menu title is now placed before content 6004bcb
  • fix(megamenu): removed in depth nav_title renaming that set title wrongly to a-z topics 899ca0e

💅 Enhancements

  • change(megamenu): removed special styling from at a glance mega menu section fd0c4c8
  • change(footer): renamed thematic information platforms to environmental information systems e7004a7
  • change(docusaurus): updated static image of footer sections 4ff3185

🏠 Documentation changes

  • docs(What's new): Update 'What's new' d7ed9d6

🛠️ Others

  • fixed accordion selector typo f4cabc8

1.0.1 - 2023-03-13

1.0.0 - 2023-03-13

🐛 Bug Fixes

  • fix(Footer): Open internal links within the same page 5b3e409

💅 Enhancements

  • change(banner): use huge scale instead of full image for better performance 381c58e

1.0.0-beta.6 - 2023-03-10

🚀 New Features

  • feat(site): serve Roboto fonts from eea design system package instead of google fonts #311 from eea/roboto-library f6a1b3e

🐛 Bug Fixes

  • fix: full-width is now properly sized 6e2e348
  • fix(storybook): add fontDisplay 078966a

💅 Enhancements

  • change(image): copyright position fixes, moved image floating to image-block-container 53422e0
  • change(colors:) update the design system colour palette #312 from eea/update-color-palette a5fb694
  • refactor(docusaurus): added roboto library 19de7b1
  • refactor(storybook): added roboto library e991621
  • refactor(tokens): update colours 3a2c1e1
  • refactor(storybook): restored site variables a48478b
  • change(copyright): implemented copyright hover design 6b12441

🏠 Internal changes

  • chore(storybook): switched google fonts to true 4a8cae4
  • chore(colours): changed back yellow 6 87c9bbc
  • chore(lint): lint 9b0f125
  • chore(storybook): lint 29bc809

🏠 Documentation changes

  • docs(colours): colours update 161007e
  • docs(colours): accessibility ee342aa

🛠️ Others

1.0.0-beta.5 - 2023-03-07

💅 Enhancements

  • change(carousel): tweak size of carousel dots for better touch interaction e1fb823
  • change(footer): removed min width and height from links ac33219

🏠 Internal changes

  • style(hiddenStructure): Add hiddenStructure utility to be used with h1 heading on frontpage - refs #158717 672cca2

🛠️ Others

  • fixed less build failure due to changes in footer.less 190bc8c
  • lazyload bg img on footer also ae07162
  • lazyload footer images a0633c9
  • Increase performance - mobile friendly 07d86c8
  • better useOnScreen hook c214b6b
  • role change for accessibility 5e758e0
  • minimum tap dimension for mobile a25e9a8
  • Release 1.0.0-beta.5 e4417e1
  • Add Sonarqube tag using eea-website-frontend addons list b227cf8
  • feature(mobile): increased performance by lazy loading footer images #303 from eea/increase_performance 80d1df1
  • useOnScreen default export 3e6cfdd
  • use aria-labels on dropdown 27e1443
  • prettier a7f8384

1.0.0-beta.4 - 2023-03-01

🚀 New Features

  • feat(footer): Add footer description 2ad0f71
  • feat(footer): Add footer description #306 from eea/footer-description bf655d1

🐛 Bug Fixes

  • fix(footer): Don't show empty row if description is not present 2ca7f7d
  • fix(footer): Add class for children 3c50d15
  • fix(search): Fix search links color #307 from eea/search-accessibility a76f48b
  • fix(search): Fix search links color 69c42ef

💅 Enhancements

  • change(carousel): tweak card width and padding for better arrow alignment e184f70
  • change(storybook): include footer description in storybook e904aa0

🛠️ Others

1.0.0-beta.3 - 2023-02-21

🚀 New Features

  • feat(accordion): storybook accessibility by using buttons for titles #297 from eea/accessibility-accordion 809d52b

🐛 Bug Fixes

  • fix(dropdown): remove close on blur so that we can navigate links using keyboard 5442715

💅 Enhancements

  • change(language): dropdown to use links for proper keyboard navigation 6a7de30
  • refactor(images): cleared unused/renamed images assets 821f5c1
  • refactor(Accessibility): add box-shadow on focus-visible components b1adcc3
  • refactor(images): remove unused docusaurus svgs c5ef14c
  • refactor(header): add escape key functionality, actions from div to button to have proper focus state 8081aa4
  • change(language): restore dropdown duplication in order to properly show and hide language dropdown cb28888
  • change(search): to reflect changes from eea-website-theme 2cc35e0
  • refactor(footer): update p with h3 heading tag for header ca1477b
  • refactor(footer images): removed unused/renamed 186de6b
  • refactor(Accordion): div titles to buttons, test in mobile mega menu accordions eaad4b4
  • refactor(docusaurus): cleanup decorative images fedc4d4
  • change(accessibility): style outline instead of box-shadow 53209f3
  • refactor(Footer): update mobile header size 01ab7f0
  • change(header): set the logo class directly on the link f8fba50
  • refactor(images): clear docusaurus unused pngs db5c611
  • refactor(header-images): removed unused 8250d94
  • change(language): hide language dropdown by default cc6064f
  • change(header): top dropdown menu keyboard navigation #293 from eea/accessibility-megamenu-searchbox 1e6fa65
  • change(button): set focus styling for buttons 33ebfca
  • change(footer): Avoid devtools warning in FooterActions #304 from eea/avoid_warning d774824
  • change(footer): Accessibility update p with h3 heading tag for theme sites title #302 from eea/footer-accessibility 5bf70de
  • change(documentation): Rename all image files to follow the agreed convention #301 from eea/refactor-image-filenames cfe44ef

🏠 Internal changes

  • style(header): react syntax fix 3add127
  • chore(docusaurus): ignore website/.yarn 0b33ffd

🏠 Documentation changes

  • docs(guidelines): add image name convention 290747c

🛠️ Others

1.0.0-beta.2 - 2023-02-13

🐛 Bug Fixes

  • fix(footer): action and copyright #300 from eea/develop 579f3e4
  • fix(footer): action or copyright links are simple a tags for external link 9af5070
  • fix(accessibility): added navigation and footer id's for skip link 48354b9

💅 Enhancements

  • change(footer): typos and modified footer links to be center aligned ac23f04
  • change(footer): added gap for actions and copyright 7d32ddd
  • change(footer): modified footer gap b8a820a
  • change(footer): removed extra text and date from copyright section af47bbe
  • change(navigation): raise z-index of go to top link 485ca72

🏠 Internal changes

  • chore(docs): Update eea.hbs template to beta - refs #158717 196538e

🛠️ Others

1.0.0-beta.1 - 2023-02-09

🚀 New Features

  • feat(search): Add search suggestions style 6b2b77b
  • feat(search): Add search suggestions style #296 from eea/search-suggestions 3b0c956

💅 Enhancements

  • change(search): Add proper margin for search popup 190c9f5

🛠️ Others

1.0.0-alpha.15 - 2023-02-08

🚀 New Features

  • feat(Card): add teaser card grid story 53cac0b
  • feat(utilities): Complete list of text-align utilities - refs #160747 224fab6
  • feat(small): CSS for small HTML tag - refs #160747 ad3c0ad
  • feat(fw-light): Add font weight light utility - refs #160747 c44cf57

🐛 Bug Fixes

  • fix(card): teaser card dimensions on tablet size #290 from eea/teaser-card-grid 013fdf5

💅 Enhancements

  • change(card): added extra content for teaser card story 30690ae
  • refactor(style-menu): add text-color to paragraphs styles #291 from eea/stylemenu-theme-colors 2d78307
  • change(header): Small fix in search popup #292 from eea/search-popup 86c1305
  • refactor(style-menu): add text-color to paragraphs styles 3446bc2
  • change(color): darkCyan is now replaced everywhere by the new green ef3791d
  • change(header): Small fix in search popup 3d622ea

🛠️ Others

1.0.0-alpha.14 - 2023-01-30

💅 Enhancements

  • change(mobile menu): integrate a-z topic with menu rendering logic #287 from eea/develop 05d4c04
  • change(mobile menu): integrate a-z topic with menu rendering logic 246d3d8

🛠️ Others

1.0.0-alpha.13.1 - 2023-01-30

💅 Enhancements

  • change(mobile menu): hardcode a-z topics to '/en/topics-in-depth' #286 from eea/develop 6436224
  • change(mobile menu): hardcode a-z topics to '/en/topics-in-depth' 5235b52

🛠️ Others

1.0.0-alpha.13 - 2023-01-27

🚀 New Features

  • feat(utilities): added has--bg--top center and bottom utility classes 051e6d7

🐛 Bug Fixes

  • fix(header): update green color used in page header #284 from eea/fix-banner-background 29d54db

💅 Enhancements

  • change(site): added fixes from customVolto.css to design package 51ba9b5
  • refactor(Banner): update banner background green color fd4a552
  • change(mobile menu): changed link for a-z topics to point to in depth 721bf23

🛠️ Others

  • 1.0.0-alpha.13 release #285 from eea/develop c966940
  • bump next version to alpha 13 897e906
  • Back to dev 5780dc7

1.0.0-alpha.12 - 2023-01-24

🚀 New Features

  • feat(card, colors): visited color change and title on image option for cards #283 from eea/develop e638ee6

🐛 Bug Fixes

  • fix(mobile menu): sub links when an accordion section is active bb3be81

💅 Enhancements

  • refactor(Card): create card template for stories 2fa77f3
  • refactor(Card): add image with title css 6e6e63e
  • change(card): implement title on image within image section ff6cc60
  • change(card): added image card section, tweaked mobile heading size 0f879e1
  • change(cards): moved image gradient overlay to a mixin.less file 8b4928a
  • refactor(card): Update titles value and size c35ad5c
  • refactor(docusaurus): applied image naming convention ee7bc29
  • change(cards): added image for all storybook card examples 3f19413
  • change(banner): restored label value of metadata field when type isn't date 571a4f2
  • change(card): title padding value for a more balance look 74b6556
  • change(card): removed uppercase transform from title on image 2948ae1
  • change(colors, Docusaurus): Visited link colour change and thematic logo replacement #278 from eea/refactor-visited-link f82d978
  • refactor(storybook): visited link variables b209b2f

🏠 Documentation changes

  • docs(colors): visited link update ece77fe

🛠️ Others

  • fix typos in footer gradient variables 4006640
  • change version to alpha 12 instead of 1 final 3225025
  • feature(card): new card variation with title on top of image #267 from eea/title-on-image-card 2c0ca95
  • Back to dev 477d997

1.0.0-alpha.11 - 2023-01-17

🚀 New Features

  • feat(docusaurus): Header and footer elements section #277 0df271c

🐛 Bug Fixes

  • fix(banner): storybook date input and simplified gradient opacity 7674d76
  • fix(banner): re-added title class on banner title 6d15799

💅 Enhancements

  • refactor(banner): sync storybook and Volto component c9087cc
  • change(banner): removed margin from title 17e592c
  • refactor(banner): sync storybook and Volto component #275 from eea/sync-page-banner-theme 4331fb4

🏠 Documentation changes

  • docs(footer): updates on header elements b41c550
  • docs(footer): add elements anatomy d9f0872

🛠️ Others

  • add(banner): banner title css d003247
  • Release 1.0.0-alpha.11 07e8f85
  • renamed image elements as requested in review 8541fb6
  • remove(banner-gradiant): image gradiant in favour of text 1b58520
  • update(gradient): use 8deg angle 6fd597d
  • update(gradiant): make it 0deg 1bb2696
  • remove(comment) referencing old verison of title 4226d42

1.0.0-alpha.10 - 2023-01-13

🐛 Bug Fixes

  • fix(subsite): Fix logo size on subsite section 65fff54
  • fix(subsite): Fix logo size on subsite section #279 from eea/subsite-fixes 8f6cf94
  • fix(mega-menu): show sub grid only if there are children ddfbd82

🛠️ Others

  • Add variable definitions 293fe65
  • Release 1.0.0-alpha.10 7014d08
  • Add Sonarqube tag using advisory-board-frontend addons list ef58a6f
  • Back to dev 31d4616

1.0.0-alpha.9 - 2022-12-28

💅 Enhancements

  • change(contextnav): Default title is text, custom title is link #273 from eea/context-nav-link-title ef7bdb7

🛠️ Others

  • Show document and folder content-type in Navigation listing 8471db3
  • Default title is text, custom title is link 1ae95b0
  • Context nav title link to # a27a6b7

1.0.0-alpha.8 - 2022-12-23

🚀 New Features

  • feat(copyright): Align copyright options with Volto integration - refs #158210 6bac7f6

💅 Enhancements

  • refactor(logo): import theme site logos to the story 2f29136
  • refactor(logo): update logo and mega search gradient e11f44d
  • refactor(logos): convert logo names to lowercase 07b8228
  • change(item): use default logic of setting align class on content 6b5b47c
  • refactor(logo): update logo 170efe5
  • refactor(logos): convert storybook logo names to lowercase c4b24ec
  • refactor(logo): add eea roboto font logo variations de1224a
  • refactor(logo): add container and segment to logo story 61eff16
  • change(item): removed requirement for aligned classes to be on content 30c0d5d
  • change(logos): cleanup eea logo reference to only eea-logo and eea-logo-white.svg 2796e05

🏠 Internal changes

  • chore(npmignore): Reduce npmjs package size 164c8a5
  • chore(npmignore): Reduce npmjs package size ade9d5b
  • chore(docs): renamed logo mdx to md 52e9d46

🏠 Documentation changes

  • docs(logos): svgs without classes 28a5833
  • docs(logos): add dark mode logos ccc1609
  • docs(logo): update eea logos and add logo wrapper 91cdd66
  • docs(logo): update logos on docusaurus 760e101
  • docs(logos): updated svgs dc224e1
  • docs(logos): add thematic logos 5a21a30
  • docs(logos): add zipped svgs for download 5855bf8
  • docs(logos): wisef logo update 8f90b59
  • docs(logos): move to static, add download 8c1fd5f
  • docs(logos): improve eea logo visibility 82188ab
  • docs(logos): change eea logo to svg f57b846

🛠️ Others

  • logo update or docusaurus thematic logo listing #274 from eea/develop dde90be
  • (feat): Add ability to disable the language select from website top menu - refs #158616 411c8e4
  • Proof reading page header section 230239e
  • bump package version b4628be
  • feature(docusaurus, storybook): logos selection for sites plus inverted options #253 from eea/doc-logo-page dbfc90d
  • Add Sonarqube tag using advisory-board-frontend addons list c4769e9
  • test(Jenkins): Run tests and cypress with latest canary @plone/volto 92feea0

1.0.0-alpha.7 - 2022-12-16

🚀 New Features

  • feat(item): normalized size for image or icon items #258 from eea/refactor-items 945170f

🐛 Bug Fixes

  • fix(card): rounded after removal of has--rounded--true style class d4727af
  • fix(item): removed margin set for description which pushed the text from icon d9d4031
  • fix(project): Proper paths if volto-eea-design-system package is not installed, but in development #270 from eea/correct_paths 0f8ee8d

💅 Enhancements

  • refactor(item): update icon variations and paddings 6a407b3
  • refactor(item): update spacing 2fd91c4
  • refactor(item): initial values for new sizes & add description class 3546296
  • refactor(item): add icon and more size options 1120bb6
  • refactor(item): update image and icon sizes b802573
  • change(item): set same height as width on item images 69cbd23
  • refactor(item): update item part 2 9812ae2
  • change(item): rename large to big class 24ff127
  • change(item): added tiny size that outputs 24px icon sizes 2ea9636
  • change(image): added preview image size default to 400px a0aa867
  • refactor(item): update operator for condition controls 149ccb2

🛠️ Others

  • Proper paths if the package is not installed, but in development 7a2655f
  • Update .project.eslintrc.js a2fd3f2
  • added back descriptionDistance variable until package release 3af811a
  • Release 1.0.0-alpha.7 7e66bcc
  • Add Sonarqube tag using cca-frontend addons list ce47e9b
  • Back to dev cb531c9

1.0.0-alpha.6 - 2022-12-07

🚀 New Features

  • feat(copyright): create copyright component and import it in banner 8fcde9d
  • feat(Header): add hideSearch prop 13ddfe5
  • feat(Docusaurus): Image copyright information #257 from eea/image-copyright-info 2119515

🐛 Bug Fixes

  • fix(tags): content gap when using tags-content wrapper c4eb9b8

💅 Enhancements

  • refactor(hero): add copyright component to hero 0fa88fa
  • change(copyright): implementation to add classes on content sections e10bde6
  • change(copyright): removed color variant 747b8a2
  • change(copyright): removed copyrightVariant from Banner and Hero stories ac62e07
  • change(tagList): modified implementation to align to volto-tags-block 7a57a3d
  • refactor(copyright): remove data section 52cb09d
  • change(copyright): line height to match page header implementation a56254e
  • change(copyright): now uses text color css variable with fallback to white ee7268b

🏠 Documentation changes

  • docs(copyright): copyright documentation a90ed76

🛠️ Others

  • Update usage_markdown.md f76d4a2
  • grammar fixes cb2a5a5
  • Release 1.0.0-alpha.6 6ca32f0
  • feature(copyright): image information #250 from eea/feature-copyright a8618c7
  • lint fix by introducing local variable tagsGap 7b6c0ae
  • Update 3-images.md 1b0ef03

1.0.0-alpha.5 - 2022-11-29

🚀 New Features

  • feat(Iconography): import and showcase remix icons 777112f

🐛 Bug Fixes

  • fix(docusaurus): right bar overflow fix 197c763
  • fix(lists): bullet position by using padding instead of margin 0ecae2e
  • fix(label): color for yellow variant as white isn't accessible on yellow color 91d8880
  • fix(contentBox): avoid text decoration for header-link added on cards 3ccb592
  • fix(label): margin value for ribbon image left and right margin f8e1129

💅 Enhancements

  • refactor(docusaurus): eea color palette in separate file 6c855df
  • refactor(docusaurus): classes for color boxes 80219d5
  • refactor(docusaurus): move supplementary, state and link colors to partials 2776be3
  • refactor(docusaurus): fix side menu / moved more content in palette partial f5b7077
  • change(tag): set gap on tags element for margin between tag elements 726bc6d

🏠 Internal changes

  • chore(colours): fix wrong class name 51ad0a8

🏠 Documentation changes

  • docs(docusaurus): Iconography updates, thematic platforms 2a0e596
  • docs(colors): thematic pages integration ea7a422
  • docs(docusaurus): color updates cc13b54
  • docs(colors): fix swatches accessibility 306cb74
  • docs(docusaurus): typography and colors fixes according to comments on PR ae20a72
  • docs(colours): adjust logos heights 854d4fb
  • docs(typography): merge designer and dev units 65c240e
  • docs(typography): readded extra font sizes, fixed fluid a4a5d89
  • docs(typography): changed em to percentages d417600
  • docs(colors): minors updates and instructions 84ac882
  • docs(colors): blue-grey-6 adjustment e7ab2d1
  • docs(colours): added active colour 574f7a9
  • docs(colors): switch FISE logo to png 335471f
  • docs(colors): updated visited 0248fd1
  • docs(FISE): replaced logo f7d8331

🛠️ Others

  • perf(docusaurus): added remixicon and roboto locally b67b1a7
  • feature(Docusaurus): Updates on color palette information including thematic websites #231 from eea/refactor-docusaurus ec7843d
  • Upgrade Jenkinsfile storybook to yarn 3 d20de8d
  • Back to dev 563fbc5

1.0.0-alpha.4 - 2022-11-22

🐛 Bug Fixes

  • fix(cards-storybook): load slick carousel css for arrow and pagination styles 1159b1b

💅 Enhancements

  • change(cards): refactor cards theming implementation d4e4542
  • change(cards): allow rounded, inverted and theme parameter to be set by has classes 4b4ad89
  • change(card): expect has classes on the card directly 6a9e38b
  • change(utilities): added has text classes to the text alignment utilities e6974c6
  • change(utilities): modified class name for text align using has naming 579a0cb
  • change(theme): ensure that only direct children of container have a default top and bottom margin 7f8b8dc
  • change(build): upgrade action to trigger workflow and wait to latest version c63ad3f
  • refactor(card): theming implementation to allow has theming classes #265 from eea/card-refactoring 24edc99
  • change(theme): add slick-carousel dependency f2eec7d

🛠️ Others

1.0.0-alpha.3 - 2022-11-16

🚀 New Features

  • feat(Header): Add subsite section styling #263 from eea/subsite 00398b8

🐛 Bug Fixes

  • fix(search): position now changed by default to absolute from relative 51b08fc
  • fix(megaMenu): remove paddings for buttons added by active class ec33ebf

💅 Enhancements

  • change(components): load overrides files for our defined semantic files adde7a9
  • change(container): fullwidth now take into account devices without hover 5a35a65
  • change(container): ensure only the top level elements behave like containers 98b85d1
  • change(container): modified column-block grid to remove margin and padding when using full width class 35c1cee
  • change(mega-menu): hide home link and accordion content from mobile menu 1a69172
  • change(container): width from min width 1280px to 1365px max width 66e551e
  • change(container): removed app extras and view setting of layout sizes f6dc1ee
  • change(views): customized DefaultView to pass class into page-document area 91123aa
  • refactor(megaMenu): desktop - use buttons for menu section titles and readjust content cb9315f
  • refactor(megaMenu): add nav_title and nav_description attributes 0d7a568
  • refactor(megaMenu): style sub-title and nav-description b2a48fd
  • refactor(sidemenu): add third level list and items & update active indication e2d87da
  • change(columns): implement narrow, container and wide width classes 9696b54
  • change(container): story to add classes that modify the max width of the containers 37948f8
  • change(container): affect only left and right margin of containers 183265b
  • change(containers): modified class names after layout checks 1dc3689
  • refactor(sidemenu): add is_in_path and is_current attributes for an active example a3fe7fd
  • change(container): story to avoid adding containerwidth property to container div c13d83c
  • refactor(megaMenu): mobile - use buttons for menu section titles a7b632f
  • refactor(megaMenu): update padding variables c5f2583
  • change(views): moved narrow style bellow the default container width styles 72fa58d
  • change(listing): removed container from default view page-document area 69f3d8f
  • change(views): rename classes names to width_view and added app extras layout component 745b772
  • change(container): use important flag for left and right margin a49c83a
  • change(container): add variables for edit and add section of containers f2e2c33
  • refactor(megaMenu): update sub-title paddings 992f919
  • change(site): add a 1rem margin top and bottom on all styled classes dabf6c1
  • change(homepage): removed hiding of staging banner from homepage 4ba2cd7
  • change(container): unset values of page-document on 1200+ browser width dd5bea3
  • change(megamenu): set children to be appended to the right of the menu title b69c23a
  • change(theme): modified wide width to point to 1320px as it's perfectly divisible by 4 8f82573
  • change(theme): modified wide width to point to 1368px as it's perfectly divisible by 4 2349fee
  • change(container): renamed content-text-width to container-text-width 6f788c2
  • change(listing): provide ui container fallback if no class is passed to default view af9e94d
  • change(narrow-view): re-added container class to page-document 56b44a6
  • change(view): set container width for view-viewview class as well 29dc324

🏠 Internal changes

  • style: load header/footer overrides e5b5e0f
  • style(megaMenu): restore item description color 8a19bbb
  • style(megaMenu): restore accordion content bottom padding 8e0c5a7

🛠️ Others

  • Add subsite styling e79c0ed
  • WIP settings column grid width when using full size class affc7ac
  • code cleanup 2cdc3e5
  • fix eslint 30c52e4
  • test(estlint): Fix .project.eslintrc.js aaeaa07
  • modified left value of full width classes with toolbars 70d82d4
  • Release 1.0.0-alpha.3 8fc86a7
  • feature(content): added NarrowView useful for modifying the containers from content-area d937df7
  • jslint fix 9846159
  • Feature(container): flexible container size #260 from eea/feature-flexible-container 8f84c5b
  • Add Sonarqube tag using circularity-frontend addons list 76a41c7
  • fix broken variable call for contentBox.variables introduced in previous commit by mistake d249c11
  • clean up 89f3cb3
  • removed console log from code fad86ae

1.0.0-alpha.2 - 2022-10-28

💅 Enhancements

  • change(documentation): grammarly proof-read suggestions 9f609be
  • refactor(volto-slate): Upgrade to @plone/volto-slate - refs #153447 853d9d1

🏠 Internal changes

🛠️ Others

  • test(cypress): Upgrade to Cypress 10 / Razzle 4 c1c1f4b
  • more explanations a8b2272
  • add announcement bar, showing that EEA DS is WIP e14aeac
  • Update dependencies ee30a2b

1.0.0-alpha.1 - 2022-10-20

💅 Enhancements

  • refactor(footer): update svg and tablet contact link sizes 6aba061
  • change(blockquote): renamed to Callout reflecting the correct naming from Storybook 61a518c
  • change(footer): Shadow removed from logo & tablet updates #252 from eea/fix-footer 6df783d
  • change(colors): updated theme classes for text to use css variable colors cb089fd

🏠 Internal changes

  • style(footer): reduce social icons margin f6a9cf7

🏠 Documentation changes

  • docs(alpha): Update included components in 1.0 alpha version - refs #154387 fcc5af9
  • docs(callout): Rename Blockqoute to Callout in docusaurus - refs #154387 8d733ac

🛠️ Others

0.9.6 - 2022-12-16

🛠️ Others

  • Release 0.9.6 ae19b83
  • feature(copyright): image information #250 from eea/feature-copyright 7b323ed
  • Release-it 1f5671d

0.9.5 - 2022-10-20

🐛 Bug Fixes

  • fix(statistic): margin and slate colors when using the inverted options f263dea

0.9.4 - 2022-10-19

🐛 Bug Fixes

  • fix(edit-interface): block chooser and power user menu item colors when inside content-box 7aee4f1
  • fix(header): hero text going over the logo and menu on mobile resolutions 1434508
  • fix(content-box): z-index of box-inner and added underline to slate links c8b7c7e
  • fix(content-box): adding of underline to links c2f5f0f

💅 Enhancements

  • change(banner,colors): content box theme aware colors banner changes#254 from eea/develop bcb9a8c
  • change(Banner): Add subtitle subcomponent bb67f4c
  • change(item): moved svg filter definitions to item.overrides de70366
  • change(accordion): accordion titles with themes colors can now be modified by css variables e2ac13e
  • change(colors): in lists and callouts to allow color changes 940d1b8
  • change(colors): added backgroundColorSupplementary color variable 1f5262a
  • change(list,bullet): color is no longer primary instead it's text color css variant 8c04670
  • change(statistics): use theme colors with css variable for easy color customization fb72a01
  • change(Banner): Show label in metadata field 1acda3c
  • change(tags, items): use text color with css variable for content color for easy customization 6660e2e
  • change(styling): modified naming of theme css variables a332961
  • change(colors): added backgroundColor color variable b7e6831
  • change(quote): use secondary css var for easier color replacement 7a32312
  • change(statistics): tweaked margin of statistics so that they don't overflow over context boxes b4a8e33
  • change(accordion): allow customization of accordion title background color 6590baf
  • change(colors): introduced css variables for primary colors #247 ac80825
  • change(content-box): override primary text color to white as well 28b43c7

🛠️ Others

  • Include changes in the storybook a4d9fa4

0.9.3 - 2022-10-04

🐛 Bug Fixes

  • fix(card, contentBox): meta font size, removed header override of cards a7f94b9
  • fix(List): Ordered list item story - refs #155248 c70a2bc
  • fix(OrderedList): li third level margin left - refs #155248 fba5cb9
  • fix(cards): inherit color of card description ceda799
  • fix(accordion): Fix content default padding - refs #153783 566adf7

💅 Enhancements

  • change(site): committed fixed from custom into eea design package 9b9a1fd
  • change(jenkins): added yarn policy for storybook building 3d1b844
  • change(docusaurus): typography updates 60a93a4
  • change(item): added item image coloring when applying theming classes 0403fe4
  • change(accordion, site): change text color to tertiary instead of black 4641058
  • change(accordion): allow customization of accordion title with css variables 15e7d27
  • change(content-box): added css variables that will set text color and background for children 86cac53
  • change(tabs): allow customization of tab active and hover color 4370f42
  • change(tabs): color for tabs-block section 6778c92
  • change(cards): by default date is set to appear on the right of the meta section b7b80e8
  • change(cards): carousel dots are now relative positioned daa40a4

🏠 Documentation changes

  • docs(typography): update, local fonts 39a32d9
  • docs(typography): token fix to match used values for heightheight and letterspacing 91693ec
  • docs(typography): token fix to match used values for lineheight ff41b56
  • docs(typography): remove semibold 6eb3e08

🛠️ Others

  • test(cypress): Fix md5 dependency 17f618e

0.9.2 - 2022-09-27

0.9.1 - 2022-09-27

💅 Enhancements

  • change(cards): added ability to change the text alignment using css variables ed532ac
  • change(styles): use flex-end values only instead of end to avoid babel warning 24244b2
  • change(rounded): image size, border radius to ensure more image are turned into rounded options 51e23c1

🛠️ Others

  • Merge pull request #243 from eea/develop 576564c
  • Add Sonarqube tag using eea-website-frontend addons list 4a5be6e
  • Back to dev b251255

0.9.0 - 2022-09-19

🚀 New Features

  • feat(countUp): intall countup package and import it in statistics 10ba7cf
  • feat(docusaurus): custom editUrl function for the components usage pages - taskman refs #154076 93c4240
  • feat(site): Styling scroll-to-text fragments #238 1883fcf
  • feat(docusaurus): added Edit this page link in footer of each page - taskman refs #154076 2cf8746

🐛 Bug Fixes

  • fix(header): Prevent dropdown closing when clicking inside content 838f340
  • fix(cards): position of bullets and arrow clicking on events page 148723 22ef828
  • fix(cards): rounded images show up now even when card parent is cards 48f5e81
  • fix(statistic): add a min-width to content so unwrapped statistics don't break 7c5d511
  • fix(sideNavigation): add role list to list item 58f322b
  • fix(sideNavigation): remove unused useState import f9ea677

💅 Enhancements

  • refactor(sideNavigation): implement the design to the initial navigation & make component dynamic b673d63
  • refactor(header): update top bar 626bdd5
  • refactor(statistic): create custom export and add links 9f9ed56
  • refactor(statistic): update inverted style and add background variations 7578dc6
  • refactor(statistic): remove horizontal display on mobiles & update columns control 58f00e1
  • refactor(header): minor fixes spotted in testing 0f0f3ab
  • refactor(header): update main section heights d669f01
  • refactor(sideNavigation): remove green border and divider 939cd9b
  • refactor(link): update colors for link states 3e9f599
  • change(cards): styles img tag outside of .image ee89274
  • refactor(sideNavigation): update controls a3e8430
  • refactor(statistic): fix firefox issue for fit content 87aa113
  • change(statistics): rearrange controls order b19ae70
  • refactor(statistic): add max width to wrap text for all content 758f8ce
  • refactor(statistic): add max width to label so it wraps the text 824a127
  • change(Side menu & in page navigation): styling according to figma design #221 b2df858
  • change(header): align header with latest figma changes #232 135cd68
  • change(cards): integration when cards also contain call to action buttons f0d8766
  • refactor(iconography): icon group headings b9ccd80
  • refactor(header): add variables for some sizes 8eae84e
  • refactor(Statisctic): Rename slateVariation to extraVariation a07c589
  • change(docusaurus): started example on how to add headings for iconography 53cf843
  • change(cards): remove center alignment of rounded cards body area, only the image is now centered fdfac48
  • change(color): updated link colors #234 feabfe7
  • change(mockup): Access to figma style tokens 0bb25be
  • refactor(statistic): update margin 5190f56
  • refactor(button): adjust vertical margin db6d441

🏠 Internal changes

  • style(statistic): update decimal point 7976aa4
  • style(link): update visited link color d3b18b3

🏠 Documentation changes

  • docs(iconography): added icons, guidelines 0073f1d

🛠️ Others

  • Delete 2-test-new-page.md 749eff9
  • Create 2-test-new-page ab623ff
  • Release 0.9.0 eb7e2e5
  • stylelint fix 114e3f9
  • Move text fragments style to site.overrides 8368cbe
  • Styling scroll-to-text fragments 1bb3914
  • Update Header.stories.js 9036c74
  • feature(Docusaurus): Reflect usage of remixicon in iconography page #239 0802b32
  • Update 1-design.md 146115a
  • Test workflow for contribution - taskman refs #154076 dcb924f
  • perf(figma): access to style tokens 27d8dbe
  • Rename 2-test-new-page to 2-test-new-page.md 4e3be10

0.8.1 - 2022-08-26

🐛 Bug Fixes

  • fix(message): fix size controls ee51e1d
  • fix(docusaurus): intro page hero title color now that headers are using tertiary color 618e3cb

💅 Enhancements

  • refactor(message): restore semantic variables 1c16621
  • refactor(messages): mix semantc and token colors for messages 12efa75
  • refactor(emotiveColors): temp update for tests 61a720c
  • change(footer): removed line between sections and moved actions back to the bottom of footer d9f33e4
  • change(storybook): headings storybook now uses tertiary color by default reflecting site options 1061e77
  • refactor(message): add container to story 1259ece
  • refactor(message): remove override with custom background color on error 9b40cd7
  • refactor(message): add header controls 960c2f7
  • change(message): use semantic colors for messages #204 from eea/refactor-message 22d2c43

🏠 Documentation changes

  • docs(figma): added figma files to repo 6bd4144

0.8.0 - 2022-08-20

🚀 New Features

  • feat(IconCard): card with icon instead of image a85a179

🐛 Bug Fixes

  • fix(docusaurus): typography guideline now has real font values for headings, body, caption and small text 9508db9
  • fix(card): fix content gaps, adjust new meta section and update text color for default f1a78e1
  • fix(item): remove duplicate argType dde0be5
  • fix(iconCard): add aria-label at links 44f64c7
  • fix(card): merge fix df440ec
  • fix(heroblock): color even on edit page by inheriting color instead of using the tertiary color ac53fb7
  • fix(tab): add tabindex for accessibility error ab512be
  • fix(carousel): restore missing variable 1728312
  • fix(carousel): restore flex grow for cards and opacity for arrows ce71305

💅 Enhancements

  • refactor(carousel) add links in carousel cards & update structure and variables of less files f99cb21
  • refactor(iconCard): add control for variations and link 5e1b6a1
  • change(docusaurus, fonts): documented font letter spacing modification 522712a
  • refactor(card): css updates for card variations and styling updates c8b4a43
  • refactor(publicationCard): add links and fix accessibily issue 80adf6c
  • refactor(card): add new section in meta and remove links bfb82ae
  • refactor(item): add stackable functionality 8d714fa
  • refactor(card): update meta section and controls 5e28e12
  • refactor(roundedCard): remove unnecessary code and controls and add all variations 6305c54
  • refactor(roundedCard): add optional link for image and header a6d3bf2
  • refactor(card): add tertiary hover and update css selectors ca06948
  • change(fonts): updated font sizes with values given in figma 4b0ae48
  • change(style): color, space and adjust line-height as described in docusaurus 3366da2
  • change(headings): only h2-h6 get tertiary color 7d81308
  • change(site): removed Archivo import as we should only use Roboto font a6af056
  • change(docusaurus): use tertiary color for headings and body color mirroring the design system styles 145fe73
  • change(fonts): modified headings font size as well as line height f0771ea
  • change(fonts): updated font sizes with values given in figma f16eef7
  • change(docusaurus): use Roboto font from google fonts also for docusaurus adca8e9
  • change(headers): added headerColor variable so that thematic sites can easily choose another heading color f09d2c5
  • change(fonts): typo fixes for typography section of docusaurus cae4b02
  • change(fonts): modified footer and header values afer global font size changes f160d35
  • refactor(iconCards): run prettier fe84e46
  • change(typography): inherit header colors with @headerColor variable 91d9357
  • change(breadcrumb): use tertiary color also for breadcrumb c5cbd44
  • change(heading): on homepage on the first hero set font size to h1 and inherit color 5711096
  • refactor(carousel): update card titles to display styling fix edd966b
  • change(docusaurus): use the tertiary color for body and heading colors 11c4ed4
  • change(typography): modified lineheight-0 after headers now use 1.2 instead of 1.25 04d78a8
  • refactor(card): add links to cards and replace description with title in carousel 0258737

🛠️ Others

  • feature(heading): and cards refactoring #227 from eea/develop 334fbda
  • Update package.json 3870cf3
  • Header refactor 153536 #226 from eea/header-refactor-153536 87a6fe7
  • feature(item): icon is now stackable moving the icon on top #220 b716acf

0.7.6 - 2022-08-15

💅 Enhancements

  • change(footer): Footer updates 147837 #225 fa9ae58
  • refactor(footer): initial redesign of main section 8e85617
  • refactor(footer): restructure theme sites logo columns dcba45a
  • change(footer): set actions before thematic section on mobile db25f96
  • change(footer): fix missing key warning from react dev 77f72d5
  • change(footer): Footer updates 147837 #222 32fed23

0.7.5 - 2022-08-11

💅 Enhancements

  • change(megamenu): mobile improvements with See all links, active elements and non accordion children #224 6767b99
  • change(megamenu): render accordion only if children have children be63ce2
  • change(megamenu): mobile menu design tweaks as seen in latest figma 26d74dc
  • change(megamenu): removed icon from at a change menu items and they are no longer bold as requested 043e772
  • change(megamenu): reset first level panels after each item pass 175351b
  • change(megamenu): mobile menu improvements #223 b3cabfe
  • change(megamenu): fixed key error warnings 075bf01
  • change(megamenu): handle default active sub accordion 6192a99
  • change(megamenu): enable active border only for items not titles fb0b869

🛠️ Others

0.7.3 - 2022-08-04

💅 Enhancements

  • change(megamenu): added icon on mega menu header section d0ad4d8

0.7.2 - 2022-08-03

🐛 Bug Fixes

  • fix(contentBox): z-index of content hidden by bg when using content-box-inner c5a7dac

🛠️ Others

  • Set focus on search input field in the popup on click d12c051
  • Make cypress tests work with both slate and draft selectors 4d8e5b1

0.7.1 - 2022-08-01

0.7.0 - 2022-08-01

🚀 New Features

  • feat(accordion,buttons): primary, secondary and tertiary variations #209 c34617f

🐛 Bug Fixes

  • fix(megamenu): key warning errors 4ecd279
  • fix(container): add padding also for block editors when we are on the add page not just edit b857aad
  • fix(header): bump opacity of gradient class to get rid of green hue of header text 2011b40
  • fix(header): remove console log 3a20023

💅 Enhancements

  • refactor(callToAction): add tertiary variant and restructure exports ac6695a
  • refactor(accordion): add color variations 3504c15
  • change(megamenu): WIP bringing back rendering of item with callback and path modification 6e43d43
  • refactor(megaMenu): add slide down transition and update targetRefs on close 9667157
  • change(megamenu): use renderMenuItem in order to render menu items 9ed5cbd
  • change(footer): replaced eionet logo with an svg variant and tweaked size of eionet to match size of eea logo 32ce462
  • refactor(callToAction): update tertiary state colors 159668a
  • change(accordion): style default accordion using the grey from semantic ui e24907d
  • refactor(accordion): add variations and create a default export 4a9c68f
  • refactor(colors): add tertiary shades for element states 1e24a7e
  • change(tests): try to modify tests to use slate instead of draft a2e2485
  • change(megamenu): set active class on storybook list items 112bff1
  • change(megamenu): add border for active element of menu 5e7dfa5
  • change(package): condition modification of navDepth settings dd21dad
  • change(mega menu): use non variable to fix build of volto-kitkat-frontend 3ecd652
  • change(header): prefix mega-menu active class for adding border 32898cb
  • change(tests): use data-slate-editor instead of contents that was found in draft js instead of slate 1e0413c
  • change(stories): hide variant control from button link story 43f8c41
  • change(stories): hide variant control from button link story aea7126

🛠️ Others

  • feature(theme): added context navigation component story and default style 5a6955f
  • feature(megamenu): open default accordions on mobile navigation based on pathname cc299c1
  • fix eslint warnings 3b30282
  • bump release version to 0.7.0 fa82cbd
  • Theme fixes, mega menu selected element both in desktop and mobile #211 b482729
  • feature(mega-menu): added menu slide down animation #208 4360d0e

0.6.5 - 2022-07-06

🐛 Bug Fixes

  • fix(header): double click to close dropdown is no longer required b8a2ed0
  • fix(header): menu generation when atAGlance isn't found d68b03c
  • fix(menu): removed minHeight that enlarged the global menu 133be1e
  • fix(hero): image dimensions when full width and height isn't enabled 4114f73
  • fix(contentBox): removed negative z-index that hid fullwidth bg color bd60faf

💅 Enhancements

  • change(hero): tweaked hero block height and padding 994b6f8
  • change(item): tweak size and padding of icon when used inside item dbdef19
  • change(typography): updated letterspacing values and clarified values used for certain type tokens 8a13bf8
  • change(item): enable theming for icon and text color and added tertiary option 6d4444f
  • change(header): top section chevron sizes and margin as requested in enhancements document b307c74
  • change(cards): add underline to links when applied to headers and use tertiary color by default 874f956
  • change(utilities): wrap in quotes h2 and h3 of quoted-wrapper 8aa4716
  • change(package): bump package version to 0.6.5 denoting bug fixes release 0585aeb

0.6.1 - 2022-07-01

🚀 New Features

  • feat(UnderlinedTitle): create story and necessary utilities 8beb56b
  • feat(headers): added underlined titles with theming support af67561

💅 Enhancements

  • refactor(heading): move underline story and update controls 2c9bfd2
  • refactor(underlineTitle): add content box for different variations 0878915
  • refactor(underlinedTitle): add control for changing heading size 211f515
  • refactor(underlinedTitle): Restore text variation dropdown control bd8c611
  • refactor(utilities): add color variation for headings and text 7e3a779
  • refactor(utilities): update border bottom utility and restore line height for headings 7fe4a7b
  • refactor(headings): update the line height of headers according to docusaurus instructions 9da19b3

🏠 Internal changes

  • chore(countup): package for statistics 26fcd09

0.6.0 - 2022-07-01

🐛 Bug Fixes

  • fix(item): adjust the container in stories a848c46
  • fix(tag): align start for tags on mobile, update path for Tag List and add containers b9de845
  • fix(item): update image width & height on mobiles and add 3 line clamp for description 0cd2c46
  • fix(pageheader): metadata font size on mobile to be readable 0a9b1fa
  • fix(breadcrumb): fixed variable name for breadcrumb item 2b547eb

💅 Enhancements

  • refactor(Item):create item story with custom default class 069ae02
  • refactor(pagination): add pastanage menu overrides and remove any eea theme css from default story 5080810
  • refactor(item): update variables from px to rem 30eed78
  • refactor(Item):add default item mobile padding 3518465
  • change(site): added fixes from custom 0fe4d80
  • refactor(Pagination): add default pagination stopry and rename previous as Secondary a5e3e13
  • refactor(pagination): comment out secondary pagination and its styling bcf4cff
  • refactor(tags): remove content class and add flex wrap d6333ca
  • change(logo): use a real svg logo for white eea logo 3b80dc7
  • change(header): show eea information systems on tablet as well ce82ceb
  • refactor(tokens): update letter spacing tokens 5f8753b
  • change(letterspacing): updated letter spacing positive values b31818f
  • change(pageheader): add bottom margin on mobile for sharing dropdown actions d3cda47
  • change(pageheader): removed blogger, reddit and stumbleupon sharing links e4acc4e
  • refactor(Item): add default item background color c978c8d
  • change(package): bump package version 1f01f72

🏠 Internal changes

  • style(item): update item image e585e9d

🏠 Documentation changes

  • docs(colors): token usage c433ec6
  • docs(Docusaurus): typography and spacing updates 48d1269
  • docs(Docusaurus): various fixes a972a31
  • docs(typography): updates 66d95e4

🛠️ Others

  • Tabs block custom border left/top ca4cce0
  • Fix sidebar tabs in Volto CSS c287db5

0.5.5 - 2022-06-23

🐛 Bug Fixes

  • fix(contentBox): color of cards when inside content-boxes 76a4520

💅 Enhancements

  • change(homepage): moved fixes of homepage to custom and colored carousel arrow 0a226ef

0.5.4 - 2022-06-16

🐛 Bug Fixes

  • fix(block-style): Content box preview in sidebar 6362766
  • fix(header): ensure transparency goes as high as the search icon 4470e13

💅 Enhancements

  • change(contentBox): add background as before element instead of using full-width 7e0a596
  • change(content-box): content box links are now underlined f7976f5
  • change(homepage): added fixes from custom c3e0333
  • change(hero): add margin top with the height of the top section on edit fefa6bb
  • change(cards): fix default card color when inside content-boxes 6fdf3aa
  • change(container): removed override of content-box-inner container 66fe7d4

0.5.3 - 2022-06-16

🐛 Bug Fixes

  • fix(homepage): hero and homepage fixes for #151156 #198 43d4efc
  • fix(header): fixed top section width on edit page ce5898b

💅 Enhancements

  • change(hero): added min height to hero-block-image-wrapper 3cc37c0
  • change(hero): spaced hero block has a 3rem margin top and bottom c463b03
  • change(hero): added extra top margin on hero-block-body from tablet and up within homepage 64142c3
  • change(hero): tweak min height of hero block e1271b4
  • change(card,contentBox): use inherit for text color to inherit black from body c1ba3b6
  • change(container): on section-edit modify only left and right padding values fe6e3ec
  • change(utilities): bump z-index of overlay class ede3209
  • change(hero): fixed variable reference for margin of body from homepage 092b90b

0.5.2 - 2022-06-14

🚀 New Features

  • feat(contentBox) : add new Content Box component 2ebbb47
  • feat(ContentBox): Add primary, secondary, tertiary themes 87cb2fe
  • feat(ContentBox): Update storybook with available themes 93b26b2

💅 Enhancements

  • refactor(contentBox): restructure the component to be more flexible f0d2de6

🏠 Internal changes

  • chore(contentBox) : add lint changes 5aaf740

🛠️ Others

0.5.1 - 2022-06-13

💅 Enhancements

  • change(header): changed homepage text color 64ce8b6
  • change(hero): added styles for adding dark overlay to hero bf1d292
  • change(homepage): hide stagingBanner on homepage fb6e319
  • change(header): use variable for homepage hero-block padding 89ff344
  • change(tokens): modified grey-4 color to point to a 10% shade from original color b406283
  • change(header): added min-height for mega menu needed for 1 items menus 18814f4
  • change(hero): hero section block integration #192 4ea2f40

🛠️ Others

0.5.0 - 2022-06-11

🚀 New Features

  • feat(hero): added storybook implementation of hero component #172 17b9d16
  • feat(hero): add hero block component and stories 6019fc8

🐛 Bug Fixes

  • fix(header): Internal links in mega menu d8ca135
  • fix(header): show active menu when clicking on children a54fa67
  • fix(header): accessibility and dropdown possition fixes 505ac36
  • fix(header): fix accessibility issue by David 783dcec
  • fix(header): dropdowns disappear on resize 52338fd
  • fix(header-topdropdown): dedupe html elements for topdropdowns cd8a2a7
  • fix(header): transparency class should apply on the current bg color or image f9a0033
  • fix(header): mobile dropdown now visible 34371b4
  • fix(header): dropdown disappears after window resize #116 fc7dd8b
  • fix(header-topdropdown): dedupe html dropdown elements for topdropdowns #115 f10a7a8

💅 Enhancements

  • refactor(megaMenu): update mega menu in header component 2d1ce45
  • refactor(header): update structure and variables of top bar af70909
  • change(header): renamed mega menu items href attribute to url 3ed8144
  • refactor(header): update main section and and add color variations f2f0fd1
  • refactor(header): minor updates on colors and widths a70129f
  • refactor(hero): add full-heigh control to adjust height a45cb7c
  • change(header): disable sticky setting until feature is more stable 1d7af95
  • refactor(hero):make button variant and inverted different button controls 7e182ca
  • refactor(header):main bar sticky on scroll up 9c9e7c6
  • refactor(headings): update heading sizes for mobile 19f3cca
  • change(header): hide first link(home) from header menu on site ae7f3b9
  • change(megamenu): typo correction and key setting on list.items 96d2c4f
  • change(header): use Link instead of a tag for menu items 9812b3f
  • refactor(header): add control for inverted logo 023ca45
  • refactor(hero): move quoted utility to h2 tag 7376676
  • refactor(header): add link for menu title inside desktop mega menu 24355d0
  • refactor(utilities): update hex with color token 8dc65ef
  • refactor(header): and mega menu to latest spec #114 44fcf68
  • refactor(header): update search input and file endings afab36f
  • refactor(header): add control that toggles transparency class on main section b8d4bdb
  • refactor(header): restore union dropdown after implementation 7e98bab
  • refactor(header): minor responsive fixes 16a0006
  • refactor(hero): align hero's text and meta seperately 4fa958f
  • refactor(hero):add button variant controls f362a7b
  • refactor(header): update search input 368962e
  • change(header): mark top level active menu item 665c449
  • refactor(hero):prettier & style changes d846884
  • refactor(header): add control for main section stickiness 2f07572
  • change(header): use viewport width for changing mobile text in header dropdowns b50fa58
  • refactor(header): add fluid font sizes 5f2743e
  • refactor(header) add position sticky & transparent for main section 29df772
  • refactor(hero): update variables with new design tokens 1d97922
  • refactor(Language List): render language dropdown as ul and li elements 3617442
  • change(header): introduced item class to the mega menu link content 00ca376
  • refactor(Language List): add less variables 7ccc1cc
  • change(header): disabled active menu when clicking on globalnav links 3f7b5ee
  • change(header): target link instead of span directly 9e865fb
  • refactor(header): remove unused imports 7e232db

🛠️ Others

  • Add item themes; override .block .ui.image width based on size 06010db
  • Move item icon themes to item.overrides 31e8921
  • Override only the width 8d49270
  • Override tile image in .block parrent 005655d
  • Update package.json 9dc3816
  • feature(item): added themes to item icons #190 a6a2907
  • update storybook header.topdropdown e58ac08
  • use volto-screen-helper width ea156aa
  • Add divider content for metadata field in Banner 327ad1c
  • rename to viewportWidth 32162e7
  • don't connect component to store 470b8ba
  • Add end of line 51639d8
  • behave as mobile under 480 only 11b99e1
  • make it account for all mobile-s,m,l 69e23ae

0.4.5 - 2022-06-08

💅 Enhancements

  • change(tabs): Add style for tabs accordion template #187 fb8adbf
  • change(footer): avoid react error by providing key prop to grid column ef0b193

🛠️ Others

0.4.4 - 2022-06-08

🚀 New Features

  • feat(divider): create story for divider b10a2e0

🐛 Bug Fixes

  • fix(divider): restore space between classes c595c15
  • fix(divider): Text colors and transform e524e10
  • fix(footer): story aria labels for social media links 254bdc7

💅 Enhancements

  • refactor(footer): update logos and less structure 66b8e0f
  • refactor(footer): first footer updates d18a2ee
  • refactor(footer): logo updates and adjustments 101bc9d
  • refactor(footer): use tokens and adjust spacing 2cb1669
  • change(footer): moved SubFooter logic to SubFooter.jsx from Footer story 902383a
  • refactor(Divider):add divider with content inside story e2d66dc
  • change(footer): added managed by section as properties 9328fc3
  • refactor(divider): remove custom divider d4870d2
  • refactor(Divider_:remove green color class & add tertiary 95f3018
  • refactor(footer): use remix icons for social links 5ef9aa2
  • refactor(Divider):remove clean class and use fitted prop 8d2be35
  • change(Divider): Rename color property to theme 0deffc8
  • refactor(footer): update links and logo align 7afbab9
  • change(footer): tweaked column sizes to the values before my changes fdf2718
  • refactor(footer): to latest figma design #182 3e0ba2b
  • refactor(footer): move subfooter logic to the proper component #185 3034577
  • refactor(footer): update controls b0b872b
  • refactor(testimonial): update divider 784450a
  • refactor(testimonial): changed divider color to secondary 84282f9
  • refactor(divider): remove custom divider from theme config a0409e8

🏠 Documentation changes

  • docs(divider): switch to secondary color 239844b
  • docs(divider): showcase path fix d5ea03f

🛠️ Others

0.4.3 - 2022-06-03

🐛 Bug Fixes

  • fix(edit): Fix columns/accordion inner toolbar padding fafbb52

💅 Enhancements

  • change(docusaurus): completed removal of description from guides 42424b9

0.4.2 - 2022-06-02

💅 Enhancements

  • change(docusaurus): moved color swatches around in the color guide 8a395fc
  • change(docusaurus): removed description from components and introduced category listing f220bf0
  • change(docusaurus): rename gap to space and added em spaces f5b042d
  • change(docusaurus): moved extra docs to webdev section 1ce0797
  • change(docusaurus): moved md_components files into webdev/md_components 73c1c08
  • change(docusaurus): added category yml for all sections 1740572
  • change(docusaurus): color guideline updates and spacing tokens documentation #148 c1154ba
  • change(docusaurus): modified story links to avoid broken usage tabs 78dc8d8
  • change(docusaurus): renamed several file id's so that they match the incremental naming sequence 11299c9

🏠 Documentation changes

  • docs(Docusaurus): timeline, testimonial, quote and tags aaa54ec
  • docs(spacing): add relative gap tokens 92abc8f
  • docs(colors): updated colors a28c99e
  • docs(tags/content): new page about tags and content 60be402
  • docs(Docusaurus): labeled icons f6a0f61
  • docs(typography): add font size and line height tokens 2ff65e4
  • docs(spacing): add spacing gap tokens 2d53727
  • docs(spacing): add missing gaps 442db46
  • docs(docusaurus): minor fix 6e66513
  • docs(spacing): aligned images e946fe5
  • docs(spacing): new image fcd3294

🛠️ Others

  • merge changes from develop into docusaurus token documentation a940138
  • perf(docs): restructuring order 8f4134d

0.4.1 - 2022-06-02

🚀 New Features

  • feat(languageLabeledIcon) : add new component 110558e
  • feat(LanguageLabeledIcon):add new component d00200c
  • feat(newTabLabeledIcon) : add new component 8f5cd31
  • feat(labeledIconGroup) : add new component 787d648
  • feat(DownLoadLabeledIcon) : add new component 6ea2fa1

🐛 Bug Fixes

  • fix(LabeledIcon) : fix lint errors 91b042f
  • fix(LabeledIconGroup) : fix links for tests daa1065
  • fix(LanguageLabeledIcon):bug fix & languages change 1436e2b
  • fix(LabeledIconGroup):fix based on Langauge & Download Labeled icon components changes 3015864
  • fix(newTabLabeledIcon) : add link item b1a9ada
  • fix(Labeled Icons):minor bug fix 00f3022

💅 Enhancements

  • refactor(labeledIcons): adjust new tab labeled icon to figma and replace px with rems 904615d
  • refactor(LanguageLabeledIcon):implement with pop up 0f3dd8f
  • refactor(labeledIcon): add group wrapper in labeled icon stories 4b7dd31
  • refactor(DownloadLabeledIcon):implement with pop up aa61f9b
  • refactor(labeledIcons): adjust language labeled icon to figma 5741e3d
  • refactor(labeledIcons): adjust download icon to figma and replace px with rems 4ae8530
  • refactor(LanguageLabeledIcons):minor storybook change 78f5544
  • refactor(LanguageLabeledIcon): set language code to uppercase and minor storybook change ac28693
  • refactor(labeledIcon): adjust paddings 9c1ecdd
  • refactor(labeledIcons): update margins for group labeled icons 5fa5ca9
  • refactor(labeledIcons): add variable for icon color 9f9d3cb
  • refactor(labeledIcons): update colors on download links c042642

🏠 Internal changes

  • chore(labeledIconGroup) : lint changes 535cee4
  • style(downloadLabeledIcon) : fix styling 6d8e3ac
  • style(downloadLabeledIcon) : fix alignment 4558017
  • chore(LabeledIconGroup) : lint changes ab36476

0.4.0 - 2022-06-01

🚀 New Features

  • feat(Carousel): create carousel for cards 2b0d737
  • feat(ItemwithIcons): Initial Item group with icons, new item variation 7f4ea47
  • feat(utilities): add file and basic utilities 05c88b2
  • feat(utilities): add file with basic utilities classes #173 855185f

🐛 Bug Fixes

  • fix(tokens): hsla function for shadows b8e5d37
  • fix(tokens): remove css var from less file a9c4224
  • fix(carousel):add storybook controls descriptions 269a603
  • fix(item): remove image width css from item.less 7b21cb2
  • fix(table): Set responsive breakpoint to @tabletBreakpoint 067e018

💅 Enhancements

  • refactor(item): import item.less in theme definitions c516374
  • refactor(Label):add corner,ribbon & basic label stories and styles e2bbbb9
  • refactor(Label):style changes based on label importance class ce4d5d1
  • change(tokens): rename gap to space and added em spaces 719efc4
  • refactor(item): add classes for size, set default to tile and add controls for grouped items d5a0405
  • refactor(tokens): add borders, shadows, shapes and z-index tokens 7069106
  • change(tokens): name spacing tokens gaps and added missing values up to 80px as documented 9fbd912
  • refactor(quote): Rename sourceInfo to extra info 76c2b40
  • refactor(item): WIP replacing unstackable with row e3a44de
  • refactor(tocens): add color design tokens 13bb165
  • refactor(item): adjust margins to match figma designs 6334581
  • refactor(carousel): remove title from story and color on card hover 12a1d7c
  • change(tokens): updated sizes with 4-8-16px increments 1f53d65
  • change(tokens): added size tokens to be used for width of elements cda5dea
  • change(utilities): values need important rule 96150d9
  • change(tokens): added also rem space values aedbbdd
  • change(tokens): updated z-index tokens with negative values 404efe4
  • refactor(tokens): add 14px font size token 8d8695d
  • refactor(docusaurus): restructured and improved sections navigation #174 b47b026
  • refactor(tokens): add 12 and 14px font size token #176 3681147
  • refactor(tokens): remove conditional border radius f0fe5ad

🏠 Documentation changes

  • docs(website): created new sections, improved website navigation 243f0be
  • docs(homepage): adding design system homepage with links for upcoming sections c9a9685
  • docs(docusaurus): copyedit, improved navigation 998762a
  • docs(website): restructuring, moved current DS docs to new folder 8bb612f
  • docs(homepage): copy editing ee37d6f

🛠️ Others

  • Release 0.4.0 f4bc509
  • feature(homepage): added Item group with icons #167 2ec99f5
  • feature(tokens): added borders, z-index, shadows tokens #171 74c1788
  • feature(tokens): added initial color design tokens #169 da3eae0
  • perf(carousel): added slick library ca9be51

0.3.1 - 2022-05-19

🐛 Bug Fixes

  • fix(input,segment): toggle inputs and padding fixes within Volto sidebar forms de030d6

💅 Enhancements

  • change(login): restored width of login container to 376px 0564293

0.3.0 - 2022-05-17

🚀 New Features

  • feat(Callout):create Callout component with Blockquote style 3d486b1
  • feat(callout): Align the Callout component with Volto slate component e9343ff

🐛 Bug Fixes

  • fix(testimonial): fix storybook arg names b9df52f
  • fix(table): tweak responsive table for extra long headers 7f9f9e2
  • fix(quote): fix color and padding issue 310d6b3
  • fix(accordion): Fix accordion active title color 57af165
  • fix(testimonial): remove info arguement 9593d95

💅 Enhancements

  • refactor(Table):add responsive mobile table story and styles aed69e6
  • refactor(testimonial): adjust to volto design | fix avatar image size 546070e
  • refactor(Quote):rename Pullquote component to Quote 9384a0c
  • refactor(Quote):rename Quote.Metadata to Quote.SourceInfo dfae8b1
  • refactor(Quote): rename Author to Source 6d400f6
  • refactor(Quote):move Testimonial component under Quote folder e2467c2
  • refactor(testimonial): readjust rounded card b419334
  • refactor(Table):wrap table with semantic ui container 24ac2bb
  • refactor(Testimonial):minor storybook bug fix 7b6d128
  • refactor(Callout): wrap story with semantic ui container ead362d
  • refactor(quote): update action name to match the functionality caf2e35
  • refactor(table): add borders to responsive table with celled attribute 8a71a67
  • change(table): make use of headerSortableWhiteSpace variable fd836fb
  • change(table): use the @mobileLandscapeBreakpoint for max 480px media query 90880ab
  • refactor(Quote):rename pullquote to Quote in Testimonial f54da19
  • refactor(Testimonial): change card class name e995c32
  • refactor(Testimonial): prettier changes 904594b

🛠️ Others

  • feature(tokens): added tokens folder for design tokens we can use in the system a542172
  • perf(lint): fix f2ef3ab
  • Release 0.3.0 8724b28

0.2.4 - 2022-05-13

💅 Enhancements

  • change(segment): brought back overrides from pastanaga into our theme 14efd02
  • change(container): removed padding from containers restoring thus the defaults c2ed813
  • change(grid-story): added container as grid width is influenced by container width 459f481
  • change(breadcrumb): removed padding from breadcrumb added by container c5df567
  • change(container): modified all outputted widths to align to grid 9f29cef
  • change(breakpoints): restore Semantic UI breakpoints, adding extra needed values e7f5b1e
  • change(container): restore maxWidth to 100% now that the last value is 1120px 8b55c58
  • change(header): wrap header globalnav links useful for editing section 10d4f56
  • change(breadcrumb): added vertical variant to the breadcrumbs like we do in Volto f405f84
  • change(breakpoints): added also contentBreakpoint for backward compatibility b6c9212

🛠️ Others

  • [JENKINSFILE] Add failure comment, no jenkins fail c325bf1
  • prettier changes 134da52
  • [JENKINSFILE] format PR comments 739438c
  • [JENKINSFILE] mention comment author in comment 39a26aa
  • [JENKINSFILE] remove debug, add error per stage 903eecd

0.2.3 - 2022-04-29

🚀 New Features

  • feat(CallToAction):add feat call to action ab53642

💅 Enhancements

  • refactor(button): add container to stories 6c02c19
  • refactor(tab): update vertical tab columns and content b473fab
  • refactor(call to action):render call to action with Button as="a" e7dfabf
  • refactor(button): update inverted button colors c822021
  • refactor(Tab):scrollbar change in mobile & vertical tab fix 0e34cbf
  • change(banner): added icon class to share icons 48e866e
  • refactor(Button): move button to forms folder 94996fc
  • refactor(Tab):minor change in secondary pointing menu variables 280b6c4

🏠 Documentation changes

  • docs(button): import call to action stories e4eed44

0.2.2 - 2022-04-22

🐛 Bug Fixes

  • fix(publicationCard): restore line endings 582859e
  • fix(form): added back overrides from Pastanaga theme a3f7ff8
  • fix(OrderedList) : add list only if sub list exists 8acbc8d
  • fix(label): update highlight label color d55bbb0
  • fix(publication card): run prettier 81a5bfc
  • fix(avatar) : fix naming convention for arg 84fc5fa
  • fix(tab): restore mobile font sizes 58f39be
  • fix(addForm): add min height to add form and fixed block chooser overflow ca4415d
  • fix(OrderedList): adjust margins to fourth sublists 663d384
  • fix(dropdown): being hidden because of third party css 7d353df
  • fix(modal): overflow hidden as clearfix of last child from modal b4923f5
  • fix(RelatedContent):fix merge conflict adc34bf
  • fix(button): labeled class needs to be placed after left or right keyword 53d1204

💅 Enhancements

  • refactor(card): prettier fixes e10e3d6
  • refactor(card): add card variations e16d05b
  • refactor(card): remove stories 0deb0ca
  • refactor(card):delete primary and secondary card stories 1f95d22
  • refactor(Avatar) : remake avatar as card variant ea77cdd
  • refactor(card): add styles for card variations 7407bd3
  • refactor(storybook): add story with related content inside of a tab dca008a
  • refactor(card): Rename variables from avatar to rounded be01316
  • refactor(avatar): update less variables and layer structure f965db1
  • refactor(PublicationCard):remake publication card to be a semantic card variation 5a0c6ab
  • change(button): simplified button styling fe892d6
  • change(button): simplified storybook naming and examples 9a7df4f
  • refactor(Avatar) : convert avatar component to card variation 2004a94
  • refactor(Related Content): change in grid and add see all button 955450e
  • change(button): added back button.overrides from pastanaga theme 3b55acb
  • refactor(card): add card class control 68c91a9
  • refactor(card):delete publication card variables & overrides files 6be8a03
  • refactor(OrderedList): rename TOC to Ordered List and add container to the story e00c4db
  • refactor(card): add card grid fluid story with no columns f38251c
  • refactor(list): remove horizontal control 1f5e576
  • refactor(avatarGrid): update less variables and layer structure db554a8
  • refactor(Related Content):show button when there are more hidden cards 57ff1c8
  • refactor(RelatedContent):change to use new card variant instead of publication card component 7cf424a
  • change(breadcrumb): brought back pastanaga overrides to breadcrumbs bca1c93
  • refactor(card):delete publication card folder & story 68bf773
  • change(buttons): modified basic and circular variant behavior c06fed9
  • refactor(card):tertiary variation minor story update 87b8dca
  • refactor(DescriptionList): add container to story d647c1a
  • refactor(List):render ordered list with ol,li tags 87813c1
  • refactor(OrderedList) : change table of contents story to ordered list cb6197c
  • refactor(publicationCard): update tag and name variables c109ad9
  • refactor(UnorderedList): update list as ul, list items as li and add container to strory 2c096e1
  • refactor(card):organize controls and minor bug fixes f3f6e35
  • refactor(less variables): publication card style changes c5a84e9
  • refactor(less variables): add less to related content e1a5543
  • refactor(RelatedContent):delete publication card component 2ed0ed4
  • change(button): basic button is again without padding, border and background 5a907c7
  • refactor(PublicationCard):remove link wrapper 5911a0d
  • refactor(less variables): change publication card height per viewport d7a5256
  • refactor(Timeline):change timeline icons b2fe0bf
  • refactor(publicationCard): replace px with rems 53bf8da
  • refactor(Related Content): change in related content grid bf856ce
  • refactor(List):render description list with dl,dt,dd tags ec669a7
  • change(button): show only labeled variant for buttons with icons bf49944
  • refactor(card): import image for rounded card ca5a47e
  • refactor(progress): add container to story dfb33bb
  • refactor(storybook): add publication card story with different description sizes 23af97b
  • refactor(List):render default list with dl & dt tags ece2280
  • refactor(storybook): add publication cards stories with longer description 37adefa
  • change(button): basic icon buttons no longer have box shadows c2f3ea3
  • refactor(card): remove story afc5f79
  • refactor(less variables): change card description line number per device 6946fda
  • refactor(card): update rounded card image path 8db3a85
  • refactor(DefaultList): add container to story f971193
  • change(button): bumped z-index of sidenav expand button 445ed8a
  • change(progress,label): color accessibility fixes #151 09cf6e3
  • change(button): text button now has an underline with a focus border like other buttons cdd9043
  • refactor(card): update card variation grids path 756589c
  • refactor(card): minor fixes 3a880d7
  • change(button): primary color is blue and secondary is green 53e0a0c
  • refactor(List):change styles to match with the tags lists are rendered 2673890
  • refactor(progress): update colors for accessibility ea2f454
  • refactor(card): move avatarGrid & relatedContent to Card folder 1959d52
  • refactor(Timeline): change storybook timeline colors to fix accessibility issues 79da8dc
  • change(segment): restore light grey background color for secondary segments 8716b08
  • refactor(relatedContent): adjust column paddings 8a1520d
  • refactor(storybook): clear up code 3ada154
  • refactor(card): use the rounded class for avatar grid 8c000f3
  • refactor(card) Update rounded card class 140b587
  • refactor(avatar): add variable for image border radius c23341c
  • refactor(label): add container to story 565101f
  • refactor(progress): update value color for accessibility error 6fc76f8
  • refactor(card):use jsx extension 413d328

🏠 Internal changes

  • chore(Avatar) : add container to stories 41b748c
  • style(OrderedList): prettier fixes ed95e4d

🛠️ Others

0.2.1 - 2022-04-08

🐛 Bug Fixes

  • fix(version): Switch to 2.0.0.alpha.1 83b8b8e

🛠️ Others

  • cleanup(loader): Remove useless HTML d1d180c

0.2.0 - 2022-04-04

🚀 New Features

  • feat(card) : add new default card color-schme 965adea
  • feat(label): Handle slate links and footnotes f382431

🐛 Bug Fixes

  • fix(buttons,toggles): border and background color when active 147629 #139 ea36f31
  • fix(checkboxes): background color when they are toggles 4b6ab67
  • fix(buttons): border set on basic buttons appearing on svg elements of Volto UI 69ca73f
  • fix(label): Zotero/Footnotes inside label 0ee4d58
  • fix(card) : add control for image url in storybook b28e530
  • fix(less variables):change font family e4bca9e
  • fix(storybook):minor bug fix 9fc53bc
  • fix(tag): fixes merged theme config eb30363
  • fix(Banner): prop types fix a270e5b

💅 Enhancements

  • refactor(tag): splits Tags component to TagList and tag, changes default tags style 78a5f8c
  • refactor(Banner):add banner share pop up in banner story c9688b2
  • refactor(tag): remove classes and actions that add background color ce9b6f9
  • refactor(Banner):change banner's image wrapper implementation 9153dd1
  • change(package): bump release version to 1.10.0 7e984c1
  • refactor(card): align cards and images, update less variables d47c978
  • refactor(card): add class inverted for default card 919a56e
  • refactor(tag): changes component name e1db068
  • refactor(tag): changes color metallicBlue to bottleGreen e4b68ac
  • refactor(less variables): change tag list mobile view fcded3d
  • refactor(tagList): update story to not use tag color classes 8b5b61b
  • refactor(Banner):minor bug fix ff8c352
  • refactor(Banner): add metadata field sub component 327b7e7
  • refactor(banner): add and adjust remix icon for banner action 1bf3ffa
  • refactor(banner): replace px with rem and adjust share popup padding a568329
  • refactor(Banner):add type class to metadata field and apply styles to it 86a2866
  • refactor(less variables):change tag list styles 8670087
  • refactor(banner): share items display flex on desktop 3ff8684
  • change(banner): added background gradient, share popup, metadata show and hide #136 2f5dcca
  • refactor(banner): update gradient 570ee1e
  • refactor(tags): removes hardcoded ':' ea58e86
  • refactor(card): remove card border bc77739

🏠 Internal changes

  • style(card) : add lint and prettier changes 9d9a773
  • style(tag): remove comments 501fcdf
  • style(tag): stylelint and prettier changes 08b6386

🛠️ Others

0.1.9 - 2022-03-25

🚀 New Features

  • feat(all): 1.9 release #124 0d3f6fb
  • feat(callout): Align volto-slate callout with blockquote style 9e0bb49

🐛 Bug Fixes

  • fix(inpageNavigation): restore hidden on top functionality c554e6e
  • fix(list): Fix TOC margin on 3rd level f17da79
  • fix(inpageNavigation) : add smooth scroll animation 42f6564

💅 Enhancements

  • refactor(footer): update visual and mobile margins 64f05af
  • refactor(header): restore union dropdown after implementation a7029c5
  • refactor(pullquote): adjust to the new figma design 78e4606
  • refactor(breadcrumb): adjust font sizes and import remix divider 5fcabaf
  • change(header): use viewport width for changing mobile text in header dropdowns 5a7868e
  • refactor(inpageNavigation): adjust to the new figma design 4073acf
  • refactor(tab): add max width for tab items 366d279
  • refactor(less variables):change pullquote styles 9ad94bb
  • refactor(Pullquote):change quote positions and add Pullquote.Metadata sub component 6bce35f
  • refactor(inpageNavigation): Update to remix icons 19a6061
  • refactor(inpageNavigation) : move icon & text to be in column 0953910
  • change(breadcrumbs): modified breadcrumbs template to behave like breadrumb template 490a559
  • change(package): bump release version to 1.9.0 43a6e4b
  • refactor(breadcrumb): adjust font sizes and import remix divider #120 09a3a01
  • change(menu): modified secondaryPointingItemMaxWidth to a value that equals to 250 ea138a1
  • refactor(pullquote): introduce meta section, use remix icons, integrate slate callouts #119 fd740c9
  • refactor(footer): updated visuals and gradients #117 e5c6d18
  • change(scrollToTop): feature inpage navigation revamp #121 3cf20a8
  • refactor(footer): update visual and gradient 764ec23
  • change(header): use 12px font size for mobile resolution dropdowns 6dad0fa
  • change(nav): added navDepth to 3 in order to enable mega menu integration c4f73fd

🏠 Internal changes

  • style(inpageNavigation) : lint changes 3641d78
  • style(inpageNavigation) : add less variables 0699c70
  • style(pullquote): create variable for icon font size fea9b0a
  • style(inpageNavigation) : add lint & prettier changes f8dd012
  • style(inpageNavigation): remove comment 1aee011

🛠️ Others

0.1.8 - 2022-03-18

🐛 Bug Fixes

  • fix(card): avoid long links from spilling outside of card body area 95b8951

💅 Enhancements

  • change(typography): set heading sizes as detailed in docusaurus typography section 189bf20
  • change(docusaurus): content tweaks, inpage navigation section #112 b62d1b1

🏠 Internal changes

  • chore(docusaurus): fixed grid tablet breakpoint value c7fbc09

🏠 Documentation changes

  • docs(docusaurus): capitalization remove bf8fa44
  • docs(docusaurus): update 1c04976
  • docs(docusaurus): comment address on pr 112 6e4fe3b
  • docs(docusaurus): color minor update 13f9fda
  • docs(docusaurus): tabs and breadcrump update d0547e5

🛠️ Others

  • doc(colours): add more content ec66248
  • Add divider content for metadata field in Banner f1e34bd
  • Release 1.8.0 fd6ba04

0.1.7 - 2022-03-15

🚀 New Features

  • feat(less): add global gap sizes 3c83f20
  • feat(icons): import remix css 29967fb

🐛 Bug Fixes

  • fix(menu): fix border overflow for tabs and pagination e88721f
  • fix(accordion): responsive and accessibility issues c225935

💅 Enhancements

  • refactor(menu): update paddings for tabs and pagination 533a509
  • refactor(accordion): import semantic icon for remix arrows 9aa77d8
  • refactor(all) icons, accordion, button and menu itml #108 52ed2ca
  • change(storybook): segment stories now contain several elements 98a7654
  • change(table): inherit header alignment instead of hard-coding values ebb5193
  • refactor(icons): add remix icons c4c1a92
  • refactor(container): restore mobile width to auto 2df184c
  • refactor(button): update action button hover color bb09d71

🏠 Internal changes

  • chore(docusaurus): docs delete 5f9d733

🏠 Documentation changes

  • docs(colors): corrections da64c4c
  • docs(list): default list showcase 8ded062

🛠️ Others

  • bug(form): input min-width more specific to not break volto interface 3f5b5d4
  • Update package.json 3dba28b

0.1.6 - 2022-03-11

🚀 New Features

  • feat(cards): add custom display for volto-block-image-cards 645096a
  • feat(PublicationCard):create publication card component & styles 3e5f9b7
  • feat(PublicationCard):create publication card component & styles 12cdd5d
  • feat(Related Content): create Related Content component 77eda95
  • feat(Related Content): create Related Content component 08d495b
  • feat(pagination,related) added several r3 components #105 08d47c1

🐛 Bug Fixes

  • fix(Related Content): limit publication card number to 4 e7df032
  • fix(less variables):rename publication card variables 55c6fb8
  • fix(Publication Card): add link to card and arg name fix 36a7c96
  • fix(radio): fix bullet scaling issue with firefox 5f02c95
  • fix(radio): fix bullet scaling issue with firefox dbb2e27

💅 Enhancements

  • refactor(form): remove custom classes and add container to form items 6b5442a
  • refactor(form): remove custom classes and add container to form items d1ec083
  • refactor(form): update form wrapper component a719576
  • refactor(form): update form wrapper component 0736ec7
  • refactor(form): adjust form items to volto theming 4213cfb
  • refactor(form): adjust form items to volto theming 374ffbc
  • refactor(breadcrumb): remove custom class anf and new variables b3cb83d
  • refactor(breadcrumb): remove custom class anf and new variables d5808ad
  • refactor(storybook): clear up unnecessary form elements controls f7e7d5b
  • refactor(storybook): small change in unordered list story 3ffd872
  • refactor(storybook): small change in unordered list story 6ce16e9
  • refactor(pagination): fix menu overrides for tabs that affects pagination fe8c4ca
  • refactor(pagination): fix menu overrides for tabs that affects pagination 3f4b726
  • refactor(Loader):remove image & add background image 70fe041
  • refactor(Loader):remove image & add background image ac38126
  • refactor(list): remove selection control a09b179
  • refactor(list): remove selection control 17bf710
  • refactor(storybook):unordered list minor change df2b727
  • refactor(storybook):unordered list minor change ef6db73
  • refactor(colors): remove metalic blue color b2f95b6
  • refactor(colors): remove metalic blue color 1eea33f
  • refactor(button): update variables b1774d8
  • refactor(button): update variables 061f3e3
  • change(blockquote): treat slate as a variation of blockquote component 19bd9a5
  • refactor(container): remove important from rules e984771
  • refactor(storybook):add textarea control to add/remove fluid class 475f540
  • refactor(container): remove important from rules 1cc6984
  • refactor(storybook): add required attribute to form fields fecee27
  • refactor(progressBar): update progress bar colors with vars c4ef1f0
  • refactor(progressBar): update progress bar colors with vars a44d73c
  • refactor(storybook): add required attribute to form fields 21da79e
  • refactor(list): adjust bullet size 2b29e4e
  • refactor(list): adjust bullet size 61c341c
  • refactor(statistic): add inverted background to global variables 1427e70
  • refactor(statistic): add inverted background to global variables ea25dfa
  • refactor(statistic): remove custom class 46cc560
  • refactor(container): update mobile width d548a44
  • refactor(grid): replace px with rem units e792f51
  • refactor(statistic): remove custom class b5c8e7c
  • change(docusaurus): updated template to change what's new title 3e15f4d
  • change(footer): added display variable for footer site logos d5b3c2f
  • refactor(grid): replace px with rem units f0331d0
  • change(github): auto deploy only on develop branch 11d6b4e
  • refactor(header): implementation in preparation for Volto integration #20 #89 95b136d
  • change(github): trigger autobuild when modifying templates contents 46094b1

🏠 Internal changes

  • style(list): prettier fixes f9e3b05
  • style(list): prettier fixes 8eb715b
  • chore(github): merge changes from develop to develop-itml 063bd6e
  • chore(github): build deployment only on develop branch a5a1b08
  • chore(github): build deployment only on develop branch bb455aa
  • chore(github): merge changes from develop to develop-itml 129c12f

🛠️ Others

  • Revert "chore(github): merge changes from develop to develop-itml" ca9520f
  • refactor breadcrumbs component, make it functional and customizable e902d69
  • rollback(cards): move custom display to volto-block-image-cards 2564b1e
  • bring back segment wrapper and make it attached 8458f03
  • no display: flex for blockquote added from slate 5595ce1
  • Add rule about code length a5f3652
  • Add indenting rule 15c44cb
  • fix warning related to proptype 946c6c6
  • fix profile section css overflow db5126f
  • Add rule about import sorting 804e188
  • don't use volto-slate 6a02976
  • remove segment custom width 1d3ea40
  • Add rule about naming vars 8f9020f
  • update style for accordion title 0b0d678
  • Release 1.6.0 e771e65
  • update bbcab87
  • add margin to <br> element to simulate gap as in design c6685c1
  • make breadcrumbs default size as tiny 589581f
  • remove uneeded style 82a8fb1
  • Add rule about hardcoded values e04e0df
  • Add file mode rule 65c9a93
  • Add DRY rule 66c9c3a
  • set profile section overflow to auto 71ab47f
  • Add Sonarqube tag using eea-website-frontend addons list 647a6e3
  • removed override already present in card.less 50d2ab2
  • update 7a1d482
  • Add functional components rule; add classnames rule 91a0b06
  • added comment about need for removal of this fix later 65b8166

0.1.5 - 2022-03-08

🚀 New Features

  • feat(cards): add custom display for volto-block-image-cards f49ffb6
  • feat(KeyContent): add new component 2534c54
  • feat(docusaurus): Updated developer guidelines ca146ff
  • feat(storybook): add testimonial component 55d9747
  • feat(storybook): add AvatarGrid component b668445
  • feat(storybook):add Loader component f675834

🐛 Bug Fixes

  • fix(breakpoints): fix largest screen breakpoint bug on scaling e4a11c8
  • fix(profile): section css overflow and padding issues #95 bb9eb0f
  • fix(storybook): lint auto changes for AvatarGrid b8e74f1
  • fix(components): add grid structure to various components cc33546
  • fix(header) re-added span tags removed in pull request #74 00702d7

💅 Enhancements

  • refactor(button): styling updates 37afda5
  • refactor(tab): updates on variables and overrides 54bf703
  • change(blockquote): treat slate as a variation of blockquote component 5e8a8b8
  • change(footer): added display variable for footer site logos 2f942b4
  • refactor(checkbox/radio): remove header from message and adjust top position of bullet 4a072b3
  • refactor(color): remove secondaryColorDarken variable 74c8ba0
  • change(docusaurus): updated template to change what's new title 58f58c8
  • change(github): auto deploy only on develop branch bfa35a3
  • refactor(header): implementation in preparation for Volto integration #20 #97 cddda20
  • refactor(breadcrumbs): component, make it functional and pluggable #32 #94 9f42e80
  • change(card): added styles for volto cards integration #92 a46ac21
  • refactor(grid): remove column count from example ac0e9cf
  • change(github): trigger autobuild when modifying templates contents 5f7d152
  • refactor(grid): remove custom grid 1d978a9
  • refactor(Form):change form field wrapper implementation 73cdd6d
  • refactor(message): update colors to match design 633ce31
  • refactor(checkbox/radio): update variables and remove important rules ad533b4
  • refactor(less variables): add variables to less for new components 47df026
  • refactor(Tab): fix vertical tab alignment 401bdf2
  • refactor(lint changes): add lint changes 6f6847f
  • refactor(inpageNavigation): adjust to volto theming 62f74ea
  • refactor(message): updates on styling b4cf850
  • refactor(banner): update class name ef0969b
  • change(github): use develop for auto pushing a32a723

🏠 Internal changes

  • style(design-system): unix eol 631fa90
  • style(checkbox/radio): prettier fixes a04939f
  • style(design-system): unix eol 3c753f0
  • style(message): stylelint fix 5b75057

🏠 Documentation changes

  • docs(docusaurus): visuals guidelines 544a950
  • docs(docusaurus): search guidelines 0fb229d
  • docs(docusaurus): loader page 892a25d

🛠️ Others

  • Reformat header.less 1f99dfc
  • Close menu when changing path 65daea9
  • refactor breadcrumbs component, make it functional and customizable 4ec374e
  • rollback(cards): move custom display to volto-block-image-cards 79d4c89
  • Open overlay menu on global menu click cc749bc
  • bring back segment wrapper and make it attached 9f413ff
  • Use renderMenuItem also in mobile menu 02de0bb
  • Fix clicking outside closes menu af52664
  • Cleanup args in header story 2bf6a30
  • fix warning related to proptype 824b9be
  • fix profile section css overflow 8fd2654
  • don't use volto-slate 70ca3d4
  • remove segment custom width 4a60d84
  • update 96f4af0
  • Fix TopDropdownMenu component rendering in mobile a4626de
  • Add usePrevious hook 797faba
  • make breadcrumbs default size as tiny 3c8e1c6
  • Update package.json fa020cb
  • Add rule about hardcoded values 0c6912c
  • set profile section overflow to auto 8db62bb
  • added comment about need for removal of this fix later 6fdbd71
  • Add Sonarqube tag using eea-website-frontend addons list 6051724
  • removed override already present in card.less 93c4e5a
  • Remove console.log calls 8a3a4cb
  • update 81bb7d4
  • Update comment ffa2400
  • merge develop into this branch ad5b388
  • WIP a8d97f1
  • Use header.less from develop branch 99edbc6
  • WIP 57b5783
  • WIP 785da36
  • WIP 5d1eba9
  • adds Tags e37fc19
  • Add useClickOutside hook 70364c8
  • Implement outside click handling fa6f818
  • Simplify overlay menu template 28b0478
  • fixes less variables, fixes tags positioning cc19b9b
  • WIP 15bc0f4
  • no display: flex for blockquote added from slate 312a893
  • Add rule about code length 318cd48
  • Add indenting rule d589685
  • Add rule about import sorting cd337c1
  • Add rule about naming vars b112de0
  • Bring back classNames from header subpopup e477a51
  • removes tags hashtag from jsx 6b8b3e9
  • WIP d481324
  • fixes undefined on empty classes 4b29080
  • stylelint changes a5ab830
  • Footer link color @white 578e4f7
  • add margin to <br> element to simulate gap as in design 9ab9a97
  • impors colors from site variables 6117267
  • small fix for the link in footer action 72df049
  • remove uneeded style 66e9064
  • use proper naming conventions for var naming 596e314
  • Add file mode rule 805baa7
  • use less variables b43ac8d
  • Add DRY rule 2f1584e
  • Add functional components rule; add classnames rule 1b2915e
  • fix z-index of header 7d2a5d6
  • Remove comment 7d120b1

0.1.4 - 2022-03-01

💅 Enhancements

  • refactor(pagination): adjust to volto theming 06cc3b6
  • refactor(Form):create form field wrapper file 95b9934
  • refactor(megaMenu): update margins for menu items 230e476
  • refactor(megaMenu): update gradient 47f2ea4

🏠 Documentation changes

  • docs(docusaurus): divider page c6bb238

🛠️ Others

0.1.4-beta.0 - 2022-02-25

🚀 New Features

  • feat(github): added feature and bug reports templates with our guidelines as checkboxes 1549093

0.1.3 - 2022-02-25

🐛 Bug Fixes

  • fix(all): change eol to unix 62e7224
  • fix(banner): separate url value f9c9140
  • fix(all): merge eol c68f6e0
  • fix(blockquote): align self property now uses a valid entry ec76163

💅 Enhancements

  • refactor(megaMenu): new implementation ff013af
  • change(volto): removed customizations made for ims theme from volto-eea-design-system bc8d514
  • refactor(Timeline): divide to sub components and change files to .jsx 3e2bd3b
  • refactor(header): update variables 4e5d08d
  • refactor(Header): link header's menu to mega menu 08406d8
  • refactor(Menu): change mega menu implementation 455a51b
  • refactor(Grid):minor changes and delete extra files 272585d
  • refactor(timeline): adjust to volto theming b98641a
  • refactor(megaMenu): fix link hover issue for tablet 564e972
  • refactor(header): add remix icons and minor updates c9c97dd
  • refactor(Header): change header buttons implementation 6608b8c
  • refactor(Header): add sub components and change existing Main 74c35a3
  • refactor(table): adjust to volto theming ab7a0e8
  • refactor(Footer): delete Actions & ThemeSites files and clear imports 7a78456
  • refactor(header): update variables 326655a
  • refactor(Breadcrumb): add react router link and minor bug fix 073a3a3
  • refactor(Header): show menu on search & minor bug fix 4d49a8a
  • refactor(List): add extra default list story 95665cd
  • change(docusaurus) change generation of what's new section and bump package version 6c35cff
  • refactor(Footer): minor code changes 67cb4bc
  • refactor(Menu): add class to mega menu items for styling 19baa34
  • change(accordion): modified default accordion stories titles with real accordion names cf11cc8
  • refactor(Header): accessibility image alt fix a7347a6
  • refactor(header): adjust to volto in progress 760beca
  • refactor(Header): header items as storybook arguments 388c752
  • refactor(banner): update less variables 35b0a98
  • refactor(banner): actions as buttons; don't hardcode url for banner image; subcomponentize Banner, add Banner.Action; add developer guidelines on inline styles and line endings; 6dd5a41
  • refactor(blockquote): fix responsive margins and sizes rems 209f94f
  • refactor(Input): label position and style change 970074a
  • refactor(header): update dropdown menu 32eb0fa
  • refactor(timeline): theming updates c80c9aa
  • refactor(Blockquote):remove image stories a6357ca
  • change(docusaurus) proofread blockquote usage section and removed unused api section 0bb29fd
  • change(infrastructure) cherry-pick fix 9639243 skipping jenkins on auto commits fc744cd
  • change(ci) build storybook and docusaurus only when pushing to develop-itml branch 4de0cbf
  • change(infrastructure): modify whats new doc when committing the auto deployment 39df33e
  • change(blockquote): introduce float argument for blockquote with image storybook 8fc7290
  • refactor(pullquote): add word break 2245e53
  • refactor(Banner): minor bug fix b9073b6
  • refactor(table): fix th font weight a96a0a7
  • refactor(comment): remove avatar border radius d42c37b
  • refactor(banner): adjust title size 7a24d9c
  • refactor(Image): change image path a580da6
  • change(infrastructure): specify that docs folder contains changes for deployment a1ca915

🏠 Internal changes

  • style(input) prettier fixes e83fa0c
  • chore(storybook): prettier fix 354c7b3
  • chore(design system): technical commit for edw integration tests 9f76035
  • style(storybook): prettier fixes 3c9ad34
  • chore(infrastructure) updated branch with changes from bitbucket 77866f8

🛠️ Others

  • doc(colours):fix color to better show primary ones 705b789
  • doc(colours):change font size to fit text in one line 4ad7516
  • bump package release to 1.3.0 f3cfe4f
  • Refactor banner into content subcomponent f8df238
  • lint fixes cda322d
  • rollback don'ts grammar change and disable unresolved import for Banner.stories.jsx a1bd715
  • Add space line in component d4d1a5f

0.1.2 - 2022-02-17

🚀 New Features

  • feat(blockquote) added blockquote styles as a custom module d30662e

🐛 Bug Fixes

  • fix(inpageNavigation): hide at the top of the page 97ef500
  • fix(footer):missing image ac91a29
  • fix(comment):fix broken image 8125dc1
  • fix(message): fix font loading fdc498e
  • fix(logo): logo change 5f8c8af

💅 Enhancements

  • refactor(storybook): multiple components fixes 4a3ff51
  • change(infrastructure) re-enable integration tests for auto release stack ce8daf8
  • refactor(storybook): global site files styling update f3770f1
  • refactor(storybook): multiple components 9277aac
  • refactor(footer) adjust to volto theming update a59f1c3
  • refactor(header): minor styling update dd6b55c
  • refactor(Header): change header mega menu 7559b57
  • refactor(banner): adjust to volto theming 451b949
  • refactor(accordion): minor styling update aeaf25f
  • refactor(footer): adjust to volto theming bdff176
  • refactor(footer):mobile responsiveness 14822be
  • refactor(storybook): main and custom less files update 1607760
  • refactor(timeline): update after removing timeline addon f54d380
  • refactor(Footer): replace with subcomponents 378c652
  • refactor(Header): header change 029e850
  • refactor(Header): change header bar 2b766fd
  • change(docusaurus) use itml branch for docusaurus deployment 6e286c5
  • refactor(accordion): adjust to volto theming 971fcb8
  • refactor(Header): add sub components 7f955db
  • change(docusaurus) tweak auto deployment to always commit changes from docs a2940da
  • refactor(banner): less and variables files created d5b1a8a
  • refactor(label): adjust to volto theming 3c945e1
  • refactor(message): adjust to volto theming 3e950fc
  • refactor(Footer): add sub components and props c3d1487
  • refactor(modal): modal and confirm adjust to volto theming 83b60e9
  • refactor(comment): adjust to volto theming 84348c3
  • refactor(storybook):adjust headings 32f64f9
  • refactor(Header): add comments to header menu c2c83b2
  • refactor(Accordion): clear up accordion stories code 4e59b8f
  • refactor(segmant): adjust to volto theming 3ab211e
  • refactor(button) minor styling update 8782bb2
  • refactor(banner): change image position cdd76d5
  • refactor(breadcrumbs): update less variables 640817e
  • refactor(list): adjust to volto theming 1079c73
  • refactor(timeline):adjust timeline module 213eb11
  • refactor(blockquote):adjust to volto theming 5eec87f
  • refactor(progress): add progress bar colors ccf3c98
  • refactor(pullquote):adjust to volto theming fee4466
  • refactor(Header): change mobile mega menu c7ecf18
  • refactor(statistic): adjust to volto theming b726e49
  • refactor(button) adjust to volto theming eb257f8
  • refactor(form): minor styling update 79934b2
  • refactor(Footer): create Actions & Sites sub components 446840b
  • refactor(inpageNavigation): adjust to volto theming 85c631a
  • refactor(Inpage Navigation): changed button's display 36e5b4f
  • enhancement(docusaurus) modified headings to be within release versions 19ace30
  • refactor(storybook): move components to ui folder cb91f88
  • refactor(Header): change mega menu de0fc6b
  • refactor(Pullquote): divide Pullquote to sub components 34413c4
  • enhancement(docusaurus) replace changelog when auto-building docs Refs #145331 da25c0e
  • refactor(popup): adjust to volto theming d0d192d
  • refactor(card):adjust to volto theming 2ab6f91
  • refactor(item): adjust to volto theming 89a16af
  • refactor(pullquotes) remove unnecessary variables e0d20a3
  • refactor(progress):adjust to volto theming d1ab950
  • refactor(blockquote) change variables names 36fd5be
  • refactor(comment): adjust font sizes 0311ed1
  • refactor(InpageNavigation): clear up code 1d7afdc
  • refactor(container): change variable name for computer padding 26d123f
  • refactor(inpageNavigation): remove imports 25c1d1c
  • refactor(storybook): update ui index components exports ce78d47
  • change(infrastructure) auto build storybook when pushing to develop-itml branch of volto-eea-design-system e9aa5bc
  • refactor(storybook): delete demo stories 8b58d02
  • change(docusaurus) align deployment steps for building docusaurus 37e4ce0
  • refactor(storybook): remove components from customizations folder 8930ede
  • refactor(tab): minor styling update 1252ad0
  • refactor(comment): change avatar src e5f9c4c
  • refactor(banner) : change file type and folder 878742b
  • refactor(form elements):changed text 919beea
  • refactor(Image): change image src b971084
  • refactor(Pullquote): add component propTypes d32c5e6
  • refactor(blockquote): adjust font sizes d71a3ce
  • refactor(footer): update font sizes 1c91c35
  • refactor(Blockquote): add component proTypes ea02649
  • refactor(logo): update image f611372
  • refactor(docusaurus): restore config f2c5239
  • refactor(blockquote): update component name 572e655
  • refactor(header): fix story header import ceda6c7
  • change(infrastructure) auto build docusaurus when pushing to develop-itml branch 7bebdf5
  • refactor(storybook): remove components from customization folder 4a9bb9b
  • refactor(banner):story rename 56ff603
  • change(testing) removed navigation from cypress tests until component is finished 5549f4c
  • refactor(Segment): change to .jsx extension 5cb35d8
  • refactor(Pullquote): change to .jsx extension 564cf7e
  • refactor(PopUp):change to .jsx extension dcb24ff
  • refactor(InpageNavigation): change to .jsx extension dfefce3
  • refactor(Blockquote): change to .jsx extension 44a1645
  • refactor(heading): story name update aa10f34

🏠 Internal changes

  • style(footer): prettier fix 902c257
  • style(storybook): prettier fixes 59f941d

🏠 Documentation changes

  • docs(docusaurus):multiple page updates 2aba73e
  • docs(docusaurus):update page content 565697f
  • docs(grid):update components grid 60eb083
  • docs(docusaurus): page adjustments 0641eac
  • docs(docusaurus):updated various pages f860176
  • docs(docusaurus): logo change 3af5e5c

🛠️ Others

  • added sortable table stories and descriptions 6d44dd7
  • Layout components theming 5861013
  • recovered files from origin a4ac04f
  • grid component & stories changes 4a5752e
  • Updated what's new section with actual commits from volto-eea-design-system repo fc5e3c3
  • Docusaurus title possible fix. db699e7
  • form elements stories added description & default values 6b4f6eb
  • removed API tabs 58aa928
  • Layout updates 854f388
  • Refs #142123 removed extra customization of semantic.less: ab9de81
  • added page-header,footer and grid in docusaurus 660c8e3
  • Manual docs build and commit 666eb6a
  • added svg & png files f1338d5
  • added missing components to docusaurus 934dfd8
  • Control descriptions updated 56581eb
  • Grid updates 700332d
  • Button theming update 0ec68b6
  • site variebales & overrides changes 7251162
  • Table and Tabs theming 49f0860
  • Responsiveness updates 48e1351
  • added various components to docusaurus 550d719
  • Checkbox and radio updates 24652a2
  • remove images from typography and colour docs 8493e92
  • added guidelines' text and finished all components 02d75fc
  • added more missing components in docusaurus 8be8263
  • Prettier changes on docusaurus 5f1e5eb
  • Grid updates ae09945
  • Minor fixes for tests 3bdf306
  • Layout updates 8b7a4dc
  • Footer and TOC theming bb3d3c4
  • Refs #145331 manually commit changelog until autobuild is stabilized 93168b0
  • label component changes df8c0ff
  • added several sections to the theming guidelines ff1a649
  • Updated removed files. 84f9b8c
  • added more docusaurus components 52a3b9e
  • Progress Bar 9f2efc9
  • Modal and Confirm updates 3b306c6
  • Add proper changes to whatsnew meant in previous commit 40f78e3
  • Form Descriptions de0dfbc
  • Prettier fixes 1337e6f
  • Deleted files b82f982
  • add new images for spacing 7b7b2c4
  • Messages Theming ad621a3
  • added new content to docusaurus 1c83452
  • Minor less updates a36a8bb
  • Tabs and lists updates e37eef1
  • Inpage nav and timeline components 76f0f82
  • Prettier updated files 679b9d2
  • dropdown initial d8aef26
  • Prettier changes f068af0
  • List initial 6d3b969
  • List story updated e96a6f6
  • Statistics updates 74bf639
  • styling c169cc0
  • timeline comp storybook changes 1f42686
  • feature(docusaurus) added theming guidelines ded1f04
  • Properly commented out integration tests. 48b3a15
  • Reattempting commented out integrations tests. 3dd8211
  • Button theming 4231e1c
  • Card initial 06dace5
  • form element storybook changes c4b06aa
  • Pagination theming 2a80175
  • Accordion theming 8061bf9
  • global var updates and radio story 9526ee2
  • created pullquote component & stories df35563
  • Item stories added description & default values 9d459f2
  • storybook clean up code bffd326
  • List updates 28f1b53
  • Button classes updates 788c289
  • Prettier fixes 678c9be
  • Removed header title from partial docusaurus components. ed7c45e
  • created banner component and stories 9be170f
  • Breadcrumb stories description & defaultValue -- clean up code 186ab65
  • Refs #142123 added customization of semantic.less: 1e02356
  • Card stories added description & default values f6b408f
  • Statistic and accordion updates 16064ce
  • breadcrumb component & stories changes 5bceb98
  • Container initial 3eb7155
  • doc(docusaurus):Fix text for various parts bfd3fa2
  • blockquote component & stories 879b640
  • Refs #143412 removed doc comments breaking doc building e6a6756
  • Popup updates ce2d641
  • Global variables for colors and borders added 6e5fbd6
  • Tab stories changes 5429cfb
  • Confirm stories added description & default value 85cda14
  • Kebab case class names b41cd07
  • Card and Comment class updates 3899465
  • Accordion updates c97ba39
  • item stories changes 772e41f
  • Accordion class updates 9cdde86
  • Comment stories added description & default value cb6f25b
  • Accrodion stories description & default value ab8fb88
  • Pullquotes updates c598421
  • Modal and confirm class updates 0ae47e6
  • Tab and paggination updates 96796ff
  • Form Updates e986a9f
  • Classes renamed 73c8c3d
  • List and item less updates ce0de17
  • Confirm theming 36e20ce
  • container overrides changes 4b3970b
  • Docusaurus theming fc4a8c5
  • refacto(headings): update mobile headings sizes b2e9f83
  • list stories and style changes c61db53
  • Tab theming e31e6c3
  • Message and pagination classes updates c230687
  • Segment initial d5724fe
  • Refs #143412 removed doc comments from api_markdown breaking doc building efeacba
  • Timeline and responsiveness updates 1ed1524
  • Refs #142123 use swap font-display for performance reasons 083738f
  • Breadcrumb stories minor changes 3d0d17c
  • Table component stories minor change 0bf4083
  • List stories changes a64b304
  • blockquote component minor changes cdf71a8
  • ckeckbox stories minor change 6d6e508
  • image component storybook changes 91290ec
  • button overrides changes d5b78dd
  • accordion overrides changes fdcf7d5
  • Accordion component and stories changes 5079247
  • Card theming 23bbb9d
  • statistic overrides changes 2b11cb5
  • Refs #143412 build docs only on pull request like we do with storybook 473bb87
  • Card component stories minor change | added link icon deb423a
  • comment component stories changes f1c5e75
  • Accordion component bug fixed 815e91d
  • Refs #145331 use iso date to release so that we see also time ceedf08
  • correct connfig for doco 93e1313
  • Item updates fae93d4
  • added layout grid 2e6be55
  • tab overrides changes 87aaf32
  • message overrides changes 6dccfca
  • segment storie changes 296371f
  • progress component stories changes df10c2e
  • message comp storybook changes c86b405
  • Accordion cmponent stories | minor bug fix 6de0d81
  • Refs #145331 add all changes when auto building docusaurus ce11cce
  • perf(timeline):removed semantic timeline package 0aeb34a
  • Tablet Breakpoint update b229c27
  • Refs #143412 set storyBook Url to eea.github.io b7fdecb
  • bump package version to signaling of a major release c835f1d
  • small commit to trigger deployment of storybook and docusaurus be46ea3
  • doc(accordion):revert previous change 3de02da
  • fix typo for caption @desktop line-height pixel number 1671552
  • Commented out integration tests. 574cfec
  • popup overrides changes a9555e3
  • container component stories fixes 692cfce
  • Added timeline to package json fixed f2e93e0
  • Refs #142123 modified import of volto-eea-design-system icon.less: a7fab7d
  • Refs #142123 reference icon.less from this package: 5616e6d
  • Menu component stories change 2797716
  • Image stories minor change ddb9f1d
  • card component stories changes 6ccba1e
  • Added timeline to package json 93031d6
  • table stories code clean up b7b2a56
  • Refs #143412 removed extra baseUrl from docusaurus config 79f36da
  • Accordion stories minor change ffe808a
  • Theme assets 3f4bea4
  • Merged with develop 167ec9f

0.1.2-beta.2 - 2022-01-03

0.1.2-beta.1 - 2021-12-22

🛠️ Others

  • Tab component stories minor changes 4690a6f
  • Comment component stories minor changes a87cb6a
  • Form stories changes fc30c90
  • Grid component stories minor changes 798fdd0
  • Image component stories minor changes be93385
  • Menu component stories minor changes cb1f9a8
  • Dropdown component stories minor changes 57cf954
  • Header component stories minor changes 264fd46
  • Confirn component minor changes 9a00bc1
  • Item component stories minor changes 6994fa0
  • Label component stories changes 5cc5843
  • Container component stories minor changes e6e40b3
  • Message component stories minor changes ba9d377
  • Breadcrumb component stories minor changes ff7a176
  • Modal component stories minor changes af1fe6a
  • List stories changes 0016042
  • Button component stories minor changes 690dfd2
  • Radio component stories minor changes 84eac30
  • Progress component stories minor changes e676357
  • Pagination component stories minor changes b1af226
  • Segment component stories minor changes 5f8c7ef
  • Refs #143412 eslint fixes for component stories badcb91
  • Table component stories minor changes 7c104b8
  • Refs #143412 more eslint fixes a88c091
  • Refs #143412 warn for broken links instead of throwing bd5821c
  • Refs #143412 merge changes from develop-itml to develop branch bca28b9
  • made tabs dynamic for api tab ea37ecb
  • Basic storybook/Docusaurus components 840ab60
  • created List directory & srories based on semantic-ui List component 51f1901
  • made tabs as component easy to call for other components 07bae49
  • Popup Component | minor fixes 2ff9908
  • created stories for Tab component 95e3a73
  • created Table directory and stories based on semantic-ui Table component e16115d
  • List component stories - minor changes de11343
  • created stories for Comment component a20f884
  • created stories for Grid component 360d2a8
  • created stories for Image component 3c1d2bc
  • created stories for Menu component 17e3b37
  • Added untracked files 75f0afd
  • created Dropdown stories d6a2538
  • created Header component stories b833979
  • created stories for semantic-ui Confirm component 6fddccc
  • created Statistic directory and stories with semantic-ui Statistic component cd62498
  • created Item component stories 90ec2be
  • created stories for Container component 41934f6
  • created Label component stories 71732f6
  • created Message component stories adcbeab
  • created Modal component stories c25409d
  • Breadcrumb component stories and minor changes 6264d92
  • created Pagination component stories 57cdad3
  • created Segment component stories d8d01d7
  • created stories for Radio component 1fd062d
  • Menu stories minor changes 6ba5e0d
  • Statistic component stories minor changes 3c874a5
  • Card component stories minor changes 290bda8
  • Accrordion stories minor changes 2ee3f59
  • renamed Demo folder to Layout b9f6d05
  • remove test exclusion 94dba3e
  • Accordion component stories minor changes e672d59
  • fix docusaurus url (removed trailing /) b6c59fc
  • Item component stories - minor changes f0a9902
  • eea logos and assets b435b51

0.1.2-beta.0 - 2021-12-18

🛠️ Others

  • Refs #140454 added github action to build docusaurus to the develop branch abe6a72

0.1.1 - 2021-12-16

🛠️ Others

  • Refs #140454 changed the following to volto-eea-design-system: 6791d41
  • Refs #140454 corrected base url for docusaurus website build 98271b3
  • Initial test changes on design system/docusaurus. 9dad612
  • After prettier check 9ec40b4
  • Refs #140454 restore SearchWidget.jsx content and removed dummy text from docs intro page 7505df8
  • Refs #140454 added references to eea and the storybook in the docusaurus footer 42bbfcd
  • Refs #140454 lint fixes 9502f2b
  • Add SonarQube badges a4e0a40
  • Refs #140454 brought changes from develop-itml and upgrades docusaurus 207c873
  • Refs #140454 removed extra content not needed by the docusaurus site bc68ebe
  • Refs #140454 updated docusaurus to latest beta d68ed8a

0.1.1-beta.0 - 2021-12-09

🛠️ Others

  • Refs #140454 moved header and footer templates from volto-ims-theme: e2d5e56
  • Refs #140454 added website folder with docusaurus site skeleton 6fd15f4
  • Refs #142794 added commented implementation of the header and footer area: 773ad87
  • Refs #140454 changed the following: 4137ec4
  • Refs #140454 removed storybook from volto-eea-design-system: a129ffb
  • Refs #140454 added storybook as a dev dependency: e04ae4e
  • Refs #140454 updated Breadcrumbs.jsx to latest version: 63fe507
  • Refs #140454 we should use jsx and not mdx for storybook tests 3668e66
  • Refs #140454 updated eea-design-system readme with extra info on package contents d2efc3d
  • Refs #142010 - Optimize Volto-addons gitflow pipelines 3af46d2
  • Refs #140454 Renamed folders of docusaurus website: 15bca74
  • Add demo story 757c409
  • Refs #142794 enabled minimum css so that header looks decent adbe233
  • Refs #140454 use the develop branch for the readme linking, it's always more up to date 23dcf16
  • Refs #140454 added missing themes reference for the eea theme e9ca244
  • Refs #140454 modified assets imports after move to volto-eea-design-system 2250cc7
  • Load footer in segment 80d38a9
  • Refs #140454 bump package version to 1.1.0 from 0.1.1 from develop branch: 1314039
  • Refs #142794 keep toolbalWidth variables in case design system runs in an older version of Volto 1a8b305
  • Refs #142794 changed the following: fbb80b1
  • Refs #140454 moved storybook scripts to the scripts section 705c4c3
  • Refs #140454 removed dangling comma 514f24d
  • Refs #140454 changed link to the start of the docs 0e16fdf
  • Refs #140454 add h1 to the list of elements that are max 800px and centered 7d3c30f
  • Add Sonarqube tag using ims-frontend addons list 8d657d0

0.1.0 - 2021-11-17

🛠️ Others

  • Refs #140454 changed the following to volto-eea-design-system: 40d2af6
  • Refs #141204 elements folder now has the variables and overrides from pastanaga theme 595b4e6
  • Refs #141204 use font awesome from SemanticUI instead of Pastanaga: 4e273ca
  • Refs #141204 removed the components customizations from volto-eea-design-system: c98c260
  • Refs #141204 added customizations folder from volto-ims-theme to volto-eea-design-system: ff4bf44
  • Refs #141204 modules folder now has the variables and overrides from pastanaga theme f2841b6
  • Refs #141204 customized Comments.jsx to remove unnecessary container b2e95d7
  • Refs #132149 added initial commit for volto-eea-design-system: 2934b91
  • Refs #141204 collection folder now has the variables and overrides from pastanaga: 213d496
  • Refs #141204 removed search widget customization, we can use volto-ims-theme for that file b7e8b0c
  • Refs #141204 stylelint quick fixes 5595925
  • Refs #141204 changed the following: 769f4f9
  • Refs #141204 changed the following to the eea theme: 06d8d86
  • Refs #141204 eea site.variables now use all values from pastanaga's site.variables 6535c0f
  • Refs #141204 simplified container overrides: 5125003
  • Release 1.0.0 177d0ce
  • Refs #141204 globals folder now has the variables and overrides from pastanaga theme 116a0c3
  • Refs #141204 changed the following: 2e7f423
  • Refs #141204 modules folder now has the variables and overrides from pastanaga theme: 27a201d
  • Refs #141204 text elements are now with a max width and centered within content-area: bbed7bb
  • Refs #141204 added main.variables entries from pastanaga to eea theme 1cbbc55
  • Refs #141204 modified theme image imports for component customizations ef3238a
  • Refs #141204 modified container width to be auto: 2e8d2e0
  • Refs #141204 modified several icons to use the \f values instead of \e: c397145
  • Refs #141204 changed the following: c518eda
  • Refs #141204 ensure that main column isn't enlarged over the sidebar section on edit f7a2868
  • Refs #141204 changed the following to the form styling: eb92e05
  • Refs #141204 modified path of theme folder location for image selection f8cca45
  • Refs #141204 added missing mobileScrollbarWidth variables introduced as part of the mobile navigation pull request 444c78d
  • Refs #140454 reference font and image path from ~volto-themes instead of relative ec93ed3
  • Refs #141204 ensure that Volto doesn't crash when site module is set to eea: 51f2f27
  • Refs #141204 added tiny size prop to Breadcrumbs in order to have it as 12px 56a12e2

0.0.1 - 2021-11-17

🛠️ Others

+ \ No newline at end of file diff --git a/docs/index.html b/docs/index.html index e2b61de709..aadb481110 100644 --- a/docs/index.html +++ b/docs/index.html @@ -5,13 +5,13 @@ Welcome to EEA Design System Homepage | EEA Design System - +

EEA Design System

Creating a consistent user experience for our digital products

I am a...

Web developer

Design system for web developers

Web designer

Design system for web designers

Web content creator

Tips and tricks for writing for the web

Publication writer

Writing manual for publications

Publication designer

Design system for publications

Data scientist

Design system for data scientists

- + \ No newline at end of file diff --git a/website/docs/2-whatsnew.md b/website/docs/2-whatsnew.md index 1d5a7c7337..5c2a031352 100644 --- a/website/docs/2-whatsnew.md +++ b/website/docs/2-whatsnew.md @@ -32,33 +32,55 @@ Below is a non-exhaustive list of the work-in-progress which is planned for futu Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). -### [Unreleased](https://github.com/eea/volto-eea-design-system/compare/1.0.6...HEAD) - 2023-04-06T13:47:14.894Z +### [Unreleased](https://github.com/eea/volto-eea-design-system/compare/1.0.6...HEAD) - 2023-04-07T18:14:46.589Z + +#### :rocket: New Features + +- feat(storybook): components keyboard and screen reader optimization #324 from eea/design-system-accessibility [`85faff7`](https://github.com/eea/volto-eea-design-system/commit/85faff73025442a012f079b6734ef868862cc44f) #### :bug: Bug Fixes -- fix(header): external url in header now takes you to the correct url #330 from eea/header-external-url-fix [`086c61d`](https://github.com/eea/volto-eea-design-system/commit/086c61d683a7ac67dea221aa39ffe4cef05a9a68) -- fix(item): flex variant on edit when inside blockchooser #333 from eea/fix-item-csss [`65b9099`](https://github.com/eea/volto-eea-design-system/commit/65b9099779180feeb7d10384928bb0a3224b947d) - fix: dont run isInternalURL twice [`a48984e`](https://github.com/eea/volto-eea-design-system/commit/a48984e0cb224944aed3846447c416511d080779) - fix: github autoformat [`be97749`](https://github.com/eea/volto-eea-design-system/commit/be9774981032759b3284a6fb93490a204a817c7a) +- fix(cards): focus outline for header needed for the overflow hidden solution with max title lines [`849a7a8`](https://github.com/eea/volto-eea-design-system/commit/849a7a8e3cf801bf0a4d7e9189b603ea15219fcc) +- fix(header): external url in header now takes you to the correct url #330 from eea/header-external-url-fix [`086c61d`](https://github.com/eea/volto-eea-design-system/commit/086c61d683a7ac67dea221aa39ffe4cef05a9a68) +- fix(item): flex variant on edit when inside blockchooser #333 from eea/fix-item-csss [`65b9099`](https://github.com/eea/volto-eea-design-system/commit/65b9099779180feeb7d10384928bb0a3224b947d) - fix: external url in header [`9e3aea6`](https://github.com/eea/volto-eea-design-system/commit/9e3aea649ca6f9446324d5d351cdfcde08332f84) - fix: check if client method change [`7c53b83`](https://github.com/eea/volto-eea-design-system/commit/7c53b83a54e4e7d3c5329c46de03cdf7aabedf13) - fix(item): use child selector instead of descendent as it interferes with blockchooser refs #157040 [`ad4ca37`](https://github.com/eea/volto-eea-design-system/commit/ad4ca3725c595c8dbeaff69f730928313c1779ec) +- fix(tag): fix in args [`18eaaf4`](https://github.com/eea/volto-eea-design-system/commit/18eaaf41fa80a3e175341a2ddd7376b8281fee7d) #### :nail_care: Enhancements - refactor(megaMenu): align menu items with demo site for better testing [`82a5c84`](https://github.com/eea/volto-eea-design-system/commit/82a5c84cfde81dd8243f3f9a2d1fcaa8ac4b1463) - refactor(breadcrumbs): updates on structure and story for accessibility [`770c8c0`](https://github.com/eea/volto-eea-design-system/commit/770c8c0bce88c5d9301ab0293a8e4865849bfeb2) - change(logo): update eionet svg [`3c87fc7`](https://github.com/eea/volto-eea-design-system/commit/3c87fc750a3dc376205a643eefced410a41b22c6) +- refactor(downloadLabeledIcon): accessibility fix [`df3935d`](https://github.com/eea/volto-eea-design-system/commit/df3935dc5836298768316399ba36927325541fef) +- refactor(languageLabeledIcon): accessibility fix [`61edd9e`](https://github.com/eea/volto-eea-design-system/commit/61edd9e1022a8954930db30c262290680974d880) - refactor(megaMenu): Restructure Topics and Countries lists [`d816e7a`](https://github.com/eea/volto-eea-design-system/commit/d816e7ab9cdf2f202ab994201c16241cfb26c33a) +- refactor(newTabLabeledIcon): accessibility fix [`211e40a`](https://github.com/eea/volto-eea-design-system/commit/211e40aa47d1f0de91b1d949770c452336b80248) +- refactor(comment): accessibility fixes and text button update [`dad8cb6`](https://github.com/eea/volto-eea-design-system/commit/dad8cb67a0092b01b50197c94691ed8a5d00a128) - change(mega-menu): use lists for navigation, enhance voice over support for better accessibility [`d13137f`](https://github.com/eea/volto-eea-design-system/commit/d13137f024d6357514b85f184d219eb81dd585f2) +- change(storybook): removed links for Label and Comment that we implement without a link [`ee0bfdf`](https://github.com/eea/volto-eea-design-system/commit/ee0bfdf3aee3e4b6b6eba6dabd7817a37ace48ae) +- refactor(card): fix header outline not showing issue [`48fc2e2`](https://github.com/eea/volto-eea-design-system/commit/48fc2e2328ff184402e15edbaf1ed2507e771a14) - refactor(header): firefox accessibility errors fix [`c7d35b9`](https://github.com/eea/volto-eea-design-system/commit/c7d35b92b90940b466ea016dbbb3f1c6dfa0c3ab) +- change(ContextNavigation): accessibility updates, not restructuring of the volto component [`03fe83d`](https://github.com/eea/volto-eea-design-system/commit/03fe83dce70c6931c543b93c71e3cd8e16f99ec8) +- refactor(modal): restructure close icon as button [`f1b836e`](https://github.com/eea/volto-eea-design-system/commit/f1b836e3071c220235eb327ee7ef67edac4d467d) +- refactor(label): add href attribute to links [`05f664d`](https://github.com/eea/volto-eea-design-system/commit/05f664dde27f1e0580ab7f32a7934e4d8e85c918) +- refactor(inpageNavigation): restructure as a button [`48e22ac`](https://github.com/eea/volto-eea-design-system/commit/48e22ac0ee521f87497822a0ec9d627829d849d5) +- refactor(labeledIconGroup): group updates for all labeled icons [`a679d9d`](https://github.com/eea/volto-eea-design-system/commit/a679d9d05b804f516fdeed449eba1e74e227818c) - change(breadcrumbs): label modification for better screen reader output [`c967bef`](https://github.com/eea/volto-eea-design-system/commit/c967bef63ac6f622f5936235dd5590831a674d15) +- refactor(checkbox): accessibility fix [`3b3047f`](https://github.com/eea/volto-eea-design-system/commit/3b3047f6a6bdd9e9ad858e6a7ca0c6f6b404e605) +- change(mega-menu): sub-title padding tweaks for better spacing normalization [`e08668d`](https://github.com/eea/volto-eea-design-system/commit/e08668dd9fd948e57628e5582e7a4a7f08d96451) +- change(card): simplified headerLineHeightOffset used as margin top for cards header [`ca61105`](https://github.com/eea/volto-eea-design-system/commit/ca61105f2f39e6880ce545ba4d54f3568e7b87e2) - refactor(megaMenu): clean up function after test [`883eb73`](https://github.com/eea/volto-eea-design-system/commit/883eb73cbc3db6a1fadd0200118eafdce91b7aab) - change(mega-menu): added code to align countries left column subtitle with the right column [`1aa33dd`](https://github.com/eea/volto-eea-design-system/commit/1aa33dd7ac7154a91515eef688f276d664d5d7f3) -- change(mega-menu): sub-title padding tweaks for better spacing normalization [`e08668d`](https://github.com/eea/volto-eea-design-system/commit/e08668dd9fd948e57628e5582e7a4a7f08d96451) - change(logos): updated eionet logo used in the site footer #318 from eea/footer-logo-update [`70671d0`](https://github.com/eea/volto-eea-design-system/commit/70671d03bbc228e3013e382cb51e6764a83b01a8) -- change(breadcrumbs,mega-menu): better screen readers support, see links instead of groups #309 from eea/firefox-accessibility-tab-issues [`d6b0b4a`](https://github.com/eea/volto-eea-design-system/commit/d6b0b4adba8f04799491025fb41ac97e875bcce0) - change(breadcrumbs): fixed sizing of breadcrumbs list items [`1761e98`](https://github.com/eea/volto-eea-design-system/commit/1761e984a6ffebbcca0c7b88128a01235fc6b903) +- change(checkbox): toggle hover color correction [`4f4d0df`](https://github.com/eea/volto-eea-design-system/commit/4f4d0df7292fdccb89f83feface51639bd5d6559) +- change(breadcrumbs,mega-menu): better screen readers support, see links instead of groups #309 from eea/firefox-accessibility-tab-issues [`d6b0b4a`](https://github.com/eea/volto-eea-design-system/commit/d6b0b4adba8f04799491025fb41ac97e875bcce0) +- change(card): add links to teaser titles [`cc64c74`](https://github.com/eea/volto-eea-design-system/commit/cc64c74a69539af287f424abdf96226635284303) +- change(inpageNavigation): story improvements [`ade63c6`](https://github.com/eea/volto-eea-design-system/commit/ade63c6f0b08c62318d31c54568cca29d0f106bc) #### :house: Internal changes From 124e245424eacc204d989ad975dc7209657bfe98 Mon Sep 17 00:00:00 2001 From: EEA Jenkins <@users.noreply.github.com> Date: Fri, 7 Apr 2023 19:46:49 +0000 Subject: [PATCH 42/45] Automated release 1.0.7 --- CHANGELOG.md | 75 ++++++++++++++++++++++++++++++++++++++++++++++++++++ package.json | 2 +- 2 files changed, 76 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 89a7a14000..d9a93840e1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,10 +4,69 @@ All notable changes to this project will be documented in this file. Dates are d Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). +### [1.0.7](https://github.com/eea/volto-eea-design-system/compare/1.0.6...1.0.7) - 7 April 2023 + +#### :rocket: New Features + +- feat(storybook): components keyboard and screen reader optimization #324 from eea/design-system-accessibility [ichim-david - [`85faff7`](https://github.com/eea/volto-eea-design-system/commit/85faff73025442a012f079b6734ef868862cc44f)] + +#### :bug: Bug Fixes + +- fix(cards): focus outline for header needed for the overflow hidden solution with max title lines [David Ichim - [`849a7a8`](https://github.com/eea/volto-eea-design-system/commit/849a7a8e3cf801bf0a4d7e9189b603ea15219fcc)] +- fix(header): external url in header now takes you to the correct url #330 from eea/header-external-url-fix [ichim-david - [`086c61d`](https://github.com/eea/volto-eea-design-system/commit/086c61d683a7ac67dea221aa39ffe4cef05a9a68)] +- fix(item): flex variant on edit when inside blockchooser #333 from eea/fix-item-csss [ichim-david - [`65b9099`](https://github.com/eea/volto-eea-design-system/commit/65b9099779180feeb7d10384928bb0a3224b947d)] +- fix(item): use child selector instead of descendent as it interferes with blockchooser refs #157040 [nileshgulia1 - [`ad4ca37`](https://github.com/eea/volto-eea-design-system/commit/ad4ca3725c595c8dbeaff69f730928313c1779ec)] +- fix: github autoformat [andreiggr - [`be97749`](https://github.com/eea/volto-eea-design-system/commit/be9774981032759b3284a6fb93490a204a817c7a)] +- fix: dont run isInternalURL twice [Andrei Grigore - [`a48984e`](https://github.com/eea/volto-eea-design-system/commit/a48984e0cb224944aed3846447c416511d080779)] +- fix: check if client method change [andreiggr - [`7c53b83`](https://github.com/eea/volto-eea-design-system/commit/7c53b83a54e4e7d3c5329c46de03cdf7aabedf13)] +- fix: external url in header [andreiggr - [`9e3aea6`](https://github.com/eea/volto-eea-design-system/commit/9e3aea649ca6f9446324d5d351cdfcde08332f84)] +- fix(tag): fix in args [Antonis Tarantilis - [`18eaaf4`](https://github.com/eea/volto-eea-design-system/commit/18eaaf41fa80a3e175341a2ddd7376b8281fee7d)] + +#### :nail_care: Enhancements + +- change(card): simplified headerLineHeightOffset used as margin top for cards header [David Ichim - [`ca61105`](https://github.com/eea/volto-eea-design-system/commit/ca61105f2f39e6880ce545ba4d54f3568e7b87e2)] +- change(storybook): removed links for Label and Comment that we implement without a link [David Ichim - [`ee0bfdf`](https://github.com/eea/volto-eea-design-system/commit/ee0bfdf3aee3e4b6b6eba6dabd7817a37ace48ae)] +- change(logos): updated eionet logo used in the site footer #318 from eea/footer-logo-update [ichim-david - [`70671d0`](https://github.com/eea/volto-eea-design-system/commit/70671d03bbc228e3013e382cb51e6764a83b01a8)] +- refactor(label): add href attribute to links [Antonis Tarantilis - [`05f664d`](https://github.com/eea/volto-eea-design-system/commit/05f664dde27f1e0580ab7f32a7934e4d8e85c918)] +- change(breadcrumbs,mega-menu): better screen readers support, see links instead of groups #309 from eea/firefox-accessibility-tab-issues [ichim-david - [`d6b0b4a`](https://github.com/eea/volto-eea-design-system/commit/d6b0b4adba8f04799491025fb41ac97e875bcce0)] +- change(mega-menu): added code to align countries left column subtitle with the right column [David Ichim - [`1aa33dd`](https://github.com/eea/volto-eea-design-system/commit/1aa33dd7ac7154a91515eef688f276d664d5d7f3)] +- change(mega-menu): sub-title padding tweaks for better spacing normalization [David Ichim - [`e08668d`](https://github.com/eea/volto-eea-design-system/commit/e08668dd9fd948e57628e5582e7a4a7f08d96451)] +- change(breadcrumbs): fixed sizing of breadcrumbs list items [David Ichim - [`1761e98`](https://github.com/eea/volto-eea-design-system/commit/1761e984a6ffebbcca0c7b88128a01235fc6b903)] +- change(inpageNavigation): story improvements [Antonis Tarantilis - [`ade63c6`](https://github.com/eea/volto-eea-design-system/commit/ade63c6f0b08c62318d31c54568cca29d0f106bc)] +- refactor(inpageNavigation): restructure as a button [Antonis Tarantilis - [`48e22ac`](https://github.com/eea/volto-eea-design-system/commit/48e22ac0ee521f87497822a0ec9d627829d849d5)] +- change(breadcrumbs): label modification for better screen reader output [David Ichim - [`c967bef`](https://github.com/eea/volto-eea-design-system/commit/c967bef63ac6f622f5936235dd5590831a674d15)] +- change(checkbox): toggle hover color correction [Antonis Tarantilis - [`4f4d0df`](https://github.com/eea/volto-eea-design-system/commit/4f4d0df7292fdccb89f83feface51639bd5d6559)] +- refactor(checkbox): accessibility fix [Antonis Tarantilis - [`3b3047f`](https://github.com/eea/volto-eea-design-system/commit/3b3047f6a6bdd9e9ad858e6a7ca0c6f6b404e605)] +- refactor(newTabLabeledIcon): accessibility fix [Antonis Tarantilis - [`211e40a`](https://github.com/eea/volto-eea-design-system/commit/211e40aa47d1f0de91b1d949770c452336b80248)] +- refactor(languageLabeledIcon): accessibility fix [Antonis Tarantilis - [`61edd9e`](https://github.com/eea/volto-eea-design-system/commit/61edd9e1022a8954930db30c262290680974d880)] +- refactor(downloadLabeledIcon): accessibility fix [Antonis Tarantilis - [`df3935d`](https://github.com/eea/volto-eea-design-system/commit/df3935dc5836298768316399ba36927325541fef)] +- refactor(labeledIconGroup): group updates for all labeled icons [Antonis Tarantilis - [`a679d9d`](https://github.com/eea/volto-eea-design-system/commit/a679d9d05b804f516fdeed449eba1e74e227818c)] +- change(ContextNavigation): accessibility updates, not restructuring of the volto component [Antonis Tarantilis - [`03fe83d`](https://github.com/eea/volto-eea-design-system/commit/03fe83dce70c6931c543b93c71e3cd8e16f99ec8)] +- refactor(comment): accessibility fixes and text button update [Antonis Tarantilis - [`dad8cb6`](https://github.com/eea/volto-eea-design-system/commit/dad8cb67a0092b01b50197c94691ed8a5d00a128)] +- change(card): add links to teaser titles [Antonis Tarantilis - [`cc64c74`](https://github.com/eea/volto-eea-design-system/commit/cc64c74a69539af287f424abdf96226635284303)] +- refactor(card): fix header outline not showing issue [Antonis Tarantilis - [`48fc2e2`](https://github.com/eea/volto-eea-design-system/commit/48fc2e2328ff184402e15edbaf1ed2507e771a14)] +- refactor(modal): restructure close icon as button [Antonis Tarantilis - [`f1b836e`](https://github.com/eea/volto-eea-design-system/commit/f1b836e3071c220235eb327ee7ef67edac4d467d)] +- change(logo): update eionet svg [Antonis Tarantilis - [`3c87fc7`](https://github.com/eea/volto-eea-design-system/commit/3c87fc750a3dc376205a643eefced410a41b22c6)] +- refactor(megaMenu): clean up function after test [Antonis Tarantilis - [`883eb73`](https://github.com/eea/volto-eea-design-system/commit/883eb73cbc3db6a1fadd0200118eafdce91b7aab)] +- refactor(megaMenu): align menu items with demo site for better testing [Antonis Tarantilis - [`82a5c84`](https://github.com/eea/volto-eea-design-system/commit/82a5c84cfde81dd8243f3f9a2d1fcaa8ac4b1463)] +- refactor(breadcrumbs): updates on structure and story for accessibility [Antonis Tarantilis - [`770c8c0`](https://github.com/eea/volto-eea-design-system/commit/770c8c0bce88c5d9301ab0293a8e4865849bfeb2)] +- refactor(megaMenu): Restructure Topics and Countries lists [Antonis Tarantilis - [`d816e7a`](https://github.com/eea/volto-eea-design-system/commit/d816e7ab9cdf2f202ab994201c16241cfb26c33a)] +- change(mega-menu): use lists for navigation, enhance voice over support for better accessibility [David Ichim - [`d13137f`](https://github.com/eea/volto-eea-design-system/commit/d13137f024d6357514b85f184d219eb81dd585f2)] +- refactor(header): firefox accessibility errors fix [Antonis Tarantilis - [`c7d35b9`](https://github.com/eea/volto-eea-design-system/commit/c7d35b92b90940b466ea016dbbb3f1c6dfa0c3ab)] + +#### :house: Internal changes + +- style(megaMenu): remove comments and unused properties [Antonis Tarantilis - [`fa5f8f8`](https://github.com/eea/volto-eea-design-system/commit/fa5f8f878421d879026aacd86e5390112b8852a1)] + +#### :house: Documentation changes + +- docs(footer): logo update [Manthos Matzios - [`ad982d6`](https://github.com/eea/volto-eea-design-system/commit/ad982d63423442bc292cd7553ad3163b33b337bb)] + ### [1.0.6](https://github.com/eea/volto-eea-design-system/compare/1.0.5...1.0.6) - 29 March 2023 #### :rocket: New Features +- feat: add viewport-(width/height) less functions and fixed banner image url #329 from eea/develop [ichim-david - [`e8e70bd`](https://github.com/eea/volto-eea-design-system/commit/e8e70bdc81f4f301a9dce370867a873e55563048)] - feat: add viewport-(width/height) less functions [Miu Razvan - [`68300a3`](https://github.com/eea/volto-eea-design-system/commit/68300a3c34e66954c7ef3a6e52baa37431fbfa9e)] #### :nail_care: Enhancements @@ -167,6 +226,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - Release 1.0.0-beta.5 [Alin Voinea - [`e4417e1`](https://github.com/eea/volto-eea-design-system/commit/e4417e121477511c350ae3fbe4e70aadb445ed86)] - better useOnScreen hook [Andrei Grigore - [`c214b6b`](https://github.com/eea/volto-eea-design-system/commit/c214b6b76443f81c795ce2f3aa457562ec088b30)] +- Add Sonarqube tag using eea-website-frontend addons list [EEA Jenkins - [`b227cf8`](https://github.com/eea/volto-eea-design-system/commit/b227cf8a8c44b9d91e9fda8a7999fb0a42bacdca)] - feature(mobile): increased performance by lazy loading footer images #303 from eea/increase_performance [ichim-david - [`80d1df1`](https://github.com/eea/volto-eea-design-system/commit/80d1df1c459680331d486f9e8e6a95c9db0adbf6)] - prettier [David Ichim - [`a7f8384`](https://github.com/eea/volto-eea-design-system/commit/a7f838470c1bcc4e2be115d514d92a1b686a5e9b)] - fixed less build failure due to changes in footer.less [David Ichim - [`190bc8c`](https://github.com/eea/volto-eea-design-system/commit/190bc8cfa88191b45808f1e27c6e2737ee3d15b1)] @@ -237,6 +297,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). #### :house: Internal changes +- chore(docusaurus): ignore website/.yarn [Giorgos Stamatis - [`0b33ffd`](https://github.com/eea/volto-eea-design-system/commit/0b33ffd1dda61b126e3cc5ff48888124d6aee41b)] - style(header): react syntax fix [Antonis Tarantilis - [`3add127`](https://github.com/eea/volto-eea-design-system/commit/3add1271c785a92bea0ef925d7bc562cef1e0d92)] #### :house: Documentation changes @@ -433,6 +494,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - Release 1.0.0-alpha.10 [Alin Voinea - [`7014d08`](https://github.com/eea/volto-eea-design-system/commit/7014d080ce114bd0bc039abeecbd7229333b0971)] - Add variable definitions [kreafox - [`293fe65`](https://github.com/eea/volto-eea-design-system/commit/293fe65e2f24e6290e1286229169a77f9be4750e)] +- Add Sonarqube tag using advisory-board-frontend addons list [EEA Jenkins - [`ef58a6f`](https://github.com/eea/volto-eea-design-system/commit/ef58a6f5ad8deea26b1395a86778fe1159b7617b)] - Back to dev [Alin Voinea - [`31d4616`](https://github.com/eea/volto-eea-design-system/commit/31d461662b9184a7bbe190e86f3c47fab39229fe)] ### [1.0.0-alpha.9](https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.8...1.0.0-alpha.9) - 28 December 2022 @@ -490,6 +552,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - bump package version [David Ichim - [`b4628be`](https://github.com/eea/volto-eea-design-system/commit/b4628bed134abc76e38a243d4e98143e19cef989)] - feature(docusaurus, storybook): logos selection for sites plus inverted options #253 from eea/doc-logo-page [ichim-david - [`dbfc90d`](https://github.com/eea/volto-eea-design-system/commit/dbfc90d035dc40e9d4054347f00fde4de486d63d)] - (feat): Add ability to disable the language select from website top menu - refs #158616 [dobri1408 - [`411c8e4`](https://github.com/eea/volto-eea-design-system/commit/411c8e4afaf0b2b9edfdeeecdca22aa4cc41f329)] +- Add Sonarqube tag using advisory-board-frontend addons list [EEA Jenkins - [`c4769e9`](https://github.com/eea/volto-eea-design-system/commit/c4769e987d525f5dcafac8e6cf8a89fd8111667d)] - test(Jenkins): Run tests and cypress with latest canary @plone/volto [Alin Voinea - [`92feea0`](https://github.com/eea/volto-eea-design-system/commit/92feea09796c9ef0530f65fa1d34139905133215)] - Proof reading page header section [ichim-david - [`230239e`](https://github.com/eea/volto-eea-design-system/commit/230239e1b22734fb8606656985bc5e513731e244)] ### [1.0.0-alpha.7](https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.6...1.0.0-alpha.7) - 16 December 2022 @@ -521,6 +584,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). #### :hammer_and_wrench: Others - Release 1.0.0-alpha.7 [Alin Voinea - [`7e66bcc`](https://github.com/eea/volto-eea-design-system/commit/7e66bcc296b389bc55073e7f99681534977dce3a)] +- Add Sonarqube tag using cca-frontend addons list [EEA Jenkins - [`ce47e9b`](https://github.com/eea/volto-eea-design-system/commit/ce47e9b163bcb4eda988e3a87718b54ffbd3f99f)] - added back descriptionDistance variable until package release [David Ichim - [`3af811a`](https://github.com/eea/volto-eea-design-system/commit/3af811a8d86a132e16de118697ba5a4302a8a4da)] - Back to dev [Alin Voinea - [`cb531c9`](https://github.com/eea/volto-eea-design-system/commit/cb531c933c907bdbb88c9de0f1df2eb7ce899a4c)] - Proper paths if the package is not installed, but in development [Tiberiu Ichim - [`7a2655f`](https://github.com/eea/volto-eea-design-system/commit/7a2655f7cf9d3c687f172eefcf2b4cff4b12f832)] @@ -608,6 +672,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). #### :hammer_and_wrench: Others - feature(Docusaurus): Updates on color palette information including thematic websites #231 from eea/refactor-docusaurus [ichim-david - [`ec7843d`](https://github.com/eea/volto-eea-design-system/commit/ec7843dea07f626dc1c71ae1baa8bb5b0caa52f3)] +- Upgrade Jenkinsfile storybook to yarn 3 [Alin Voinea - [`d20de8d`](https://github.com/eea/volto-eea-design-system/commit/d20de8d6e21a14660b7b5125a80218a8a6f19e62)] - Back to dev [Alin Voinea - [`563fbc5`](https://github.com/eea/volto-eea-design-system/commit/563fbc5fac0d4b0295690d0a3a4e04271753f18a)] - perf(docusaurus): added remixicon and roboto locally [Giorgos Stamatis - [`b67b1a7`](https://github.com/eea/volto-eea-design-system/commit/b67b1a72bc9cdc7c62a25967e81b430f8b62d558)] ### [1.0.0-alpha.4](https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.3...1.0.0-alpha.4) - 22 November 2022 @@ -700,6 +765,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - modified left value of full width classes with toolbars [David Ichim - [`70d82d4`](https://github.com/eea/volto-eea-design-system/commit/70d82d47fbc2c00a3a709de0d5c087c8443a1eae)] - WIP settings column grid width when using full size class [David Ichim - [`affc7ac`](https://github.com/eea/volto-eea-design-system/commit/affc7ac99527aa92d5a192d90dc8c9ec46a66404)] - fix eslint [Miu Razvan - [`30c52e4`](https://github.com/eea/volto-eea-design-system/commit/30c52e4eb443555ca44c1b35df064e73d52c0a8b)] +- Add Sonarqube tag using circularity-frontend addons list [EEA Jenkins - [`76a41c7`](https://github.com/eea/volto-eea-design-system/commit/76a41c786995fd54afe4d1c345de939f683ffa70)] - fix broken variable call for contentBox.variables introduced in previous commit by mistake [David Ichim - [`d249c11`](https://github.com/eea/volto-eea-design-system/commit/d249c1160d19bedb174a2fde3fdab48d9ce297d4)] - clean up [Miu Razvan - [`89f3cb3`](https://github.com/eea/volto-eea-design-system/commit/89f3cb33d70a14806a953f0acd1807e94169ee5c)] - Feature(container): flexible container size #260 from eea/feature-flexible-container [ichim-david - [`8f84c5b`](https://github.com/eea/volto-eea-design-system/commit/8f84c5b67afe9cbe01b2a44a8f92a9a554e1036a)] @@ -801,6 +867,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). #### :nail_care: Enhancements +- change(jenkins): added yarn policy for storybook building [ichim-david - [`3d1b844`](https://github.com/eea/volto-eea-design-system/commit/3d1b844efeea40b99c00c9aa97089e0a0be58a57)] - change(docusaurus): typography updates [ichim-david - [`60a93a4`](https://github.com/eea/volto-eea-design-system/commit/60a93a4aece4e478ae13c2dfe697fd3703aa178a)] - change(accordion): allow customization of accordion title with css variables [David Ichim - [`15e7d27`](https://github.com/eea/volto-eea-design-system/commit/15e7d27f02c640df582f51a51ef36e645723f842)] - change(content-box): added css variables that will set text color and background for children [David Ichim - [`86cac53`](https://github.com/eea/volto-eea-design-system/commit/86cac531cc94386b6022e1be80dba826b39f2443)] @@ -835,6 +902,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). #### :hammer_and_wrench: Others - Merge pull request #243 from eea/develop [ichim-david - [`576564c`](https://github.com/eea/volto-eea-design-system/commit/576564ce395ee6ac9e74bcb19d5c4f0b4cd3c33b)] +- Add Sonarqube tag using eea-website-frontend addons list [EEA Jenkins - [`4a5be6e`](https://github.com/eea/volto-eea-design-system/commit/4a5be6eec78dae230626e61ea2c77e7f3c62510d)] - Back to dev [Alin Voinea - [`b251255`](https://github.com/eea/volto-eea-design-system/commit/b251255a7ed14d8290717726d86eaf54b87aa2d4)] ### [0.9.0](https://github.com/eea/volto-eea-design-system/compare/0.8.1...0.9.0) - 19 September 2022 @@ -1590,6 +1658,10 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). #### :hammer_and_wrench: Others - prettier changes [David Ichim - [`134da52`](https://github.com/eea/volto-eea-design-system/commit/134da52549b9d5eac5a12b7ad3005073500ac2c4)] +- [JENKINSFILE] remove debug, add error per stage [valentinab25 - [`903eecd`](https://github.com/eea/volto-eea-design-system/commit/903eecdb6bcbb8d73cff5e447d80c85e2a2c906d)] +- [JENKINSFILE] mention comment author in comment [valentinab25 - [`39a26aa`](https://github.com/eea/volto-eea-design-system/commit/39a26aa1ff0f35e93e8df9f442c29c5ab79ff493)] +- [JENKINSFILE] format PR comments [valentinab25 - [`739438c`](https://github.com/eea/volto-eea-design-system/commit/739438c64950c745d630d1998314a2bed595b23a)] +- [JENKINSFILE] Add failure comment, no jenkins fail [valentinab25 - [`c325bf1`](https://github.com/eea/volto-eea-design-system/commit/c325bf14f3fb0da150f2a56cda0a9f03d8d8a628)] ### [0.2.3](https://github.com/eea/volto-eea-design-system/compare/0.2.2...0.2.3) - 29 April 2022 #### :rocket: New Features @@ -2014,6 +2086,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - set profile section overflow to auto [nileshgulia1 - [`71ab47f`](https://github.com/eea/volto-eea-design-system/commit/71ab47f89a433233c14b394c3824e607dd18a393)] - remove segment custom width [nileshgulia1 - [`1d3ea40`](https://github.com/eea/volto-eea-design-system/commit/1d3ea40f98bbdc1eab95b4da739a659b5e29ec16)] - fix profile section css overflow [nileshgulia1 - [`db5126f`](https://github.com/eea/volto-eea-design-system/commit/db5126fc902e191d1e18fb7e4c54877c8d8786e6)] +- Add Sonarqube tag using eea-website-frontend addons list [EEA Jenkins - [`647a6e3`](https://github.com/eea/volto-eea-design-system/commit/647a6e3e2093f2c4884c356eb148453551c8f33f)] - fix warning related to proptype [nileshgulia1 - [`946c6c6`](https://github.com/eea/volto-eea-design-system/commit/946c6c6bc9dece0985ae4b9f9cad6ece2be0ff2c)] - removed override already present in card.less [ichim-david - [`50d2ab2`](https://github.com/eea/volto-eea-design-system/commit/50d2ab26f85c8f409da02ec128cc1df34848ca69)] - update [Miu Razvan - [`bbcab87`](https://github.com/eea/volto-eea-design-system/commit/bbcab87ef4c8475f347f0daf4ab7e428e69c2316)] @@ -2100,6 +2173,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - remove segment custom width [nileshgulia1 - [`4a60d84`](https://github.com/eea/volto-eea-design-system/commit/4a60d84d5fe76578b7760aa1dad6eef9a20916a7)] - Reformat header.less [Tiberiu Ichim - [`1f99dfc`](https://github.com/eea/volto-eea-design-system/commit/1f99dfc82c165304ca5600ce5138c1233615ab69)] - fix profile section css overflow [nileshgulia1 - [`8fd2654`](https://github.com/eea/volto-eea-design-system/commit/8fd265413149f1b5e033dffa0fbcb5ef5ecad15f)] +- Add Sonarqube tag using eea-website-frontend addons list [EEA Jenkins - [`6051724`](https://github.com/eea/volto-eea-design-system/commit/6051724437a38675e659c797bb5586ef81286ec0)] - fix warning related to proptype [nileshgulia1 - [`824b9be`](https://github.com/eea/volto-eea-design-system/commit/824b9beff77aae139882cd50a1d670a02ec6f723)] - refactor breadcrumbs component, make it functional and customizable [nileshgulia1 - [`4ec374e`](https://github.com/eea/volto-eea-design-system/commit/4ec374e20565eb0a5aed0ff67a02cd6f77eba1f0)] - removed override already present in card.less [ichim-david - [`93c4e5a`](https://github.com/eea/volto-eea-design-system/commit/93c4e5aac9cc85ff2cc6c04180f6655d5f5616dc)] @@ -2668,6 +2742,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - Refs #142010 - Optimize Volto-addons gitflow pipelines [valentinab25 - [`3af46d2`](https://github.com/eea/volto-eea-design-system/commit/3af46d2b14fa0b1ef44736f25b0f9ac93b23d18d)] - Refs #140454 updated eea-design-system readme with extra info on package contents [David Ichim - [`d2efc3d`](https://github.com/eea/volto-eea-design-system/commit/d2efc3ddae7b91efc82cf3bce8fb8e42d696a780)] - Refs #140454 add h1 to the list of elements that are max 800px and centered [David Ichim - [`7d3c30f`](https://github.com/eea/volto-eea-design-system/commit/7d3c30f409aa4cb43810839f8960589456cc1b2e)] +- Add Sonarqube tag using ims-frontend addons list [EEA Jenkins - [`8d657d0`](https://github.com/eea/volto-eea-design-system/commit/8d657d056cde5163cfe90ac66bc973f55d82e5e9)] ### [0.1.0](https://github.com/eea/volto-eea-design-system/compare/0.0.1...0.1.0) - 17 November 2021 #### :hammer_and_wrench: Others diff --git a/package.json b/package.json index 338d044d10..52e6c81bfb 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@eeacms/volto-eea-design-system", - "version": "1.0.6", + "version": "1.0.7", "description": "@eeacms/volto-eea-design-system: Volto add-on", "main": "src/index.js", "author": "European Environment Agency: IDM2 A-Team", From 03c35c46ddea08ce133a8966953cd058126737a3 Mon Sep 17 00:00:00 2001 From: github-actions Date: Fri, 7 Apr 2023 19:49:21 +0000 Subject: [PATCH 43/45] Autobuild of docusaurus docs --- docs/404.html | 4 ++-- .../js/{41d5c757.8b547e3f.js => 41d5c757.b162b801.js} | 2 +- .../{runtime~main.ea9eaeaf.js => runtime~main.c8c186fa.js} | 2 +- docs/blog/archive/index.html | 4 ++-- docs/docs/category/components/index.html | 4 ++-- docs/docs/category/forms/index.html | 4 ++-- docs/docs/category/guidelines/index.html | 4 ++-- docs/docs/category/maps-and-charts/index.html | 4 ++-- docs/docs/category/publications/index.html | 4 ++-- docs/docs/category/quotes/index.html | 4 ++-- docs/docs/category/resources/index.html | 4 ++-- docs/docs/category/search/index.html | 4 ++-- docs/docs/category/templates/index.html | 4 ++-- docs/docs/category/utilities/index.html | 4 ++-- docs/docs/category/visuals/index.html | 4 ++-- docs/docs/category/web-content/index.html | 4 ++-- docs/docs/category/web-development/index.html | 4 ++-- docs/docs/dataguide/intro/index.html | 4 ++-- docs/docs/intro/index.html | 4 ++-- docs/docs/pubguide/design/index.html | 4 ++-- docs/docs/pubguide/writing/index.html | 4 ++-- docs/docs/webcontent/intro/index.html | 4 ++-- docs/docs/webdev/Components/Accordion/index.html | 4 ++-- docs/docs/webdev/Components/Breadcrumb/index.html | 4 ++-- docs/docs/webdev/Components/Buttons/index.html | 4 ++-- docs/docs/webdev/Components/Callout/index.html | 4 ++-- docs/docs/webdev/Components/Cards/index.html | 4 ++-- docs/docs/webdev/Components/Comment/index.html | 4 ++-- docs/docs/webdev/Components/Confirm/index.html | 4 ++-- docs/docs/webdev/Components/Content/index.html | 4 ++-- docs/docs/webdev/Components/Divider/index.html | 4 ++-- docs/docs/webdev/Components/Forms/Checkbox/index.html | 4 ++-- docs/docs/webdev/Components/Forms/Dropdown/index.html | 4 ++-- docs/docs/webdev/Components/Forms/Radio/index.html | 4 ++-- docs/docs/webdev/Components/Forms/TextArea/index.html | 4 ++-- docs/docs/webdev/Components/Forms/TextInput/index.html | 4 ++-- docs/docs/webdev/Components/Headings/index.html | 4 ++-- docs/docs/webdev/Components/Image/index.html | 4 ++-- docs/docs/webdev/Components/Inpage-Navigation/index.html | 4 ++-- docs/docs/webdev/Components/Item/index.html | 4 ++-- docs/docs/webdev/Components/Labeled-icons/index.html | 4 ++-- docs/docs/webdev/Components/Labels/index.html | 4 ++-- docs/docs/webdev/Components/Lists/index.html | 4 ++-- docs/docs/webdev/Components/Loader/index.html | 4 ++-- docs/docs/webdev/Components/Logo/index.html | 4 ++-- docs/docs/webdev/Components/Messages/index.html | 4 ++-- docs/docs/webdev/Components/Modal/index.html | 4 ++-- docs/docs/webdev/Components/Pagination/index.html | 4 ++-- docs/docs/webdev/Components/Popup/index.html | 4 ++-- docs/docs/webdev/Components/Progress/index.html | 4 ++-- docs/docs/webdev/Components/Quote/Quote/index.html | 4 ++-- docs/docs/webdev/Components/Quote/Testimonial/index.html | 4 ++-- docs/docs/webdev/Components/Search/Filters/index.html | 4 ++-- docs/docs/webdev/Components/Search/Searchbox/index.html | 4 ++-- docs/docs/webdev/Components/Search/Suggestions/index.html | 4 ++-- docs/docs/webdev/Components/Segment/index.html | 4 ++-- docs/docs/webdev/Components/Statistic/index.html | 4 ++-- docs/docs/webdev/Components/Tab/index.html | 4 ++-- docs/docs/webdev/Components/Table/index.html | 4 ++-- docs/docs/webdev/Components/Tags/index.html | 4 ++-- docs/docs/webdev/Components/Timeline/index.html | 4 ++-- docs/docs/webdev/Components/Visuals/Charts/index.html | 4 ++-- docs/docs/webdev/Components/Visuals/Dashboard/index.html | 4 ++-- docs/docs/webdev/Components/Visuals/Maps/index.html | 4 ++-- docs/docs/webdev/Guidelines/colours/index.html | 4 ++-- docs/docs/webdev/Guidelines/iconography/index.html | 4 ++-- docs/docs/webdev/Guidelines/images/index.html | 4 ++-- docs/docs/webdev/Guidelines/intro/index.html | 4 ++-- docs/docs/webdev/Guidelines/spacing/index.html | 4 ++-- docs/docs/webdev/Guidelines/typography/index.html | 4 ++-- docs/docs/webdev/Resources/developer-guidelines/index.html | 4 ++-- docs/docs/webdev/Resources/theming-guidelines/index.html | 4 ++-- docs/docs/webdev/Templates/Grid/index.html | 4 ++-- docs/docs/webdev/Templates/PageHeader/index.html | 4 ++-- docs/docs/webdev/Templates/SiteFooter/index.html | 4 ++-- docs/docs/webdev/Templates/SiteHeader/index.html | 4 ++-- docs/docs/webdev/Utilities/intro/index.html | 4 ++-- docs/docs/whatsnew/index.html | 6 +++--- docs/index.html | 4 ++-- website/docs/2-whatsnew.md | 6 +++--- 80 files changed, 160 insertions(+), 160 deletions(-) rename docs/assets/js/{41d5c757.8b547e3f.js => 41d5c757.b162b801.js} (99%) rename docs/assets/js/{runtime~main.ea9eaeaf.js => runtime~main.c8c186fa.js} (99%) diff --git a/docs/404.html b/docs/404.html index e2a66de624..69d50c7cad 100644 --- a/docs/404.html +++ b/docs/404.html @@ -5,13 +5,13 @@ Page Not Found | EEA Design System - +

Page Not Found

We could not find what you were looking for.

Please contact the owner of the site that linked you to the original URL and let them know their link is broken.

- + \ No newline at end of file diff --git a/docs/assets/js/41d5c757.8b547e3f.js b/docs/assets/js/41d5c757.b162b801.js similarity index 99% rename from docs/assets/js/41d5c757.8b547e3f.js rename to docs/assets/js/41d5c757.b162b801.js index 2c859f9a11..f7bc675440 100644 --- a/docs/assets/js/41d5c757.8b547e3f.js +++ b/docs/assets/js/41d5c757.b162b801.js @@ -1 +1 @@ -"use strict";(self.webpackChunkwebsite=self.webpackChunkwebsite||[]).push([[6245],{3905:(e,a,t)=>{t.d(a,{Zo:()=>c,kt:()=>h});var i=t(7294);function n(e,a,t){return a in e?Object.defineProperty(e,a,{value:t,enumerable:!0,configurable:!0,writable:!0}):e[a]=t,e}function o(e,a){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);a&&(i=i.filter((function(a){return Object.getOwnPropertyDescriptor(e,a).enumerable}))),t.push.apply(t,i)}return t}function m(e){for(var a=1;a=0||(n[t]=e[t]);return n}(e,a);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(i=0;i=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(n[t]=e[t])}return n}var d=i.createContext({}),r=function(e){var a=i.useContext(d),t=a;return e&&(t="function"==typeof e?e(a):m(m({},a),e)),t},c=function(e){var a=r(e.components);return i.createElement(d.Provider,{value:a},e.children)},s="mdxType",f={inlineCode:"code",wrapper:function(e){var a=e.children;return i.createElement(i.Fragment,{},a)}},p=i.forwardRef((function(e,a){var t=e.components,n=e.mdxType,o=e.originalType,d=e.parentName,c=l(e,["components","mdxType","originalType","parentName"]),s=r(t),p=n,h=s["".concat(d,".").concat(p)]||s[p]||f[p]||o;return t?i.createElement(h,m(m({ref:a},c),{},{components:t})):i.createElement(h,m({ref:a},c))}));function h(e,a){var t=arguments,n=a&&a.mdxType;if("string"==typeof e||n){var o=t.length,m=new Array(o);m[0]=p;var l={};for(var d in a)hasOwnProperty.call(a,d)&&(l[d]=a[d]);l.originalType=e,l[s]="string"==typeof e?e:n,m[1]=l;for(var r=2;r{t.r(a),t.d(a,{contentTitle:()=>m,default:()=>s,frontMatter:()=>o,metadata:()=>l,toc:()=>d});var i=t(7462),n=(t(7294),t(3905));const o={title:"What's new"},m=void 0,l={unversionedId:"whatsnew",id:"whatsnew",title:"What's new",description:"EEA Design System (1.0)",source:"@site/docs/2-whatsnew.md",sourceDirName:".",slug:"/whatsnew",permalink:"/volto-eea-design-system/docs/whatsnew",editUrl:"https://github.com/eea/volto-eea-design-system/edit/contribute-documentation/website/docs/2-whatsnew.md",tags:[],version:"current",sidebarPosition:2,frontMatter:{title:"What's new"},sidebar:"sidebar",previous:{title:"Introduction",permalink:"/volto-eea-design-system/docs/intro"},next:{title:"Web development",permalink:"/volto-eea-design-system/docs/category/web-development"}},d=[{value:"EEA Design System (1.0)",id:"eea-design-system-10",children:[{value:"Components ready to be used",id:"components-ready-to-be-used",children:[],level:4},{value:"Future releases",id:"future-releases",children:[],level:4}],level:3},{value:"Unreleased - 2023-04-07T18:14:46.589Z",id:"unreleased---2023-04-07t181446589z",children:[{value:"\ud83d\ude80 New Features",id:"-new-features",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes",children:[],level:4}],level:3},{value:"1.0.6 - 2023-03-29",id:"106---2023-03-29",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-1",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-1",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-1",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others",children:[],level:4}],level:3},{value:"1.0.5 - 2023-03-28",id:"105---2023-03-28",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-2",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-1",children:[],level:4}],level:3},{value:"1.0.4 - 2023-03-27",id:"104---2023-03-27",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-3",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-2",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-1",children:[],level:4}],level:3},{value:"1.0.3 - 2023-03-24",id:"103---2023-03-24",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-2",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-2",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-2",children:[],level:4}],level:3},{value:"1.0.2 - 2023-03-14",id:"102---2023-03-14",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-3",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-3",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-1",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-3",children:[],level:4}],level:3},{value:"1.0.1 - 2023-03-13",id:"101---2023-03-13",children:[],level:3},{value:"1.0.0 - 2023-03-13",id:"100---2023-03-13",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-4",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-4",children:[],level:4}],level:3},{value:"1.0.0-beta.6 - 2023-03-10",id:"100-beta6---2023-03-10",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-4",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-5",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-5",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-3",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-2",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-4",children:[],level:4}],level:3},{value:"1.0.0-beta.5 - 2023-03-07",id:"100-beta5---2023-03-07",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-6",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-4",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-5",children:[],level:4}],level:3},{value:"1.0.0-beta.4 - 2023-03-01",id:"100-beta4---2023-03-01",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-5",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-6",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-7",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-6",children:[],level:4}],level:3},{value:"1.0.0-beta.3 - 2023-02-21",id:"100-beta3---2023-02-21",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-6",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-7",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-8",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-5",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-3",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-7",children:[],level:4}],level:3},{value:"1.0.0-beta.2 - 2023-02-13",id:"100-beta2---2023-02-13",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-8",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-9",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-6",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-8",children:[],level:4}],level:3},{value:"1.0.0-beta.1 - 2023-02-09",id:"100-beta1---2023-02-09",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-7",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-10",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-9",children:[],level:4}],level:3},{value:"1.0.0-alpha.15 - 2023-02-08",id:"100-alpha15---2023-02-08",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-8",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-9",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-11",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-10",children:[],level:4}],level:3},{value:"1.0.0-alpha.14 - 2023-01-30",id:"100-alpha14---2023-01-30",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-12",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-11",children:[],level:4}],level:3},{value:"1.0.0-alpha.13.1 - 2023-01-30",id:"100-alpha131---2023-01-30",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-13",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-12",children:[],level:4}],level:3},{value:"1.0.0-alpha.13 - 2023-01-27",id:"100-alpha13---2023-01-27",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-9",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-10",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-14",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-13",children:[],level:4}],level:3},{value:"1.0.0-alpha.12 - 2023-01-24",id:"100-alpha12---2023-01-24",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-10",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-11",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-15",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-4",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-14",children:[],level:4}],level:3},{value:"1.0.0-alpha.11 - 2023-01-17",id:"100-alpha11---2023-01-17",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-11",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-12",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-16",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-5",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-15",children:[],level:4}],level:3},{value:"1.0.0-alpha.10 - 2023-01-13",id:"100-alpha10---2023-01-13",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-13",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-16",children:[],level:4}],level:3},{value:"1.0.0-alpha.9 - 2022-12-28",id:"100-alpha9---2022-12-28",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-17",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-17",children:[],level:4}],level:3},{value:"1.0.0-alpha.8 - 2022-12-23",id:"100-alpha8---2022-12-23",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-12",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-18",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-7",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-6",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-18",children:[],level:4}],level:3},{value:"1.0.0-alpha.7 - 2022-12-16",id:"100-alpha7---2022-12-16",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-13",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-14",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-19",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-19",children:[],level:4}],level:3},{value:"1.0.0-alpha.6 - 2022-12-07",id:"100-alpha6---2022-12-07",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-14",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-15",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-20",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-7",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-20",children:[],level:4}],level:3},{value:"1.0.0-alpha.5 - 2022-11-29",id:"100-alpha5---2022-11-29",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-15",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-16",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-21",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-8",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-8",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-21",children:[],level:4}],level:3},{value:"1.0.0-alpha.4 - 2022-11-22",id:"100-alpha4---2022-11-22",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-17",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-22",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-22",children:[],level:4}],level:3},{value:"1.0.0-alpha.3 - 2022-11-16",id:"100-alpha3---2022-11-16",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-16",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-18",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-23",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-9",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-23",children:[],level:4}],level:3},{value:"1.0.0-alpha.2 - 2022-10-28",id:"100-alpha2---2022-10-28",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-24",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-10",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-24",children:[],level:4}],level:3},{value:"1.0.0-alpha.1 - 2022-10-20",id:"100-alpha1---2022-10-20",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-25",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-11",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-9",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-25",children:[],level:4}],level:3},{value:"0.9.6 - 2022-12-16",id:"096---2022-12-16",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-26",children:[],level:4}],level:3},{value:"0.9.5 - 2022-10-20",id:"095---2022-10-20",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-19",children:[],level:4}],level:3},{value:"0.9.4 - 2022-10-19",id:"094---2022-10-19",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-20",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-26",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-27",children:[],level:4}],level:3},{value:"0.9.3 - 2022-10-04",id:"093---2022-10-04",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-21",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-27",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-10",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-28",children:[],level:4}],level:3},{value:"0.9.2 - 2022-09-27",id:"092---2022-09-27",children:[],level:3},{value:"0.9.1 - 2022-09-27",id:"091---2022-09-27",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-28",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-29",children:[],level:4}],level:3},{value:"0.9.0 - 2022-09-19",id:"090---2022-09-19",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-17",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-22",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-29",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-12",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-11",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-30",children:[],level:4}],level:3},{value:"0.8.1 - 2022-08-26",id:"081---2022-08-26",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-23",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-30",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-12",children:[],level:4}],level:3},{value:"0.8.0 - 2022-08-20",id:"080---2022-08-20",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-18",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-24",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-31",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-31",children:[],level:4}],level:3},{value:"0.7.6 - 2022-08-15",id:"076---2022-08-15",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-32",children:[],level:4}],level:3},{value:"0.7.5 - 2022-08-11",id:"075---2022-08-11",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-33",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-32",children:[],level:4}],level:3},{value:"0.7.3 - 2022-08-04",id:"073---2022-08-04",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-34",children:[],level:4}],level:3},{value:"0.7.2 - 2022-08-03",id:"072---2022-08-03",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-25",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-33",children:[],level:4}],level:3},{value:"0.7.1 - 2022-08-01",id:"071---2022-08-01",children:[],level:3},{value:"0.7.0 - 2022-08-01",id:"070---2022-08-01",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-19",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-26",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-35",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-34",children:[],level:4}],level:3},{value:"0.6.5 - 2022-07-06",id:"065---2022-07-06",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-27",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-36",children:[],level:4}],level:3},{value:"0.6.1 - 2022-07-01",id:"061---2022-07-01",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-20",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-37",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-13",children:[],level:4}],level:3},{value:"0.6.0 - 2022-07-01",id:"060---2022-07-01",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-28",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-38",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-14",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-13",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-35",children:[],level:4}],level:3},{value:"0.5.5 - 2022-06-23",id:"055---2022-06-23",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-29",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-39",children:[],level:4}],level:3},{value:"0.5.4 - 2022-06-16",id:"054---2022-06-16",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-30",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-40",children:[],level:4}],level:3},{value:"0.5.3 - 2022-06-16",id:"053---2022-06-16",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-31",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-41",children:[],level:4}],level:3},{value:"0.5.2 - 2022-06-14",id:"052---2022-06-14",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-21",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-42",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-15",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-36",children:[],level:4}],level:3},{value:"0.5.1 - 2022-06-13",id:"051---2022-06-13",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-43",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-37",children:[],level:4}],level:3},{value:"0.5.0 - 2022-06-11",id:"050---2022-06-11",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-22",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-32",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-44",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-38",children:[],level:4}],level:3},{value:"0.4.5 - 2022-06-08",id:"045---2022-06-08",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-45",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-39",children:[],level:4}],level:3},{value:"0.4.4 - 2022-06-08",id:"044---2022-06-08",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-23",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-33",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-46",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-14",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-40",children:[],level:4}],level:3},{value:"0.4.3 - 2022-06-03",id:"043---2022-06-03",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-34",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-47",children:[],level:4}],level:3},{value:"0.4.2 - 2022-06-02",id:"042---2022-06-02",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-48",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-15",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-41",children:[],level:4}],level:3},{value:"0.4.1 - 2022-06-02",id:"041---2022-06-02",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-24",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-35",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-49",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-16",children:[],level:4}],level:3},{value:"0.4.0 - 2022-06-01",id:"040---2022-06-01",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-25",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-36",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-50",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-16",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-42",children:[],level:4}],level:3},{value:"0.3.1 - 2022-05-19",id:"031---2022-05-19",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-37",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-51",children:[],level:4}],level:3},{value:"0.3.0 - 2022-05-17",id:"030---2022-05-17",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-26",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-38",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-52",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-43",children:[],level:4}],level:3},{value:"0.2.4 - 2022-05-13",id:"024---2022-05-13",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-53",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-44",children:[],level:4}],level:3},{value:"0.2.3 - 2022-04-29",id:"023---2022-04-29",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-27",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-54",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-17",children:[],level:4}],level:3},{value:"0.2.2 - 2022-04-22",id:"022---2022-04-22",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-39",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-55",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-17",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-45",children:[],level:4}],level:3},{value:"0.2.1 - 2022-04-08",id:"021---2022-04-08",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-40",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-46",children:[],level:4}],level:3},{value:"0.2.0 - 2022-04-04",id:"020---2022-04-04",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-28",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-41",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-56",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-18",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-47",children:[],level:4}],level:3},{value:"0.1.9 - 2022-03-25",id:"019---2022-03-25",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-29",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-42",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-57",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-19",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-48",children:[],level:4}],level:3},{value:"0.1.8 - 2022-03-18",id:"018---2022-03-18",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-43",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-58",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-20",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-18",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-49",children:[],level:4}],level:3},{value:"0.1.7 - 2022-03-15",id:"017---2022-03-15",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-30",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-44",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-59",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-21",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-19",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-50",children:[],level:4}],level:3},{value:"0.1.6 - 2022-03-11",id:"016---2022-03-11",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-31",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-45",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-60",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-22",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-51",children:[],level:4}],level:3},{value:"0.1.5 - 2022-03-08",id:"015---2022-03-08",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-32",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-46",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-61",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-23",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-20",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-52",children:[],level:4}],level:3},{value:"0.1.4 - 2022-03-01",id:"014---2022-03-01",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-62",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-21",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-53",children:[],level:4}],level:3},{value:"0.1.4-beta.0 - 2022-02-25",id:"014-beta0---2022-02-25",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-33",children:[],level:4}],level:3},{value:"0.1.3 - 2022-02-25",id:"013---2022-02-25",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-47",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-63",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-24",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-54",children:[],level:4}],level:3},{value:"0.1.2 - 2022-02-17",id:"012---2022-02-17",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-34",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-48",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-64",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-25",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-22",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-55",children:[],level:4}],level:3},{value:"0.1.2-beta.2 - 2022-01-03",id:"012-beta2---2022-01-03",children:[],level:3},{value:"0.1.2-beta.1 - 2021-12-22",id:"012-beta1---2021-12-22",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-56",children:[],level:4}],level:3},{value:"0.1.2-beta.0 - 2021-12-18",id:"012-beta0---2021-12-18",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-57",children:[],level:4}],level:3},{value:"0.1.1 - 2021-12-16",id:"011---2021-12-16",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-58",children:[],level:4}],level:3},{value:"0.1.1-beta.0 - 2021-12-09",id:"011-beta0---2021-12-09",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-59",children:[],level:4}],level:3},{value:"0.1.0 - 2021-11-17",id:"010---2021-11-17",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-60",children:[],level:4}],level:3},{value:"0.0.1 - 2021-11-17",id:"001---2021-11-17",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-61",children:[],level:4}],level:3}],r={toc:d},c="wrapper";function s(e){let{components:a,...t}=e;return(0,n.kt)(c,(0,i.Z)({},r,t,{components:a,mdxType:"MDXLayout"}),(0,n.kt)("h3",{id:"eea-design-system-10"},"EEA Design System (1.0)"),(0,n.kt)("h4",{id:"components-ready-to-be-used"},"Components ready to be used"),(0,n.kt)("p",null,"The following components are ready to be used as Volto ",(0,n.kt)("inlineCode",{parentName:"p"},"blocks"),", ",(0,n.kt)("inlineCode",{parentName:"p"},"slate")," integration, or via the advanced ",(0,n.kt)("inlineCode",{parentName:"p"},"block styler"),":"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Accordion ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Call to Action ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Callout - part of the Description ",(0,n.kt)("inlineCode",{parentName:"li"},"block"),", ",(0,n.kt)("inlineCode",{parentName:"li"},"slate")),(0,n.kt)("li",{parentName:"ul"},"Card - part of the Teaser ",(0,n.kt)("inlineCode",{parentName:"li"},"block")," and Listing ",(0,n.kt)("inlineCode",{parentName:"li"},"block"),", it includes several variations like round card e.g., used for Avatar"),(0,n.kt)("li",{parentName:"ul"},"Divider ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Headings ",(0,n.kt)("inlineCode",{parentName:"li"},"slate")),(0,n.kt)("li",{parentName:"ul"},"Hero ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Item ",(0,n.kt)("inlineCode",{parentName:"li"},"block")," - used for text with an icon (remixicon or custom SVG/image) on the left/right"),(0,n.kt)("li",{parentName:"ul"},"List ",(0,n.kt)("inlineCode",{parentName:"li"},"slate")," - ordered and unordered"),(0,n.kt)("li",{parentName:"ul"},"Quote ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Statistic ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Tag ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Table ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Tabs ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Timeline ",(0,n.kt)("inlineCode",{parentName:"li"},"block"))),(0,n.kt)("h4",{id:"future-releases"},"Future releases"),(0,n.kt)("p",null,"Below is a non-exhaustive list of the work-in-progress which is planned for future releases:"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Navigation Portlet (used on the left/right hand of content)"),(0,n.kt)("li",{parentName:"ul"},"Spacing/padding system. We want to add the ability for editors to consistently apply various spacing/padding on certain components in order to allow a better alignment when components are used together."),(0,n.kt)("li",{parentName:"ul"},"Improve docusaurus and storybook with more components, controls, and variations in order to better reflect what is possible in Volto.")),(0,n.kt)("p",null,"Generated by ",(0,n.kt)("a",{parentName:"p",href:"https://github.com/CookPete/auto-changelog"},(0,n.kt)("inlineCode",{parentName:"a"},"auto-changelog")),"."),(0,n.kt)("h3",{id:"unreleased---2023-04-07t181446589z"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.6...HEAD"},"Unreleased")," - 2023-04-07T18:14:46.589Z"),(0,n.kt)("h4",{id:"-new-features"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(storybook): components keyboard and screen reader optimization #324 from eea/design-system-accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/85faff73025442a012f079b6734ef868862cc44f"},(0,n.kt)("inlineCode",{parentName:"a"},"85faff7")))),(0,n.kt)("h4",{id:"-bug-fixes"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix: dont run isInternalURL twice ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a48984e0cb224944aed3846447c416511d080779"},(0,n.kt)("inlineCode",{parentName:"a"},"a48984e"))),(0,n.kt)("li",{parentName:"ul"},"fix: github autoformat ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/be9774981032759b3284a6fb93490a204a817c7a"},(0,n.kt)("inlineCode",{parentName:"a"},"be97749"))),(0,n.kt)("li",{parentName:"ul"},"fix(cards): focus outline for header needed for the overflow hidden solution with max title lines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/849a7a8e3cf801bf0a4d7e9189b603ea15219fcc"},(0,n.kt)("inlineCode",{parentName:"a"},"849a7a8"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): external url in header now takes you to the correct url #330 from eea/header-external-url-fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/086c61d683a7ac67dea221aa39ffe4cef05a9a68"},(0,n.kt)("inlineCode",{parentName:"a"},"086c61d"))),(0,n.kt)("li",{parentName:"ul"},"fix(item): flex variant on edit when inside blockchooser #333 from eea/fix-item-csss ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/65b9099779180feeb7d10384928bb0a3224b947d"},(0,n.kt)("inlineCode",{parentName:"a"},"65b9099"))),(0,n.kt)("li",{parentName:"ul"},"fix: external url in header ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9e3aea649ca6f9446324d5d351cdfcde08332f84"},(0,n.kt)("inlineCode",{parentName:"a"},"9e3aea6"))),(0,n.kt)("li",{parentName:"ul"},"fix: check if client method change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7c53b83a54e4e7d3c5329c46de03cdf7aabedf13"},(0,n.kt)("inlineCode",{parentName:"a"},"7c53b83"))),(0,n.kt)("li",{parentName:"ul"},"fix(item): use child selector instead of descendent as it interferes with blockchooser refs #157040 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ad4ca3725c595c8dbeaff69f730928313c1779ec"},(0,n.kt)("inlineCode",{parentName:"a"},"ad4ca37"))),(0,n.kt)("li",{parentName:"ul"},"fix(tag): fix in args ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/18eaaf41fa80a3e175341a2ddd7376b8281fee7d"},(0,n.kt)("inlineCode",{parentName:"a"},"18eaaf4")))),(0,n.kt)("h4",{id:"-enhancements"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): align menu items with demo site for better testing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/82a5c84cfde81dd8243f3f9a2d1fcaa8ac4b1463"},(0,n.kt)("inlineCode",{parentName:"a"},"82a5c84"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumbs): updates on structure and story for accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/770c8c0bce88c5d9301ab0293a8e4865849bfeb2"},(0,n.kt)("inlineCode",{parentName:"a"},"770c8c0"))),(0,n.kt)("li",{parentName:"ul"},"change(logo): update eionet svg ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c87fc750a3dc376205a643eefced410a41b22c6"},(0,n.kt)("inlineCode",{parentName:"a"},"3c87fc7"))),(0,n.kt)("li",{parentName:"ul"},"refactor(downloadLabeledIcon): accessibility fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/df3935dc5836298768316399ba36927325541fef"},(0,n.kt)("inlineCode",{parentName:"a"},"df3935d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(languageLabeledIcon): accessibility fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/61edd9e1022a8954930db30c262290680974d880"},(0,n.kt)("inlineCode",{parentName:"a"},"61edd9e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): Restructure Topics and Countries lists ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d816e7ab9cdf2f202ab994201c16241cfb26c33a"},(0,n.kt)("inlineCode",{parentName:"a"},"d816e7a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(newTabLabeledIcon): accessibility fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/211e40aa47d1f0de91b1d949770c452336b80248"},(0,n.kt)("inlineCode",{parentName:"a"},"211e40a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(comment): accessibility fixes and text button update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dad8cb67a0092b01b50197c94691ed8a5d00a128"},(0,n.kt)("inlineCode",{parentName:"a"},"dad8cb6"))),(0,n.kt)("li",{parentName:"ul"},"change(mega-menu): use lists for navigation, enhance voice over support for better accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d13137f024d6357514b85f184d219eb81dd585f2"},(0,n.kt)("inlineCode",{parentName:"a"},"d13137f"))),(0,n.kt)("li",{parentName:"ul"},"change(storybook): removed links for Label and Comment that we implement without a link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee0bfdf3aee3e4b6b6eba6dabd7817a37ace48ae"},(0,n.kt)("inlineCode",{parentName:"a"},"ee0bfdf"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): fix header outline not showing issue ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48fc2e2328ff184402e15edbaf1ed2507e771a14"},(0,n.kt)("inlineCode",{parentName:"a"},"48fc2e2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): firefox accessibility errors fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c7d35b92b90940b466ea016dbbb3f1c6dfa0c3ab"},(0,n.kt)("inlineCode",{parentName:"a"},"c7d35b9"))),(0,n.kt)("li",{parentName:"ul"},"change(ContextNavigation): accessibility updates, not restructuring of the volto component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/03fe83dce70c6931c543b93c71e3cd8e16f99ec8"},(0,n.kt)("inlineCode",{parentName:"a"},"03fe83d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(modal): restructure close icon as button ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f1b836e3071c220235eb327ee7ef67edac4d467d"},(0,n.kt)("inlineCode",{parentName:"a"},"f1b836e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(label): add href attribute to links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/05f664dde27f1e0580ab7f32a7934e4d8e85c918"},(0,n.kt)("inlineCode",{parentName:"a"},"05f664d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(inpageNavigation): restructure as a button ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48e22ac0ee521f87497822a0ec9d627829d849d5"},(0,n.kt)("inlineCode",{parentName:"a"},"48e22ac"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIconGroup): group updates for all labeled icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a679d9d05b804f516fdeed449eba1e74e227818c"},(0,n.kt)("inlineCode",{parentName:"a"},"a679d9d"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumbs): label modification for better screen reader output ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c967bef63ac6f622f5936235dd5590831a674d15"},(0,n.kt)("inlineCode",{parentName:"a"},"c967bef"))),(0,n.kt)("li",{parentName:"ul"},"refactor(checkbox): accessibility fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3b3047f6a6bdd9e9ad858e6a7ca0c6f6b404e605"},(0,n.kt)("inlineCode",{parentName:"a"},"3b3047f"))),(0,n.kt)("li",{parentName:"ul"},"change(mega-menu): sub-title padding tweaks for better spacing normalization ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e08668dd9fd948e57628e5582e7a4a7f08d96451"},(0,n.kt)("inlineCode",{parentName:"a"},"e08668d"))),(0,n.kt)("li",{parentName:"ul"},"change(card): simplified headerLineHeightOffset used as margin top for cards header ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca61105f2f39e6880ce545ba4d54f3568e7b87e2"},(0,n.kt)("inlineCode",{parentName:"a"},"ca61105"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): clean up function after test ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/883eb73cbc3db6a1fadd0200118eafdce91b7aab"},(0,n.kt)("inlineCode",{parentName:"a"},"883eb73"))),(0,n.kt)("li",{parentName:"ul"},"change(mega-menu): added code to align countries left column subtitle with the right column ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1aa33dd7ac7154a91515eef688f276d664d5d7f3"},(0,n.kt)("inlineCode",{parentName:"a"},"1aa33dd"))),(0,n.kt)("li",{parentName:"ul"},"change(logos): updated eionet logo used in the site footer #318 from eea/footer-logo-update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70671d03bbc228e3013e382cb51e6764a83b01a8"},(0,n.kt)("inlineCode",{parentName:"a"},"70671d0"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumbs): fixed sizing of breadcrumbs list items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1761e984a6ffebbcca0c7b88128a01235fc6b903"},(0,n.kt)("inlineCode",{parentName:"a"},"1761e98"))),(0,n.kt)("li",{parentName:"ul"},"change(checkbox): toggle hover color correction ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4f4d0df7292fdccb89f83feface51639bd5d6559"},(0,n.kt)("inlineCode",{parentName:"a"},"4f4d0df"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumbs,mega-menu): better screen readers support, see links instead of groups #309 from eea/firefox-accessibility-tab-issues ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d6b0b4adba8f04799491025fb41ac97e875bcce0"},(0,n.kt)("inlineCode",{parentName:"a"},"d6b0b4a"))),(0,n.kt)("li",{parentName:"ul"},"change(card): add links to teaser titles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cc64c74a69539af287f424abdf96226635284303"},(0,n.kt)("inlineCode",{parentName:"a"},"cc64c74"))),(0,n.kt)("li",{parentName:"ul"},"change(inpageNavigation): story improvements ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ade63c6f0b08c62318d31c54568cca29d0f106bc"},(0,n.kt)("inlineCode",{parentName:"a"},"ade63c6")))),(0,n.kt)("h4",{id:"-internal-changes"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(megaMenu): remove comments and unused properties ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fa5f8f878421d879026aacd86e5390112b8852a1"},(0,n.kt)("inlineCode",{parentName:"a"},"fa5f8f8")))),(0,n.kt)("h4",{id:"-documentation-changes"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(footer): logo update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ad982d63423442bc292cd7553ad3163b33b337bb"},(0,n.kt)("inlineCode",{parentName:"a"},"ad982d6")))),(0,n.kt)("h3",{id:"106---2023-03-29"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.5...1.0.6"},"1.0.6")," - 2023-03-29"),(0,n.kt)("h4",{id:"-new-features-1"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat: add viewport-(width/height) less functions and fixed banner image url #329 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e8e70bdc81f4f301a9dce370867a873e55563048"},(0,n.kt)("inlineCode",{parentName:"a"},"e8e70bd"))),(0,n.kt)("li",{parentName:"ul"},"feat: add viewport-(width/height) less functions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/68300a3c34e66954c7ef3a6e52baa37431fbfa9e"},(0,n.kt)("inlineCode",{parentName:"a"},"68300a3")))),(0,n.kt)("h4",{id:"-enhancements-1"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): set full class name for remix icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f435e10034b04cab4aeb301d8521559f98be299e"},(0,n.kt)("inlineCode",{parentName:"a"},"f435e10"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner.jsx): use flattenToAppURL helper function to get image source URL ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24b13d7c09a498ca889d413135c9abc4e6cab9ad"},(0,n.kt)("inlineCode",{parentName:"a"},"24b13d7")))),(0,n.kt)("h4",{id:"-internal-changes-1"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(theme): update container width and margins in eea theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e4446a3af641ddca03f1f2833dd6e79535feb98"},(0,n.kt)("inlineCode",{parentName:"a"},"3e4446a")))),(0,n.kt)("h4",{id:"\ufe0f-others"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"horizontal overflow hidden in view mode ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f395f276df003480a219bae639f87bebcf35799f"},(0,n.kt)("inlineCode",{parentName:"a"},"f395f27")))),(0,n.kt)("h3",{id:"105---2023-03-28"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.4...1.0.5"},"1.0.5")," - 2023-03-28"),(0,n.kt)("h4",{id:"-new-features-2"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat: improve full-width class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70bba7e295dd237e7c579ef0446ff05e0c8529d8"},(0,n.kt)("inlineCode",{parentName:"a"},"70bba7e")))),(0,n.kt)("h4",{id:"-bug-fixes-1"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(banner): Add missing divider for time tag #327 from eea/banner-metadata ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c46a58336ec9eb2ce75d2637f3197f417e8ca326"},(0,n.kt)("inlineCode",{parentName:"a"},"c46a583"))),(0,n.kt)("li",{parentName:"ul"},"fix(banner): Add missing divider for time tag ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d68c395d368a267baef4422df6e72f63d099b75"},(0,n.kt)("inlineCode",{parentName:"a"},"7d68c39")))),(0,n.kt)("h3",{id:"104---2023-03-27"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.3...1.0.4"},"1.0.4")," - 2023-03-27"),(0,n.kt)("h4",{id:"-new-features-3"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(copyright): Add copyright prefix - Image - refs #250724 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6a727723c15aee499ed7cedc9f364c5e2c8014bb"},(0,n.kt)("inlineCode",{parentName:"a"},"6a72772")))),(0,n.kt)("h4",{id:"-internal-changes-2"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(copyright): Cleanup useless min-height - refs #250724 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2457df6376ac1a4d00f87eee90e61f66f7ffebb"},(0,n.kt)("inlineCode",{parentName:"a"},"f2457df")))),(0,n.kt)("h4",{id:"\ufe0f-others-1"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cfd6eba8b01eceff4e28ab7ab51b2457672ac172"},(0,n.kt)("inlineCode",{parentName:"a"},"cfd6eba")))),(0,n.kt)("h3",{id:"103---2023-03-24"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.2...1.0.3"},"1.0.3")," - 2023-03-24"),(0,n.kt)("h4",{id:"-bug-fixes-2"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix: improve full-width class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93222590a630b27f3dfccb7df0a50070c9c9901c"},(0,n.kt)("inlineCode",{parentName:"a"},"9322259"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): Remove z-index from subsite logo #320 from eea/subsite-logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/50911009918faf7d3064d97ea7b685ad71970521"},(0,n.kt)("inlineCode",{parentName:"a"},"5091100"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): Remove z-index from subsite logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d433a9788d76db0f1c08ef6bb2313f479c2bb19b"},(0,n.kt)("inlineCode",{parentName:"a"},"d433a97")))),(0,n.kt)("h4",{id:"-enhancements-2"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(header): Add search popup customizations from eea-website-theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/43e5a78be8efa1098ea0fc87f43f40f2b5d482c1"},(0,n.kt)("inlineCode",{parentName:"a"},"43e5a78"))),(0,n.kt)("li",{parentName:"ul"},"change(popup): create custom popup for better accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/036aac95509b6d78b2d3b251578a7de878e28371"},(0,n.kt)("inlineCode",{parentName:"a"},"036aac9"))),(0,n.kt)("li",{parentName:"ul"},"change(popup): added most important popup properties from Semantic ui implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/61f65bc0e5806aaac33b54db36d5360fd05a48cc"},(0,n.kt)("inlineCode",{parentName:"a"},"61f65bc"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): use custom-made Popup for better accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/10d0fcfb28ca97efe9fa5c0f6c9c350b76a73140"},(0,n.kt)("inlineCode",{parentName:"a"},"10d0fcf"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): use custom-made Popup for better accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9108bee5f671505be5199e72a4749bb0af0c0cb9"},(0,n.kt)("inlineCode",{parentName:"a"},"9108bee"))),(0,n.kt)("li",{parentName:"ul"},"change(popup): added also the basic property ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4497acddde258ed31cda09f4d905e003a1e4611"},(0,n.kt)("inlineCode",{parentName:"a"},"a4497ac"))),(0,n.kt)("li",{parentName:"ul"},"change(colors): update gray-4 color value #321 from eea/update-gray-4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f458ff0965debd3629cdd78362244836d0d42687"},(0,n.kt)("inlineCode",{parentName:"a"},"f458ff0"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): MetadataField now uses proper time tag when value is datetime ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4c4d34d5905a6771a281fc3db1174b4998c8fa8"},(0,n.kt)("inlineCode",{parentName:"a"},"b4c4d34"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): updated gray-4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b890df7693880fb965e41752eda64df992a1cdc4"},(0,n.kt)("inlineCode",{parentName:"a"},"b890df7"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): Fix error and empty div if no social links are present #319 from eea/footer-social ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/89222466b76a4720af73c0d516074efec0757c34"},(0,n.kt)("inlineCode",{parentName:"a"},"8922246"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): Fix error and empty div if no social links are present ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5d934a6545ae783ff41dc9e3eda389c571d1369b"},(0,n.kt)("inlineCode",{parentName:"a"},"5d934a6")))),(0,n.kt)("h4",{id:"\ufe0f-others-2"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"lint ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca41def7a3743a8328f26cec868bd20395b62446"},(0,n.kt)("inlineCode",{parentName:"a"},"ca41def"))),(0,n.kt)("li",{parentName:"ul"},"refactor ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9789201c7966cd711bfa85fe448f6f6df2583eaf"},(0,n.kt)("inlineCode",{parentName:"a"},"9789201"))),(0,n.kt)("li",{parentName:"ul"},"lint ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/646dfaa729b51367ce7545ea928837a481a5485a"},(0,n.kt)("inlineCode",{parentName:"a"},"646dfaa"))),(0,n.kt)("li",{parentName:"ul"},"(feat):Page Header Banner accessibility #316 from eea/accesibility-banner ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e587f4657de137273053480a3536a066ab032a29"},(0,n.kt)("inlineCode",{parentName:"a"},"e587f46"))),(0,n.kt)("li",{parentName:"ul"},"storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c8c77de372060328d535b190f30747797db0d23a"},(0,n.kt)("inlineCode",{parentName:"a"},"c8c77de"))),(0,n.kt)("li",{parentName:"ul"},"banner accesibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5e2f23bae30b5bb14d3f607e0cfeb85d0cfe4a9f"},(0,n.kt)("inlineCode",{parentName:"a"},"5e2f23b"))),(0,n.kt)("li",{parentName:"ul"},"prettier ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6ed78e50ee68accca10b06b0790c231ddeb1a1fa"},(0,n.kt)("inlineCode",{parentName:"a"},"6ed78e5"))),(0,n.kt)("li",{parentName:"ul"},"cleaning ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4391aa6c6611d1a15f5977eb150416909ad83bc1"},(0,n.kt)("inlineCode",{parentName:"a"},"4391aa6"))),(0,n.kt)("li",{parentName:"ul"},"lint 3 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2e0bed19a24d8abfa230212cd8c09f8313dc00f2"},(0,n.kt)("inlineCode",{parentName:"a"},"2e0bed1"))),(0,n.kt)("li",{parentName:"ul"},"lint 1 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4c958034870a9861c542359144e3c56f9157994"},(0,n.kt)("inlineCode",{parentName:"a"},"b4c9580")))),(0,n.kt)("h3",{id:"102---2023-03-14"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.1...1.0.2"},"1.0.2")," - 2023-03-14"),(0,n.kt)("h4",{id:"-bug-fixes-3"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(megamenu): topic menu title is now placed before content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6004bcb2683dedf6d6e18e61f33fde84a54c38d5"},(0,n.kt)("inlineCode",{parentName:"a"},"6004bcb"))),(0,n.kt)("li",{parentName:"ul"},"fix(megamenu): removed in depth nav_title renaming that set title wrongly to a-z topics ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/899ca0e2ba5f8f9eb61e4280d786f74a17c186b7"},(0,n.kt)("inlineCode",{parentName:"a"},"899ca0e")))),(0,n.kt)("h4",{id:"-enhancements-3"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(megamenu): removed special styling from at a glance mega menu section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fd0c4c8a06bb4c4aa26f57c453132d13d30bc691"},(0,n.kt)("inlineCode",{parentName:"a"},"fd0c4c8"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): renamed thematic information platforms to environmental information systems ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e7004a7ea39451dbf97e1faed222b0cc5a12d6ce"},(0,n.kt)("inlineCode",{parentName:"a"},"e7004a7"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): updated static image of footer sections ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ff3185edf9257c790d2a124d3f937f61d84e147"},(0,n.kt)("inlineCode",{parentName:"a"},"4ff3185")))),(0,n.kt)("h4",{id:"-documentation-changes-1"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(What's new): Update 'What's new' ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d7ed9d619aa60d087c3821a972ebe5bf5766521a"},(0,n.kt)("inlineCode",{parentName:"a"},"d7ed9d6")))),(0,n.kt)("h4",{id:"\ufe0f-others-3"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fixed accordion selector typo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f4cabc8f2222cf587af9e04b0ea196799b84202f"},(0,n.kt)("inlineCode",{parentName:"a"},"f4cabc8")))),(0,n.kt)("h3",{id:"101---2023-03-13"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0...1.0.1"},"1.0.1")," - 2023-03-13"),(0,n.kt)("h3",{id:"100---2023-03-13"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-beta.6...1.0.0"},"1.0.0")," - 2023-03-13"),(0,n.kt)("h4",{id:"-bug-fixes-4"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(Footer): Open internal links within the same page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5b3e409c71281800bb0fd137a1bac256efaca2b5"},(0,n.kt)("inlineCode",{parentName:"a"},"5b3e409")))),(0,n.kt)("h4",{id:"-enhancements-4"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(banner): use huge scale instead of full image for better performance ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/381c58e3521436f562d9e1727428a18435e2c0f3"},(0,n.kt)("inlineCode",{parentName:"a"},"381c58e")))),(0,n.kt)("h3",{id:"100-beta6---2023-03-10"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-beta.5...1.0.0-beta.6"},"1.0.0-beta.6")," - 2023-03-10"),(0,n.kt)("h4",{id:"-new-features-4"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(site): serve Roboto fonts from eea design system package instead of google fonts #311 from eea/roboto-library ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6a1b3e3864a0bc8602e9c434ff70746bba59f44"},(0,n.kt)("inlineCode",{parentName:"a"},"f6a1b3e")))),(0,n.kt)("h4",{id:"-bug-fixes-5"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix: full-width is now properly sized ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e2e3482d658febbd692112608df14279bed05e7"},(0,n.kt)("inlineCode",{parentName:"a"},"6e2e348"))),(0,n.kt)("li",{parentName:"ul"},"fix(storybook): add fontDisplay ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/078966a6a5c7277d36fcd31bb4c0704bcc43e523"},(0,n.kt)("inlineCode",{parentName:"a"},"078966a")))),(0,n.kt)("h4",{id:"-enhancements-5"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(image): copyright position fixes, moved image floating to image-block-container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53422e0ea345a7cb6e8cb07bf9006b48d86ded58"},(0,n.kt)("inlineCode",{parentName:"a"},"53422e0"))),(0,n.kt)("li",{parentName:"ul"},"change(colors:) update the design system colour palette #312 from eea/update-color-palette ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a5fb69465717dbdc0fe8091640a0e46f66199b65"},(0,n.kt)("inlineCode",{parentName:"a"},"a5fb694"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): added roboto library ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19de7b19fe795870102000bfebbf452d88b3a7b1"},(0,n.kt)("inlineCode",{parentName:"a"},"19de7b1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): added roboto library ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e9916215728dda0ff423f8196e7442588058042e"},(0,n.kt)("inlineCode",{parentName:"a"},"e991621"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): update colours ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3a2c1e1da8f0224e08f9f8afac3f0a74f7ce91d3"},(0,n.kt)("inlineCode",{parentName:"a"},"3a2c1e1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): restored site variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a48478bae9bdf1d9275be999e1ec8382f10a2fec"},(0,n.kt)("inlineCode",{parentName:"a"},"a48478b"))),(0,n.kt)("li",{parentName:"ul"},"change(copyright): implemented copyright hover design ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6b1244163de7ff58d1529fdd791502c862ee48ec"},(0,n.kt)("inlineCode",{parentName:"a"},"6b12441")))),(0,n.kt)("h4",{id:"-internal-changes-3"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(storybook): switched google fonts to true ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a8cae46582356cc24ec3cd7ec47e692bc67a6a5"},(0,n.kt)("inlineCode",{parentName:"a"},"4a8cae4"))),(0,n.kt)("li",{parentName:"ul"},"chore(colours): changed back yellow 6 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87c9bbc0ec9a2a0f4bf8eeb03525d43ce6f502be"},(0,n.kt)("inlineCode",{parentName:"a"},"87c9bbc"))),(0,n.kt)("li",{parentName:"ul"},"chore(lint): lint ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9b0f1256a8b0a583ac7724a8d88259c615d7e0c7"},(0,n.kt)("inlineCode",{parentName:"a"},"9b0f125"))),(0,n.kt)("li",{parentName:"ul"},"chore(storybook): lint ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/29bc809ab2e9fa4207b8b067785e6b17e91db3b4"},(0,n.kt)("inlineCode",{parentName:"a"},"29bc809")))),(0,n.kt)("h4",{id:"-documentation-changes-2"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(colours): colours update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/161007e2480aa79517c4ca772364a12a0756f1af"},(0,n.kt)("inlineCode",{parentName:"a"},"161007e"))),(0,n.kt)("li",{parentName:"ul"},"docs(colours): accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee342aa6af3863d243222eaa89709be2ba61f988"},(0,n.kt)("inlineCode",{parentName:"a"},"ee342aa")))),(0,n.kt)("h4",{id:"\ufe0f-others-4"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"test(cypress): Use latest stable Volto for testing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/20516617ae045f48c37a7ac7ad05c3d1090339b3"},(0,n.kt)("inlineCode",{parentName:"a"},"2051661"))),(0,n.kt)("li",{parentName:"ul"},"Update What's new section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/caa4b5d93affa7b63a332eaed9e73ea161a508cf"},(0,n.kt)("inlineCode",{parentName:"a"},"caa4b5d"))),(0,n.kt)("li",{parentName:"ul"},"Prepare final release 1.0.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef4383d05b295cbbb377f877522b9f83cd0873ef"},(0,n.kt)("inlineCode",{parentName:"a"},"ef4383d"))),(0,n.kt)("li",{parentName:"ul"},"lint fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/599f5098904f607bd694dd5d2e642c8820f11b3c"},(0,n.kt)("inlineCode",{parentName:"a"},"599f509"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/80cd3df3534e46e52ba246256c3d990a52753bbd"},(0,n.kt)("inlineCode",{parentName:"a"},"80cd3df")))),(0,n.kt)("h3",{id:"100-beta5---2023-03-07"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-beta.4...1.0.0-beta.5"},"1.0.0-beta.5")," - 2023-03-07"),(0,n.kt)("h4",{id:"-enhancements-6"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(carousel): tweak size of carousel dots for better touch interaction ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e1fb8230806de2e157a9a5ea87e63765769565b4"},(0,n.kt)("inlineCode",{parentName:"a"},"e1fb823"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): removed min width and height from links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac33219fb77f23bb5148355551a7aad9f453d2e7"},(0,n.kt)("inlineCode",{parentName:"a"},"ac33219")))),(0,n.kt)("h4",{id:"-internal-changes-4"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(hiddenStructure): Add hiddenStructure utility to be used with h1 heading on frontpage - refs #158717 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/672cca2401003f56e5ea104f18103ea090e38fd7"},(0,n.kt)("inlineCode",{parentName:"a"},"672cca2")))),(0,n.kt)("h4",{id:"\ufe0f-others-5"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fixed less build failure due to changes in footer.less ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/190bc8cfa88191b45808f1e27c6e2737ee3d15b1"},(0,n.kt)("inlineCode",{parentName:"a"},"190bc8c"))),(0,n.kt)("li",{parentName:"ul"},"lazyload bg img on footer also ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ae07162ba1b27bff58fed70eaabc28c78c5f45a3"},(0,n.kt)("inlineCode",{parentName:"a"},"ae07162"))),(0,n.kt)("li",{parentName:"ul"},"lazyload footer images ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a0633c9ec4ccfb63a48eb4e4c4a63c90daac1a37"},(0,n.kt)("inlineCode",{parentName:"a"},"a0633c9"))),(0,n.kt)("li",{parentName:"ul"},"Increase performance - mobile friendly ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/07d86c8e77568f91d50b3a45248de9427140a295"},(0,n.kt)("inlineCode",{parentName:"a"},"07d86c8"))),(0,n.kt)("li",{parentName:"ul"},"better useOnScreen hook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c214b6b76443f81c795ce2f3aa457562ec088b30"},(0,n.kt)("inlineCode",{parentName:"a"},"c214b6b"))),(0,n.kt)("li",{parentName:"ul"},"role change for accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5e758e0a7fa8c56ba688d0a43de5890686f14ea3"},(0,n.kt)("inlineCode",{parentName:"a"},"5e758e0"))),(0,n.kt)("li",{parentName:"ul"},"minimum tap dimension for mobile ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a25e9a8ba8a8a0f24d287ed7513e549ae2caab0f"},(0,n.kt)("inlineCode",{parentName:"a"},"a25e9a8"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-beta.5 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e4417e121477511c350ae3fbe4e70aadb445ed86"},(0,n.kt)("inlineCode",{parentName:"a"},"e4417e1"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using eea-website-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b227cf8a8c44b9d91e9fda8a7999fb0a42bacdca"},(0,n.kt)("inlineCode",{parentName:"a"},"b227cf8"))),(0,n.kt)("li",{parentName:"ul"},"feature(mobile): increased performance by lazy loading footer images #303 from eea/increase_performance ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/80d1df1c459680331d486f9e8e6a95c9db0adbf6"},(0,n.kt)("inlineCode",{parentName:"a"},"80d1df1"))),(0,n.kt)("li",{parentName:"ul"},"useOnScreen default export ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e6cfdd4dcb814aad328f97be7af41af071ccba6"},(0,n.kt)("inlineCode",{parentName:"a"},"3e6cfdd"))),(0,n.kt)("li",{parentName:"ul"},"use aria-labels on dropdown ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/27e144315416ceace0f01def03b5b24640f5c7da"},(0,n.kt)("inlineCode",{parentName:"a"},"27e1443"))),(0,n.kt)("li",{parentName:"ul"},"prettier ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7f838470c1bcc4e2be115d514d92a1b686a5e9b"},(0,n.kt)("inlineCode",{parentName:"a"},"a7f8384")))),(0,n.kt)("h3",{id:"100-beta4---2023-03-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-beta.3...1.0.0-beta.4"},"1.0.0-beta.4")," - 2023-03-01"),(0,n.kt)("h4",{id:"-new-features-5"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(footer): Add footer description ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ad0f714556c5b8c2fd95a2caea5c3a1e82c75d1"},(0,n.kt)("inlineCode",{parentName:"a"},"2ad0f71"))),(0,n.kt)("li",{parentName:"ul"},"feat(footer): Add footer description #306 from eea/footer-description ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bf655d133dd75b217c34b3d4303ad450a59f2c51"},(0,n.kt)("inlineCode",{parentName:"a"},"bf655d1")))),(0,n.kt)("h4",{id:"-bug-fixes-6"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(footer): Don't show empty row if description is not present ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ca7f7d3247668ae8583b8cd629856aac82eb07d"},(0,n.kt)("inlineCode",{parentName:"a"},"2ca7f7d"))),(0,n.kt)("li",{parentName:"ul"},"fix(footer): Add class for children ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c50d15cd6ed46d78ef10d48fd851ed7c4b5ddea"},(0,n.kt)("inlineCode",{parentName:"a"},"3c50d15"))),(0,n.kt)("li",{parentName:"ul"},"fix(search): Fix search links color #307 from eea/search-accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a76f48bab3a7d3f6b748eaa85b33266401372e40"},(0,n.kt)("inlineCode",{parentName:"a"},"a76f48b"))),(0,n.kt)("li",{parentName:"ul"},"fix(search): Fix search links color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/69c42effc5bdc3d31f18de74d77a3b7cc0018dc5"},(0,n.kt)("inlineCode",{parentName:"a"},"69c42ef")))),(0,n.kt)("h4",{id:"-enhancements-7"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(carousel): tweak card width and padding for better arrow alignment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e184f70062d622e1ec53e8e1e2b012c080e62d77"},(0,n.kt)("inlineCode",{parentName:"a"},"e184f70"))),(0,n.kt)("li",{parentName:"ul"},"change(storybook): include footer description in storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e904aa0850e101d736e8d045e822d9a58b75ff6a"},(0,n.kt)("inlineCode",{parentName:"a"},"e904aa0")))),(0,n.kt)("h4",{id:"\ufe0f-others-6"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-beta.4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8c335c56c5a2a76ea87f9da318055770f904e649"},(0,n.kt)("inlineCode",{parentName:"a"},"8c335c5"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/38b03333066416915b056f8ac45da4de87ed7184"},(0,n.kt)("inlineCode",{parentName:"a"},"38b0333")))),(0,n.kt)("h3",{id:"100-beta3---2023-02-21"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-beta.2...1.0.0-beta.3"},"1.0.0-beta.3")," - 2023-02-21"),(0,n.kt)("h4",{id:"-new-features-6"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(accordion): storybook accessibility by using buttons for titles #297 from eea/accessibility-accordion ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/809d52b203ef40fab735006b3b8358d68682f7cf"},(0,n.kt)("inlineCode",{parentName:"a"},"809d52b")))),(0,n.kt)("h4",{id:"-bug-fixes-7"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(dropdown): remove close on blur so that we can navigate links using keyboard ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5442715e022b3eb2eeb709ff597f815947ac45bd"},(0,n.kt)("inlineCode",{parentName:"a"},"5442715")))),(0,n.kt)("h4",{id:"-enhancements-8"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(language): dropdown to use links for proper keyboard navigation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6a7de30d9d229443d6d2070d9649129e6d35badf"},(0,n.kt)("inlineCode",{parentName:"a"},"6a7de30"))),(0,n.kt)("li",{parentName:"ul"},"refactor(images): cleared unused/renamed images assets ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/821f5c1da5c1e2350818cd9b8b82bc0b1893370d"},(0,n.kt)("inlineCode",{parentName:"a"},"821f5c1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Accessibility): add box-shadow on focus-visible components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b1adcc315a89c7d3431e542e8d1b6ec479a346e2"},(0,n.kt)("inlineCode",{parentName:"a"},"b1adcc3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(images): remove unused docusaurus svgs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5ef14cdb1923d803feb673559d41b3064211653"},(0,n.kt)("inlineCode",{parentName:"a"},"c5ef14c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add escape key functionality, actions from div to button to have proper focus state ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8081aa4e3b77f8a3dc89aa358408d75e3dca5579"},(0,n.kt)("inlineCode",{parentName:"a"},"8081aa4"))),(0,n.kt)("li",{parentName:"ul"},"change(language): restore dropdown duplication in order to properly show and hide language dropdown ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb28888ff19bd9894b58403e674f69de42ad8d09"},(0,n.kt)("inlineCode",{parentName:"a"},"cb28888"))),(0,n.kt)("li",{parentName:"ul"},"change(search): to reflect changes from eea-website-theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2cc35e0da6e6eac1473724293fcf6cd6b0a914b5"},(0,n.kt)("inlineCode",{parentName:"a"},"2cc35e0"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update p with h3 heading tag for header ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca1477b554f56423d40a33d8ee788c3f3bd3e341"},(0,n.kt)("inlineCode",{parentName:"a"},"ca1477b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer images): removed unused/renamed ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/186de6b23906e05ec700c3db5180a4d7f7e5ed68"},(0,n.kt)("inlineCode",{parentName:"a"},"186de6b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Accordion): div titles to buttons, test in mobile mega menu accordions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/eaad4b479e37ebf5ac004cfc5759e0be603000a7"},(0,n.kt)("inlineCode",{parentName:"a"},"eaad4b4"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): cleanup decorative images ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fedc4d4dc156f9c1394fcedcebece4fb87dc70b6"},(0,n.kt)("inlineCode",{parentName:"a"},"fedc4d4"))),(0,n.kt)("li",{parentName:"ul"},"change(accessibility): style outline instead of box-shadow ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53209f3b28c9a1dd54a8a86ab418b8bc2a8e01b3"},(0,n.kt)("inlineCode",{parentName:"a"},"53209f3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Footer): update mobile header size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/01ab7f0d9abe688b3d96aaec018838e1abefec73"},(0,n.kt)("inlineCode",{parentName:"a"},"01ab7f0"))),(0,n.kt)("li",{parentName:"ul"},"change(header): set the logo class directly on the link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f8fba508f925d9e6b86720fcb2c7dcfffee4ab5e"},(0,n.kt)("inlineCode",{parentName:"a"},"f8fba50"))),(0,n.kt)("li",{parentName:"ul"},"refactor(images): clear docusaurus unused pngs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/db5c61124182e3030f753f6baa294fbdecaa3798"},(0,n.kt)("inlineCode",{parentName:"a"},"db5c611"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header-images): removed unused ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8250d94421d9d1ee13144e71bc0938af2b7309f5"},(0,n.kt)("inlineCode",{parentName:"a"},"8250d94"))),(0,n.kt)("li",{parentName:"ul"},"change(language): hide language dropdown by default ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cc6064f72dcb4dbf96e9b05205cc796775d75205"},(0,n.kt)("inlineCode",{parentName:"a"},"cc6064f"))),(0,n.kt)("li",{parentName:"ul"},"change(header): top dropdown menu keyboard navigation #293 from eea/accessibility-megamenu-searchbox ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1e6fa658e52b9d5e6cc38f065b5707b592005241"},(0,n.kt)("inlineCode",{parentName:"a"},"1e6fa65"))),(0,n.kt)("li",{parentName:"ul"},"change(button): set focus styling for buttons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/33ebfcacb014fca365ae58079bfa5429d9007e54"},(0,n.kt)("inlineCode",{parentName:"a"},"33ebfca"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): Avoid devtools warning in FooterActions #304 from eea/avoid_warning ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d774824c5d3d0998b3440ac83152428cfa821087"},(0,n.kt)("inlineCode",{parentName:"a"},"d774824"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): Accessibility update p with h3 heading tag for theme sites title #302 from eea/footer-accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5bf70de97aee216a0b88f5843a290c6bcb5da6f2"},(0,n.kt)("inlineCode",{parentName:"a"},"5bf70de"))),(0,n.kt)("li",{parentName:"ul"},"change(documentation): Rename all image files to follow the agreed convention #301 from eea/refactor-image-filenames ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cfe44ef79943af9b9179df1b8ec5f8c743e8bb39"},(0,n.kt)("inlineCode",{parentName:"a"},"cfe44ef")))),(0,n.kt)("h4",{id:"-internal-changes-5"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(header): react syntax fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3add1271c785a92bea0ef925d7bc562cef1e0d92"},(0,n.kt)("inlineCode",{parentName:"a"},"3add127"))),(0,n.kt)("li",{parentName:"ul"},"chore(docusaurus): ignore website/.yarn ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0b33ffd1dda61b126e3cc5ff48888124d6aee41b"},(0,n.kt)("inlineCode",{parentName:"a"},"0b33ffd")))),(0,n.kt)("h4",{id:"-documentation-changes-3"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(guidelines): add image name convention ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/290747c8df6919199577bc7fce6a0e337cb57853"},(0,n.kt)("inlineCode",{parentName:"a"},"290747c")))),(0,n.kt)("h4",{id:"\ufe0f-others-7"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Avoid warning in FooterActions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0fe73d70e44e32be73049f3b5cf826de42115942"},(0,n.kt)("inlineCode",{parentName:"a"},"0fe73d7"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-beta.3 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/386c9032d39317b0bb95191bd59e3b7a99bded69"},(0,n.kt)("inlineCode",{parentName:"a"},"386c903")))),(0,n.kt)("h3",{id:"100-beta2---2023-02-13"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-beta.1...1.0.0-beta.2"},"1.0.0-beta.2")," - 2023-02-13"),(0,n.kt)("h4",{id:"-bug-fixes-8"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(footer): action and copyright #300 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/579f3e436e9608b38a2407a16c070345462bfccc"},(0,n.kt)("inlineCode",{parentName:"a"},"579f3e4"))),(0,n.kt)("li",{parentName:"ul"},"fix(footer): action or copyright links are simple a tags for external link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9af5070187ec975e58387f133afedcf1bbc47a50"},(0,n.kt)("inlineCode",{parentName:"a"},"9af5070"))),(0,n.kt)("li",{parentName:"ul"},"fix(accessibility): added navigation and footer id's for skip link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48354b908e7d1a87b4e1a965d225e8f1b3e0ac59"},(0,n.kt)("inlineCode",{parentName:"a"},"48354b9")))),(0,n.kt)("h4",{id:"-enhancements-9"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(footer): typos and modified footer links to be center aligned ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac23f046bcac06525985dff7520bb2766dec44ec"},(0,n.kt)("inlineCode",{parentName:"a"},"ac23f04"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): added gap for actions and copyright ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d32ddd3c28a48c6c2fb73dea373bb5873b6f76b"},(0,n.kt)("inlineCode",{parentName:"a"},"7d32ddd"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): modified footer gap ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8a820ac90c7d6664e4d4655c2c06edfa976c64e"},(0,n.kt)("inlineCode",{parentName:"a"},"b8a820a"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): removed extra text and date from copyright section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af47bbec298678fece6f879fbc18fe2e01ab0894"},(0,n.kt)("inlineCode",{parentName:"a"},"af47bbe"))),(0,n.kt)("li",{parentName:"ul"},"change(navigation): raise z-index of go to top link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/485ca7291da7a156b6b580c42e46d4f3602211bb"},(0,n.kt)("inlineCode",{parentName:"a"},"485ca72")))),(0,n.kt)("h4",{id:"-internal-changes-6"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(docs): Update eea.hbs template to beta - refs #158717 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/196538ed7bb9dab36a0efb4cef84e96dd3038ff8"},(0,n.kt)("inlineCode",{parentName:"a"},"196538e")))),(0,n.kt)("h4",{id:"\ufe0f-others-8"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change version to beta 2 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cbb07981454b28de840561eca281888e8bc29f9e"},(0,n.kt)("inlineCode",{parentName:"a"},"cbb0798"))),(0,n.kt)("li",{parentName:"ul"},"Beta release ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ad51b3c2bbb75f19af14fa56afdbddf57b6c95e"},(0,n.kt)("inlineCode",{parentName:"a"},"4ad51b3")))),(0,n.kt)("h3",{id:"100-beta1---2023-02-09"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.15...1.0.0-beta.1"},"1.0.0-beta.1")," - 2023-02-09"),(0,n.kt)("h4",{id:"-new-features-7"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(search): Add search suggestions style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6b2b77bbaba11541606ae2bc1f4e8ffc823f470d"},(0,n.kt)("inlineCode",{parentName:"a"},"6b2b77b"))),(0,n.kt)("li",{parentName:"ul"},"feat(search): Add search suggestions style #296 from eea/search-suggestions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3b0c956f569ebdc8400b88249c45067a1f881264"},(0,n.kt)("inlineCode",{parentName:"a"},"3b0c956")))),(0,n.kt)("h4",{id:"-enhancements-10"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(search): Add proper margin for search popup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/190c9f5be570215586086f42aebc7e36d6a26ea2"},(0,n.kt)("inlineCode",{parentName:"a"},"190c9f5")))),(0,n.kt)("h4",{id:"\ufe0f-others-9"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Extra bottom padding for header menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4f38c7a96d93fbcd47de4ec60176de2a667c5643"},(0,n.kt)("inlineCode",{parentName:"a"},"4f38c7a"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-beta.1 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4384ae28597c725f66ab0f1361ffd5167ee5e3a1"},(0,n.kt)("inlineCode",{parentName:"a"},"4384ae2"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c2ee90c1754f17a304897839adf482bc2a111212"},(0,n.kt)("inlineCode",{parentName:"a"},"c2ee90c")))),(0,n.kt)("h3",{id:"100-alpha15---2023-02-08"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.14...1.0.0-alpha.15"},"1.0.0-alpha.15")," - 2023-02-08"),(0,n.kt)("h4",{id:"-new-features-8"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(Card): add teaser card grid story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53cac0b0d1c40ad6ad8c9dc91c5d24bfb160f98e"},(0,n.kt)("inlineCode",{parentName:"a"},"53cac0b"))),(0,n.kt)("li",{parentName:"ul"},"feat(utilities): Complete list of text-align utilities - refs #160747 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/224fab602184b8974f588c91a7412e3d03e4e2f7"},(0,n.kt)("inlineCode",{parentName:"a"},"224fab6"))),(0,n.kt)("li",{parentName:"ul"},"feat(small): CSS for small HTML tag - refs #160747 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ad3c0adec4efa7cead69153d399c6452131c94cc"},(0,n.kt)("inlineCode",{parentName:"a"},"ad3c0ad"))),(0,n.kt)("li",{parentName:"ul"},"feat(fw-light): Add font weight light utility - refs #160747 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c44cf57db5845fbb9c07233aeedab79e1438f80f"},(0,n.kt)("inlineCode",{parentName:"a"},"c44cf57")))),(0,n.kt)("h4",{id:"-bug-fixes-9"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(card): teaser card dimensions on tablet size #290 from eea/teaser-card-grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/013fdf5cad347aee14bdc51553dbd95d972a7c66"},(0,n.kt)("inlineCode",{parentName:"a"},"013fdf5")))),(0,n.kt)("h4",{id:"-enhancements-11"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(card): added extra content for teaser card story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/30690ae6c499682853cb19db10b0cdc13c6f9508"},(0,n.kt)("inlineCode",{parentName:"a"},"30690ae"))),(0,n.kt)("li",{parentName:"ul"},"refactor(style-menu): add text-color to paragraphs styles #291 from eea/stylemenu-theme-colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2d783075b8089184e50b1763226af0d60ed11786"},(0,n.kt)("inlineCode",{parentName:"a"},"2d78307"))),(0,n.kt)("li",{parentName:"ul"},"change(header): Small fix in search popup #292 from eea/search-popup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/86c130539455b9a00b4b088b1871a98b9756df79"},(0,n.kt)("inlineCode",{parentName:"a"},"86c1305"))),(0,n.kt)("li",{parentName:"ul"},"refactor(style-menu): add text-color to paragraphs styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3446bc2704603bbfead7ff6c72d4e3a1ce81c7d4"},(0,n.kt)("inlineCode",{parentName:"a"},"3446bc2"))),(0,n.kt)("li",{parentName:"ul"},"change(color): darkCyan is now replaced everywhere by the new green ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef3791de6e2ea23487791c717eefc575e21fd283"},(0,n.kt)("inlineCode",{parentName:"a"},"ef3791d"))),(0,n.kt)("li",{parentName:"ul"},"change(header): Small fix in search popup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3d622ea99df5a1f1088f70998e38fd5bf43997cf"},(0,n.kt)("inlineCode",{parentName:"a"},"3d622ea")))),(0,n.kt)("h4",{id:"\ufe0f-others-10"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Release alpha 15 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3b72b29aaf9b3e1bfb7015808aafbd73a7167895"},(0,n.kt)("inlineCode",{parentName:"a"},"3b72b29")))),(0,n.kt)("h3",{id:"100-alpha14---2023-01-30"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.13.1...1.0.0-alpha.14"},"1.0.0-alpha.14")," - 2023-01-30"),(0,n.kt)("h4",{id:"-enhancements-12"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(mobile menu): integrate a-z topic with menu rendering logic #287 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/05d4c04603e6572cd6f9b255faa03c4636d8efdb"},(0,n.kt)("inlineCode",{parentName:"a"},"05d4c04"))),(0,n.kt)("li",{parentName:"ul"},"change(mobile menu): integrate a-z topic with menu rendering logic ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/246d3d839b773e2f6e1fff7fed5f9aa7a4968daa"},(0,n.kt)("inlineCode",{parentName:"a"},"246d3d8")))),(0,n.kt)("h4",{id:"\ufe0f-others-11"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"bump release to alpha 14 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/92f01975a809553ed122824c8407c74da9132c23"},(0,n.kt)("inlineCode",{parentName:"a"},"92f0197"))),(0,n.kt)("li",{parentName:"ul"},"link fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e1c12a132a1a99d773af359ebce071fb37c7e661"},(0,n.kt)("inlineCode",{parentName:"a"},"e1c12a1")))),(0,n.kt)("h3",{id:"100-alpha131---2023-01-30"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.13...1.0.0-alpha.13.1"},"1.0.0-alpha.13.1")," - 2023-01-30"),(0,n.kt)("h4",{id:"-enhancements-13"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(mobile menu): hardcode a-z topics to '/en/topics-in-depth' #286 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6436224e1922fb5d4b4053c874cebe5c57b2a6b9"},(0,n.kt)("inlineCode",{parentName:"a"},"6436224"))),(0,n.kt)("li",{parentName:"ul"},"change(mobile menu): hardcode a-z topics to '/en/topics-in-depth' ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5235b52047a80a8b626aa5ef3ef304c4d9a82003"},(0,n.kt)("inlineCode",{parentName:"a"},"5235b52")))),(0,n.kt)("h4",{id:"\ufe0f-others-12"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change release to 13.1 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70aa5648e7d9e14796445323b6ebaf7733cc7fd8"},(0,n.kt)("inlineCode",{parentName:"a"},"70aa564")))),(0,n.kt)("h3",{id:"100-alpha13---2023-01-27"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.12...1.0.0-alpha.13"},"1.0.0-alpha.13")," - 2023-01-27"),(0,n.kt)("h4",{id:"-new-features-9"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(utilities): added has--bg--top center and bottom utility classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/051e6d7c33aca7947802ddaa9fe68ac41ed7fe11"},(0,n.kt)("inlineCode",{parentName:"a"},"051e6d7")))),(0,n.kt)("h4",{id:"-bug-fixes-10"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(header): update green color used in page header #284 from eea/fix-banner-background ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/29d54db06487d18a367202725e525ac26e5b7c58"},(0,n.kt)("inlineCode",{parentName:"a"},"29d54db")))),(0,n.kt)("h4",{id:"-enhancements-14"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(site): added fixes from customVolto.css to design package ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51ba9b5df0186bdf075d803dea6032bac52e540f"},(0,n.kt)("inlineCode",{parentName:"a"},"51ba9b5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner): update banner background green color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fd4a552d9ff7a2973ebd6d18b6fbfd9bba5d98c6"},(0,n.kt)("inlineCode",{parentName:"a"},"fd4a552"))),(0,n.kt)("li",{parentName:"ul"},"change(mobile menu): changed link for a-z topics to point to in depth ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/721bf237d23d2a8e47fc2132912646c4ce182c9d"},(0,n.kt)("inlineCode",{parentName:"a"},"721bf23")))),(0,n.kt)("h4",{id:"\ufe0f-others-13"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"1.0.0-alpha.13 release #285 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c96694005e2d4160876f6a900db13940d42266d5"},(0,n.kt)("inlineCode",{parentName:"a"},"c966940"))),(0,n.kt)("li",{parentName:"ul"},"bump next version to alpha 13 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/897e9069062282f1b5cd8d86a02b8e54c40a4690"},(0,n.kt)("inlineCode",{parentName:"a"},"897e906"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5780dc7abeb24da5e77b043a34593ff7a44f350d"},(0,n.kt)("inlineCode",{parentName:"a"},"5780dc7")))),(0,n.kt)("h3",{id:"100-alpha12---2023-01-24"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.11...1.0.0-alpha.12"},"1.0.0-alpha.12")," - 2023-01-24"),(0,n.kt)("h4",{id:"-new-features-10"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(card, colors): visited color change and title on image option for cards #283 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e638ee6b77885fd5989179aa9e6532e46e475247"},(0,n.kt)("inlineCode",{parentName:"a"},"e638ee6")))),(0,n.kt)("h4",{id:"-bug-fixes-11"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(mobile menu): sub links when an accordion section is active ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bb3be81416340ad0e3e992cd4e75642fc50f8ad3"},(0,n.kt)("inlineCode",{parentName:"a"},"bb3be81")))),(0,n.kt)("h4",{id:"-enhancements-15"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(Card): create card template for stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2fa77f3f93935dd01cd5e3d77437fe8dc03721da"},(0,n.kt)("inlineCode",{parentName:"a"},"2fa77f3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Card): add image with title css ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e6e63e2362a27b0bbf4b8dd968f11a0dc87da2a"},(0,n.kt)("inlineCode",{parentName:"a"},"6e6e63e"))),(0,n.kt)("li",{parentName:"ul"},"change(card): implement title on image within image section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff6cc600978355e04dde704d014d2cbe27df1298"},(0,n.kt)("inlineCode",{parentName:"a"},"ff6cc60"))),(0,n.kt)("li",{parentName:"ul"},"change(card): added image card section, tweaked mobile heading size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0f879e15d22ae066f020d8188ef3e355c27d016c"},(0,n.kt)("inlineCode",{parentName:"a"},"0f879e1"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): moved image gradient overlay to a mixin.less file ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8b4928a87bfe5fae6f64c93d7c8f1f7a3045816c"},(0,n.kt)("inlineCode",{parentName:"a"},"8b4928a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): Update titles value and size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c35ad5c76caa00556f8a501d2e7d516464790dc4"},(0,n.kt)("inlineCode",{parentName:"a"},"c35ad5c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): applied image naming convention ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee7bc290084e198f9f94e40fbf44c6d9cb19d1ba"},(0,n.kt)("inlineCode",{parentName:"a"},"ee7bc29"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): added image for all storybook card examples ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3f194130bb6fb7b9ab04a7e1305f26fa135c23d2"},(0,n.kt)("inlineCode",{parentName:"a"},"3f19413"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): restored label value of metadata field when type isn't date ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/571a4f27fe73d0465b6482f70dd70b2dc47dffe8"},(0,n.kt)("inlineCode",{parentName:"a"},"571a4f2"))),(0,n.kt)("li",{parentName:"ul"},"change(card): title padding value for a more balance look ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/74b65563d973eb9c6afc534935e253f2705fe9ee"},(0,n.kt)("inlineCode",{parentName:"a"},"74b6556"))),(0,n.kt)("li",{parentName:"ul"},"change(card): removed uppercase transform from title on image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2948ae16f748911929910ac53d1e0acf96952317"},(0,n.kt)("inlineCode",{parentName:"a"},"2948ae1"))),(0,n.kt)("li",{parentName:"ul"},"change(colors, Docusaurus): Visited link colour change and thematic logo replacement #278 from eea/refactor-visited-link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f82d9781cc3b34443f181565c2ec1892d534f8e2"},(0,n.kt)("inlineCode",{parentName:"a"},"f82d978"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): visited link variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b209b2f7703641926c6d4b1f7162eef39b2a1ad8"},(0,n.kt)("inlineCode",{parentName:"a"},"b209b2f")))),(0,n.kt)("h4",{id:"-documentation-changes-4"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(colors): visited link update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ece77fec130de1d9d8014d40e7da975bf57061ee"},(0,n.kt)("inlineCode",{parentName:"a"},"ece77fe")))),(0,n.kt)("h4",{id:"\ufe0f-others-14"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix typos in footer gradient variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/40066405d97af838e986370101371a8162029e02"},(0,n.kt)("inlineCode",{parentName:"a"},"4006640"))),(0,n.kt)("li",{parentName:"ul"},"change version to alpha 12 instead of 1 final ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32250253f5d7fe9f01126136ad86b8a4f2f5c700"},(0,n.kt)("inlineCode",{parentName:"a"},"3225025"))),(0,n.kt)("li",{parentName:"ul"},"feature(card): new card variation with title on top of image #267 from eea/title-on-image-card ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2c0ca95700bb162bc1273c83f2fc4f591de8dcf0"},(0,n.kt)("inlineCode",{parentName:"a"},"2c0ca95"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/477d997513ef5152ab98e080ad07f927b5869705"},(0,n.kt)("inlineCode",{parentName:"a"},"477d997")))),(0,n.kt)("h3",{id:"100-alpha11---2023-01-17"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.10...1.0.0-alpha.11"},"1.0.0-alpha.11")," - 2023-01-17"),(0,n.kt)("h4",{id:"-new-features-11"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(docusaurus): Header and footer elements section #277 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0df271c4c79bd8a24750cfe44d69f32cb04a1b63"},(0,n.kt)("inlineCode",{parentName:"a"},"0df271c")))),(0,n.kt)("h4",{id:"-bug-fixes-12"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(banner): storybook date input and simplified gradient opacity ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7674d767bb770342828d6bea6953ce45b823943f"},(0,n.kt)("inlineCode",{parentName:"a"},"7674d76"))),(0,n.kt)("li",{parentName:"ul"},"fix(banner): re-added title class on banner title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d157994934c3da9af4e3dd37844f910bddf8377"},(0,n.kt)("inlineCode",{parentName:"a"},"6d15799")))),(0,n.kt)("h4",{id:"-enhancements-16"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(banner): sync storybook and Volto component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c9087cc8edc3fb27e0b96b509354861ec306f22a"},(0,n.kt)("inlineCode",{parentName:"a"},"c9087cc"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): removed margin from title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/17e592c4f3fd16a78069af50574e2ac608166a0f"},(0,n.kt)("inlineCode",{parentName:"a"},"17e592c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): sync storybook and Volto component #275 from eea/sync-page-banner-theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4331fb4a6d5744e7d7d6a001bca91265a22587fd"},(0,n.kt)("inlineCode",{parentName:"a"},"4331fb4")))),(0,n.kt)("h4",{id:"-documentation-changes-5"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(footer): updates on header elements ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b41c550475dc5a2eefcad5d75439601d079613e2"},(0,n.kt)("inlineCode",{parentName:"a"},"b41c550"))),(0,n.kt)("li",{parentName:"ul"},"docs(footer): add elements anatomy ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d9f0872f93a6f7572f798b2c001d3af00eb282e3"},(0,n.kt)("inlineCode",{parentName:"a"},"d9f0872")))),(0,n.kt)("h4",{id:"\ufe0f-others-15"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"add(banner): banner title css ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d0032474d2b57eb63a4b50a882ced2ee743a48e6"},(0,n.kt)("inlineCode",{parentName:"a"},"d003247"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-alpha.11 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/07e8f858b0bdeaa6a348c0bfc2b785f26017e1ea"},(0,n.kt)("inlineCode",{parentName:"a"},"07e8f85"))),(0,n.kt)("li",{parentName:"ul"},"renamed image elements as requested in review ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8541fb6739d3c935ed8d44a220114546b2aef682"},(0,n.kt)("inlineCode",{parentName:"a"},"8541fb6"))),(0,n.kt)("li",{parentName:"ul"},"remove(banner-gradiant): image gradiant in favour of text ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1b58520490be5e17ea4ce6fc98329d467dad3960"},(0,n.kt)("inlineCode",{parentName:"a"},"1b58520"))),(0,n.kt)("li",{parentName:"ul"},"update(gradient): use 8deg angle ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6fd597d8d7a83fdf8a27939e4c69dfc3975b6a81"},(0,n.kt)("inlineCode",{parentName:"a"},"6fd597d"))),(0,n.kt)("li",{parentName:"ul"},"update(gradiant): make it 0deg ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1bb2696375eef233b509e27d9d464b8343421430"},(0,n.kt)("inlineCode",{parentName:"a"},"1bb2696"))),(0,n.kt)("li",{parentName:"ul"},"remove(comment) referencing old verison of title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4226d42e34b119e057cf4e9878b6a99172cb976a"},(0,n.kt)("inlineCode",{parentName:"a"},"4226d42")))),(0,n.kt)("h3",{id:"100-alpha10---2023-01-13"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.9...1.0.0-alpha.10"},"1.0.0-alpha.10")," - 2023-01-13"),(0,n.kt)("h4",{id:"-bug-fixes-13"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(subsite): Fix logo size on subsite section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/65fff54503a9ace573dc7198f6bedb372e65d211"},(0,n.kt)("inlineCode",{parentName:"a"},"65fff54"))),(0,n.kt)("li",{parentName:"ul"},"fix(subsite): Fix logo size on subsite section #279 from eea/subsite-fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f6cf94811dbebc2081c0ca812570a72dd977b06"},(0,n.kt)("inlineCode",{parentName:"a"},"8f6cf94"))),(0,n.kt)("li",{parentName:"ul"},"fix(mega-menu): show sub grid only if there are children ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ddfbd82aab2be723ae230d703f72a8cd489f17d8"},(0,n.kt)("inlineCode",{parentName:"a"},"ddfbd82")))),(0,n.kt)("h4",{id:"\ufe0f-others-16"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Add variable definitions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/293fe65e2f24e6290e1286229169a77f9be4750e"},(0,n.kt)("inlineCode",{parentName:"a"},"293fe65"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-alpha.10 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7014d080ce114bd0bc039abeecbd7229333b0971"},(0,n.kt)("inlineCode",{parentName:"a"},"7014d08"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using advisory-board-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef58a6f5ad8deea26b1395a86778fe1159b7617b"},(0,n.kt)("inlineCode",{parentName:"a"},"ef58a6f"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/31d461662b9184a7bbe190e86f3c47fab39229fe"},(0,n.kt)("inlineCode",{parentName:"a"},"31d4616")))),(0,n.kt)("h3",{id:"100-alpha9---2022-12-28"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.8...1.0.0-alpha.9"},"1.0.0-alpha.9")," - 2022-12-28"),(0,n.kt)("h4",{id:"-enhancements-17"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(contextnav): Default title is text, custom title is link #273 from eea/context-nav-link-title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef7bdb7c40cd12c3d7e059074aa5797b8cb3378c"},(0,n.kt)("inlineCode",{parentName:"a"},"ef7bdb7")))),(0,n.kt)("h4",{id:"\ufe0f-others-17"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Show document and folder content-type in Navigation listing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8471db3b3d555e8602f1076d0f96a2ba38a12247"},(0,n.kt)("inlineCode",{parentName:"a"},"8471db3"))),(0,n.kt)("li",{parentName:"ul"},"Default title is text, custom title is link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1ae95b05b67423121566448c6b0cededca4b2b1d"},(0,n.kt)("inlineCode",{parentName:"a"},"1ae95b0"))),(0,n.kt)("li",{parentName:"ul"},"Context nav title link to # ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a27a6b78bcda0eb6037f73f1d36b06e00e3ffc52"},(0,n.kt)("inlineCode",{parentName:"a"},"a27a6b7")))),(0,n.kt)("h3",{id:"100-alpha8---2022-12-23"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.7...1.0.0-alpha.8"},"1.0.0-alpha.8")," - 2022-12-23"),(0,n.kt)("h4",{id:"-new-features-12"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(copyright): Align copyright options with Volto integration - refs #158210 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6bac7f6a9ad969af4be1c8c08a18a1144d5bad63"},(0,n.kt)("inlineCode",{parentName:"a"},"6bac7f6")))),(0,n.kt)("h4",{id:"-enhancements-18"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(logo): import theme site logos to the story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2f29136ca457f2419ca25a5292a036b2cd0fc402"},(0,n.kt)("inlineCode",{parentName:"a"},"2f29136"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logo): update logo and mega search gradient ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e11f44d59334fc02e3833a133b20e7b2240a2022"},(0,n.kt)("inlineCode",{parentName:"a"},"e11f44d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logos): convert logo names to lowercase ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/07b822864490b4cc63bef94f3306466ba5933e16"},(0,n.kt)("inlineCode",{parentName:"a"},"07b8228"))),(0,n.kt)("li",{parentName:"ul"},"change(item): use default logic of setting align class on content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6b5b47c10ce5a6d3710bedd492aa3d362d62d225"},(0,n.kt)("inlineCode",{parentName:"a"},"6b5b47c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logo): update logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/170efe5bfc7fd4988f4a4d4aac18ace32c360cd6"},(0,n.kt)("inlineCode",{parentName:"a"},"170efe5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logos): convert storybook logo names to lowercase ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4b24ec8796f8fffd87158a55f4ac19624ebe04c"},(0,n.kt)("inlineCode",{parentName:"a"},"c4b24ec"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logo): add eea roboto font logo variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/de1224a97568c0b48b509c65170a6080d8a058d4"},(0,n.kt)("inlineCode",{parentName:"a"},"de1224a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logo): add container and segment to logo story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/61eff16fcd080194fe1187656d67ef73a7dd4d6c"},(0,n.kt)("inlineCode",{parentName:"a"},"61eff16"))),(0,n.kt)("li",{parentName:"ul"},"change(item): removed requirement for aligned classes to be on content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/30c0d5d2de7ac05172cfb726b60a8bd763de7b31"},(0,n.kt)("inlineCode",{parentName:"a"},"30c0d5d"))),(0,n.kt)("li",{parentName:"ul"},"change(logos): cleanup eea logo reference to only eea-logo and eea-logo-white.svg ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2796e054a21a9025036c8b2882afe23a6984cd37"},(0,n.kt)("inlineCode",{parentName:"a"},"2796e05")))),(0,n.kt)("h4",{id:"-internal-changes-7"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(npmignore): Reduce npmjs package size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/164c8a5ad0f7241eb8e30c53eccfdff9cec1fb93"},(0,n.kt)("inlineCode",{parentName:"a"},"164c8a5"))),(0,n.kt)("li",{parentName:"ul"},"chore(npmignore): Reduce npmjs package size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ade9d5ba3411efc47cdd3b461fd60b2b7389f9be"},(0,n.kt)("inlineCode",{parentName:"a"},"ade9d5b"))),(0,n.kt)("li",{parentName:"ul"},"chore(docs): renamed logo mdx to md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/52e9d46bb2decabdc935eeee84dacc3e063e3616"},(0,n.kt)("inlineCode",{parentName:"a"},"52e9d46")))),(0,n.kt)("h4",{id:"-documentation-changes-6"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(logos): svgs without classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/28a58336ac57deb3eec7287b6fbf5cd58ada8a7e"},(0,n.kt)("inlineCode",{parentName:"a"},"28a5833"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): add dark mode logos ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ccc1609643cff5f851942ab95198d44252ddb22e"},(0,n.kt)("inlineCode",{parentName:"a"},"ccc1609"))),(0,n.kt)("li",{parentName:"ul"},"docs(logo): update eea logos and add logo wrapper ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91cdd6636dfb102e4712177ad5fa7e952eb6ea45"},(0,n.kt)("inlineCode",{parentName:"a"},"91cdd66"))),(0,n.kt)("li",{parentName:"ul"},"docs(logo): update logos on docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/760e1012892ab28b25e8d9b0de50cfa0ba07addf"},(0,n.kt)("inlineCode",{parentName:"a"},"760e101"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): updated svgs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dc224e1dbcf46a29b0639afde694d44221affe27"},(0,n.kt)("inlineCode",{parentName:"a"},"dc224e1"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): add thematic logos ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5a21a3076e506e6bd7f82fa97697f81825e87255"},(0,n.kt)("inlineCode",{parentName:"a"},"5a21a30"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): add zipped svgs for download ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5855bf83b471a9849ee71370d7eee4f6a1d12a44"},(0,n.kt)("inlineCode",{parentName:"a"},"5855bf8"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): wisef logo update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f90b59d03c1c4eaa760dd981e082f237c09e96f"},(0,n.kt)("inlineCode",{parentName:"a"},"8f90b59"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): move to static, add download ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8c1fd5f9a64bd8fb976687fe5ed96bc515b95393"},(0,n.kt)("inlineCode",{parentName:"a"},"8c1fd5f"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): improve eea logo visibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/82188abb99aa080d7bea15975497e03c653d311c"},(0,n.kt)("inlineCode",{parentName:"a"},"82188ab"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): change eea logo to svg ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f57b846ca9d635f5af4d1adeee280a5adcaf7b5f"},(0,n.kt)("inlineCode",{parentName:"a"},"f57b846")))),(0,n.kt)("h4",{id:"\ufe0f-others-18"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"logo update or docusaurus thematic logo listing #274 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dde90beb68ac129e476ece22e7ced4640786f094"},(0,n.kt)("inlineCode",{parentName:"a"},"dde90be"))),(0,n.kt)("li",{parentName:"ul"},"(feat): Add ability to disable the language select from website top menu - refs #158616 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/411c8e4afaf0b2b9edfdeeecdca22aa4cc41f329"},(0,n.kt)("inlineCode",{parentName:"a"},"411c8e4"))),(0,n.kt)("li",{parentName:"ul"},"Proof reading page header section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/230239e1b22734fb8606656985bc5e513731e244"},(0,n.kt)("inlineCode",{parentName:"a"},"230239e"))),(0,n.kt)("li",{parentName:"ul"},"bump package version ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4628bed134abc76e38a243d4e98143e19cef989"},(0,n.kt)("inlineCode",{parentName:"a"},"b4628be"))),(0,n.kt)("li",{parentName:"ul"},"feature(docusaurus, storybook): logos selection for sites plus inverted options #253 from eea/doc-logo-page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dbfc90d035dc40e9d4054347f00fde4de486d63d"},(0,n.kt)("inlineCode",{parentName:"a"},"dbfc90d"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using advisory-board-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4769e987d525f5dcafac8e6cf8a89fd8111667d"},(0,n.kt)("inlineCode",{parentName:"a"},"c4769e9"))),(0,n.kt)("li",{parentName:"ul"},"test(Jenkins): Run tests and cypress with latest canary @plone/volto ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/92feea09796c9ef0530f65fa1d34139905133215"},(0,n.kt)("inlineCode",{parentName:"a"},"92feea0")))),(0,n.kt)("h3",{id:"100-alpha7---2022-12-16"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.6...1.0.0-alpha.7"},"1.0.0-alpha.7")," - 2022-12-16"),(0,n.kt)("h4",{id:"-new-features-13"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(item): normalized size for image or icon items #258 from eea/refactor-items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/945170f1503be68aa3fc1bd950a97eeebfd81037"},(0,n.kt)("inlineCode",{parentName:"a"},"945170f")))),(0,n.kt)("h4",{id:"-bug-fixes-14"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(card): rounded after removal of has--rounded--true style class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4727afdecf3d25e3e5bc98d472b976d60154183"},(0,n.kt)("inlineCode",{parentName:"a"},"d4727af"))),(0,n.kt)("li",{parentName:"ul"},"fix(item): removed margin set for description which pushed the text from icon ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d9d40310fcfb1bd214bd901b79dcbac41e9a8518"},(0,n.kt)("inlineCode",{parentName:"a"},"d9d4031"))),(0,n.kt)("li",{parentName:"ul"},"fix(project): Proper paths if volto-eea-design-system package is not installed, but in development #270 from eea/correct_paths ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0f8ee8d770f1b26d4315be8f615d58a61acbafc8"},(0,n.kt)("inlineCode",{parentName:"a"},"0f8ee8d")))),(0,n.kt)("h4",{id:"-enhancements-19"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(item): update icon variations and paddings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6a407b3e7f743eb7b73247bcc5d489685d567bc6"},(0,n.kt)("inlineCode",{parentName:"a"},"6a407b3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): update spacing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2fd91c4aa1a76dd2f7099d3f24f94067e95e06a1"},(0,n.kt)("inlineCode",{parentName:"a"},"2fd91c4"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): initial values for new sizes & add description class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3546296f0cacb96411c8c67b98e9763e2b843b05"},(0,n.kt)("inlineCode",{parentName:"a"},"3546296"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): add icon and more size options ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1120bb62d9ab908c5c97a4871a66e3c08c5c7ece"},(0,n.kt)("inlineCode",{parentName:"a"},"1120bb6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): update image and icon sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8025735121aaa0024a5783afbde0f6be3715618"},(0,n.kt)("inlineCode",{parentName:"a"},"b802573"))),(0,n.kt)("li",{parentName:"ul"},"change(item): set same height as width on item images ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/69cbd23ca53dd68ae9f7c00a69ed2d8820746305"},(0,n.kt)("inlineCode",{parentName:"a"},"69cbd23"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): update item part 2 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9812ae2e41ac86cfd4c56e13af8af570b752966f"},(0,n.kt)("inlineCode",{parentName:"a"},"9812ae2"))),(0,n.kt)("li",{parentName:"ul"},"change(item): rename large to big class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24ff1275b9a0556b85ab86757bc0c84f50357e7d"},(0,n.kt)("inlineCode",{parentName:"a"},"24ff127"))),(0,n.kt)("li",{parentName:"ul"},"change(item): added tiny size that outputs 24px icon sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ea96363a957f9033cb5bfe2d7fd311e92377493"},(0,n.kt)("inlineCode",{parentName:"a"},"2ea9636"))),(0,n.kt)("li",{parentName:"ul"},"change(image): added preview image size default to 400px ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a0aa867e932d1b3c0bf449553726d6feb645853e"},(0,n.kt)("inlineCode",{parentName:"a"},"a0aa867"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): update operator for condition controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/149ccb2f1e498c27e5550214cdee25eb808ab27e"},(0,n.kt)("inlineCode",{parentName:"a"},"149ccb2")))),(0,n.kt)("h4",{id:"\ufe0f-others-19"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Proper paths if the package is not installed, but in development ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7a2655f7cf9d3c687f172eefcf2b4cff4b12f832"},(0,n.kt)("inlineCode",{parentName:"a"},"7a2655f"))),(0,n.kt)("li",{parentName:"ul"},"Update .project.eslintrc.js ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a2fd3f23473325976c2b146e066eeb538d140dce"},(0,n.kt)("inlineCode",{parentName:"a"},"a2fd3f2"))),(0,n.kt)("li",{parentName:"ul"},"added back descriptionDistance variable until package release ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3af811a8d86a132e16de118697ba5a4302a8a4da"},(0,n.kt)("inlineCode",{parentName:"a"},"3af811a"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-alpha.7 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e66bcc296b389bc55073e7f99681534977dce3a"},(0,n.kt)("inlineCode",{parentName:"a"},"7e66bcc"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using cca-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce47e9b163bcb4eda988e3a87718b54ffbd3f99f"},(0,n.kt)("inlineCode",{parentName:"a"},"ce47e9b"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb531c933c907bdbb88c9de0f1df2eb7ce899a4c"},(0,n.kt)("inlineCode",{parentName:"a"},"cb531c9")))),(0,n.kt)("h3",{id:"100-alpha6---2022-12-07"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.5...1.0.0-alpha.6"},"1.0.0-alpha.6")," - 2022-12-07"),(0,n.kt)("h4",{id:"-new-features-14"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(copyright): create copyright component and import it in banner ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8fcde9df2915585e2336024436cef76642820d75"},(0,n.kt)("inlineCode",{parentName:"a"},"8fcde9d"))),(0,n.kt)("li",{parentName:"ul"},"feat(Header): add hideSearch prop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/13ddfe59a6bd7fe2050b70ac4524a6f6c5c169ea"},(0,n.kt)("inlineCode",{parentName:"a"},"13ddfe5"))),(0,n.kt)("li",{parentName:"ul"},"feat(Docusaurus): Image copyright information #257 from eea/image-copyright-info ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/21195153240da052acb7171f7904449ed7854cb3"},(0,n.kt)("inlineCode",{parentName:"a"},"2119515")))),(0,n.kt)("h4",{id:"-bug-fixes-15"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(tags): content gap when using tags-content wrapper ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4eb9b89d4ea09f936b7fcdc22a84105fd8639af"},(0,n.kt)("inlineCode",{parentName:"a"},"c4eb9b8")))),(0,n.kt)("h4",{id:"-enhancements-20"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(hero): add copyright component to hero ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0fa88fad3e7b48789dc6d0462b9f78dd359b8949"},(0,n.kt)("inlineCode",{parentName:"a"},"0fa88fa"))),(0,n.kt)("li",{parentName:"ul"},"change(copyright): implementation to add classes on content sections ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e10bde674f2b1f722ec6c70734e4a72c018f4afe"},(0,n.kt)("inlineCode",{parentName:"a"},"e10bde6"))),(0,n.kt)("li",{parentName:"ul"},"change(copyright): removed color variant ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/747b8a27155569247d4975837587e3320327fce9"},(0,n.kt)("inlineCode",{parentName:"a"},"747b8a2"))),(0,n.kt)("li",{parentName:"ul"},"change(copyright): removed copyrightVariant from Banner and Hero stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac62e079d4eafb818f9cae25880a04d9e069d107"},(0,n.kt)("inlineCode",{parentName:"a"},"ac62e07"))),(0,n.kt)("li",{parentName:"ul"},"change(tagList): modified implementation to align to volto-tags-block ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7a57a3d4bf7ede4b5ab5f3ef045d664aaaf67f2c"},(0,n.kt)("inlineCode",{parentName:"a"},"7a57a3d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(copyright): remove data section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/52cb09dc363bb0a2e363ec86dcefb4c57e07a14d"},(0,n.kt)("inlineCode",{parentName:"a"},"52cb09d"))),(0,n.kt)("li",{parentName:"ul"},"change(copyright): line height to match page header implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a56254e7588cfc6aca999f550084d79dca6e9a6c"},(0,n.kt)("inlineCode",{parentName:"a"},"a56254e"))),(0,n.kt)("li",{parentName:"ul"},"change(copyright): now uses text color css variable with fallback to white ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee7268ba359f079dfce45fd0fe91f75ae5c37e94"},(0,n.kt)("inlineCode",{parentName:"a"},"ee7268b")))),(0,n.kt)("h4",{id:"-documentation-changes-7"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(copyright): copyright documentation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a90ed766e60b5eb5b027beb36d2b1967d2c41fa3"},(0,n.kt)("inlineCode",{parentName:"a"},"a90ed76")))),(0,n.kt)("h4",{id:"\ufe0f-others-20"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Update usage_markdown.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f76d4a242f795451d64ef2d192d0006a0ed5eac1"},(0,n.kt)("inlineCode",{parentName:"a"},"f76d4a2"))),(0,n.kt)("li",{parentName:"ul"},"grammar fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb2a5a5fd9dfc01eccc179721b06988742f5b2e2"},(0,n.kt)("inlineCode",{parentName:"a"},"cb2a5a5"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-alpha.6 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6ca32f03c1860781d3c1c4ff9558713ad8acac95"},(0,n.kt)("inlineCode",{parentName:"a"},"6ca32f0"))),(0,n.kt)("li",{parentName:"ul"},"feature(copyright): image information #250 from eea/feature-copyright ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a8618c7f0230a19b6c973aa2c9646463de9eeffb"},(0,n.kt)("inlineCode",{parentName:"a"},"a8618c7"))),(0,n.kt)("li",{parentName:"ul"},"lint fix by introducing local variable tagsGap ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7b6c0ae2ebfed06221700faf9a0d0c2bdeb60d99"},(0,n.kt)("inlineCode",{parentName:"a"},"7b6c0ae"))),(0,n.kt)("li",{parentName:"ul"},"Update 3-images.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1b0ef033f9c8a36aaa739f268263f24a6d0fb473"},(0,n.kt)("inlineCode",{parentName:"a"},"1b0ef03")))),(0,n.kt)("h3",{id:"100-alpha5---2022-11-29"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.4...1.0.0-alpha.5"},"1.0.0-alpha.5")," - 2022-11-29"),(0,n.kt)("h4",{id:"-new-features-15"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(Iconography): import and showcase remix icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/777112f7e77ce8c74c3fd4384bff6ec9694aba04"},(0,n.kt)("inlineCode",{parentName:"a"},"777112f")))),(0,n.kt)("h4",{id:"-bug-fixes-16"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(docusaurus): right bar overflow fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/197c763624f70556c62379bc0751763725d0fed3"},(0,n.kt)("inlineCode",{parentName:"a"},"197c763"))),(0,n.kt)("li",{parentName:"ul"},"fix(lists): bullet position by using padding instead of margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0ecae2e7fe61b98d8795f876a525fbbc873bf799"},(0,n.kt)("inlineCode",{parentName:"a"},"0ecae2e"))),(0,n.kt)("li",{parentName:"ul"},"fix(label): color for yellow variant as white isn't accessible on yellow color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91d8880a829d2728c49a1953f6d2d8c2c812990c"},(0,n.kt)("inlineCode",{parentName:"a"},"91d8880"))),(0,n.kt)("li",{parentName:"ul"},"fix(contentBox): avoid text decoration for header-link added on cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ccb592db6f465cec59124b94fb6918b513bb761"},(0,n.kt)("inlineCode",{parentName:"a"},"3ccb592"))),(0,n.kt)("li",{parentName:"ul"},"fix(label): margin value for ribbon image left and right margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f8e1129734709d6034539a6522105af9d43fef20"},(0,n.kt)("inlineCode",{parentName:"a"},"f8e1129")))),(0,n.kt)("h4",{id:"-enhancements-21"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): eea color palette in separate file ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6c855df9c2238f8d21860ade4578aa969b68448e"},(0,n.kt)("inlineCode",{parentName:"a"},"6c855df"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): classes for color boxes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/80219d52bc63842d8e6382dbbe7d43cdc8a29b9c"},(0,n.kt)("inlineCode",{parentName:"a"},"80219d5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): move supplementary, state and link colors to partials ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2776be32615d7a6bdd8561a523fb9cfb1a85e38b"},(0,n.kt)("inlineCode",{parentName:"a"},"2776be3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): fix side menu / moved more content in palette partial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f5b70775471369ca8f3193784b9bc66caa8fb76f"},(0,n.kt)("inlineCode",{parentName:"a"},"f5b7077"))),(0,n.kt)("li",{parentName:"ul"},"change(tag): set gap on tags element for margin between tag elements ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/726bc6da821a366a5afa03659e614cc73ed02c0b"},(0,n.kt)("inlineCode",{parentName:"a"},"726bc6d")))),(0,n.kt)("h4",{id:"-internal-changes-8"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(colours): fix wrong class name ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51ad0a8232f7f35cae05f5861d7822db852b3f8d"},(0,n.kt)("inlineCode",{parentName:"a"},"51ad0a8")))),(0,n.kt)("h4",{id:"-documentation-changes-8"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): Iconography updates, thematic platforms ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2a0e596bd002290e0759d8c5e568da4d318f7d59"},(0,n.kt)("inlineCode",{parentName:"a"},"2a0e596"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): thematic pages integration ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea7a4220a93d3fd2f437b51462f7f19d99f52595"},(0,n.kt)("inlineCode",{parentName:"a"},"ea7a422"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): color updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cc13b5499a9ae13bb45925a057f8ff4d6a2e4643"},(0,n.kt)("inlineCode",{parentName:"a"},"cc13b54"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): fix swatches accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/306cb74d3e06390a9c15da9b8b29c9d3c8f0f6c5"},(0,n.kt)("inlineCode",{parentName:"a"},"306cb74"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): typography and colors fixes according to comments on PR ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ae20a7258cc88465fa0937895c2999952736f456"},(0,n.kt)("inlineCode",{parentName:"a"},"ae20a72"))),(0,n.kt)("li",{parentName:"ul"},"docs(colours): adjust logos heights ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/854d4fb761be7307e83e5dd2eb0fe5a0117727c5"},(0,n.kt)("inlineCode",{parentName:"a"},"854d4fb"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): merge designer and dev units ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/65c240eddbf20b3fc870d301b96837f49ad9caca"},(0,n.kt)("inlineCode",{parentName:"a"},"65c240e"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): readded extra font sizes, fixed fluid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4a5d892538a9713d14ac718b1bf2c771be09810"},(0,n.kt)("inlineCode",{parentName:"a"},"a4a5d89"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): changed em to percentages ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4176007ff4b421bc988b618488e0ba6b550f9fe"},(0,n.kt)("inlineCode",{parentName:"a"},"d417600"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): minors updates and instructions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/84ac8828e430b4af2b461534b4e2f81189080145"},(0,n.kt)("inlineCode",{parentName:"a"},"84ac882"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): blue-grey-6 adjustment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e7ab2d15d3a617bc5b3713897f3e3521d9e2720a"},(0,n.kt)("inlineCode",{parentName:"a"},"e7ab2d1"))),(0,n.kt)("li",{parentName:"ul"},"docs(colours): added active colour ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/574f7a95ea8a9510d03a104ad72fafafcae5d738"},(0,n.kt)("inlineCode",{parentName:"a"},"574f7a9"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): switch FISE logo to png ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/335471fd95bbd78cd7bd80b960272baa0a32e1c5"},(0,n.kt)("inlineCode",{parentName:"a"},"335471f"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): updated visited ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0248fd164cbf85168945797244977c305c67608d"},(0,n.kt)("inlineCode",{parentName:"a"},"0248fd1"))),(0,n.kt)("li",{parentName:"ul"},"docs(FISE): replaced logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f7d833127f769d79f099618b98789c6929b4ba08"},(0,n.kt)("inlineCode",{parentName:"a"},"f7d8331")))),(0,n.kt)("h4",{id:"\ufe0f-others-21"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"perf(docusaurus): added remixicon and roboto locally ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b67b1a72bc9cdc7c62a25967e81b430f8b62d558"},(0,n.kt)("inlineCode",{parentName:"a"},"b67b1a7"))),(0,n.kt)("li",{parentName:"ul"},"feature(Docusaurus): Updates on color palette information including thematic websites #231 from eea/refactor-docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ec7843dea07f626dc1c71ae1baa8bb5b0caa52f3"},(0,n.kt)("inlineCode",{parentName:"a"},"ec7843d"))),(0,n.kt)("li",{parentName:"ul"},"Upgrade Jenkinsfile storybook to yarn 3 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d20de8d6e21a14660b7b5125a80218a8a6f19e62"},(0,n.kt)("inlineCode",{parentName:"a"},"d20de8d"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/563fbc5fac0d4b0295690d0a3a4e04271753f18a"},(0,n.kt)("inlineCode",{parentName:"a"},"563fbc5")))),(0,n.kt)("h3",{id:"100-alpha4---2022-11-22"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.3...1.0.0-alpha.4"},"1.0.0-alpha.4")," - 2022-11-22"),(0,n.kt)("h4",{id:"-bug-fixes-17"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(cards-storybook): load slick carousel css for arrow and pagination styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1159b1beea0d7f7e026f1f1181fea91b7ac38ffa"},(0,n.kt)("inlineCode",{parentName:"a"},"1159b1b")))),(0,n.kt)("h4",{id:"-enhancements-22"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(cards): refactor cards theming implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4e454238d540ef306f4c1a4f8e9a94c7aa10189"},(0,n.kt)("inlineCode",{parentName:"a"},"d4e4542"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): allow rounded, inverted and theme parameter to be set by has classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4b4ad893fc5d39629b4e8d874327f31ea2e7d885"},(0,n.kt)("inlineCode",{parentName:"a"},"4b4ad89"))),(0,n.kt)("li",{parentName:"ul"},"change(card): expect has classes on the card directly ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6a9e38bcae0656685a99b47800d556813663d2ee"},(0,n.kt)("inlineCode",{parentName:"a"},"6a9e38b"))),(0,n.kt)("li",{parentName:"ul"},"change(utilities): added has text classes to the text alignment utilities ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e6974c634551fe0d19a9c9da269f5c6fbaefab7a"},(0,n.kt)("inlineCode",{parentName:"a"},"e6974c6"))),(0,n.kt)("li",{parentName:"ul"},"change(utilities): modified class name for text align using has naming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/579a0cbe0f704eb9305119fdd162f4f29c8086d5"},(0,n.kt)("inlineCode",{parentName:"a"},"579a0cb"))),(0,n.kt)("li",{parentName:"ul"},"change(theme): ensure that only direct children of container have a default top and bottom margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7f8b8dcc72827004d366e1c531311cf8734053fc"},(0,n.kt)("inlineCode",{parentName:"a"},"7f8b8dc"))),(0,n.kt)("li",{parentName:"ul"},"change(build): upgrade action to trigger workflow and wait to latest version ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c63ad3fdae7972bb2c722dea3d046861fa0ac086"},(0,n.kt)("inlineCode",{parentName:"a"},"c63ad3f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): theming implementation to allow has theming classes #265 from eea/card-refactoring ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24edc99d85c0c619fc763a8774a96f7208f529a5"},(0,n.kt)("inlineCode",{parentName:"a"},"24edc99"))),(0,n.kt)("li",{parentName:"ul"},"change(theme): add slick-carousel dependency ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2eec7d7233adf86b9c4f61670eb87d9754ff94c"},(0,n.kt)("inlineCode",{parentName:"a"},"f2eec7d")))),(0,n.kt)("h4",{id:"\ufe0f-others-22"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Update eea.github.io on all commits in develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3d0b8d745138bd2e0219560c8c895ce2c56dbf04"},(0,n.kt)("inlineCode",{parentName:"a"},"3d0b8d7"))),(0,n.kt)("li",{parentName:"ul"},"Exclude mockups from npm package ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/634af8e3ddabec36a18597d8d7638888269875fc"},(0,n.kt)("inlineCode",{parentName:"a"},"634af8e"))),(0,n.kt)("li",{parentName:"ul"},"fix rounded selector ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1fa15442f03d3f3d9ef59afa14075b061483cf3a"},(0,n.kt)("inlineCode",{parentName:"a"},"1fa1544"))),(0,n.kt)("li",{parentName:"ul"},"Trigger re-build ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3566dd2b4d2cd12496e05b792c85a78de550dd50"},(0,n.kt)("inlineCode",{parentName:"a"},"3566dd2"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea47f6f10097f23f635d98f0c5483bebf8378fc4"},(0,n.kt)("inlineCode",{parentName:"a"},"ea47f6f")))),(0,n.kt)("h3",{id:"100-alpha3---2022-11-16"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.2...1.0.0-alpha.3"},"1.0.0-alpha.3")," - 2022-11-16"),(0,n.kt)("h4",{id:"-new-features-16"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(Header): Add subsite section styling #263 from eea/subsite ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/00398b8a6c5d83241c30d0ba85d95c115edf2480"},(0,n.kt)("inlineCode",{parentName:"a"},"00398b8")))),(0,n.kt)("h4",{id:"-bug-fixes-18"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(search): position now changed by default to absolute from relative ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51b08fc217e25c1391a2bac0b42a8c3f7ae091c7"},(0,n.kt)("inlineCode",{parentName:"a"},"51b08fc"))),(0,n.kt)("li",{parentName:"ul"},"fix(megaMenu): remove paddings for buttons added by active class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ec33ebfe23a6064c88383ab465bd45edee2dba9b"},(0,n.kt)("inlineCode",{parentName:"a"},"ec33ebf")))),(0,n.kt)("h4",{id:"-enhancements-23"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(components): load overrides files for our defined semantic files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/adde7a9519f38fa779d8d038f3b6817281f0b4a2"},(0,n.kt)("inlineCode",{parentName:"a"},"adde7a9"))),(0,n.kt)("li",{parentName:"ul"},"change(container): fullwidth now take into account devices without hover ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5a35a65ce4928972027325bd01265db3f046f0e8"},(0,n.kt)("inlineCode",{parentName:"a"},"5a35a65"))),(0,n.kt)("li",{parentName:"ul"},"change(container): ensure only the top level elements behave like containers ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/98b85d1fb285919a8851454fa3007131b2a0ffc3"},(0,n.kt)("inlineCode",{parentName:"a"},"98b85d1"))),(0,n.kt)("li",{parentName:"ul"},"change(container): modified column-block grid to remove margin and padding when using full width class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/35c1cee7b3b35e7c361562ab7a430240f0117cc3"},(0,n.kt)("inlineCode",{parentName:"a"},"35c1cee"))),(0,n.kt)("li",{parentName:"ul"},"change(mega-menu): hide home link and accordion content from mobile menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1a691729b6d61c0daf46c5de035c1c55b0fda0d9"},(0,n.kt)("inlineCode",{parentName:"a"},"1a69172"))),(0,n.kt)("li",{parentName:"ul"},"change(container): width from min width 1280px to 1365px max width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/66e551e532da2cc5e9716e5179f943f172663be4"},(0,n.kt)("inlineCode",{parentName:"a"},"66e551e"))),(0,n.kt)("li",{parentName:"ul"},"change(container): removed app extras and view setting of layout sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6dc1ee602634df85140f6db75e41293b72eacf1"},(0,n.kt)("inlineCode",{parentName:"a"},"f6dc1ee"))),(0,n.kt)("li",{parentName:"ul"},"change(views): customized DefaultView to pass class into page-document area ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91123aad429f4bb086110b4997e43e9809a97581"},(0,n.kt)("inlineCode",{parentName:"a"},"91123aa"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): desktop - use buttons for menu section titles and readjust content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb9315f2b999193b7b64cec27c49fc8dda306899"},(0,n.kt)("inlineCode",{parentName:"a"},"cb9315f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): add nav_title and nav_description attributes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0d7a5686daab2ecec87d78728437d8f994606448"},(0,n.kt)("inlineCode",{parentName:"a"},"0d7a568"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): style sub-title and nav-description ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b2a48fd3588ffdc75f61f0b8d52284d13edf2d92"},(0,n.kt)("inlineCode",{parentName:"a"},"b2a48fd"))),(0,n.kt)("li",{parentName:"ul"},"refactor(sidemenu): add third level list and items & update active indication ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2d87da9fddca2b867f3d065a007c0b921587a61"},(0,n.kt)("inlineCode",{parentName:"a"},"e2d87da"))),(0,n.kt)("li",{parentName:"ul"},"change(columns): implement narrow, container and wide width classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9696b5457e50ba3186406a584da16f5248c14439"},(0,n.kt)("inlineCode",{parentName:"a"},"9696b54"))),(0,n.kt)("li",{parentName:"ul"},"change(container): story to add classes that modify the max width of the containers ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/37948f89ee797738bd8bbb0023bc5dca018d7331"},(0,n.kt)("inlineCode",{parentName:"a"},"37948f8"))),(0,n.kt)("li",{parentName:"ul"},"change(container): affect only left and right margin of containers ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/183265b7dd8d20359b6c3956ea05b62df6e70f75"},(0,n.kt)("inlineCode",{parentName:"a"},"183265b"))),(0,n.kt)("li",{parentName:"ul"},"change(containers): modified class names after layout checks ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1dc3689509001031f0afd30422f517de5316e47a"},(0,n.kt)("inlineCode",{parentName:"a"},"1dc3689"))),(0,n.kt)("li",{parentName:"ul"},"refactor(sidemenu): add is_in_path and is_current attributes for an active example ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a3fe7fd8da93db0a065d4408ce154c9d8c26b568"},(0,n.kt)("inlineCode",{parentName:"a"},"a3fe7fd"))),(0,n.kt)("li",{parentName:"ul"},"change(container): story to avoid adding containerwidth property to container div ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c13d83cdbc8741bf4075cdfcd884f39f3f71d73c"},(0,n.kt)("inlineCode",{parentName:"a"},"c13d83c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): mobile - use buttons for menu section titles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7b632fd29a8ac815d2e590509baa51f1279e659"},(0,n.kt)("inlineCode",{parentName:"a"},"a7b632f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): update padding variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5f25838ba9ec367a58c98c929921ebf09cd8ad8"},(0,n.kt)("inlineCode",{parentName:"a"},"c5f2583"))),(0,n.kt)("li",{parentName:"ul"},"change(views): moved narrow style bellow the default container width styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/72fa58dce9ea03a1e4f409a9f9aab21b01efbfc8"},(0,n.kt)("inlineCode",{parentName:"a"},"72fa58d"))),(0,n.kt)("li",{parentName:"ul"},"change(listing): removed container from default view page-document area ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/69f3d8f422e3cb95e89937929aaef48b5569bcdf"},(0,n.kt)("inlineCode",{parentName:"a"},"69f3d8f"))),(0,n.kt)("li",{parentName:"ul"},"change(views): rename classes names to width_view and added app extras layout component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/745b7720839754d1e248795cb1263f8c02f5f3c2"},(0,n.kt)("inlineCode",{parentName:"a"},"745b772"))),(0,n.kt)("li",{parentName:"ul"},"change(container): use important flag for left and right margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a49c83abe9a045d28118a680558de5416a0516a3"},(0,n.kt)("inlineCode",{parentName:"a"},"a49c83a"))),(0,n.kt)("li",{parentName:"ul"},"change(container): add variables for edit and add section of containers ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2e2c335dc82c120d15d4c536c400ae742f68fe7"},(0,n.kt)("inlineCode",{parentName:"a"},"f2e2c33"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): update sub-title paddings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/992f919bb5155c8e6fc169e43adf00dcae41f400"},(0,n.kt)("inlineCode",{parentName:"a"},"992f919"))),(0,n.kt)("li",{parentName:"ul"},"change(site): add a 1rem margin top and bottom on all styled classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dabf6c1162fe23cef61a2053eefd7e687f649a56"},(0,n.kt)("inlineCode",{parentName:"a"},"dabf6c1"))),(0,n.kt)("li",{parentName:"ul"},"change(homepage): removed hiding of staging banner from homepage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ba2cd7fc17cdf1bf58381aa58e05acad0ac77ba"},(0,n.kt)("inlineCode",{parentName:"a"},"4ba2cd7"))),(0,n.kt)("li",{parentName:"ul"},"change(container): unset values of page-document on 1200+ browser width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dd5bea37d414e2a8689eaf6cc99c7b3a3d4b0e08"},(0,n.kt)("inlineCode",{parentName:"a"},"dd5bea3"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): set children to be appended to the right of the menu title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b69c23a20ef2ded1f0382650ff8e85d1bead6941"},(0,n.kt)("inlineCode",{parentName:"a"},"b69c23a"))),(0,n.kt)("li",{parentName:"ul"},"change(theme): modified wide width to point to 1320px as it's perfectly divisible by 4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f825737d6dafd595024bb4537eab624a47a9ad0"},(0,n.kt)("inlineCode",{parentName:"a"},"8f82573"))),(0,n.kt)("li",{parentName:"ul"},"change(theme): modified wide width to point to 1368px as it's perfectly divisible by 4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2349fee36ee72783665a0b101d684389f1fdf834"},(0,n.kt)("inlineCode",{parentName:"a"},"2349fee"))),(0,n.kt)("li",{parentName:"ul"},"change(container): renamed content-text-width to container-text-width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6f788c282348292dd4b5deb47ffe83ca4573e5c8"},(0,n.kt)("inlineCode",{parentName:"a"},"6f788c2"))),(0,n.kt)("li",{parentName:"ul"},"change(listing): provide ui container fallback if no class is passed to default view ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af9e94ded1e301f4c811749badbcc1f59e6d0de5"},(0,n.kt)("inlineCode",{parentName:"a"},"af9e94d"))),(0,n.kt)("li",{parentName:"ul"},"change(narrow-view): re-added container class to page-document ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/56b44a6e09d45f96c106dc471bb2e1cde58ef10f"},(0,n.kt)("inlineCode",{parentName:"a"},"56b44a6"))),(0,n.kt)("li",{parentName:"ul"},"change(view): set container width for view-viewview class as well ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/29dc324319d6dc2450dd0e906c1b4c93fd65ed56"},(0,n.kt)("inlineCode",{parentName:"a"},"29dc324")))),(0,n.kt)("h4",{id:"-internal-changes-9"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style: load header/footer overrides ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e5b5e0fc00c61d81f45c12f119bd2f06a91b1b5c"},(0,n.kt)("inlineCode",{parentName:"a"},"e5b5e0f"))),(0,n.kt)("li",{parentName:"ul"},"style(megaMenu): restore item description color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8a19bbb4866cdeb31d87b782587c499e621055b7"},(0,n.kt)("inlineCode",{parentName:"a"},"8a19bbb"))),(0,n.kt)("li",{parentName:"ul"},"style(megaMenu): restore accordion content bottom padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8e0c5a79f06247d353511b412b0122c6f614f5ec"},(0,n.kt)("inlineCode",{parentName:"a"},"8e0c5a7")))),(0,n.kt)("h4",{id:"\ufe0f-others-23"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Add subsite styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e79c0ed7931d6287dbeb3bab1e9155b8707481a3"},(0,n.kt)("inlineCode",{parentName:"a"},"e79c0ed"))),(0,n.kt)("li",{parentName:"ul"},"WIP settings column grid width when using full size class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/affc7ac99527aa92d5a192d90dc8c9ec46a66404"},(0,n.kt)("inlineCode",{parentName:"a"},"affc7ac"))),(0,n.kt)("li",{parentName:"ul"},"code cleanup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2cdc3e590b6d36865f16890c45ce56d32963e1d0"},(0,n.kt)("inlineCode",{parentName:"a"},"2cdc3e5"))),(0,n.kt)("li",{parentName:"ul"},"fix eslint ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/30c52e4eb443555ca44c1b35df064e73d52c0a8b"},(0,n.kt)("inlineCode",{parentName:"a"},"30c52e4"))),(0,n.kt)("li",{parentName:"ul"},"test(estlint): Fix .project.eslintrc.js ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aaeaa07b27491551daba29bbfdd7cab4a54b6bec"},(0,n.kt)("inlineCode",{parentName:"a"},"aaeaa07"))),(0,n.kt)("li",{parentName:"ul"},"modified left value of full width classes with toolbars ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70d82d47fbc2c00a3a709de0d5c087c8443a1eae"},(0,n.kt)("inlineCode",{parentName:"a"},"70d82d4"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-alpha.3 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8fc86a7d0bf4ad06ab339b3066ff56ea61d48878"},(0,n.kt)("inlineCode",{parentName:"a"},"8fc86a7"))),(0,n.kt)("li",{parentName:"ul"},"feature(content): added NarrowView useful for modifying the containers from content-area ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d937df7c262e8d8cc6e78eebec736e28263fc657"},(0,n.kt)("inlineCode",{parentName:"a"},"d937df7"))),(0,n.kt)("li",{parentName:"ul"},"jslint fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/98461593605344d0b6d8cba81f91d1cafc2653cd"},(0,n.kt)("inlineCode",{parentName:"a"},"9846159"))),(0,n.kt)("li",{parentName:"ul"},"Feature(container): flexible container size #260 from eea/feature-flexible-container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f84c5b67afe9cbe01b2a44a8f92a9a554e1036a"},(0,n.kt)("inlineCode",{parentName:"a"},"8f84c5b"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using circularity-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/76a41c786995fd54afe4d1c345de939f683ffa70"},(0,n.kt)("inlineCode",{parentName:"a"},"76a41c7"))),(0,n.kt)("li",{parentName:"ul"},"fix broken variable call for contentBox.variables introduced in previous commit by mistake ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d249c1160d19bedb174a2fde3fdab48d9ce297d4"},(0,n.kt)("inlineCode",{parentName:"a"},"d249c11"))),(0,n.kt)("li",{parentName:"ul"},"clean up ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/89f3cb33d70a14806a953f0acd1807e94169ee5c"},(0,n.kt)("inlineCode",{parentName:"a"},"89f3cb3"))),(0,n.kt)("li",{parentName:"ul"},"removed console log from code ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fad86ae581dd81d0c29fc03d8528e57cadadd3fb"},(0,n.kt)("inlineCode",{parentName:"a"},"fad86ae")))),(0,n.kt)("h3",{id:"100-alpha2---2022-10-28"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.1...1.0.0-alpha.2"},"1.0.0-alpha.2")," - 2022-10-28"),(0,n.kt)("h4",{id:"-enhancements-24"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(documentation): grammarly proof-read suggestions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f609be3758673b0d479d99baee69e7238a5b7f9"},(0,n.kt)("inlineCode",{parentName:"a"},"9f609be"))),(0,n.kt)("li",{parentName:"ul"},"refactor(volto-slate): Upgrade to @plone/volto-slate - refs #153447 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/853d9d189dd17859e3999fbf53507df7083eefb4"},(0,n.kt)("inlineCode",{parentName:"a"},"853d9d1")))),(0,n.kt)("h4",{id:"-internal-changes-10"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(docs): Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e33113a0541d082d93f61c7494bcce2ac5f79a8c"},(0,n.kt)("inlineCode",{parentName:"a"},"e33113a")))),(0,n.kt)("h4",{id:"\ufe0f-others-24"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"test(cypress): Upgrade to Cypress 10 / Razzle 4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c1c1f4b280945a9f0b77eb0b59de003c1360bac9"},(0,n.kt)("inlineCode",{parentName:"a"},"c1c1f4b"))),(0,n.kt)("li",{parentName:"ul"},"more explanations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a8b22728659125ba6ea6fb41f29571a8f1b9953b"},(0,n.kt)("inlineCode",{parentName:"a"},"a8b2272"))),(0,n.kt)("li",{parentName:"ul"},"add announcement bar, showing that EEA DS is WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e14aeac02cf922493aff4f83c8d80af95cc63eb9"},(0,n.kt)("inlineCode",{parentName:"a"},"e14aeac"))),(0,n.kt)("li",{parentName:"ul"},"Update dependencies ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee30a2bad3769163d3ab4d996c0a7be8fcb4bc6e"},(0,n.kt)("inlineCode",{parentName:"a"},"ee30a2b")))),(0,n.kt)("h3",{id:"100-alpha1---2022-10-20"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.6...1.0.0-alpha.1"},"1.0.0-alpha.1")," - 2022-10-20"),(0,n.kt)("h4",{id:"-enhancements-25"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update svg and tablet contact link sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6aba061a5d37e84da706e94a2ce1140ffca81d43"},(0,n.kt)("inlineCode",{parentName:"a"},"6aba061"))),(0,n.kt)("li",{parentName:"ul"},"change(blockquote): renamed to Callout reflecting the correct naming from Storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/61a518c84f08b03d29b99aafce3d9108ae56b3a7"},(0,n.kt)("inlineCode",{parentName:"a"},"61a518c"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): Shadow removed from logo & tablet updates #252 from eea/fix-footer ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6df783d6571cb1b477202bf1d503763d98db66bf"},(0,n.kt)("inlineCode",{parentName:"a"},"6df783d"))),(0,n.kt)("li",{parentName:"ul"},"change(colors): updated theme classes for text to use css variable colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb089fd9a40b67430e0d4efaa2cb51902a46de4f"},(0,n.kt)("inlineCode",{parentName:"a"},"cb089fd")))),(0,n.kt)("h4",{id:"-internal-changes-11"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(footer): reduce social icons margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6a9cf7a6da4a46d9b85a63fbdfc8d421ae4c0d8"},(0,n.kt)("inlineCode",{parentName:"a"},"f6a9cf7")))),(0,n.kt)("h4",{id:"-documentation-changes-9"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(alpha): Update included components in 1.0 alpha version - refs #154387 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fcc5af9bb9163d158ccd6ce452d7f80ac26f7ac0"},(0,n.kt)("inlineCode",{parentName:"a"},"fcc5af9"))),(0,n.kt)("li",{parentName:"ul"},"docs(callout): Rename Blockqoute to Callout in docusaurus - refs #154387 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8d733ac7b00273581575ceddd1a4480ba67fa498"},(0,n.kt)("inlineCode",{parentName:"a"},"8d733ac")))),(0,n.kt)("h4",{id:"\ufe0f-others-25"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-alpha.1 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70e4d97c6a2b13f3b98efe1e2ba93174be2df476"},(0,n.kt)("inlineCode",{parentName:"a"},"70e4d97")))),(0,n.kt)("h3",{id:"096---2022-12-16"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.5...0.9.6"},"0.9.6")," - 2022-12-16"),(0,n.kt)("h4",{id:"\ufe0f-others-26"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Release 0.9.6 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ae19b837678ef5a6a26ebe7c69577e446b13ed50"},(0,n.kt)("inlineCode",{parentName:"a"},"ae19b83"))),(0,n.kt)("li",{parentName:"ul"},"feature(copyright): image information #250 from eea/feature-copyright ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7b323ed27e15f9b4265618099089526c97aa89a1"},(0,n.kt)("inlineCode",{parentName:"a"},"7b323ed"))),(0,n.kt)("li",{parentName:"ul"},"Release-it ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f5671de5a36a721f86a2f8ae4077fd2e0ffafb5"},(0,n.kt)("inlineCode",{parentName:"a"},"1f5671d")))),(0,n.kt)("h3",{id:"095---2022-10-20"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.4...0.9.5"},"0.9.5")," - 2022-10-20"),(0,n.kt)("h4",{id:"-bug-fixes-19"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(statistic): margin and slate colors when using the inverted options ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f263dea1940594ad00b3548c8640ca378fee5563"},(0,n.kt)("inlineCode",{parentName:"a"},"f263dea")))),(0,n.kt)("h3",{id:"094---2022-10-19"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.3...0.9.4"},"0.9.4")," - 2022-10-19"),(0,n.kt)("h4",{id:"-bug-fixes-20"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(edit-interface): block chooser and power user menu item colors when inside content-box ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7aee4f1619a0d798b5fd8d90844a780c25aca019"},(0,n.kt)("inlineCode",{parentName:"a"},"7aee4f1"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): hero text going over the logo and menu on mobile resolutions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1434508f5995d4316dfb2fd18fdc7926a4ece6ee"},(0,n.kt)("inlineCode",{parentName:"a"},"1434508"))),(0,n.kt)("li",{parentName:"ul"},"fix(content-box): z-index of box-inner and added underline to slate links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c8b7c7e41df39e1bf6377401a7aad4220287d454"},(0,n.kt)("inlineCode",{parentName:"a"},"c8b7c7e"))),(0,n.kt)("li",{parentName:"ul"},"fix(content-box): adding of underline to links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c2f5f0f45963e48342edb0046d84b945ffe4b6a8"},(0,n.kt)("inlineCode",{parentName:"a"},"c2f5f0f")))),(0,n.kt)("h4",{id:"-enhancements-26"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(banner,colors): content box theme aware colors banner changes#254 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bcb9a8cde0cb0f927a68c0872e590e5ab853f824"},(0,n.kt)("inlineCode",{parentName:"a"},"bcb9a8c"))),(0,n.kt)("li",{parentName:"ul"},"change(Banner): Add subtitle subcomponent ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bb67f4c83a2ff0e17958116fc4a52a426ba64a70"},(0,n.kt)("inlineCode",{parentName:"a"},"bb67f4c"))),(0,n.kt)("li",{parentName:"ul"},"change(item): moved svg filter definitions to item.overrides ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/de703661065648968903bb6b46efc13d19c51d2b"},(0,n.kt)("inlineCode",{parentName:"a"},"de70366"))),(0,n.kt)("li",{parentName:"ul"},"change(accordion): accordion titles with themes colors can now be modified by css variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2ac13ea56a74b2f7a22abc274bc94c770fbe3a2"},(0,n.kt)("inlineCode",{parentName:"a"},"e2ac13e"))),(0,n.kt)("li",{parentName:"ul"},"change(colors): in lists and callouts to allow color changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/940d1b8ed815b1a38f78d7602f0b221b48fe21f9"},(0,n.kt)("inlineCode",{parentName:"a"},"940d1b8"))),(0,n.kt)("li",{parentName:"ul"},"change(colors): added backgroundColorSupplementary color variable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f5262af2b90d2ffd9dd5560232f3bf47bcc85e3"},(0,n.kt)("inlineCode",{parentName:"a"},"1f5262a"))),(0,n.kt)("li",{parentName:"ul"},"change(list,bullet): color is no longer primary instead it's text color css variant ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8c046704871c7202406ff71b280a8a34e195e54d"},(0,n.kt)("inlineCode",{parentName:"a"},"8c04670"))),(0,n.kt)("li",{parentName:"ul"},"change(statistics): use theme colors with css variable for easy color customization ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fb72a012e81eba73fbace58317a52b5cdda31ee5"},(0,n.kt)("inlineCode",{parentName:"a"},"fb72a01"))),(0,n.kt)("li",{parentName:"ul"},"change(Banner): Show label in metadata field ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1acda3c53739b610b501a53baf10226769929d2d"},(0,n.kt)("inlineCode",{parentName:"a"},"1acda3c"))),(0,n.kt)("li",{parentName:"ul"},"change(tags, items): use text color with css variable for content color for easy customization ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6660e2e49c6e732a13283ad7c922c5a5091bffc1"},(0,n.kt)("inlineCode",{parentName:"a"},"6660e2e"))),(0,n.kt)("li",{parentName:"ul"},"change(styling): modified naming of theme css variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a332961e1c4d55cdee3a8bcdf652f53cf03e251b"},(0,n.kt)("inlineCode",{parentName:"a"},"a332961"))),(0,n.kt)("li",{parentName:"ul"},"change(colors): added backgroundColor color variable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b7e68311f77a724c49a3cf858a76239ca5f6876c"},(0,n.kt)("inlineCode",{parentName:"a"},"b7e6831"))),(0,n.kt)("li",{parentName:"ul"},"change(quote): use secondary css var for easier color replacement ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7a3231228c2eb9b420cc7b59a4a07fba96643e5e"},(0,n.kt)("inlineCode",{parentName:"a"},"7a32312"))),(0,n.kt)("li",{parentName:"ul"},"change(statistics): tweaked margin of statistics so that they don't overflow over context boxes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4a8e33dfaa716f38ac9ce5448d400c74ef9ba62"},(0,n.kt)("inlineCode",{parentName:"a"},"b4a8e33"))),(0,n.kt)("li",{parentName:"ul"},"change(accordion): allow customization of accordion title background color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6590baf1716867eabe897e765ae1924122ba2333"},(0,n.kt)("inlineCode",{parentName:"a"},"6590baf"))),(0,n.kt)("li",{parentName:"ul"},"change(colors): introduced css variables for primary colors #247 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac8082590f978ab953ece70082e06b124c292ddf"},(0,n.kt)("inlineCode",{parentName:"a"},"ac80825"))),(0,n.kt)("li",{parentName:"ul"},"change(content-box): override primary text color to white as well ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/28b43c72b9fcfeb153ac7e734bbbca67f2e42111"},(0,n.kt)("inlineCode",{parentName:"a"},"28b43c7")))),(0,n.kt)("h4",{id:"\ufe0f-others-27"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Include changes in the storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4d9fa4c631a6a1ec0d7d525721fd32c5ff01d9c"},(0,n.kt)("inlineCode",{parentName:"a"},"a4d9fa4")))),(0,n.kt)("h3",{id:"093---2022-10-04"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.2...0.9.3"},"0.9.3")," - 2022-10-04"),(0,n.kt)("h4",{id:"-bug-fixes-21"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(card, contentBox): meta font size, removed header override of cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7f94b9ca8c65a887ced5c4812563a2226fca869"},(0,n.kt)("inlineCode",{parentName:"a"},"a7f94b9"))),(0,n.kt)("li",{parentName:"ul"},"fix(List): Ordered list item story - refs #155248 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c70a2bceecf4ce9497cbe0e9cdb30944fff2287d"},(0,n.kt)("inlineCode",{parentName:"a"},"c70a2bc"))),(0,n.kt)("li",{parentName:"ul"},"fix(OrderedList): li third level margin left - refs #155248 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fba5cb9d3897d2827951cd218405b1ae7c8e818a"},(0,n.kt)("inlineCode",{parentName:"a"},"fba5cb9"))),(0,n.kt)("li",{parentName:"ul"},"fix(cards): inherit color of card description ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ceda79971663785c81292b85ae07b7f9f922213c"},(0,n.kt)("inlineCode",{parentName:"a"},"ceda799"))),(0,n.kt)("li",{parentName:"ul"},"fix(accordion): Fix content default padding - refs #153783 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/566adf7a53c48fb24044eeba1d159d5ce715ecc6"},(0,n.kt)("inlineCode",{parentName:"a"},"566adf7")))),(0,n.kt)("h4",{id:"-enhancements-27"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(site): committed fixed from custom into eea design package ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9b9a1fd3648796a502ca4eb3abd08b61b33bdff2"},(0,n.kt)("inlineCode",{parentName:"a"},"9b9a1fd"))),(0,n.kt)("li",{parentName:"ul"},"change(jenkins): added yarn policy for storybook building ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3d1b844efeea40b99c00c9aa97089e0a0be58a57"},(0,n.kt)("inlineCode",{parentName:"a"},"3d1b844"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): typography updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/60a93a4aece4e478ae13c2dfe697fd3703aa178a"},(0,n.kt)("inlineCode",{parentName:"a"},"60a93a4"))),(0,n.kt)("li",{parentName:"ul"},"change(item): added item image coloring when applying theming classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0403fe4974f37a46ec7418d9b8492ad74d7c5688"},(0,n.kt)("inlineCode",{parentName:"a"},"0403fe4"))),(0,n.kt)("li",{parentName:"ul"},"change(accordion, site): change text color to tertiary instead of black ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/464105842508a62216aa0a3f28e9565af1b93232"},(0,n.kt)("inlineCode",{parentName:"a"},"4641058"))),(0,n.kt)("li",{parentName:"ul"},"change(accordion): allow customization of accordion title with css variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/15e7d27f02c640df582f51a51ef36e645723f842"},(0,n.kt)("inlineCode",{parentName:"a"},"15e7d27"))),(0,n.kt)("li",{parentName:"ul"},"change(content-box): added css variables that will set text color and background for children ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/86cac531cc94386b6022e1be80dba826b39f2443"},(0,n.kt)("inlineCode",{parentName:"a"},"86cac53"))),(0,n.kt)("li",{parentName:"ul"},"change(tabs): allow customization of tab active and hover color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4370f4270dcaa29b1193fc2347567b748f6d5d82"},(0,n.kt)("inlineCode",{parentName:"a"},"4370f42"))),(0,n.kt)("li",{parentName:"ul"},"change(tabs): color for tabs-block section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6778c923618e725194120d7f35e2ee7d66e1be8e"},(0,n.kt)("inlineCode",{parentName:"a"},"6778c92"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): by default date is set to appear on the right of the meta section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b7b80e86b69a0179f1e48748bef909bbd2a98d58"},(0,n.kt)("inlineCode",{parentName:"a"},"b7b80e8"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): carousel dots are now relative positioned ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/daa40a4ab6532497830d5f7536bf0a7f20d9cd00"},(0,n.kt)("inlineCode",{parentName:"a"},"daa40a4")))),(0,n.kt)("h4",{id:"-documentation-changes-10"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(typography): update, local fonts ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/39a32d9aa4dec21c0e7df32aa5798432fc6bd403"},(0,n.kt)("inlineCode",{parentName:"a"},"39a32d9"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): token fix to match used values for heightheight and letterspacing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91693ecd2dd367cd83fa2752756557d463e214a7"},(0,n.kt)("inlineCode",{parentName:"a"},"91693ec"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): token fix to match used values for lineheight ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff41b56b4365a3e70ac20e548c7c74671e7c584c"},(0,n.kt)("inlineCode",{parentName:"a"},"ff41b56"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): remove semibold ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6eb3e0856f01aacf6d294f68e7d845f74f752685"},(0,n.kt)("inlineCode",{parentName:"a"},"6eb3e08")))),(0,n.kt)("h4",{id:"\ufe0f-others-28"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"test(cypress): Fix md5 dependency ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/17f618e7c5eef01759494e787a8c9cb96449fbca"},(0,n.kt)("inlineCode",{parentName:"a"},"17f618e")))),(0,n.kt)("h3",{id:"092---2022-09-27"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.1...0.9.2"},"0.9.2")," - 2022-09-27"),(0,n.kt)("h3",{id:"091---2022-09-27"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.0...0.9.1"},"0.9.1")," - 2022-09-27"),(0,n.kt)("h4",{id:"-enhancements-28"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(cards): added ability to change the text alignment using css variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ed532ac20c82a6933c4f12613c80ce92eec78405"},(0,n.kt)("inlineCode",{parentName:"a"},"ed532ac"))),(0,n.kt)("li",{parentName:"ul"},"change(styles): use flex-end values only instead of end to avoid babel warning ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24244b22ea69b9f4dc3006597c7836f814b74cf2"},(0,n.kt)("inlineCode",{parentName:"a"},"24244b2"))),(0,n.kt)("li",{parentName:"ul"},"change(rounded): image size, border radius to ensure more image are turned into rounded options ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51e23c1bb38f277b2bfbad5d814925eb61d17668"},(0,n.kt)("inlineCode",{parentName:"a"},"51e23c1")))),(0,n.kt)("h4",{id:"\ufe0f-others-29"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Merge pull request #243 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/576564ce395ee6ac9e74bcb19d5c4f0b4cd3c33b"},(0,n.kt)("inlineCode",{parentName:"a"},"576564c"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using eea-website-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a5be6eec78dae230626e61ea2c77e7f3c62510d"},(0,n.kt)("inlineCode",{parentName:"a"},"4a5be6e"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b251255a7ed14d8290717726d86eaf54b87aa2d4"},(0,n.kt)("inlineCode",{parentName:"a"},"b251255")))),(0,n.kt)("h3",{id:"090---2022-09-19"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.8.1...0.9.0"},"0.9.0")," - 2022-09-19"),(0,n.kt)("h4",{id:"-new-features-17"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(countUp): intall countup package and import it in statistics ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/10ba7cf2975ffc33cc8e6965998b7ab7ec58b1ab"},(0,n.kt)("inlineCode",{parentName:"a"},"10ba7cf"))),(0,n.kt)("li",{parentName:"ul"},"feat(docusaurus): custom editUrl function for the components usage pages - taskman refs #154076 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93c4240f269d72e4e353665dacd57d079a31afac"},(0,n.kt)("inlineCode",{parentName:"a"},"93c4240"))),(0,n.kt)("li",{parentName:"ul"},"feat(site): Styling scroll-to-text fragments #238 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1883fcf4e80055f68bdff4d66fc6db3ccad4614a"},(0,n.kt)("inlineCode",{parentName:"a"},"1883fcf"))),(0,n.kt)("li",{parentName:"ul"},"feat(docusaurus): added Edit this page link in footer of each page - taskman refs #154076 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2cf8746e42631ea2e214223e208bdbfb76ffafa7"},(0,n.kt)("inlineCode",{parentName:"a"},"2cf8746")))),(0,n.kt)("h4",{id:"-bug-fixes-22"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(header): Prevent dropdown closing when clicking inside content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/838f34006260ce7c331fd933a595e95d78e1a927"},(0,n.kt)("inlineCode",{parentName:"a"},"838f340"))),(0,n.kt)("li",{parentName:"ul"},"fix(cards): position of bullets and arrow clicking on events page 148723 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/22ef8282247401b0f8cf5a44f2e65f0b469cc6fa"},(0,n.kt)("inlineCode",{parentName:"a"},"22ef828"))),(0,n.kt)("li",{parentName:"ul"},"fix(cards): rounded images show up now even when card parent is cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48f5e81a5b76168435537d92aec35ab3a184b4d2"},(0,n.kt)("inlineCode",{parentName:"a"},"48f5e81"))),(0,n.kt)("li",{parentName:"ul"},"fix(statistic): add a min-width to content so unwrapped statistics don't break ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7c5d511c35d50f3afabf77f14b27e5760c49051f"},(0,n.kt)("inlineCode",{parentName:"a"},"7c5d511"))),(0,n.kt)("li",{parentName:"ul"},"fix(sideNavigation): add role list to list item ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/58f322b732c995349ba588db3bac6a1ffea40f89"},(0,n.kt)("inlineCode",{parentName:"a"},"58f322b"))),(0,n.kt)("li",{parentName:"ul"},"fix(sideNavigation): remove unused useState import ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f9ea6779d2c584203b77f11b3127f39aba7799f3"},(0,n.kt)("inlineCode",{parentName:"a"},"f9ea677")))),(0,n.kt)("h4",{id:"-enhancements-29"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(sideNavigation): implement the design to the initial navigation & make component dynamic ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b673d63a45e56e1d05354d8675c01b15ec9543f5"},(0,n.kt)("inlineCode",{parentName:"a"},"b673d63"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update top bar ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/626bdd5805bde1e97b91d83dae7adc1d39c62234"},(0,n.kt)("inlineCode",{parentName:"a"},"626bdd5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): create custom export and add links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f9ed560a68d261e9e6a9b6fa3c44944a252e596"},(0,n.kt)("inlineCode",{parentName:"a"},"9f9ed56"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): update inverted style and add background variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7578dc6a408094fbc215218b3ffe21a878841568"},(0,n.kt)("inlineCode",{parentName:"a"},"7578dc6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): remove horizontal display on mobiles & update columns control ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/58f00e12851c4a1af1bb200d0577d76f6222df3c"},(0,n.kt)("inlineCode",{parentName:"a"},"58f00e1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): minor fixes spotted in testing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0f0f3aba7ea282c4ecc4f602f9ff3144c04e2146"},(0,n.kt)("inlineCode",{parentName:"a"},"0f0f3ab"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update main section heights ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d669f012f1b831952dbb73b7d40134b1243ba7e4"},(0,n.kt)("inlineCode",{parentName:"a"},"d669f01"))),(0,n.kt)("li",{parentName:"ul"},"refactor(sideNavigation): remove green border and divider ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/939cd9bf2a9a7338fd770550a8396586c5f610b3"},(0,n.kt)("inlineCode",{parentName:"a"},"939cd9b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(link): update colors for link states ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e9f59950838f9119131797550945963c2965dcf"},(0,n.kt)("inlineCode",{parentName:"a"},"3e9f599"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): styles img tag outside of .image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee892745a4748da12007ba5cedab16c1810c1dd9"},(0,n.kt)("inlineCode",{parentName:"a"},"ee89274"))),(0,n.kt)("li",{parentName:"ul"},"refactor(sideNavigation): update controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a3e8430d88ee52fd92f4f8c2d6f5e01ea82dd9eb"},(0,n.kt)("inlineCode",{parentName:"a"},"a3e8430"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): fix firefox issue for fit content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87aa113667ea53d83d479cd52347e7298e60e9b0"},(0,n.kt)("inlineCode",{parentName:"a"},"87aa113"))),(0,n.kt)("li",{parentName:"ul"},"change(statistics): rearrange controls order ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b19ae70568f18873732ff62ee82251c9256a214d"},(0,n.kt)("inlineCode",{parentName:"a"},"b19ae70"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): add max width to wrap text for all content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/758f8ce09f78a6343ac0226e5d332c0216dea95b"},(0,n.kt)("inlineCode",{parentName:"a"},"758f8ce"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): add max width to label so it wraps the text ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/824a12702f133485a1c254e267d9e75c1b22048c"},(0,n.kt)("inlineCode",{parentName:"a"},"824a127"))),(0,n.kt)("li",{parentName:"ul"},"change(Side menu & in page navigation): styling according to figma design #221 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b2df858a2dc88f61d686ad0991e711dc763f4cc6"},(0,n.kt)("inlineCode",{parentName:"a"},"b2df858"))),(0,n.kt)("li",{parentName:"ul"},"change(header): align header with latest figma changes #232 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/135cd68307c6ebdc5d48b361d1696457c6f99b4c"},(0,n.kt)("inlineCode",{parentName:"a"},"135cd68"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): integration when cards also contain call to action buttons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f0d876616b211c79dde5b18c1fe862ff019073a1"},(0,n.kt)("inlineCode",{parentName:"a"},"f0d8766"))),(0,n.kt)("li",{parentName:"ul"},"refactor(iconography): icon group headings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b9ccd8031049d6b91c5676930ea3e44d9587435d"},(0,n.kt)("inlineCode",{parentName:"a"},"b9ccd80"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add variables for some sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8eae84ef665d7b3331090a8a8ac6b714ecdacbb3"},(0,n.kt)("inlineCode",{parentName:"a"},"8eae84e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Statisctic): Rename slateVariation to extraVariation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a07c5896c8c4b8f3179622f335e3f02e68dadfbd"},(0,n.kt)("inlineCode",{parentName:"a"},"a07c589"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): started example on how to add headings for iconography ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53cf8431446954eee6c5d27be31e15c075ffe16d"},(0,n.kt)("inlineCode",{parentName:"a"},"53cf843"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): remove center alignment of rounded cards body area, only the image is now centered ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fdfac4876903272b437c7dcf0e65f7cfe66bbf66"},(0,n.kt)("inlineCode",{parentName:"a"},"fdfac48"))),(0,n.kt)("li",{parentName:"ul"},"change(color): updated link colors #234 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/feabfe7a3b6d6b89bfd4065a32bae8148ddc5a4c"},(0,n.kt)("inlineCode",{parentName:"a"},"feabfe7"))),(0,n.kt)("li",{parentName:"ul"},"change(mockup): Access to figma style tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0bb25bec495f9046a15924ee92f4f17152148ba8"},(0,n.kt)("inlineCode",{parentName:"a"},"0bb25be"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): update margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5190f56e134d672ccb9d5d1a8efacac4d41530d3"},(0,n.kt)("inlineCode",{parentName:"a"},"5190f56"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button): adjust vertical margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/db6d44102171738907b4b03fcc5f526463f59389"},(0,n.kt)("inlineCode",{parentName:"a"},"db6d441")))),(0,n.kt)("h4",{id:"-internal-changes-12"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(statistic): update decimal point ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7976aa4cac4c56e70e196eb62791a2b3f2aba749"},(0,n.kt)("inlineCode",{parentName:"a"},"7976aa4"))),(0,n.kt)("li",{parentName:"ul"},"style(link): update visited link color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d3b18b305bb2bd2f20bb2509584a6bc86b0e252c"},(0,n.kt)("inlineCode",{parentName:"a"},"d3b18b3")))),(0,n.kt)("h4",{id:"-documentation-changes-11"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(iconography): added icons, guidelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0073f1d42600be1d14bff406083b112014a2061f"},(0,n.kt)("inlineCode",{parentName:"a"},"0073f1d")))),(0,n.kt)("h4",{id:"\ufe0f-others-30"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Delete 2-test-new-page.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/749eff9b81e1c08068650cff1aba6cd574ea403b"},(0,n.kt)("inlineCode",{parentName:"a"},"749eff9"))),(0,n.kt)("li",{parentName:"ul"},"Create 2-test-new-page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab623ffc27f65e3e5fdcfe627009df1799582325"},(0,n.kt)("inlineCode",{parentName:"a"},"ab623ff"))),(0,n.kt)("li",{parentName:"ul"},"Release 0.9.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/eb7e2e57b5f2778e709b67deee3624f6e9f9e716"},(0,n.kt)("inlineCode",{parentName:"a"},"eb7e2e5"))),(0,n.kt)("li",{parentName:"ul"},"stylelint fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/114e3f97c6209f100aae2d6e24c595b7ba0a6500"},(0,n.kt)("inlineCode",{parentName:"a"},"114e3f9"))),(0,n.kt)("li",{parentName:"ul"},"Move text fragments style to site.overrides ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8368cbe2cecfc296a2fc81dd0bb49cb9e9a9314c"},(0,n.kt)("inlineCode",{parentName:"a"},"8368cbe"))),(0,n.kt)("li",{parentName:"ul"},"Styling scroll-to-text fragments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1bb39148717cdac922c403a0cdbfa3681a65dd9f"},(0,n.kt)("inlineCode",{parentName:"a"},"1bb3914"))),(0,n.kt)("li",{parentName:"ul"},"Update Header.stories.js ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9036c74d54640df2ccfcfdea9ddcdb29787d8ae2"},(0,n.kt)("inlineCode",{parentName:"a"},"9036c74"))),(0,n.kt)("li",{parentName:"ul"},"feature(Docusaurus): Reflect usage of remixicon in iconography page #239 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0802b32c13d978e380960befb78647dadb2d7e53"},(0,n.kt)("inlineCode",{parentName:"a"},"0802b32"))),(0,n.kt)("li",{parentName:"ul"},"Update 1-design.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/146115a13ac7a1943b6878df42f0b8e7f1fcd3f1"},(0,n.kt)("inlineCode",{parentName:"a"},"146115a"))),(0,n.kt)("li",{parentName:"ul"},"Test workflow for contribution - taskman refs #154076 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dcb924f79306ba26bb5168ac0a12d82c0c354caa"},(0,n.kt)("inlineCode",{parentName:"a"},"dcb924f"))),(0,n.kt)("li",{parentName:"ul"},"perf(figma): access to style tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/27d8dbe3c282e187f93bc4d93a0c9aa5c8162b00"},(0,n.kt)("inlineCode",{parentName:"a"},"27d8dbe"))),(0,n.kt)("li",{parentName:"ul"},"Rename 2-test-new-page to 2-test-new-page.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4e3be106cc4739e60ee5038901dbb626cf17f2e7"},(0,n.kt)("inlineCode",{parentName:"a"},"4e3be10")))),(0,n.kt)("h3",{id:"081---2022-08-26"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.8.0...0.8.1"},"0.8.1")," - 2022-08-26"),(0,n.kt)("h4",{id:"-bug-fixes-23"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(message): fix size controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee51e1dca4f84aeb9e39be525016f751acc147de"},(0,n.kt)("inlineCode",{parentName:"a"},"ee51e1d"))),(0,n.kt)("li",{parentName:"ul"},"fix(docusaurus): intro page hero title color now that headers are using tertiary color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/618e3cb7ac5533b1c087aea10452947c8676ab4e"},(0,n.kt)("inlineCode",{parentName:"a"},"618e3cb")))),(0,n.kt)("h4",{id:"-enhancements-30"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(message): restore semantic variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1c16621b4862efc64d82d475798ed40938c65f5e"},(0,n.kt)("inlineCode",{parentName:"a"},"1c16621"))),(0,n.kt)("li",{parentName:"ul"},"refactor(messages): mix semantc and token colors for messages ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/12efa75c30956df9958058242be4b8732819a5a1"},(0,n.kt)("inlineCode",{parentName:"a"},"12efa75"))),(0,n.kt)("li",{parentName:"ul"},"refactor(emotiveColors): temp update for tests ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/61a720c1ddbbad2c5bab17c8b2f890618f2a747c"},(0,n.kt)("inlineCode",{parentName:"a"},"61a720c"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): removed line between sections and moved actions back to the bottom of footer ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d9f33e4cf5a517acfbae497d6cb2fdccb048c281"},(0,n.kt)("inlineCode",{parentName:"a"},"d9f33e4"))),(0,n.kt)("li",{parentName:"ul"},"change(storybook): headings storybook now uses tertiary color by default reflecting site options ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1061e7749de2d4fe1233ccdc7f6f835ad491504a"},(0,n.kt)("inlineCode",{parentName:"a"},"1061e77"))),(0,n.kt)("li",{parentName:"ul"},"refactor(message): add container to story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1259ecead7162d2a46f5e802ba07e7e0dcb72e42"},(0,n.kt)("inlineCode",{parentName:"a"},"1259ece"))),(0,n.kt)("li",{parentName:"ul"},"refactor(message): remove override with custom background color on error ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9b40cd7ef2cca901e65a812585943c2e2d867b5f"},(0,n.kt)("inlineCode",{parentName:"a"},"9b40cd7"))),(0,n.kt)("li",{parentName:"ul"},"refactor(message): add header controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/960c2f7b524b1f049bb2f666e3e8278feca506da"},(0,n.kt)("inlineCode",{parentName:"a"},"960c2f7"))),(0,n.kt)("li",{parentName:"ul"},"change(message): use semantic colors for messages #204 from eea/refactor-message ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/22d2c43cd55a82621f2da3103652677b4b45db1a"},(0,n.kt)("inlineCode",{parentName:"a"},"22d2c43")))),(0,n.kt)("h4",{id:"-documentation-changes-12"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(figma): added figma files to repo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6bd4144ffc9c563ce224a07fe942fc4f2615c53f"},(0,n.kt)("inlineCode",{parentName:"a"},"6bd4144")))),(0,n.kt)("h3",{id:"080---2022-08-20"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.7.6...0.8.0"},"0.8.0")," - 2022-08-20"),(0,n.kt)("h4",{id:"-new-features-18"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(IconCard): card with icon instead of image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a85a1791e3a1245474dcafc4fd833350156dccb4"},(0,n.kt)("inlineCode",{parentName:"a"},"a85a179")))),(0,n.kt)("h4",{id:"-bug-fixes-24"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(docusaurus): typography guideline now has real font values for headings, body, caption and small text ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9508db918687b524c4d464539b9a4667399abb43"},(0,n.kt)("inlineCode",{parentName:"a"},"9508db9"))),(0,n.kt)("li",{parentName:"ul"},"fix(card): fix content gaps, adjust new meta section and update text color for default ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f1a78e14fc9a4b809572bd5d4d45bd10711c6eaa"},(0,n.kt)("inlineCode",{parentName:"a"},"f1a78e1"))),(0,n.kt)("li",{parentName:"ul"},"fix(item): remove duplicate argType ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dde0be5f7fe362143e248f7e53aa1d2e5df1fda0"},(0,n.kt)("inlineCode",{parentName:"a"},"dde0be5"))),(0,n.kt)("li",{parentName:"ul"},"fix(iconCard): add aria-label at links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/44f64c7127c0ccabbbf81eb5a838ee0f63284cea"},(0,n.kt)("inlineCode",{parentName:"a"},"44f64c7"))),(0,n.kt)("li",{parentName:"ul"},"fix(card): merge fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/df440ecd89eeb228f6f28df9109b84460cdfd523"},(0,n.kt)("inlineCode",{parentName:"a"},"df440ec"))),(0,n.kt)("li",{parentName:"ul"},"fix(heroblock): color even on edit page by inheriting color instead of using the tertiary color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac53fb74dedafcce231d1ca72843eff8a589c530"},(0,n.kt)("inlineCode",{parentName:"a"},"ac53fb7"))),(0,n.kt)("li",{parentName:"ul"},"fix(tab): add tabindex for accessibility error ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab512be71b86a3b696a228840e34d297928485ab"},(0,n.kt)("inlineCode",{parentName:"a"},"ab512be"))),(0,n.kt)("li",{parentName:"ul"},"fix(carousel): restore missing variable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1728312162d102aa2812eb3c7a55dac83bca8a04"},(0,n.kt)("inlineCode",{parentName:"a"},"1728312"))),(0,n.kt)("li",{parentName:"ul"},"fix(carousel): restore flex grow for cards and opacity for arrows ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce71305ab3fed5ff5c09b577e970050d3b29a2cb"},(0,n.kt)("inlineCode",{parentName:"a"},"ce71305")))),(0,n.kt)("h4",{id:"-enhancements-31"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(carousel) add links in carousel cards & update structure and variables of less files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f99cb219f3a95f5aab49a180434a4f5e0db14462"},(0,n.kt)("inlineCode",{parentName:"a"},"f99cb21"))),(0,n.kt)("li",{parentName:"ul"},"refactor(iconCard): add control for variations and link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5e1b6a1c7ab9fdce138c5643bc01763a02bed287"},(0,n.kt)("inlineCode",{parentName:"a"},"5e1b6a1"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus, fonts): documented font letter spacing modification ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/522712aeddb55f4ff96fdf4e8bea26f4575504ec"},(0,n.kt)("inlineCode",{parentName:"a"},"522712a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): css updates for card variations and styling updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c8b4a43dd25c50e77e8c71fa8fbc45cd70bde94e"},(0,n.kt)("inlineCode",{parentName:"a"},"c8b4a43"))),(0,n.kt)("li",{parentName:"ul"},"refactor(publicationCard): add links and fix accessibily issue ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/80adf6ce0f01e577c34ddba8b345a1fc562f6711"},(0,n.kt)("inlineCode",{parentName:"a"},"80adf6c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add new section in meta and remove links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bfb82ae9635d26ef478db3d63b39f67b25d11fd5"},(0,n.kt)("inlineCode",{parentName:"a"},"bfb82ae"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): add stackable functionality ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8d714fad0465cc71650dcb41236d5667ccc3e789"},(0,n.kt)("inlineCode",{parentName:"a"},"8d714fa"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): update meta section and controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5e28e12bacec6a226659553b8244aeb0165378c9"},(0,n.kt)("inlineCode",{parentName:"a"},"5e28e12"))),(0,n.kt)("li",{parentName:"ul"},"refactor(roundedCard): remove unnecessary code and controls and add all variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6305c54df14faada4058c602af2e33dbc4fad39d"},(0,n.kt)("inlineCode",{parentName:"a"},"6305c54"))),(0,n.kt)("li",{parentName:"ul"},"refactor(roundedCard): add optional link for image and header ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a6d3bf27031d189c403c4a099b09a9066a1620a2"},(0,n.kt)("inlineCode",{parentName:"a"},"a6d3bf2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add tertiary hover and update css selectors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca069484da914520c92f7d67ac92c476ff2ee4a2"},(0,n.kt)("inlineCode",{parentName:"a"},"ca06948"))),(0,n.kt)("li",{parentName:"ul"},"change(fonts): updated font sizes with values given in figma ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4b0ae48ab140d8bbbf6ccbf46eda8d957195ca50"},(0,n.kt)("inlineCode",{parentName:"a"},"4b0ae48"))),(0,n.kt)("li",{parentName:"ul"},"change(style): color, space and adjust line-height as described in docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3366da262ba2dc1c34f57964accf4d6ef6ed37e1"},(0,n.kt)("inlineCode",{parentName:"a"},"3366da2"))),(0,n.kt)("li",{parentName:"ul"},"change(headings): only h2-h6 get tertiary color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d81308c4c0d52d5610a922146f5b426d9eaf323"},(0,n.kt)("inlineCode",{parentName:"a"},"7d81308"))),(0,n.kt)("li",{parentName:"ul"},"change(site): removed Archivo import as we should only use Roboto font ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a6af0564667075d2012c114acb2ad8e1f39b926f"},(0,n.kt)("inlineCode",{parentName:"a"},"a6af056"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): use tertiary color for headings and body color mirroring the design system styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/145fe7348a19b51784a2879225d1b71a642eed45"},(0,n.kt)("inlineCode",{parentName:"a"},"145fe73"))),(0,n.kt)("li",{parentName:"ul"},"change(fonts): modified headings font size as well as line height ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f0771ea1942b6ef436a03c256491a690a52d7413"},(0,n.kt)("inlineCode",{parentName:"a"},"f0771ea"))),(0,n.kt)("li",{parentName:"ul"},"change(fonts): updated font sizes with values given in figma ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f16eef7128ed4f2e7fe97b1ec77f651dc062b771"},(0,n.kt)("inlineCode",{parentName:"a"},"f16eef7"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): use Roboto font from google fonts also for docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/adca8e911faac2d541eb2b9fecf1d9db5b8f9b4c"},(0,n.kt)("inlineCode",{parentName:"a"},"adca8e9"))),(0,n.kt)("li",{parentName:"ul"},"change(headers): added headerColor variable so that thematic sites can easily choose another heading color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f09d2c5e95e82077cc7dfef43a5c56fc73d435c3"},(0,n.kt)("inlineCode",{parentName:"a"},"f09d2c5"))),(0,n.kt)("li",{parentName:"ul"},"change(fonts): typo fixes for typography section of docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cae4b02b20ff578f5cad7c4238c36baa3cae545a"},(0,n.kt)("inlineCode",{parentName:"a"},"cae4b02"))),(0,n.kt)("li",{parentName:"ul"},"change(fonts): modified footer and header values afer global font size changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f160d354b36dc2bee0707b6d63097d5f08408abe"},(0,n.kt)("inlineCode",{parentName:"a"},"f160d35"))),(0,n.kt)("li",{parentName:"ul"},"refactor(iconCards): run prettier ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fe84e46adbc385098385120d14e7583b890db027"},(0,n.kt)("inlineCode",{parentName:"a"},"fe84e46"))),(0,n.kt)("li",{parentName:"ul"},"change(typography): inherit header colors with @headerColor variable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91d93577772534f67bb74df0c9ed260bbaccdd4c"},(0,n.kt)("inlineCode",{parentName:"a"},"91d9357"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumb): use tertiary color also for breadcrumb ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5cbd44bcabae36bcb99a1e987d701e2ea75434b"},(0,n.kt)("inlineCode",{parentName:"a"},"c5cbd44"))),(0,n.kt)("li",{parentName:"ul"},"change(heading): on homepage on the first hero set font size to h1 and inherit color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5711096e45c57b0c3c871f8dcf870c05405d217d"},(0,n.kt)("inlineCode",{parentName:"a"},"5711096"))),(0,n.kt)("li",{parentName:"ul"},"refactor(carousel): update card titles to display styling fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/edd966b5648be51f2d4056c68489648574506656"},(0,n.kt)("inlineCode",{parentName:"a"},"edd966b"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): use the tertiary color for body and heading colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/11c4ed4683df4527ce79155bc65424789e3864af"},(0,n.kt)("inlineCode",{parentName:"a"},"11c4ed4"))),(0,n.kt)("li",{parentName:"ul"},"change(typography): modified lineheight-0 after headers now use 1.2 instead of 1.25 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/04d78a8b0094d9187548e1e3b16d6fbf2248821c"},(0,n.kt)("inlineCode",{parentName:"a"},"04d78a8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add links to cards and replace description with title in carousel ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0258737d26bbb3015ee6222ec878e0477001f615"},(0,n.kt)("inlineCode",{parentName:"a"},"0258737")))),(0,n.kt)("h4",{id:"\ufe0f-others-31"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feature(heading): and cards refactoring #227 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/334fbda2d5b751858d4cc8cae832ca7f5c1ad6c2"},(0,n.kt)("inlineCode",{parentName:"a"},"334fbda"))),(0,n.kt)("li",{parentName:"ul"},"Update package.json ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3870cf3265f0dab4e181c94a6657b9fa408bf186"},(0,n.kt)("inlineCode",{parentName:"a"},"3870cf3"))),(0,n.kt)("li",{parentName:"ul"},"Header refactor 153536 #226 from eea/header-refactor-153536 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87a6fe73211eb028861e099a67e90d365c5111ea"},(0,n.kt)("inlineCode",{parentName:"a"},"87a6fe7"))),(0,n.kt)("li",{parentName:"ul"},"feature(item): icon is now stackable moving the icon on top #220 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b716acfc850345d666d99840445798cdae201a63"},(0,n.kt)("inlineCode",{parentName:"a"},"b716acf")))),(0,n.kt)("h3",{id:"076---2022-08-15"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.7.5...0.7.6"},"0.7.6")," - 2022-08-15"),(0,n.kt)("h4",{id:"-enhancements-32"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(footer): Footer updates 147837 #225 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fa9ae580c7fd45fb4983672167cb5b0b33cc6279"},(0,n.kt)("inlineCode",{parentName:"a"},"fa9ae58"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): initial redesign of main section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8e85617157cdc31a7470acfcd72b85d8fadd1bce"},(0,n.kt)("inlineCode",{parentName:"a"},"8e85617"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): restructure theme sites logo columns ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dcba45a0bfd832c7d5d1e092db8ea4040eceda57"},(0,n.kt)("inlineCode",{parentName:"a"},"dcba45a"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): set actions before thematic section on mobile ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/db25f966a214c94677192215181453e9d59ca957"},(0,n.kt)("inlineCode",{parentName:"a"},"db25f96"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): fix missing key warning from react dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/77f72d5bdc719805a6314058c741387ee7155d28"},(0,n.kt)("inlineCode",{parentName:"a"},"77f72d5"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): Footer updates 147837 #222 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32fed231f1209caeddb18e0bb75d670f20bafb88"},(0,n.kt)("inlineCode",{parentName:"a"},"32fed23")))),(0,n.kt)("h3",{id:"075---2022-08-11"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.7.3...0.7.5"},"0.7.5")," - 2022-08-11"),(0,n.kt)("h4",{id:"-enhancements-33"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(megamenu): mobile improvements with See all links, active elements and non accordion children #224 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6767b99fea3925b35e9dede0a67ea90242e5e730"},(0,n.kt)("inlineCode",{parentName:"a"},"6767b99"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): render accordion only if children have children ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/be63ce2a8e240eac26eedeff0ca104813afbc6b3"},(0,n.kt)("inlineCode",{parentName:"a"},"be63ce2"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): mobile menu design tweaks as seen in latest figma ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/26d74dc063f0b3f8d541c714a10038d79145047e"},(0,n.kt)("inlineCode",{parentName:"a"},"26d74dc"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): removed icon from at a change menu items and they are no longer bold as requested ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/043e77219979711d2f25845c6811b546e791fbf7"},(0,n.kt)("inlineCode",{parentName:"a"},"043e772"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): reset first level panels after each item pass ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/175351bdc9bab5c2d02b2717c24071ba62d4b924"},(0,n.kt)("inlineCode",{parentName:"a"},"175351b"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): mobile menu improvements #223 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b3cabfe3ddc42c2ea39ae20d01bb6fd0db478ecc"},(0,n.kt)("inlineCode",{parentName:"a"},"b3cabfe"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): fixed key error warnings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/075bf0167554869e9fc2f4938c972112e4afa2f7"},(0,n.kt)("inlineCode",{parentName:"a"},"075bf01"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): handle default active sub accordion ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6192a9938b53522682953cb73d7ccfc6ef9c1aec"},(0,n.kt)("inlineCode",{parentName:"a"},"6192a99"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): enable active border only for items not titles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fb0b8696dd73cbf3083c3006a7cff5a1901a6bac"},(0,n.kt)("inlineCode",{parentName:"a"},"fb0b869")))),(0,n.kt)("h4",{id:"\ufe0f-others-32"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Update package.json ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e21e00dc1e0b54daef2c71311a9da709bc1f7e6d"},(0,n.kt)("inlineCode",{parentName:"a"},"e21e00d")))),(0,n.kt)("h3",{id:"073---2022-08-04"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.7.2...0.7.3"},"0.7.3")," - 2022-08-04"),(0,n.kt)("h4",{id:"-enhancements-34"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(megamenu): added icon on mega menu header section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d0ad4d80fc4941e0cdbd8a2d81415387f86efc1c"},(0,n.kt)("inlineCode",{parentName:"a"},"d0ad4d8")))),(0,n.kt)("h3",{id:"072---2022-08-03"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.7.1...0.7.2"},"0.7.2")," - 2022-08-03"),(0,n.kt)("h4",{id:"-bug-fixes-25"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(contentBox): z-index of content hidden by bg when using content-box-inner ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5a7dac923d648d8fe9c9a9cbb8001969d32aea2"},(0,n.kt)("inlineCode",{parentName:"a"},"c5a7dac")))),(0,n.kt)("h4",{id:"\ufe0f-others-33"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Set focus on search input field in the popup on click ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d12c05106d9b95df1885ffa12cb284a0e50e0dfd"},(0,n.kt)("inlineCode",{parentName:"a"},"d12c051"))),(0,n.kt)("li",{parentName:"ul"},"Make cypress tests work with both slate and draft selectors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4d8e5b1d7719637a46eac8232891fc5ed1f51b6f"},(0,n.kt)("inlineCode",{parentName:"a"},"4d8e5b1")))),(0,n.kt)("h3",{id:"071---2022-08-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.7.0...0.7.1"},"0.7.1")," - 2022-08-01"),(0,n.kt)("h3",{id:"070---2022-08-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.6.5...0.7.0"},"0.7.0")," - 2022-08-01"),(0,n.kt)("h4",{id:"-new-features-19"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(accordion,buttons): primary, secondary and tertiary variations #209 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c34617f7a7d7b6b7568c3127f4ae0f52bd57cf8a"},(0,n.kt)("inlineCode",{parentName:"a"},"c34617f")))),(0,n.kt)("h4",{id:"-bug-fixes-26"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(megamenu): key warning errors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ecd27921546204dfa4aa23d25188876e52cda7a"},(0,n.kt)("inlineCode",{parentName:"a"},"4ecd279"))),(0,n.kt)("li",{parentName:"ul"},"fix(container): add padding also for block editors when we are on the add page not just edit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b857aad7855c30c5059b0f0f7c0f720826a71aa7"},(0,n.kt)("inlineCode",{parentName:"a"},"b857aad"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): bump opacity of gradient class to get rid of green hue of header text ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2011b40d384ae5b54a0525e6d9afc88c02f6ca90"},(0,n.kt)("inlineCode",{parentName:"a"},"2011b40"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): remove console log ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3a200233609bbcea39d8e519dc292a132a98aaa3"},(0,n.kt)("inlineCode",{parentName:"a"},"3a20023")))),(0,n.kt)("h4",{id:"-enhancements-35"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(callToAction): add tertiary variant and restructure exports ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac6695ab3066c41739ec4852f0ec3c3bb6cea346"},(0,n.kt)("inlineCode",{parentName:"a"},"ac6695a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(accordion): add color variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3504c15cc861803dc263fb2ad3b6a478043ced33"},(0,n.kt)("inlineCode",{parentName:"a"},"3504c15"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): WIP bringing back rendering of item with callback and path modification ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e43d4340ea82afde950e5fee44a76119060fc28"},(0,n.kt)("inlineCode",{parentName:"a"},"6e43d43"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): add slide down transition and update targetRefs on close ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/96671574f5f7dd992269c42e509598f62bba516d"},(0,n.kt)("inlineCode",{parentName:"a"},"9667157"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): use renderMenuItem in order to render menu items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9ed5cbdf120ee2c92e5f14c09e5289a5abe3f8b0"},(0,n.kt)("inlineCode",{parentName:"a"},"9ed5cbd"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): replaced eionet logo with an svg variant and tweaked size of eionet to match size of eea logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32ce4623ad454edec864ad6c8b45cbf99465bede"},(0,n.kt)("inlineCode",{parentName:"a"},"32ce462"))),(0,n.kt)("li",{parentName:"ul"},"refactor(callToAction): update tertiary state colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/159668ac526a98032392bcbd2c115dc448193152"},(0,n.kt)("inlineCode",{parentName:"a"},"159668a"))),(0,n.kt)("li",{parentName:"ul"},"change(accordion): style default accordion using the grey from semantic ui ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e24907df397457bd9704905aa29ea5d7e1d396cd"},(0,n.kt)("inlineCode",{parentName:"a"},"e24907d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(accordion): add variations and create a default export ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a9c68ffe933c9d700e46db3e0cbbd9e3820c7c7"},(0,n.kt)("inlineCode",{parentName:"a"},"4a9c68f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(colors): add tertiary shades for element states ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1e24a7e13b50f1ee7bd9bd44f3b2eb8e4460c691"},(0,n.kt)("inlineCode",{parentName:"a"},"1e24a7e"))),(0,n.kt)("li",{parentName:"ul"},"change(tests): try to modify tests to use slate instead of draft ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a2e248593433a7a8bf612008c12a3a20a0049d86"},(0,n.kt)("inlineCode",{parentName:"a"},"a2e2485"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): set active class on storybook list items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/112bff195cd07e789b352ae239a148a168b4d877"},(0,n.kt)("inlineCode",{parentName:"a"},"112bff1"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): add border for active element of menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5e7dfa539dc0d126dfb057ac2d293c94b31561bb"},(0,n.kt)("inlineCode",{parentName:"a"},"5e7dfa5"))),(0,n.kt)("li",{parentName:"ul"},"change(package): condition modification of navDepth settings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dd21dadf34f87f08223be3b98c06e7a2f0714326"},(0,n.kt)("inlineCode",{parentName:"a"},"dd21dad"))),(0,n.kt)("li",{parentName:"ul"},"change(mega menu): use non variable to fix build of volto-kitkat-frontend ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ecd652405ba616c9defc86fd793f8c066c0af1e"},(0,n.kt)("inlineCode",{parentName:"a"},"3ecd652"))),(0,n.kt)("li",{parentName:"ul"},"change(header): prefix mega-menu active class for adding border ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32898cb19c20ee7696c51b99cd9df25a333ae6e9"},(0,n.kt)("inlineCode",{parentName:"a"},"32898cb"))),(0,n.kt)("li",{parentName:"ul"},"change(tests): use data-slate-editor instead of contents that was found in draft js instead of slate ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1e0413cf117c098b188e00249c323f2f718b9299"},(0,n.kt)("inlineCode",{parentName:"a"},"1e0413c"))),(0,n.kt)("li",{parentName:"ul"},"change(stories): hide variant control from button link story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/43f8c412f6762edbed9c60e613736d5b60677cd1"},(0,n.kt)("inlineCode",{parentName:"a"},"43f8c41"))),(0,n.kt)("li",{parentName:"ul"},"change(stories): hide variant control from button link story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aea712668331f5681028d961b42a05655f1113d3"},(0,n.kt)("inlineCode",{parentName:"a"},"aea7126")))),(0,n.kt)("h4",{id:"\ufe0f-others-34"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feature(theme): added context navigation component story and default style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5a6955fe935cf6a07f6593164014ed4c9e77d88f"},(0,n.kt)("inlineCode",{parentName:"a"},"5a6955f"))),(0,n.kt)("li",{parentName:"ul"},"feature(megamenu): open default accordions on mobile navigation based on pathname ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cc299c1047f96aa5f85cdc4bb8bb9b3b4fb9ca5e"},(0,n.kt)("inlineCode",{parentName:"a"},"cc299c1"))),(0,n.kt)("li",{parentName:"ul"},"fix eslint warnings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3b30282ea4df59f2d05644cae5c1d703b4dc48b3"},(0,n.kt)("inlineCode",{parentName:"a"},"3b30282"))),(0,n.kt)("li",{parentName:"ul"},"bump release version to 0.7.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fa82cbd7d50765c322bc5c7c58abb5675e0aadad"},(0,n.kt)("inlineCode",{parentName:"a"},"fa82cbd"))),(0,n.kt)("li",{parentName:"ul"},"Theme fixes, mega menu selected element both in desktop and mobile #211 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4827292a9badb02f178b7431cc63e11070784ea"},(0,n.kt)("inlineCode",{parentName:"a"},"b482729"))),(0,n.kt)("li",{parentName:"ul"},"feature(mega-menu): added menu slide down animation #208 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4360d0ef570fbfcc9989170219f7826e5ed780cf"},(0,n.kt)("inlineCode",{parentName:"a"},"4360d0e")))),(0,n.kt)("h3",{id:"065---2022-07-06"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.6.1...0.6.5"},"0.6.5")," - 2022-07-06"),(0,n.kt)("h4",{id:"-bug-fixes-27"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(header): double click to close dropdown is no longer required ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8a2ed0d1e671d12239ecaf250e68b3187c12a53"},(0,n.kt)("inlineCode",{parentName:"a"},"b8a2ed0"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): menu generation when atAGlance isn't found ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d68b03c05f7671e7ea154efe0199c29a3734fbcf"},(0,n.kt)("inlineCode",{parentName:"a"},"d68b03c"))),(0,n.kt)("li",{parentName:"ul"},"fix(menu): removed minHeight that enlarged the global menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/133be1e43d9b7778fd94388629400c5f2b707ff4"},(0,n.kt)("inlineCode",{parentName:"a"},"133be1e"))),(0,n.kt)("li",{parentName:"ul"},"fix(hero): image dimensions when full width and height isn't enabled ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4114f731cce63dc520bfd00cd487943181cec2ee"},(0,n.kt)("inlineCode",{parentName:"a"},"4114f73"))),(0,n.kt)("li",{parentName:"ul"},"fix(contentBox): removed negative z-index that hid fullwidth bg color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bd60faff53205da95d94930517f2ac830ec523d1"},(0,n.kt)("inlineCode",{parentName:"a"},"bd60faf")))),(0,n.kt)("h4",{id:"-enhancements-36"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(hero): tweaked hero block height and padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/994b6f8943c061657792df8adcbdee5da487ce43"},(0,n.kt)("inlineCode",{parentName:"a"},"994b6f8"))),(0,n.kt)("li",{parentName:"ul"},"change(item): tweak size and padding of icon when used inside item ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dbdef191e70bf59dcfddf63c8f9f9a1343266a59"},(0,n.kt)("inlineCode",{parentName:"a"},"dbdef19"))),(0,n.kt)("li",{parentName:"ul"},"change(typography): updated letterspacing values and clarified values used for certain type tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8a13bf8b3691d288209532842fb2c80962d652c0"},(0,n.kt)("inlineCode",{parentName:"a"},"8a13bf8"))),(0,n.kt)("li",{parentName:"ul"},"change(item): enable theming for icon and text color and added tertiary option ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d4444feedd1cd7e6e8f8da630b4b53a19050d1b"},(0,n.kt)("inlineCode",{parentName:"a"},"6d4444f"))),(0,n.kt)("li",{parentName:"ul"},"change(header): top section chevron sizes and margin as requested in enhancements document ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b307c74a671c10a5a6703dcb2126c3c36679c6f5"},(0,n.kt)("inlineCode",{parentName:"a"},"b307c74"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): add underline to links when applied to headers and use tertiary color by default ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/874f956c61e65ddbb6a240865f3946bb84247712"},(0,n.kt)("inlineCode",{parentName:"a"},"874f956"))),(0,n.kt)("li",{parentName:"ul"},"change(utilities): wrap in quotes h2 and h3 of quoted-wrapper ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8aa471604fb127cfa535373bb90a44b4204dd0f4"},(0,n.kt)("inlineCode",{parentName:"a"},"8aa4716"))),(0,n.kt)("li",{parentName:"ul"},"change(package): bump package version to 0.6.5 denoting bug fixes release ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0585aebaeb9e3483ba230110d99a1a875590ad66"},(0,n.kt)("inlineCode",{parentName:"a"},"0585aeb")))),(0,n.kt)("h3",{id:"061---2022-07-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.6.0...0.6.1"},"0.6.1")," - 2022-07-01"),(0,n.kt)("h4",{id:"-new-features-20"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(UnderlinedTitle): create story and necessary utilities ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8beb56b64ca76fb9f0f6df0f3554e64449a64868"},(0,n.kt)("inlineCode",{parentName:"a"},"8beb56b"))),(0,n.kt)("li",{parentName:"ul"},"feat(headers): added underlined titles with theming support ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af675616f9e002458501cf8b90742514153a298f"},(0,n.kt)("inlineCode",{parentName:"a"},"af67561")))),(0,n.kt)("h4",{id:"-enhancements-37"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(heading): move underline story and update controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2c9bfd279eafc44435d223be326f9496856c2154"},(0,n.kt)("inlineCode",{parentName:"a"},"2c9bfd2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(underlineTitle): add content box for different variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/087891535059d6c2d7d2c2accded20f6ba601bb5"},(0,n.kt)("inlineCode",{parentName:"a"},"0878915"))),(0,n.kt)("li",{parentName:"ul"},"refactor(underlinedTitle): add control for changing heading size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/211f5158bff2b437aac60f26ba63f9adb6be540a"},(0,n.kt)("inlineCode",{parentName:"a"},"211f515"))),(0,n.kt)("li",{parentName:"ul"},"refactor(underlinedTitle): Restore text variation dropdown control ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bd8c61129d2c80475af8d0e9310412d5c3a82169"},(0,n.kt)("inlineCode",{parentName:"a"},"bd8c611"))),(0,n.kt)("li",{parentName:"ul"},"refactor(utilities): add color variation for headings and text ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e3a779ec4fa3b712fcd32124f6f83ab784d2223"},(0,n.kt)("inlineCode",{parentName:"a"},"7e3a779"))),(0,n.kt)("li",{parentName:"ul"},"refactor(utilities): update border bottom utility and restore line height for headings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7fe4a7b9fee579d213fe3945a4e548ff089784bd"},(0,n.kt)("inlineCode",{parentName:"a"},"7fe4a7b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(headings): update the line height of headers according to docusaurus instructions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9da19b3e1ea1fd93431e00edf3dc9a443e94f27a"},(0,n.kt)("inlineCode",{parentName:"a"},"9da19b3")))),(0,n.kt)("h4",{id:"-internal-changes-13"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(countup): package for statistics ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/26fcd09bbd8d44119d5ca957542863be8c64836b"},(0,n.kt)("inlineCode",{parentName:"a"},"26fcd09")))),(0,n.kt)("h3",{id:"060---2022-07-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.5.5...0.6.0"},"0.6.0")," - 2022-07-01"),(0,n.kt)("h4",{id:"-bug-fixes-28"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(item): adjust the container in stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a848c46b5bf3153ec993a21a530e120bae872407"},(0,n.kt)("inlineCode",{parentName:"a"},"a848c46"))),(0,n.kt)("li",{parentName:"ul"},"fix(tag): align start for tags on mobile, update path for Tag List and add containers ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b9de8452c42ed6d16028ce147f2d7a062b895d67"},(0,n.kt)("inlineCode",{parentName:"a"},"b9de845"))),(0,n.kt)("li",{parentName:"ul"},"fix(item): update image width & height on mobiles and add 3 line clamp for description ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0cd2c46c945ff85b55183994990fae9cf450f3d1"},(0,n.kt)("inlineCode",{parentName:"a"},"0cd2c46"))),(0,n.kt)("li",{parentName:"ul"},"fix(pageheader): metadata font size on mobile to be readable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0a9b1fa7db6f0b11265f9eb4d28f25b23bedc79a"},(0,n.kt)("inlineCode",{parentName:"a"},"0a9b1fa"))),(0,n.kt)("li",{parentName:"ul"},"fix(breadcrumb): fixed variable name for breadcrumb item ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2b547eb43e0db4aa9bb63b4e4ba7f541f357fbd0"},(0,n.kt)("inlineCode",{parentName:"a"},"2b547eb")))),(0,n.kt)("h4",{id:"-enhancements-38"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(Item):create item story with custom default class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/069ae02a7cc2b15b7e6732e46f52d07eaa4502b1"},(0,n.kt)("inlineCode",{parentName:"a"},"069ae02"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pagination): add pastanage menu overrides and remove any eea theme css from default story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/508081090baaeb455130c760c6c0e7e23972d84a"},(0,n.kt)("inlineCode",{parentName:"a"},"5080810"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): update variables from px to rem ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/30eed78c170e5719ba4fb85c3a171db3f97d63c8"},(0,n.kt)("inlineCode",{parentName:"a"},"30eed78"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Item):add default item mobile padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/35184655e3225b8ad63626c8e521b5dcf59eaa3b"},(0,n.kt)("inlineCode",{parentName:"a"},"3518465"))),(0,n.kt)("li",{parentName:"ul"},"change(site): added fixes from custom ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0fe4d80586c8877d58905ec40aa7df19c2f4e32f"},(0,n.kt)("inlineCode",{parentName:"a"},"0fe4d80"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Pagination): add default pagination stopry and rename previous as Secondary ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a5e3e13b40d4d1d0c96f1efaa3a0c326d60c6d93"},(0,n.kt)("inlineCode",{parentName:"a"},"a5e3e13"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pagination): comment out secondary pagination and its styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bcf4cff1cff490718751475354b8fb32da174383"},(0,n.kt)("inlineCode",{parentName:"a"},"bcf4cff"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tags): remove content class and add flex wrap ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d6333ca7e61a588d8ffe4d0d2e02005c0aa12379"},(0,n.kt)("inlineCode",{parentName:"a"},"d6333ca"))),(0,n.kt)("li",{parentName:"ul"},"change(logo): use a real svg logo for white eea logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3b80dc7698c3dbab5d3834cc62f5102c2ace0166"},(0,n.kt)("inlineCode",{parentName:"a"},"3b80dc7"))),(0,n.kt)("li",{parentName:"ul"},"change(header): show eea information systems on tablet as well ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce82cebb554eb11a35ea2b3ee0c62bc645716476"},(0,n.kt)("inlineCode",{parentName:"a"},"ce82ceb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): update letter spacing tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f8753b7527b1bf7271102666a8662a74b2b1775"},(0,n.kt)("inlineCode",{parentName:"a"},"5f8753b"))),(0,n.kt)("li",{parentName:"ul"},"change(letterspacing): updated letter spacing positive values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b31818f292ce7ce8711084116a7b4df78cca33f0"},(0,n.kt)("inlineCode",{parentName:"a"},"b31818f"))),(0,n.kt)("li",{parentName:"ul"},"change(pageheader): add bottom margin on mobile for sharing dropdown actions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d3cda4732ec94dac91b36ef10014fbbe08a0a470"},(0,n.kt)("inlineCode",{parentName:"a"},"d3cda47"))),(0,n.kt)("li",{parentName:"ul"},"change(pageheader): removed blogger, reddit and stumbleupon sharing links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e4acc4e83c120cda59d94f04867a53e21bf322ab"},(0,n.kt)("inlineCode",{parentName:"a"},"e4acc4e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Item): add default item background color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c978c8d05355065466a8a661844237a9df103b94"},(0,n.kt)("inlineCode",{parentName:"a"},"c978c8d"))),(0,n.kt)("li",{parentName:"ul"},"change(package): bump package version ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f01f72ba6b09b6aae00c54e446bafddb48c4cd1"},(0,n.kt)("inlineCode",{parentName:"a"},"1f01f72")))),(0,n.kt)("h4",{id:"-internal-changes-14"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(item): update item image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e585e9d8c85a3627696b55c0505e29e8a8c33f7f"},(0,n.kt)("inlineCode",{parentName:"a"},"e585e9d")))),(0,n.kt)("h4",{id:"-documentation-changes-13"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(colors): token usage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c433ec6fcf190f85ab1dd81ea3e63eeb381d0c28"},(0,n.kt)("inlineCode",{parentName:"a"},"c433ec6"))),(0,n.kt)("li",{parentName:"ul"},"docs(Docusaurus): typography and spacing updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48d1269dce396aec26db1d1e2f777851a26eaa81"},(0,n.kt)("inlineCode",{parentName:"a"},"48d1269"))),(0,n.kt)("li",{parentName:"ul"},"docs(Docusaurus): various fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a972a31f7932d29d61a46da251c0c98994516365"},(0,n.kt)("inlineCode",{parentName:"a"},"a972a31"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/66d95e4fee695a20de47f5476712034f9f07f4a8"},(0,n.kt)("inlineCode",{parentName:"a"},"66d95e4")))),(0,n.kt)("h4",{id:"\ufe0f-others-35"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Tabs block custom border left/top ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca4cce05ddb603a26d729dfe31f0f11fda7563fb"},(0,n.kt)("inlineCode",{parentName:"a"},"ca4cce0"))),(0,n.kt)("li",{parentName:"ul"},"Fix sidebar tabs in Volto CSS ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c287db5abbfe068d4b255c41fd58d0433d2640c4"},(0,n.kt)("inlineCode",{parentName:"a"},"c287db5")))),(0,n.kt)("h3",{id:"055---2022-06-23"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.5.4...0.5.5"},"0.5.5")," - 2022-06-23"),(0,n.kt)("h4",{id:"-bug-fixes-29"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(contentBox): color of cards when inside content-boxes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/76a452031473f43928dee1d3ee705d06101e6a21"},(0,n.kt)("inlineCode",{parentName:"a"},"76a4520")))),(0,n.kt)("h4",{id:"-enhancements-39"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(homepage): moved fixes of homepage to custom and colored carousel arrow ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0a226ef3f5d328d45513764bec02d58241417db0"},(0,n.kt)("inlineCode",{parentName:"a"},"0a226ef")))),(0,n.kt)("h3",{id:"054---2022-06-16"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.5.3...0.5.4"},"0.5.4")," - 2022-06-16"),(0,n.kt)("h4",{id:"-bug-fixes-30"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(block-style): Content box preview in sidebar ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6362766f5e8dabf778e3864d2bb08966a55fc078"},(0,n.kt)("inlineCode",{parentName:"a"},"6362766"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): ensure transparency goes as high as the search icon ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4470e132e1e70fba3fdfb33fc63a1cc9d62700e8"},(0,n.kt)("inlineCode",{parentName:"a"},"4470e13")))),(0,n.kt)("h4",{id:"-enhancements-40"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(contentBox): add background as before element instead of using full-width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e0a5962c1b9cb0d3ef9a8d7b7208eded34eb3ce"},(0,n.kt)("inlineCode",{parentName:"a"},"7e0a596"))),(0,n.kt)("li",{parentName:"ul"},"change(content-box): content box links are now underlined ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f7976f50f5807a884522d6dba871a2757a1c5a98"},(0,n.kt)("inlineCode",{parentName:"a"},"f7976f5"))),(0,n.kt)("li",{parentName:"ul"},"change(homepage): added fixes from custom ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c3e03331d328f4fd7c6689f93bc1f1156013b8a9"},(0,n.kt)("inlineCode",{parentName:"a"},"c3e0333"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): add margin top with the height of the top section on edit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fefa6bb0f513e221ddb587f081c0e7d0c3067dfd"},(0,n.kt)("inlineCode",{parentName:"a"},"fefa6bb"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): fix default card color when inside content-boxes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6fdf3aabf9515289b36a5822e21edc5d282c4536"},(0,n.kt)("inlineCode",{parentName:"a"},"6fdf3aa"))),(0,n.kt)("li",{parentName:"ul"},"change(container): removed override of content-box-inner container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/66fe7d45adc631c3ebf0e8dd11de19d7ff60b894"},(0,n.kt)("inlineCode",{parentName:"a"},"66fe7d4")))),(0,n.kt)("h3",{id:"053---2022-06-16"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.5.2...0.5.3"},"0.5.3")," - 2022-06-16"),(0,n.kt)("h4",{id:"-bug-fixes-31"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(homepage): hero and homepage fixes for #151156 #198 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/43d4efc508750e0e9cbb93b9bffc3721be452c5a"},(0,n.kt)("inlineCode",{parentName:"a"},"43d4efc"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): fixed top section width on edit page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce5898b5ee41ea6959a2c454b3fb98216d71feb3"},(0,n.kt)("inlineCode",{parentName:"a"},"ce5898b")))),(0,n.kt)("h4",{id:"-enhancements-41"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(hero): added min height to hero-block-image-wrapper ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3cc37c027597573281710c9db98c687057d261dd"},(0,n.kt)("inlineCode",{parentName:"a"},"3cc37c0"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): spaced hero block has a 3rem margin top and bottom ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c463b033dda601bfd475b282bc0003200a053d45"},(0,n.kt)("inlineCode",{parentName:"a"},"c463b03"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): added extra top margin on hero-block-body from tablet and up within homepage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/64142c3c45f6a8ea6502842055a2341dcf16088c"},(0,n.kt)("inlineCode",{parentName:"a"},"64142c3"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): tweak min height of hero block ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e1271b4b5fdcd8205f0bec8b88ab9ae31f62251f"},(0,n.kt)("inlineCode",{parentName:"a"},"e1271b4"))),(0,n.kt)("li",{parentName:"ul"},"change(card,contentBox): use inherit for text color to inherit black from body ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c1ba3b6ddc16ddc7394aba8d78cad73b5a8c34cb"},(0,n.kt)("inlineCode",{parentName:"a"},"c1ba3b6"))),(0,n.kt)("li",{parentName:"ul"},"change(container): on section-edit modify only left and right padding values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fe6e3ec764643ec01e20ae9dbdde921774ef04cd"},(0,n.kt)("inlineCode",{parentName:"a"},"fe6e3ec"))),(0,n.kt)("li",{parentName:"ul"},"change(utilities): bump z-index of overlay class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ede3209556b620d2252bb03d4c994a92b6708fd2"},(0,n.kt)("inlineCode",{parentName:"a"},"ede3209"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): fixed variable reference for margin of body from homepage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/092b90b2a902b71cc96132ca3c96108edda56342"},(0,n.kt)("inlineCode",{parentName:"a"},"092b90b")))),(0,n.kt)("h3",{id:"052---2022-06-14"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.5.1...0.5.2"},"0.5.2")," - 2022-06-14"),(0,n.kt)("h4",{id:"-new-features-21"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(contentBox) : add new Content Box component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ebbb47fe685f9809aa3572263be376d9688371e"},(0,n.kt)("inlineCode",{parentName:"a"},"2ebbb47"))),(0,n.kt)("li",{parentName:"ul"},"feat(ContentBox): Add primary, secondary, tertiary themes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87cb2fe7e4cd5c2872299756f493e371abcbb05f"},(0,n.kt)("inlineCode",{parentName:"a"},"87cb2fe"))),(0,n.kt)("li",{parentName:"ul"},"feat(ContentBox): Update storybook with available themes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93b26b2f5f1d627aa8049df61257499e4798dd79"},(0,n.kt)("inlineCode",{parentName:"a"},"93b26b2")))),(0,n.kt)("h4",{id:"-enhancements-42"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(contentBox): restructure the component to be more flexible ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f0d2de67e43fafa10052871f99ac841c83cf8157"},(0,n.kt)("inlineCode",{parentName:"a"},"f0d2de6")))),(0,n.kt)("h4",{id:"-internal-changes-15"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(contentBox) : add lint changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5aaf740594f0001b1672bb6dc18d973f55c881f0"},(0,n.kt)("inlineCode",{parentName:"a"},"5aaf740")))),(0,n.kt)("h4",{id:"\ufe0f-others-36"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"perf(eol): change to lf ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/78b2955ff73d9436134d1a6399040b2d7c7f5714"},(0,n.kt)("inlineCode",{parentName:"a"},"78b2955"))),(0,n.kt)("li",{parentName:"ul"},"Cleanup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2b128dface95b560588a343f1ddf7bbaf3efb320"},(0,n.kt)("inlineCode",{parentName:"a"},"2b128df")))),(0,n.kt)("h3",{id:"051---2022-06-13"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.5.0...0.5.1"},"0.5.1")," - 2022-06-13"),(0,n.kt)("h4",{id:"-enhancements-43"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(header): changed homepage text color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/64ce8b61f8f2150513e09bf2926b48aa2ae1071c"},(0,n.kt)("inlineCode",{parentName:"a"},"64ce8b6"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): added styles for adding dark overlay to hero ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bf1d292fecfa8a6b222558f0d93f48e19bf6b8ea"},(0,n.kt)("inlineCode",{parentName:"a"},"bf1d292"))),(0,n.kt)("li",{parentName:"ul"},"change(homepage): hide stagingBanner on homepage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fb6e319dd10f4d148cc8f3b33dafc43280a0254f"},(0,n.kt)("inlineCode",{parentName:"a"},"fb6e319"))),(0,n.kt)("li",{parentName:"ul"},"change(header): use variable for homepage hero-block padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/89ff3441f269281ffb3da32cd3e5c64715b3204b"},(0,n.kt)("inlineCode",{parentName:"a"},"89ff344"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): modified grey-4 color to point to a 10% shade from original color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b406283e61c7356bec9d453567cd1ccde496880d"},(0,n.kt)("inlineCode",{parentName:"a"},"b406283"))),(0,n.kt)("li",{parentName:"ul"},"change(header): added min-height for mega menu needed for 1 items menus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/18814f48fb743c88d05554e9a1773f8d85dec86c"},(0,n.kt)("inlineCode",{parentName:"a"},"18814f4"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): hero section block integration #192 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ea2f40583951016c164c9abdf22d8e809d207fe"},(0,n.kt)("inlineCode",{parentName:"a"},"4ea2f40")))),(0,n.kt)("h4",{id:"\ufe0f-others-37"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Add hero block style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fa39656fd661d8af95f483a6f33a08e4c93c42f1"},(0,n.kt)("inlineCode",{parentName:"a"},"fa39656"))),(0,n.kt)("li",{parentName:"ul"},"Add padding if hero block is not full-width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/808b83957d6a866cc31c928f414fa8fa5da517a1"},(0,n.kt)("inlineCode",{parentName:"a"},"808b839"))),(0,n.kt)("li",{parentName:"ul"},"Cleanup available languages ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0c490512a6a6524efe9a37b4b61ab0061a240abb"},(0,n.kt)("inlineCode",{parentName:"a"},"0c49051"))),(0,n.kt)("li",{parentName:"ul"},"Use 1.5 rem ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1125cd7c65332fc5961ffbbbd2d2ab6bcc8b1b5b"},(0,n.kt)("inlineCode",{parentName:"a"},"1125cd7")))),(0,n.kt)("h3",{id:"050---2022-06-11"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.4.5...0.5.0"},"0.5.0")," - 2022-06-11"),(0,n.kt)("h4",{id:"-new-features-22"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(hero): added storybook implementation of hero component #172 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/17b9d1693e31bf7b3b41ca84be7bd21f07065674"},(0,n.kt)("inlineCode",{parentName:"a"},"17b9d16"))),(0,n.kt)("li",{parentName:"ul"},"feat(hero): add hero block component and stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6019fc843ec14a8afc7558e92c2d4b4bb14ee199"},(0,n.kt)("inlineCode",{parentName:"a"},"6019fc8")))),(0,n.kt)("h4",{id:"-bug-fixes-32"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(header): Internal links in mega menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d8ca13558c3e8c336800791f2fea8a8d33a2b602"},(0,n.kt)("inlineCode",{parentName:"a"},"d8ca135"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): show active menu when clicking on children ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a54fa67a1a92e2ab4216e6d149f66e1ee53aab89"},(0,n.kt)("inlineCode",{parentName:"a"},"a54fa67"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): accessibility and dropdown possition fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/505ac36a27d86e620fb5af515a0b8b5979610f0a"},(0,n.kt)("inlineCode",{parentName:"a"},"505ac36"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): fix accessibility issue by David ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/783dcec0d140e6e6e568d0f82833dcbf8a5c7d3d"},(0,n.kt)("inlineCode",{parentName:"a"},"783dcec"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): dropdowns disappear on resize ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/52338fd3e711f4918612e052dc2034a8d9bd40bd"},(0,n.kt)("inlineCode",{parentName:"a"},"52338fd"))),(0,n.kt)("li",{parentName:"ul"},"fix(header-topdropdown): dedupe html elements for topdropdowns ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cd8a2a7ea091e81b736438f7c2a87c254af1b092"},(0,n.kt)("inlineCode",{parentName:"a"},"cd8a2a7"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): transparency class should apply on the current bg color or image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f9a0033c5538cb19f08f26cf28d47954cc52607d"},(0,n.kt)("inlineCode",{parentName:"a"},"f9a0033"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): mobile dropdown now visible ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/34371b436f2ec100f3920f78de49983ba16679b0"},(0,n.kt)("inlineCode",{parentName:"a"},"34371b4"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): dropdown disappears after window resize #116 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fc7dd8bd7911421fb734a696a2dd5d3ad3b652b0"},(0,n.kt)("inlineCode",{parentName:"a"},"fc7dd8b"))),(0,n.kt)("li",{parentName:"ul"},"fix(header-topdropdown): dedupe html dropdown elements for topdropdowns #115 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f10a7a8743a5fb2cecd0c3374ec9d894e914143f"},(0,n.kt)("inlineCode",{parentName:"a"},"f10a7a8")))),(0,n.kt)("h4",{id:"-enhancements-44"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): update mega menu in header component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2d1ce454553d116efa96288079b8b77649e10abb"},(0,n.kt)("inlineCode",{parentName:"a"},"2d1ce45"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update structure and variables of top bar ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af709094f94f0cc2e2309b1aedb376e45dc7f136"},(0,n.kt)("inlineCode",{parentName:"a"},"af70909"))),(0,n.kt)("li",{parentName:"ul"},"change(header): renamed mega menu items href attribute to url ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ed8144589f87a9ad219c97193863c999a72cb6d"},(0,n.kt)("inlineCode",{parentName:"a"},"3ed8144"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update main section and and add color variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2f0fd1de7c04eff4b2a9b62d03dd13a1b0d69bc"},(0,n.kt)("inlineCode",{parentName:"a"},"f2f0fd1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): minor updates on colors and widths ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a70129fd929fedb344a47e049cca94274e84a3b1"},(0,n.kt)("inlineCode",{parentName:"a"},"a70129f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero): add full-heigh control to adjust height ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a45cb7c599cdc11426207001e67d8f7d727233fe"},(0,n.kt)("inlineCode",{parentName:"a"},"a45cb7c"))),(0,n.kt)("li",{parentName:"ul"},"change(header): disable sticky setting until feature is more stable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1d7af954c85cb6a8a657c1625e4ae863e562346a"},(0,n.kt)("inlineCode",{parentName:"a"},"1d7af95"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero):make button variant and inverted different button controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e182ca9ecdb76507205d84f83cad6a79dd74a03"},(0,n.kt)("inlineCode",{parentName:"a"},"7e182ca"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header):main bar sticky on scroll up ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9c9e7c6f9651c0663a1eab1856d7324a73afb2de"},(0,n.kt)("inlineCode",{parentName:"a"},"9c9e7c6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(headings): update heading sizes for mobile ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19f3ccacaf2c744b5f5c2ec8635773de7ef0016b"},(0,n.kt)("inlineCode",{parentName:"a"},"19f3cca"))),(0,n.kt)("li",{parentName:"ul"},"change(header): hide first link(home) from header menu on site ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ae7f3b9385620eb3d840dd90f512e37cd8556a6d"},(0,n.kt)("inlineCode",{parentName:"a"},"ae7f3b9"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): typo correction and key setting on list.items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/96d2c4fbfa722d22a215e8d27f1400e65fe9476e"},(0,n.kt)("inlineCode",{parentName:"a"},"96d2c4f"))),(0,n.kt)("li",{parentName:"ul"},"change(header): use Link instead of a tag for menu items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9812b3fba7b8305399d6972daf135b8a2d88e876"},(0,n.kt)("inlineCode",{parentName:"a"},"9812b3f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add control for inverted logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/023ca45e6f263166211cbea0d63b1938d11221da"},(0,n.kt)("inlineCode",{parentName:"a"},"023ca45"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero): move quoted utility to h2 tag ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7376676b4875494f16c49945f6b5dac19c6b8009"},(0,n.kt)("inlineCode",{parentName:"a"},"7376676"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add link for menu title inside desktop mega menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24355d000b2bd808b2031cd2b78e60cafb9ad5b1"},(0,n.kt)("inlineCode",{parentName:"a"},"24355d0"))),(0,n.kt)("li",{parentName:"ul"},"refactor(utilities): update hex with color token ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8dc65ef55a62dcb32b6eb8a684524a8dc1fa6ba6"},(0,n.kt)("inlineCode",{parentName:"a"},"8dc65ef"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): and mega menu to latest spec #114 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/44fcf68be242f97ced852b28ac3ab820dc0e1045"},(0,n.kt)("inlineCode",{parentName:"a"},"44fcf68"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update search input and file endings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/afab36f96f245e197eff528cb1d9e6fea45bc7ba"},(0,n.kt)("inlineCode",{parentName:"a"},"afab36f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add control that toggles transparency class on main section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8d4bdb9c527f102ffd3718f32bf1a43309a9bb4"},(0,n.kt)("inlineCode",{parentName:"a"},"b8d4bdb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): restore union dropdown after implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e98bab497ee10ad89d2dfed76c7117b633206fe"},(0,n.kt)("inlineCode",{parentName:"a"},"7e98bab"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): minor responsive fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/16a000634505c9e8f8b310860a30b62798a0fb87"},(0,n.kt)("inlineCode",{parentName:"a"},"16a0006"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero): align hero's text and meta seperately ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4fa958f7c7cc6d331a8eb7aaf25dc44d6cd3632a"},(0,n.kt)("inlineCode",{parentName:"a"},"4fa958f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero):add button variant controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f362a7b2ec273131fa0876f23b74c740c7217b3a"},(0,n.kt)("inlineCode",{parentName:"a"},"f362a7b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update search input ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/368962eabb668e2ec1bdcd18ae81658e7b1d911b"},(0,n.kt)("inlineCode",{parentName:"a"},"368962e"))),(0,n.kt)("li",{parentName:"ul"},"change(header): mark top level active menu item ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/665c449bc2667cc1471a4b97923c897ad3506792"},(0,n.kt)("inlineCode",{parentName:"a"},"665c449"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero):prettier & style changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d84688440417a430afd9fd24f4c8cfeef0121203"},(0,n.kt)("inlineCode",{parentName:"a"},"d846884"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add control for main section stickiness ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2f07572f78074137e7e6a49585273210ed5cedcb"},(0,n.kt)("inlineCode",{parentName:"a"},"2f07572"))),(0,n.kt)("li",{parentName:"ul"},"change(header): use viewport width for changing mobile text in header dropdowns ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b50fa585c0abeedc04a46395f08e50a9e112c430"},(0,n.kt)("inlineCode",{parentName:"a"},"b50fa58"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add fluid font sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f2743e39107fd1bd00a54e03bf92963eb9853f2"},(0,n.kt)("inlineCode",{parentName:"a"},"5f2743e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header) add position sticky & transparent for main section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/29df772edfe23b1752aa3d184659eea90c3c9221"},(0,n.kt)("inlineCode",{parentName:"a"},"29df772"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero): update variables with new design tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1d9792231c50f12fd68364e201054f6ab0926665"},(0,n.kt)("inlineCode",{parentName:"a"},"1d97922"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Language List): render language dropdown as ul and li elements ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3617442da78af07d3f473d0c43c47dd48c9b2ac3"},(0,n.kt)("inlineCode",{parentName:"a"},"3617442"))),(0,n.kt)("li",{parentName:"ul"},"change(header): introduced item class to the mega menu link content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/00ca376ea4cf1de4851e84567b97c374ee7f66e3"},(0,n.kt)("inlineCode",{parentName:"a"},"00ca376"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Language List): add less variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7ccc1ccf57419b6eecbf71d479db72b84428d43a"},(0,n.kt)("inlineCode",{parentName:"a"},"7ccc1cc"))),(0,n.kt)("li",{parentName:"ul"},"change(header): disabled active menu when clicking on globalnav links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3f7b5eedb038b51fbae8a14a683dc6adc919549b"},(0,n.kt)("inlineCode",{parentName:"a"},"3f7b5ee"))),(0,n.kt)("li",{parentName:"ul"},"change(header): target link instead of span directly ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9e865fbb5b256196756c3d84de397296ac0b447a"},(0,n.kt)("inlineCode",{parentName:"a"},"9e865fb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): remove unused imports ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e232db6ce0b2553be79d98d8497fa06f548b772"},(0,n.kt)("inlineCode",{parentName:"a"},"7e232db")))),(0,n.kt)("h4",{id:"\ufe0f-others-38"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Add item themes; override .block .ui.image width based on size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/06010db21398638d46d2e007317d72a7aff7e7d9"},(0,n.kt)("inlineCode",{parentName:"a"},"06010db"))),(0,n.kt)("li",{parentName:"ul"},"Move item icon themes to item.overrides ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/31e8921f4ee4d92ba3a9c58275b41dd3101cffd2"},(0,n.kt)("inlineCode",{parentName:"a"},"31e8921"))),(0,n.kt)("li",{parentName:"ul"},"Override only the width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8d4927084e5daedcb69e6f3a57cab73a9016a55f"},(0,n.kt)("inlineCode",{parentName:"a"},"8d49270"))),(0,n.kt)("li",{parentName:"ul"},"Override tile image in .block parrent ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/005655ddff6f45e211f1ff8156b0b7efa1e47a2e"},(0,n.kt)("inlineCode",{parentName:"a"},"005655d"))),(0,n.kt)("li",{parentName:"ul"},"Update package.json ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9dc38165a95deca1faf2dfccdc03fd6cab3d8c54"},(0,n.kt)("inlineCode",{parentName:"a"},"9dc3816"))),(0,n.kt)("li",{parentName:"ul"},"feature(item): added themes to item icons #190 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a6a2907df09575a18fb6e81dc52e8d6651eff118"},(0,n.kt)("inlineCode",{parentName:"a"},"a6a2907"))),(0,n.kt)("li",{parentName:"ul"},"update storybook header.topdropdown ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e58ac0821af56c06272e3373383647cbbff20978"},(0,n.kt)("inlineCode",{parentName:"a"},"e58ac08"))),(0,n.kt)("li",{parentName:"ul"},"use volto-screen-helper width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea156aad1100166ba78635163cfacdcfb913c1d4"},(0,n.kt)("inlineCode",{parentName:"a"},"ea156aa"))),(0,n.kt)("li",{parentName:"ul"},"Add divider content for metadata field in Banner ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/327ad1c5fdca0d376d04fd36084b940e5dd016ab"},(0,n.kt)("inlineCode",{parentName:"a"},"327ad1c"))),(0,n.kt)("li",{parentName:"ul"},"rename to viewportWidth ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32162e7c695774bbb68ac63a0008e8b148f1e9f5"},(0,n.kt)("inlineCode",{parentName:"a"},"32162e7"))),(0,n.kt)("li",{parentName:"ul"},"don't connect component to store ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/470b8bade5e8f2eaabb20a7bb02c8e82ca42f8a0"},(0,n.kt)("inlineCode",{parentName:"a"},"470b8ba"))),(0,n.kt)("li",{parentName:"ul"},"Add end of line ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51639d804a2b84f66373fb77c569bcc43b22e303"},(0,n.kt)("inlineCode",{parentName:"a"},"51639d8"))),(0,n.kt)("li",{parentName:"ul"},"behave as mobile under 480 only ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/11b99e15cb83245a32bb04f3937f5b95a60b1e95"},(0,n.kt)("inlineCode",{parentName:"a"},"11b99e1"))),(0,n.kt)("li",{parentName:"ul"},"make it account for all mobile-s,m,l ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/69e23ae8d12042f241dc53c9e296c340d5b17089"},(0,n.kt)("inlineCode",{parentName:"a"},"69e23ae")))),(0,n.kt)("h3",{id:"045---2022-06-08"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.4.4...0.4.5"},"0.4.5")," - 2022-06-08"),(0,n.kt)("h4",{id:"-enhancements-45"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(tabs): Add style for tabs accordion template #187 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fb8adbf84ac564a14d45bb6e8f4e1661811672d5"},(0,n.kt)("inlineCode",{parentName:"a"},"fb8adbf"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): avoid react error by providing key prop to grid column ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef0b1937d614a889a0c2117e483a834ed1aec1e3"},(0,n.kt)("inlineCode",{parentName:"a"},"ef0b193")))),(0,n.kt)("h4",{id:"\ufe0f-others-39"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Cleanup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4b9637ebd2d6c015f8d4323551c6cbc4b7506df"},(0,n.kt)("inlineCode",{parentName:"a"},"d4b9637"))),(0,n.kt)("li",{parentName:"ul"},"Add style for tabs accordion template ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a10998372a268b99991f7dda55103149f29d00cb"},(0,n.kt)("inlineCode",{parentName:"a"},"a109983")))),(0,n.kt)("h3",{id:"044---2022-06-08"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.4.3...0.4.4"},"0.4.4")," - 2022-06-08"),(0,n.kt)("h4",{id:"-new-features-23"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(divider): create story for divider ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b10a2e08b14962bed9f13317754f4124ee60d313"},(0,n.kt)("inlineCode",{parentName:"a"},"b10a2e0")))),(0,n.kt)("h4",{id:"-bug-fixes-33"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(divider): restore space between classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c595c152c144463f33757157ed7d6797ae31ceed"},(0,n.kt)("inlineCode",{parentName:"a"},"c595c15"))),(0,n.kt)("li",{parentName:"ul"},"fix(divider): Text colors and transform ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e524e1002bb0700ea69782cf5a95c6073ab383d2"},(0,n.kt)("inlineCode",{parentName:"a"},"e524e10"))),(0,n.kt)("li",{parentName:"ul"},"fix(footer): story aria labels for social media links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/254bdc7ba944943f5d08a71f9d0a3a31bdc06044"},(0,n.kt)("inlineCode",{parentName:"a"},"254bdc7")))),(0,n.kt)("h4",{id:"-enhancements-46"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update logos and less structure ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/66b8e0f12825968d94f7d572f2823d9a8a3a239b"},(0,n.kt)("inlineCode",{parentName:"a"},"66b8e0f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): first footer updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d18a2ee59d0deb143075d8dfeb949898ad1f6399"},(0,n.kt)("inlineCode",{parentName:"a"},"d18a2ee"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): logo updates and adjustments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/101bc9dfe4136240457f335de867a83c28d59339"},(0,n.kt)("inlineCode",{parentName:"a"},"101bc9d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): use tokens and adjust spacing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2cb166949913f725271050e863b38e7630748135"},(0,n.kt)("inlineCode",{parentName:"a"},"2cb1669"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): moved SubFooter logic to SubFooter.jsx from Footer story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/902383a0bb3446dc69237099bd429ead5e30a6c1"},(0,n.kt)("inlineCode",{parentName:"a"},"902383a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Divider):add divider with content inside story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2d66dca901fa189d69b65239dc34b1969097be8"},(0,n.kt)("inlineCode",{parentName:"a"},"e2d66dc"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): added managed by section as properties ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9328fc3084baf22439e1892d256d9a167b911849"},(0,n.kt)("inlineCode",{parentName:"a"},"9328fc3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(divider): remove custom divider ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4870d2252ad216e82213fa1f94cc39609ae676d"},(0,n.kt)("inlineCode",{parentName:"a"},"d4870d2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Divider_:remove green color class & add tertiary ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/95f30186bc1768e08f00ad7d5ffa2a70402ac553"},(0,n.kt)("inlineCode",{parentName:"a"},"95f3018"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): use remix icons for social links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5ef9aa2cebb6f96857a1920cefbf7e367b4d7c28"},(0,n.kt)("inlineCode",{parentName:"a"},"5ef9aa2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Divider):remove clean class and use fitted prop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8d2be350dcc44fd56b5fbfb791fb6b2a45bd8a52"},(0,n.kt)("inlineCode",{parentName:"a"},"8d2be35"))),(0,n.kt)("li",{parentName:"ul"},"change(Divider): Rename color property to theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0deffc823609d23131a85bc180e4a3f5a67a64aa"},(0,n.kt)("inlineCode",{parentName:"a"},"0deffc8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update links and logo align ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7afbab9b37982a557ac8bfa4430205ce912c3b8b"},(0,n.kt)("inlineCode",{parentName:"a"},"7afbab9"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): tweaked column sizes to the values before my changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fdf271868e44bce2904cc28c6fa924ee4c9ba759"},(0,n.kt)("inlineCode",{parentName:"a"},"fdf2718"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): to latest figma design #182 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e0ba2b659db9dc1b140d853840a06bd3ce31cab"},(0,n.kt)("inlineCode",{parentName:"a"},"3e0ba2b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): move subfooter logic to the proper component #185 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/303457719128c9699dd34939bd8db2b647977667"},(0,n.kt)("inlineCode",{parentName:"a"},"3034577"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b0b872b1415c9792a5886f619195f9c0471ea564"},(0,n.kt)("inlineCode",{parentName:"a"},"b0b872b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(testimonial): update divider ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/784450abdf395318fe89d8d3d0a1e398393cc93c"},(0,n.kt)("inlineCode",{parentName:"a"},"784450a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(testimonial): changed divider color to secondary ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/84282f960ab22ccb8403e975c055c61d1023193a"},(0,n.kt)("inlineCode",{parentName:"a"},"84282f9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(divider): remove custom divider from theme config ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a0409e8df3c9ba043717140455369a3630f0da85"},(0,n.kt)("inlineCode",{parentName:"a"},"a0409e8")))),(0,n.kt)("h4",{id:"-documentation-changes-14"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(divider): switch to secondary color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/239844be374a2f6bc4667e7ab3d2f52bfdc181ad"},(0,n.kt)("inlineCode",{parentName:"a"},"239844b"))),(0,n.kt)("li",{parentName:"ul"},"docs(divider): showcase path fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5ea03f60034edc918054aa273e44b84b2537716"},(0,n.kt)("inlineCode",{parentName:"a"},"d5ea03f")))),(0,n.kt)("h4",{id:"\ufe0f-others-40"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Remove unnecessary spaces ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d137981430809345bfb3ad494e7ab981c93c3e51"},(0,n.kt)("inlineCode",{parentName:"a"},"d137981"))),(0,n.kt)("li",{parentName:"ul"},"lint fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/657cf4ed917c4ff992aa033c3d9f4884a949d86d"},(0,n.kt)("inlineCode",{parentName:"a"},"657cf4e"))),(0,n.kt)("li",{parentName:"ul"},"perf(storybook): added storybook favicon ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/38eabc3124c85dd56bf5c68c0fb1e967c39055ec"},(0,n.kt)("inlineCode",{parentName:"a"},"38eabc3")))),(0,n.kt)("h3",{id:"043---2022-06-03"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.4.2...0.4.3"},"0.4.3")," - 2022-06-03"),(0,n.kt)("h4",{id:"-bug-fixes-34"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(edit): Fix columns/accordion inner toolbar padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fafbb525baa60c339906dc6a33d2f9418d050be6"},(0,n.kt)("inlineCode",{parentName:"a"},"fafbb52")))),(0,n.kt)("h4",{id:"-enhancements-47"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): completed removal of description from guides ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/42424b9213ece8d8df84d40f1b73e142cb0ffc6b"},(0,n.kt)("inlineCode",{parentName:"a"},"42424b9")))),(0,n.kt)("h3",{id:"042---2022-06-02"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.4.1...0.4.2"},"0.4.2")," - 2022-06-02"),(0,n.kt)("h4",{id:"-enhancements-48"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): moved color swatches around in the color guide ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8a395fce52a32cf92449a24d3d4cce5abf25a284"},(0,n.kt)("inlineCode",{parentName:"a"},"8a395fc"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): removed description from components and introduced category listing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f220bf0785f5aaede8c25c4164120b09de67b018"},(0,n.kt)("inlineCode",{parentName:"a"},"f220bf0"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): rename gap to space and added em spaces ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f5b042d311518ec3fb32c7f259c39ff62d4547f8"},(0,n.kt)("inlineCode",{parentName:"a"},"f5b042d"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): moved extra docs to webdev section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1ce0797b91418272e4e405467cd1468292620005"},(0,n.kt)("inlineCode",{parentName:"a"},"1ce0797"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): moved md_components files into webdev/md_components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/73c1c08a270d504fa6f2ba2579bcb3e6e25fb112"},(0,n.kt)("inlineCode",{parentName:"a"},"73c1c08"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): added category yml for all sections ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/17405728e3f44828da50890b9fc0f4e8a07f8bf2"},(0,n.kt)("inlineCode",{parentName:"a"},"1740572"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): color guideline updates and spacing tokens documentation #148 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c1154ba172c3b3b40b565c2bcb590f1a5e6b25a4"},(0,n.kt)("inlineCode",{parentName:"a"},"c1154ba"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): modified story links to avoid broken usage tabs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/78dc8d8f4e7cade3ab0e911e6dc002eefc1e7986"},(0,n.kt)("inlineCode",{parentName:"a"},"78dc8d8"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): renamed several file id's so that they match the incremental naming sequence ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/11299c9a4c41ca901926f852227dbca0bc1aee17"},(0,n.kt)("inlineCode",{parentName:"a"},"11299c9")))),(0,n.kt)("h4",{id:"-documentation-changes-15"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(Docusaurus): timeline, testimonial, quote and tags ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aaa54ecbe182872ffc7fff275d5065ebe790d348"},(0,n.kt)("inlineCode",{parentName:"a"},"aaa54ec"))),(0,n.kt)("li",{parentName:"ul"},"docs(spacing): add relative gap tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/92abc8fff2c7006e2c64684048e7783216a230bb"},(0,n.kt)("inlineCode",{parentName:"a"},"92abc8f"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): updated colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a28c99e60867c1eaa1b7b68d4154ccaa8c9ef958"},(0,n.kt)("inlineCode",{parentName:"a"},"a28c99e"))),(0,n.kt)("li",{parentName:"ul"},"docs(tags/content): new page about tags and content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/60be40268a77606c53fc45641bc22166b50b75e7"},(0,n.kt)("inlineCode",{parentName:"a"},"60be402"))),(0,n.kt)("li",{parentName:"ul"},"docs(Docusaurus): labeled icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6a0f61ede3a36c7d66d9b3091b93b0b5ff9a445"},(0,n.kt)("inlineCode",{parentName:"a"},"f6a0f61"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): add font size and line height tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ff65e47cfe56eb3efe976300b764ba13f8685ce"},(0,n.kt)("inlineCode",{parentName:"a"},"2ff65e4"))),(0,n.kt)("li",{parentName:"ul"},"docs(spacing): add spacing gap tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2d53727f8e817588421efea464e849c9f9e16dce"},(0,n.kt)("inlineCode",{parentName:"a"},"2d53727"))),(0,n.kt)("li",{parentName:"ul"},"docs(spacing): add missing gaps ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/442db468830150c8e4ad5f91775fc5b3c47dd655"},(0,n.kt)("inlineCode",{parentName:"a"},"442db46"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): minor fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e66513f08cff598881ce1051b482ddadf8e0593"},(0,n.kt)("inlineCode",{parentName:"a"},"6e66513"))),(0,n.kt)("li",{parentName:"ul"},"docs(spacing): aligned images ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e946fe59457b861a31939e99adf4b380777e01e0"},(0,n.kt)("inlineCode",{parentName:"a"},"e946fe5"))),(0,n.kt)("li",{parentName:"ul"},"docs(spacing): new image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fcd3294d53db76580b8bffc9678a09fd65b33113"},(0,n.kt)("inlineCode",{parentName:"a"},"fcd3294")))),(0,n.kt)("h4",{id:"\ufe0f-others-41"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"merge changes from develop into docusaurus token documentation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a9401384ddf5fcfbf29e50d34f3d7851be85f19a"},(0,n.kt)("inlineCode",{parentName:"a"},"a940138"))),(0,n.kt)("li",{parentName:"ul"},"perf(docs): restructuring order ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f4134d81d1cc59b8ba0d8669415b5eb31c0513d"},(0,n.kt)("inlineCode",{parentName:"a"},"8f4134d")))),(0,n.kt)("h3",{id:"041---2022-06-02"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.4.0...0.4.1"},"0.4.1")," - 2022-06-02"),(0,n.kt)("h4",{id:"-new-features-24"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(languageLabeledIcon) : add new component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/110558eeec37d5b5f616a95298a313ba230dd6f4"},(0,n.kt)("inlineCode",{parentName:"a"},"110558e"))),(0,n.kt)("li",{parentName:"ul"},"feat(LanguageLabeledIcon):add new component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d00200c278e1dab02b449b460a325e0f2e7b8ccd"},(0,n.kt)("inlineCode",{parentName:"a"},"d00200c"))),(0,n.kt)("li",{parentName:"ul"},"feat(newTabLabeledIcon) : add new component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f5cd31257a306a58c1d9cdbf7cb428701412369"},(0,n.kt)("inlineCode",{parentName:"a"},"8f5cd31"))),(0,n.kt)("li",{parentName:"ul"},"feat(labeledIconGroup) : add new component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/787d648342d78c4f9d28fde9d08e83089ef7b08f"},(0,n.kt)("inlineCode",{parentName:"a"},"787d648"))),(0,n.kt)("li",{parentName:"ul"},"feat(DownLoadLabeledIcon) : add new component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6ea2fa1ec17ce235401a8ac741afa8fede920d26"},(0,n.kt)("inlineCode",{parentName:"a"},"6ea2fa1")))),(0,n.kt)("h4",{id:"-bug-fixes-35"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(LabeledIcon) : fix lint errors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91b042f8c16bd3e99659c1c24a5f2a946c72b03f"},(0,n.kt)("inlineCode",{parentName:"a"},"91b042f"))),(0,n.kt)("li",{parentName:"ul"},"fix(LabeledIconGroup) : fix links for tests ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/daa10653ca37f3e83302e2ebcc566b5f5ec4c4d9"},(0,n.kt)("inlineCode",{parentName:"a"},"daa1065"))),(0,n.kt)("li",{parentName:"ul"},"fix(LanguageLabeledIcon):bug fix & languages change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1436e2bc270f8f079f07b7909254bd2e6e087084"},(0,n.kt)("inlineCode",{parentName:"a"},"1436e2b"))),(0,n.kt)("li",{parentName:"ul"},"fix(LabeledIconGroup):fix based on Langauge & Download Labeled icon components changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3015864ce740f534aa204402f85a9f392e342513"},(0,n.kt)("inlineCode",{parentName:"a"},"3015864"))),(0,n.kt)("li",{parentName:"ul"},"fix(newTabLabeledIcon) : add link item ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b1a9ada3dd7dae9e1841cfde5319a6ab37b15de2"},(0,n.kt)("inlineCode",{parentName:"a"},"b1a9ada"))),(0,n.kt)("li",{parentName:"ul"},"fix(Labeled Icons):minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/00f3022cdc2bfad634707f0d6d05768868f599be"},(0,n.kt)("inlineCode",{parentName:"a"},"00f3022")))),(0,n.kt)("h4",{id:"-enhancements-49"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcons): adjust new tab labeled icon to figma and replace px with rems ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/904615d789ea711678f43ce9f9d02a450289031f"},(0,n.kt)("inlineCode",{parentName:"a"},"904615d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(LanguageLabeledIcon):implement with pop up ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0f3dd8f0388484f94351a0ab0798ab53e84c9229"},(0,n.kt)("inlineCode",{parentName:"a"},"0f3dd8f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcon): add group wrapper in labeled icon stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4b7dd314230145b6239fd800d41f546ab5d9eebb"},(0,n.kt)("inlineCode",{parentName:"a"},"4b7dd31"))),(0,n.kt)("li",{parentName:"ul"},"refactor(DownloadLabeledIcon):implement with pop up ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aa61f9b7d449c08c08bc4c004da6a0458598c828"},(0,n.kt)("inlineCode",{parentName:"a"},"aa61f9b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcons): adjust language labeled icon to figma ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5741e3d2e95665ef12670335b12d29cfbf998fdc"},(0,n.kt)("inlineCode",{parentName:"a"},"5741e3d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcons): adjust download icon to figma and replace px with rems ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ae85307a62526fed75ef0b1d37ad59076370b5a"},(0,n.kt)("inlineCode",{parentName:"a"},"4ae8530"))),(0,n.kt)("li",{parentName:"ul"},"refactor(LanguageLabeledIcons):minor storybook change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/78f55442a80cbc2f716ba81274ed08204e3c502a"},(0,n.kt)("inlineCode",{parentName:"a"},"78f5544"))),(0,n.kt)("li",{parentName:"ul"},"refactor(LanguageLabeledIcon): set language code to uppercase and minor storybook change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac286931282c0a69bc6d7803e96cbe302db8994f"},(0,n.kt)("inlineCode",{parentName:"a"},"ac28693"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcon): adjust paddings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9c1ecddc52c81be1d952d0af67862a284eba9eec"},(0,n.kt)("inlineCode",{parentName:"a"},"9c1ecdd"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcons): update margins for group labeled icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5fa5ca9103a5d8ad1510c90cc8c46d0c82abcc63"},(0,n.kt)("inlineCode",{parentName:"a"},"5fa5ca9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcons): add variable for icon color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f9d3cba5115c5c91aaaca49c1f834950400673a"},(0,n.kt)("inlineCode",{parentName:"a"},"9f9d3cb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcons): update colors on download links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c04264229c91bfdea927fd22f4ee1e8ddbcebd5c"},(0,n.kt)("inlineCode",{parentName:"a"},"c042642")))),(0,n.kt)("h4",{id:"-internal-changes-16"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(labeledIconGroup) : lint changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/535cee4795dff75b35856cb4406a9bd33ee07ca4"},(0,n.kt)("inlineCode",{parentName:"a"},"535cee4"))),(0,n.kt)("li",{parentName:"ul"},"style(downloadLabeledIcon) : fix styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d8e3acb3bac1a4174d4bb526d6188cb5e5f8faa"},(0,n.kt)("inlineCode",{parentName:"a"},"6d8e3ac"))),(0,n.kt)("li",{parentName:"ul"},"style(downloadLabeledIcon) : fix alignment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/455801701d2958515885ba2c398312f0c56057b0"},(0,n.kt)("inlineCode",{parentName:"a"},"4558017"))),(0,n.kt)("li",{parentName:"ul"},"chore(LabeledIconGroup) : lint changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab364763bb2526adbbb7fc3c656a16b497568940"},(0,n.kt)("inlineCode",{parentName:"a"},"ab36476")))),(0,n.kt)("h3",{id:"040---2022-06-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.3.1...0.4.0"},"0.4.0")," - 2022-06-01"),(0,n.kt)("h4",{id:"-new-features-25"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(Carousel): create carousel for cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2b0d73798b4fcbf2897d7a8167d9b4d3b3374fb2"},(0,n.kt)("inlineCode",{parentName:"a"},"2b0d737"))),(0,n.kt)("li",{parentName:"ul"},"feat(ItemwithIcons): Initial Item group with icons, new item variation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7f4ea476264856845a07cd24be6ec86ccd21ed8d"},(0,n.kt)("inlineCode",{parentName:"a"},"7f4ea47"))),(0,n.kt)("li",{parentName:"ul"},"feat(utilities): add file and basic utilities ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/05c88b294a49590e3fb355fb6e113f5020442915"},(0,n.kt)("inlineCode",{parentName:"a"},"05c88b2"))),(0,n.kt)("li",{parentName:"ul"},"feat(utilities): add file with basic utilities classes #173 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/855185ff22c77efb75cc5c7850d181254b4c4927"},(0,n.kt)("inlineCode",{parentName:"a"},"855185f")))),(0,n.kt)("h4",{id:"-bug-fixes-36"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(tokens): hsla function for shadows ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8e5d37a6e88321b1e2daf995b407c4ddd6e866e"},(0,n.kt)("inlineCode",{parentName:"a"},"b8e5d37"))),(0,n.kt)("li",{parentName:"ul"},"fix(tokens): remove css var from less file ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a9c422476b412287713a6b475406615c3aed2aca"},(0,n.kt)("inlineCode",{parentName:"a"},"a9c4224"))),(0,n.kt)("li",{parentName:"ul"},"fix(carousel):add storybook controls descriptions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/269a60383ed1e54fc57e26d4eed6b37d1da32236"},(0,n.kt)("inlineCode",{parentName:"a"},"269a603"))),(0,n.kt)("li",{parentName:"ul"},"fix(item): remove image width css from item.less ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7b21cb2d5ddf6a6f72646f47fd268a0bd7af757d"},(0,n.kt)("inlineCode",{parentName:"a"},"7b21cb2"))),(0,n.kt)("li",{parentName:"ul"},"fix(table): Set responsive breakpoint to @tabletBreakpoint ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/067e01842030bfa5639e2a55cb8af5047bb2996f"},(0,n.kt)("inlineCode",{parentName:"a"},"067e018")))),(0,n.kt)("h4",{id:"-enhancements-50"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(item): import item.less in theme definitions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c51637480192dbece828616010174648ac865e2e"},(0,n.kt)("inlineCode",{parentName:"a"},"c516374"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Label):add corner,ribbon & basic label stories and styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2bbbb947113a59127f91b86917ef0edbf36ab16"},(0,n.kt)("inlineCode",{parentName:"a"},"e2bbbb9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Label):style changes based on label importance class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce4d5d1a5bf1b1183242a253e37c509d61f82b8c"},(0,n.kt)("inlineCode",{parentName:"a"},"ce4d5d1"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): rename gap to space and added em spaces ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/719efc44070ef87f049a92e4da96bb111e9fc8ff"},(0,n.kt)("inlineCode",{parentName:"a"},"719efc4"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): add classes for size, set default to tile and add controls for grouped items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5a0405abba4e5f5d36f899dc9e47f43a96d5e49"},(0,n.kt)("inlineCode",{parentName:"a"},"d5a0405"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): add borders, shadows, shapes and z-index tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7069106c2b0ada9cdbad63249b4ada7fde72e05f"},(0,n.kt)("inlineCode",{parentName:"a"},"7069106"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): name spacing tokens gaps and added missing values up to 80px as documented ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9fbd912a6f027150149d82678f88885a939120b0"},(0,n.kt)("inlineCode",{parentName:"a"},"9fbd912"))),(0,n.kt)("li",{parentName:"ul"},"refactor(quote): Rename sourceInfo to extra info ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/76c2b400de4814fe79f303bfd2a82842c848231c"},(0,n.kt)("inlineCode",{parentName:"a"},"76c2b40"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): WIP replacing unstackable with row ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e3a44de4b2dd26667e80e0d131c55b08f3c527d9"},(0,n.kt)("inlineCode",{parentName:"a"},"e3a44de"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tocens): add color design tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/13bb165e103a25aadb9da6414773dc0d35081d88"},(0,n.kt)("inlineCode",{parentName:"a"},"13bb165"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): adjust margins to match figma designs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6334581b336a2f486e85199f371126beea47b92f"},(0,n.kt)("inlineCode",{parentName:"a"},"6334581"))),(0,n.kt)("li",{parentName:"ul"},"refactor(carousel): remove title from story and color on card hover ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/12a1d7c3bd5e7ba6edf4eb20a2d7a6f8f22955f9"},(0,n.kt)("inlineCode",{parentName:"a"},"12a1d7c"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): updated sizes with 4-8-16px increments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f53d655df2b24053a5d331c56dfd14bd3602dfd"},(0,n.kt)("inlineCode",{parentName:"a"},"1f53d65"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): added size tokens to be used for width of elements ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cda5dea1f6ad1ae980c89999d323d7b385894025"},(0,n.kt)("inlineCode",{parentName:"a"},"cda5dea"))),(0,n.kt)("li",{parentName:"ul"},"change(utilities): values need important rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/96150d9a22cb6be6f338f1e9d052cbd65e3602fc"},(0,n.kt)("inlineCode",{parentName:"a"},"96150d9"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): added also rem space values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aedbbddaf7f8be88ed2f8a2b8c21b60752896c53"},(0,n.kt)("inlineCode",{parentName:"a"},"aedbbdd"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): updated z-index tokens with negative values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/404efe4244d67276b435e60a1d7a69aaa90e3d8a"},(0,n.kt)("inlineCode",{parentName:"a"},"404efe4"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): add 14px font size token ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8d8695dce62e7f29af01447308460e4fe3f72b21"},(0,n.kt)("inlineCode",{parentName:"a"},"8d8695d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): restructured and improved sections navigation #174 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b47b0266ffd6baeaf1a5aea1a7ab22c909976de1"},(0,n.kt)("inlineCode",{parentName:"a"},"b47b026"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): add 12 and 14px font size token #176 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/368114729536f03dd85c2d3565b984c3bdfe3a72"},(0,n.kt)("inlineCode",{parentName:"a"},"3681147"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): remove conditional border radius ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f0fe5ada7b74e9c87623dd2b2774283dd89b9a58"},(0,n.kt)("inlineCode",{parentName:"a"},"f0fe5ad")))),(0,n.kt)("h4",{id:"-documentation-changes-16"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(website): created new sections, improved website navigation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/243f0be4d7fa6e988da0ca0f586f5ea478573eef"},(0,n.kt)("inlineCode",{parentName:"a"},"243f0be"))),(0,n.kt)("li",{parentName:"ul"},"docs(homepage): adding design system homepage with links for upcoming sections ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c9a968508acff74d1182e68cf049046dafd564c5"},(0,n.kt)("inlineCode",{parentName:"a"},"c9a9685"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): copyedit, improved navigation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/998762a5bd40d08f619c00743b66d82b43aed653"},(0,n.kt)("inlineCode",{parentName:"a"},"998762a"))),(0,n.kt)("li",{parentName:"ul"},"docs(website): restructuring, moved current DS docs to new folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8bb612f1313dfc739d7912aa2e3252f468e1122f"},(0,n.kt)("inlineCode",{parentName:"a"},"8bb612f"))),(0,n.kt)("li",{parentName:"ul"},"docs(homepage): copy editing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee37d6f1d282b973af744f4305c0eb94c0993113"},(0,n.kt)("inlineCode",{parentName:"a"},"ee37d6f")))),(0,n.kt)("h4",{id:"\ufe0f-others-42"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Release 0.4.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f4bc50928ab877f3670b181dbe6e8cfff7fa2daa"},(0,n.kt)("inlineCode",{parentName:"a"},"f4bc509"))),(0,n.kt)("li",{parentName:"ul"},"feature(homepage): added Item group with icons #167 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ec99f53aeb183b24073be4014a9c2ec30d5235c"},(0,n.kt)("inlineCode",{parentName:"a"},"2ec99f5"))),(0,n.kt)("li",{parentName:"ul"},"feature(tokens): added borders, z-index, shadows tokens #171 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/74c178837cedc7ee9fc55effde1096dc03245574"},(0,n.kt)("inlineCode",{parentName:"a"},"74c1788"))),(0,n.kt)("li",{parentName:"ul"},"feature(tokens): added initial color design tokens #169 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/da3eae05d07783aa5eadaed5d508ee3be8acc47d"},(0,n.kt)("inlineCode",{parentName:"a"},"da3eae0"))),(0,n.kt)("li",{parentName:"ul"},"perf(carousel): added slick library ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca9be5125efa864bc30a0178274d744c5b2bc500"},(0,n.kt)("inlineCode",{parentName:"a"},"ca9be51")))),(0,n.kt)("h3",{id:"031---2022-05-19"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.3.0...0.3.1"},"0.3.1")," - 2022-05-19"),(0,n.kt)("h4",{id:"-bug-fixes-37"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(input,segment): toggle inputs and padding fixes within Volto sidebar forms ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/de030d617325a8f9d028a5c1615faa160fcdd763"},(0,n.kt)("inlineCode",{parentName:"a"},"de030d6")))),(0,n.kt)("h4",{id:"-enhancements-51"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(login): restored width of login container to 376px ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0564293346b2402c3c86009b61066da4200662b8"},(0,n.kt)("inlineCode",{parentName:"a"},"0564293")))),(0,n.kt)("h3",{id:"030---2022-05-17"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.2.4...0.3.0"},"0.3.0")," - 2022-05-17"),(0,n.kt)("h4",{id:"-new-features-26"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(Callout):create Callout component with Blockquote style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3d486b1c2c7f74ee8bc4b3a5e1bf3993ac98f6dd"},(0,n.kt)("inlineCode",{parentName:"a"},"3d486b1"))),(0,n.kt)("li",{parentName:"ul"},"feat(callout): Align the Callout component with Volto slate component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e9343ff7008cd3d60700929e8861c7bdd06df4d3"},(0,n.kt)("inlineCode",{parentName:"a"},"e9343ff")))),(0,n.kt)("h4",{id:"-bug-fixes-38"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(testimonial): fix storybook arg names ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b9df52f7151ef759fd672d365b2d74f6db535ad0"},(0,n.kt)("inlineCode",{parentName:"a"},"b9df52f"))),(0,n.kt)("li",{parentName:"ul"},"fix(table): tweak responsive table for extra long headers ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7f9f9e25f7c57d4bf7edd2546a7579b892867b5c"},(0,n.kt)("inlineCode",{parentName:"a"},"7f9f9e2"))),(0,n.kt)("li",{parentName:"ul"},"fix(quote): fix color and padding issue ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/310d6b37bdf5df3da2d2103eab8f4fa5020c95ab"},(0,n.kt)("inlineCode",{parentName:"a"},"310d6b3"))),(0,n.kt)("li",{parentName:"ul"},"fix(accordion): Fix accordion active title color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/57af1650a0b830e01c79e21b130784190defbcc0"},(0,n.kt)("inlineCode",{parentName:"a"},"57af165"))),(0,n.kt)("li",{parentName:"ul"},"fix(testimonial): remove info arguement ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9593d95f6352fb5aea48c3611b27b4bc6a9ae7e4"},(0,n.kt)("inlineCode",{parentName:"a"},"9593d95")))),(0,n.kt)("h4",{id:"-enhancements-52"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(Table):add responsive mobile table story and styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aed69e698e5b89e33a4c331570755934267492af"},(0,n.kt)("inlineCode",{parentName:"a"},"aed69e6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(testimonial): adjust to volto design | fix avatar image size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/546070e494ad187c50913b5742dab49ce5475a84"},(0,n.kt)("inlineCode",{parentName:"a"},"546070e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Quote):rename Pullquote component to Quote ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9384a0c129b8e4eed637e51a9669c41d8ade69d4"},(0,n.kt)("inlineCode",{parentName:"a"},"9384a0c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Quote):rename Quote.Metadata to Quote.SourceInfo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dfae8b1c147659d24dfd1a13fb4c3098e5865a12"},(0,n.kt)("inlineCode",{parentName:"a"},"dfae8b1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Quote): rename Author to Source ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d400f6a0ec0062f58782b4e170f4a1a9a31c56c"},(0,n.kt)("inlineCode",{parentName:"a"},"6d400f6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Quote):move Testimonial component under Quote folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2467c2089577d67ef5689a2507cb860a837f6a0"},(0,n.kt)("inlineCode",{parentName:"a"},"e2467c2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(testimonial): readjust rounded card ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b41933417a44dabcf829a3346d91c142dd6472d3"},(0,n.kt)("inlineCode",{parentName:"a"},"b419334"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Table):wrap table with semantic ui container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24ac2bb4813df33547f684220e1e12af5ca6df7e"},(0,n.kt)("inlineCode",{parentName:"a"},"24ac2bb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Testimonial):minor storybook bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7b6d128c6be3b2481d4765cebca82af6cafbea05"},(0,n.kt)("inlineCode",{parentName:"a"},"7b6d128"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Callout): wrap story with semantic ui container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ead362d88f43fa1380e8be5481cbc38c055060f8"},(0,n.kt)("inlineCode",{parentName:"a"},"ead362d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(quote): update action name to match the functionality ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/caf2e359cada8056f280d2cd137776d64f82a2af"},(0,n.kt)("inlineCode",{parentName:"a"},"caf2e35"))),(0,n.kt)("li",{parentName:"ul"},"refactor(table): add borders to responsive table with celled attribute ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8a71a670fb34a11fbe4cef7365b91c6be84b5b54"},(0,n.kt)("inlineCode",{parentName:"a"},"8a71a67"))),(0,n.kt)("li",{parentName:"ul"},"change(table): make use of headerSortableWhiteSpace variable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fd836fbe82e92864a628bf4d9d3093674890f722"},(0,n.kt)("inlineCode",{parentName:"a"},"fd836fb"))),(0,n.kt)("li",{parentName:"ul"},"change(table): use the @mobileLandscapeBreakpoint for max 480px media query ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/90880ab324b6a66c7741819dd0d913504751454f"},(0,n.kt)("inlineCode",{parentName:"a"},"90880ab"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Quote):rename pullquote to Quote in Testimonial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f54da192ab3b0823b0d6c77254f8954ab94506c8"},(0,n.kt)("inlineCode",{parentName:"a"},"f54da19"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Testimonial): change card class name ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e995c32bc70780e4315c4dc02d6b6fa9a0c5b29d"},(0,n.kt)("inlineCode",{parentName:"a"},"e995c32"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Testimonial): prettier changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/904594b9814c3d8900656f0e4c8d3a99481efe94"},(0,n.kt)("inlineCode",{parentName:"a"},"904594b")))),(0,n.kt)("h4",{id:"\ufe0f-others-43"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feature(tokens): added tokens folder for design tokens we can use in the system ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a542172cfd84dde0286b4332e66a617a1f3d13bf"},(0,n.kt)("inlineCode",{parentName:"a"},"a542172"))),(0,n.kt)("li",{parentName:"ul"},"perf(lint): fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2ef3abb9daa8fee3dd103adc14246c412951427"},(0,n.kt)("inlineCode",{parentName:"a"},"f2ef3ab"))),(0,n.kt)("li",{parentName:"ul"},"Release 0.3.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8724b2809027b2e359dcd64e418a33cade4ad487"},(0,n.kt)("inlineCode",{parentName:"a"},"8724b28")))),(0,n.kt)("h3",{id:"024---2022-05-13"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.2.3...0.2.4"},"0.2.4")," - 2022-05-13"),(0,n.kt)("h4",{id:"-enhancements-53"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(segment): brought back overrides from pastanaga into our theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/14efd021f81898bb0f2d3f1a2e8677445420591a"},(0,n.kt)("inlineCode",{parentName:"a"},"14efd02"))),(0,n.kt)("li",{parentName:"ul"},"change(container): removed padding from containers restoring thus the defaults ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c2ed813cf2f7ce284e33f2e94e02ff16678c2d05"},(0,n.kt)("inlineCode",{parentName:"a"},"c2ed813"))),(0,n.kt)("li",{parentName:"ul"},"change(grid-story): added container as grid width is influenced by container width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/459f4813ee3c5325a3db22d417ac5f23063bd4d2"},(0,n.kt)("inlineCode",{parentName:"a"},"459f481"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumb): removed padding from breadcrumb added by container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5df5675a519085badc030416e5bb784a9f73321"},(0,n.kt)("inlineCode",{parentName:"a"},"c5df567"))),(0,n.kt)("li",{parentName:"ul"},"change(container): modified all outputted widths to align to grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f29cefa4bfee1fe50844c8450de39ef4b0915d4"},(0,n.kt)("inlineCode",{parentName:"a"},"9f29cef"))),(0,n.kt)("li",{parentName:"ul"},"change(breakpoints): restore Semantic UI breakpoints, adding extra needed values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e7f5b1e4fac6453458078bb02cdc66c328843b59"},(0,n.kt)("inlineCode",{parentName:"a"},"e7f5b1e"))),(0,n.kt)("li",{parentName:"ul"},"change(container): restore maxWidth to 100% now that the last value is 1120px ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8b55c58d3bbc8967b20de19a828aedd2f1473ee5"},(0,n.kt)("inlineCode",{parentName:"a"},"8b55c58"))),(0,n.kt)("li",{parentName:"ul"},"change(header): wrap header globalnav links useful for editing section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/10d4f56624510eb63155ab330dcf0475b0728ed4"},(0,n.kt)("inlineCode",{parentName:"a"},"10d4f56"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumb): added vertical variant to the breadcrumbs like we do in Volto ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f405f8437be6be221b055a41c5d391f4cc94385d"},(0,n.kt)("inlineCode",{parentName:"a"},"f405f84"))),(0,n.kt)("li",{parentName:"ul"},"change(breakpoints): added also contentBreakpoint for backward compatibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b6c9212378a37639e6154d8d8e837169bcbac8b5"},(0,n.kt)("inlineCode",{parentName:"a"},"b6c9212")))),(0,n.kt)("h4",{id:"\ufe0f-others-44"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"[JENKINSFILE]"," Add failure comment, no jenkins fail ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c325bf14f3fb0da150f2a56cda0a9f03d8d8a628"},(0,n.kt)("inlineCode",{parentName:"a"},"c325bf1"))),(0,n.kt)("li",{parentName:"ul"},"prettier changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/134da52549b9d5eac5a12b7ad3005073500ac2c4"},(0,n.kt)("inlineCode",{parentName:"a"},"134da52"))),(0,n.kt)("li",{parentName:"ul"},"[JENKINSFILE]"," format PR comments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/739438c64950c745d630d1998314a2bed595b23a"},(0,n.kt)("inlineCode",{parentName:"a"},"739438c"))),(0,n.kt)("li",{parentName:"ul"},"[JENKINSFILE]"," mention comment author in comment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/39a26aa1ff0f35e93e8df9f442c29c5ab79ff493"},(0,n.kt)("inlineCode",{parentName:"a"},"39a26aa"))),(0,n.kt)("li",{parentName:"ul"},"[JENKINSFILE]"," remove debug, add error per stage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/903eecdb6bcbb8d73cff5e447d80c85e2a2c906d"},(0,n.kt)("inlineCode",{parentName:"a"},"903eecd")))),(0,n.kt)("h3",{id:"023---2022-04-29"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.2.2...0.2.3"},"0.2.3")," - 2022-04-29"),(0,n.kt)("h4",{id:"-new-features-27"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(CallToAction):add feat call to action ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab53642f27c996f929ff871d0794add39bab6c23"},(0,n.kt)("inlineCode",{parentName:"a"},"ab53642")))),(0,n.kt)("h4",{id:"-enhancements-54"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(button): add container to stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6c02c1953e102f2d90ab23023d6b4dfc738ced2e"},(0,n.kt)("inlineCode",{parentName:"a"},"6c02c19"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tab): update vertical tab columns and content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b473fabee196a3ec420e29160448d2be3d1685cc"},(0,n.kt)("inlineCode",{parentName:"a"},"b473fab"))),(0,n.kt)("li",{parentName:"ul"},'refactor(call to action):render call to action with Button as="a" ',(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e7dfabfc2f006505b0f1c802dc6fb48611518bcb"},(0,n.kt)("inlineCode",{parentName:"a"},"e7dfabf"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button): update inverted button colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c822021ab37939632416ce74c0cc88a64b98a3c1"},(0,n.kt)("inlineCode",{parentName:"a"},"c822021"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Tab):scrollbar change in mobile & vertical tab fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0e34cbf459e67b6910217f30a44a1e81f33df622"},(0,n.kt)("inlineCode",{parentName:"a"},"0e34cbf"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): added icon class to share icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48e866e4251dd517c0477cd5a42cec1a98e2f16d"},(0,n.kt)("inlineCode",{parentName:"a"},"48e866e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Button): move button to forms folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/94996fcdf1ea7e55c63dd44e10edf1b44b9bdef5"},(0,n.kt)("inlineCode",{parentName:"a"},"94996fc"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Tab):minor change in secondary pointing menu variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/280b6c41a2107bccb38500f54eb5663ef62c7ae3"},(0,n.kt)("inlineCode",{parentName:"a"},"280b6c4")))),(0,n.kt)("h4",{id:"-documentation-changes-17"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(button): import call to action stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e4eed44e3519ae3dba7d16e252271a964fcb7a4b"},(0,n.kt)("inlineCode",{parentName:"a"},"e4eed44")))),(0,n.kt)("h3",{id:"022---2022-04-22"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.2.1...0.2.2"},"0.2.2")," - 2022-04-22"),(0,n.kt)("h4",{id:"-bug-fixes-39"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(publicationCard): restore line endings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/582859e0ab4fa969662d4cf3e60fe75b160f052a"},(0,n.kt)("inlineCode",{parentName:"a"},"582859e"))),(0,n.kt)("li",{parentName:"ul"},"fix(form): added back overrides from Pastanaga theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a3f7ff810cdeb55b009c2dadc6753d01bbd10d8c"},(0,n.kt)("inlineCode",{parentName:"a"},"a3f7ff8"))),(0,n.kt)("li",{parentName:"ul"},"fix(OrderedList) : add list only if sub list exists ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8acbc8d5a492b411b169b106ab64bb78563f891f"},(0,n.kt)("inlineCode",{parentName:"a"},"8acbc8d"))),(0,n.kt)("li",{parentName:"ul"},"fix(label): update highlight label color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d55bbb03a5d28b2f269c1a1ca447c67dcdc7a748"},(0,n.kt)("inlineCode",{parentName:"a"},"d55bbb0"))),(0,n.kt)("li",{parentName:"ul"},"fix(publication card): run prettier ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/81a5bfc123ce69c44562a5585e41a630fe0bbf5a"},(0,n.kt)("inlineCode",{parentName:"a"},"81a5bfc"))),(0,n.kt)("li",{parentName:"ul"},"fix(avatar) : fix naming convention for arg ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/84fc5fa8faa7887f45cd52e58aa6fa6f8b951d26"},(0,n.kt)("inlineCode",{parentName:"a"},"84fc5fa"))),(0,n.kt)("li",{parentName:"ul"},"fix(tab): restore mobile font sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/58f39be02a45ade92873b86597c33763379e0f44"},(0,n.kt)("inlineCode",{parentName:"a"},"58f39be"))),(0,n.kt)("li",{parentName:"ul"},"fix(addForm): add min height to add form and fixed block chooser overflow ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca4415d49b973378894ec9270501beafbefff776"},(0,n.kt)("inlineCode",{parentName:"a"},"ca4415d"))),(0,n.kt)("li",{parentName:"ul"},"fix(OrderedList): adjust margins to fourth sublists ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/663d384790920f164d51edb304c411275972fbb7"},(0,n.kt)("inlineCode",{parentName:"a"},"663d384"))),(0,n.kt)("li",{parentName:"ul"},"fix(dropdown): being hidden because of third party css ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d353dfd65e93d08a3c8584adeeebea50bf7efe8"},(0,n.kt)("inlineCode",{parentName:"a"},"7d353df"))),(0,n.kt)("li",{parentName:"ul"},"fix(modal): overflow hidden as clearfix of last child from modal ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4923f5165a0a7e8d2dd33ea4c35f9f951372909"},(0,n.kt)("inlineCode",{parentName:"a"},"b4923f5"))),(0,n.kt)("li",{parentName:"ul"},"fix(RelatedContent):fix merge conflict ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/adc34bfdac7d668aa27578eb2a4844c136e0360f"},(0,n.kt)("inlineCode",{parentName:"a"},"adc34bf"))),(0,n.kt)("li",{parentName:"ul"},"fix(button): labeled class needs to be placed after left or right keyword ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53d1204fe52665fe1023747da359d3100d45e58f"},(0,n.kt)("inlineCode",{parentName:"a"},"53d1204")))),(0,n.kt)("h4",{id:"-enhancements-55"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(card): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e10e3d610a313c4e1995676130e2677f0ebab070"},(0,n.kt)("inlineCode",{parentName:"a"},"e10e3d6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add card variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e16d05b4afa678b9089987b42a8257323a78093f"},(0,n.kt)("inlineCode",{parentName:"a"},"e16d05b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): remove stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0deb0cab6d7fd73957b149325960c266c33cdc6f"},(0,n.kt)("inlineCode",{parentName:"a"},"0deb0ca"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):delete primary and secondary card stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f95d227a026ecc34b29cc3e4938c3d13906cfd8"},(0,n.kt)("inlineCode",{parentName:"a"},"1f95d22"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Avatar) : remake avatar as card variant ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea77cdd1acafd2ea288f11074423705e5d6b7412"},(0,n.kt)("inlineCode",{parentName:"a"},"ea77cdd"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add styles for card variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7407bd30e722f2d7b1a9d75a8c7cf155bf1c4996"},(0,n.kt)("inlineCode",{parentName:"a"},"7407bd3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): add story with related content inside of a tab ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dca008a35b27e4a75c13ef965ab8764df0d3b357"},(0,n.kt)("inlineCode",{parentName:"a"},"dca008a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): Rename variables from avatar to rounded ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/be0131631cf8e303f4077fe93b6685fd6b34bf46"},(0,n.kt)("inlineCode",{parentName:"a"},"be01316"))),(0,n.kt)("li",{parentName:"ul"},"refactor(avatar): update less variables and layer structure ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f965db1dd17d90e7165f66d39fdda9016c2eae91"},(0,n.kt)("inlineCode",{parentName:"a"},"f965db1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(PublicationCard):remake publication card to be a semantic card variation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5a0c6ab21c22a53aa6e34fafecfae15a3d435391"},(0,n.kt)("inlineCode",{parentName:"a"},"5a0c6ab"))),(0,n.kt)("li",{parentName:"ul"},"change(button): simplified button styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fe892d6f2f59aecf3f9e8b04f18b55fb0d384021"},(0,n.kt)("inlineCode",{parentName:"a"},"fe892d6"))),(0,n.kt)("li",{parentName:"ul"},"change(button): simplified storybook naming and examples ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9a7df4f46c24a234dd8bb290336ac8e7d5c7422b"},(0,n.kt)("inlineCode",{parentName:"a"},"9a7df4f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Avatar) : convert avatar component to card variation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2004a941c18f8fe21f96f88d3288446fd5e283e8"},(0,n.kt)("inlineCode",{parentName:"a"},"2004a94"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Related Content): change in grid and add see all button ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/955450e974c89aa2297eaa28d278e5098fea7705"},(0,n.kt)("inlineCode",{parentName:"a"},"955450e"))),(0,n.kt)("li",{parentName:"ul"},"change(button): added back button.overrides from pastanaga theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3b55acbf8b8df0e3daa475ab12e4db44693a4053"},(0,n.kt)("inlineCode",{parentName:"a"},"3b55acb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add card class control ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/68c91a9bf7e78874e12e868a0c466f12715a0698"},(0,n.kt)("inlineCode",{parentName:"a"},"68c91a9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):delete publication card variables & overrides files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6be8a037118762cf2280fbe44ba097a0cb7a79e0"},(0,n.kt)("inlineCode",{parentName:"a"},"6be8a03"))),(0,n.kt)("li",{parentName:"ul"},"refactor(OrderedList): rename TOC to Ordered List and add container to the story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e00c4db8e623651eb2ec9ad45de6e3d8c2693b2b"},(0,n.kt)("inlineCode",{parentName:"a"},"e00c4db"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add card grid fluid story with no columns ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f38251ca3fa04a9b586468ead44bbfe8ae110fbb"},(0,n.kt)("inlineCode",{parentName:"a"},"f38251c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(list): remove horizontal control ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f5e576a37452ed368d6f9cf4d55960e737d48ad"},(0,n.kt)("inlineCode",{parentName:"a"},"1f5e576"))),(0,n.kt)("li",{parentName:"ul"},"refactor(avatarGrid): update less variables and layer structure ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/db554a894ca10ba50ff425883000177854ea2455"},(0,n.kt)("inlineCode",{parentName:"a"},"db554a8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Related Content):show button when there are more hidden cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/57ff1c8d485d16c34002da22bd765069e6eb3df0"},(0,n.kt)("inlineCode",{parentName:"a"},"57ff1c8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(RelatedContent):change to use new card variant instead of publication card component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7cf424ae885d9b657a7635fc67a74a8af4c4e905"},(0,n.kt)("inlineCode",{parentName:"a"},"7cf424a"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumb): brought back pastanaga overrides to breadcrumbs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bca1c939c1d49dab1d4b8e72c0999d78383fd643"},(0,n.kt)("inlineCode",{parentName:"a"},"bca1c93"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):delete publication card folder & story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/68bf77306d710651bb2177d429f42b8efc127db2"},(0,n.kt)("inlineCode",{parentName:"a"},"68bf773"))),(0,n.kt)("li",{parentName:"ul"},"change(buttons): modified basic and circular variant behavior ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c06fed9fa74216cf76971b7789dad231a5125ce8"},(0,n.kt)("inlineCode",{parentName:"a"},"c06fed9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):tertiary variation minor story update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87b8dca0b8ef6c6f0fbf1ea6bc71b7b8b6ee9205"},(0,n.kt)("inlineCode",{parentName:"a"},"87b8dca"))),(0,n.kt)("li",{parentName:"ul"},"refactor(DescriptionList): add container to story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d647c1a17097eae9bdfaf8eb8068f6d1d0b13972"},(0,n.kt)("inlineCode",{parentName:"a"},"d647c1a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(List):render ordered list with ol,li tags ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87813c1a942ce498f89b51fe79a59b117afd28b0"},(0,n.kt)("inlineCode",{parentName:"a"},"87813c1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(OrderedList) : change table of contents story to ordered list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb6197c872a97f1b990c675554b1da9b0a8f7959"},(0,n.kt)("inlineCode",{parentName:"a"},"cb6197c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(publicationCard): update tag and name variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c109ad98f257fea233f31d767c4a037a2758be2d"},(0,n.kt)("inlineCode",{parentName:"a"},"c109ad9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(UnorderedList): update list as ul, list items as li and add container to strory ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2c096e117125a7fb943a5d2e665c0077761b271c"},(0,n.kt)("inlineCode",{parentName:"a"},"2c096e1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):organize controls and minor bug fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f3f6e35df077e348ea1e0c2e5c5bd73d4af5aef9"},(0,n.kt)("inlineCode",{parentName:"a"},"f3f6e35"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables): publication card style changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5a84e99ebea6345e45fac3b7ffc077ec42dfb45"},(0,n.kt)("inlineCode",{parentName:"a"},"c5a84e9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables): add less to related content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e1a55438a9fc9dd141a9515c5363d834732a0c4d"},(0,n.kt)("inlineCode",{parentName:"a"},"e1a5543"))),(0,n.kt)("li",{parentName:"ul"},"refactor(RelatedContent):delete publication card component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ed0ed4a1497224b669386f6d0942a79d00555ea"},(0,n.kt)("inlineCode",{parentName:"a"},"2ed0ed4"))),(0,n.kt)("li",{parentName:"ul"},"change(button): basic button is again without padding, border and background ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5a907c721bda1d065153b108d6c9dc0ee20a886d"},(0,n.kt)("inlineCode",{parentName:"a"},"5a907c7"))),(0,n.kt)("li",{parentName:"ul"},"refactor(PublicationCard):remove link wrapper ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5911a0db1967c58311a6776864f92bc0692052fa"},(0,n.kt)("inlineCode",{parentName:"a"},"5911a0d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables): change publication card height per viewport ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d7a525615672f387a2c8a0457bcde5c08aec45dd"},(0,n.kt)("inlineCode",{parentName:"a"},"d7a5256"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Timeline):change timeline icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b2fe0bf9a7a4583f1f10765a9f8c3c989412d472"},(0,n.kt)("inlineCode",{parentName:"a"},"b2fe0bf"))),(0,n.kt)("li",{parentName:"ul"},"refactor(publicationCard): replace px with rems ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53bf8da5e42343de7f7f940c266beb5e530dd63a"},(0,n.kt)("inlineCode",{parentName:"a"},"53bf8da"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Related Content): change in related content grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bf856ce66f9a74cb440cf8a7c93f62cd0d3965e9"},(0,n.kt)("inlineCode",{parentName:"a"},"bf856ce"))),(0,n.kt)("li",{parentName:"ul"},"refactor(List):render description list with dl,dt,dd tags ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ec669a74da08f7a82bb4a1a0a2d752b6ee5ba4bb"},(0,n.kt)("inlineCode",{parentName:"a"},"ec669a7"))),(0,n.kt)("li",{parentName:"ul"},"change(button): show only labeled variant for buttons with icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bf499446dc02e4be8d6452a3e0cba5797b8a005e"},(0,n.kt)("inlineCode",{parentName:"a"},"bf49944"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): import image for rounded card ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca5a47ea2cd713336c7c8ecdebebbdacd681282f"},(0,n.kt)("inlineCode",{parentName:"a"},"ca5a47e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progress): add container to story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dfb33bb8f3560d43e3e7300560bb557591c0a6ba"},(0,n.kt)("inlineCode",{parentName:"a"},"dfb33bb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): add publication card story with different description sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/23af97bc708ac70d70b92efe9a782548c65aabc5"},(0,n.kt)("inlineCode",{parentName:"a"},"23af97b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(List):render default list with dl & dt tags ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ece2280eb06481b3fd42e7a1ffec5c71c08e736f"},(0,n.kt)("inlineCode",{parentName:"a"},"ece2280"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): add publication cards stories with longer description ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/37adefa500c8a85a5b0b86e5b17c687828ea21fc"},(0,n.kt)("inlineCode",{parentName:"a"},"37adefa"))),(0,n.kt)("li",{parentName:"ul"},"change(button): basic icon buttons no longer have box shadows ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c2f3ea38ec3c62dce37612ac1e666a0b064309f7"},(0,n.kt)("inlineCode",{parentName:"a"},"c2f3ea3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): remove story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/afc5f7903a0049563355e3c9292fdd89fa532740"},(0,n.kt)("inlineCode",{parentName:"a"},"afc5f79"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables): change card description line number per device ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6946fdae2a1ede28a0e5971736817b3ae19bf290"},(0,n.kt)("inlineCode",{parentName:"a"},"6946fda"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): update rounded card image path ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8db3a85a45e8e05a3fe86ab824e7550d437222c3"},(0,n.kt)("inlineCode",{parentName:"a"},"8db3a85"))),(0,n.kt)("li",{parentName:"ul"},"refactor(DefaultList): add container to story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f971193369007a45fea7d517cdf0fc2314ebda69"},(0,n.kt)("inlineCode",{parentName:"a"},"f971193"))),(0,n.kt)("li",{parentName:"ul"},"change(button): bumped z-index of sidenav expand button ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/445ed8a8ede4e458814f380bee0600dbb8ff42f6"},(0,n.kt)("inlineCode",{parentName:"a"},"445ed8a"))),(0,n.kt)("li",{parentName:"ul"},"change(progress,label): color accessibility fixes #151 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/09cf6e34ed5a57bfbfc8fe95787591387776df86"},(0,n.kt)("inlineCode",{parentName:"a"},"09cf6e3"))),(0,n.kt)("li",{parentName:"ul"},"change(button): text button now has an underline with a focus border like other buttons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cdd90436bf0c4f8acaca8bf27afef672fb0f3a89"},(0,n.kt)("inlineCode",{parentName:"a"},"cdd9043"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): update card variation grids path ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/756589cff5d3607994d6cf092cb5dd0e36d51903"},(0,n.kt)("inlineCode",{parentName:"a"},"756589c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): minor fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3a880d7d14c89137b2a33342aed1a31c1b2b3939"},(0,n.kt)("inlineCode",{parentName:"a"},"3a880d7"))),(0,n.kt)("li",{parentName:"ul"},"change(button): primary color is blue and secondary is green ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53e0a0c6d32a04c52d089914a224b010b04a8846"},(0,n.kt)("inlineCode",{parentName:"a"},"53e0a0c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(List):change styles to match with the tags lists are rendered ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2673890449579a0421d8ac1c89ad4c5e850322d7"},(0,n.kt)("inlineCode",{parentName:"a"},"2673890"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progress): update colors for accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea2f454f73c859ac21c4fe6e415a2442a6c3d64c"},(0,n.kt)("inlineCode",{parentName:"a"},"ea2f454"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): move avatarGrid & relatedContent to Card folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1959d521de222c95aa13d9b3db249d133f879ccd"},(0,n.kt)("inlineCode",{parentName:"a"},"1959d52"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Timeline): change storybook timeline colors to fix accessibility issues ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/79da8dca48c709fd1df83b858296126f5e5c5753"},(0,n.kt)("inlineCode",{parentName:"a"},"79da8dc"))),(0,n.kt)("li",{parentName:"ul"},"change(segment): restore light grey background color for secondary segments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8716b08a977cacf5dbdab8ab23c714bb03066b0c"},(0,n.kt)("inlineCode",{parentName:"a"},"8716b08"))),(0,n.kt)("li",{parentName:"ul"},"refactor(relatedContent): adjust column paddings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8a1520d1b958b65e968bffdba22c3484916a475e"},(0,n.kt)("inlineCode",{parentName:"a"},"8a1520d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): clear up code ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ada154b5ab562dc7605604de8002a9d3461e594"},(0,n.kt)("inlineCode",{parentName:"a"},"3ada154"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): use the rounded class for avatar grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8c000f3c37103e0068b6d6554783da8188603442"},(0,n.kt)("inlineCode",{parentName:"a"},"8c000f3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card) Update rounded card class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/140b58746673a864d7ea218c4f8a02dc70207af4"},(0,n.kt)("inlineCode",{parentName:"a"},"140b587"))),(0,n.kt)("li",{parentName:"ul"},"refactor(avatar): add variable for image border radius ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c23341c66d34a9dfa572be4df24f1faf4325d58e"},(0,n.kt)("inlineCode",{parentName:"a"},"c23341c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(label): add container to story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/565101fff2c8860deedd599b7b0cff0660c663f6"},(0,n.kt)("inlineCode",{parentName:"a"},"565101f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progress): update value color for accessibility error ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6fc76f8ff3df4bf2b83863687e5ab6bd5e4cd1ef"},(0,n.kt)("inlineCode",{parentName:"a"},"6fc76f8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):use jsx extension ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/413d3284869a35f39f886df7862db6a52e8cc18e"},(0,n.kt)("inlineCode",{parentName:"a"},"413d328")))),(0,n.kt)("h4",{id:"-internal-changes-17"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(Avatar) : add container to stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/41b748cd23002d597d9b6fbb7947a443ef40f9b2"},(0,n.kt)("inlineCode",{parentName:"a"},"41b748c"))),(0,n.kt)("li",{parentName:"ul"},"style(OrderedList): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ed95e4dea2f33d46ca604e1b2c30d63b5596c03d"},(0,n.kt)("inlineCode",{parentName:"a"},"ed95e4d")))),(0,n.kt)("h4",{id:"\ufe0f-others-45"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"perf(eol): change to LF ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c71e42e4a8cf49c4a3b943bfdc8a94c9a9cc4940"},(0,n.kt)("inlineCode",{parentName:"a"},"c71e42e"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): linux eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e0bb30132904f92b9755356f6b5ccbf72075425"},(0,n.kt)("inlineCode",{parentName:"a"},"6e0bb30"))),(0,n.kt)("li",{parentName:"ul"},"lint fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a68866d4058f7412a2635371adebc370b6445281"},(0,n.kt)("inlineCode",{parentName:"a"},"a68866d"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): lf fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7054b2067b0802c5bd04e185cba76e2577ccfdd1"},(0,n.kt)("inlineCode",{parentName:"a"},"7054b20"))),(0,n.kt)("li",{parentName:"ul"},"doco(list): update Ordered List showcase ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/75e40bf4487ea334c9ebc2dd6c2a392d82e662f3"},(0,n.kt)("inlineCode",{parentName:"a"},"75e40bf"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): lf fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19235e585ac50c3669f654a93798b8998894f900"},(0,n.kt)("inlineCode",{parentName:"a"},"19235e5"))),(0,n.kt)("li",{parentName:"ul"},"fixed js syntax error from previous commit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/37dc1f5c1506040c1f155afdea76c4ed739ddda2"},(0,n.kt)("inlineCode",{parentName:"a"},"37dc1f5"))),(0,n.kt)("li",{parentName:"ul"},"Next relese: 0.2.2 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b3fb40ff5e46d7519b6356fdaf7326780bd89d9e"},(0,n.kt)("inlineCode",{parentName:"a"},"b3fb40f")))),(0,n.kt)("h3",{id:"021---2022-04-08"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.2.0...0.2.1"},"0.2.1")," - 2022-04-08"),(0,n.kt)("h4",{id:"-bug-fixes-40"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(version): Switch to 2.0.0.alpha.1 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/83b8b8ebba4f1eb31514b16476ac23a5d2b03ea9"},(0,n.kt)("inlineCode",{parentName:"a"},"83b8b8e")))),(0,n.kt)("h4",{id:"\ufe0f-others-46"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"cleanup(loader): Remove useless HTML ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d1d180c714ea225c1ad269360413a5e5e4b39f22"},(0,n.kt)("inlineCode",{parentName:"a"},"d1d180c")))),(0,n.kt)("h3",{id:"020---2022-04-04"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.9...0.2.0"},"0.2.0")," - 2022-04-04"),(0,n.kt)("h4",{id:"-new-features-28"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(card) : add new default card color-schme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/965adea8eef6d8729790f6d2bd5e71daeee15d75"},(0,n.kt)("inlineCode",{parentName:"a"},"965adea"))),(0,n.kt)("li",{parentName:"ul"},"feat(label): Handle slate links and footnotes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f382431219df29be498fe5063f3d579f0b918068"},(0,n.kt)("inlineCode",{parentName:"a"},"f382431")))),(0,n.kt)("h4",{id:"-bug-fixes-41"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(buttons,toggles): border and background color when active 147629 #139 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea36f31e986110d6c28c104d01666104ac38e2ba"},(0,n.kt)("inlineCode",{parentName:"a"},"ea36f31"))),(0,n.kt)("li",{parentName:"ul"},"fix(checkboxes): background color when they are toggles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4b6ab67085b7514c4f0ab2322e8f45de8bc09449"},(0,n.kt)("inlineCode",{parentName:"a"},"4b6ab67"))),(0,n.kt)("li",{parentName:"ul"},"fix(buttons): border set on basic buttons appearing on svg elements of Volto UI ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/69ca73f33b562b3f87bf11ce43a52ac01f83b951"},(0,n.kt)("inlineCode",{parentName:"a"},"69ca73f"))),(0,n.kt)("li",{parentName:"ul"},"fix(label): Zotero/Footnotes inside label ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0ee4d584f2771b739ed5f2332cb33aad61391786"},(0,n.kt)("inlineCode",{parentName:"a"},"0ee4d58"))),(0,n.kt)("li",{parentName:"ul"},"fix(card) : add control for image url in storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b28e5303ba04c6aee673f1d7f98ce42037c672e1"},(0,n.kt)("inlineCode",{parentName:"a"},"b28e530"))),(0,n.kt)("li",{parentName:"ul"},"fix(less variables):change font family ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e4bca9e0cb7ab9f1fd86e9f4c558382ec129e5a1"},(0,n.kt)("inlineCode",{parentName:"a"},"e4bca9e"))),(0,n.kt)("li",{parentName:"ul"},"fix(storybook):minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9fc53bcad61bbe0561d7a986dbba567d53777a8c"},(0,n.kt)("inlineCode",{parentName:"a"},"9fc53bc"))),(0,n.kt)("li",{parentName:"ul"},"fix(tag): fixes merged theme config ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/eb30363fda8a8a88155ee05268c4d7660fe99df1"},(0,n.kt)("inlineCode",{parentName:"a"},"eb30363"))),(0,n.kt)("li",{parentName:"ul"},"fix(Banner): prop types fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a270e5b4d6e571f219b5da31ca8f883f74da05e3"},(0,n.kt)("inlineCode",{parentName:"a"},"a270e5b")))),(0,n.kt)("h4",{id:"-enhancements-56"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(tag): splits Tags component to TagList and tag, changes default tags style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/78a5f8c245149706a1f7b825ef3e02da5ba86445"},(0,n.kt)("inlineCode",{parentName:"a"},"78a5f8c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner):add banner share pop up in banner story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c9688b2b697c879bbaed3cb3a688a0af7fc71234"},(0,n.kt)("inlineCode",{parentName:"a"},"c9688b2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tag): remove classes and actions that add background color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce9b6f92589618f6cb1e839a2cddc44381ef7406"},(0,n.kt)("inlineCode",{parentName:"a"},"ce9b6f9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner):change banner's image wrapper implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9153dd1073999e67c105b5ba90538bc963e17abc"},(0,n.kt)("inlineCode",{parentName:"a"},"9153dd1"))),(0,n.kt)("li",{parentName:"ul"},"change(package): bump release version to 1.10.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e984c1e1a6ea481a58a5b7a783d077b5769a621"},(0,n.kt)("inlineCode",{parentName:"a"},"7e984c1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): align cards and images, update less variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d47c9780bfbc23d1cba3578f181864074db97e98"},(0,n.kt)("inlineCode",{parentName:"a"},"d47c978"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add class inverted for default card ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/919a56e79c0243fa567144fadd4b842f75f1cf8f"},(0,n.kt)("inlineCode",{parentName:"a"},"919a56e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tag): changes component name ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e1db068bd7ac336a451a4514c61fe44557e14cc2"},(0,n.kt)("inlineCode",{parentName:"a"},"e1db068"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tag): changes color metallicBlue to bottleGreen ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e4b68acf95bb3e192914aab89b2122e0434bf72c"},(0,n.kt)("inlineCode",{parentName:"a"},"e4b68ac"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables): change tag list mobile view ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fcded3dbc67465eec6ef7f72d3fd599ec5cd3c13"},(0,n.kt)("inlineCode",{parentName:"a"},"fcded3d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tagList): update story to not use tag color classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8b5b61bfad9225c0538b713937ed39bbd0bd14e9"},(0,n.kt)("inlineCode",{parentName:"a"},"8b5b61b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner):minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff8c352b899b78528897547df0b20c357fd153cd"},(0,n.kt)("inlineCode",{parentName:"a"},"ff8c352"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner): add metadata field sub component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/327b7e77626c18ae783aea9efae0c7589f63d4f5"},(0,n.kt)("inlineCode",{parentName:"a"},"327b7e7"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): add and adjust remix icon for banner action ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1bf3ffaa16432746c5e5577f0b1643f6659b3f56"},(0,n.kt)("inlineCode",{parentName:"a"},"1bf3ffa"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): replace px with rem and adjust share popup padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a5683294570227d0b25a99e410eb824b2c6d643c"},(0,n.kt)("inlineCode",{parentName:"a"},"a568329"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner):add type class to metadata field and apply styles to it ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/86a286699146c7dda9e288e2183ec8cc86f35a23"},(0,n.kt)("inlineCode",{parentName:"a"},"86a2866"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables):change tag list styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/867008791545769aa003ef7a8a820a7e5a873e4b"},(0,n.kt)("inlineCode",{parentName:"a"},"8670087"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): share items display flex on desktop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ff86840e548f47cd597a0c76b23f996d4a9d74b"},(0,n.kt)("inlineCode",{parentName:"a"},"3ff8684"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): added background gradient, share popup, metadata show and hide #136 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2f5dccacf1e23f45f351b0be58c9bbda04da1518"},(0,n.kt)("inlineCode",{parentName:"a"},"2f5dcca"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): update gradient ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/570ee1e1e9778cb98757804fbd8ad7d9dee9ad13"},(0,n.kt)("inlineCode",{parentName:"a"},"570ee1e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tags): removes hardcoded ':' ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea58e86a79b46b5150d84ff2fbb6a7b8ba47876c"},(0,n.kt)("inlineCode",{parentName:"a"},"ea58e86"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): remove card border ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bc777397026f0efe8e569c8fd0e90d98b585b0eb"},(0,n.kt)("inlineCode",{parentName:"a"},"bc77739")))),(0,n.kt)("h4",{id:"-internal-changes-18"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(card) : add lint and prettier changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9d9a77363f7e4f7ec2ea4db5fa777dc97e086156"},(0,n.kt)("inlineCode",{parentName:"a"},"9d9a773"))),(0,n.kt)("li",{parentName:"ul"},"style(tag): remove comments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/501fcdfb8271f4a3558dadb96c546e71cfdef286"},(0,n.kt)("inlineCode",{parentName:"a"},"501fcdf"))),(0,n.kt)("li",{parentName:"ul"},"style(tag): stylelint and prettier changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/08b63864e8394fd86ada78df0b441cda52cd8063"},(0,n.kt)("inlineCode",{parentName:"a"},"08b6386")))),(0,n.kt)("h4",{id:"\ufe0f-others-47"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"1.10 release #140 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/88d33396845f00830789867663a9cd66ad88920f"},(0,n.kt)("inlineCode",{parentName:"a"},"88d3339"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/328ef2cda2d3470b5cb5ae2ef9854323f6b0f3c7"},(0,n.kt)("inlineCode",{parentName:"a"},"328ef2c"))),(0,n.kt)("li",{parentName:"ul"},"undo changes to Header.jsx committed wrongly in 4b6ab ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bfc4c51d39cf9c5151c39b099071174897de10b0"},(0,n.kt)("inlineCode",{parentName:"a"},"bfc4c51"))),(0,n.kt)("li",{parentName:"ul"},"Update 0-intro.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af75f81a84ddb9b78a77a96450976c6cd1223924"},(0,n.kt)("inlineCode",{parentName:"a"},"af75f81"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): lf fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ecf474ffbaab6796434d49c30fb09deafe9d1125"},(0,n.kt)("inlineCode",{parentName:"a"},"ecf474f"))),(0,n.kt)("li",{parentName:"ul"},"Update 0-intro.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93a073242693fa3c24c39532c2c462f58071e5c4"},(0,n.kt)("inlineCode",{parentName:"a"},"93a0732"))),(0,n.kt)("li",{parentName:"ul"},"modifies tags title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/33c3714660aa6cfbca7e362fd7baa8c396b60a0e"},(0,n.kt)("inlineCode",{parentName:"a"},"33c3714"))),(0,n.kt)("li",{parentName:"ul"},"reafactor(taglist): fixes tags root class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d09959f85d2d21cdc890a71457ed5840b5b2c53"},(0,n.kt)("inlineCode",{parentName:"a"},"7d09959")))),(0,n.kt)("h3",{id:"019---2022-03-25"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.8...0.1.9"},"0.1.9")," - 2022-03-25"),(0,n.kt)("h4",{id:"-new-features-29"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(all): 1.9 release #124 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0d3f6fbf32a4948e00410d9d0943a077863cb869"},(0,n.kt)("inlineCode",{parentName:"a"},"0d3f6fb"))),(0,n.kt)("li",{parentName:"ul"},"feat(callout): Align volto-slate callout with blockquote style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9e0bb49ffe66ebb8b8173af411873ab887b91058"},(0,n.kt)("inlineCode",{parentName:"a"},"9e0bb49")))),(0,n.kt)("h4",{id:"-bug-fixes-42"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(inpageNavigation): restore hidden on top functionality ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c554e6e02e0c82b74653498e2f3fd32a982002a4"},(0,n.kt)("inlineCode",{parentName:"a"},"c554e6e"))),(0,n.kt)("li",{parentName:"ul"},"fix(list): Fix TOC margin on 3rd level ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f17da79394e29baf62bae1247dd954cdd0362108"},(0,n.kt)("inlineCode",{parentName:"a"},"f17da79"))),(0,n.kt)("li",{parentName:"ul"},"fix(inpageNavigation) : add smooth scroll animation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/42f6564276b9214257e2dbc1e2a8f7e501625aee"},(0,n.kt)("inlineCode",{parentName:"a"},"42f6564")))),(0,n.kt)("h4",{id:"-enhancements-57"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update visual and mobile margins ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/64f05af91638d91d2c07217b8edc2fb70a5e7347"},(0,n.kt)("inlineCode",{parentName:"a"},"64f05af"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): restore union dropdown after implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7029c556a9adc1ab9b0269de666e0ed0530f67e"},(0,n.kt)("inlineCode",{parentName:"a"},"a7029c5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pullquote): adjust to the new figma design ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/78e4606ac299938021f9e525898ae7f5cede311f"},(0,n.kt)("inlineCode",{parentName:"a"},"78e4606"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumb): adjust font sizes and import remix divider ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5fcabaf589074716b34fb5d0904e14549d7f4ef2"},(0,n.kt)("inlineCode",{parentName:"a"},"5fcabaf"))),(0,n.kt)("li",{parentName:"ul"},"change(header): use viewport width for changing mobile text in header dropdowns ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5a7868e1725f8766ae1be68d3c27b1313f79196b"},(0,n.kt)("inlineCode",{parentName:"a"},"5a7868e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(inpageNavigation): adjust to the new figma design ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4073acfb87378224d071079467bcfa195b1fc6ac"},(0,n.kt)("inlineCode",{parentName:"a"},"4073acf"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tab): add max width for tab items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/366d279a94d5f388c6167e7afb72d108c77c4085"},(0,n.kt)("inlineCode",{parentName:"a"},"366d279"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables):change pullquote styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9ad94bb424a14713ffa605c7497c95bdefeb6e5f"},(0,n.kt)("inlineCode",{parentName:"a"},"9ad94bb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Pullquote):change quote positions and add Pullquote.Metadata sub component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6bce35fa3cc158d9d18a07d0faf812c5c38bae0b"},(0,n.kt)("inlineCode",{parentName:"a"},"6bce35f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(inpageNavigation): Update to remix icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19a606170b4163cf4f751a419ca36a4c163b566d"},(0,n.kt)("inlineCode",{parentName:"a"},"19a6061"))),(0,n.kt)("li",{parentName:"ul"},"refactor(inpageNavigation) : move icon & text to be in column ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/09539102489ec511cb2b6cd047d316ab8b87ed55"},(0,n.kt)("inlineCode",{parentName:"a"},"0953910"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumbs): modified breadcrumbs template to behave like breadrumb template ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/490a559bc99f3a9d174a344cf0be85086293578e"},(0,n.kt)("inlineCode",{parentName:"a"},"490a559"))),(0,n.kt)("li",{parentName:"ul"},"change(package): bump release version to 1.9.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/43a6e4b92fd05ca272fb140922213834ee426938"},(0,n.kt)("inlineCode",{parentName:"a"},"43a6e4b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumb): adjust font sizes and import remix divider #120 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/09a3a01910ed898b62a9535fe5d2a41cfdb3a91b"},(0,n.kt)("inlineCode",{parentName:"a"},"09a3a01"))),(0,n.kt)("li",{parentName:"ul"},"change(menu): modified secondaryPointingItemMaxWidth to a value that equals to 250 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea138a10257206fae32c4e9a30233a3ddfd424b6"},(0,n.kt)("inlineCode",{parentName:"a"},"ea138a1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pullquote): introduce meta section, use remix icons, integrate slate callouts #119 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fd740c9e72b2defa5cc858ac020f0cb051aa527c"},(0,n.kt)("inlineCode",{parentName:"a"},"fd740c9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): updated visuals and gradients #117 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e5c6d18dc3fb33e5dfa654ecebdc12c6f5f0cf32"},(0,n.kt)("inlineCode",{parentName:"a"},"e5c6d18"))),(0,n.kt)("li",{parentName:"ul"},"change(scrollToTop): feature inpage navigation revamp #121 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3cf20a82b723b8df0b53f16c737e5c8990f891f1"},(0,n.kt)("inlineCode",{parentName:"a"},"3cf20a8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update visual and gradient ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/764ec23a456397b478456f7d628baa4e6c0b4713"},(0,n.kt)("inlineCode",{parentName:"a"},"764ec23"))),(0,n.kt)("li",{parentName:"ul"},"change(header): use 12px font size for mobile resolution dropdowns ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6dad0fab24f37f87696bb50f5a592e88510d053e"},(0,n.kt)("inlineCode",{parentName:"a"},"6dad0fa"))),(0,n.kt)("li",{parentName:"ul"},"change(nav): added navDepth to 3 in order to enable mega menu integration ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4f73fdd0dfadcd63b2f4be7a691bf12dcd9bb76"},(0,n.kt)("inlineCode",{parentName:"a"},"c4f73fd")))),(0,n.kt)("h4",{id:"-internal-changes-19"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(inpageNavigation) : lint changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3641d78374063904c00f1ba19f2f234f7a43892b"},(0,n.kt)("inlineCode",{parentName:"a"},"3641d78"))),(0,n.kt)("li",{parentName:"ul"},"style(inpageNavigation) : add less variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0699c70c66403ff75bf41ba252a74e9f4379671c"},(0,n.kt)("inlineCode",{parentName:"a"},"0699c70"))),(0,n.kt)("li",{parentName:"ul"},"style(pullquote): create variable for icon font size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fea9b0a7c33237ad036522b4dde567718d640210"},(0,n.kt)("inlineCode",{parentName:"a"},"fea9b0a"))),(0,n.kt)("li",{parentName:"ul"},"style(inpageNavigation) : add lint & prettier changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f8dd012a964e0c1f0bc22c36826a4a94bd052759"},(0,n.kt)("inlineCode",{parentName:"a"},"f8dd012"))),(0,n.kt)("li",{parentName:"ul"},"style(inpageNavigation): remove comment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1aee011d032c1a2b7fe564a40688bc39ca457c18"},(0,n.kt)("inlineCode",{parentName:"a"},"1aee011")))),(0,n.kt)("h4",{id:"\ufe0f-others-48"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"perf(eol): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/85a3dc55c7676c0feb8dd5b39fe0cbb9d66a9370"},(0,n.kt)("inlineCode",{parentName:"a"},"85a3dc5"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/00776211ccfa1cb90d9fa0e5269f47f5b3845741"},(0,n.kt)("inlineCode",{parentName:"a"},"0077621"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f1bb1c630edb669b03929a978cc116bae012255"},(0,n.kt)("inlineCode",{parentName:"a"},"9f1bb1c"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2b19fec30d6086f486bdca631a9114d8369fe43"},(0,n.kt)("inlineCode",{parentName:"a"},"e2b19fe"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/03dbc9b027578934f89d9480d981e1bc28f38aa3"},(0,n.kt)("inlineCode",{parentName:"a"},"03dbc9b"))),(0,n.kt)("li",{parentName:"ul"},"Hide breadcrumbs on homepage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e2f609df8d4b6bdb826e539fc0c613406d357a5"},(0,n.kt)("inlineCode",{parentName:"a"},"3e2f609"))),(0,n.kt)("li",{parentName:"ul"},"bug(inpageNavigation): less layers structure fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8d34fbdd5130ed36157db1ff70e8b039faa9f81"},(0,n.kt)("inlineCode",{parentName:"a"},"b8d34fb"))),(0,n.kt)("li",{parentName:"ul"},"prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4b1c572411cbc58dec51d5eeefe9847675c2e41"},(0,n.kt)("inlineCode",{parentName:"a"},"d4b1c57"))),(0,n.kt)("li",{parentName:"ul"},"fefactor(tab): add max width for tab items #118 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/716c408fa4c73f3feb8e36e35fb1f6bb50ac264c"},(0,n.kt)("inlineCode",{parentName:"a"},"716c408"))),(0,n.kt)("li",{parentName:"ul"},"Add reversed option to Timeline grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7c9023245f2fc943380f79743b5f10c6b6f65264"},(0,n.kt)("inlineCode",{parentName:"a"},"7c90232"))),(0,n.kt)("li",{parentName:"ul"},"doc(grid): update grid showcases ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/83671a382e39a2736c2c1353098d5f4fc2a0e67e"},(0,n.kt)("inlineCode",{parentName:"a"},"83671a3"))),(0,n.kt)("li",{parentName:"ul"},"End of line ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7f46fb752ec8918325ebadd386ee88248e02566c"},(0,n.kt)("inlineCode",{parentName:"a"},"7f46fb7")))),(0,n.kt)("h3",{id:"018---2022-03-18"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.7...0.1.8"},"0.1.8")," - 2022-03-18"),(0,n.kt)("h4",{id:"-bug-fixes-43"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(card): avoid long links from spilling outside of card body area ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/95b8951ab87bfab7a68cc20b89b25aa15113aa9d"},(0,n.kt)("inlineCode",{parentName:"a"},"95b8951")))),(0,n.kt)("h4",{id:"-enhancements-58"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(typography): set heading sizes as detailed in docusaurus typography section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/189bf20409581587061ffa30ff2bf04d97f284cf"},(0,n.kt)("inlineCode",{parentName:"a"},"189bf20"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): content tweaks, inpage navigation section #112 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b62d1b1def7c3d8890ffbba30950e8e422e9ed89"},(0,n.kt)("inlineCode",{parentName:"a"},"b62d1b1")))),(0,n.kt)("h4",{id:"-internal-changes-20"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(docusaurus): fixed grid tablet breakpoint value ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c7fbc0912131396e3a1e35803968eda1eff77d40"},(0,n.kt)("inlineCode",{parentName:"a"},"c7fbc09")))),(0,n.kt)("h4",{id:"-documentation-changes-18"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): capitalization remove ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bf8fa4407e7110da1c6a911506d56800bd5c32d7"},(0,n.kt)("inlineCode",{parentName:"a"},"bf8fa44"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1c04976a141324f0dde01b139a77f611e6f51840"},(0,n.kt)("inlineCode",{parentName:"a"},"1c04976"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): comment address on pr 112 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e4fe3bed285eae8b2cff03b1ef558debc0b4edb"},(0,n.kt)("inlineCode",{parentName:"a"},"6e4fe3b"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): color minor update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/13f9fda09287da5b8733d17f9c7567b6b7df750a"},(0,n.kt)("inlineCode",{parentName:"a"},"13f9fda"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): tabs and breadcrump update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d0547e5ad09a8608335b1e77e24c891e49213694"},(0,n.kt)("inlineCode",{parentName:"a"},"d0547e5")))),(0,n.kt)("h4",{id:"\ufe0f-others-49"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"doc(colours): add more content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ec66248f1290369dcf63ee12f7b71a1630df887b"},(0,n.kt)("inlineCode",{parentName:"a"},"ec66248"))),(0,n.kt)("li",{parentName:"ul"},"Add divider content for metadata field in Banner ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f1e34bd6a199f6418fba909e9dfdf50b0100e860"},(0,n.kt)("inlineCode",{parentName:"a"},"f1e34bd"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.8.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fd6ba047e8f8b257c3c75d07a6caefad376f888a"},(0,n.kt)("inlineCode",{parentName:"a"},"fd6ba04")))),(0,n.kt)("h3",{id:"017---2022-03-15"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.6...0.1.7"},"0.1.7")," - 2022-03-15"),(0,n.kt)("h4",{id:"-new-features-30"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(less): add global gap sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c83f20280b8a7ab0b5c78e3df7646beebe08709"},(0,n.kt)("inlineCode",{parentName:"a"},"3c83f20"))),(0,n.kt)("li",{parentName:"ul"},"feat(icons): import remix css ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/29967fb39034910dce286880f347a670f77421b3"},(0,n.kt)("inlineCode",{parentName:"a"},"29967fb")))),(0,n.kt)("h4",{id:"-bug-fixes-44"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(menu): fix border overflow for tabs and pagination ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e88721f916affa2a6d2f03930eb4266f9a2b0fb9"},(0,n.kt)("inlineCode",{parentName:"a"},"e88721f"))),(0,n.kt)("li",{parentName:"ul"},"fix(accordion): responsive and accessibility issues ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c225935ceb9fdba45c6f94086a35e177495fe584"},(0,n.kt)("inlineCode",{parentName:"a"},"c225935")))),(0,n.kt)("h4",{id:"-enhancements-59"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(menu): update paddings for tabs and pagination ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/533a5093e6c306034cb16e0a88e045019677951e"},(0,n.kt)("inlineCode",{parentName:"a"},"533a509"))),(0,n.kt)("li",{parentName:"ul"},"refactor(accordion): import semantic icon for remix arrows ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9aa77d856d1e43f4ec3daaab37f06fa91ebd1eaf"},(0,n.kt)("inlineCode",{parentName:"a"},"9aa77d8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(all) icons, accordion, button and menu itml #108 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/52ed2ca19b5e8dea60f1ee7bfd9c3b6b49a49f7d"},(0,n.kt)("inlineCode",{parentName:"a"},"52ed2ca"))),(0,n.kt)("li",{parentName:"ul"},"change(storybook): segment stories now contain several elements ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/98a7654b0d4a7c30c7a2df35103ddb2740f3ca2d"},(0,n.kt)("inlineCode",{parentName:"a"},"98a7654"))),(0,n.kt)("li",{parentName:"ul"},"change(table): inherit header alignment instead of hard-coding values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ebb5193babfe8b99094db6778afdaf2d91b2c4dd"},(0,n.kt)("inlineCode",{parentName:"a"},"ebb5193"))),(0,n.kt)("li",{parentName:"ul"},"refactor(icons): add remix icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4c1a92b671b52c509386addc02e8919c93391fb"},(0,n.kt)("inlineCode",{parentName:"a"},"c4c1a92"))),(0,n.kt)("li",{parentName:"ul"},"refactor(container): restore mobile width to auto ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2df184c19a8685c69e6b9a55b147a97853cc6b74"},(0,n.kt)("inlineCode",{parentName:"a"},"2df184c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button): update action button hover color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bb09d718433f93091ca1b325471d48741825ca96"},(0,n.kt)("inlineCode",{parentName:"a"},"bb09d71")))),(0,n.kt)("h4",{id:"-internal-changes-21"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(docusaurus): docs delete ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f9d733287902ccb096f5a976a2928e43a43a8e7"},(0,n.kt)("inlineCode",{parentName:"a"},"5f9d733")))),(0,n.kt)("h4",{id:"-documentation-changes-19"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(colors): corrections ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/da64c4c6b58e8840ea98be75d442b90911197e28"},(0,n.kt)("inlineCode",{parentName:"a"},"da64c4c"))),(0,n.kt)("li",{parentName:"ul"},"docs(list): default list showcase ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8ded06231c14d1394f77559aeb2d5a7e3a0c1bf1"},(0,n.kt)("inlineCode",{parentName:"a"},"8ded062")))),(0,n.kt)("h4",{id:"\ufe0f-others-50"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"bug(form): input min-width more specific to not break volto interface ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3f5b5d498ea1a0e3bb6fd62af5930f6579029b11"},(0,n.kt)("inlineCode",{parentName:"a"},"3f5b5d4"))),(0,n.kt)("li",{parentName:"ul"},"Update package.json ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3dba28b5a3d28adbf946a8df3d9cc9b8ef4c68e0"},(0,n.kt)("inlineCode",{parentName:"a"},"3dba28b")))),(0,n.kt)("h3",{id:"016---2022-03-11"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.5...0.1.6"},"0.1.6")," - 2022-03-11"),(0,n.kt)("h4",{id:"-new-features-31"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(cards): add custom display for volto-block-image-cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/645096ac5a0aa3326834191f56ee8a77db0464f5"},(0,n.kt)("inlineCode",{parentName:"a"},"645096a"))),(0,n.kt)("li",{parentName:"ul"},"feat(PublicationCard):create publication card component & styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e5f9b7a9bb301f446b232b99f7db54e6a7470ae"},(0,n.kt)("inlineCode",{parentName:"a"},"3e5f9b7"))),(0,n.kt)("li",{parentName:"ul"},"feat(PublicationCard):create publication card component & styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/12cdd5d50dc4c05f2c2b83586df90c7b91c11a75"},(0,n.kt)("inlineCode",{parentName:"a"},"12cdd5d"))),(0,n.kt)("li",{parentName:"ul"},"feat(Related Content): create Related Content component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/77eda953196f9e686d4ec2c996d6902a614af4a0"},(0,n.kt)("inlineCode",{parentName:"a"},"77eda95"))),(0,n.kt)("li",{parentName:"ul"},"feat(Related Content): create Related Content component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/08d495baeae575a07813056176ac940d7edc91eb"},(0,n.kt)("inlineCode",{parentName:"a"},"08d495b"))),(0,n.kt)("li",{parentName:"ul"},"feat(pagination,related) added several r3 components #105 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/08d47c199286402c31a0ff0de38fd08533d2cd91"},(0,n.kt)("inlineCode",{parentName:"a"},"08d47c1")))),(0,n.kt)("h4",{id:"-bug-fixes-45"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(Related Content): limit publication card number to 4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e7df03214824a85911c26499c8975f88ffa9fe4d"},(0,n.kt)("inlineCode",{parentName:"a"},"e7df032"))),(0,n.kt)("li",{parentName:"ul"},"fix(less variables):rename publication card variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/55c6fb8e5e9660352ce1bf2bd38c4ef8834ce184"},(0,n.kt)("inlineCode",{parentName:"a"},"55c6fb8"))),(0,n.kt)("li",{parentName:"ul"},"fix(Publication Card): add link to card and arg name fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/36a7c961639b2ff07acd455ccf277dd0a93f753c"},(0,n.kt)("inlineCode",{parentName:"a"},"36a7c96"))),(0,n.kt)("li",{parentName:"ul"},"fix(radio): fix bullet scaling issue with firefox ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f02c95f18c77527f949f115471cf24302df4d49"},(0,n.kt)("inlineCode",{parentName:"a"},"5f02c95"))),(0,n.kt)("li",{parentName:"ul"},"fix(radio): fix bullet scaling issue with firefox ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dbb2e27b43e6d267a436a8475107ad01e940ec93"},(0,n.kt)("inlineCode",{parentName:"a"},"dbb2e27")))),(0,n.kt)("h4",{id:"-enhancements-60"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(form): remove custom classes and add container to form items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6b5442a3c56854bf30269f235099d8507ba588f7"},(0,n.kt)("inlineCode",{parentName:"a"},"6b5442a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form): remove custom classes and add container to form items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d1ec083647f854c09d8a64dffa6a5c829321049e"},(0,n.kt)("inlineCode",{parentName:"a"},"d1ec083"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form): update form wrapper component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7195768bbe86121fc82bebca29abfb20b50d77a"},(0,n.kt)("inlineCode",{parentName:"a"},"a719576"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form): update form wrapper component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0736ec7d671d756c13a69bd8bf93488805da27e2"},(0,n.kt)("inlineCode",{parentName:"a"},"0736ec7"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form): adjust form items to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4213cfb79430273e637b06a76af28c9cd660aa74"},(0,n.kt)("inlineCode",{parentName:"a"},"4213cfb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form): adjust form items to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/374ffbc1c380df1b1a5f9939fc658d9ecca4ae1b"},(0,n.kt)("inlineCode",{parentName:"a"},"374ffbc"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumb): remove custom class anf and new variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b3cb83d90e0be7f8a80f619d57bc90cae4f8f207"},(0,n.kt)("inlineCode",{parentName:"a"},"b3cb83d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumb): remove custom class anf and new variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5808ad3576439df010bebfb8fd423858ffc4e66"},(0,n.kt)("inlineCode",{parentName:"a"},"d5808ad"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): clear up unnecessary form elements controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f7e7d5bc285ea5115bc8770c7471729f06da891e"},(0,n.kt)("inlineCode",{parentName:"a"},"f7e7d5b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): small change in unordered list story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ffd87246df9dffcc064683e93d6f3aff35b3931"},(0,n.kt)("inlineCode",{parentName:"a"},"3ffd872"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): small change in unordered list story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6ce16e990f15ef8c61493359815405517756c32c"},(0,n.kt)("inlineCode",{parentName:"a"},"6ce16e9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pagination): fix menu overrides for tabs that affects pagination ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fe8c4ca32072518820ad38f8b334b38f52ef2df5"},(0,n.kt)("inlineCode",{parentName:"a"},"fe8c4ca"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pagination): fix menu overrides for tabs that affects pagination ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3f4b726c2a2047f6f9a65375074dd7ea38717f5c"},(0,n.kt)("inlineCode",{parentName:"a"},"3f4b726"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Loader):remove image & add background image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70fe041e06cfee946bb9557f9fcb5ff49d08c287"},(0,n.kt)("inlineCode",{parentName:"a"},"70fe041"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Loader):remove image & add background image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac3812684ee4377914801cd770890c78bdeecedf"},(0,n.kt)("inlineCode",{parentName:"a"},"ac38126"))),(0,n.kt)("li",{parentName:"ul"},"refactor(list): remove selection control ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a09b1798a62a6e192deb1d217d0c44b4b881ce6a"},(0,n.kt)("inlineCode",{parentName:"a"},"a09b179"))),(0,n.kt)("li",{parentName:"ul"},"refactor(list): remove selection control ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/17bf710d00a91acd35356dbaa9d5093ca80a8987"},(0,n.kt)("inlineCode",{parentName:"a"},"17bf710"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook):unordered list minor change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/df2b72730500aee5d0bbc82185222edacad38b2b"},(0,n.kt)("inlineCode",{parentName:"a"},"df2b727"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook):unordered list minor change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef6db73ce2236d0f653212d2f57c336f1f8d806e"},(0,n.kt)("inlineCode",{parentName:"a"},"ef6db73"))),(0,n.kt)("li",{parentName:"ul"},"refactor(colors): remove metalic blue color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b2f95b6dc3b1d8314827d56e88efa0dfc719aca2"},(0,n.kt)("inlineCode",{parentName:"a"},"b2f95b6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(colors): remove metalic blue color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1eea33f71fdde5834f82d244224c185fde3ab8ba"},(0,n.kt)("inlineCode",{parentName:"a"},"1eea33f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button): update variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b1774d8c7f32ded2eff654b0d16e45d944fe5690"},(0,n.kt)("inlineCode",{parentName:"a"},"b1774d8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button): update variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/061f3e3042f28575dbb1a70f09a62bda728815be"},(0,n.kt)("inlineCode",{parentName:"a"},"061f3e3"))),(0,n.kt)("li",{parentName:"ul"},"change(blockquote): treat slate as a variation of blockquote component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19bd9a5f67e573b71531fe34b29d2e08e0856eae"},(0,n.kt)("inlineCode",{parentName:"a"},"19bd9a5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(container): remove important from rules ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e984771ed59fe849246ae8a01d9d84f3f2f232c5"},(0,n.kt)("inlineCode",{parentName:"a"},"e984771"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook):add textarea control to add/remove fluid class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/475f540efa76d0993c3f7bd72d4c646385f4c909"},(0,n.kt)("inlineCode",{parentName:"a"},"475f540"))),(0,n.kt)("li",{parentName:"ul"},"refactor(container): remove important from rules ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1cc69848705d3d592221bf7fa7d43c8b0eb37f09"},(0,n.kt)("inlineCode",{parentName:"a"},"1cc6984"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): add required attribute to form fields ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fecee278b920c44dd0dd34ace81f9606258c8f7c"},(0,n.kt)("inlineCode",{parentName:"a"},"fecee27"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progressBar): update progress bar colors with vars ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4ef1f0f6eba9792901bc9e0ec5b01877e9da96e"},(0,n.kt)("inlineCode",{parentName:"a"},"c4ef1f0"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progressBar): update progress bar colors with vars ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a44d73c48b6ccc988508fed5c3fb585353fe0958"},(0,n.kt)("inlineCode",{parentName:"a"},"a44d73c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): add required attribute to form fields ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/21da79eafa9f23dcf01cac7e096da7fab2187450"},(0,n.kt)("inlineCode",{parentName:"a"},"21da79e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(list): adjust bullet size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2b29e4e429f939500bc7d7ebd5836b8bc24090ec"},(0,n.kt)("inlineCode",{parentName:"a"},"2b29e4e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(list): adjust bullet size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/61c341cfdad3fccdd7499f6957f91ab99159ea16"},(0,n.kt)("inlineCode",{parentName:"a"},"61c341c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): add inverted background to global variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1427e70f2b208531bbb91ab1a708430f1c03ea3a"},(0,n.kt)("inlineCode",{parentName:"a"},"1427e70"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): add inverted background to global variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea25dfa5589181b7d23bef153bae3ab279e70167"},(0,n.kt)("inlineCode",{parentName:"a"},"ea25dfa"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): remove custom class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/46cc5601e378c7bfcf927b7c25dae2a2d3f795fd"},(0,n.kt)("inlineCode",{parentName:"a"},"46cc560"))),(0,n.kt)("li",{parentName:"ul"},"refactor(container): update mobile width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d548a44d86745270778134028be597f559d7a0b4"},(0,n.kt)("inlineCode",{parentName:"a"},"d548a44"))),(0,n.kt)("li",{parentName:"ul"},"refactor(grid): replace px with rem units ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e792f51e4f41b8f3f53e297b9e5a01d5e2d9bfb1"},(0,n.kt)("inlineCode",{parentName:"a"},"e792f51"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): remove custom class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b5c8e7c2aeb2751d4b981eacc51e3dda58a922dc"},(0,n.kt)("inlineCode",{parentName:"a"},"b5c8e7c"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): updated template to change what's new title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e15f4d3c3e5d4199886bb4cfeda8dce6a4bf041"},(0,n.kt)("inlineCode",{parentName:"a"},"3e15f4d"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): added display variable for footer site logos ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5b3c2f6d85b3a42eefa8521a074a7581bfbd8fb"},(0,n.kt)("inlineCode",{parentName:"a"},"d5b3c2f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(grid): replace px with rem units ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f0331d00f537cf41ca184796386f60a88bfe6c86"},(0,n.kt)("inlineCode",{parentName:"a"},"f0331d0"))),(0,n.kt)("li",{parentName:"ul"},"change(github): auto deploy only on develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/11d6b4e9059674b6dd1fe655995231be03a910fb"},(0,n.kt)("inlineCode",{parentName:"a"},"11d6b4e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): implementation in preparation for Volto integration #20 #89 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/95b136d51ddbc5632c0fa1cc696c2297a8c4695c"},(0,n.kt)("inlineCode",{parentName:"a"},"95b136d"))),(0,n.kt)("li",{parentName:"ul"},"change(github): trigger autobuild when modifying templates contents ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/46094b1427793cd88da6f615b16b70e6cfaee9af"},(0,n.kt)("inlineCode",{parentName:"a"},"46094b1")))),(0,n.kt)("h4",{id:"-internal-changes-22"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(list): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f9e3b05effc0afeddc234b491bc86f2ec82a764f"},(0,n.kt)("inlineCode",{parentName:"a"},"f9e3b05"))),(0,n.kt)("li",{parentName:"ul"},"style(list): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8eb715b05b3bef2795d2485084386c6e910392cf"},(0,n.kt)("inlineCode",{parentName:"a"},"8eb715b"))),(0,n.kt)("li",{parentName:"ul"},"chore(github): merge changes from develop to develop-itml ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/063bd6ecc5e47321854ca4994a91bf0a43ab3e3e"},(0,n.kt)("inlineCode",{parentName:"a"},"063bd6e"))),(0,n.kt)("li",{parentName:"ul"},"chore(github): build deployment only on develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a5a1b0802b46d674d04ae099afc8510e3cb62222"},(0,n.kt)("inlineCode",{parentName:"a"},"a5a1b08"))),(0,n.kt)("li",{parentName:"ul"},"chore(github): build deployment only on develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bb455aa4308e6593c45bcb3a62b8058709d74f83"},(0,n.kt)("inlineCode",{parentName:"a"},"bb455aa"))),(0,n.kt)("li",{parentName:"ul"},"chore(github): merge changes from develop to develop-itml ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/129c12f60025db50bac5b2d3dd36e04a97d49499"},(0,n.kt)("inlineCode",{parentName:"a"},"129c12f")))),(0,n.kt)("h4",{id:"\ufe0f-others-51"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},'Revert "chore(github): merge changes from develop to develop-itml" ',(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca9520fe8d91f8924ea203eb32001e3e6518e472"},(0,n.kt)("inlineCode",{parentName:"a"},"ca9520f"))),(0,n.kt)("li",{parentName:"ul"},"refactor breadcrumbs component, make it functional and customizable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e902d6931060c5676d67842f95391379fcb3cccf"},(0,n.kt)("inlineCode",{parentName:"a"},"e902d69"))),(0,n.kt)("li",{parentName:"ul"},"rollback(cards): move custom display to volto-block-image-cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2564b1ec2cc52670c0f2abc92c49161f5cd1b006"},(0,n.kt)("inlineCode",{parentName:"a"},"2564b1e"))),(0,n.kt)("li",{parentName:"ul"},"bring back segment wrapper and make it attached ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8458f0321f44f22a605e7179485d97f41a0afa38"},(0,n.kt)("inlineCode",{parentName:"a"},"8458f03"))),(0,n.kt)("li",{parentName:"ul"},"no ",(0,n.kt)("inlineCode",{parentName:"li"},"display: flex")," for blockquote added from slate ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5595ce1b8173e6952ab3926dc5f3c988279a42dc"},(0,n.kt)("inlineCode",{parentName:"a"},"5595ce1"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about code length ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a5f36523682dde8d1e16f416a07cd0c8c615a386"},(0,n.kt)("inlineCode",{parentName:"a"},"a5f3652"))),(0,n.kt)("li",{parentName:"ul"},"Add indenting rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/15c44cbcb6a52d0fd0438ff9b5d0e5963a4b53a0"},(0,n.kt)("inlineCode",{parentName:"a"},"15c44cb"))),(0,n.kt)("li",{parentName:"ul"},"fix warning related to proptype ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/946c6c6bc9dece0985ae4b9f9cad6ece2be0ff2c"},(0,n.kt)("inlineCode",{parentName:"a"},"946c6c6"))),(0,n.kt)("li",{parentName:"ul"},"fix profile section css overflow ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/db5126fc902e191d1e18fb7e4c54877c8d8786e6"},(0,n.kt)("inlineCode",{parentName:"a"},"db5126f"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about import sorting ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/804e188eea30427053111310ad2d3edf6a4ec78b"},(0,n.kt)("inlineCode",{parentName:"a"},"804e188"))),(0,n.kt)("li",{parentName:"ul"},"don't use volto-slate ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6a029765d3a59ac65b3b5dd18c1a9624bae1d52a"},(0,n.kt)("inlineCode",{parentName:"a"},"6a02976"))),(0,n.kt)("li",{parentName:"ul"},"remove segment custom width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1d3ea40f98bbdc1eab95b4da739a659b5e29ec16"},(0,n.kt)("inlineCode",{parentName:"a"},"1d3ea40"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about naming vars ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f9020fa3073190681de36cf1dcdf62e69ac2c74"},(0,n.kt)("inlineCode",{parentName:"a"},"8f9020f"))),(0,n.kt)("li",{parentName:"ul"},"update style for accordion title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0b0d678c69d8b0765ff015b0355c01d57c643192"},(0,n.kt)("inlineCode",{parentName:"a"},"0b0d678"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.6.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e771e657e5bedca3630d05cda643c45da5369d4c"},(0,n.kt)("inlineCode",{parentName:"a"},"e771e65"))),(0,n.kt)("li",{parentName:"ul"},"update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bbcab87ef4c8475f347f0daf4ab7e428e69c2316"},(0,n.kt)("inlineCode",{parentName:"a"},"bbcab87"))),(0,n.kt)("li",{parentName:"ul"},"add margin to ","<","br",">"," element to simulate gap as in design ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c6685c11a14febfc9b6c592a9adc9a25a0b80458"},(0,n.kt)("inlineCode",{parentName:"a"},"c6685c1"))),(0,n.kt)("li",{parentName:"ul"},"make breadcrumbs default size as tiny ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/589581fa29a7e249e59393bebe9dfe284090db6f"},(0,n.kt)("inlineCode",{parentName:"a"},"589581f"))),(0,n.kt)("li",{parentName:"ul"},"remove uneeded style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/82a8fb1eb3a359d54bc59234e498eb122d07223c"},(0,n.kt)("inlineCode",{parentName:"a"},"82a8fb1"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about hardcoded values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e04e0df7cd47d575e649d1995ea5c64b2a431b05"},(0,n.kt)("inlineCode",{parentName:"a"},"e04e0df"))),(0,n.kt)("li",{parentName:"ul"},"Add file mode rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/65c9a9357a82a39bf54862eff9231264a6277ab5"},(0,n.kt)("inlineCode",{parentName:"a"},"65c9a93"))),(0,n.kt)("li",{parentName:"ul"},"Add DRY rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/66c9c3a6b05bf3395f5bda1a7c5af26a9962e66c"},(0,n.kt)("inlineCode",{parentName:"a"},"66c9c3a"))),(0,n.kt)("li",{parentName:"ul"},"set profile section overflow to auto ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/71ab47f89a433233c14b394c3824e607dd18a393"},(0,n.kt)("inlineCode",{parentName:"a"},"71ab47f"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using eea-website-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/647a6e3e2093f2c4884c356eb148453551c8f33f"},(0,n.kt)("inlineCode",{parentName:"a"},"647a6e3"))),(0,n.kt)("li",{parentName:"ul"},"removed override already present in card.less ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/50d2ab26f85c8f409da02ec128cc1df34848ca69"},(0,n.kt)("inlineCode",{parentName:"a"},"50d2ab2"))),(0,n.kt)("li",{parentName:"ul"},"update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7a1d482aa875ab2669ed688663228d79ce9b7bea"},(0,n.kt)("inlineCode",{parentName:"a"},"7a1d482"))),(0,n.kt)("li",{parentName:"ul"},"Add functional components rule; add classnames rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91a0b067c7a36002a6d49c5c0238f593b5a6ac6e"},(0,n.kt)("inlineCode",{parentName:"a"},"91a0b06"))),(0,n.kt)("li",{parentName:"ul"},"added comment about need for removal of this fix later ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/65b81665c1cc41991b4903bb44a5eb7fb8ec5f3b"},(0,n.kt)("inlineCode",{parentName:"a"},"65b8166")))),(0,n.kt)("h3",{id:"015---2022-03-08"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.4...0.1.5"},"0.1.5")," - 2022-03-08"),(0,n.kt)("h4",{id:"-new-features-32"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(cards): add custom display for volto-block-image-cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f49ffb65f41c78499f56251c2de267ce5617b4c5"},(0,n.kt)("inlineCode",{parentName:"a"},"f49ffb6"))),(0,n.kt)("li",{parentName:"ul"},"feat(KeyContent): add new component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2534c542c2fd729b31a9064a21dae2bd3cacb2e4"},(0,n.kt)("inlineCode",{parentName:"a"},"2534c54"))),(0,n.kt)("li",{parentName:"ul"},"feat(docusaurus): Updated developer guidelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca146ffd42cb31286a5c49fa09390d0a93270cfa"},(0,n.kt)("inlineCode",{parentName:"a"},"ca146ff"))),(0,n.kt)("li",{parentName:"ul"},"feat(storybook): add testimonial component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/55d97472d82f3819674e78f684e197625c9f854c"},(0,n.kt)("inlineCode",{parentName:"a"},"55d9747"))),(0,n.kt)("li",{parentName:"ul"},"feat(storybook): add AvatarGrid component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b6684456ea6fa17695734b5179b39be77644da93"},(0,n.kt)("inlineCode",{parentName:"a"},"b668445"))),(0,n.kt)("li",{parentName:"ul"},"feat(storybook):add Loader component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6758346a516f7c4be5d66dfdf198dbe2ffe3f01"},(0,n.kt)("inlineCode",{parentName:"a"},"f675834")))),(0,n.kt)("h4",{id:"-bug-fixes-46"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(breakpoints): fix largest screen breakpoint bug on scaling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e4a11c876c20187351fa9454b4fbf0de3e502bff"},(0,n.kt)("inlineCode",{parentName:"a"},"e4a11c8"))),(0,n.kt)("li",{parentName:"ul"},"fix(profile): section css overflow and padding issues #95 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bb9eb0f83307524bda5cf86aa0dfd678c65da653"},(0,n.kt)("inlineCode",{parentName:"a"},"bb9eb0f"))),(0,n.kt)("li",{parentName:"ul"},"fix(storybook): lint auto changes for AvatarGrid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8e74f17df77f8f9f96bf442dc178417bbfc04c6"},(0,n.kt)("inlineCode",{parentName:"a"},"b8e74f1"))),(0,n.kt)("li",{parentName:"ul"},"fix(components): add grid structure to various components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cc33546deda634cee6031bd6cde6eef3eaacb76a"},(0,n.kt)("inlineCode",{parentName:"a"},"cc33546"))),(0,n.kt)("li",{parentName:"ul"},"fix(header) re-added span tags removed in pull request #74 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/00702d7831b84aad52f10368dbef740baf581ab8"},(0,n.kt)("inlineCode",{parentName:"a"},"00702d7")))),(0,n.kt)("h4",{id:"-enhancements-61"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(button): styling updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/37afda5b00797d456e303fb585dad145b575b2ed"},(0,n.kt)("inlineCode",{parentName:"a"},"37afda5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tab): updates on variables and overrides ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/54bf703f9f34f2f945f4635cd4bc4728174c7d47"},(0,n.kt)("inlineCode",{parentName:"a"},"54bf703"))),(0,n.kt)("li",{parentName:"ul"},"change(blockquote): treat slate as a variation of blockquote component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5e8a8b8220c7c25a266f045442aae44303eb8701"},(0,n.kt)("inlineCode",{parentName:"a"},"5e8a8b8"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): added display variable for footer site logos ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2f942b4a80c3ed9eb94e8b71299f4ebf33501eea"},(0,n.kt)("inlineCode",{parentName:"a"},"2f942b4"))),(0,n.kt)("li",{parentName:"ul"},"refactor(checkbox/radio): remove header from message and adjust top position of bullet ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a072b30bb01cf59339960cfd3254584cfae57c6"},(0,n.kt)("inlineCode",{parentName:"a"},"4a072b3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(color): remove secondaryColorDarken variable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/74c8ba073cc92af3987d81d484768235b95fcffb"},(0,n.kt)("inlineCode",{parentName:"a"},"74c8ba0"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): updated template to change what's new title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/58f58c887560e707ced47ccbac6897d8ebcf45d2"},(0,n.kt)("inlineCode",{parentName:"a"},"58f58c8"))),(0,n.kt)("li",{parentName:"ul"},"change(github): auto deploy only on develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bfa35a32bf0fefd4433aec4f7f8ee2cfe53eaae5"},(0,n.kt)("inlineCode",{parentName:"a"},"bfa35a3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): implementation in preparation for Volto integration #20 #97 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cddda2090d3d17c086dfd0cdb8a4dab3f886bfcd"},(0,n.kt)("inlineCode",{parentName:"a"},"cddda20"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumbs): component, make it functional and pluggable #32 #94 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f42e802bdf29d02c76131379b168c8c2119864b"},(0,n.kt)("inlineCode",{parentName:"a"},"9f42e80"))),(0,n.kt)("li",{parentName:"ul"},"change(card): added styles for volto cards integration #92 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a46ac21e6229059fb982174610a733c44000a2b6"},(0,n.kt)("inlineCode",{parentName:"a"},"a46ac21"))),(0,n.kt)("li",{parentName:"ul"},"refactor(grid): remove column count from example ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac0e9cf8e9f6ea99ddf8d5a92e49903999cde262"},(0,n.kt)("inlineCode",{parentName:"a"},"ac0e9cf"))),(0,n.kt)("li",{parentName:"ul"},"change(github): trigger autobuild when modifying templates contents ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f7d1523e92c1c4b3e6285a48d5f8c776aecfa9c"},(0,n.kt)("inlineCode",{parentName:"a"},"5f7d152"))),(0,n.kt)("li",{parentName:"ul"},"refactor(grid): remove custom grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1d978a96a464b3285961d54cb1cbc7c9eaf35faf"},(0,n.kt)("inlineCode",{parentName:"a"},"1d978a9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Form):change form field wrapper implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/73cdd6daba19aefce091552a62a528a42b323228"},(0,n.kt)("inlineCode",{parentName:"a"},"73cdd6d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(message): update colors to match design ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/633ce311dc5a6a141ee514a9108753531aa661e4"},(0,n.kt)("inlineCode",{parentName:"a"},"633ce31"))),(0,n.kt)("li",{parentName:"ul"},"refactor(checkbox/radio): update variables and remove important rules ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ad533b4e3e821c126f62b558523057720d2573c8"},(0,n.kt)("inlineCode",{parentName:"a"},"ad533b4"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables): add variables to less for new components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/47df026655748865bc7af8f44d51e5a9fcf7ee34"},(0,n.kt)("inlineCode",{parentName:"a"},"47df026"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Tab): fix vertical tab alignment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/401bdf2868e8c8305ad2c3cefa3188b730348574"},(0,n.kt)("inlineCode",{parentName:"a"},"401bdf2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(lint changes): add lint changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6f6847fc19db7922c93cb5f52e50db845d053e04"},(0,n.kt)("inlineCode",{parentName:"a"},"6f6847f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(inpageNavigation): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/62f74ea3c08069da8615516a52df8415d50048d5"},(0,n.kt)("inlineCode",{parentName:"a"},"62f74ea"))),(0,n.kt)("li",{parentName:"ul"},"refactor(message): updates on styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4cf8501de961794baf5a8ecec99e4bcddc2d71b"},(0,n.kt)("inlineCode",{parentName:"a"},"b4cf850"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): update class name ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef0969bd873e9fdd0eb32593f7c3f995270ef44c"},(0,n.kt)("inlineCode",{parentName:"a"},"ef0969b"))),(0,n.kt)("li",{parentName:"ul"},"change(github): use develop for auto pushing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a32a723f8126292f62a71cb4c4f94a2c7dec7605"},(0,n.kt)("inlineCode",{parentName:"a"},"a32a723")))),(0,n.kt)("h4",{id:"-internal-changes-23"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(design-system): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/631fa90e2ec5352c01e2ee0824de4a45cc33de34"},(0,n.kt)("inlineCode",{parentName:"a"},"631fa90"))),(0,n.kt)("li",{parentName:"ul"},"style(checkbox/radio): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a04939fdb530ed998a40aeb5b85a748d5dace0cd"},(0,n.kt)("inlineCode",{parentName:"a"},"a04939f"))),(0,n.kt)("li",{parentName:"ul"},"style(design-system): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c753f0b378384150597283c97f657eafbfff296"},(0,n.kt)("inlineCode",{parentName:"a"},"3c753f0"))),(0,n.kt)("li",{parentName:"ul"},"style(message): stylelint fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5b75057cb3a7b366a940ca9d1ba577cd09dc7225"},(0,n.kt)("inlineCode",{parentName:"a"},"5b75057")))),(0,n.kt)("h4",{id:"-documentation-changes-20"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): visuals guidelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/544a9502dc046d7e8bc635c19480a8deb2b31379"},(0,n.kt)("inlineCode",{parentName:"a"},"544a950"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): search guidelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0fb229d8b6a042bd716a093faaf8a1461b70cdb8"},(0,n.kt)("inlineCode",{parentName:"a"},"0fb229d"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): loader page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/892a25dba66f3557af22f8f0f96db695ddf1b402"},(0,n.kt)("inlineCode",{parentName:"a"},"892a25d")))),(0,n.kt)("h4",{id:"\ufe0f-others-52"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Reformat header.less ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f99dfc82c165304ca5600ce5138c1233615ab69"},(0,n.kt)("inlineCode",{parentName:"a"},"1f99dfc"))),(0,n.kt)("li",{parentName:"ul"},"Close menu when changing path ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/65daea9ee34c64bd5e51104077bc745b68169cd2"},(0,n.kt)("inlineCode",{parentName:"a"},"65daea9"))),(0,n.kt)("li",{parentName:"ul"},"refactor breadcrumbs component, make it functional and customizable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ec374e20565eb0a5aed0ff67a02cd6f77eba1f0"},(0,n.kt)("inlineCode",{parentName:"a"},"4ec374e"))),(0,n.kt)("li",{parentName:"ul"},"rollback(cards): move custom display to volto-block-image-cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/79d4c8914b7184d559465135f046b60ee96301e1"},(0,n.kt)("inlineCode",{parentName:"a"},"79d4c89"))),(0,n.kt)("li",{parentName:"ul"},"Open overlay menu on global menu click ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cc749bc4266aae793b85d72c43c8a08b0c2fec48"},(0,n.kt)("inlineCode",{parentName:"a"},"cc749bc"))),(0,n.kt)("li",{parentName:"ul"},"bring back segment wrapper and make it attached ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f413ffaf641c161e8ff0f8010759cffd7e30238"},(0,n.kt)("inlineCode",{parentName:"a"},"9f413ff"))),(0,n.kt)("li",{parentName:"ul"},"Use renderMenuItem also in mobile menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/02de0bb4750062a310109256b6c6d29120287fd4"},(0,n.kt)("inlineCode",{parentName:"a"},"02de0bb"))),(0,n.kt)("li",{parentName:"ul"},"Fix clicking outside closes menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af526646559d1a00ade04dc24def26e5665a5a8c"},(0,n.kt)("inlineCode",{parentName:"a"},"af52664"))),(0,n.kt)("li",{parentName:"ul"},"Cleanup args in header story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2bf6a304b1149ec1204f08f318248ed52ad8fa3d"},(0,n.kt)("inlineCode",{parentName:"a"},"2bf6a30"))),(0,n.kt)("li",{parentName:"ul"},"fix warning related to proptype ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/824b9beff77aae139882cd50a1d670a02ec6f723"},(0,n.kt)("inlineCode",{parentName:"a"},"824b9be"))),(0,n.kt)("li",{parentName:"ul"},"fix profile section css overflow ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8fd265413149f1b5e033dffa0fbcb5ef5ecad15f"},(0,n.kt)("inlineCode",{parentName:"a"},"8fd2654"))),(0,n.kt)("li",{parentName:"ul"},"don't use volto-slate ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70ca3d4ec4e8e4dc633e957b842d94b708af8b82"},(0,n.kt)("inlineCode",{parentName:"a"},"70ca3d4"))),(0,n.kt)("li",{parentName:"ul"},"remove segment custom width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a60d84d5fe76578b7760aa1dad6eef9a20916a7"},(0,n.kt)("inlineCode",{parentName:"a"},"4a60d84"))),(0,n.kt)("li",{parentName:"ul"},"update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/96f4af0fb22605fd294472eb18f7f62e4bd7b0fb"},(0,n.kt)("inlineCode",{parentName:"a"},"96f4af0"))),(0,n.kt)("li",{parentName:"ul"},"Fix TopDropdownMenu component rendering in mobile ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4626def4e1f97f323f3fef130f5d531925ba15b"},(0,n.kt)("inlineCode",{parentName:"a"},"a4626de"))),(0,n.kt)("li",{parentName:"ul"},"Add usePrevious hook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/797faba3cad73288755f6c6e685448d780905189"},(0,n.kt)("inlineCode",{parentName:"a"},"797faba"))),(0,n.kt)("li",{parentName:"ul"},"make breadcrumbs default size as tiny ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c8e1c64f27596421e78927f11616093667b04c6"},(0,n.kt)("inlineCode",{parentName:"a"},"3c8e1c6"))),(0,n.kt)("li",{parentName:"ul"},"Update package.json ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fa020cb5dd85e28d0713b3e8a11aff5b2c1060af"},(0,n.kt)("inlineCode",{parentName:"a"},"fa020cb"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about hardcoded values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0c6912c82625c2e389fd75f0d0a051348781d407"},(0,n.kt)("inlineCode",{parentName:"a"},"0c6912c"))),(0,n.kt)("li",{parentName:"ul"},"set profile section overflow to auto ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8db62bbcd0258fee16411e94888c732a29b1949d"},(0,n.kt)("inlineCode",{parentName:"a"},"8db62bb"))),(0,n.kt)("li",{parentName:"ul"},"added comment about need for removal of this fix later ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6fdbd713dbfe795e7e81cfa37398774fad71c054"},(0,n.kt)("inlineCode",{parentName:"a"},"6fdbd71"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using eea-website-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6051724437a38675e659c797bb5586ef81286ec0"},(0,n.kt)("inlineCode",{parentName:"a"},"6051724"))),(0,n.kt)("li",{parentName:"ul"},"removed override already present in card.less ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93c4e5aac9cc85ff2cc6c04180f6655d5f5616dc"},(0,n.kt)("inlineCode",{parentName:"a"},"93c4e5a"))),(0,n.kt)("li",{parentName:"ul"},"Remove console.log calls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8a3a4cb32bfed2daa86339b15c0301eb01e19f23"},(0,n.kt)("inlineCode",{parentName:"a"},"8a3a4cb"))),(0,n.kt)("li",{parentName:"ul"},"update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/81bb7d4a02576887b80e978c32724580b772d57a"},(0,n.kt)("inlineCode",{parentName:"a"},"81bb7d4"))),(0,n.kt)("li",{parentName:"ul"},"Update comment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ffa24001728f824b8e7154c93c5aad8196bd92ea"},(0,n.kt)("inlineCode",{parentName:"a"},"ffa2400"))),(0,n.kt)("li",{parentName:"ul"},"merge develop into this branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ad5b388957b7d67f1b7ae06f2b80b1c30868d72a"},(0,n.kt)("inlineCode",{parentName:"a"},"ad5b388"))),(0,n.kt)("li",{parentName:"ul"},"WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a8d97f10b9768894a135549e9dc8f938b663f905"},(0,n.kt)("inlineCode",{parentName:"a"},"a8d97f1"))),(0,n.kt)("li",{parentName:"ul"},"Use header.less from develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/99edbc6ccd6023162dcce75b36d6b9451b06f6dc"},(0,n.kt)("inlineCode",{parentName:"a"},"99edbc6"))),(0,n.kt)("li",{parentName:"ul"},"WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/57b5783e2b03859f89c5926951ea232547b455cc"},(0,n.kt)("inlineCode",{parentName:"a"},"57b5783"))),(0,n.kt)("li",{parentName:"ul"},"WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/785da36b725bf14bff28a67da799c51bc5b4f20f"},(0,n.kt)("inlineCode",{parentName:"a"},"785da36"))),(0,n.kt)("li",{parentName:"ul"},"WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5d1eba9a1df2d2bb078f119ee99b0627ac55ae1d"},(0,n.kt)("inlineCode",{parentName:"a"},"5d1eba9"))),(0,n.kt)("li",{parentName:"ul"},"adds Tags ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e37fc1957ed8357bc2190239da4440bb98b0dabe"},(0,n.kt)("inlineCode",{parentName:"a"},"e37fc19"))),(0,n.kt)("li",{parentName:"ul"},"Add useClickOutside hook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70364c88631cbfa6e6854a99dde42ea2ad73221f"},(0,n.kt)("inlineCode",{parentName:"a"},"70364c8"))),(0,n.kt)("li",{parentName:"ul"},"Implement outside click handling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fa6f81823c47ca32209f3f1c8b1810b5447f97ec"},(0,n.kt)("inlineCode",{parentName:"a"},"fa6f818"))),(0,n.kt)("li",{parentName:"ul"},"Simplify overlay menu template ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/28b04784cf32ed4393e452c56680bffda411d526"},(0,n.kt)("inlineCode",{parentName:"a"},"28b0478"))),(0,n.kt)("li",{parentName:"ul"},"fixes less variables, fixes tags positioning ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cc19b9b537b5f21ceaba986bbd0182bb3b867ac7"},(0,n.kt)("inlineCode",{parentName:"a"},"cc19b9b"))),(0,n.kt)("li",{parentName:"ul"},"WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/15bc0f4287b705839f6fd5ac8835f03e2e99f1f1"},(0,n.kt)("inlineCode",{parentName:"a"},"15bc0f4"))),(0,n.kt)("li",{parentName:"ul"},"no ",(0,n.kt)("inlineCode",{parentName:"li"},"display: flex")," for blockquote added from slate ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/312a893e924dea4e7aed182be4a615bc3c4f04f8"},(0,n.kt)("inlineCode",{parentName:"a"},"312a893"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about code length ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/318cd48f8116a49897590137eebe2ce35285b813"},(0,n.kt)("inlineCode",{parentName:"a"},"318cd48"))),(0,n.kt)("li",{parentName:"ul"},"Add indenting rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d58968522ef82a7d5381fc4958ae2049562b7103"},(0,n.kt)("inlineCode",{parentName:"a"},"d589685"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about import sorting ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cd337c16650ae169e4b634b034f40f3cd887ceb8"},(0,n.kt)("inlineCode",{parentName:"a"},"cd337c1"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about naming vars ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b112de0dcaa4209cfe143dcd26ba929b4cbe0a42"},(0,n.kt)("inlineCode",{parentName:"a"},"b112de0"))),(0,n.kt)("li",{parentName:"ul"},"Bring back classNames from header subpopup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e477a5150bee569fadca300a3ccc3586e7d7ef4a"},(0,n.kt)("inlineCode",{parentName:"a"},"e477a51"))),(0,n.kt)("li",{parentName:"ul"},"removes tags hashtag from jsx ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6b8b3e94a6a1060304c1e5b228806985343ef6a0"},(0,n.kt)("inlineCode",{parentName:"a"},"6b8b3e9"))),(0,n.kt)("li",{parentName:"ul"},"WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d481324ff7a63e3cb0847b89fa188cc8781de4dc"},(0,n.kt)("inlineCode",{parentName:"a"},"d481324"))),(0,n.kt)("li",{parentName:"ul"},"fixes undefined on empty classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4b29080d646c44b02a28c4619f5285227fa2bf78"},(0,n.kt)("inlineCode",{parentName:"a"},"4b29080"))),(0,n.kt)("li",{parentName:"ul"},"stylelint changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a5ab83018bccd8fbfcf2160fe9c6c4fc24abe83a"},(0,n.kt)("inlineCode",{parentName:"a"},"a5ab830"))),(0,n.kt)("li",{parentName:"ul"},"Footer link color @white ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/578e4f7bb174cd46d50a8b5c5a97f8bbff510f11"},(0,n.kt)("inlineCode",{parentName:"a"},"578e4f7"))),(0,n.kt)("li",{parentName:"ul"},"add margin to ","<","br",">"," element to simulate gap as in design ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9ab9a97dc231fd3b704fedd99c742f425be4578c"},(0,n.kt)("inlineCode",{parentName:"a"},"9ab9a97"))),(0,n.kt)("li",{parentName:"ul"},"impors colors from site variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6117267716b76b17379ae989911c5d5f00e63259"},(0,n.kt)("inlineCode",{parentName:"a"},"6117267"))),(0,n.kt)("li",{parentName:"ul"},"small fix for the link in footer action ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/72df049aa644ac2a675057bf3a96440144acabfb"},(0,n.kt)("inlineCode",{parentName:"a"},"72df049"))),(0,n.kt)("li",{parentName:"ul"},"remove uneeded style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/66e9064de395b37caef1436aaee3a164b53ae406"},(0,n.kt)("inlineCode",{parentName:"a"},"66e9064"))),(0,n.kt)("li",{parentName:"ul"},"use proper naming conventions for var naming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/596e3143e28f23e60f20becd97276831c89d9684"},(0,n.kt)("inlineCode",{parentName:"a"},"596e314"))),(0,n.kt)("li",{parentName:"ul"},"Add file mode rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/805baa7db5ae1863bc85687f8f872c74a26647c8"},(0,n.kt)("inlineCode",{parentName:"a"},"805baa7"))),(0,n.kt)("li",{parentName:"ul"},"use less variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b43ac8d3bfc0231313f3d8bc719e373a127c6329"},(0,n.kt)("inlineCode",{parentName:"a"},"b43ac8d"))),(0,n.kt)("li",{parentName:"ul"},"Add DRY rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2f1584e769d0462c0385847630e3bbfe48a52339"},(0,n.kt)("inlineCode",{parentName:"a"},"2f1584e"))),(0,n.kt)("li",{parentName:"ul"},"Add functional components rule; add classnames rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1b2915ed3a4a3446e11058ac7de8937cf5755630"},(0,n.kt)("inlineCode",{parentName:"a"},"1b2915e"))),(0,n.kt)("li",{parentName:"ul"},"fix z-index of header ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d2a5d6bb822a298367ce58d867939318171a300"},(0,n.kt)("inlineCode",{parentName:"a"},"7d2a5d6"))),(0,n.kt)("li",{parentName:"ul"},"Remove comment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d120b16491406ea7cc26428dcf13ec2565868d0"},(0,n.kt)("inlineCode",{parentName:"a"},"7d120b1")))),(0,n.kt)("h3",{id:"014---2022-03-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.4-beta.0...0.1.4"},"0.1.4")," - 2022-03-01"),(0,n.kt)("h4",{id:"-enhancements-62"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(pagination): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/06cc3b6db6f56040264e4c70fe2e39ace14499d7"},(0,n.kt)("inlineCode",{parentName:"a"},"06cc3b6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Form):create form field wrapper file ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/95b9934a75ffd6b254b7bb9c119b8087c7565c13"},(0,n.kt)("inlineCode",{parentName:"a"},"95b9934"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): update margins for menu items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/230e476d133b3f7853a73f3f2ee372c6306bd43f"},(0,n.kt)("inlineCode",{parentName:"a"},"230e476"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): update gradient ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/47f2ea40c4f214a41af58ceb90839a05932b0b55"},(0,n.kt)("inlineCode",{parentName:"a"},"47f2ea4")))),(0,n.kt)("h4",{id:"-documentation-changes-21"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): divider page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c6bb2389f819a9ebd8e34db0e825f3e5f62130d4"},(0,n.kt)("inlineCode",{parentName:"a"},"c6bb238")))),(0,n.kt)("h4",{id:"\ufe0f-others-53"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"add footer links,align footer image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b039564e8cd3a0319ebe07f434f20bb7d7827fe1"},(0,n.kt)("inlineCode",{parentName:"a"},"b039564"))),(0,n.kt)("li",{parentName:"ul"},"cosmetics: remove formatting ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e02b08dc2adc8b89a5b9117b5a572c7080248c29"},(0,n.kt)("inlineCode",{parentName:"a"},"e02b08d"))),(0,n.kt)("li",{parentName:"ul"},"refactor Footer component to consume children and prop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/faafcffe07383ba55f5746cb971cdf706d988f78"},(0,n.kt)("inlineCode",{parentName:"a"},"faafcff"))),(0,n.kt)("li",{parentName:"ul"},"update footer stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4e5742872f21d9737f3de443fa0e9d1b6ba02637"},(0,n.kt)("inlineCode",{parentName:"a"},"4e57428"))),(0,n.kt)("li",{parentName:"ul"},"update stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/81973cac96ee48e9b294c45e32c0ec3d2956fe67"},(0,n.kt)("inlineCode",{parentName:"a"},"81973ca"))),(0,n.kt)("li",{parentName:"ul"},"Small improvements to footer ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6d1fdc000ab83932df62244142068f097aeeb85"},(0,n.kt)("inlineCode",{parentName:"a"},"f6d1fdc"))),(0,n.kt)("li",{parentName:"ul"},"fix header urls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e5908916823a1f5771ddbeb51b3e8af026425c49"},(0,n.kt)("inlineCode",{parentName:"a"},"e590891"))),(0,n.kt)("li",{parentName:"ul"},"Rename files in footer story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3de0c19d1ddeb69d8567026e1532fceb9221049a"},(0,n.kt)("inlineCode",{parentName:"a"},"3de0c19"))),(0,n.kt)("li",{parentName:"ul"},"add style for accordion title input on edit mode ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/598aa129f2dff0a2cb2ec57f551fa72481aa911e"},(0,n.kt)("inlineCode",{parentName:"a"},"598aa12"))),(0,n.kt)("li",{parentName:"ul"},"remove comments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2db0d2c2bbebe8bab8cf9801c5ea2650dde96b87"},(0,n.kt)("inlineCode",{parentName:"a"},"2db0d2c"))),(0,n.kt)("li",{parentName:"ul"},"Apply slate customization if volto-slate addon is used ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c066701dc359c6daf01703dac8fa61c2314c11cf"},(0,n.kt)("inlineCode",{parentName:"a"},"c066701"))),(0,n.kt)("li",{parentName:"ul"},"use relative links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af91a203bb30f5c9aa1335bfa8cdaa7857d577e2"},(0,n.kt)("inlineCode",{parentName:"a"},"af91a20"))),(0,n.kt)("li",{parentName:"ul"},"make footer anchor links white ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0c671e1bf52268505a5dc58196c285c04da33b10"},(0,n.kt)("inlineCode",{parentName:"a"},"0c671e1"))),(0,n.kt)("li",{parentName:"ul"},"use custom var for line-height ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f7f6c7ea605014741b9426b19008a4e6eda6704c"},(0,n.kt)("inlineCode",{parentName:"a"},"f7f6c7e"))),(0,n.kt)("li",{parentName:"ul"},"Update semantic.less ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4a90aed030a8927fa2ea949e4f44d23638c751a"},(0,n.kt)("inlineCode",{parentName:"a"},"a4a90ae"))),(0,n.kt)("li",{parentName:"ul"},"Bump release version ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c41a42bc2fd8174a2554e6dce1a1090eff4f3bd1"},(0,n.kt)("inlineCode",{parentName:"a"},"c41a42b"))),(0,n.kt)("li",{parentName:"ul"},"Update style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/89686990b2481f339c9bec7e7f9d35d9caab94c5"},(0,n.kt)("inlineCode",{parentName:"a"},"8968699"))),(0,n.kt)("li",{parentName:"ul"},"remove styling on header popups ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/86c499be61c0d2df46cb3469a47f0afae2e46c49"},(0,n.kt)("inlineCode",{parentName:"a"},"86c499b"))),(0,n.kt)("li",{parentName:"ul"},"remove search icon styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aca80fdc78859461cfee1d902b1d122d4a189b31"},(0,n.kt)("inlineCode",{parentName:"a"},"aca80fd"))),(0,n.kt)("li",{parentName:"ul"},"adjust popup height for computer screens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/47c5edb06c8d8cdb9af8ac64f68be0e0360eccaf"},(0,n.kt)("inlineCode",{parentName:"a"},"47c5edb"))),(0,n.kt)("li",{parentName:"ul"},"fix login container width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9a887e3b15aa63aab9be8738f599febcfe245b81"},(0,n.kt)("inlineCode",{parentName:"a"},"9a887e3"))),(0,n.kt)("li",{parentName:"ul"},"Typo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/90da95c67e965124da7f431e464bcbc15fa67894"},(0,n.kt)("inlineCode",{parentName:"a"},"90da95c"))),(0,n.kt)("li",{parentName:"ul"},"fix search-input icon line-height ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b087ff86d7753f3ee0bf90a9b07c4ee7ef5e336c"},(0,n.kt)("inlineCode",{parentName:"a"},"b087ff8"))),(0,n.kt)("li",{parentName:"ul"},"lint fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e9790ca72b8d3caf114c1b80b9c5837fb6a1a56e"},(0,n.kt)("inlineCode",{parentName:"a"},"e9790ca"))),(0,n.kt)("li",{parentName:"ul"},"Rename, reorganize logos ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1ef8d22df5a757258d8610818f44362046bc828d"},(0,n.kt)("inlineCode",{parentName:"a"},"1ef8d22")))),(0,n.kt)("h3",{id:"014-beta0---2022-02-25"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.3...0.1.4-beta.0"},"0.1.4-beta.0")," - 2022-02-25"),(0,n.kt)("h4",{id:"-new-features-33"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(github): added feature and bug reports templates with our guidelines as checkboxes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/15490937382ced93f5ac69cc1939256c0a468823"},(0,n.kt)("inlineCode",{parentName:"a"},"1549093")))),(0,n.kt)("h3",{id:"013---2022-02-25"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.2...0.1.3"},"0.1.3")," - 2022-02-25"),(0,n.kt)("h4",{id:"-bug-fixes-47"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(all): change eol to unix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/62e72244f78d43ce1c7b1a5ceb8405e4a617c88a"},(0,n.kt)("inlineCode",{parentName:"a"},"62e7224"))),(0,n.kt)("li",{parentName:"ul"},"fix(banner): separate url value ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f9c9140a6f8640bbb83a08f9c5c268f31ff7b6a8"},(0,n.kt)("inlineCode",{parentName:"a"},"f9c9140"))),(0,n.kt)("li",{parentName:"ul"},"fix(all): merge eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c68f6e0e7ab11d7451c8aabf194f62da0b6adb28"},(0,n.kt)("inlineCode",{parentName:"a"},"c68f6e0"))),(0,n.kt)("li",{parentName:"ul"},"fix(blockquote): align self property now uses a valid entry ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ec761634765105694386ce48153fb95c09339273"},(0,n.kt)("inlineCode",{parentName:"a"},"ec76163")))),(0,n.kt)("h4",{id:"-enhancements-63"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): new implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff013afc68fed97d085e3930f6d728b266786dc1"},(0,n.kt)("inlineCode",{parentName:"a"},"ff013af"))),(0,n.kt)("li",{parentName:"ul"},"change(volto): removed customizations made for ims theme from volto-eea-design-system ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bc8d514d82da0811c10eefe6dde16e0846497a4a"},(0,n.kt)("inlineCode",{parentName:"a"},"bc8d514"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Timeline): divide to sub components and change files to .jsx ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e2bd3b6c8dd064e7269819ce465b961a0cee849"},(0,n.kt)("inlineCode",{parentName:"a"},"3e2bd3b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4e5d08d565ef08e4e390ede4a611145a16ca2fa9"},(0,n.kt)("inlineCode",{parentName:"a"},"4e5d08d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): link header's menu to mega menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/08406d84e5bc1c7eb1358baff19ff6731f124b32"},(0,n.kt)("inlineCode",{parentName:"a"},"08406d8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Menu): change mega menu implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/455a51b9a9fbb00c6a89c42de226787c143176f7"},(0,n.kt)("inlineCode",{parentName:"a"},"455a51b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Grid):minor changes and delete extra files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/272585dfed0c0e82b26c1e6843484ad0981ba75f"},(0,n.kt)("inlineCode",{parentName:"a"},"272585d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(timeline): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b98641af00f23302b728094ed00a4563b6813387"},(0,n.kt)("inlineCode",{parentName:"a"},"b98641a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): fix link hover issue for tablet ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/564e9721aea7d4ed998d88764e37454bc3154d3d"},(0,n.kt)("inlineCode",{parentName:"a"},"564e972"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add remix icons and minor updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c9c97dd719187e996efabaee28ccbf23d43f03af"},(0,n.kt)("inlineCode",{parentName:"a"},"c9c97dd"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): change header buttons implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6608b8cfffb75dda90b01728dc4fe657cbd84069"},(0,n.kt)("inlineCode",{parentName:"a"},"6608b8c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): add sub components and change existing Main ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/74c35a3fe462bdad7b9b2a5a6e969043439fdf5b"},(0,n.kt)("inlineCode",{parentName:"a"},"74c35a3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(table): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab7a0e8d9e83edb3035d57285a5f85557bcd7576"},(0,n.kt)("inlineCode",{parentName:"a"},"ab7a0e8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Footer): delete Actions & ThemeSites files and clear imports ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7a78456f55742a1b356070303218342876641e52"},(0,n.kt)("inlineCode",{parentName:"a"},"7a78456"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/326655a48aeac65b32beadb48707d0193c952702"},(0,n.kt)("inlineCode",{parentName:"a"},"326655a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Breadcrumb): add react router link and minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/073a3a36215427dce274a533b10d2d0bb3526de9"},(0,n.kt)("inlineCode",{parentName:"a"},"073a3a3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): show menu on search & minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4d49a8ae6958b84bd2dbaf7bd5f62310037eb288"},(0,n.kt)("inlineCode",{parentName:"a"},"4d49a8a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(List): add extra default list story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/95665cdca945cba104a25d5efcbc56436dffbd7f"},(0,n.kt)("inlineCode",{parentName:"a"},"95665cd"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus) change generation of what's new section and bump package version ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6c35cff4d65bb44755376c85ff4de8c6b39af00b"},(0,n.kt)("inlineCode",{parentName:"a"},"6c35cff"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Footer): minor code changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/67cb4bc5f9d341da78e7816ed89f219d8ac2836e"},(0,n.kt)("inlineCode",{parentName:"a"},"67cb4bc"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Menu): add class to mega menu items for styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19baa342c29322d11371303dc0092f472da1eeee"},(0,n.kt)("inlineCode",{parentName:"a"},"19baa34"))),(0,n.kt)("li",{parentName:"ul"},"change(accordion): modified default accordion stories titles with real accordion names ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cf11cc81d7096d338c565180597822e51fcaa8b7"},(0,n.kt)("inlineCode",{parentName:"a"},"cf11cc8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): accessibility image alt fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7347a688c2f37f08390b189f8bfa990c26c7f75"},(0,n.kt)("inlineCode",{parentName:"a"},"a7347a6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): adjust to volto in progress ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/760becabf40dbbaed36dac6c37275c7e31aa2509"},(0,n.kt)("inlineCode",{parentName:"a"},"760beca"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): header items as storybook arguments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/388c752aa0694e78f5306c2b2efa4a34df4b9ca6"},(0,n.kt)("inlineCode",{parentName:"a"},"388c752"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): update less variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/35b0a98eced49212bb08c3c7d2ac6987a16ec6be"},(0,n.kt)("inlineCode",{parentName:"a"},"35b0a98"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): actions as buttons; don't hardcode url for banner image; subcomponentize Banner, add Banner.Action; add developer guidelines on inline styles and line endings; ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6dd5a41248e8bf4095744bd89217707f3ad820a1"},(0,n.kt)("inlineCode",{parentName:"a"},"6dd5a41"))),(0,n.kt)("li",{parentName:"ul"},"refactor(blockquote): fix responsive margins and sizes rems ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/209f94f5535d83678af5fd650dcc3892a94c8a34"},(0,n.kt)("inlineCode",{parentName:"a"},"209f94f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Input): label position and style change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/970074aacae0c1ffabe88be58779b332993a37fd"},(0,n.kt)("inlineCode",{parentName:"a"},"970074a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update dropdown menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32eb0fa5dbb431c5d8e74e4c3e28b0555dab8aea"},(0,n.kt)("inlineCode",{parentName:"a"},"32eb0fa"))),(0,n.kt)("li",{parentName:"ul"},"refactor(timeline): theming updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c80c9aa5eb08c3b58199c6f6faca06445640f9f8"},(0,n.kt)("inlineCode",{parentName:"a"},"c80c9aa"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Blockquote):remove image stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a6357caa641e18e7a19b834cd907ba8c7117367f"},(0,n.kt)("inlineCode",{parentName:"a"},"a6357ca"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus) proofread blockquote usage section and removed unused api section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0bb29fdb73bce90f842748abd978a388fff93932"},(0,n.kt)("inlineCode",{parentName:"a"},"0bb29fd"))),(0,n.kt)("li",{parentName:"ul"},"change(infrastructure) cherry-pick fix 9639243 skipping jenkins on auto commits ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fc744cda5a4e6d9da0ab6e7f92868d53f28f53c1"},(0,n.kt)("inlineCode",{parentName:"a"},"fc744cd"))),(0,n.kt)("li",{parentName:"ul"},"change(ci) build storybook and docusaurus only when pushing to develop-itml branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4de0cbf9bfc4ecb46605dca1048a38db844880e7"},(0,n.kt)("inlineCode",{parentName:"a"},"4de0cbf"))),(0,n.kt)("li",{parentName:"ul"},"change(infrastructure): modify whats new doc when committing the auto deployment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/39df33ed946a8167e4954cffb676144700e0ec38"},(0,n.kt)("inlineCode",{parentName:"a"},"39df33e"))),(0,n.kt)("li",{parentName:"ul"},"change(blockquote): introduce float argument for blockquote with image storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8fc72906c264b5e96702f8518e81d5724b494a5c"},(0,n.kt)("inlineCode",{parentName:"a"},"8fc7290"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pullquote): add word break ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2245e53dde6dd8abf437afa94e92bbedc60c9f8c"},(0,n.kt)("inlineCode",{parentName:"a"},"2245e53"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner): minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b9073b60e337eab40a992283b5b9e75d5cffe895"},(0,n.kt)("inlineCode",{parentName:"a"},"b9073b6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(table): fix th font weight ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a96a0a7a4cb450b5f947bc397495a2a41c605c87"},(0,n.kt)("inlineCode",{parentName:"a"},"a96a0a7"))),(0,n.kt)("li",{parentName:"ul"},"refactor(comment): remove avatar border radius ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d42c37bb8f71e20e1d0ec438c14e3c7ac00cf0ae"},(0,n.kt)("inlineCode",{parentName:"a"},"d42c37b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): adjust title size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7a24d9c07a5994fa46c39fdf1e827e0d1ae5e504"},(0,n.kt)("inlineCode",{parentName:"a"},"7a24d9c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Image): change image path ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a580da68a45bbe68d314f60e9495fc321489caf5"},(0,n.kt)("inlineCode",{parentName:"a"},"a580da6"))),(0,n.kt)("li",{parentName:"ul"},"change(infrastructure): specify that docs folder contains changes for deployment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a1ca9153b70e3525cd73423d059a8607f63fc2b9"},(0,n.kt)("inlineCode",{parentName:"a"},"a1ca915")))),(0,n.kt)("h4",{id:"-internal-changes-24"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(input) prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e83fa0c3e95e33d89ab668de38e6b0b12d9fb0d9"},(0,n.kt)("inlineCode",{parentName:"a"},"e83fa0c"))),(0,n.kt)("li",{parentName:"ul"},"chore(storybook): prettier fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/354c7b33c92a9f48ca9cbb0b96b6cec213e465c8"},(0,n.kt)("inlineCode",{parentName:"a"},"354c7b3"))),(0,n.kt)("li",{parentName:"ul"},"chore(design system): technical commit for edw integration tests ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f76035122d647e14b5151af3b39f0ab3e199af2"},(0,n.kt)("inlineCode",{parentName:"a"},"9f76035"))),(0,n.kt)("li",{parentName:"ul"},"style(storybook): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c9ad345268335c42e41d13b35c0da93e9770847"},(0,n.kt)("inlineCode",{parentName:"a"},"3c9ad34"))),(0,n.kt)("li",{parentName:"ul"},"chore(infrastructure) updated branch with changes from bitbucket ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/77866f8c7ac203db0645a74b7a7456b5c4de5dd7"},(0,n.kt)("inlineCode",{parentName:"a"},"77866f8")))),(0,n.kt)("h4",{id:"\ufe0f-others-54"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"doc(colours):fix color to better show primary ones ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/705b7899f9d687747d2deb27ac4d8b4429878de0"},(0,n.kt)("inlineCode",{parentName:"a"},"705b789"))),(0,n.kt)("li",{parentName:"ul"},"doc(colours):change font size to fit text in one line ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ad751660ec832e67a0c858e75685259b9ef8d82"},(0,n.kt)("inlineCode",{parentName:"a"},"4ad7516"))),(0,n.kt)("li",{parentName:"ul"},"bump package release to 1.3.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f3cfe4f5232ff96a9845d12da72008cf838c1010"},(0,n.kt)("inlineCode",{parentName:"a"},"f3cfe4f"))),(0,n.kt)("li",{parentName:"ul"},"Refactor banner into content subcomponent ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f8df238b4db90fdb841cdd5436a644e582f73b82"},(0,n.kt)("inlineCode",{parentName:"a"},"f8df238"))),(0,n.kt)("li",{parentName:"ul"},"lint fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cda322d8c013ef303b93b4b8d29594aa3bbd0bc1"},(0,n.kt)("inlineCode",{parentName:"a"},"cda322d"))),(0,n.kt)("li",{parentName:"ul"},"rollback don'ts grammar change and disable unresolved import for Banner.stories.jsx ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a1bd7154fa64451b6a521743955a57405dc7fb67"},(0,n.kt)("inlineCode",{parentName:"a"},"a1bd715"))),(0,n.kt)("li",{parentName:"ul"},"Add space line in component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4d1a5fbe9a9ea53701702d7ce33622795f5ab00"},(0,n.kt)("inlineCode",{parentName:"a"},"d4d1a5f")))),(0,n.kt)("h3",{id:"012---2022-02-17"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.2-beta.2...0.1.2"},"0.1.2")," - 2022-02-17"),(0,n.kt)("h4",{id:"-new-features-34"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(blockquote) added blockquote styles as a custom module ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d30662e23176cf7a5ab64aa322acd5a09a0c4130"},(0,n.kt)("inlineCode",{parentName:"a"},"d30662e")))),(0,n.kt)("h4",{id:"-bug-fixes-48"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(inpageNavigation): hide at the top of the page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/97ef50069cd9b29345fb68ce8b557a47577669a4"},(0,n.kt)("inlineCode",{parentName:"a"},"97ef500"))),(0,n.kt)("li",{parentName:"ul"},"fix(footer):missing image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac91a29a134c97af842c6be4987c60c44c4c96d8"},(0,n.kt)("inlineCode",{parentName:"a"},"ac91a29"))),(0,n.kt)("li",{parentName:"ul"},"fix(comment):fix broken image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8125dc179923f652ecd25003df8ecb4fb0aeffb9"},(0,n.kt)("inlineCode",{parentName:"a"},"8125dc1"))),(0,n.kt)("li",{parentName:"ul"},"fix(message): fix font loading ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fdc498e178a04315c88e005fbc1371ba954ff402"},(0,n.kt)("inlineCode",{parentName:"a"},"fdc498e"))),(0,n.kt)("li",{parentName:"ul"},"fix(logo): logo change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f8c8af4453774386d5d0432a078b049416d034b"},(0,n.kt)("inlineCode",{parentName:"a"},"5f8c8af")))),(0,n.kt)("h4",{id:"-enhancements-64"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): multiple components fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a3ff518323a3eab18edc5057c6f1233e5422a22"},(0,n.kt)("inlineCode",{parentName:"a"},"4a3ff51"))),(0,n.kt)("li",{parentName:"ul"},"change(infrastructure) re-enable integration tests for auto release stack ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce8daf8abc6eb9a6b7fd8579904a3e5642896e3a"},(0,n.kt)("inlineCode",{parentName:"a"},"ce8daf8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): global site files styling update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f3770f1756bca3898e2a67fa532a9d97b0fd1ef2"},(0,n.kt)("inlineCode",{parentName:"a"},"f3770f1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): multiple components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9277aaccb09aa03575b95851d55fc69b1f530e23"},(0,n.kt)("inlineCode",{parentName:"a"},"9277aac"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer) adjust to volto theming update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a59f1c354ceea661c60faabfdb6226c9f4ba1209"},(0,n.kt)("inlineCode",{parentName:"a"},"a59f1c3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): minor styling update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dd6b55c6c5331383a42f6865bd9bd0641feb9a3b"},(0,n.kt)("inlineCode",{parentName:"a"},"dd6b55c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): change header mega menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7559b57a08c2f0e9f3eb95167479ca041b998bc5"},(0,n.kt)("inlineCode",{parentName:"a"},"7559b57"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/451b9493b100dae80bed4b6629da725195dddff1"},(0,n.kt)("inlineCode",{parentName:"a"},"451b949"))),(0,n.kt)("li",{parentName:"ul"},"refactor(accordion): minor styling update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aeaf25f585c1379a2bd40de1c1bf03fee00ef76e"},(0,n.kt)("inlineCode",{parentName:"a"},"aeaf25f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bdff1768096443f2f453d76bf9958adabd309cb7"},(0,n.kt)("inlineCode",{parentName:"a"},"bdff176"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer):mobile responsiveness ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/14822bec78feebc2b06fc26d6992a481be2e3609"},(0,n.kt)("inlineCode",{parentName:"a"},"14822be"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): main and custom less files update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1607760bb1582c63ab1a6b978ac13bb0ca51b0c2"},(0,n.kt)("inlineCode",{parentName:"a"},"1607760"))),(0,n.kt)("li",{parentName:"ul"},"refactor(timeline): update after removing timeline addon ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f54d3806eb0a60379b46b03a04a6602ed465cd15"},(0,n.kt)("inlineCode",{parentName:"a"},"f54d380"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Footer): replace with subcomponents ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/378c652265213bafac9de1d946cb328fa2fe90cb"},(0,n.kt)("inlineCode",{parentName:"a"},"378c652"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): header change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/029e85039bb3f35a6ba4ff2870d98e1faa23661b"},(0,n.kt)("inlineCode",{parentName:"a"},"029e850"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): change header bar ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2b766fd62c86d22f01278c54d3a1dbfb696b095b"},(0,n.kt)("inlineCode",{parentName:"a"},"2b766fd"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus) use itml branch for docusaurus deployment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e286c50056aa6d0d5735cb330789b4e48a1f927"},(0,n.kt)("inlineCode",{parentName:"a"},"6e286c5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(accordion): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/971fcb824f6aa55ac28b4b275927b202d2c08ca6"},(0,n.kt)("inlineCode",{parentName:"a"},"971fcb8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): add sub components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7f955dbafa94c13e71ff587af70aa84d18da8da0"},(0,n.kt)("inlineCode",{parentName:"a"},"7f955db"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus) tweak auto deployment to always commit changes from docs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a2940daef1cf281bac87dec3cec68337053cc52d"},(0,n.kt)("inlineCode",{parentName:"a"},"a2940da"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): less and variables files created ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5b1a8aaf7f678dd60fb88149284058fcab617fd"},(0,n.kt)("inlineCode",{parentName:"a"},"d5b1a8a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(label): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c945e1600b4beb3667b389542adade317d285c6"},(0,n.kt)("inlineCode",{parentName:"a"},"3c945e1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(message): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e950fc56461540be24d9e5b2ff3c0bf8ad53738"},(0,n.kt)("inlineCode",{parentName:"a"},"3e950fc"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Footer): add sub components and props ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c3d14871887a83fb91792fbc8977c0439bcb16f2"},(0,n.kt)("inlineCode",{parentName:"a"},"c3d1487"))),(0,n.kt)("li",{parentName:"ul"},"refactor(modal): modal and confirm adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/83b60e94bdd3203a92a1b9038f9cc45011ba72a5"},(0,n.kt)("inlineCode",{parentName:"a"},"83b60e9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(comment): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/84348c36b5b750c324c89b5e3c462319bb9ebf46"},(0,n.kt)("inlineCode",{parentName:"a"},"84348c3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook):adjust headings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32f64f9b71d1cb8c96c9c37ba1850a2278f95287"},(0,n.kt)("inlineCode",{parentName:"a"},"32f64f9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): add comments to header menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c2c83b202e5117d8e0013101d8e922e9d93d21de"},(0,n.kt)("inlineCode",{parentName:"a"},"c2c83b2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Accordion): clear up accordion stories code ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4e59b8fa961b878591e9806e1ebbfdb841523077"},(0,n.kt)("inlineCode",{parentName:"a"},"4e59b8f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(segmant): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ab211e868296f377fddba203847549f0e5e07df"},(0,n.kt)("inlineCode",{parentName:"a"},"3ab211e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button) minor styling update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8782bb27c789a4aac97b380d718f4de129fdf682"},(0,n.kt)("inlineCode",{parentName:"a"},"8782bb2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): change image position ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cdd76d59ade86f3f989bf7d94e45e4d9b439115f"},(0,n.kt)("inlineCode",{parentName:"a"},"cdd76d5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumbs): update less variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/640817ee904f88a04f0e8f11b258f95b8db97039"},(0,n.kt)("inlineCode",{parentName:"a"},"640817e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(list): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1079c733e6ec634fedaab5b4630888a52b28e482"},(0,n.kt)("inlineCode",{parentName:"a"},"1079c73"))),(0,n.kt)("li",{parentName:"ul"},"refactor(timeline):adjust timeline module ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/213eb11e8e87940c18d81738609b4684329a5ce4"},(0,n.kt)("inlineCode",{parentName:"a"},"213eb11"))),(0,n.kt)("li",{parentName:"ul"},"refactor(blockquote):adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5eec87fc1b3017011266241c20b31217ac27c12d"},(0,n.kt)("inlineCode",{parentName:"a"},"5eec87f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progress): add progress bar colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ccf3c9823b2583fc70183554df7c4588fbf9ca13"},(0,n.kt)("inlineCode",{parentName:"a"},"ccf3c98"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pullquote):adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fee446668a8d65a717b42667af825cb5cec836b2"},(0,n.kt)("inlineCode",{parentName:"a"},"fee4466"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): change mobile mega menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c7ecf18a81024121218d580f201f324cf990829e"},(0,n.kt)("inlineCode",{parentName:"a"},"c7ecf18"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b726e49519914b02766bcd993b94ce9ff164e1df"},(0,n.kt)("inlineCode",{parentName:"a"},"b726e49"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button) adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/eb257f83541871ccc635842664722b914661770c"},(0,n.kt)("inlineCode",{parentName:"a"},"eb257f8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form): minor styling update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/79934b2cde2e806418a6422df2914321181f7a22"},(0,n.kt)("inlineCode",{parentName:"a"},"79934b2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Footer): create Actions & Sites sub components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/446840b99abd6897c1b59a9462d72b1f06f1dd4e"},(0,n.kt)("inlineCode",{parentName:"a"},"446840b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(inpageNavigation): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/85c631a9e9c1454f1f2530e4f1851089663dd610"},(0,n.kt)("inlineCode",{parentName:"a"},"85c631a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Inpage Navigation): changed button's display ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/36e5b4f107ce3535b607f7ed169c723a66ce6ac2"},(0,n.kt)("inlineCode",{parentName:"a"},"36e5b4f"))),(0,n.kt)("li",{parentName:"ul"},"enhancement(docusaurus) modified headings to be within release versions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19ace3038d6b4535b29634209e4d506e7dca2c2c"},(0,n.kt)("inlineCode",{parentName:"a"},"19ace30"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): move components to ui folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb91f88f628580f565eb01ea8627763bc2243dfb"},(0,n.kt)("inlineCode",{parentName:"a"},"cb91f88"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): change mega menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/de0fc6b3862a88ac04058b56020af23c1946ce41"},(0,n.kt)("inlineCode",{parentName:"a"},"de0fc6b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Pullquote): divide Pullquote to sub components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/34413c44ab9e318d67408f7497782b7de693deeb"},(0,n.kt)("inlineCode",{parentName:"a"},"34413c4"))),(0,n.kt)("li",{parentName:"ul"},"enhancement(docusaurus) replace changelog when auto-building docs Refs #145331 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/da25c0e25ffa80131ab4b5503b28e43385d9f827"},(0,n.kt)("inlineCode",{parentName:"a"},"da25c0e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(popup): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d0d192dc2b2a5edd422cf6a7b359c384ec4b1d55"},(0,n.kt)("inlineCode",{parentName:"a"},"d0d192d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ab6f914f487bea0df299de7da0bbd917733ee00"},(0,n.kt)("inlineCode",{parentName:"a"},"2ab6f91"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/89a16af86a165d7798b68b95ff3de215a92f0569"},(0,n.kt)("inlineCode",{parentName:"a"},"89a16af"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pullquotes) remove unnecessary variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e0d20a3febec060ac24c5498846e768d7068e8b9"},(0,n.kt)("inlineCode",{parentName:"a"},"e0d20a3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progress):adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d1ab950ee9cc14bbe95869d4f143fc428aad5a8d"},(0,n.kt)("inlineCode",{parentName:"a"},"d1ab950"))),(0,n.kt)("li",{parentName:"ul"},"refactor(blockquote) change variables names ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/36fd5be9bde1a3ceb8390639414f254fc26b8e76"},(0,n.kt)("inlineCode",{parentName:"a"},"36fd5be"))),(0,n.kt)("li",{parentName:"ul"},"refactor(comment): adjust font sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0311ed14c951eb9cba18a58f6f954c19601d838b"},(0,n.kt)("inlineCode",{parentName:"a"},"0311ed1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(InpageNavigation): clear up code ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1d7afdc8d751e61c3eef75360555807fdbef8619"},(0,n.kt)("inlineCode",{parentName:"a"},"1d7afdc"))),(0,n.kt)("li",{parentName:"ul"},"refactor(container): change variable name for computer padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/26d123f3e7e30a706b09efc10773694af79377f9"},(0,n.kt)("inlineCode",{parentName:"a"},"26d123f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(inpageNavigation): remove imports ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/25c1d1c3016695d92d104a12b22a6a9254f41b20"},(0,n.kt)("inlineCode",{parentName:"a"},"25c1d1c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): update ui index components exports ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce78d47880cab5849f4c01785cdd97a9b26771ec"},(0,n.kt)("inlineCode",{parentName:"a"},"ce78d47"))),(0,n.kt)("li",{parentName:"ul"},"change(infrastructure) auto build storybook when pushing to develop-itml branch of volto-eea-design-system ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e9aa5bc3de9c2e1c5dc55b5d317679bc14dd1cbd"},(0,n.kt)("inlineCode",{parentName:"a"},"e9aa5bc"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): delete demo stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8b58d0245f5bda7e2022a2ef9ace11015f13da01"},(0,n.kt)("inlineCode",{parentName:"a"},"8b58d02"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus) align deployment steps for building docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/37e4ce05d2772ac320a7ad561536189c5ea0a582"},(0,n.kt)("inlineCode",{parentName:"a"},"37e4ce0"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): remove components from customizations folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8930edeaf064ec316f1d086e1301a7e5269bfe4b"},(0,n.kt)("inlineCode",{parentName:"a"},"8930ede"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tab): minor styling update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1252ad0317ecf7e583dbb975b29a4c8e4c75330e"},(0,n.kt)("inlineCode",{parentName:"a"},"1252ad0"))),(0,n.kt)("li",{parentName:"ul"},"refactor(comment): change avatar src ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e5f9c4c02f5de5ae6480eedb45730bb76efbf7b4"},(0,n.kt)("inlineCode",{parentName:"a"},"e5f9c4c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner) : change file type and folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/878742ba0f95440ffbb5aec33f2cc4201dfacd43"},(0,n.kt)("inlineCode",{parentName:"a"},"878742b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form elements):changed text ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/919beea9deccec68ac0cdbbc1249ef4ab4c12230"},(0,n.kt)("inlineCode",{parentName:"a"},"919beea"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Image): change image src ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b9710849adf0cf4f10815186b6293bcc3881d68d"},(0,n.kt)("inlineCode",{parentName:"a"},"b971084"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Pullquote): add component propTypes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d32c5e69e76d7f369a286d29e49d767125550ebc"},(0,n.kt)("inlineCode",{parentName:"a"},"d32c5e6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(blockquote): adjust font sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d71a3cef7bfd4109c56b7fe8c07271c60a4bd19e"},(0,n.kt)("inlineCode",{parentName:"a"},"d71a3ce"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update font sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1c91c357a59669df0da0f4fc70d3aa420db27a14"},(0,n.kt)("inlineCode",{parentName:"a"},"1c91c35"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Blockquote): add component proTypes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea02649f92b0e41b1eb62a771330c2e53b3960e8"},(0,n.kt)("inlineCode",{parentName:"a"},"ea02649"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logo): update image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6113728e248c3e0fd0a467bb34406aa4403399e"},(0,n.kt)("inlineCode",{parentName:"a"},"f611372"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): restore config ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2c5239d92abe6be70b092e7e43f195308800f87"},(0,n.kt)("inlineCode",{parentName:"a"},"f2c5239"))),(0,n.kt)("li",{parentName:"ul"},"refactor(blockquote): update component name ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/572e655c033d93b32a48a61b1bf6383f6c993b26"},(0,n.kt)("inlineCode",{parentName:"a"},"572e655"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): fix story header import ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ceda6c7790964b150b95daf161d10364d6b67427"},(0,n.kt)("inlineCode",{parentName:"a"},"ceda6c7"))),(0,n.kt)("li",{parentName:"ul"},"change(infrastructure) auto build docusaurus when pushing to develop-itml branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7bebdf5e58f37400a8ae3d5f816c64c6b9ca3a5b"},(0,n.kt)("inlineCode",{parentName:"a"},"7bebdf5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): remove components from customization folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a9bb9b34e6961eaf16e54ed6f6ca4942944e8a0"},(0,n.kt)("inlineCode",{parentName:"a"},"4a9bb9b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner):story rename ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/56ff603d6c9cec7c22483a088624f5bd7911f717"},(0,n.kt)("inlineCode",{parentName:"a"},"56ff603"))),(0,n.kt)("li",{parentName:"ul"},"change(testing) removed navigation from cypress tests until component is finished ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5549f4c07cb0ffd725342f365aae07745d7e25f7"},(0,n.kt)("inlineCode",{parentName:"a"},"5549f4c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Segment): change to .jsx extension ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5cb35d81e8628832bab2e6ad50de6892e7e4370e"},(0,n.kt)("inlineCode",{parentName:"a"},"5cb35d8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Pullquote): change to .jsx extension ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/564cf7ea379703315f179ab922b4e0a02df63e47"},(0,n.kt)("inlineCode",{parentName:"a"},"564cf7e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(PopUp):change to .jsx extension ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dcb24ff252665a79fda2fec645e6f2a48ff71fd0"},(0,n.kt)("inlineCode",{parentName:"a"},"dcb24ff"))),(0,n.kt)("li",{parentName:"ul"},"refactor(InpageNavigation): change to .jsx extension ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dfefce3ebe55f8eb6f67974ccc33b0cb0bb13d9f"},(0,n.kt)("inlineCode",{parentName:"a"},"dfefce3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Blockquote): change to .jsx extension ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/44a164532c1ae969e4411e0cfb68b705ff2bfc1e"},(0,n.kt)("inlineCode",{parentName:"a"},"44a1645"))),(0,n.kt)("li",{parentName:"ul"},"refactor(heading): story name update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aa10f3412323321650e20401038d44b9bfdb507a"},(0,n.kt)("inlineCode",{parentName:"a"},"aa10f34")))),(0,n.kt)("h4",{id:"-internal-changes-25"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(footer): prettier fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/902c25712c88330db841240c9f1d6004e3e2674f"},(0,n.kt)("inlineCode",{parentName:"a"},"902c257"))),(0,n.kt)("li",{parentName:"ul"},"style(storybook): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/59f941dea9bf05f31257230f1a871c6eb0e98aae"},(0,n.kt)("inlineCode",{parentName:"a"},"59f941d")))),(0,n.kt)("h4",{id:"-documentation-changes-22"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus):multiple page updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2aba73ea6ff86c5a94789c707d98699fc1397e01"},(0,n.kt)("inlineCode",{parentName:"a"},"2aba73e"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus):update page content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/565697fecb4528cc5b4a6a43ca3ab9b026a2779e"},(0,n.kt)("inlineCode",{parentName:"a"},"565697f"))),(0,n.kt)("li",{parentName:"ul"},"docs(grid):update components grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/60eb083aa5d00840642caf73f6e0bb86b814aed5"},(0,n.kt)("inlineCode",{parentName:"a"},"60eb083"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): page adjustments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0641eacf9f4715acd4baaa651335ff84ac418009"},(0,n.kt)("inlineCode",{parentName:"a"},"0641eac"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus):updated various pages ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f860176a5f755d75d7b9558661e675fc678fe7ac"},(0,n.kt)("inlineCode",{parentName:"a"},"f860176"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): logo change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3af5e5c3acbf7ba4e152ca6944c500dbb0cf10ee"},(0,n.kt)("inlineCode",{parentName:"a"},"3af5e5c")))),(0,n.kt)("h4",{id:"\ufe0f-others-55"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"added sortable table stories and descriptions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d44dd7c651abe46c380b62efd3258c92223e99c"},(0,n.kt)("inlineCode",{parentName:"a"},"6d44dd7"))),(0,n.kt)("li",{parentName:"ul"},"Layout components theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/586101341f713bb072f2753d8df6e8b2ad6e4938"},(0,n.kt)("inlineCode",{parentName:"a"},"5861013"))),(0,n.kt)("li",{parentName:"ul"},"recovered files from origin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4ac04fde9c4297b09c834385f772e955b7f3b4a"},(0,n.kt)("inlineCode",{parentName:"a"},"a4ac04f"))),(0,n.kt)("li",{parentName:"ul"},"grid component & stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a5752e49aac05251905f7355234c3f9bc6b798f"},(0,n.kt)("inlineCode",{parentName:"a"},"4a5752e"))),(0,n.kt)("li",{parentName:"ul"},"Updated what's new section with actual commits from volto-eea-design-system repo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fc5e3c385d82ff7eccbd5841736f3ce292b2b7fd"},(0,n.kt)("inlineCode",{parentName:"a"},"fc5e3c3"))),(0,n.kt)("li",{parentName:"ul"},"Docusaurus title possible fix. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/db699e771b13bbd7e75c3bd84bb91ecf5d0459d8"},(0,n.kt)("inlineCode",{parentName:"a"},"db699e7"))),(0,n.kt)("li",{parentName:"ul"},"form elements stories added description & default values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6b4f6ebeed275a86f5ef6dafb13219db0c0fbbc6"},(0,n.kt)("inlineCode",{parentName:"a"},"6b4f6eb"))),(0,n.kt)("li",{parentName:"ul"},"removed API tabs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/58aa9286eb5d8cc520239aa6ee424ee5cd5446c3"},(0,n.kt)("inlineCode",{parentName:"a"},"58aa928"))),(0,n.kt)("li",{parentName:"ul"},"Layout updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/854f388c5b049e41217ddb444bc7bd0f2c61cdf6"},(0,n.kt)("inlineCode",{parentName:"a"},"854f388"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142123 removed extra customization of semantic.less: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab9de811b20b20a9f91ddc8b45b4de2eb9c47f6c"},(0,n.kt)("inlineCode",{parentName:"a"},"ab9de81"))),(0,n.kt)("li",{parentName:"ul"},"added page-header,footer and grid in docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/660c8e382068c179ca66831ae23588a4fb67cde6"},(0,n.kt)("inlineCode",{parentName:"a"},"660c8e3"))),(0,n.kt)("li",{parentName:"ul"},"Manual docs build and commit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/666eb6aff8535bb586a49579152fcf8a88961f35"},(0,n.kt)("inlineCode",{parentName:"a"},"666eb6a"))),(0,n.kt)("li",{parentName:"ul"},"added svg & png files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f1338d5bb02e17e402cea4b1584c7d01896097f9"},(0,n.kt)("inlineCode",{parentName:"a"},"f1338d5"))),(0,n.kt)("li",{parentName:"ul"},"added missing components to docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/934dfd8a98942c247deb2b5b8693604ad77cafa3"},(0,n.kt)("inlineCode",{parentName:"a"},"934dfd8"))),(0,n.kt)("li",{parentName:"ul"},"Control descriptions updated ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/56581ebc86a91fd012a98984b20f6daad25900fe"},(0,n.kt)("inlineCode",{parentName:"a"},"56581eb"))),(0,n.kt)("li",{parentName:"ul"},"Grid updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/700332d354aea84526ff22acf3bc2f8903c0f584"},(0,n.kt)("inlineCode",{parentName:"a"},"700332d"))),(0,n.kt)("li",{parentName:"ul"},"Button theming update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0ec68b6bd1ab060ac224a859180b9f750834c0b8"},(0,n.kt)("inlineCode",{parentName:"a"},"0ec68b6"))),(0,n.kt)("li",{parentName:"ul"},"site variebales & overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7251162f182f1528d72070aae8a5a14e9ec5ee93"},(0,n.kt)("inlineCode",{parentName:"a"},"7251162"))),(0,n.kt)("li",{parentName:"ul"},"Table and Tabs theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/49f08608e8be8475d561e1ce5c1bfbcfd21001f9"},(0,n.kt)("inlineCode",{parentName:"a"},"49f0860"))),(0,n.kt)("li",{parentName:"ul"},"Responsiveness updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48e1351104249fea610941793ff8ec3bf35d0699"},(0,n.kt)("inlineCode",{parentName:"a"},"48e1351"))),(0,n.kt)("li",{parentName:"ul"},"added various components to docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/550d71963b0957b1c5597bbdb2c699c411c649bd"},(0,n.kt)("inlineCode",{parentName:"a"},"550d719"))),(0,n.kt)("li",{parentName:"ul"},"Checkbox and radio updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24652a238f2c98fe5d8e8032e3320e0b3b4753e5"},(0,n.kt)("inlineCode",{parentName:"a"},"24652a2"))),(0,n.kt)("li",{parentName:"ul"},"remove images from typography and colour docs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8493e924f5af4ba7c2ed478d7bae6992b4ef6ed6"},(0,n.kt)("inlineCode",{parentName:"a"},"8493e92"))),(0,n.kt)("li",{parentName:"ul"},"added guidelines' text and finished all components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/02d75fcdc5a98633e4d563c7ec2863a9588b5506"},(0,n.kt)("inlineCode",{parentName:"a"},"02d75fc"))),(0,n.kt)("li",{parentName:"ul"},"added more missing components in docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8be82634c681a073b13a5a90ee2b699bd25b422a"},(0,n.kt)("inlineCode",{parentName:"a"},"8be8263"))),(0,n.kt)("li",{parentName:"ul"},"Prettier changes on docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f1e5eb796f2072e3b816a39a35cf48523405167"},(0,n.kt)("inlineCode",{parentName:"a"},"5f1e5eb"))),(0,n.kt)("li",{parentName:"ul"},"Grid updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ae099453e280de800a5a06c6fcbe074acc1f7bfd"},(0,n.kt)("inlineCode",{parentName:"a"},"ae09945"))),(0,n.kt)("li",{parentName:"ul"},"Minor fixes for tests ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3bdf3063d9bbc101f4b83c6aa4fc5fef5e87c776"},(0,n.kt)("inlineCode",{parentName:"a"},"3bdf306"))),(0,n.kt)("li",{parentName:"ul"},"Layout updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8b7a4dc8731cb02946e604a0dd73d2a45f61cd8b"},(0,n.kt)("inlineCode",{parentName:"a"},"8b7a4dc"))),(0,n.kt)("li",{parentName:"ul"},"Footer and TOC theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bb3d3c486f64e123b9009a76c6f054a8e2973230"},(0,n.kt)("inlineCode",{parentName:"a"},"bb3d3c4"))),(0,n.kt)("li",{parentName:"ul"},"Refs #145331 manually commit changelog until autobuild is stabilized ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93168b096b60fc6a208b20d1cbe610384be62f42"},(0,n.kt)("inlineCode",{parentName:"a"},"93168b0"))),(0,n.kt)("li",{parentName:"ul"},"label component changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/df8c0ff2d9646e4dcc7ed1a25a80712ca9ea2c9b"},(0,n.kt)("inlineCode",{parentName:"a"},"df8c0ff"))),(0,n.kt)("li",{parentName:"ul"},"added several sections to the theming guidelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff1a649d9c83794024e2db4f6349b3cac4fe79a0"},(0,n.kt)("inlineCode",{parentName:"a"},"ff1a649"))),(0,n.kt)("li",{parentName:"ul"},"Updated removed files. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/84f9b8cf7c469525367764909fa0d322532a13be"},(0,n.kt)("inlineCode",{parentName:"a"},"84f9b8c"))),(0,n.kt)("li",{parentName:"ul"},"added more docusaurus components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/52a3b9edd4c751225609dcaf2d16f08688e9cfeb"},(0,n.kt)("inlineCode",{parentName:"a"},"52a3b9e"))),(0,n.kt)("li",{parentName:"ul"},"Progress Bar ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f2efc9ded5a766df0c611a15f6a93f27bd14a37"},(0,n.kt)("inlineCode",{parentName:"a"},"9f2efc9"))),(0,n.kt)("li",{parentName:"ul"},"Modal and Confirm updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3b306c6fa5631e1e4e37456d483a69bc8cc3b234"},(0,n.kt)("inlineCode",{parentName:"a"},"3b306c6"))),(0,n.kt)("li",{parentName:"ul"},"Add proper changes to whatsnew meant in previous commit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/40f78e362ca607ef3893fff3d03c8ed1b4447c11"},(0,n.kt)("inlineCode",{parentName:"a"},"40f78e3"))),(0,n.kt)("li",{parentName:"ul"},"Form Descriptions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/de0dfbcb3a0a9610f1cbf7337f598b0c5338f2a3"},(0,n.kt)("inlineCode",{parentName:"a"},"de0dfbc"))),(0,n.kt)("li",{parentName:"ul"},"Prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1337e6fffb13fa8447488129d5dcd5af9e35e46a"},(0,n.kt)("inlineCode",{parentName:"a"},"1337e6f"))),(0,n.kt)("li",{parentName:"ul"},"Deleted files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b82f982fbfbaff4e74e35424c6122410e3830faf"},(0,n.kt)("inlineCode",{parentName:"a"},"b82f982"))),(0,n.kt)("li",{parentName:"ul"},"add new images for spacing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7b7b2c48317c45e3ff89162d703434f615c840e9"},(0,n.kt)("inlineCode",{parentName:"a"},"7b7b2c4"))),(0,n.kt)("li",{parentName:"ul"},"Messages Theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ad621a38c121f585125d5934c1939ba6a7198b33"},(0,n.kt)("inlineCode",{parentName:"a"},"ad621a3"))),(0,n.kt)("li",{parentName:"ul"},"added new content to docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1c83452be983d46f4128c33c25e69afef333f82a"},(0,n.kt)("inlineCode",{parentName:"a"},"1c83452"))),(0,n.kt)("li",{parentName:"ul"},"Minor less updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a36a8bbfeb201049fa13987894a5ec2ec167ed03"},(0,n.kt)("inlineCode",{parentName:"a"},"a36a8bb"))),(0,n.kt)("li",{parentName:"ul"},"Tabs and lists updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e37eef19e67c3c5720d5a9565e9884dc5c19f127"},(0,n.kt)("inlineCode",{parentName:"a"},"e37eef1"))),(0,n.kt)("li",{parentName:"ul"},"Inpage nav and timeline components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/76f0f82dc3a8f683268a4df7580b8f73a0cc1cb4"},(0,n.kt)("inlineCode",{parentName:"a"},"76f0f82"))),(0,n.kt)("li",{parentName:"ul"},"Prettier updated files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/679b9d2026091685d6982ab68e5088544ea0941e"},(0,n.kt)("inlineCode",{parentName:"a"},"679b9d2"))),(0,n.kt)("li",{parentName:"ul"},"dropdown initial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d8aef26dc905adbb0fb72c73d6188b50944931c9"},(0,n.kt)("inlineCode",{parentName:"a"},"d8aef26"))),(0,n.kt)("li",{parentName:"ul"},"Prettier changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f068af0b307d85146e1d8a529947c98988c506f7"},(0,n.kt)("inlineCode",{parentName:"a"},"f068af0"))),(0,n.kt)("li",{parentName:"ul"},"List initial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d3b96974bc35ad958b8cfc7921c1fbe345e5ebf"},(0,n.kt)("inlineCode",{parentName:"a"},"6d3b969"))),(0,n.kt)("li",{parentName:"ul"},"List story updated ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e96a6f6cff9a4db994df7cbf584842b18ca1c432"},(0,n.kt)("inlineCode",{parentName:"a"},"e96a6f6"))),(0,n.kt)("li",{parentName:"ul"},"Statistics updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/74bf63999cfeb0791b9475d3895a49a245be2cd3"},(0,n.kt)("inlineCode",{parentName:"a"},"74bf639"))),(0,n.kt)("li",{parentName:"ul"},"styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c169cc026189ca71e6e9cad17bde9d65d93ffbde"},(0,n.kt)("inlineCode",{parentName:"a"},"c169cc0"))),(0,n.kt)("li",{parentName:"ul"},"timeline comp storybook changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f42686ae19b619fa659730567bdceb369ecd4b0"},(0,n.kt)("inlineCode",{parentName:"a"},"1f42686"))),(0,n.kt)("li",{parentName:"ul"},"feature(docusaurus) added theming guidelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ded1f04a3197ac34640f98bcfe363c75a0a3745f"},(0,n.kt)("inlineCode",{parentName:"a"},"ded1f04"))),(0,n.kt)("li",{parentName:"ul"},"Properly commented out integration tests. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48b3a15f426db52b9fa27f6d7792c424b4939867"},(0,n.kt)("inlineCode",{parentName:"a"},"48b3a15"))),(0,n.kt)("li",{parentName:"ul"},"Reattempting commented out integrations tests. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3dd8211ecfca6c7891ef6851d0dc82899ab50f05"},(0,n.kt)("inlineCode",{parentName:"a"},"3dd8211"))),(0,n.kt)("li",{parentName:"ul"},"Button theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4231e1c264165ef6f7e2f2cd6fbd7c51159330b6"},(0,n.kt)("inlineCode",{parentName:"a"},"4231e1c"))),(0,n.kt)("li",{parentName:"ul"},"Card initial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/06dace5c4aa54d90ec4bcdc0b3fbc0883f825947"},(0,n.kt)("inlineCode",{parentName:"a"},"06dace5"))),(0,n.kt)("li",{parentName:"ul"},"form element storybook changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4b06aabddedbc281f23fc75a1e56476c4d1c1af"},(0,n.kt)("inlineCode",{parentName:"a"},"c4b06aa"))),(0,n.kt)("li",{parentName:"ul"},"Pagination theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2a80175762fbab23691d52f89cd38eb6f7740c4e"},(0,n.kt)("inlineCode",{parentName:"a"},"2a80175"))),(0,n.kt)("li",{parentName:"ul"},"Accordion theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8061bf90823a9172cfccb0ea1ed544ceda1c3fe9"},(0,n.kt)("inlineCode",{parentName:"a"},"8061bf9"))),(0,n.kt)("li",{parentName:"ul"},"global var updates and radio story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9526ee2fc8269db60ce912bfd4edfadbb55fed3a"},(0,n.kt)("inlineCode",{parentName:"a"},"9526ee2"))),(0,n.kt)("li",{parentName:"ul"},"created pullquote component & stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/df35563fb7ba2be403461c120b32ebffaa391736"},(0,n.kt)("inlineCode",{parentName:"a"},"df35563"))),(0,n.kt)("li",{parentName:"ul"},"Item stories added description & default values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9d459f2cd92e419813e7edf0f28dec4c750a5940"},(0,n.kt)("inlineCode",{parentName:"a"},"9d459f2"))),(0,n.kt)("li",{parentName:"ul"},"storybook clean up code ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bffd32603a70cf6cafa4874937f3fe218ba5de9d"},(0,n.kt)("inlineCode",{parentName:"a"},"bffd326"))),(0,n.kt)("li",{parentName:"ul"},"List updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/28f1b5352d83e144acdaae694cf20755a3b04106"},(0,n.kt)("inlineCode",{parentName:"a"},"28f1b53"))),(0,n.kt)("li",{parentName:"ul"},"Button classes updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/788c289549490d9ac5f1c40f1e39124349e1dbcd"},(0,n.kt)("inlineCode",{parentName:"a"},"788c289"))),(0,n.kt)("li",{parentName:"ul"},"Prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/678c9be717468fd2c8c425bec5999e81a66dabf6"},(0,n.kt)("inlineCode",{parentName:"a"},"678c9be"))),(0,n.kt)("li",{parentName:"ul"},"Removed header title from partial docusaurus components. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ed7c45e458504fa76ad500ab26f59a442b3c6952"},(0,n.kt)("inlineCode",{parentName:"a"},"ed7c45e"))),(0,n.kt)("li",{parentName:"ul"},"created banner component and stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9be170f2ccb20218a7bdae48c85f77acd69427ff"},(0,n.kt)("inlineCode",{parentName:"a"},"9be170f"))),(0,n.kt)("li",{parentName:"ul"},"Breadcrumb stories description & defaultValue -- clean up code ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/186ab65ca8635c853c919fc645c1ef0486e22a43"},(0,n.kt)("inlineCode",{parentName:"a"},"186ab65"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142123 added customization of semantic.less: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1e02356722fcb7528883b6dc3bf71279343fd1f7"},(0,n.kt)("inlineCode",{parentName:"a"},"1e02356"))),(0,n.kt)("li",{parentName:"ul"},"Card stories added description & default values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6b408f1ed24ee69ad8faacc6b36cf06e9917478"},(0,n.kt)("inlineCode",{parentName:"a"},"f6b408f"))),(0,n.kt)("li",{parentName:"ul"},"Statistic and accordion updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/16064ceeb6e1a7f097979365473c6a86ced4056f"},(0,n.kt)("inlineCode",{parentName:"a"},"16064ce"))),(0,n.kt)("li",{parentName:"ul"},"breadcrumb component & stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5bceb980502828c182a3998943ab086159c3fcb6"},(0,n.kt)("inlineCode",{parentName:"a"},"5bceb98"))),(0,n.kt)("li",{parentName:"ul"},"Container initial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3eb7155332f83bb8896a831e24cbae028413aba2"},(0,n.kt)("inlineCode",{parentName:"a"},"3eb7155"))),(0,n.kt)("li",{parentName:"ul"},"doc(docusaurus):Fix text for various parts ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bfd3fa2584a6e7aa2c26f3502b1ede912682905e"},(0,n.kt)("inlineCode",{parentName:"a"},"bfd3fa2"))),(0,n.kt)("li",{parentName:"ul"},"blockquote component & stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/879b6402f08112fedfffe6d66e72c37750593bb8"},(0,n.kt)("inlineCode",{parentName:"a"},"879b640"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 removed doc comments breaking doc building ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e6a6756b0533e6dbfdb636f9a9e6485e30187cad"},(0,n.kt)("inlineCode",{parentName:"a"},"e6a6756"))),(0,n.kt)("li",{parentName:"ul"},"Popup updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce2d641d8f5d940cbb93deefdabbbfb85ad20ad7"},(0,n.kt)("inlineCode",{parentName:"a"},"ce2d641"))),(0,n.kt)("li",{parentName:"ul"},"Global variables for colors and borders added ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e5fbd619d163acae03d3d1bb26e082390f90c21"},(0,n.kt)("inlineCode",{parentName:"a"},"6e5fbd6"))),(0,n.kt)("li",{parentName:"ul"},"Tab stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5429cfb7751d6ad31231f9cc19d8bd7e8d24d0b8"},(0,n.kt)("inlineCode",{parentName:"a"},"5429cfb"))),(0,n.kt)("li",{parentName:"ul"},"Confirm stories added description & default value ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/85cda14b1338dc986bbab5aa7846b4ef3ec8d0bd"},(0,n.kt)("inlineCode",{parentName:"a"},"85cda14"))),(0,n.kt)("li",{parentName:"ul"},"Kebab case class names ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b41cd078ab5b349dc1d15769832913dcc8e6786f"},(0,n.kt)("inlineCode",{parentName:"a"},"b41cd07"))),(0,n.kt)("li",{parentName:"ul"},"Card and Comment class updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/389946540d3def2ea81c5c7c489e79dc24d4efb3"},(0,n.kt)("inlineCode",{parentName:"a"},"3899465"))),(0,n.kt)("li",{parentName:"ul"},"Accordion updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c97ba39cc7823cb72180a858c0b8a69cc9434927"},(0,n.kt)("inlineCode",{parentName:"a"},"c97ba39"))),(0,n.kt)("li",{parentName:"ul"},"item stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/772e41f3d90034827afcb118c38ab075d3bb7bb9"},(0,n.kt)("inlineCode",{parentName:"a"},"772e41f"))),(0,n.kt)("li",{parentName:"ul"},"Accordion class updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9cdde86f14a17701d66b3d2850980251094934b5"},(0,n.kt)("inlineCode",{parentName:"a"},"9cdde86"))),(0,n.kt)("li",{parentName:"ul"},"Comment stories added description & default value ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb6f25bc1452330f4155ccf6a64df491740ed8da"},(0,n.kt)("inlineCode",{parentName:"a"},"cb6f25b"))),(0,n.kt)("li",{parentName:"ul"},"Accrodion stories description & default value ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab8fb883c3cbfeea1807bf1aaf72f5d8424933f4"},(0,n.kt)("inlineCode",{parentName:"a"},"ab8fb88"))),(0,n.kt)("li",{parentName:"ul"},"Pullquotes updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5984213ba9397ddb4c1932394a5cc368336cf0a"},(0,n.kt)("inlineCode",{parentName:"a"},"c598421"))),(0,n.kt)("li",{parentName:"ul"},"Modal and confirm class updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0ae47e6f55645c0d6318123a5783648326c16852"},(0,n.kt)("inlineCode",{parentName:"a"},"0ae47e6"))),(0,n.kt)("li",{parentName:"ul"},"Tab and paggination updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/96796fffb189d2fa3628423280f3622dcacb449f"},(0,n.kt)("inlineCode",{parentName:"a"},"96796ff"))),(0,n.kt)("li",{parentName:"ul"},"Form Updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e986a9f0fc48ddcbc17488a8bbbaec82cee92232"},(0,n.kt)("inlineCode",{parentName:"a"},"e986a9f"))),(0,n.kt)("li",{parentName:"ul"},"Classes renamed ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/73c8c3d622bb3b9c0b5cf09e340de4df6606a14c"},(0,n.kt)("inlineCode",{parentName:"a"},"73c8c3d"))),(0,n.kt)("li",{parentName:"ul"},"List and item less updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce0de1708ca410c7839f3ce9b5b3cfbdb6979939"},(0,n.kt)("inlineCode",{parentName:"a"},"ce0de17"))),(0,n.kt)("li",{parentName:"ul"},"Confirm theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/36e20ce0dd6cd159e9f8e519d22ab696a622efd9"},(0,n.kt)("inlineCode",{parentName:"a"},"36e20ce"))),(0,n.kt)("li",{parentName:"ul"},"container overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4b3970bd28df5939fd438f7fc58b5d1dfbe33719"},(0,n.kt)("inlineCode",{parentName:"a"},"4b3970b"))),(0,n.kt)("li",{parentName:"ul"},"Docusaurus theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fc4a8c5534b6eb85192a687890846b3a4bed9401"},(0,n.kt)("inlineCode",{parentName:"a"},"fc4a8c5"))),(0,n.kt)("li",{parentName:"ul"},"refacto(headings): update mobile headings sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b2e9f838766ffd73095ecf7eccc71629c09d6bc0"},(0,n.kt)("inlineCode",{parentName:"a"},"b2e9f83"))),(0,n.kt)("li",{parentName:"ul"},"list stories and style changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c61db53b153f8f0e51eddd6a6c82dd38e6278c82"},(0,n.kt)("inlineCode",{parentName:"a"},"c61db53"))),(0,n.kt)("li",{parentName:"ul"},"Tab theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e31e6c3b1f0d6b4dbd63425a1846914d8dfa318d"},(0,n.kt)("inlineCode",{parentName:"a"},"e31e6c3"))),(0,n.kt)("li",{parentName:"ul"},"Message and pagination classes updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c230687c48953208461aa92376588246d49dadaa"},(0,n.kt)("inlineCode",{parentName:"a"},"c230687"))),(0,n.kt)("li",{parentName:"ul"},"Segment initial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5724fe639e0f2aecbb1c633fe7e69b742ddfaf5"},(0,n.kt)("inlineCode",{parentName:"a"},"d5724fe"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 removed doc comments from api_markdown breaking doc building ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/efeacba82875c6b36ee1ef76792e86ca03ee6f35"},(0,n.kt)("inlineCode",{parentName:"a"},"efeacba"))),(0,n.kt)("li",{parentName:"ul"},"Timeline and responsiveness updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1ed152476e33bc41fdf9d89a6bc80f83af538373"},(0,n.kt)("inlineCode",{parentName:"a"},"1ed1524"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142123 use swap font-display for performance reasons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/083738f0834982b5684d67d75c080dc50b1c74ef"},(0,n.kt)("inlineCode",{parentName:"a"},"083738f"))),(0,n.kt)("li",{parentName:"ul"},"Breadcrumb stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3d0d17ca4f04123d55fda64c516b8f867ee1bd13"},(0,n.kt)("inlineCode",{parentName:"a"},"3d0d17c"))),(0,n.kt)("li",{parentName:"ul"},"Table component stories minor change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0bf40835204f57ab300e2c325309fddf5279d76b"},(0,n.kt)("inlineCode",{parentName:"a"},"0bf4083"))),(0,n.kt)("li",{parentName:"ul"},"List stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a64b304a3aa025873643d592de03cbfbc0d02d81"},(0,n.kt)("inlineCode",{parentName:"a"},"a64b304"))),(0,n.kt)("li",{parentName:"ul"},"blockquote component minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cdf71a883d3778e1bde25ec0b4a2f3e370b98b09"},(0,n.kt)("inlineCode",{parentName:"a"},"cdf71a8"))),(0,n.kt)("li",{parentName:"ul"},"ckeckbox stories minor change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d6e508f73a18d7ce9fcdb779026113659ce8950"},(0,n.kt)("inlineCode",{parentName:"a"},"6d6e508"))),(0,n.kt)("li",{parentName:"ul"},"image component storybook changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91290ec540ae913fff76f0dbed6c310668a2eeb3"},(0,n.kt)("inlineCode",{parentName:"a"},"91290ec"))),(0,n.kt)("li",{parentName:"ul"},"button overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5b78dd7b794e2e0ece2d5af9eb171e73b77ee93"},(0,n.kt)("inlineCode",{parentName:"a"},"d5b78dd"))),(0,n.kt)("li",{parentName:"ul"},"accordion overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fdcf7d58eea3ce9e68c49649fb4a788c8a801b49"},(0,n.kt)("inlineCode",{parentName:"a"},"fdcf7d5"))),(0,n.kt)("li",{parentName:"ul"},"Accordion component and stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5079247b2d4b96b2a7252692ea538ca620cbec38"},(0,n.kt)("inlineCode",{parentName:"a"},"5079247"))),(0,n.kt)("li",{parentName:"ul"},"Card theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/23bbb9d1b5751bc4877d02ae1c676ea28463ec39"},(0,n.kt)("inlineCode",{parentName:"a"},"23bbb9d"))),(0,n.kt)("li",{parentName:"ul"},"statistic overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2b11cb5ffb9c907563b37a3db8fea3b1ef3584bc"},(0,n.kt)("inlineCode",{parentName:"a"},"2b11cb5"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 build docs only on pull request like we do with storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/473bb87be53610a654d35c9b399de14824301385"},(0,n.kt)("inlineCode",{parentName:"a"},"473bb87"))),(0,n.kt)("li",{parentName:"ul"},"Card component stories minor change | added link icon ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/deb423af02643697c3781212b177487174d341f7"},(0,n.kt)("inlineCode",{parentName:"a"},"deb423a"))),(0,n.kt)("li",{parentName:"ul"},"comment component stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f1c5e75f1af24c5b39a2e61cf07c773abfa96f66"},(0,n.kt)("inlineCode",{parentName:"a"},"f1c5e75"))),(0,n.kt)("li",{parentName:"ul"},"Accordion component bug fixed ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/815e91df66ed738f3d91cadc8df151782829f545"},(0,n.kt)("inlineCode",{parentName:"a"},"815e91d"))),(0,n.kt)("li",{parentName:"ul"},"Refs #145331 use iso date to release so that we see also time ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ceedf08937ab683c3e624cd3c909bf4a4788f883"},(0,n.kt)("inlineCode",{parentName:"a"},"ceedf08"))),(0,n.kt)("li",{parentName:"ul"},"correct connfig for doco ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93e13135e7f00fe32f4db2d720db4159970da021"},(0,n.kt)("inlineCode",{parentName:"a"},"93e1313"))),(0,n.kt)("li",{parentName:"ul"},"Item updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fae93d43a0ad56c4c9b8ce7bf436ad4f47421744"},(0,n.kt)("inlineCode",{parentName:"a"},"fae93d4"))),(0,n.kt)("li",{parentName:"ul"},"added layout grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2e6be557bcd3bef836338380ef68acade1c6b3e3"},(0,n.kt)("inlineCode",{parentName:"a"},"2e6be55"))),(0,n.kt)("li",{parentName:"ul"},"tab overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87aaf32cac5a0dee0da5833217de68da62327f5a"},(0,n.kt)("inlineCode",{parentName:"a"},"87aaf32"))),(0,n.kt)("li",{parentName:"ul"},"message overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6dccfca52d9673f394d81bd40da0af1b1504af0c"},(0,n.kt)("inlineCode",{parentName:"a"},"6dccfca"))),(0,n.kt)("li",{parentName:"ul"},"segment storie changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/296371fa71e43c2341bee8069f66d5cd1f7aa5f8"},(0,n.kt)("inlineCode",{parentName:"a"},"296371f"))),(0,n.kt)("li",{parentName:"ul"},"progress component stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/df10c2ed1289ae770008c71e1545c1ac0a223fc5"},(0,n.kt)("inlineCode",{parentName:"a"},"df10c2e"))),(0,n.kt)("li",{parentName:"ul"},"message comp storybook changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c86b40563f655fd5833dd05119f04d0e4256e75f"},(0,n.kt)("inlineCode",{parentName:"a"},"c86b405"))),(0,n.kt)("li",{parentName:"ul"},"Accordion cmponent stories | minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6de0d816287a9beeb9e8a5a890a2e14f3457a792"},(0,n.kt)("inlineCode",{parentName:"a"},"6de0d81"))),(0,n.kt)("li",{parentName:"ul"},"Refs #145331 add all changes when auto building docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce11cce4fe3dadc16a0da56c36bc5db480e4ff91"},(0,n.kt)("inlineCode",{parentName:"a"},"ce11cce"))),(0,n.kt)("li",{parentName:"ul"},"perf(timeline):removed semantic timeline package ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0aeb34a189eb53a5fc0fc45d716da515b7ed0301"},(0,n.kt)("inlineCode",{parentName:"a"},"0aeb34a"))),(0,n.kt)("li",{parentName:"ul"},"Tablet Breakpoint update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b229c2739e75a00e403dd07c31eb0dac7700baac"},(0,n.kt)("inlineCode",{parentName:"a"},"b229c27"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 set storyBook Url to eea.github.io ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b7fdecbb5e9e6e7db0b128ab7fd3a98dd1dbbc74"},(0,n.kt)("inlineCode",{parentName:"a"},"b7fdecb"))),(0,n.kt)("li",{parentName:"ul"},"bump package version to signaling of a major release ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c835f1d8193685153b8a9b54edbc2e8d3d095321"},(0,n.kt)("inlineCode",{parentName:"a"},"c835f1d"))),(0,n.kt)("li",{parentName:"ul"},"small commit to trigger deployment of storybook and docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/be46ea3b581cccc82369c9cf6d4e29b02822cd71"},(0,n.kt)("inlineCode",{parentName:"a"},"be46ea3"))),(0,n.kt)("li",{parentName:"ul"},"doc(accordion):revert previous change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3de02da26472c17389366d933f3293f658fd783a"},(0,n.kt)("inlineCode",{parentName:"a"},"3de02da"))),(0,n.kt)("li",{parentName:"ul"},"fix typo for caption @desktop line-height pixel number ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/167155234a897334a03a4f3eadc71701185bb924"},(0,n.kt)("inlineCode",{parentName:"a"},"1671552"))),(0,n.kt)("li",{parentName:"ul"},"Commented out integration tests. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/574cfec852f39bdd30430d2ca3a466aec417180d"},(0,n.kt)("inlineCode",{parentName:"a"},"574cfec"))),(0,n.kt)("li",{parentName:"ul"},"popup overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a9555e3128bd0c92691410c202d9b26dd5a5e0c5"},(0,n.kt)("inlineCode",{parentName:"a"},"a9555e3"))),(0,n.kt)("li",{parentName:"ul"},"container component stories fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/692cfce5e795ac718855349424e7e8eb9c7518ec"},(0,n.kt)("inlineCode",{parentName:"a"},"692cfce"))),(0,n.kt)("li",{parentName:"ul"},"Added timeline to package json fixed ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2e93e0478a1502cccb8d7f866cef337a2546b6c"},(0,n.kt)("inlineCode",{parentName:"a"},"f2e93e0"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142123 modified import of volto-eea-design-system icon.less: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7fab7d2871f153c2db139e3258da071ace7c09d"},(0,n.kt)("inlineCode",{parentName:"a"},"a7fab7d"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142123 reference icon.less from this package: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5616e6d730f1a8cbc04784230c35f3490fd0f921"},(0,n.kt)("inlineCode",{parentName:"a"},"5616e6d"))),(0,n.kt)("li",{parentName:"ul"},"Menu component stories change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2797716aa050a8f70d2b6f0f19b7d01e5cd035be"},(0,n.kt)("inlineCode",{parentName:"a"},"2797716"))),(0,n.kt)("li",{parentName:"ul"},"Image stories minor change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ddb9f1dd56fe42e17df1eac5bfd93ee6eaac3179"},(0,n.kt)("inlineCode",{parentName:"a"},"ddb9f1d"))),(0,n.kt)("li",{parentName:"ul"},"card component stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6ccba1ec4a388ced5a3671bf88d4f18aefc8cff3"},(0,n.kt)("inlineCode",{parentName:"a"},"6ccba1e"))),(0,n.kt)("li",{parentName:"ul"},"Added timeline to package json ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93031d6b6b3215e98074700554d7546f9f17f320"},(0,n.kt)("inlineCode",{parentName:"a"},"93031d6"))),(0,n.kt)("li",{parentName:"ul"},"table stories code clean up ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b7b2a56e37b847a3a3fc3d78f2099aba052826c3"},(0,n.kt)("inlineCode",{parentName:"a"},"b7b2a56"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 removed extra baseUrl from docusaurus config ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/79f36da6a38866765025cedd4f5eeb63e273785c"},(0,n.kt)("inlineCode",{parentName:"a"},"79f36da"))),(0,n.kt)("li",{parentName:"ul"},"Accordion stories minor change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ffe808aabc77c6cb324e8fe097a97bb82c291c29"},(0,n.kt)("inlineCode",{parentName:"a"},"ffe808a"))),(0,n.kt)("li",{parentName:"ul"},"Theme assets ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3f4bea4b53e393bc3d926b63683265c0b5df32c2"},(0,n.kt)("inlineCode",{parentName:"a"},"3f4bea4"))),(0,n.kt)("li",{parentName:"ul"},"Merged with develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/167ec9f7847162965ad045259989cc31abaad7f1"},(0,n.kt)("inlineCode",{parentName:"a"},"167ec9f")))),(0,n.kt)("h3",{id:"012-beta2---2022-01-03"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.2-beta.1...0.1.2-beta.2"},"0.1.2-beta.2")," - 2022-01-03"),(0,n.kt)("h3",{id:"012-beta1---2021-12-22"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.2-beta.0...0.1.2-beta.1"},"0.1.2-beta.1")," - 2021-12-22"),(0,n.kt)("h4",{id:"\ufe0f-others-56"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Tab component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4690a6fc1e739eeeeaa3dc90ee35e05a22875bf8"},(0,n.kt)("inlineCode",{parentName:"a"},"4690a6f"))),(0,n.kt)("li",{parentName:"ul"},"Comment component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a87cb6ad7959ce939c9decbfaa08026d4f00a10e"},(0,n.kt)("inlineCode",{parentName:"a"},"a87cb6a"))),(0,n.kt)("li",{parentName:"ul"},"Form stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fc30c900e5adf5a27930aa64a79a632e2b7d84ae"},(0,n.kt)("inlineCode",{parentName:"a"},"fc30c90"))),(0,n.kt)("li",{parentName:"ul"},"Grid component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/798fdd0d0fecb7980308c831fc9dc111a36c5d9f"},(0,n.kt)("inlineCode",{parentName:"a"},"798fdd0"))),(0,n.kt)("li",{parentName:"ul"},"Image component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/be93385f1ea29846512eb7762d69bb98f33be7f2"},(0,n.kt)("inlineCode",{parentName:"a"},"be93385"))),(0,n.kt)("li",{parentName:"ul"},"Menu component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb1f9a82843bb4e3011be9813ae692c94d986495"},(0,n.kt)("inlineCode",{parentName:"a"},"cb1f9a8"))),(0,n.kt)("li",{parentName:"ul"},"Dropdown component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/57cf954599292e6a2f8a1644c6b6d61706ecaf60"},(0,n.kt)("inlineCode",{parentName:"a"},"57cf954"))),(0,n.kt)("li",{parentName:"ul"},"Header component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/264fd463734c9587e3a820f4d14527af89274e12"},(0,n.kt)("inlineCode",{parentName:"a"},"264fd46"))),(0,n.kt)("li",{parentName:"ul"},"Confirn component minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9a00bc174fb676e626d6cc93fac225e8a6165790"},(0,n.kt)("inlineCode",{parentName:"a"},"9a00bc1"))),(0,n.kt)("li",{parentName:"ul"},"Item component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6994fa00c0f91550f64d7345503df7f562480d32"},(0,n.kt)("inlineCode",{parentName:"a"},"6994fa0"))),(0,n.kt)("li",{parentName:"ul"},"Label component stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5cc5843327deeaa5ae2cedc03e6f0c314be6586a"},(0,n.kt)("inlineCode",{parentName:"a"},"5cc5843"))),(0,n.kt)("li",{parentName:"ul"},"Container component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e6e40b3a505c2e2fe88a36d74ea4e9728e3491f6"},(0,n.kt)("inlineCode",{parentName:"a"},"e6e40b3"))),(0,n.kt)("li",{parentName:"ul"},"Message component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ba9d377fd5b04274f1d42065eafa2401a1b0bbca"},(0,n.kt)("inlineCode",{parentName:"a"},"ba9d377"))),(0,n.kt)("li",{parentName:"ul"},"Breadcrumb component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff7a176141c3a59d71df98a0ed0b23b8c08787df"},(0,n.kt)("inlineCode",{parentName:"a"},"ff7a176"))),(0,n.kt)("li",{parentName:"ul"},"Modal component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af1fe6a84d058fb937b555f4dc3e0efceebefa04"},(0,n.kt)("inlineCode",{parentName:"a"},"af1fe6a"))),(0,n.kt)("li",{parentName:"ul"},"List stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0016042856fa2275aed373eebd6f996b837619a2"},(0,n.kt)("inlineCode",{parentName:"a"},"0016042"))),(0,n.kt)("li",{parentName:"ul"},"Button component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/690dfd234bee017c1f1cda7077265e6cf4a870e9"},(0,n.kt)("inlineCode",{parentName:"a"},"690dfd2"))),(0,n.kt)("li",{parentName:"ul"},"Radio component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/84eac30ab5b523ed09c56b9cca41b058cee3e5d2"},(0,n.kt)("inlineCode",{parentName:"a"},"84eac30"))),(0,n.kt)("li",{parentName:"ul"},"Progress component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e6763571afe637375e8260babd9f2219f29b432a"},(0,n.kt)("inlineCode",{parentName:"a"},"e676357"))),(0,n.kt)("li",{parentName:"ul"},"Pagination component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b1af226b9bd42097dc3c74be3d9ca3fab29b80f6"},(0,n.kt)("inlineCode",{parentName:"a"},"b1af226"))),(0,n.kt)("li",{parentName:"ul"},"Segment component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f8c7efcb9b1de209ff146dd315ea9d43b16f4db"},(0,n.kt)("inlineCode",{parentName:"a"},"5f8c7ef"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 eslint fixes for component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/badcb9158cb4a847380f66592b22c78b5117626a"},(0,n.kt)("inlineCode",{parentName:"a"},"badcb91"))),(0,n.kt)("li",{parentName:"ul"},"Table component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7c104b8e89272b0e2505d165184093ee2680c6f3"},(0,n.kt)("inlineCode",{parentName:"a"},"7c104b8"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 more eslint fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a88c091723af0b87cfa85c83307d9510d2bae65c"},(0,n.kt)("inlineCode",{parentName:"a"},"a88c091"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 warn for broken links instead of throwing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bd5821cb78e030aaf69de73dc4d3bdadbe320195"},(0,n.kt)("inlineCode",{parentName:"a"},"bd5821c"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 merge changes from develop-itml to develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bca28b968bc88720aff9e29e1a94a597a7375666"},(0,n.kt)("inlineCode",{parentName:"a"},"bca28b9"))),(0,n.kt)("li",{parentName:"ul"},"made tabs dynamic for api tab ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea37ecb3ec9fe0ace41d7650d59e209929d8e95f"},(0,n.kt)("inlineCode",{parentName:"a"},"ea37ecb"))),(0,n.kt)("li",{parentName:"ul"},"Basic storybook/Docusaurus components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/840ab60f22f7b73d8742fa7452f198d486c6ec5b"},(0,n.kt)("inlineCode",{parentName:"a"},"840ab60"))),(0,n.kt)("li",{parentName:"ul"},"created List directory & srories based on semantic-ui List component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51f19016b27228a4d391c88b7eee27357d6fdc0d"},(0,n.kt)("inlineCode",{parentName:"a"},"51f1901"))),(0,n.kt)("li",{parentName:"ul"},"made tabs as component easy to call for other components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/07bae4900a4076f3429d3a26978b92aabf6b23ba"},(0,n.kt)("inlineCode",{parentName:"a"},"07bae49"))),(0,n.kt)("li",{parentName:"ul"},"Popup Component | minor fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ff9908a9374f93b9eaf4d8ee8de24acdf5be3ec"},(0,n.kt)("inlineCode",{parentName:"a"},"2ff9908"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Tab component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/95e3a733921b42fbe2540fa39548284abff9fdc0"},(0,n.kt)("inlineCode",{parentName:"a"},"95e3a73"))),(0,n.kt)("li",{parentName:"ul"},"created Table directory and stories based on semantic-ui Table component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e16115daa000962ccd8d141e3c11fd099446a388"},(0,n.kt)("inlineCode",{parentName:"a"},"e16115d"))),(0,n.kt)("li",{parentName:"ul"},"List component stories - minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/de113430b487297417c4697178f9ee37412a5389"},(0,n.kt)("inlineCode",{parentName:"a"},"de11343"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Comment component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a20f8842e8cb5c937dfc450030ac9afcf78ffe11"},(0,n.kt)("inlineCode",{parentName:"a"},"a20f884"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Grid component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/360d2a897f36e86c58b0ba6ac3d4fc852d10287d"},(0,n.kt)("inlineCode",{parentName:"a"},"360d2a8"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Image component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c1d2bcaf886c96052af45fcce98243ea56c98a5"},(0,n.kt)("inlineCode",{parentName:"a"},"3c1d2bc"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Menu component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/17e3b37ae447d8cc86228fa6c0c48a8fd8be9d03"},(0,n.kt)("inlineCode",{parentName:"a"},"17e3b37"))),(0,n.kt)("li",{parentName:"ul"},"Added untracked files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/75f0afda10114e70348e23d480f8f74528531674"},(0,n.kt)("inlineCode",{parentName:"a"},"75f0afd"))),(0,n.kt)("li",{parentName:"ul"},"created Dropdown stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d6a25381078e0b3cabdb9270d5224b3886ab6af9"},(0,n.kt)("inlineCode",{parentName:"a"},"d6a2538"))),(0,n.kt)("li",{parentName:"ul"},"created Header component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8339798f3e7d40f1b5a033bf4d7303c756c38d3"},(0,n.kt)("inlineCode",{parentName:"a"},"b833979"))),(0,n.kt)("li",{parentName:"ul"},"created stories for semantic-ui Confirm component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6fddccc6cf97f9929da52064ceb379f9fc427b42"},(0,n.kt)("inlineCode",{parentName:"a"},"6fddccc"))),(0,n.kt)("li",{parentName:"ul"},"created Statistic directory and stories with semantic-ui Statistic component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cd62498dbd75d5dff0adf849ff95d22bb9dc3b34"},(0,n.kt)("inlineCode",{parentName:"a"},"cd62498"))),(0,n.kt)("li",{parentName:"ul"},"created Item component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/90ec2be7eede347352e318c70615c30e7d422073"},(0,n.kt)("inlineCode",{parentName:"a"},"90ec2be"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Container component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/41934f6c5961ae0ac034a496ac169a191c7a5288"},(0,n.kt)("inlineCode",{parentName:"a"},"41934f6"))),(0,n.kt)("li",{parentName:"ul"},"created Label component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/71732f68b3153320710fbf7fb78dac460b8a084f"},(0,n.kt)("inlineCode",{parentName:"a"},"71732f6"))),(0,n.kt)("li",{parentName:"ul"},"created Message component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/adcbeabe6d4e8c1bbd7bd925c5f7fd3109fb407c"},(0,n.kt)("inlineCode",{parentName:"a"},"adcbeab"))),(0,n.kt)("li",{parentName:"ul"},"created Modal component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c25409d8901ad4eba66fa66a9f5c34b0353569b9"},(0,n.kt)("inlineCode",{parentName:"a"},"c25409d"))),(0,n.kt)("li",{parentName:"ul"},"Breadcrumb component stories and minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6264d92bcf6565e284ae9dc0c7a918652bb3959e"},(0,n.kt)("inlineCode",{parentName:"a"},"6264d92"))),(0,n.kt)("li",{parentName:"ul"},"created Pagination component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/57cdad35e21fdacf303e407abcb8988e97e87242"},(0,n.kt)("inlineCode",{parentName:"a"},"57cdad3"))),(0,n.kt)("li",{parentName:"ul"},"created Segment component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d8d01d70dab9359be46eb1629b3198f871091c7a"},(0,n.kt)("inlineCode",{parentName:"a"},"d8d01d7"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Radio component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1fd062d8a08cbe8507f5154201632ea96f765a2c"},(0,n.kt)("inlineCode",{parentName:"a"},"1fd062d"))),(0,n.kt)("li",{parentName:"ul"},"Menu stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6ba5e0d00a26ffd4625fb51f759af3764cef28de"},(0,n.kt)("inlineCode",{parentName:"a"},"6ba5e0d"))),(0,n.kt)("li",{parentName:"ul"},"Statistic component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c874a520c9959b7673b5c86f63e53e90f006f22"},(0,n.kt)("inlineCode",{parentName:"a"},"3c874a5"))),(0,n.kt)("li",{parentName:"ul"},"Card component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/290bda8dac4c9bb4476108c2e4969fa283f935e2"},(0,n.kt)("inlineCode",{parentName:"a"},"290bda8"))),(0,n.kt)("li",{parentName:"ul"},"Accrordion stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ee3f592fbfaead01506fb6a4dbfb36d06269564"},(0,n.kt)("inlineCode",{parentName:"a"},"2ee3f59"))),(0,n.kt)("li",{parentName:"ul"},"renamed Demo folder to Layout ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b9f6d05708310889dd018961bf5df9d5edd66e12"},(0,n.kt)("inlineCode",{parentName:"a"},"b9f6d05"))),(0,n.kt)("li",{parentName:"ul"},"remove test exclusion ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/94dba3eaa864e25d34bcc33ab19494f83ecabb25"},(0,n.kt)("inlineCode",{parentName:"a"},"94dba3e"))),(0,n.kt)("li",{parentName:"ul"},"Accordion component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e672d59f86a79e69f15b5212e2953aa7c5fea1d1"},(0,n.kt)("inlineCode",{parentName:"a"},"e672d59"))),(0,n.kt)("li",{parentName:"ul"},"fix docusaurus url (removed trailing /) ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b6c59fc7733b3df47dca797906e8f7e40a2f4ada"},(0,n.kt)("inlineCode",{parentName:"a"},"b6c59fc"))),(0,n.kt)("li",{parentName:"ul"},"Item component stories - minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f0a99025b9093ecf2eb25fd4b4e401b5b532a481"},(0,n.kt)("inlineCode",{parentName:"a"},"f0a9902"))),(0,n.kt)("li",{parentName:"ul"},"eea logos and assets ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b435b511d64b0ca99bfd310d66bdbfd5985390cc"},(0,n.kt)("inlineCode",{parentName:"a"},"b435b51")))),(0,n.kt)("h3",{id:"012-beta0---2021-12-18"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.1...0.1.2-beta.0"},"0.1.2-beta.0")," - 2021-12-18"),(0,n.kt)("h4",{id:"\ufe0f-others-57"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Refs #140454 added github action to build docusaurus to the develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/abe6a72882a41c9bca3649a3a6697619038e1677"},(0,n.kt)("inlineCode",{parentName:"a"},"abe6a72")))),(0,n.kt)("h3",{id:"011---2021-12-16"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.1-beta.0...0.1.1"},"0.1.1")," - 2021-12-16"),(0,n.kt)("h4",{id:"\ufe0f-others-58"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Refs #140454 changed the following to volto-eea-design-system: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6791d413cf1b9e434970564d9e59ed56b41907f0"},(0,n.kt)("inlineCode",{parentName:"a"},"6791d41"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 corrected base url for docusaurus website build ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/98271b3d39e2e21dfb4a0e31c334dc9e87811e4a"},(0,n.kt)("inlineCode",{parentName:"a"},"98271b3"))),(0,n.kt)("li",{parentName:"ul"},"Initial test changes on design system/docusaurus. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9dad612f385cc9fde712809f07dbe2b7111432cf"},(0,n.kt)("inlineCode",{parentName:"a"},"9dad612"))),(0,n.kt)("li",{parentName:"ul"},"After prettier check ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9ec40b4fe9d8a18e99f774e1a96a55b286a9733a"},(0,n.kt)("inlineCode",{parentName:"a"},"9ec40b4"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 restore SearchWidget.jsx content and removed dummy text from docs intro page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7505df89d93ac99156834a0c50a8e2b174c506f8"},(0,n.kt)("inlineCode",{parentName:"a"},"7505df8"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 added references to eea and the storybook in the docusaurus footer ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/42bbfcdd67888c3a7a55875d67acae9f7eb753bb"},(0,n.kt)("inlineCode",{parentName:"a"},"42bbfcd"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 lint fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9502f2bdbd45262b38926def5b7b55efabf4c32c"},(0,n.kt)("inlineCode",{parentName:"a"},"9502f2b"))),(0,n.kt)("li",{parentName:"ul"},"Add SonarQube badges ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4e0a4053ff2313fc3939caab80d874470aca062"},(0,n.kt)("inlineCode",{parentName:"a"},"a4e0a40"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 brought changes from develop-itml and upgrades docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/207c873532e38fb7909cdc32a02bf50e575b66fa"},(0,n.kt)("inlineCode",{parentName:"a"},"207c873"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 removed extra content not needed by the docusaurus site ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bc68ebe8259c9b8ed6bc73df8102885554bbc4ed"},(0,n.kt)("inlineCode",{parentName:"a"},"bc68ebe"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 updated docusaurus to latest beta ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d68ed8a1660910067a09550626a5f0e8fbbeeac9"},(0,n.kt)("inlineCode",{parentName:"a"},"d68ed8a")))),(0,n.kt)("h3",{id:"011-beta0---2021-12-09"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.0...0.1.1-beta.0"},"0.1.1-beta.0")," - 2021-12-09"),(0,n.kt)("h4",{id:"\ufe0f-others-59"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Refs #140454 moved header and footer templates from volto-ims-theme: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2d5e56045c0b7d917153d95492dd340668b6222"},(0,n.kt)("inlineCode",{parentName:"a"},"e2d5e56"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 added website folder with docusaurus site skeleton ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6fd15f4365a207308c068fe7eb197c0717e93954"},(0,n.kt)("inlineCode",{parentName:"a"},"6fd15f4"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142794 added commented implementation of the header and footer area: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/773ad8784f4a03e4b600406999d3a274a3984d39"},(0,n.kt)("inlineCode",{parentName:"a"},"773ad87"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 changed the following: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4137ec42270c28cbe036ba11e9475f00a7a5cba3"},(0,n.kt)("inlineCode",{parentName:"a"},"4137ec4"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 removed storybook from volto-eea-design-system: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a129ffb485c4c55f19129a209d920da8f8f52418"},(0,n.kt)("inlineCode",{parentName:"a"},"a129ffb"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 added storybook as a dev dependency: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e04ae4e0294fbb4a09f367d1693a158d5a1e8f2f"},(0,n.kt)("inlineCode",{parentName:"a"},"e04ae4e"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 updated Breadcrumbs.jsx to latest version: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/63fe5076781f3cf2ce5c79641a5f1b45f298b476"},(0,n.kt)("inlineCode",{parentName:"a"},"63fe507"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 we should use jsx and not mdx for storybook tests ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3668e667f857cb3052b9d63cf27ec629fe1c8394"},(0,n.kt)("inlineCode",{parentName:"a"},"3668e66"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 updated eea-design-system readme with extra info on package contents ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d2efc3ddae7b91efc82cf3bce8fb8e42d696a780"},(0,n.kt)("inlineCode",{parentName:"a"},"d2efc3d"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142010 - Optimize Volto-addons gitflow pipelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3af46d2b14fa0b1ef44736f25b0f9ac93b23d18d"},(0,n.kt)("inlineCode",{parentName:"a"},"3af46d2"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 Renamed folders of docusaurus website: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/15bca7462ba1b3c626e2bf76597f6436aa5e9092"},(0,n.kt)("inlineCode",{parentName:"a"},"15bca74"))),(0,n.kt)("li",{parentName:"ul"},"Add demo story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/757c409271eb70baa54bff8bd7c71ba29aaa4f66"},(0,n.kt)("inlineCode",{parentName:"a"},"757c409"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142794 enabled minimum css so that header looks decent ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/adbe2335bacf5ae09541c3679a246a5ec28376a4"},(0,n.kt)("inlineCode",{parentName:"a"},"adbe233"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 use the develop branch for the readme linking, it's always more up to date ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/23dcf166d5d633df2a63ab6fa5bac4be086e99a3"},(0,n.kt)("inlineCode",{parentName:"a"},"23dcf16"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 added missing themes reference for the eea theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e9ca244fcedf0be420748b3e5347e98309b5d996"},(0,n.kt)("inlineCode",{parentName:"a"},"e9ca244"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 modified assets imports after move to volto-eea-design-system ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2250cc7ba4155c328837cea09e2e7d94afc984f8"},(0,n.kt)("inlineCode",{parentName:"a"},"2250cc7"))),(0,n.kt)("li",{parentName:"ul"},"Load footer in segment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/80d38a96284e7fa9416ba327a43e29eb94bebe55"},(0,n.kt)("inlineCode",{parentName:"a"},"80d38a9"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 bump package version to 1.1.0 from 0.1.1 from develop branch: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1314039ceb45d405af6bc4698b489bbd6562c6ae"},(0,n.kt)("inlineCode",{parentName:"a"},"1314039"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142794 keep toolbalWidth variables in case design system runs in an older version of Volto ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1a8b30562e4167fe36b095877db0b215d10cb620"},(0,n.kt)("inlineCode",{parentName:"a"},"1a8b305"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142794 changed the following: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fbb80b1dbd0e3078777b8b3496d4b207ba25639a"},(0,n.kt)("inlineCode",{parentName:"a"},"fbb80b1"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 moved storybook scripts to the scripts section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/705c4c365d26152d917c62991f3f8202bc75287d"},(0,n.kt)("inlineCode",{parentName:"a"},"705c4c3"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 removed dangling comma ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/514f24d503a1f05497696c22c7fdbf7bc19d4e54"},(0,n.kt)("inlineCode",{parentName:"a"},"514f24d"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 changed link to the start of the docs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0e16fdfc77e119da4e1f15183d9cb95ef9b4b6cf"},(0,n.kt)("inlineCode",{parentName:"a"},"0e16fdf"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 add h1 to the list of elements that are max 800px and centered ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d3c30f409aa4cb43810839f8960589456cc1b2e"},(0,n.kt)("inlineCode",{parentName:"a"},"7d3c30f"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using ims-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8d657d056cde5163cfe90ac66bc973f55d82e5e9"},(0,n.kt)("inlineCode",{parentName:"a"},"8d657d0")))),(0,n.kt)("h3",{id:"010---2021-11-17"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.0.1...0.1.0"},"0.1.0")," - 2021-11-17"),(0,n.kt)("h4",{id:"\ufe0f-others-60"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Refs #140454 changed the following to volto-eea-design-system: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/40d2af693e35abdda3ededc7aabcb17e9a12e781"},(0,n.kt)("inlineCode",{parentName:"a"},"40d2af6"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 elements folder now has the variables and overrides from pastanaga theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/595b4e60816d3e24950ede3afea6e5f2aa2d7008"},(0,n.kt)("inlineCode",{parentName:"a"},"595b4e6"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 use font awesome from SemanticUI instead of Pastanaga: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4e273ca1b9a2be1f169d12258ac2335c3ebeefff"},(0,n.kt)("inlineCode",{parentName:"a"},"4e273ca"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 removed the components customizations from volto-eea-design-system: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c98c260b549cd1db48bfe556e994692a4855b95d"},(0,n.kt)("inlineCode",{parentName:"a"},"c98c260"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 added customizations folder from volto-ims-theme to volto-eea-design-system: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff4bf44bd648ff179bd7c82d0cf80da968b291b0"},(0,n.kt)("inlineCode",{parentName:"a"},"ff4bf44"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 modules folder now has the variables and overrides from pastanaga theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2841b62c87e3242423bca1117c7e1793baa7974"},(0,n.kt)("inlineCode",{parentName:"a"},"f2841b6"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 customized Comments.jsx to remove unnecessary container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b2e95d7ae875a7fc85366c76ef35ce215dd7b5ff"},(0,n.kt)("inlineCode",{parentName:"a"},"b2e95d7"))),(0,n.kt)("li",{parentName:"ul"},"Refs #132149 added initial commit for volto-eea-design-system: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2934b911d589fde126f70363a61cbdd2e3dcf7c9"},(0,n.kt)("inlineCode",{parentName:"a"},"2934b91"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 collection folder now has the variables and overrides from pastanaga: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/213d4968e4efa380a389fb7ab40ec3196f030050"},(0,n.kt)("inlineCode",{parentName:"a"},"213d496"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 removed search widget customization, we can use volto-ims-theme for that file ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b7e8b0c4821584a84f940d8f780057122321aae7"},(0,n.kt)("inlineCode",{parentName:"a"},"b7e8b0c"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 stylelint quick fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5595925f68871135a07d703c8ba009b0172c7ccd"},(0,n.kt)("inlineCode",{parentName:"a"},"5595925"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 changed the following: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/769f4f9eca0ed9fffe0c8c49c56bcb123a203f3c"},(0,n.kt)("inlineCode",{parentName:"a"},"769f4f9"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 changed the following to the eea theme: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/06d8d86a7be81fd3feadf034eacfa61eb69743ab"},(0,n.kt)("inlineCode",{parentName:"a"},"06d8d86"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 eea site.variables now use all values from pastanaga's site.variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6535c0f4e1968822a232b017a55babd280716d88"},(0,n.kt)("inlineCode",{parentName:"a"},"6535c0f"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 simplified container overrides: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51250038527f2e4b1135a2b5bfc6adccc3f77a06"},(0,n.kt)("inlineCode",{parentName:"a"},"5125003"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/177d0ce854a8a963faa2aae9481cbcc7e340e0fa"},(0,n.kt)("inlineCode",{parentName:"a"},"177d0ce"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 globals folder now has the variables and overrides from pastanaga theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/116a0c338bd92dd14636a649476b4f00951e3734"},(0,n.kt)("inlineCode",{parentName:"a"},"116a0c3"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 changed the following: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2e7f42381b63e65bafac3b754d49b65daca9663d"},(0,n.kt)("inlineCode",{parentName:"a"},"2e7f423"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 modules folder now has the variables and overrides from pastanaga theme: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/27a201d57024a7c621f4943b8eb59a3247b6c89d"},(0,n.kt)("inlineCode",{parentName:"a"},"27a201d"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 text elements are now with a max width and centered within content-area: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bbed7bbfb3e79a371b7bf7dea2206cdbdcdfe76d"},(0,n.kt)("inlineCode",{parentName:"a"},"bbed7bb"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 added main.variables entries from pastanaga to eea theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1cbbc550436c889d1b297ae9e6880167fce28fe1"},(0,n.kt)("inlineCode",{parentName:"a"},"1cbbc55"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 modified theme image imports for component customizations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef3238a4d615fa1b496e83f4e6c4c0d27f3d68f4"},(0,n.kt)("inlineCode",{parentName:"a"},"ef3238a"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 modified container width to be auto: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2e8d2e0ebb3e4a55b7cf1b66c3dff222ef12aa18"},(0,n.kt)("inlineCode",{parentName:"a"},"2e8d2e0"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 modified several icons to use the \\f values instead of \\e: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c397145bc1e76916ae72a94faaf33f49bd9ca5a6"},(0,n.kt)("inlineCode",{parentName:"a"},"c397145"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 changed the following: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c518edacad9b8bed61ea50d318d8d43bf7f483a0"},(0,n.kt)("inlineCode",{parentName:"a"},"c518eda"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 ensure that main column isn't enlarged over the sidebar section on edit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f7a28684223494933bcd8ec1f6d86b1b3da17e10"},(0,n.kt)("inlineCode",{parentName:"a"},"f7a2868"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 changed the following to the form styling: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/eb92e054fe330730c1a44737cbbdf33985216cbb"},(0,n.kt)("inlineCode",{parentName:"a"},"eb92e05"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 modified path of theme folder location for image selection ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f8cca4594857ab4afd654f35e4ec97e4d3e04be4"},(0,n.kt)("inlineCode",{parentName:"a"},"f8cca45"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 added missing mobileScrollbarWidth variables introduced as part of the mobile navigation pull request ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/444c78d998199e703d7ecde01b3feb0d44c60977"},(0,n.kt)("inlineCode",{parentName:"a"},"444c78d"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 reference font and image path from ~volto-themes instead of relative ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ec93ed3a496673eed7d7ec07a2f76aaa6a29d7ca"},(0,n.kt)("inlineCode",{parentName:"a"},"ec93ed3"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 ensure that Volto doesn't crash when site module is set to eea: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51f2f27f5ba947b49b4b69fcf9b8890676cd1d7e"},(0,n.kt)("inlineCode",{parentName:"a"},"51f2f27"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 added tiny size prop to Breadcrumbs in order to have it as 12px ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/56a12e200c27c3a1826fa3088c34f762ed74dff7"},(0,n.kt)("inlineCode",{parentName:"a"},"56a12e2")))),(0,n.kt)("h3",{id:"001---2021-11-17"},"0.0.1 - 2021-11-17"),(0,n.kt)("h4",{id:"\ufe0f-others-61"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Initial commit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b0bdd445c95a20d088e00469f81028c16482640a"},(0,n.kt)("inlineCode",{parentName:"a"},"b0bdd44")))))}s.isMDXComponent=!0}}]); \ No newline at end of file +"use strict";(self.webpackChunkwebsite=self.webpackChunkwebsite||[]).push([[6245],{3905:(e,a,t)=>{t.d(a,{Zo:()=>c,kt:()=>h});var i=t(7294);function n(e,a,t){return a in e?Object.defineProperty(e,a,{value:t,enumerable:!0,configurable:!0,writable:!0}):e[a]=t,e}function o(e,a){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);a&&(i=i.filter((function(a){return Object.getOwnPropertyDescriptor(e,a).enumerable}))),t.push.apply(t,i)}return t}function m(e){for(var a=1;a=0||(n[t]=e[t]);return n}(e,a);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(i=0;i=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(n[t]=e[t])}return n}var d=i.createContext({}),r=function(e){var a=i.useContext(d),t=a;return e&&(t="function"==typeof e?e(a):m(m({},a),e)),t},c=function(e){var a=r(e.components);return i.createElement(d.Provider,{value:a},e.children)},s="mdxType",f={inlineCode:"code",wrapper:function(e){var a=e.children;return i.createElement(i.Fragment,{},a)}},p=i.forwardRef((function(e,a){var t=e.components,n=e.mdxType,o=e.originalType,d=e.parentName,c=l(e,["components","mdxType","originalType","parentName"]),s=r(t),p=n,h=s["".concat(d,".").concat(p)]||s[p]||f[p]||o;return t?i.createElement(h,m(m({ref:a},c),{},{components:t})):i.createElement(h,m({ref:a},c))}));function h(e,a){var t=arguments,n=a&&a.mdxType;if("string"==typeof e||n){var o=t.length,m=new Array(o);m[0]=p;var l={};for(var d in a)hasOwnProperty.call(a,d)&&(l[d]=a[d]);l.originalType=e,l[s]="string"==typeof e?e:n,m[1]=l;for(var r=2;r{t.r(a),t.d(a,{contentTitle:()=>m,default:()=>s,frontMatter:()=>o,metadata:()=>l,toc:()=>d});var i=t(7462),n=(t(7294),t(3905));const o={title:"What's new"},m=void 0,l={unversionedId:"whatsnew",id:"whatsnew",title:"What's new",description:"EEA Design System (1.0)",source:"@site/docs/2-whatsnew.md",sourceDirName:".",slug:"/whatsnew",permalink:"/volto-eea-design-system/docs/whatsnew",editUrl:"https://github.com/eea/volto-eea-design-system/edit/contribute-documentation/website/docs/2-whatsnew.md",tags:[],version:"current",sidebarPosition:2,frontMatter:{title:"What's new"},sidebar:"sidebar",previous:{title:"Introduction",permalink:"/volto-eea-design-system/docs/intro"},next:{title:"Web development",permalink:"/volto-eea-design-system/docs/category/web-development"}},d=[{value:"EEA Design System (1.0)",id:"eea-design-system-10",children:[{value:"Components ready to be used",id:"components-ready-to-be-used",children:[],level:4},{value:"Future releases",id:"future-releases",children:[],level:4}],level:3},{value:"Unreleased - 2023-04-07T19:47:24.545Z",id:"unreleased---2023-04-07t194724545z",children:[{value:"\ud83d\ude80 New Features",id:"-new-features",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes",children:[],level:4}],level:3},{value:"1.0.6 - 2023-03-29",id:"106---2023-03-29",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-1",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-1",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-1",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others",children:[],level:4}],level:3},{value:"1.0.5 - 2023-03-28",id:"105---2023-03-28",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-2",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-1",children:[],level:4}],level:3},{value:"1.0.4 - 2023-03-27",id:"104---2023-03-27",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-3",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-2",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-1",children:[],level:4}],level:3},{value:"1.0.3 - 2023-03-24",id:"103---2023-03-24",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-2",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-2",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-2",children:[],level:4}],level:3},{value:"1.0.2 - 2023-03-14",id:"102---2023-03-14",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-3",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-3",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-1",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-3",children:[],level:4}],level:3},{value:"1.0.1 - 2023-03-13",id:"101---2023-03-13",children:[],level:3},{value:"1.0.0 - 2023-03-13",id:"100---2023-03-13",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-4",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-4",children:[],level:4}],level:3},{value:"1.0.0-beta.6 - 2023-03-10",id:"100-beta6---2023-03-10",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-4",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-5",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-5",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-3",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-2",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-4",children:[],level:4}],level:3},{value:"1.0.0-beta.5 - 2023-03-07",id:"100-beta5---2023-03-07",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-6",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-4",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-5",children:[],level:4}],level:3},{value:"1.0.0-beta.4 - 2023-03-01",id:"100-beta4---2023-03-01",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-5",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-6",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-7",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-6",children:[],level:4}],level:3},{value:"1.0.0-beta.3 - 2023-02-21",id:"100-beta3---2023-02-21",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-6",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-7",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-8",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-5",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-3",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-7",children:[],level:4}],level:3},{value:"1.0.0-beta.2 - 2023-02-13",id:"100-beta2---2023-02-13",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-8",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-9",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-6",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-8",children:[],level:4}],level:3},{value:"1.0.0-beta.1 - 2023-02-09",id:"100-beta1---2023-02-09",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-7",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-10",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-9",children:[],level:4}],level:3},{value:"1.0.0-alpha.15 - 2023-02-08",id:"100-alpha15---2023-02-08",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-8",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-9",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-11",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-10",children:[],level:4}],level:3},{value:"1.0.0-alpha.14 - 2023-01-30",id:"100-alpha14---2023-01-30",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-12",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-11",children:[],level:4}],level:3},{value:"1.0.0-alpha.13.1 - 2023-01-30",id:"100-alpha131---2023-01-30",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-13",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-12",children:[],level:4}],level:3},{value:"1.0.0-alpha.13 - 2023-01-27",id:"100-alpha13---2023-01-27",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-9",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-10",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-14",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-13",children:[],level:4}],level:3},{value:"1.0.0-alpha.12 - 2023-01-24",id:"100-alpha12---2023-01-24",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-10",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-11",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-15",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-4",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-14",children:[],level:4}],level:3},{value:"1.0.0-alpha.11 - 2023-01-17",id:"100-alpha11---2023-01-17",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-11",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-12",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-16",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-5",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-15",children:[],level:4}],level:3},{value:"1.0.0-alpha.10 - 2023-01-13",id:"100-alpha10---2023-01-13",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-13",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-16",children:[],level:4}],level:3},{value:"1.0.0-alpha.9 - 2022-12-28",id:"100-alpha9---2022-12-28",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-17",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-17",children:[],level:4}],level:3},{value:"1.0.0-alpha.8 - 2022-12-23",id:"100-alpha8---2022-12-23",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-12",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-18",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-7",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-6",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-18",children:[],level:4}],level:3},{value:"1.0.0-alpha.7 - 2022-12-16",id:"100-alpha7---2022-12-16",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-13",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-14",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-19",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-19",children:[],level:4}],level:3},{value:"1.0.0-alpha.6 - 2022-12-07",id:"100-alpha6---2022-12-07",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-14",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-15",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-20",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-7",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-20",children:[],level:4}],level:3},{value:"1.0.0-alpha.5 - 2022-11-29",id:"100-alpha5---2022-11-29",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-15",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-16",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-21",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-8",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-8",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-21",children:[],level:4}],level:3},{value:"1.0.0-alpha.4 - 2022-11-22",id:"100-alpha4---2022-11-22",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-17",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-22",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-22",children:[],level:4}],level:3},{value:"1.0.0-alpha.3 - 2022-11-16",id:"100-alpha3---2022-11-16",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-16",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-18",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-23",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-9",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-23",children:[],level:4}],level:3},{value:"1.0.0-alpha.2 - 2022-10-28",id:"100-alpha2---2022-10-28",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-24",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-10",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-24",children:[],level:4}],level:3},{value:"1.0.0-alpha.1 - 2022-10-20",id:"100-alpha1---2022-10-20",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-25",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-11",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-9",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-25",children:[],level:4}],level:3},{value:"0.9.6 - 2022-12-16",id:"096---2022-12-16",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-26",children:[],level:4}],level:3},{value:"0.9.5 - 2022-10-20",id:"095---2022-10-20",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-19",children:[],level:4}],level:3},{value:"0.9.4 - 2022-10-19",id:"094---2022-10-19",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-20",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-26",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-27",children:[],level:4}],level:3},{value:"0.9.3 - 2022-10-04",id:"093---2022-10-04",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-21",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-27",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-10",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-28",children:[],level:4}],level:3},{value:"0.9.2 - 2022-09-27",id:"092---2022-09-27",children:[],level:3},{value:"0.9.1 - 2022-09-27",id:"091---2022-09-27",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-28",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-29",children:[],level:4}],level:3},{value:"0.9.0 - 2022-09-19",id:"090---2022-09-19",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-17",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-22",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-29",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-12",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-11",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-30",children:[],level:4}],level:3},{value:"0.8.1 - 2022-08-26",id:"081---2022-08-26",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-23",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-30",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-12",children:[],level:4}],level:3},{value:"0.8.0 - 2022-08-20",id:"080---2022-08-20",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-18",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-24",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-31",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-31",children:[],level:4}],level:3},{value:"0.7.6 - 2022-08-15",id:"076---2022-08-15",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-32",children:[],level:4}],level:3},{value:"0.7.5 - 2022-08-11",id:"075---2022-08-11",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-33",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-32",children:[],level:4}],level:3},{value:"0.7.3 - 2022-08-04",id:"073---2022-08-04",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-34",children:[],level:4}],level:3},{value:"0.7.2 - 2022-08-03",id:"072---2022-08-03",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-25",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-33",children:[],level:4}],level:3},{value:"0.7.1 - 2022-08-01",id:"071---2022-08-01",children:[],level:3},{value:"0.7.0 - 2022-08-01",id:"070---2022-08-01",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-19",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-26",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-35",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-34",children:[],level:4}],level:3},{value:"0.6.5 - 2022-07-06",id:"065---2022-07-06",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-27",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-36",children:[],level:4}],level:3},{value:"0.6.1 - 2022-07-01",id:"061---2022-07-01",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-20",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-37",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-13",children:[],level:4}],level:3},{value:"0.6.0 - 2022-07-01",id:"060---2022-07-01",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-28",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-38",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-14",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-13",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-35",children:[],level:4}],level:3},{value:"0.5.5 - 2022-06-23",id:"055---2022-06-23",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-29",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-39",children:[],level:4}],level:3},{value:"0.5.4 - 2022-06-16",id:"054---2022-06-16",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-30",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-40",children:[],level:4}],level:3},{value:"0.5.3 - 2022-06-16",id:"053---2022-06-16",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-31",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-41",children:[],level:4}],level:3},{value:"0.5.2 - 2022-06-14",id:"052---2022-06-14",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-21",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-42",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-15",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-36",children:[],level:4}],level:3},{value:"0.5.1 - 2022-06-13",id:"051---2022-06-13",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-43",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-37",children:[],level:4}],level:3},{value:"0.5.0 - 2022-06-11",id:"050---2022-06-11",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-22",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-32",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-44",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-38",children:[],level:4}],level:3},{value:"0.4.5 - 2022-06-08",id:"045---2022-06-08",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-45",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-39",children:[],level:4}],level:3},{value:"0.4.4 - 2022-06-08",id:"044---2022-06-08",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-23",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-33",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-46",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-14",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-40",children:[],level:4}],level:3},{value:"0.4.3 - 2022-06-03",id:"043---2022-06-03",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-34",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-47",children:[],level:4}],level:3},{value:"0.4.2 - 2022-06-02",id:"042---2022-06-02",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-48",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-15",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-41",children:[],level:4}],level:3},{value:"0.4.1 - 2022-06-02",id:"041---2022-06-02",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-24",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-35",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-49",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-16",children:[],level:4}],level:3},{value:"0.4.0 - 2022-06-01",id:"040---2022-06-01",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-25",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-36",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-50",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-16",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-42",children:[],level:4}],level:3},{value:"0.3.1 - 2022-05-19",id:"031---2022-05-19",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-37",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-51",children:[],level:4}],level:3},{value:"0.3.0 - 2022-05-17",id:"030---2022-05-17",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-26",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-38",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-52",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-43",children:[],level:4}],level:3},{value:"0.2.4 - 2022-05-13",id:"024---2022-05-13",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-53",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-44",children:[],level:4}],level:3},{value:"0.2.3 - 2022-04-29",id:"023---2022-04-29",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-27",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-54",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-17",children:[],level:4}],level:3},{value:"0.2.2 - 2022-04-22",id:"022---2022-04-22",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-39",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-55",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-17",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-45",children:[],level:4}],level:3},{value:"0.2.1 - 2022-04-08",id:"021---2022-04-08",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-40",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-46",children:[],level:4}],level:3},{value:"0.2.0 - 2022-04-04",id:"020---2022-04-04",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-28",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-41",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-56",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-18",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-47",children:[],level:4}],level:3},{value:"0.1.9 - 2022-03-25",id:"019---2022-03-25",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-29",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-42",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-57",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-19",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-48",children:[],level:4}],level:3},{value:"0.1.8 - 2022-03-18",id:"018---2022-03-18",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-43",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-58",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-20",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-18",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-49",children:[],level:4}],level:3},{value:"0.1.7 - 2022-03-15",id:"017---2022-03-15",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-30",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-44",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-59",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-21",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-19",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-50",children:[],level:4}],level:3},{value:"0.1.6 - 2022-03-11",id:"016---2022-03-11",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-31",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-45",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-60",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-22",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-51",children:[],level:4}],level:3},{value:"0.1.5 - 2022-03-08",id:"015---2022-03-08",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-32",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-46",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-61",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-23",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-20",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-52",children:[],level:4}],level:3},{value:"0.1.4 - 2022-03-01",id:"014---2022-03-01",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-62",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-21",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-53",children:[],level:4}],level:3},{value:"0.1.4-beta.0 - 2022-02-25",id:"014-beta0---2022-02-25",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-33",children:[],level:4}],level:3},{value:"0.1.3 - 2022-02-25",id:"013---2022-02-25",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-47",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-63",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-24",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-54",children:[],level:4}],level:3},{value:"0.1.2 - 2022-02-17",id:"012---2022-02-17",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-34",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-48",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-64",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-25",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-22",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-55",children:[],level:4}],level:3},{value:"0.1.2-beta.2 - 2022-01-03",id:"012-beta2---2022-01-03",children:[],level:3},{value:"0.1.2-beta.1 - 2021-12-22",id:"012-beta1---2021-12-22",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-56",children:[],level:4}],level:3},{value:"0.1.2-beta.0 - 2021-12-18",id:"012-beta0---2021-12-18",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-57",children:[],level:4}],level:3},{value:"0.1.1 - 2021-12-16",id:"011---2021-12-16",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-58",children:[],level:4}],level:3},{value:"0.1.1-beta.0 - 2021-12-09",id:"011-beta0---2021-12-09",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-59",children:[],level:4}],level:3},{value:"0.1.0 - 2021-11-17",id:"010---2021-11-17",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-60",children:[],level:4}],level:3},{value:"0.0.1 - 2021-11-17",id:"001---2021-11-17",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-61",children:[],level:4}],level:3}],r={toc:d},c="wrapper";function s(e){let{components:a,...t}=e;return(0,n.kt)(c,(0,i.Z)({},r,t,{components:a,mdxType:"MDXLayout"}),(0,n.kt)("h3",{id:"eea-design-system-10"},"EEA Design System (1.0)"),(0,n.kt)("h4",{id:"components-ready-to-be-used"},"Components ready to be used"),(0,n.kt)("p",null,"The following components are ready to be used as Volto ",(0,n.kt)("inlineCode",{parentName:"p"},"blocks"),", ",(0,n.kt)("inlineCode",{parentName:"p"},"slate")," integration, or via the advanced ",(0,n.kt)("inlineCode",{parentName:"p"},"block styler"),":"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Accordion ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Call to Action ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Callout - part of the Description ",(0,n.kt)("inlineCode",{parentName:"li"},"block"),", ",(0,n.kt)("inlineCode",{parentName:"li"},"slate")),(0,n.kt)("li",{parentName:"ul"},"Card - part of the Teaser ",(0,n.kt)("inlineCode",{parentName:"li"},"block")," and Listing ",(0,n.kt)("inlineCode",{parentName:"li"},"block"),", it includes several variations like round card e.g., used for Avatar"),(0,n.kt)("li",{parentName:"ul"},"Divider ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Headings ",(0,n.kt)("inlineCode",{parentName:"li"},"slate")),(0,n.kt)("li",{parentName:"ul"},"Hero ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Item ",(0,n.kt)("inlineCode",{parentName:"li"},"block")," - used for text with an icon (remixicon or custom SVG/image) on the left/right"),(0,n.kt)("li",{parentName:"ul"},"List ",(0,n.kt)("inlineCode",{parentName:"li"},"slate")," - ordered and unordered"),(0,n.kt)("li",{parentName:"ul"},"Quote ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Statistic ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Tag ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Table ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Tabs ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Timeline ",(0,n.kt)("inlineCode",{parentName:"li"},"block"))),(0,n.kt)("h4",{id:"future-releases"},"Future releases"),(0,n.kt)("p",null,"Below is a non-exhaustive list of the work-in-progress which is planned for future releases:"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Navigation Portlet (used on the left/right hand of content)"),(0,n.kt)("li",{parentName:"ul"},"Spacing/padding system. We want to add the ability for editors to consistently apply various spacing/padding on certain components in order to allow a better alignment when components are used together."),(0,n.kt)("li",{parentName:"ul"},"Improve docusaurus and storybook with more components, controls, and variations in order to better reflect what is possible in Volto.")),(0,n.kt)("p",null,"Generated by ",(0,n.kt)("a",{parentName:"p",href:"https://github.com/CookPete/auto-changelog"},(0,n.kt)("inlineCode",{parentName:"a"},"auto-changelog")),"."),(0,n.kt)("h3",{id:"unreleased---2023-04-07t194724545z"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.6...HEAD"},"Unreleased")," - 2023-04-07T19:47:24.545Z"),(0,n.kt)("h4",{id:"-new-features"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(storybook): components keyboard and screen reader optimization #324 from eea/design-system-accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/85faff73025442a012f079b6734ef868862cc44f"},(0,n.kt)("inlineCode",{parentName:"a"},"85faff7")))),(0,n.kt)("h4",{id:"-bug-fixes"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix: dont run isInternalURL twice ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a48984e0cb224944aed3846447c416511d080779"},(0,n.kt)("inlineCode",{parentName:"a"},"a48984e"))),(0,n.kt)("li",{parentName:"ul"},"fix: github autoformat ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/be9774981032759b3284a6fb93490a204a817c7a"},(0,n.kt)("inlineCode",{parentName:"a"},"be97749"))),(0,n.kt)("li",{parentName:"ul"},"fix(cards): focus outline for header needed for the overflow hidden solution with max title lines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/849a7a8e3cf801bf0a4d7e9189b603ea15219fcc"},(0,n.kt)("inlineCode",{parentName:"a"},"849a7a8"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): external url in header now takes you to the correct url #330 from eea/header-external-url-fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/086c61d683a7ac67dea221aa39ffe4cef05a9a68"},(0,n.kt)("inlineCode",{parentName:"a"},"086c61d"))),(0,n.kt)("li",{parentName:"ul"},"fix(item): flex variant on edit when inside blockchooser #333 from eea/fix-item-csss ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/65b9099779180feeb7d10384928bb0a3224b947d"},(0,n.kt)("inlineCode",{parentName:"a"},"65b9099"))),(0,n.kt)("li",{parentName:"ul"},"fix: external url in header ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9e3aea649ca6f9446324d5d351cdfcde08332f84"},(0,n.kt)("inlineCode",{parentName:"a"},"9e3aea6"))),(0,n.kt)("li",{parentName:"ul"},"fix: check if client method change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7c53b83a54e4e7d3c5329c46de03cdf7aabedf13"},(0,n.kt)("inlineCode",{parentName:"a"},"7c53b83"))),(0,n.kt)("li",{parentName:"ul"},"fix(item): use child selector instead of descendent as it interferes with blockchooser refs #157040 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ad4ca3725c595c8dbeaff69f730928313c1779ec"},(0,n.kt)("inlineCode",{parentName:"a"},"ad4ca37"))),(0,n.kt)("li",{parentName:"ul"},"fix(tag): fix in args ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/18eaaf41fa80a3e175341a2ddd7376b8281fee7d"},(0,n.kt)("inlineCode",{parentName:"a"},"18eaaf4")))),(0,n.kt)("h4",{id:"-enhancements"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): align menu items with demo site for better testing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/82a5c84cfde81dd8243f3f9a2d1fcaa8ac4b1463"},(0,n.kt)("inlineCode",{parentName:"a"},"82a5c84"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumbs): updates on structure and story for accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/770c8c0bce88c5d9301ab0293a8e4865849bfeb2"},(0,n.kt)("inlineCode",{parentName:"a"},"770c8c0"))),(0,n.kt)("li",{parentName:"ul"},"change(logo): update eionet svg ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c87fc750a3dc376205a643eefced410a41b22c6"},(0,n.kt)("inlineCode",{parentName:"a"},"3c87fc7"))),(0,n.kt)("li",{parentName:"ul"},"refactor(downloadLabeledIcon): accessibility fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/df3935dc5836298768316399ba36927325541fef"},(0,n.kt)("inlineCode",{parentName:"a"},"df3935d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(languageLabeledIcon): accessibility fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/61edd9e1022a8954930db30c262290680974d880"},(0,n.kt)("inlineCode",{parentName:"a"},"61edd9e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): Restructure Topics and Countries lists ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d816e7ab9cdf2f202ab994201c16241cfb26c33a"},(0,n.kt)("inlineCode",{parentName:"a"},"d816e7a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(newTabLabeledIcon): accessibility fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/211e40aa47d1f0de91b1d949770c452336b80248"},(0,n.kt)("inlineCode",{parentName:"a"},"211e40a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(comment): accessibility fixes and text button update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dad8cb67a0092b01b50197c94691ed8a5d00a128"},(0,n.kt)("inlineCode",{parentName:"a"},"dad8cb6"))),(0,n.kt)("li",{parentName:"ul"},"change(mega-menu): use lists for navigation, enhance voice over support for better accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d13137f024d6357514b85f184d219eb81dd585f2"},(0,n.kt)("inlineCode",{parentName:"a"},"d13137f"))),(0,n.kt)("li",{parentName:"ul"},"change(storybook): removed links for Label and Comment that we implement without a link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee0bfdf3aee3e4b6b6eba6dabd7817a37ace48ae"},(0,n.kt)("inlineCode",{parentName:"a"},"ee0bfdf"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): fix header outline not showing issue ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48fc2e2328ff184402e15edbaf1ed2507e771a14"},(0,n.kt)("inlineCode",{parentName:"a"},"48fc2e2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): firefox accessibility errors fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c7d35b92b90940b466ea016dbbb3f1c6dfa0c3ab"},(0,n.kt)("inlineCode",{parentName:"a"},"c7d35b9"))),(0,n.kt)("li",{parentName:"ul"},"change(ContextNavigation): accessibility updates, not restructuring of the volto component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/03fe83dce70c6931c543b93c71e3cd8e16f99ec8"},(0,n.kt)("inlineCode",{parentName:"a"},"03fe83d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(modal): restructure close icon as button ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f1b836e3071c220235eb327ee7ef67edac4d467d"},(0,n.kt)("inlineCode",{parentName:"a"},"f1b836e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(label): add href attribute to links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/05f664dde27f1e0580ab7f32a7934e4d8e85c918"},(0,n.kt)("inlineCode",{parentName:"a"},"05f664d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(inpageNavigation): restructure as a button ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48e22ac0ee521f87497822a0ec9d627829d849d5"},(0,n.kt)("inlineCode",{parentName:"a"},"48e22ac"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIconGroup): group updates for all labeled icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a679d9d05b804f516fdeed449eba1e74e227818c"},(0,n.kt)("inlineCode",{parentName:"a"},"a679d9d"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumbs): label modification for better screen reader output ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c967bef63ac6f622f5936235dd5590831a674d15"},(0,n.kt)("inlineCode",{parentName:"a"},"c967bef"))),(0,n.kt)("li",{parentName:"ul"},"refactor(checkbox): accessibility fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3b3047f6a6bdd9e9ad858e6a7ca0c6f6b404e605"},(0,n.kt)("inlineCode",{parentName:"a"},"3b3047f"))),(0,n.kt)("li",{parentName:"ul"},"change(card): simplified headerLineHeightOffset used as margin top for cards header ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca61105f2f39e6880ce545ba4d54f3568e7b87e2"},(0,n.kt)("inlineCode",{parentName:"a"},"ca61105"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): clean up function after test ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/883eb73cbc3db6a1fadd0200118eafdce91b7aab"},(0,n.kt)("inlineCode",{parentName:"a"},"883eb73"))),(0,n.kt)("li",{parentName:"ul"},"change(mega-menu): added code to align countries left column subtitle with the right column ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1aa33dd7ac7154a91515eef688f276d664d5d7f3"},(0,n.kt)("inlineCode",{parentName:"a"},"1aa33dd"))),(0,n.kt)("li",{parentName:"ul"},"change(mega-menu): sub-title padding tweaks for better spacing normalization ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e08668dd9fd948e57628e5582e7a4a7f08d96451"},(0,n.kt)("inlineCode",{parentName:"a"},"e08668d"))),(0,n.kt)("li",{parentName:"ul"},"change(logos): updated eionet logo used in the site footer #318 from eea/footer-logo-update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70671d03bbc228e3013e382cb51e6764a83b01a8"},(0,n.kt)("inlineCode",{parentName:"a"},"70671d0"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumbs,mega-menu): better screen readers support, see links instead of groups #309 from eea/firefox-accessibility-tab-issues ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d6b0b4adba8f04799491025fb41ac97e875bcce0"},(0,n.kt)("inlineCode",{parentName:"a"},"d6b0b4a"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumbs): fixed sizing of breadcrumbs list items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1761e984a6ffebbcca0c7b88128a01235fc6b903"},(0,n.kt)("inlineCode",{parentName:"a"},"1761e98"))),(0,n.kt)("li",{parentName:"ul"},"change(checkbox): toggle hover color correction ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4f4d0df7292fdccb89f83feface51639bd5d6559"},(0,n.kt)("inlineCode",{parentName:"a"},"4f4d0df"))),(0,n.kt)("li",{parentName:"ul"},"change(card): add links to teaser titles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cc64c74a69539af287f424abdf96226635284303"},(0,n.kt)("inlineCode",{parentName:"a"},"cc64c74"))),(0,n.kt)("li",{parentName:"ul"},"change(inpageNavigation): story improvements ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ade63c6f0b08c62318d31c54568cca29d0f106bc"},(0,n.kt)("inlineCode",{parentName:"a"},"ade63c6")))),(0,n.kt)("h4",{id:"-internal-changes"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(megaMenu): remove comments and unused properties ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fa5f8f878421d879026aacd86e5390112b8852a1"},(0,n.kt)("inlineCode",{parentName:"a"},"fa5f8f8")))),(0,n.kt)("h4",{id:"-documentation-changes"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(footer): logo update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ad982d63423442bc292cd7553ad3163b33b337bb"},(0,n.kt)("inlineCode",{parentName:"a"},"ad982d6")))),(0,n.kt)("h3",{id:"106---2023-03-29"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.5...1.0.6"},"1.0.6")," - 2023-03-29"),(0,n.kt)("h4",{id:"-new-features-1"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat: add viewport-(width/height) less functions and fixed banner image url #329 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e8e70bdc81f4f301a9dce370867a873e55563048"},(0,n.kt)("inlineCode",{parentName:"a"},"e8e70bd"))),(0,n.kt)("li",{parentName:"ul"},"feat: add viewport-(width/height) less functions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/68300a3c34e66954c7ef3a6e52baa37431fbfa9e"},(0,n.kt)("inlineCode",{parentName:"a"},"68300a3")))),(0,n.kt)("h4",{id:"-enhancements-1"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): set full class name for remix icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f435e10034b04cab4aeb301d8521559f98be299e"},(0,n.kt)("inlineCode",{parentName:"a"},"f435e10"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner.jsx): use flattenToAppURL helper function to get image source URL ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24b13d7c09a498ca889d413135c9abc4e6cab9ad"},(0,n.kt)("inlineCode",{parentName:"a"},"24b13d7")))),(0,n.kt)("h4",{id:"-internal-changes-1"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(theme): update container width and margins in eea theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e4446a3af641ddca03f1f2833dd6e79535feb98"},(0,n.kt)("inlineCode",{parentName:"a"},"3e4446a")))),(0,n.kt)("h4",{id:"\ufe0f-others"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"horizontal overflow hidden in view mode ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f395f276df003480a219bae639f87bebcf35799f"},(0,n.kt)("inlineCode",{parentName:"a"},"f395f27")))),(0,n.kt)("h3",{id:"105---2023-03-28"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.4...1.0.5"},"1.0.5")," - 2023-03-28"),(0,n.kt)("h4",{id:"-new-features-2"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat: improve full-width class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70bba7e295dd237e7c579ef0446ff05e0c8529d8"},(0,n.kt)("inlineCode",{parentName:"a"},"70bba7e")))),(0,n.kt)("h4",{id:"-bug-fixes-1"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(banner): Add missing divider for time tag #327 from eea/banner-metadata ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c46a58336ec9eb2ce75d2637f3197f417e8ca326"},(0,n.kt)("inlineCode",{parentName:"a"},"c46a583"))),(0,n.kt)("li",{parentName:"ul"},"fix(banner): Add missing divider for time tag ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d68c395d368a267baef4422df6e72f63d099b75"},(0,n.kt)("inlineCode",{parentName:"a"},"7d68c39")))),(0,n.kt)("h3",{id:"104---2023-03-27"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.3...1.0.4"},"1.0.4")," - 2023-03-27"),(0,n.kt)("h4",{id:"-new-features-3"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(copyright): Add copyright prefix - Image - refs #250724 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6a727723c15aee499ed7cedc9f364c5e2c8014bb"},(0,n.kt)("inlineCode",{parentName:"a"},"6a72772")))),(0,n.kt)("h4",{id:"-internal-changes-2"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(copyright): Cleanup useless min-height - refs #250724 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2457df6376ac1a4d00f87eee90e61f66f7ffebb"},(0,n.kt)("inlineCode",{parentName:"a"},"f2457df")))),(0,n.kt)("h4",{id:"\ufe0f-others-1"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cfd6eba8b01eceff4e28ab7ab51b2457672ac172"},(0,n.kt)("inlineCode",{parentName:"a"},"cfd6eba")))),(0,n.kt)("h3",{id:"103---2023-03-24"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.2...1.0.3"},"1.0.3")," - 2023-03-24"),(0,n.kt)("h4",{id:"-bug-fixes-2"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix: improve full-width class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93222590a630b27f3dfccb7df0a50070c9c9901c"},(0,n.kt)("inlineCode",{parentName:"a"},"9322259"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): Remove z-index from subsite logo #320 from eea/subsite-logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/50911009918faf7d3064d97ea7b685ad71970521"},(0,n.kt)("inlineCode",{parentName:"a"},"5091100"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): Remove z-index from subsite logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d433a9788d76db0f1c08ef6bb2313f479c2bb19b"},(0,n.kt)("inlineCode",{parentName:"a"},"d433a97")))),(0,n.kt)("h4",{id:"-enhancements-2"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(header): Add search popup customizations from eea-website-theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/43e5a78be8efa1098ea0fc87f43f40f2b5d482c1"},(0,n.kt)("inlineCode",{parentName:"a"},"43e5a78"))),(0,n.kt)("li",{parentName:"ul"},"change(popup): create custom popup for better accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/036aac95509b6d78b2d3b251578a7de878e28371"},(0,n.kt)("inlineCode",{parentName:"a"},"036aac9"))),(0,n.kt)("li",{parentName:"ul"},"change(popup): added most important popup properties from Semantic ui implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/61f65bc0e5806aaac33b54db36d5360fd05a48cc"},(0,n.kt)("inlineCode",{parentName:"a"},"61f65bc"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): use custom-made Popup for better accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/10d0fcfb28ca97efe9fa5c0f6c9c350b76a73140"},(0,n.kt)("inlineCode",{parentName:"a"},"10d0fcf"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): use custom-made Popup for better accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9108bee5f671505be5199e72a4749bb0af0c0cb9"},(0,n.kt)("inlineCode",{parentName:"a"},"9108bee"))),(0,n.kt)("li",{parentName:"ul"},"change(popup): added also the basic property ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4497acddde258ed31cda09f4d905e003a1e4611"},(0,n.kt)("inlineCode",{parentName:"a"},"a4497ac"))),(0,n.kt)("li",{parentName:"ul"},"change(colors): update gray-4 color value #321 from eea/update-gray-4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f458ff0965debd3629cdd78362244836d0d42687"},(0,n.kt)("inlineCode",{parentName:"a"},"f458ff0"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): MetadataField now uses proper time tag when value is datetime ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4c4d34d5905a6771a281fc3db1174b4998c8fa8"},(0,n.kt)("inlineCode",{parentName:"a"},"b4c4d34"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): updated gray-4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b890df7693880fb965e41752eda64df992a1cdc4"},(0,n.kt)("inlineCode",{parentName:"a"},"b890df7"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): Fix error and empty div if no social links are present #319 from eea/footer-social ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/89222466b76a4720af73c0d516074efec0757c34"},(0,n.kt)("inlineCode",{parentName:"a"},"8922246"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): Fix error and empty div if no social links are present ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5d934a6545ae783ff41dc9e3eda389c571d1369b"},(0,n.kt)("inlineCode",{parentName:"a"},"5d934a6")))),(0,n.kt)("h4",{id:"\ufe0f-others-2"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"lint ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca41def7a3743a8328f26cec868bd20395b62446"},(0,n.kt)("inlineCode",{parentName:"a"},"ca41def"))),(0,n.kt)("li",{parentName:"ul"},"refactor ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9789201c7966cd711bfa85fe448f6f6df2583eaf"},(0,n.kt)("inlineCode",{parentName:"a"},"9789201"))),(0,n.kt)("li",{parentName:"ul"},"lint ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/646dfaa729b51367ce7545ea928837a481a5485a"},(0,n.kt)("inlineCode",{parentName:"a"},"646dfaa"))),(0,n.kt)("li",{parentName:"ul"},"(feat):Page Header Banner accessibility #316 from eea/accesibility-banner ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e587f4657de137273053480a3536a066ab032a29"},(0,n.kt)("inlineCode",{parentName:"a"},"e587f46"))),(0,n.kt)("li",{parentName:"ul"},"storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c8c77de372060328d535b190f30747797db0d23a"},(0,n.kt)("inlineCode",{parentName:"a"},"c8c77de"))),(0,n.kt)("li",{parentName:"ul"},"banner accesibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5e2f23bae30b5bb14d3f607e0cfeb85d0cfe4a9f"},(0,n.kt)("inlineCode",{parentName:"a"},"5e2f23b"))),(0,n.kt)("li",{parentName:"ul"},"prettier ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6ed78e50ee68accca10b06b0790c231ddeb1a1fa"},(0,n.kt)("inlineCode",{parentName:"a"},"6ed78e5"))),(0,n.kt)("li",{parentName:"ul"},"cleaning ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4391aa6c6611d1a15f5977eb150416909ad83bc1"},(0,n.kt)("inlineCode",{parentName:"a"},"4391aa6"))),(0,n.kt)("li",{parentName:"ul"},"lint 3 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2e0bed19a24d8abfa230212cd8c09f8313dc00f2"},(0,n.kt)("inlineCode",{parentName:"a"},"2e0bed1"))),(0,n.kt)("li",{parentName:"ul"},"lint 1 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4c958034870a9861c542359144e3c56f9157994"},(0,n.kt)("inlineCode",{parentName:"a"},"b4c9580")))),(0,n.kt)("h3",{id:"102---2023-03-14"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.1...1.0.2"},"1.0.2")," - 2023-03-14"),(0,n.kt)("h4",{id:"-bug-fixes-3"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(megamenu): topic menu title is now placed before content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6004bcb2683dedf6d6e18e61f33fde84a54c38d5"},(0,n.kt)("inlineCode",{parentName:"a"},"6004bcb"))),(0,n.kt)("li",{parentName:"ul"},"fix(megamenu): removed in depth nav_title renaming that set title wrongly to a-z topics ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/899ca0e2ba5f8f9eb61e4280d786f74a17c186b7"},(0,n.kt)("inlineCode",{parentName:"a"},"899ca0e")))),(0,n.kt)("h4",{id:"-enhancements-3"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(megamenu): removed special styling from at a glance mega menu section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fd0c4c8a06bb4c4aa26f57c453132d13d30bc691"},(0,n.kt)("inlineCode",{parentName:"a"},"fd0c4c8"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): renamed thematic information platforms to environmental information systems ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e7004a7ea39451dbf97e1faed222b0cc5a12d6ce"},(0,n.kt)("inlineCode",{parentName:"a"},"e7004a7"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): updated static image of footer sections ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ff3185edf9257c790d2a124d3f937f61d84e147"},(0,n.kt)("inlineCode",{parentName:"a"},"4ff3185")))),(0,n.kt)("h4",{id:"-documentation-changes-1"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(What's new): Update 'What's new' ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d7ed9d619aa60d087c3821a972ebe5bf5766521a"},(0,n.kt)("inlineCode",{parentName:"a"},"d7ed9d6")))),(0,n.kt)("h4",{id:"\ufe0f-others-3"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fixed accordion selector typo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f4cabc8f2222cf587af9e04b0ea196799b84202f"},(0,n.kt)("inlineCode",{parentName:"a"},"f4cabc8")))),(0,n.kt)("h3",{id:"101---2023-03-13"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0...1.0.1"},"1.0.1")," - 2023-03-13"),(0,n.kt)("h3",{id:"100---2023-03-13"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-beta.6...1.0.0"},"1.0.0")," - 2023-03-13"),(0,n.kt)("h4",{id:"-bug-fixes-4"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(Footer): Open internal links within the same page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5b3e409c71281800bb0fd137a1bac256efaca2b5"},(0,n.kt)("inlineCode",{parentName:"a"},"5b3e409")))),(0,n.kt)("h4",{id:"-enhancements-4"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(banner): use huge scale instead of full image for better performance ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/381c58e3521436f562d9e1727428a18435e2c0f3"},(0,n.kt)("inlineCode",{parentName:"a"},"381c58e")))),(0,n.kt)("h3",{id:"100-beta6---2023-03-10"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-beta.5...1.0.0-beta.6"},"1.0.0-beta.6")," - 2023-03-10"),(0,n.kt)("h4",{id:"-new-features-4"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(site): serve Roboto fonts from eea design system package instead of google fonts #311 from eea/roboto-library ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6a1b3e3864a0bc8602e9c434ff70746bba59f44"},(0,n.kt)("inlineCode",{parentName:"a"},"f6a1b3e")))),(0,n.kt)("h4",{id:"-bug-fixes-5"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix: full-width is now properly sized ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e2e3482d658febbd692112608df14279bed05e7"},(0,n.kt)("inlineCode",{parentName:"a"},"6e2e348"))),(0,n.kt)("li",{parentName:"ul"},"fix(storybook): add fontDisplay ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/078966a6a5c7277d36fcd31bb4c0704bcc43e523"},(0,n.kt)("inlineCode",{parentName:"a"},"078966a")))),(0,n.kt)("h4",{id:"-enhancements-5"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(image): copyright position fixes, moved image floating to image-block-container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53422e0ea345a7cb6e8cb07bf9006b48d86ded58"},(0,n.kt)("inlineCode",{parentName:"a"},"53422e0"))),(0,n.kt)("li",{parentName:"ul"},"change(colors:) update the design system colour palette #312 from eea/update-color-palette ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a5fb69465717dbdc0fe8091640a0e46f66199b65"},(0,n.kt)("inlineCode",{parentName:"a"},"a5fb694"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): added roboto library ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19de7b19fe795870102000bfebbf452d88b3a7b1"},(0,n.kt)("inlineCode",{parentName:"a"},"19de7b1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): added roboto library ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e9916215728dda0ff423f8196e7442588058042e"},(0,n.kt)("inlineCode",{parentName:"a"},"e991621"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): update colours ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3a2c1e1da8f0224e08f9f8afac3f0a74f7ce91d3"},(0,n.kt)("inlineCode",{parentName:"a"},"3a2c1e1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): restored site variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a48478bae9bdf1d9275be999e1ec8382f10a2fec"},(0,n.kt)("inlineCode",{parentName:"a"},"a48478b"))),(0,n.kt)("li",{parentName:"ul"},"change(copyright): implemented copyright hover design ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6b1244163de7ff58d1529fdd791502c862ee48ec"},(0,n.kt)("inlineCode",{parentName:"a"},"6b12441")))),(0,n.kt)("h4",{id:"-internal-changes-3"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(storybook): switched google fonts to true ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a8cae46582356cc24ec3cd7ec47e692bc67a6a5"},(0,n.kt)("inlineCode",{parentName:"a"},"4a8cae4"))),(0,n.kt)("li",{parentName:"ul"},"chore(colours): changed back yellow 6 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87c9bbc0ec9a2a0f4bf8eeb03525d43ce6f502be"},(0,n.kt)("inlineCode",{parentName:"a"},"87c9bbc"))),(0,n.kt)("li",{parentName:"ul"},"chore(lint): lint ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9b0f1256a8b0a583ac7724a8d88259c615d7e0c7"},(0,n.kt)("inlineCode",{parentName:"a"},"9b0f125"))),(0,n.kt)("li",{parentName:"ul"},"chore(storybook): lint ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/29bc809ab2e9fa4207b8b067785e6b17e91db3b4"},(0,n.kt)("inlineCode",{parentName:"a"},"29bc809")))),(0,n.kt)("h4",{id:"-documentation-changes-2"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(colours): colours update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/161007e2480aa79517c4ca772364a12a0756f1af"},(0,n.kt)("inlineCode",{parentName:"a"},"161007e"))),(0,n.kt)("li",{parentName:"ul"},"docs(colours): accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee342aa6af3863d243222eaa89709be2ba61f988"},(0,n.kt)("inlineCode",{parentName:"a"},"ee342aa")))),(0,n.kt)("h4",{id:"\ufe0f-others-4"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"test(cypress): Use latest stable Volto for testing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/20516617ae045f48c37a7ac7ad05c3d1090339b3"},(0,n.kt)("inlineCode",{parentName:"a"},"2051661"))),(0,n.kt)("li",{parentName:"ul"},"Update What's new section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/caa4b5d93affa7b63a332eaed9e73ea161a508cf"},(0,n.kt)("inlineCode",{parentName:"a"},"caa4b5d"))),(0,n.kt)("li",{parentName:"ul"},"Prepare final release 1.0.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef4383d05b295cbbb377f877522b9f83cd0873ef"},(0,n.kt)("inlineCode",{parentName:"a"},"ef4383d"))),(0,n.kt)("li",{parentName:"ul"},"lint fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/599f5098904f607bd694dd5d2e642c8820f11b3c"},(0,n.kt)("inlineCode",{parentName:"a"},"599f509"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/80cd3df3534e46e52ba246256c3d990a52753bbd"},(0,n.kt)("inlineCode",{parentName:"a"},"80cd3df")))),(0,n.kt)("h3",{id:"100-beta5---2023-03-07"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-beta.4...1.0.0-beta.5"},"1.0.0-beta.5")," - 2023-03-07"),(0,n.kt)("h4",{id:"-enhancements-6"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(carousel): tweak size of carousel dots for better touch interaction ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e1fb8230806de2e157a9a5ea87e63765769565b4"},(0,n.kt)("inlineCode",{parentName:"a"},"e1fb823"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): removed min width and height from links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac33219fb77f23bb5148355551a7aad9f453d2e7"},(0,n.kt)("inlineCode",{parentName:"a"},"ac33219")))),(0,n.kt)("h4",{id:"-internal-changes-4"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(hiddenStructure): Add hiddenStructure utility to be used with h1 heading on frontpage - refs #158717 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/672cca2401003f56e5ea104f18103ea090e38fd7"},(0,n.kt)("inlineCode",{parentName:"a"},"672cca2")))),(0,n.kt)("h4",{id:"\ufe0f-others-5"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fixed less build failure due to changes in footer.less ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/190bc8cfa88191b45808f1e27c6e2737ee3d15b1"},(0,n.kt)("inlineCode",{parentName:"a"},"190bc8c"))),(0,n.kt)("li",{parentName:"ul"},"lazyload bg img on footer also ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ae07162ba1b27bff58fed70eaabc28c78c5f45a3"},(0,n.kt)("inlineCode",{parentName:"a"},"ae07162"))),(0,n.kt)("li",{parentName:"ul"},"lazyload footer images ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a0633c9ec4ccfb63a48eb4e4c4a63c90daac1a37"},(0,n.kt)("inlineCode",{parentName:"a"},"a0633c9"))),(0,n.kt)("li",{parentName:"ul"},"Increase performance - mobile friendly ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/07d86c8e77568f91d50b3a45248de9427140a295"},(0,n.kt)("inlineCode",{parentName:"a"},"07d86c8"))),(0,n.kt)("li",{parentName:"ul"},"better useOnScreen hook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c214b6b76443f81c795ce2f3aa457562ec088b30"},(0,n.kt)("inlineCode",{parentName:"a"},"c214b6b"))),(0,n.kt)("li",{parentName:"ul"},"role change for accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5e758e0a7fa8c56ba688d0a43de5890686f14ea3"},(0,n.kt)("inlineCode",{parentName:"a"},"5e758e0"))),(0,n.kt)("li",{parentName:"ul"},"minimum tap dimension for mobile ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a25e9a8ba8a8a0f24d287ed7513e549ae2caab0f"},(0,n.kt)("inlineCode",{parentName:"a"},"a25e9a8"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-beta.5 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e4417e121477511c350ae3fbe4e70aadb445ed86"},(0,n.kt)("inlineCode",{parentName:"a"},"e4417e1"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using eea-website-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b227cf8a8c44b9d91e9fda8a7999fb0a42bacdca"},(0,n.kt)("inlineCode",{parentName:"a"},"b227cf8"))),(0,n.kt)("li",{parentName:"ul"},"feature(mobile): increased performance by lazy loading footer images #303 from eea/increase_performance ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/80d1df1c459680331d486f9e8e6a95c9db0adbf6"},(0,n.kt)("inlineCode",{parentName:"a"},"80d1df1"))),(0,n.kt)("li",{parentName:"ul"},"useOnScreen default export ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e6cfdd4dcb814aad328f97be7af41af071ccba6"},(0,n.kt)("inlineCode",{parentName:"a"},"3e6cfdd"))),(0,n.kt)("li",{parentName:"ul"},"use aria-labels on dropdown ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/27e144315416ceace0f01def03b5b24640f5c7da"},(0,n.kt)("inlineCode",{parentName:"a"},"27e1443"))),(0,n.kt)("li",{parentName:"ul"},"prettier ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7f838470c1bcc4e2be115d514d92a1b686a5e9b"},(0,n.kt)("inlineCode",{parentName:"a"},"a7f8384")))),(0,n.kt)("h3",{id:"100-beta4---2023-03-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-beta.3...1.0.0-beta.4"},"1.0.0-beta.4")," - 2023-03-01"),(0,n.kt)("h4",{id:"-new-features-5"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(footer): Add footer description ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ad0f714556c5b8c2fd95a2caea5c3a1e82c75d1"},(0,n.kt)("inlineCode",{parentName:"a"},"2ad0f71"))),(0,n.kt)("li",{parentName:"ul"},"feat(footer): Add footer description #306 from eea/footer-description ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bf655d133dd75b217c34b3d4303ad450a59f2c51"},(0,n.kt)("inlineCode",{parentName:"a"},"bf655d1")))),(0,n.kt)("h4",{id:"-bug-fixes-6"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(footer): Don't show empty row if description is not present ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ca7f7d3247668ae8583b8cd629856aac82eb07d"},(0,n.kt)("inlineCode",{parentName:"a"},"2ca7f7d"))),(0,n.kt)("li",{parentName:"ul"},"fix(footer): Add class for children ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c50d15cd6ed46d78ef10d48fd851ed7c4b5ddea"},(0,n.kt)("inlineCode",{parentName:"a"},"3c50d15"))),(0,n.kt)("li",{parentName:"ul"},"fix(search): Fix search links color #307 from eea/search-accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a76f48bab3a7d3f6b748eaa85b33266401372e40"},(0,n.kt)("inlineCode",{parentName:"a"},"a76f48b"))),(0,n.kt)("li",{parentName:"ul"},"fix(search): Fix search links color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/69c42effc5bdc3d31f18de74d77a3b7cc0018dc5"},(0,n.kt)("inlineCode",{parentName:"a"},"69c42ef")))),(0,n.kt)("h4",{id:"-enhancements-7"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(carousel): tweak card width and padding for better arrow alignment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e184f70062d622e1ec53e8e1e2b012c080e62d77"},(0,n.kt)("inlineCode",{parentName:"a"},"e184f70"))),(0,n.kt)("li",{parentName:"ul"},"change(storybook): include footer description in storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e904aa0850e101d736e8d045e822d9a58b75ff6a"},(0,n.kt)("inlineCode",{parentName:"a"},"e904aa0")))),(0,n.kt)("h4",{id:"\ufe0f-others-6"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-beta.4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8c335c56c5a2a76ea87f9da318055770f904e649"},(0,n.kt)("inlineCode",{parentName:"a"},"8c335c5"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/38b03333066416915b056f8ac45da4de87ed7184"},(0,n.kt)("inlineCode",{parentName:"a"},"38b0333")))),(0,n.kt)("h3",{id:"100-beta3---2023-02-21"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-beta.2...1.0.0-beta.3"},"1.0.0-beta.3")," - 2023-02-21"),(0,n.kt)("h4",{id:"-new-features-6"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(accordion): storybook accessibility by using buttons for titles #297 from eea/accessibility-accordion ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/809d52b203ef40fab735006b3b8358d68682f7cf"},(0,n.kt)("inlineCode",{parentName:"a"},"809d52b")))),(0,n.kt)("h4",{id:"-bug-fixes-7"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(dropdown): remove close on blur so that we can navigate links using keyboard ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5442715e022b3eb2eeb709ff597f815947ac45bd"},(0,n.kt)("inlineCode",{parentName:"a"},"5442715")))),(0,n.kt)("h4",{id:"-enhancements-8"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(language): dropdown to use links for proper keyboard navigation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6a7de30d9d229443d6d2070d9649129e6d35badf"},(0,n.kt)("inlineCode",{parentName:"a"},"6a7de30"))),(0,n.kt)("li",{parentName:"ul"},"refactor(images): cleared unused/renamed images assets ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/821f5c1da5c1e2350818cd9b8b82bc0b1893370d"},(0,n.kt)("inlineCode",{parentName:"a"},"821f5c1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Accessibility): add box-shadow on focus-visible components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b1adcc315a89c7d3431e542e8d1b6ec479a346e2"},(0,n.kt)("inlineCode",{parentName:"a"},"b1adcc3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(images): remove unused docusaurus svgs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5ef14cdb1923d803feb673559d41b3064211653"},(0,n.kt)("inlineCode",{parentName:"a"},"c5ef14c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add escape key functionality, actions from div to button to have proper focus state ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8081aa4e3b77f8a3dc89aa358408d75e3dca5579"},(0,n.kt)("inlineCode",{parentName:"a"},"8081aa4"))),(0,n.kt)("li",{parentName:"ul"},"change(language): restore dropdown duplication in order to properly show and hide language dropdown ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb28888ff19bd9894b58403e674f69de42ad8d09"},(0,n.kt)("inlineCode",{parentName:"a"},"cb28888"))),(0,n.kt)("li",{parentName:"ul"},"change(search): to reflect changes from eea-website-theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2cc35e0da6e6eac1473724293fcf6cd6b0a914b5"},(0,n.kt)("inlineCode",{parentName:"a"},"2cc35e0"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update p with h3 heading tag for header ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca1477b554f56423d40a33d8ee788c3f3bd3e341"},(0,n.kt)("inlineCode",{parentName:"a"},"ca1477b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer images): removed unused/renamed ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/186de6b23906e05ec700c3db5180a4d7f7e5ed68"},(0,n.kt)("inlineCode",{parentName:"a"},"186de6b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Accordion): div titles to buttons, test in mobile mega menu accordions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/eaad4b479e37ebf5ac004cfc5759e0be603000a7"},(0,n.kt)("inlineCode",{parentName:"a"},"eaad4b4"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): cleanup decorative images ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fedc4d4dc156f9c1394fcedcebece4fb87dc70b6"},(0,n.kt)("inlineCode",{parentName:"a"},"fedc4d4"))),(0,n.kt)("li",{parentName:"ul"},"change(accessibility): style outline instead of box-shadow ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53209f3b28c9a1dd54a8a86ab418b8bc2a8e01b3"},(0,n.kt)("inlineCode",{parentName:"a"},"53209f3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Footer): update mobile header size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/01ab7f0d9abe688b3d96aaec018838e1abefec73"},(0,n.kt)("inlineCode",{parentName:"a"},"01ab7f0"))),(0,n.kt)("li",{parentName:"ul"},"change(header): set the logo class directly on the link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f8fba508f925d9e6b86720fcb2c7dcfffee4ab5e"},(0,n.kt)("inlineCode",{parentName:"a"},"f8fba50"))),(0,n.kt)("li",{parentName:"ul"},"refactor(images): clear docusaurus unused pngs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/db5c61124182e3030f753f6baa294fbdecaa3798"},(0,n.kt)("inlineCode",{parentName:"a"},"db5c611"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header-images): removed unused ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8250d94421d9d1ee13144e71bc0938af2b7309f5"},(0,n.kt)("inlineCode",{parentName:"a"},"8250d94"))),(0,n.kt)("li",{parentName:"ul"},"change(language): hide language dropdown by default ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cc6064f72dcb4dbf96e9b05205cc796775d75205"},(0,n.kt)("inlineCode",{parentName:"a"},"cc6064f"))),(0,n.kt)("li",{parentName:"ul"},"change(header): top dropdown menu keyboard navigation #293 from eea/accessibility-megamenu-searchbox ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1e6fa658e52b9d5e6cc38f065b5707b592005241"},(0,n.kt)("inlineCode",{parentName:"a"},"1e6fa65"))),(0,n.kt)("li",{parentName:"ul"},"change(button): set focus styling for buttons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/33ebfcacb014fca365ae58079bfa5429d9007e54"},(0,n.kt)("inlineCode",{parentName:"a"},"33ebfca"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): Avoid devtools warning in FooterActions #304 from eea/avoid_warning ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d774824c5d3d0998b3440ac83152428cfa821087"},(0,n.kt)("inlineCode",{parentName:"a"},"d774824"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): Accessibility update p with h3 heading tag for theme sites title #302 from eea/footer-accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5bf70de97aee216a0b88f5843a290c6bcb5da6f2"},(0,n.kt)("inlineCode",{parentName:"a"},"5bf70de"))),(0,n.kt)("li",{parentName:"ul"},"change(documentation): Rename all image files to follow the agreed convention #301 from eea/refactor-image-filenames ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cfe44ef79943af9b9179df1b8ec5f8c743e8bb39"},(0,n.kt)("inlineCode",{parentName:"a"},"cfe44ef")))),(0,n.kt)("h4",{id:"-internal-changes-5"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(header): react syntax fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3add1271c785a92bea0ef925d7bc562cef1e0d92"},(0,n.kt)("inlineCode",{parentName:"a"},"3add127"))),(0,n.kt)("li",{parentName:"ul"},"chore(docusaurus): ignore website/.yarn ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0b33ffd1dda61b126e3cc5ff48888124d6aee41b"},(0,n.kt)("inlineCode",{parentName:"a"},"0b33ffd")))),(0,n.kt)("h4",{id:"-documentation-changes-3"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(guidelines): add image name convention ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/290747c8df6919199577bc7fce6a0e337cb57853"},(0,n.kt)("inlineCode",{parentName:"a"},"290747c")))),(0,n.kt)("h4",{id:"\ufe0f-others-7"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Avoid warning in FooterActions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0fe73d70e44e32be73049f3b5cf826de42115942"},(0,n.kt)("inlineCode",{parentName:"a"},"0fe73d7"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-beta.3 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/386c9032d39317b0bb95191bd59e3b7a99bded69"},(0,n.kt)("inlineCode",{parentName:"a"},"386c903")))),(0,n.kt)("h3",{id:"100-beta2---2023-02-13"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-beta.1...1.0.0-beta.2"},"1.0.0-beta.2")," - 2023-02-13"),(0,n.kt)("h4",{id:"-bug-fixes-8"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(footer): action and copyright #300 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/579f3e436e9608b38a2407a16c070345462bfccc"},(0,n.kt)("inlineCode",{parentName:"a"},"579f3e4"))),(0,n.kt)("li",{parentName:"ul"},"fix(footer): action or copyright links are simple a tags for external link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9af5070187ec975e58387f133afedcf1bbc47a50"},(0,n.kt)("inlineCode",{parentName:"a"},"9af5070"))),(0,n.kt)("li",{parentName:"ul"},"fix(accessibility): added navigation and footer id's for skip link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48354b908e7d1a87b4e1a965d225e8f1b3e0ac59"},(0,n.kt)("inlineCode",{parentName:"a"},"48354b9")))),(0,n.kt)("h4",{id:"-enhancements-9"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(footer): typos and modified footer links to be center aligned ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac23f046bcac06525985dff7520bb2766dec44ec"},(0,n.kt)("inlineCode",{parentName:"a"},"ac23f04"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): added gap for actions and copyright ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d32ddd3c28a48c6c2fb73dea373bb5873b6f76b"},(0,n.kt)("inlineCode",{parentName:"a"},"7d32ddd"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): modified footer gap ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8a820ac90c7d6664e4d4655c2c06edfa976c64e"},(0,n.kt)("inlineCode",{parentName:"a"},"b8a820a"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): removed extra text and date from copyright section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af47bbec298678fece6f879fbc18fe2e01ab0894"},(0,n.kt)("inlineCode",{parentName:"a"},"af47bbe"))),(0,n.kt)("li",{parentName:"ul"},"change(navigation): raise z-index of go to top link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/485ca7291da7a156b6b580c42e46d4f3602211bb"},(0,n.kt)("inlineCode",{parentName:"a"},"485ca72")))),(0,n.kt)("h4",{id:"-internal-changes-6"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(docs): Update eea.hbs template to beta - refs #158717 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/196538ed7bb9dab36a0efb4cef84e96dd3038ff8"},(0,n.kt)("inlineCode",{parentName:"a"},"196538e")))),(0,n.kt)("h4",{id:"\ufe0f-others-8"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change version to beta 2 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cbb07981454b28de840561eca281888e8bc29f9e"},(0,n.kt)("inlineCode",{parentName:"a"},"cbb0798"))),(0,n.kt)("li",{parentName:"ul"},"Beta release ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ad51b3c2bbb75f19af14fa56afdbddf57b6c95e"},(0,n.kt)("inlineCode",{parentName:"a"},"4ad51b3")))),(0,n.kt)("h3",{id:"100-beta1---2023-02-09"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.15...1.0.0-beta.1"},"1.0.0-beta.1")," - 2023-02-09"),(0,n.kt)("h4",{id:"-new-features-7"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(search): Add search suggestions style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6b2b77bbaba11541606ae2bc1f4e8ffc823f470d"},(0,n.kt)("inlineCode",{parentName:"a"},"6b2b77b"))),(0,n.kt)("li",{parentName:"ul"},"feat(search): Add search suggestions style #296 from eea/search-suggestions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3b0c956f569ebdc8400b88249c45067a1f881264"},(0,n.kt)("inlineCode",{parentName:"a"},"3b0c956")))),(0,n.kt)("h4",{id:"-enhancements-10"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(search): Add proper margin for search popup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/190c9f5be570215586086f42aebc7e36d6a26ea2"},(0,n.kt)("inlineCode",{parentName:"a"},"190c9f5")))),(0,n.kt)("h4",{id:"\ufe0f-others-9"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Extra bottom padding for header menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4f38c7a96d93fbcd47de4ec60176de2a667c5643"},(0,n.kt)("inlineCode",{parentName:"a"},"4f38c7a"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-beta.1 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4384ae28597c725f66ab0f1361ffd5167ee5e3a1"},(0,n.kt)("inlineCode",{parentName:"a"},"4384ae2"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c2ee90c1754f17a304897839adf482bc2a111212"},(0,n.kt)("inlineCode",{parentName:"a"},"c2ee90c")))),(0,n.kt)("h3",{id:"100-alpha15---2023-02-08"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.14...1.0.0-alpha.15"},"1.0.0-alpha.15")," - 2023-02-08"),(0,n.kt)("h4",{id:"-new-features-8"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(Card): add teaser card grid story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53cac0b0d1c40ad6ad8c9dc91c5d24bfb160f98e"},(0,n.kt)("inlineCode",{parentName:"a"},"53cac0b"))),(0,n.kt)("li",{parentName:"ul"},"feat(utilities): Complete list of text-align utilities - refs #160747 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/224fab602184b8974f588c91a7412e3d03e4e2f7"},(0,n.kt)("inlineCode",{parentName:"a"},"224fab6"))),(0,n.kt)("li",{parentName:"ul"},"feat(small): CSS for small HTML tag - refs #160747 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ad3c0adec4efa7cead69153d399c6452131c94cc"},(0,n.kt)("inlineCode",{parentName:"a"},"ad3c0ad"))),(0,n.kt)("li",{parentName:"ul"},"feat(fw-light): Add font weight light utility - refs #160747 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c44cf57db5845fbb9c07233aeedab79e1438f80f"},(0,n.kt)("inlineCode",{parentName:"a"},"c44cf57")))),(0,n.kt)("h4",{id:"-bug-fixes-9"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(card): teaser card dimensions on tablet size #290 from eea/teaser-card-grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/013fdf5cad347aee14bdc51553dbd95d972a7c66"},(0,n.kt)("inlineCode",{parentName:"a"},"013fdf5")))),(0,n.kt)("h4",{id:"-enhancements-11"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(card): added extra content for teaser card story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/30690ae6c499682853cb19db10b0cdc13c6f9508"},(0,n.kt)("inlineCode",{parentName:"a"},"30690ae"))),(0,n.kt)("li",{parentName:"ul"},"refactor(style-menu): add text-color to paragraphs styles #291 from eea/stylemenu-theme-colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2d783075b8089184e50b1763226af0d60ed11786"},(0,n.kt)("inlineCode",{parentName:"a"},"2d78307"))),(0,n.kt)("li",{parentName:"ul"},"change(header): Small fix in search popup #292 from eea/search-popup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/86c130539455b9a00b4b088b1871a98b9756df79"},(0,n.kt)("inlineCode",{parentName:"a"},"86c1305"))),(0,n.kt)("li",{parentName:"ul"},"refactor(style-menu): add text-color to paragraphs styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3446bc2704603bbfead7ff6c72d4e3a1ce81c7d4"},(0,n.kt)("inlineCode",{parentName:"a"},"3446bc2"))),(0,n.kt)("li",{parentName:"ul"},"change(color): darkCyan is now replaced everywhere by the new green ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef3791de6e2ea23487791c717eefc575e21fd283"},(0,n.kt)("inlineCode",{parentName:"a"},"ef3791d"))),(0,n.kt)("li",{parentName:"ul"},"change(header): Small fix in search popup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3d622ea99df5a1f1088f70998e38fd5bf43997cf"},(0,n.kt)("inlineCode",{parentName:"a"},"3d622ea")))),(0,n.kt)("h4",{id:"\ufe0f-others-10"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Release alpha 15 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3b72b29aaf9b3e1bfb7015808aafbd73a7167895"},(0,n.kt)("inlineCode",{parentName:"a"},"3b72b29")))),(0,n.kt)("h3",{id:"100-alpha14---2023-01-30"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.13.1...1.0.0-alpha.14"},"1.0.0-alpha.14")," - 2023-01-30"),(0,n.kt)("h4",{id:"-enhancements-12"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(mobile menu): integrate a-z topic with menu rendering logic #287 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/05d4c04603e6572cd6f9b255faa03c4636d8efdb"},(0,n.kt)("inlineCode",{parentName:"a"},"05d4c04"))),(0,n.kt)("li",{parentName:"ul"},"change(mobile menu): integrate a-z topic with menu rendering logic ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/246d3d839b773e2f6e1fff7fed5f9aa7a4968daa"},(0,n.kt)("inlineCode",{parentName:"a"},"246d3d8")))),(0,n.kt)("h4",{id:"\ufe0f-others-11"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"bump release to alpha 14 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/92f01975a809553ed122824c8407c74da9132c23"},(0,n.kt)("inlineCode",{parentName:"a"},"92f0197"))),(0,n.kt)("li",{parentName:"ul"},"link fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e1c12a132a1a99d773af359ebce071fb37c7e661"},(0,n.kt)("inlineCode",{parentName:"a"},"e1c12a1")))),(0,n.kt)("h3",{id:"100-alpha131---2023-01-30"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.13...1.0.0-alpha.13.1"},"1.0.0-alpha.13.1")," - 2023-01-30"),(0,n.kt)("h4",{id:"-enhancements-13"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(mobile menu): hardcode a-z topics to '/en/topics-in-depth' #286 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6436224e1922fb5d4b4053c874cebe5c57b2a6b9"},(0,n.kt)("inlineCode",{parentName:"a"},"6436224"))),(0,n.kt)("li",{parentName:"ul"},"change(mobile menu): hardcode a-z topics to '/en/topics-in-depth' ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5235b52047a80a8b626aa5ef3ef304c4d9a82003"},(0,n.kt)("inlineCode",{parentName:"a"},"5235b52")))),(0,n.kt)("h4",{id:"\ufe0f-others-12"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change release to 13.1 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70aa5648e7d9e14796445323b6ebaf7733cc7fd8"},(0,n.kt)("inlineCode",{parentName:"a"},"70aa564")))),(0,n.kt)("h3",{id:"100-alpha13---2023-01-27"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.12...1.0.0-alpha.13"},"1.0.0-alpha.13")," - 2023-01-27"),(0,n.kt)("h4",{id:"-new-features-9"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(utilities): added has--bg--top center and bottom utility classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/051e6d7c33aca7947802ddaa9fe68ac41ed7fe11"},(0,n.kt)("inlineCode",{parentName:"a"},"051e6d7")))),(0,n.kt)("h4",{id:"-bug-fixes-10"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(header): update green color used in page header #284 from eea/fix-banner-background ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/29d54db06487d18a367202725e525ac26e5b7c58"},(0,n.kt)("inlineCode",{parentName:"a"},"29d54db")))),(0,n.kt)("h4",{id:"-enhancements-14"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(site): added fixes from customVolto.css to design package ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51ba9b5df0186bdf075d803dea6032bac52e540f"},(0,n.kt)("inlineCode",{parentName:"a"},"51ba9b5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner): update banner background green color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fd4a552d9ff7a2973ebd6d18b6fbfd9bba5d98c6"},(0,n.kt)("inlineCode",{parentName:"a"},"fd4a552"))),(0,n.kt)("li",{parentName:"ul"},"change(mobile menu): changed link for a-z topics to point to in depth ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/721bf237d23d2a8e47fc2132912646c4ce182c9d"},(0,n.kt)("inlineCode",{parentName:"a"},"721bf23")))),(0,n.kt)("h4",{id:"\ufe0f-others-13"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"1.0.0-alpha.13 release #285 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c96694005e2d4160876f6a900db13940d42266d5"},(0,n.kt)("inlineCode",{parentName:"a"},"c966940"))),(0,n.kt)("li",{parentName:"ul"},"bump next version to alpha 13 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/897e9069062282f1b5cd8d86a02b8e54c40a4690"},(0,n.kt)("inlineCode",{parentName:"a"},"897e906"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5780dc7abeb24da5e77b043a34593ff7a44f350d"},(0,n.kt)("inlineCode",{parentName:"a"},"5780dc7")))),(0,n.kt)("h3",{id:"100-alpha12---2023-01-24"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.11...1.0.0-alpha.12"},"1.0.0-alpha.12")," - 2023-01-24"),(0,n.kt)("h4",{id:"-new-features-10"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(card, colors): visited color change and title on image option for cards #283 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e638ee6b77885fd5989179aa9e6532e46e475247"},(0,n.kt)("inlineCode",{parentName:"a"},"e638ee6")))),(0,n.kt)("h4",{id:"-bug-fixes-11"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(mobile menu): sub links when an accordion section is active ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bb3be81416340ad0e3e992cd4e75642fc50f8ad3"},(0,n.kt)("inlineCode",{parentName:"a"},"bb3be81")))),(0,n.kt)("h4",{id:"-enhancements-15"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(Card): create card template for stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2fa77f3f93935dd01cd5e3d77437fe8dc03721da"},(0,n.kt)("inlineCode",{parentName:"a"},"2fa77f3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Card): add image with title css ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e6e63e2362a27b0bbf4b8dd968f11a0dc87da2a"},(0,n.kt)("inlineCode",{parentName:"a"},"6e6e63e"))),(0,n.kt)("li",{parentName:"ul"},"change(card): implement title on image within image section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff6cc600978355e04dde704d014d2cbe27df1298"},(0,n.kt)("inlineCode",{parentName:"a"},"ff6cc60"))),(0,n.kt)("li",{parentName:"ul"},"change(card): added image card section, tweaked mobile heading size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0f879e15d22ae066f020d8188ef3e355c27d016c"},(0,n.kt)("inlineCode",{parentName:"a"},"0f879e1"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): moved image gradient overlay to a mixin.less file ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8b4928a87bfe5fae6f64c93d7c8f1f7a3045816c"},(0,n.kt)("inlineCode",{parentName:"a"},"8b4928a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): Update titles value and size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c35ad5c76caa00556f8a501d2e7d516464790dc4"},(0,n.kt)("inlineCode",{parentName:"a"},"c35ad5c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): applied image naming convention ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee7bc290084e198f9f94e40fbf44c6d9cb19d1ba"},(0,n.kt)("inlineCode",{parentName:"a"},"ee7bc29"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): added image for all storybook card examples ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3f194130bb6fb7b9ab04a7e1305f26fa135c23d2"},(0,n.kt)("inlineCode",{parentName:"a"},"3f19413"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): restored label value of metadata field when type isn't date ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/571a4f27fe73d0465b6482f70dd70b2dc47dffe8"},(0,n.kt)("inlineCode",{parentName:"a"},"571a4f2"))),(0,n.kt)("li",{parentName:"ul"},"change(card): title padding value for a more balance look ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/74b65563d973eb9c6afc534935e253f2705fe9ee"},(0,n.kt)("inlineCode",{parentName:"a"},"74b6556"))),(0,n.kt)("li",{parentName:"ul"},"change(card): removed uppercase transform from title on image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2948ae16f748911929910ac53d1e0acf96952317"},(0,n.kt)("inlineCode",{parentName:"a"},"2948ae1"))),(0,n.kt)("li",{parentName:"ul"},"change(colors, Docusaurus): Visited link colour change and thematic logo replacement #278 from eea/refactor-visited-link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f82d9781cc3b34443f181565c2ec1892d534f8e2"},(0,n.kt)("inlineCode",{parentName:"a"},"f82d978"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): visited link variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b209b2f7703641926c6d4b1f7162eef39b2a1ad8"},(0,n.kt)("inlineCode",{parentName:"a"},"b209b2f")))),(0,n.kt)("h4",{id:"-documentation-changes-4"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(colors): visited link update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ece77fec130de1d9d8014d40e7da975bf57061ee"},(0,n.kt)("inlineCode",{parentName:"a"},"ece77fe")))),(0,n.kt)("h4",{id:"\ufe0f-others-14"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix typos in footer gradient variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/40066405d97af838e986370101371a8162029e02"},(0,n.kt)("inlineCode",{parentName:"a"},"4006640"))),(0,n.kt)("li",{parentName:"ul"},"change version to alpha 12 instead of 1 final ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32250253f5d7fe9f01126136ad86b8a4f2f5c700"},(0,n.kt)("inlineCode",{parentName:"a"},"3225025"))),(0,n.kt)("li",{parentName:"ul"},"feature(card): new card variation with title on top of image #267 from eea/title-on-image-card ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2c0ca95700bb162bc1273c83f2fc4f591de8dcf0"},(0,n.kt)("inlineCode",{parentName:"a"},"2c0ca95"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/477d997513ef5152ab98e080ad07f927b5869705"},(0,n.kt)("inlineCode",{parentName:"a"},"477d997")))),(0,n.kt)("h3",{id:"100-alpha11---2023-01-17"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.10...1.0.0-alpha.11"},"1.0.0-alpha.11")," - 2023-01-17"),(0,n.kt)("h4",{id:"-new-features-11"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(docusaurus): Header and footer elements section #277 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0df271c4c79bd8a24750cfe44d69f32cb04a1b63"},(0,n.kt)("inlineCode",{parentName:"a"},"0df271c")))),(0,n.kt)("h4",{id:"-bug-fixes-12"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(banner): storybook date input and simplified gradient opacity ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7674d767bb770342828d6bea6953ce45b823943f"},(0,n.kt)("inlineCode",{parentName:"a"},"7674d76"))),(0,n.kt)("li",{parentName:"ul"},"fix(banner): re-added title class on banner title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d157994934c3da9af4e3dd37844f910bddf8377"},(0,n.kt)("inlineCode",{parentName:"a"},"6d15799")))),(0,n.kt)("h4",{id:"-enhancements-16"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(banner): sync storybook and Volto component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c9087cc8edc3fb27e0b96b509354861ec306f22a"},(0,n.kt)("inlineCode",{parentName:"a"},"c9087cc"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): removed margin from title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/17e592c4f3fd16a78069af50574e2ac608166a0f"},(0,n.kt)("inlineCode",{parentName:"a"},"17e592c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): sync storybook and Volto component #275 from eea/sync-page-banner-theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4331fb4a6d5744e7d7d6a001bca91265a22587fd"},(0,n.kt)("inlineCode",{parentName:"a"},"4331fb4")))),(0,n.kt)("h4",{id:"-documentation-changes-5"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(footer): updates on header elements ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b41c550475dc5a2eefcad5d75439601d079613e2"},(0,n.kt)("inlineCode",{parentName:"a"},"b41c550"))),(0,n.kt)("li",{parentName:"ul"},"docs(footer): add elements anatomy ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d9f0872f93a6f7572f798b2c001d3af00eb282e3"},(0,n.kt)("inlineCode",{parentName:"a"},"d9f0872")))),(0,n.kt)("h4",{id:"\ufe0f-others-15"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"add(banner): banner title css ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d0032474d2b57eb63a4b50a882ced2ee743a48e6"},(0,n.kt)("inlineCode",{parentName:"a"},"d003247"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-alpha.11 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/07e8f858b0bdeaa6a348c0bfc2b785f26017e1ea"},(0,n.kt)("inlineCode",{parentName:"a"},"07e8f85"))),(0,n.kt)("li",{parentName:"ul"},"renamed image elements as requested in review ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8541fb6739d3c935ed8d44a220114546b2aef682"},(0,n.kt)("inlineCode",{parentName:"a"},"8541fb6"))),(0,n.kt)("li",{parentName:"ul"},"remove(banner-gradiant): image gradiant in favour of text ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1b58520490be5e17ea4ce6fc98329d467dad3960"},(0,n.kt)("inlineCode",{parentName:"a"},"1b58520"))),(0,n.kt)("li",{parentName:"ul"},"update(gradient): use 8deg angle ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6fd597d8d7a83fdf8a27939e4c69dfc3975b6a81"},(0,n.kt)("inlineCode",{parentName:"a"},"6fd597d"))),(0,n.kt)("li",{parentName:"ul"},"update(gradiant): make it 0deg ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1bb2696375eef233b509e27d9d464b8343421430"},(0,n.kt)("inlineCode",{parentName:"a"},"1bb2696"))),(0,n.kt)("li",{parentName:"ul"},"remove(comment) referencing old verison of title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4226d42e34b119e057cf4e9878b6a99172cb976a"},(0,n.kt)("inlineCode",{parentName:"a"},"4226d42")))),(0,n.kt)("h3",{id:"100-alpha10---2023-01-13"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.9...1.0.0-alpha.10"},"1.0.0-alpha.10")," - 2023-01-13"),(0,n.kt)("h4",{id:"-bug-fixes-13"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(subsite): Fix logo size on subsite section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/65fff54503a9ace573dc7198f6bedb372e65d211"},(0,n.kt)("inlineCode",{parentName:"a"},"65fff54"))),(0,n.kt)("li",{parentName:"ul"},"fix(subsite): Fix logo size on subsite section #279 from eea/subsite-fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f6cf94811dbebc2081c0ca812570a72dd977b06"},(0,n.kt)("inlineCode",{parentName:"a"},"8f6cf94"))),(0,n.kt)("li",{parentName:"ul"},"fix(mega-menu): show sub grid only if there are children ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ddfbd82aab2be723ae230d703f72a8cd489f17d8"},(0,n.kt)("inlineCode",{parentName:"a"},"ddfbd82")))),(0,n.kt)("h4",{id:"\ufe0f-others-16"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Add variable definitions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/293fe65e2f24e6290e1286229169a77f9be4750e"},(0,n.kt)("inlineCode",{parentName:"a"},"293fe65"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-alpha.10 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7014d080ce114bd0bc039abeecbd7229333b0971"},(0,n.kt)("inlineCode",{parentName:"a"},"7014d08"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using advisory-board-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef58a6f5ad8deea26b1395a86778fe1159b7617b"},(0,n.kt)("inlineCode",{parentName:"a"},"ef58a6f"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/31d461662b9184a7bbe190e86f3c47fab39229fe"},(0,n.kt)("inlineCode",{parentName:"a"},"31d4616")))),(0,n.kt)("h3",{id:"100-alpha9---2022-12-28"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.8...1.0.0-alpha.9"},"1.0.0-alpha.9")," - 2022-12-28"),(0,n.kt)("h4",{id:"-enhancements-17"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(contextnav): Default title is text, custom title is link #273 from eea/context-nav-link-title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef7bdb7c40cd12c3d7e059074aa5797b8cb3378c"},(0,n.kt)("inlineCode",{parentName:"a"},"ef7bdb7")))),(0,n.kt)("h4",{id:"\ufe0f-others-17"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Show document and folder content-type in Navigation listing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8471db3b3d555e8602f1076d0f96a2ba38a12247"},(0,n.kt)("inlineCode",{parentName:"a"},"8471db3"))),(0,n.kt)("li",{parentName:"ul"},"Default title is text, custom title is link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1ae95b05b67423121566448c6b0cededca4b2b1d"},(0,n.kt)("inlineCode",{parentName:"a"},"1ae95b0"))),(0,n.kt)("li",{parentName:"ul"},"Context nav title link to # ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a27a6b78bcda0eb6037f73f1d36b06e00e3ffc52"},(0,n.kt)("inlineCode",{parentName:"a"},"a27a6b7")))),(0,n.kt)("h3",{id:"100-alpha8---2022-12-23"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.7...1.0.0-alpha.8"},"1.0.0-alpha.8")," - 2022-12-23"),(0,n.kt)("h4",{id:"-new-features-12"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(copyright): Align copyright options with Volto integration - refs #158210 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6bac7f6a9ad969af4be1c8c08a18a1144d5bad63"},(0,n.kt)("inlineCode",{parentName:"a"},"6bac7f6")))),(0,n.kt)("h4",{id:"-enhancements-18"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(logo): import theme site logos to the story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2f29136ca457f2419ca25a5292a036b2cd0fc402"},(0,n.kt)("inlineCode",{parentName:"a"},"2f29136"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logo): update logo and mega search gradient ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e11f44d59334fc02e3833a133b20e7b2240a2022"},(0,n.kt)("inlineCode",{parentName:"a"},"e11f44d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logos): convert logo names to lowercase ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/07b822864490b4cc63bef94f3306466ba5933e16"},(0,n.kt)("inlineCode",{parentName:"a"},"07b8228"))),(0,n.kt)("li",{parentName:"ul"},"change(item): use default logic of setting align class on content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6b5b47c10ce5a6d3710bedd492aa3d362d62d225"},(0,n.kt)("inlineCode",{parentName:"a"},"6b5b47c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logo): update logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/170efe5bfc7fd4988f4a4d4aac18ace32c360cd6"},(0,n.kt)("inlineCode",{parentName:"a"},"170efe5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logos): convert storybook logo names to lowercase ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4b24ec8796f8fffd87158a55f4ac19624ebe04c"},(0,n.kt)("inlineCode",{parentName:"a"},"c4b24ec"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logo): add eea roboto font logo variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/de1224a97568c0b48b509c65170a6080d8a058d4"},(0,n.kt)("inlineCode",{parentName:"a"},"de1224a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logo): add container and segment to logo story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/61eff16fcd080194fe1187656d67ef73a7dd4d6c"},(0,n.kt)("inlineCode",{parentName:"a"},"61eff16"))),(0,n.kt)("li",{parentName:"ul"},"change(item): removed requirement for aligned classes to be on content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/30c0d5d2de7ac05172cfb726b60a8bd763de7b31"},(0,n.kt)("inlineCode",{parentName:"a"},"30c0d5d"))),(0,n.kt)("li",{parentName:"ul"},"change(logos): cleanup eea logo reference to only eea-logo and eea-logo-white.svg ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2796e054a21a9025036c8b2882afe23a6984cd37"},(0,n.kt)("inlineCode",{parentName:"a"},"2796e05")))),(0,n.kt)("h4",{id:"-internal-changes-7"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(npmignore): Reduce npmjs package size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/164c8a5ad0f7241eb8e30c53eccfdff9cec1fb93"},(0,n.kt)("inlineCode",{parentName:"a"},"164c8a5"))),(0,n.kt)("li",{parentName:"ul"},"chore(npmignore): Reduce npmjs package size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ade9d5ba3411efc47cdd3b461fd60b2b7389f9be"},(0,n.kt)("inlineCode",{parentName:"a"},"ade9d5b"))),(0,n.kt)("li",{parentName:"ul"},"chore(docs): renamed logo mdx to md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/52e9d46bb2decabdc935eeee84dacc3e063e3616"},(0,n.kt)("inlineCode",{parentName:"a"},"52e9d46")))),(0,n.kt)("h4",{id:"-documentation-changes-6"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(logos): svgs without classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/28a58336ac57deb3eec7287b6fbf5cd58ada8a7e"},(0,n.kt)("inlineCode",{parentName:"a"},"28a5833"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): add dark mode logos ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ccc1609643cff5f851942ab95198d44252ddb22e"},(0,n.kt)("inlineCode",{parentName:"a"},"ccc1609"))),(0,n.kt)("li",{parentName:"ul"},"docs(logo): update eea logos and add logo wrapper ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91cdd6636dfb102e4712177ad5fa7e952eb6ea45"},(0,n.kt)("inlineCode",{parentName:"a"},"91cdd66"))),(0,n.kt)("li",{parentName:"ul"},"docs(logo): update logos on docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/760e1012892ab28b25e8d9b0de50cfa0ba07addf"},(0,n.kt)("inlineCode",{parentName:"a"},"760e101"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): updated svgs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dc224e1dbcf46a29b0639afde694d44221affe27"},(0,n.kt)("inlineCode",{parentName:"a"},"dc224e1"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): add thematic logos ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5a21a3076e506e6bd7f82fa97697f81825e87255"},(0,n.kt)("inlineCode",{parentName:"a"},"5a21a30"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): add zipped svgs for download ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5855bf83b471a9849ee71370d7eee4f6a1d12a44"},(0,n.kt)("inlineCode",{parentName:"a"},"5855bf8"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): wisef logo update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f90b59d03c1c4eaa760dd981e082f237c09e96f"},(0,n.kt)("inlineCode",{parentName:"a"},"8f90b59"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): move to static, add download ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8c1fd5f9a64bd8fb976687fe5ed96bc515b95393"},(0,n.kt)("inlineCode",{parentName:"a"},"8c1fd5f"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): improve eea logo visibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/82188abb99aa080d7bea15975497e03c653d311c"},(0,n.kt)("inlineCode",{parentName:"a"},"82188ab"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): change eea logo to svg ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f57b846ca9d635f5af4d1adeee280a5adcaf7b5f"},(0,n.kt)("inlineCode",{parentName:"a"},"f57b846")))),(0,n.kt)("h4",{id:"\ufe0f-others-18"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"logo update or docusaurus thematic logo listing #274 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dde90beb68ac129e476ece22e7ced4640786f094"},(0,n.kt)("inlineCode",{parentName:"a"},"dde90be"))),(0,n.kt)("li",{parentName:"ul"},"(feat): Add ability to disable the language select from website top menu - refs #158616 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/411c8e4afaf0b2b9edfdeeecdca22aa4cc41f329"},(0,n.kt)("inlineCode",{parentName:"a"},"411c8e4"))),(0,n.kt)("li",{parentName:"ul"},"Proof reading page header section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/230239e1b22734fb8606656985bc5e513731e244"},(0,n.kt)("inlineCode",{parentName:"a"},"230239e"))),(0,n.kt)("li",{parentName:"ul"},"bump package version ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4628bed134abc76e38a243d4e98143e19cef989"},(0,n.kt)("inlineCode",{parentName:"a"},"b4628be"))),(0,n.kt)("li",{parentName:"ul"},"feature(docusaurus, storybook): logos selection for sites plus inverted options #253 from eea/doc-logo-page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dbfc90d035dc40e9d4054347f00fde4de486d63d"},(0,n.kt)("inlineCode",{parentName:"a"},"dbfc90d"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using advisory-board-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4769e987d525f5dcafac8e6cf8a89fd8111667d"},(0,n.kt)("inlineCode",{parentName:"a"},"c4769e9"))),(0,n.kt)("li",{parentName:"ul"},"test(Jenkins): Run tests and cypress with latest canary @plone/volto ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/92feea09796c9ef0530f65fa1d34139905133215"},(0,n.kt)("inlineCode",{parentName:"a"},"92feea0")))),(0,n.kt)("h3",{id:"100-alpha7---2022-12-16"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.6...1.0.0-alpha.7"},"1.0.0-alpha.7")," - 2022-12-16"),(0,n.kt)("h4",{id:"-new-features-13"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(item): normalized size for image or icon items #258 from eea/refactor-items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/945170f1503be68aa3fc1bd950a97eeebfd81037"},(0,n.kt)("inlineCode",{parentName:"a"},"945170f")))),(0,n.kt)("h4",{id:"-bug-fixes-14"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(card): rounded after removal of has--rounded--true style class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4727afdecf3d25e3e5bc98d472b976d60154183"},(0,n.kt)("inlineCode",{parentName:"a"},"d4727af"))),(0,n.kt)("li",{parentName:"ul"},"fix(item): removed margin set for description which pushed the text from icon ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d9d40310fcfb1bd214bd901b79dcbac41e9a8518"},(0,n.kt)("inlineCode",{parentName:"a"},"d9d4031"))),(0,n.kt)("li",{parentName:"ul"},"fix(project): Proper paths if volto-eea-design-system package is not installed, but in development #270 from eea/correct_paths ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0f8ee8d770f1b26d4315be8f615d58a61acbafc8"},(0,n.kt)("inlineCode",{parentName:"a"},"0f8ee8d")))),(0,n.kt)("h4",{id:"-enhancements-19"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(item): update icon variations and paddings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6a407b3e7f743eb7b73247bcc5d489685d567bc6"},(0,n.kt)("inlineCode",{parentName:"a"},"6a407b3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): update spacing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2fd91c4aa1a76dd2f7099d3f24f94067e95e06a1"},(0,n.kt)("inlineCode",{parentName:"a"},"2fd91c4"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): initial values for new sizes & add description class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3546296f0cacb96411c8c67b98e9763e2b843b05"},(0,n.kt)("inlineCode",{parentName:"a"},"3546296"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): add icon and more size options ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1120bb62d9ab908c5c97a4871a66e3c08c5c7ece"},(0,n.kt)("inlineCode",{parentName:"a"},"1120bb6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): update image and icon sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8025735121aaa0024a5783afbde0f6be3715618"},(0,n.kt)("inlineCode",{parentName:"a"},"b802573"))),(0,n.kt)("li",{parentName:"ul"},"change(item): set same height as width on item images ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/69cbd23ca53dd68ae9f7c00a69ed2d8820746305"},(0,n.kt)("inlineCode",{parentName:"a"},"69cbd23"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): update item part 2 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9812ae2e41ac86cfd4c56e13af8af570b752966f"},(0,n.kt)("inlineCode",{parentName:"a"},"9812ae2"))),(0,n.kt)("li",{parentName:"ul"},"change(item): rename large to big class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24ff1275b9a0556b85ab86757bc0c84f50357e7d"},(0,n.kt)("inlineCode",{parentName:"a"},"24ff127"))),(0,n.kt)("li",{parentName:"ul"},"change(item): added tiny size that outputs 24px icon sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ea96363a957f9033cb5bfe2d7fd311e92377493"},(0,n.kt)("inlineCode",{parentName:"a"},"2ea9636"))),(0,n.kt)("li",{parentName:"ul"},"change(image): added preview image size default to 400px ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a0aa867e932d1b3c0bf449553726d6feb645853e"},(0,n.kt)("inlineCode",{parentName:"a"},"a0aa867"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): update operator for condition controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/149ccb2f1e498c27e5550214cdee25eb808ab27e"},(0,n.kt)("inlineCode",{parentName:"a"},"149ccb2")))),(0,n.kt)("h4",{id:"\ufe0f-others-19"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Proper paths if the package is not installed, but in development ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7a2655f7cf9d3c687f172eefcf2b4cff4b12f832"},(0,n.kt)("inlineCode",{parentName:"a"},"7a2655f"))),(0,n.kt)("li",{parentName:"ul"},"Update .project.eslintrc.js ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a2fd3f23473325976c2b146e066eeb538d140dce"},(0,n.kt)("inlineCode",{parentName:"a"},"a2fd3f2"))),(0,n.kt)("li",{parentName:"ul"},"added back descriptionDistance variable until package release ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3af811a8d86a132e16de118697ba5a4302a8a4da"},(0,n.kt)("inlineCode",{parentName:"a"},"3af811a"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-alpha.7 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e66bcc296b389bc55073e7f99681534977dce3a"},(0,n.kt)("inlineCode",{parentName:"a"},"7e66bcc"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using cca-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce47e9b163bcb4eda988e3a87718b54ffbd3f99f"},(0,n.kt)("inlineCode",{parentName:"a"},"ce47e9b"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb531c933c907bdbb88c9de0f1df2eb7ce899a4c"},(0,n.kt)("inlineCode",{parentName:"a"},"cb531c9")))),(0,n.kt)("h3",{id:"100-alpha6---2022-12-07"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.5...1.0.0-alpha.6"},"1.0.0-alpha.6")," - 2022-12-07"),(0,n.kt)("h4",{id:"-new-features-14"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(copyright): create copyright component and import it in banner ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8fcde9df2915585e2336024436cef76642820d75"},(0,n.kt)("inlineCode",{parentName:"a"},"8fcde9d"))),(0,n.kt)("li",{parentName:"ul"},"feat(Header): add hideSearch prop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/13ddfe59a6bd7fe2050b70ac4524a6f6c5c169ea"},(0,n.kt)("inlineCode",{parentName:"a"},"13ddfe5"))),(0,n.kt)("li",{parentName:"ul"},"feat(Docusaurus): Image copyright information #257 from eea/image-copyright-info ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/21195153240da052acb7171f7904449ed7854cb3"},(0,n.kt)("inlineCode",{parentName:"a"},"2119515")))),(0,n.kt)("h4",{id:"-bug-fixes-15"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(tags): content gap when using tags-content wrapper ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4eb9b89d4ea09f936b7fcdc22a84105fd8639af"},(0,n.kt)("inlineCode",{parentName:"a"},"c4eb9b8")))),(0,n.kt)("h4",{id:"-enhancements-20"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(hero): add copyright component to hero ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0fa88fad3e7b48789dc6d0462b9f78dd359b8949"},(0,n.kt)("inlineCode",{parentName:"a"},"0fa88fa"))),(0,n.kt)("li",{parentName:"ul"},"change(copyright): implementation to add classes on content sections ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e10bde674f2b1f722ec6c70734e4a72c018f4afe"},(0,n.kt)("inlineCode",{parentName:"a"},"e10bde6"))),(0,n.kt)("li",{parentName:"ul"},"change(copyright): removed color variant ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/747b8a27155569247d4975837587e3320327fce9"},(0,n.kt)("inlineCode",{parentName:"a"},"747b8a2"))),(0,n.kt)("li",{parentName:"ul"},"change(copyright): removed copyrightVariant from Banner and Hero stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac62e079d4eafb818f9cae25880a04d9e069d107"},(0,n.kt)("inlineCode",{parentName:"a"},"ac62e07"))),(0,n.kt)("li",{parentName:"ul"},"change(tagList): modified implementation to align to volto-tags-block ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7a57a3d4bf7ede4b5ab5f3ef045d664aaaf67f2c"},(0,n.kt)("inlineCode",{parentName:"a"},"7a57a3d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(copyright): remove data section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/52cb09dc363bb0a2e363ec86dcefb4c57e07a14d"},(0,n.kt)("inlineCode",{parentName:"a"},"52cb09d"))),(0,n.kt)("li",{parentName:"ul"},"change(copyright): line height to match page header implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a56254e7588cfc6aca999f550084d79dca6e9a6c"},(0,n.kt)("inlineCode",{parentName:"a"},"a56254e"))),(0,n.kt)("li",{parentName:"ul"},"change(copyright): now uses text color css variable with fallback to white ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee7268ba359f079dfce45fd0fe91f75ae5c37e94"},(0,n.kt)("inlineCode",{parentName:"a"},"ee7268b")))),(0,n.kt)("h4",{id:"-documentation-changes-7"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(copyright): copyright documentation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a90ed766e60b5eb5b027beb36d2b1967d2c41fa3"},(0,n.kt)("inlineCode",{parentName:"a"},"a90ed76")))),(0,n.kt)("h4",{id:"\ufe0f-others-20"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Update usage_markdown.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f76d4a242f795451d64ef2d192d0006a0ed5eac1"},(0,n.kt)("inlineCode",{parentName:"a"},"f76d4a2"))),(0,n.kt)("li",{parentName:"ul"},"grammar fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb2a5a5fd9dfc01eccc179721b06988742f5b2e2"},(0,n.kt)("inlineCode",{parentName:"a"},"cb2a5a5"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-alpha.6 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6ca32f03c1860781d3c1c4ff9558713ad8acac95"},(0,n.kt)("inlineCode",{parentName:"a"},"6ca32f0"))),(0,n.kt)("li",{parentName:"ul"},"feature(copyright): image information #250 from eea/feature-copyright ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a8618c7f0230a19b6c973aa2c9646463de9eeffb"},(0,n.kt)("inlineCode",{parentName:"a"},"a8618c7"))),(0,n.kt)("li",{parentName:"ul"},"lint fix by introducing local variable tagsGap ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7b6c0ae2ebfed06221700faf9a0d0c2bdeb60d99"},(0,n.kt)("inlineCode",{parentName:"a"},"7b6c0ae"))),(0,n.kt)("li",{parentName:"ul"},"Update 3-images.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1b0ef033f9c8a36aaa739f268263f24a6d0fb473"},(0,n.kt)("inlineCode",{parentName:"a"},"1b0ef03")))),(0,n.kt)("h3",{id:"100-alpha5---2022-11-29"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.4...1.0.0-alpha.5"},"1.0.0-alpha.5")," - 2022-11-29"),(0,n.kt)("h4",{id:"-new-features-15"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(Iconography): import and showcase remix icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/777112f7e77ce8c74c3fd4384bff6ec9694aba04"},(0,n.kt)("inlineCode",{parentName:"a"},"777112f")))),(0,n.kt)("h4",{id:"-bug-fixes-16"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(docusaurus): right bar overflow fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/197c763624f70556c62379bc0751763725d0fed3"},(0,n.kt)("inlineCode",{parentName:"a"},"197c763"))),(0,n.kt)("li",{parentName:"ul"},"fix(lists): bullet position by using padding instead of margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0ecae2e7fe61b98d8795f876a525fbbc873bf799"},(0,n.kt)("inlineCode",{parentName:"a"},"0ecae2e"))),(0,n.kt)("li",{parentName:"ul"},"fix(label): color for yellow variant as white isn't accessible on yellow color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91d8880a829d2728c49a1953f6d2d8c2c812990c"},(0,n.kt)("inlineCode",{parentName:"a"},"91d8880"))),(0,n.kt)("li",{parentName:"ul"},"fix(contentBox): avoid text decoration for header-link added on cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ccb592db6f465cec59124b94fb6918b513bb761"},(0,n.kt)("inlineCode",{parentName:"a"},"3ccb592"))),(0,n.kt)("li",{parentName:"ul"},"fix(label): margin value for ribbon image left and right margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f8e1129734709d6034539a6522105af9d43fef20"},(0,n.kt)("inlineCode",{parentName:"a"},"f8e1129")))),(0,n.kt)("h4",{id:"-enhancements-21"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): eea color palette in separate file ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6c855df9c2238f8d21860ade4578aa969b68448e"},(0,n.kt)("inlineCode",{parentName:"a"},"6c855df"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): classes for color boxes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/80219d52bc63842d8e6382dbbe7d43cdc8a29b9c"},(0,n.kt)("inlineCode",{parentName:"a"},"80219d5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): move supplementary, state and link colors to partials ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2776be32615d7a6bdd8561a523fb9cfb1a85e38b"},(0,n.kt)("inlineCode",{parentName:"a"},"2776be3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): fix side menu / moved more content in palette partial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f5b70775471369ca8f3193784b9bc66caa8fb76f"},(0,n.kt)("inlineCode",{parentName:"a"},"f5b7077"))),(0,n.kt)("li",{parentName:"ul"},"change(tag): set gap on tags element for margin between tag elements ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/726bc6da821a366a5afa03659e614cc73ed02c0b"},(0,n.kt)("inlineCode",{parentName:"a"},"726bc6d")))),(0,n.kt)("h4",{id:"-internal-changes-8"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(colours): fix wrong class name ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51ad0a8232f7f35cae05f5861d7822db852b3f8d"},(0,n.kt)("inlineCode",{parentName:"a"},"51ad0a8")))),(0,n.kt)("h4",{id:"-documentation-changes-8"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): Iconography updates, thematic platforms ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2a0e596bd002290e0759d8c5e568da4d318f7d59"},(0,n.kt)("inlineCode",{parentName:"a"},"2a0e596"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): thematic pages integration ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea7a4220a93d3fd2f437b51462f7f19d99f52595"},(0,n.kt)("inlineCode",{parentName:"a"},"ea7a422"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): color updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cc13b5499a9ae13bb45925a057f8ff4d6a2e4643"},(0,n.kt)("inlineCode",{parentName:"a"},"cc13b54"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): fix swatches accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/306cb74d3e06390a9c15da9b8b29c9d3c8f0f6c5"},(0,n.kt)("inlineCode",{parentName:"a"},"306cb74"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): typography and colors fixes according to comments on PR ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ae20a7258cc88465fa0937895c2999952736f456"},(0,n.kt)("inlineCode",{parentName:"a"},"ae20a72"))),(0,n.kt)("li",{parentName:"ul"},"docs(colours): adjust logos heights ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/854d4fb761be7307e83e5dd2eb0fe5a0117727c5"},(0,n.kt)("inlineCode",{parentName:"a"},"854d4fb"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): merge designer and dev units ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/65c240eddbf20b3fc870d301b96837f49ad9caca"},(0,n.kt)("inlineCode",{parentName:"a"},"65c240e"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): readded extra font sizes, fixed fluid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4a5d892538a9713d14ac718b1bf2c771be09810"},(0,n.kt)("inlineCode",{parentName:"a"},"a4a5d89"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): changed em to percentages ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4176007ff4b421bc988b618488e0ba6b550f9fe"},(0,n.kt)("inlineCode",{parentName:"a"},"d417600"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): minors updates and instructions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/84ac8828e430b4af2b461534b4e2f81189080145"},(0,n.kt)("inlineCode",{parentName:"a"},"84ac882"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): blue-grey-6 adjustment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e7ab2d15d3a617bc5b3713897f3e3521d9e2720a"},(0,n.kt)("inlineCode",{parentName:"a"},"e7ab2d1"))),(0,n.kt)("li",{parentName:"ul"},"docs(colours): added active colour ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/574f7a95ea8a9510d03a104ad72fafafcae5d738"},(0,n.kt)("inlineCode",{parentName:"a"},"574f7a9"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): switch FISE logo to png ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/335471fd95bbd78cd7bd80b960272baa0a32e1c5"},(0,n.kt)("inlineCode",{parentName:"a"},"335471f"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): updated visited ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0248fd164cbf85168945797244977c305c67608d"},(0,n.kt)("inlineCode",{parentName:"a"},"0248fd1"))),(0,n.kt)("li",{parentName:"ul"},"docs(FISE): replaced logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f7d833127f769d79f099618b98789c6929b4ba08"},(0,n.kt)("inlineCode",{parentName:"a"},"f7d8331")))),(0,n.kt)("h4",{id:"\ufe0f-others-21"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"perf(docusaurus): added remixicon and roboto locally ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b67b1a72bc9cdc7c62a25967e81b430f8b62d558"},(0,n.kt)("inlineCode",{parentName:"a"},"b67b1a7"))),(0,n.kt)("li",{parentName:"ul"},"feature(Docusaurus): Updates on color palette information including thematic websites #231 from eea/refactor-docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ec7843dea07f626dc1c71ae1baa8bb5b0caa52f3"},(0,n.kt)("inlineCode",{parentName:"a"},"ec7843d"))),(0,n.kt)("li",{parentName:"ul"},"Upgrade Jenkinsfile storybook to yarn 3 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d20de8d6e21a14660b7b5125a80218a8a6f19e62"},(0,n.kt)("inlineCode",{parentName:"a"},"d20de8d"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/563fbc5fac0d4b0295690d0a3a4e04271753f18a"},(0,n.kt)("inlineCode",{parentName:"a"},"563fbc5")))),(0,n.kt)("h3",{id:"100-alpha4---2022-11-22"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.3...1.0.0-alpha.4"},"1.0.0-alpha.4")," - 2022-11-22"),(0,n.kt)("h4",{id:"-bug-fixes-17"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(cards-storybook): load slick carousel css for arrow and pagination styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1159b1beea0d7f7e026f1f1181fea91b7ac38ffa"},(0,n.kt)("inlineCode",{parentName:"a"},"1159b1b")))),(0,n.kt)("h4",{id:"-enhancements-22"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(cards): refactor cards theming implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4e454238d540ef306f4c1a4f8e9a94c7aa10189"},(0,n.kt)("inlineCode",{parentName:"a"},"d4e4542"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): allow rounded, inverted and theme parameter to be set by has classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4b4ad893fc5d39629b4e8d874327f31ea2e7d885"},(0,n.kt)("inlineCode",{parentName:"a"},"4b4ad89"))),(0,n.kt)("li",{parentName:"ul"},"change(card): expect has classes on the card directly ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6a9e38bcae0656685a99b47800d556813663d2ee"},(0,n.kt)("inlineCode",{parentName:"a"},"6a9e38b"))),(0,n.kt)("li",{parentName:"ul"},"change(utilities): added has text classes to the text alignment utilities ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e6974c634551fe0d19a9c9da269f5c6fbaefab7a"},(0,n.kt)("inlineCode",{parentName:"a"},"e6974c6"))),(0,n.kt)("li",{parentName:"ul"},"change(utilities): modified class name for text align using has naming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/579a0cbe0f704eb9305119fdd162f4f29c8086d5"},(0,n.kt)("inlineCode",{parentName:"a"},"579a0cb"))),(0,n.kt)("li",{parentName:"ul"},"change(theme): ensure that only direct children of container have a default top and bottom margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7f8b8dcc72827004d366e1c531311cf8734053fc"},(0,n.kt)("inlineCode",{parentName:"a"},"7f8b8dc"))),(0,n.kt)("li",{parentName:"ul"},"change(build): upgrade action to trigger workflow and wait to latest version ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c63ad3fdae7972bb2c722dea3d046861fa0ac086"},(0,n.kt)("inlineCode",{parentName:"a"},"c63ad3f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): theming implementation to allow has theming classes #265 from eea/card-refactoring ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24edc99d85c0c619fc763a8774a96f7208f529a5"},(0,n.kt)("inlineCode",{parentName:"a"},"24edc99"))),(0,n.kt)("li",{parentName:"ul"},"change(theme): add slick-carousel dependency ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2eec7d7233adf86b9c4f61670eb87d9754ff94c"},(0,n.kt)("inlineCode",{parentName:"a"},"f2eec7d")))),(0,n.kt)("h4",{id:"\ufe0f-others-22"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Update eea.github.io on all commits in develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3d0b8d745138bd2e0219560c8c895ce2c56dbf04"},(0,n.kt)("inlineCode",{parentName:"a"},"3d0b8d7"))),(0,n.kt)("li",{parentName:"ul"},"Exclude mockups from npm package ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/634af8e3ddabec36a18597d8d7638888269875fc"},(0,n.kt)("inlineCode",{parentName:"a"},"634af8e"))),(0,n.kt)("li",{parentName:"ul"},"fix rounded selector ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1fa15442f03d3f3d9ef59afa14075b061483cf3a"},(0,n.kt)("inlineCode",{parentName:"a"},"1fa1544"))),(0,n.kt)("li",{parentName:"ul"},"Trigger re-build ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3566dd2b4d2cd12496e05b792c85a78de550dd50"},(0,n.kt)("inlineCode",{parentName:"a"},"3566dd2"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea47f6f10097f23f635d98f0c5483bebf8378fc4"},(0,n.kt)("inlineCode",{parentName:"a"},"ea47f6f")))),(0,n.kt)("h3",{id:"100-alpha3---2022-11-16"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.2...1.0.0-alpha.3"},"1.0.0-alpha.3")," - 2022-11-16"),(0,n.kt)("h4",{id:"-new-features-16"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(Header): Add subsite section styling #263 from eea/subsite ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/00398b8a6c5d83241c30d0ba85d95c115edf2480"},(0,n.kt)("inlineCode",{parentName:"a"},"00398b8")))),(0,n.kt)("h4",{id:"-bug-fixes-18"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(search): position now changed by default to absolute from relative ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51b08fc217e25c1391a2bac0b42a8c3f7ae091c7"},(0,n.kt)("inlineCode",{parentName:"a"},"51b08fc"))),(0,n.kt)("li",{parentName:"ul"},"fix(megaMenu): remove paddings for buttons added by active class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ec33ebfe23a6064c88383ab465bd45edee2dba9b"},(0,n.kt)("inlineCode",{parentName:"a"},"ec33ebf")))),(0,n.kt)("h4",{id:"-enhancements-23"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(components): load overrides files for our defined semantic files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/adde7a9519f38fa779d8d038f3b6817281f0b4a2"},(0,n.kt)("inlineCode",{parentName:"a"},"adde7a9"))),(0,n.kt)("li",{parentName:"ul"},"change(container): fullwidth now take into account devices without hover ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5a35a65ce4928972027325bd01265db3f046f0e8"},(0,n.kt)("inlineCode",{parentName:"a"},"5a35a65"))),(0,n.kt)("li",{parentName:"ul"},"change(container): ensure only the top level elements behave like containers ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/98b85d1fb285919a8851454fa3007131b2a0ffc3"},(0,n.kt)("inlineCode",{parentName:"a"},"98b85d1"))),(0,n.kt)("li",{parentName:"ul"},"change(container): modified column-block grid to remove margin and padding when using full width class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/35c1cee7b3b35e7c361562ab7a430240f0117cc3"},(0,n.kt)("inlineCode",{parentName:"a"},"35c1cee"))),(0,n.kt)("li",{parentName:"ul"},"change(mega-menu): hide home link and accordion content from mobile menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1a691729b6d61c0daf46c5de035c1c55b0fda0d9"},(0,n.kt)("inlineCode",{parentName:"a"},"1a69172"))),(0,n.kt)("li",{parentName:"ul"},"change(container): width from min width 1280px to 1365px max width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/66e551e532da2cc5e9716e5179f943f172663be4"},(0,n.kt)("inlineCode",{parentName:"a"},"66e551e"))),(0,n.kt)("li",{parentName:"ul"},"change(container): removed app extras and view setting of layout sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6dc1ee602634df85140f6db75e41293b72eacf1"},(0,n.kt)("inlineCode",{parentName:"a"},"f6dc1ee"))),(0,n.kt)("li",{parentName:"ul"},"change(views): customized DefaultView to pass class into page-document area ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91123aad429f4bb086110b4997e43e9809a97581"},(0,n.kt)("inlineCode",{parentName:"a"},"91123aa"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): desktop - use buttons for menu section titles and readjust content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb9315f2b999193b7b64cec27c49fc8dda306899"},(0,n.kt)("inlineCode",{parentName:"a"},"cb9315f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): add nav_title and nav_description attributes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0d7a5686daab2ecec87d78728437d8f994606448"},(0,n.kt)("inlineCode",{parentName:"a"},"0d7a568"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): style sub-title and nav-description ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b2a48fd3588ffdc75f61f0b8d52284d13edf2d92"},(0,n.kt)("inlineCode",{parentName:"a"},"b2a48fd"))),(0,n.kt)("li",{parentName:"ul"},"refactor(sidemenu): add third level list and items & update active indication ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2d87da9fddca2b867f3d065a007c0b921587a61"},(0,n.kt)("inlineCode",{parentName:"a"},"e2d87da"))),(0,n.kt)("li",{parentName:"ul"},"change(columns): implement narrow, container and wide width classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9696b5457e50ba3186406a584da16f5248c14439"},(0,n.kt)("inlineCode",{parentName:"a"},"9696b54"))),(0,n.kt)("li",{parentName:"ul"},"change(container): story to add classes that modify the max width of the containers ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/37948f89ee797738bd8bbb0023bc5dca018d7331"},(0,n.kt)("inlineCode",{parentName:"a"},"37948f8"))),(0,n.kt)("li",{parentName:"ul"},"change(container): affect only left and right margin of containers ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/183265b7dd8d20359b6c3956ea05b62df6e70f75"},(0,n.kt)("inlineCode",{parentName:"a"},"183265b"))),(0,n.kt)("li",{parentName:"ul"},"change(containers): modified class names after layout checks ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1dc3689509001031f0afd30422f517de5316e47a"},(0,n.kt)("inlineCode",{parentName:"a"},"1dc3689"))),(0,n.kt)("li",{parentName:"ul"},"refactor(sidemenu): add is_in_path and is_current attributes for an active example ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a3fe7fd8da93db0a065d4408ce154c9d8c26b568"},(0,n.kt)("inlineCode",{parentName:"a"},"a3fe7fd"))),(0,n.kt)("li",{parentName:"ul"},"change(container): story to avoid adding containerwidth property to container div ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c13d83cdbc8741bf4075cdfcd884f39f3f71d73c"},(0,n.kt)("inlineCode",{parentName:"a"},"c13d83c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): mobile - use buttons for menu section titles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7b632fd29a8ac815d2e590509baa51f1279e659"},(0,n.kt)("inlineCode",{parentName:"a"},"a7b632f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): update padding variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5f25838ba9ec367a58c98c929921ebf09cd8ad8"},(0,n.kt)("inlineCode",{parentName:"a"},"c5f2583"))),(0,n.kt)("li",{parentName:"ul"},"change(views): moved narrow style bellow the default container width styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/72fa58dce9ea03a1e4f409a9f9aab21b01efbfc8"},(0,n.kt)("inlineCode",{parentName:"a"},"72fa58d"))),(0,n.kt)("li",{parentName:"ul"},"change(listing): removed container from default view page-document area ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/69f3d8f422e3cb95e89937929aaef48b5569bcdf"},(0,n.kt)("inlineCode",{parentName:"a"},"69f3d8f"))),(0,n.kt)("li",{parentName:"ul"},"change(views): rename classes names to width_view and added app extras layout component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/745b7720839754d1e248795cb1263f8c02f5f3c2"},(0,n.kt)("inlineCode",{parentName:"a"},"745b772"))),(0,n.kt)("li",{parentName:"ul"},"change(container): use important flag for left and right margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a49c83abe9a045d28118a680558de5416a0516a3"},(0,n.kt)("inlineCode",{parentName:"a"},"a49c83a"))),(0,n.kt)("li",{parentName:"ul"},"change(container): add variables for edit and add section of containers ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2e2c335dc82c120d15d4c536c400ae742f68fe7"},(0,n.kt)("inlineCode",{parentName:"a"},"f2e2c33"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): update sub-title paddings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/992f919bb5155c8e6fc169e43adf00dcae41f400"},(0,n.kt)("inlineCode",{parentName:"a"},"992f919"))),(0,n.kt)("li",{parentName:"ul"},"change(site): add a 1rem margin top and bottom on all styled classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dabf6c1162fe23cef61a2053eefd7e687f649a56"},(0,n.kt)("inlineCode",{parentName:"a"},"dabf6c1"))),(0,n.kt)("li",{parentName:"ul"},"change(homepage): removed hiding of staging banner from homepage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ba2cd7fc17cdf1bf58381aa58e05acad0ac77ba"},(0,n.kt)("inlineCode",{parentName:"a"},"4ba2cd7"))),(0,n.kt)("li",{parentName:"ul"},"change(container): unset values of page-document on 1200+ browser width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dd5bea37d414e2a8689eaf6cc99c7b3a3d4b0e08"},(0,n.kt)("inlineCode",{parentName:"a"},"dd5bea3"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): set children to be appended to the right of the menu title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b69c23a20ef2ded1f0382650ff8e85d1bead6941"},(0,n.kt)("inlineCode",{parentName:"a"},"b69c23a"))),(0,n.kt)("li",{parentName:"ul"},"change(theme): modified wide width to point to 1320px as it's perfectly divisible by 4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f825737d6dafd595024bb4537eab624a47a9ad0"},(0,n.kt)("inlineCode",{parentName:"a"},"8f82573"))),(0,n.kt)("li",{parentName:"ul"},"change(theme): modified wide width to point to 1368px as it's perfectly divisible by 4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2349fee36ee72783665a0b101d684389f1fdf834"},(0,n.kt)("inlineCode",{parentName:"a"},"2349fee"))),(0,n.kt)("li",{parentName:"ul"},"change(container): renamed content-text-width to container-text-width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6f788c282348292dd4b5deb47ffe83ca4573e5c8"},(0,n.kt)("inlineCode",{parentName:"a"},"6f788c2"))),(0,n.kt)("li",{parentName:"ul"},"change(listing): provide ui container fallback if no class is passed to default view ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af9e94ded1e301f4c811749badbcc1f59e6d0de5"},(0,n.kt)("inlineCode",{parentName:"a"},"af9e94d"))),(0,n.kt)("li",{parentName:"ul"},"change(narrow-view): re-added container class to page-document ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/56b44a6e09d45f96c106dc471bb2e1cde58ef10f"},(0,n.kt)("inlineCode",{parentName:"a"},"56b44a6"))),(0,n.kt)("li",{parentName:"ul"},"change(view): set container width for view-viewview class as well ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/29dc324319d6dc2450dd0e906c1b4c93fd65ed56"},(0,n.kt)("inlineCode",{parentName:"a"},"29dc324")))),(0,n.kt)("h4",{id:"-internal-changes-9"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style: load header/footer overrides ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e5b5e0fc00c61d81f45c12f119bd2f06a91b1b5c"},(0,n.kt)("inlineCode",{parentName:"a"},"e5b5e0f"))),(0,n.kt)("li",{parentName:"ul"},"style(megaMenu): restore item description color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8a19bbb4866cdeb31d87b782587c499e621055b7"},(0,n.kt)("inlineCode",{parentName:"a"},"8a19bbb"))),(0,n.kt)("li",{parentName:"ul"},"style(megaMenu): restore accordion content bottom padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8e0c5a79f06247d353511b412b0122c6f614f5ec"},(0,n.kt)("inlineCode",{parentName:"a"},"8e0c5a7")))),(0,n.kt)("h4",{id:"\ufe0f-others-23"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Add subsite styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e79c0ed7931d6287dbeb3bab1e9155b8707481a3"},(0,n.kt)("inlineCode",{parentName:"a"},"e79c0ed"))),(0,n.kt)("li",{parentName:"ul"},"WIP settings column grid width when using full size class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/affc7ac99527aa92d5a192d90dc8c9ec46a66404"},(0,n.kt)("inlineCode",{parentName:"a"},"affc7ac"))),(0,n.kt)("li",{parentName:"ul"},"code cleanup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2cdc3e590b6d36865f16890c45ce56d32963e1d0"},(0,n.kt)("inlineCode",{parentName:"a"},"2cdc3e5"))),(0,n.kt)("li",{parentName:"ul"},"fix eslint ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/30c52e4eb443555ca44c1b35df064e73d52c0a8b"},(0,n.kt)("inlineCode",{parentName:"a"},"30c52e4"))),(0,n.kt)("li",{parentName:"ul"},"test(estlint): Fix .project.eslintrc.js ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aaeaa07b27491551daba29bbfdd7cab4a54b6bec"},(0,n.kt)("inlineCode",{parentName:"a"},"aaeaa07"))),(0,n.kt)("li",{parentName:"ul"},"modified left value of full width classes with toolbars ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70d82d47fbc2c00a3a709de0d5c087c8443a1eae"},(0,n.kt)("inlineCode",{parentName:"a"},"70d82d4"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-alpha.3 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8fc86a7d0bf4ad06ab339b3066ff56ea61d48878"},(0,n.kt)("inlineCode",{parentName:"a"},"8fc86a7"))),(0,n.kt)("li",{parentName:"ul"},"feature(content): added NarrowView useful for modifying the containers from content-area ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d937df7c262e8d8cc6e78eebec736e28263fc657"},(0,n.kt)("inlineCode",{parentName:"a"},"d937df7"))),(0,n.kt)("li",{parentName:"ul"},"jslint fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/98461593605344d0b6d8cba81f91d1cafc2653cd"},(0,n.kt)("inlineCode",{parentName:"a"},"9846159"))),(0,n.kt)("li",{parentName:"ul"},"Feature(container): flexible container size #260 from eea/feature-flexible-container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f84c5b67afe9cbe01b2a44a8f92a9a554e1036a"},(0,n.kt)("inlineCode",{parentName:"a"},"8f84c5b"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using circularity-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/76a41c786995fd54afe4d1c345de939f683ffa70"},(0,n.kt)("inlineCode",{parentName:"a"},"76a41c7"))),(0,n.kt)("li",{parentName:"ul"},"fix broken variable call for contentBox.variables introduced in previous commit by mistake ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d249c1160d19bedb174a2fde3fdab48d9ce297d4"},(0,n.kt)("inlineCode",{parentName:"a"},"d249c11"))),(0,n.kt)("li",{parentName:"ul"},"clean up ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/89f3cb33d70a14806a953f0acd1807e94169ee5c"},(0,n.kt)("inlineCode",{parentName:"a"},"89f3cb3"))),(0,n.kt)("li",{parentName:"ul"},"removed console log from code ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fad86ae581dd81d0c29fc03d8528e57cadadd3fb"},(0,n.kt)("inlineCode",{parentName:"a"},"fad86ae")))),(0,n.kt)("h3",{id:"100-alpha2---2022-10-28"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.1...1.0.0-alpha.2"},"1.0.0-alpha.2")," - 2022-10-28"),(0,n.kt)("h4",{id:"-enhancements-24"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(documentation): grammarly proof-read suggestions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f609be3758673b0d479d99baee69e7238a5b7f9"},(0,n.kt)("inlineCode",{parentName:"a"},"9f609be"))),(0,n.kt)("li",{parentName:"ul"},"refactor(volto-slate): Upgrade to @plone/volto-slate - refs #153447 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/853d9d189dd17859e3999fbf53507df7083eefb4"},(0,n.kt)("inlineCode",{parentName:"a"},"853d9d1")))),(0,n.kt)("h4",{id:"-internal-changes-10"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(docs): Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e33113a0541d082d93f61c7494bcce2ac5f79a8c"},(0,n.kt)("inlineCode",{parentName:"a"},"e33113a")))),(0,n.kt)("h4",{id:"\ufe0f-others-24"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"test(cypress): Upgrade to Cypress 10 / Razzle 4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c1c1f4b280945a9f0b77eb0b59de003c1360bac9"},(0,n.kt)("inlineCode",{parentName:"a"},"c1c1f4b"))),(0,n.kt)("li",{parentName:"ul"},"more explanations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a8b22728659125ba6ea6fb41f29571a8f1b9953b"},(0,n.kt)("inlineCode",{parentName:"a"},"a8b2272"))),(0,n.kt)("li",{parentName:"ul"},"add announcement bar, showing that EEA DS is WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e14aeac02cf922493aff4f83c8d80af95cc63eb9"},(0,n.kt)("inlineCode",{parentName:"a"},"e14aeac"))),(0,n.kt)("li",{parentName:"ul"},"Update dependencies ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee30a2bad3769163d3ab4d996c0a7be8fcb4bc6e"},(0,n.kt)("inlineCode",{parentName:"a"},"ee30a2b")))),(0,n.kt)("h3",{id:"100-alpha1---2022-10-20"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.6...1.0.0-alpha.1"},"1.0.0-alpha.1")," - 2022-10-20"),(0,n.kt)("h4",{id:"-enhancements-25"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update svg and tablet contact link sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6aba061a5d37e84da706e94a2ce1140ffca81d43"},(0,n.kt)("inlineCode",{parentName:"a"},"6aba061"))),(0,n.kt)("li",{parentName:"ul"},"change(blockquote): renamed to Callout reflecting the correct naming from Storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/61a518c84f08b03d29b99aafce3d9108ae56b3a7"},(0,n.kt)("inlineCode",{parentName:"a"},"61a518c"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): Shadow removed from logo & tablet updates #252 from eea/fix-footer ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6df783d6571cb1b477202bf1d503763d98db66bf"},(0,n.kt)("inlineCode",{parentName:"a"},"6df783d"))),(0,n.kt)("li",{parentName:"ul"},"change(colors): updated theme classes for text to use css variable colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb089fd9a40b67430e0d4efaa2cb51902a46de4f"},(0,n.kt)("inlineCode",{parentName:"a"},"cb089fd")))),(0,n.kt)("h4",{id:"-internal-changes-11"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(footer): reduce social icons margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6a9cf7a6da4a46d9b85a63fbdfc8d421ae4c0d8"},(0,n.kt)("inlineCode",{parentName:"a"},"f6a9cf7")))),(0,n.kt)("h4",{id:"-documentation-changes-9"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(alpha): Update included components in 1.0 alpha version - refs #154387 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fcc5af9bb9163d158ccd6ce452d7f80ac26f7ac0"},(0,n.kt)("inlineCode",{parentName:"a"},"fcc5af9"))),(0,n.kt)("li",{parentName:"ul"},"docs(callout): Rename Blockqoute to Callout in docusaurus - refs #154387 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8d733ac7b00273581575ceddd1a4480ba67fa498"},(0,n.kt)("inlineCode",{parentName:"a"},"8d733ac")))),(0,n.kt)("h4",{id:"\ufe0f-others-25"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-alpha.1 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70e4d97c6a2b13f3b98efe1e2ba93174be2df476"},(0,n.kt)("inlineCode",{parentName:"a"},"70e4d97")))),(0,n.kt)("h3",{id:"096---2022-12-16"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.5...0.9.6"},"0.9.6")," - 2022-12-16"),(0,n.kt)("h4",{id:"\ufe0f-others-26"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Release 0.9.6 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ae19b837678ef5a6a26ebe7c69577e446b13ed50"},(0,n.kt)("inlineCode",{parentName:"a"},"ae19b83"))),(0,n.kt)("li",{parentName:"ul"},"feature(copyright): image information #250 from eea/feature-copyright ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7b323ed27e15f9b4265618099089526c97aa89a1"},(0,n.kt)("inlineCode",{parentName:"a"},"7b323ed"))),(0,n.kt)("li",{parentName:"ul"},"Release-it ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f5671de5a36a721f86a2f8ae4077fd2e0ffafb5"},(0,n.kt)("inlineCode",{parentName:"a"},"1f5671d")))),(0,n.kt)("h3",{id:"095---2022-10-20"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.4...0.9.5"},"0.9.5")," - 2022-10-20"),(0,n.kt)("h4",{id:"-bug-fixes-19"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(statistic): margin and slate colors when using the inverted options ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f263dea1940594ad00b3548c8640ca378fee5563"},(0,n.kt)("inlineCode",{parentName:"a"},"f263dea")))),(0,n.kt)("h3",{id:"094---2022-10-19"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.3...0.9.4"},"0.9.4")," - 2022-10-19"),(0,n.kt)("h4",{id:"-bug-fixes-20"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(edit-interface): block chooser and power user menu item colors when inside content-box ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7aee4f1619a0d798b5fd8d90844a780c25aca019"},(0,n.kt)("inlineCode",{parentName:"a"},"7aee4f1"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): hero text going over the logo and menu on mobile resolutions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1434508f5995d4316dfb2fd18fdc7926a4ece6ee"},(0,n.kt)("inlineCode",{parentName:"a"},"1434508"))),(0,n.kt)("li",{parentName:"ul"},"fix(content-box): z-index of box-inner and added underline to slate links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c8b7c7e41df39e1bf6377401a7aad4220287d454"},(0,n.kt)("inlineCode",{parentName:"a"},"c8b7c7e"))),(0,n.kt)("li",{parentName:"ul"},"fix(content-box): adding of underline to links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c2f5f0f45963e48342edb0046d84b945ffe4b6a8"},(0,n.kt)("inlineCode",{parentName:"a"},"c2f5f0f")))),(0,n.kt)("h4",{id:"-enhancements-26"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(banner,colors): content box theme aware colors banner changes#254 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bcb9a8cde0cb0f927a68c0872e590e5ab853f824"},(0,n.kt)("inlineCode",{parentName:"a"},"bcb9a8c"))),(0,n.kt)("li",{parentName:"ul"},"change(Banner): Add subtitle subcomponent ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bb67f4c83a2ff0e17958116fc4a52a426ba64a70"},(0,n.kt)("inlineCode",{parentName:"a"},"bb67f4c"))),(0,n.kt)("li",{parentName:"ul"},"change(item): moved svg filter definitions to item.overrides ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/de703661065648968903bb6b46efc13d19c51d2b"},(0,n.kt)("inlineCode",{parentName:"a"},"de70366"))),(0,n.kt)("li",{parentName:"ul"},"change(accordion): accordion titles with themes colors can now be modified by css variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2ac13ea56a74b2f7a22abc274bc94c770fbe3a2"},(0,n.kt)("inlineCode",{parentName:"a"},"e2ac13e"))),(0,n.kt)("li",{parentName:"ul"},"change(colors): in lists and callouts to allow color changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/940d1b8ed815b1a38f78d7602f0b221b48fe21f9"},(0,n.kt)("inlineCode",{parentName:"a"},"940d1b8"))),(0,n.kt)("li",{parentName:"ul"},"change(colors): added backgroundColorSupplementary color variable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f5262af2b90d2ffd9dd5560232f3bf47bcc85e3"},(0,n.kt)("inlineCode",{parentName:"a"},"1f5262a"))),(0,n.kt)("li",{parentName:"ul"},"change(list,bullet): color is no longer primary instead it's text color css variant ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8c046704871c7202406ff71b280a8a34e195e54d"},(0,n.kt)("inlineCode",{parentName:"a"},"8c04670"))),(0,n.kt)("li",{parentName:"ul"},"change(statistics): use theme colors with css variable for easy color customization ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fb72a012e81eba73fbace58317a52b5cdda31ee5"},(0,n.kt)("inlineCode",{parentName:"a"},"fb72a01"))),(0,n.kt)("li",{parentName:"ul"},"change(Banner): Show label in metadata field ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1acda3c53739b610b501a53baf10226769929d2d"},(0,n.kt)("inlineCode",{parentName:"a"},"1acda3c"))),(0,n.kt)("li",{parentName:"ul"},"change(tags, items): use text color with css variable for content color for easy customization ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6660e2e49c6e732a13283ad7c922c5a5091bffc1"},(0,n.kt)("inlineCode",{parentName:"a"},"6660e2e"))),(0,n.kt)("li",{parentName:"ul"},"change(styling): modified naming of theme css variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a332961e1c4d55cdee3a8bcdf652f53cf03e251b"},(0,n.kt)("inlineCode",{parentName:"a"},"a332961"))),(0,n.kt)("li",{parentName:"ul"},"change(colors): added backgroundColor color variable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b7e68311f77a724c49a3cf858a76239ca5f6876c"},(0,n.kt)("inlineCode",{parentName:"a"},"b7e6831"))),(0,n.kt)("li",{parentName:"ul"},"change(quote): use secondary css var for easier color replacement ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7a3231228c2eb9b420cc7b59a4a07fba96643e5e"},(0,n.kt)("inlineCode",{parentName:"a"},"7a32312"))),(0,n.kt)("li",{parentName:"ul"},"change(statistics): tweaked margin of statistics so that they don't overflow over context boxes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4a8e33dfaa716f38ac9ce5448d400c74ef9ba62"},(0,n.kt)("inlineCode",{parentName:"a"},"b4a8e33"))),(0,n.kt)("li",{parentName:"ul"},"change(accordion): allow customization of accordion title background color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6590baf1716867eabe897e765ae1924122ba2333"},(0,n.kt)("inlineCode",{parentName:"a"},"6590baf"))),(0,n.kt)("li",{parentName:"ul"},"change(colors): introduced css variables for primary colors #247 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac8082590f978ab953ece70082e06b124c292ddf"},(0,n.kt)("inlineCode",{parentName:"a"},"ac80825"))),(0,n.kt)("li",{parentName:"ul"},"change(content-box): override primary text color to white as well ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/28b43c72b9fcfeb153ac7e734bbbca67f2e42111"},(0,n.kt)("inlineCode",{parentName:"a"},"28b43c7")))),(0,n.kt)("h4",{id:"\ufe0f-others-27"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Include changes in the storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4d9fa4c631a6a1ec0d7d525721fd32c5ff01d9c"},(0,n.kt)("inlineCode",{parentName:"a"},"a4d9fa4")))),(0,n.kt)("h3",{id:"093---2022-10-04"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.2...0.9.3"},"0.9.3")," - 2022-10-04"),(0,n.kt)("h4",{id:"-bug-fixes-21"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(card, contentBox): meta font size, removed header override of cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7f94b9ca8c65a887ced5c4812563a2226fca869"},(0,n.kt)("inlineCode",{parentName:"a"},"a7f94b9"))),(0,n.kt)("li",{parentName:"ul"},"fix(List): Ordered list item story - refs #155248 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c70a2bceecf4ce9497cbe0e9cdb30944fff2287d"},(0,n.kt)("inlineCode",{parentName:"a"},"c70a2bc"))),(0,n.kt)("li",{parentName:"ul"},"fix(OrderedList): li third level margin left - refs #155248 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fba5cb9d3897d2827951cd218405b1ae7c8e818a"},(0,n.kt)("inlineCode",{parentName:"a"},"fba5cb9"))),(0,n.kt)("li",{parentName:"ul"},"fix(cards): inherit color of card description ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ceda79971663785c81292b85ae07b7f9f922213c"},(0,n.kt)("inlineCode",{parentName:"a"},"ceda799"))),(0,n.kt)("li",{parentName:"ul"},"fix(accordion): Fix content default padding - refs #153783 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/566adf7a53c48fb24044eeba1d159d5ce715ecc6"},(0,n.kt)("inlineCode",{parentName:"a"},"566adf7")))),(0,n.kt)("h4",{id:"-enhancements-27"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(site): committed fixed from custom into eea design package ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9b9a1fd3648796a502ca4eb3abd08b61b33bdff2"},(0,n.kt)("inlineCode",{parentName:"a"},"9b9a1fd"))),(0,n.kt)("li",{parentName:"ul"},"change(jenkins): added yarn policy for storybook building ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3d1b844efeea40b99c00c9aa97089e0a0be58a57"},(0,n.kt)("inlineCode",{parentName:"a"},"3d1b844"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): typography updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/60a93a4aece4e478ae13c2dfe697fd3703aa178a"},(0,n.kt)("inlineCode",{parentName:"a"},"60a93a4"))),(0,n.kt)("li",{parentName:"ul"},"change(item): added item image coloring when applying theming classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0403fe4974f37a46ec7418d9b8492ad74d7c5688"},(0,n.kt)("inlineCode",{parentName:"a"},"0403fe4"))),(0,n.kt)("li",{parentName:"ul"},"change(accordion, site): change text color to tertiary instead of black ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/464105842508a62216aa0a3f28e9565af1b93232"},(0,n.kt)("inlineCode",{parentName:"a"},"4641058"))),(0,n.kt)("li",{parentName:"ul"},"change(accordion): allow customization of accordion title with css variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/15e7d27f02c640df582f51a51ef36e645723f842"},(0,n.kt)("inlineCode",{parentName:"a"},"15e7d27"))),(0,n.kt)("li",{parentName:"ul"},"change(content-box): added css variables that will set text color and background for children ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/86cac531cc94386b6022e1be80dba826b39f2443"},(0,n.kt)("inlineCode",{parentName:"a"},"86cac53"))),(0,n.kt)("li",{parentName:"ul"},"change(tabs): allow customization of tab active and hover color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4370f4270dcaa29b1193fc2347567b748f6d5d82"},(0,n.kt)("inlineCode",{parentName:"a"},"4370f42"))),(0,n.kt)("li",{parentName:"ul"},"change(tabs): color for tabs-block section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6778c923618e725194120d7f35e2ee7d66e1be8e"},(0,n.kt)("inlineCode",{parentName:"a"},"6778c92"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): by default date is set to appear on the right of the meta section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b7b80e86b69a0179f1e48748bef909bbd2a98d58"},(0,n.kt)("inlineCode",{parentName:"a"},"b7b80e8"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): carousel dots are now relative positioned ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/daa40a4ab6532497830d5f7536bf0a7f20d9cd00"},(0,n.kt)("inlineCode",{parentName:"a"},"daa40a4")))),(0,n.kt)("h4",{id:"-documentation-changes-10"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(typography): update, local fonts ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/39a32d9aa4dec21c0e7df32aa5798432fc6bd403"},(0,n.kt)("inlineCode",{parentName:"a"},"39a32d9"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): token fix to match used values for heightheight and letterspacing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91693ecd2dd367cd83fa2752756557d463e214a7"},(0,n.kt)("inlineCode",{parentName:"a"},"91693ec"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): token fix to match used values for lineheight ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff41b56b4365a3e70ac20e548c7c74671e7c584c"},(0,n.kt)("inlineCode",{parentName:"a"},"ff41b56"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): remove semibold ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6eb3e0856f01aacf6d294f68e7d845f74f752685"},(0,n.kt)("inlineCode",{parentName:"a"},"6eb3e08")))),(0,n.kt)("h4",{id:"\ufe0f-others-28"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"test(cypress): Fix md5 dependency ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/17f618e7c5eef01759494e787a8c9cb96449fbca"},(0,n.kt)("inlineCode",{parentName:"a"},"17f618e")))),(0,n.kt)("h3",{id:"092---2022-09-27"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.1...0.9.2"},"0.9.2")," - 2022-09-27"),(0,n.kt)("h3",{id:"091---2022-09-27"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.0...0.9.1"},"0.9.1")," - 2022-09-27"),(0,n.kt)("h4",{id:"-enhancements-28"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(cards): added ability to change the text alignment using css variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ed532ac20c82a6933c4f12613c80ce92eec78405"},(0,n.kt)("inlineCode",{parentName:"a"},"ed532ac"))),(0,n.kt)("li",{parentName:"ul"},"change(styles): use flex-end values only instead of end to avoid babel warning ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24244b22ea69b9f4dc3006597c7836f814b74cf2"},(0,n.kt)("inlineCode",{parentName:"a"},"24244b2"))),(0,n.kt)("li",{parentName:"ul"},"change(rounded): image size, border radius to ensure more image are turned into rounded options ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51e23c1bb38f277b2bfbad5d814925eb61d17668"},(0,n.kt)("inlineCode",{parentName:"a"},"51e23c1")))),(0,n.kt)("h4",{id:"\ufe0f-others-29"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Merge pull request #243 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/576564ce395ee6ac9e74bcb19d5c4f0b4cd3c33b"},(0,n.kt)("inlineCode",{parentName:"a"},"576564c"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using eea-website-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a5be6eec78dae230626e61ea2c77e7f3c62510d"},(0,n.kt)("inlineCode",{parentName:"a"},"4a5be6e"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b251255a7ed14d8290717726d86eaf54b87aa2d4"},(0,n.kt)("inlineCode",{parentName:"a"},"b251255")))),(0,n.kt)("h3",{id:"090---2022-09-19"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.8.1...0.9.0"},"0.9.0")," - 2022-09-19"),(0,n.kt)("h4",{id:"-new-features-17"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(countUp): intall countup package and import it in statistics ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/10ba7cf2975ffc33cc8e6965998b7ab7ec58b1ab"},(0,n.kt)("inlineCode",{parentName:"a"},"10ba7cf"))),(0,n.kt)("li",{parentName:"ul"},"feat(docusaurus): custom editUrl function for the components usage pages - taskman refs #154076 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93c4240f269d72e4e353665dacd57d079a31afac"},(0,n.kt)("inlineCode",{parentName:"a"},"93c4240"))),(0,n.kt)("li",{parentName:"ul"},"feat(site): Styling scroll-to-text fragments #238 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1883fcf4e80055f68bdff4d66fc6db3ccad4614a"},(0,n.kt)("inlineCode",{parentName:"a"},"1883fcf"))),(0,n.kt)("li",{parentName:"ul"},"feat(docusaurus): added Edit this page link in footer of each page - taskman refs #154076 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2cf8746e42631ea2e214223e208bdbfb76ffafa7"},(0,n.kt)("inlineCode",{parentName:"a"},"2cf8746")))),(0,n.kt)("h4",{id:"-bug-fixes-22"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(header): Prevent dropdown closing when clicking inside content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/838f34006260ce7c331fd933a595e95d78e1a927"},(0,n.kt)("inlineCode",{parentName:"a"},"838f340"))),(0,n.kt)("li",{parentName:"ul"},"fix(cards): position of bullets and arrow clicking on events page 148723 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/22ef8282247401b0f8cf5a44f2e65f0b469cc6fa"},(0,n.kt)("inlineCode",{parentName:"a"},"22ef828"))),(0,n.kt)("li",{parentName:"ul"},"fix(cards): rounded images show up now even when card parent is cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48f5e81a5b76168435537d92aec35ab3a184b4d2"},(0,n.kt)("inlineCode",{parentName:"a"},"48f5e81"))),(0,n.kt)("li",{parentName:"ul"},"fix(statistic): add a min-width to content so unwrapped statistics don't break ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7c5d511c35d50f3afabf77f14b27e5760c49051f"},(0,n.kt)("inlineCode",{parentName:"a"},"7c5d511"))),(0,n.kt)("li",{parentName:"ul"},"fix(sideNavigation): add role list to list item ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/58f322b732c995349ba588db3bac6a1ffea40f89"},(0,n.kt)("inlineCode",{parentName:"a"},"58f322b"))),(0,n.kt)("li",{parentName:"ul"},"fix(sideNavigation): remove unused useState import ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f9ea6779d2c584203b77f11b3127f39aba7799f3"},(0,n.kt)("inlineCode",{parentName:"a"},"f9ea677")))),(0,n.kt)("h4",{id:"-enhancements-29"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(sideNavigation): implement the design to the initial navigation & make component dynamic ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b673d63a45e56e1d05354d8675c01b15ec9543f5"},(0,n.kt)("inlineCode",{parentName:"a"},"b673d63"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update top bar ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/626bdd5805bde1e97b91d83dae7adc1d39c62234"},(0,n.kt)("inlineCode",{parentName:"a"},"626bdd5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): create custom export and add links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f9ed560a68d261e9e6a9b6fa3c44944a252e596"},(0,n.kt)("inlineCode",{parentName:"a"},"9f9ed56"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): update inverted style and add background variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7578dc6a408094fbc215218b3ffe21a878841568"},(0,n.kt)("inlineCode",{parentName:"a"},"7578dc6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): remove horizontal display on mobiles & update columns control ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/58f00e12851c4a1af1bb200d0577d76f6222df3c"},(0,n.kt)("inlineCode",{parentName:"a"},"58f00e1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): minor fixes spotted in testing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0f0f3aba7ea282c4ecc4f602f9ff3144c04e2146"},(0,n.kt)("inlineCode",{parentName:"a"},"0f0f3ab"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update main section heights ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d669f012f1b831952dbb73b7d40134b1243ba7e4"},(0,n.kt)("inlineCode",{parentName:"a"},"d669f01"))),(0,n.kt)("li",{parentName:"ul"},"refactor(sideNavigation): remove green border and divider ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/939cd9bf2a9a7338fd770550a8396586c5f610b3"},(0,n.kt)("inlineCode",{parentName:"a"},"939cd9b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(link): update colors for link states ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e9f59950838f9119131797550945963c2965dcf"},(0,n.kt)("inlineCode",{parentName:"a"},"3e9f599"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): styles img tag outside of .image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee892745a4748da12007ba5cedab16c1810c1dd9"},(0,n.kt)("inlineCode",{parentName:"a"},"ee89274"))),(0,n.kt)("li",{parentName:"ul"},"refactor(sideNavigation): update controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a3e8430d88ee52fd92f4f8c2d6f5e01ea82dd9eb"},(0,n.kt)("inlineCode",{parentName:"a"},"a3e8430"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): fix firefox issue for fit content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87aa113667ea53d83d479cd52347e7298e60e9b0"},(0,n.kt)("inlineCode",{parentName:"a"},"87aa113"))),(0,n.kt)("li",{parentName:"ul"},"change(statistics): rearrange controls order ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b19ae70568f18873732ff62ee82251c9256a214d"},(0,n.kt)("inlineCode",{parentName:"a"},"b19ae70"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): add max width to wrap text for all content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/758f8ce09f78a6343ac0226e5d332c0216dea95b"},(0,n.kt)("inlineCode",{parentName:"a"},"758f8ce"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): add max width to label so it wraps the text ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/824a12702f133485a1c254e267d9e75c1b22048c"},(0,n.kt)("inlineCode",{parentName:"a"},"824a127"))),(0,n.kt)("li",{parentName:"ul"},"change(Side menu & in page navigation): styling according to figma design #221 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b2df858a2dc88f61d686ad0991e711dc763f4cc6"},(0,n.kt)("inlineCode",{parentName:"a"},"b2df858"))),(0,n.kt)("li",{parentName:"ul"},"change(header): align header with latest figma changes #232 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/135cd68307c6ebdc5d48b361d1696457c6f99b4c"},(0,n.kt)("inlineCode",{parentName:"a"},"135cd68"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): integration when cards also contain call to action buttons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f0d876616b211c79dde5b18c1fe862ff019073a1"},(0,n.kt)("inlineCode",{parentName:"a"},"f0d8766"))),(0,n.kt)("li",{parentName:"ul"},"refactor(iconography): icon group headings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b9ccd8031049d6b91c5676930ea3e44d9587435d"},(0,n.kt)("inlineCode",{parentName:"a"},"b9ccd80"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add variables for some sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8eae84ef665d7b3331090a8a8ac6b714ecdacbb3"},(0,n.kt)("inlineCode",{parentName:"a"},"8eae84e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Statisctic): Rename slateVariation to extraVariation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a07c5896c8c4b8f3179622f335e3f02e68dadfbd"},(0,n.kt)("inlineCode",{parentName:"a"},"a07c589"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): started example on how to add headings for iconography ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53cf8431446954eee6c5d27be31e15c075ffe16d"},(0,n.kt)("inlineCode",{parentName:"a"},"53cf843"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): remove center alignment of rounded cards body area, only the image is now centered ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fdfac4876903272b437c7dcf0e65f7cfe66bbf66"},(0,n.kt)("inlineCode",{parentName:"a"},"fdfac48"))),(0,n.kt)("li",{parentName:"ul"},"change(color): updated link colors #234 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/feabfe7a3b6d6b89bfd4065a32bae8148ddc5a4c"},(0,n.kt)("inlineCode",{parentName:"a"},"feabfe7"))),(0,n.kt)("li",{parentName:"ul"},"change(mockup): Access to figma style tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0bb25bec495f9046a15924ee92f4f17152148ba8"},(0,n.kt)("inlineCode",{parentName:"a"},"0bb25be"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): update margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5190f56e134d672ccb9d5d1a8efacac4d41530d3"},(0,n.kt)("inlineCode",{parentName:"a"},"5190f56"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button): adjust vertical margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/db6d44102171738907b4b03fcc5f526463f59389"},(0,n.kt)("inlineCode",{parentName:"a"},"db6d441")))),(0,n.kt)("h4",{id:"-internal-changes-12"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(statistic): update decimal point ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7976aa4cac4c56e70e196eb62791a2b3f2aba749"},(0,n.kt)("inlineCode",{parentName:"a"},"7976aa4"))),(0,n.kt)("li",{parentName:"ul"},"style(link): update visited link color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d3b18b305bb2bd2f20bb2509584a6bc86b0e252c"},(0,n.kt)("inlineCode",{parentName:"a"},"d3b18b3")))),(0,n.kt)("h4",{id:"-documentation-changes-11"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(iconography): added icons, guidelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0073f1d42600be1d14bff406083b112014a2061f"},(0,n.kt)("inlineCode",{parentName:"a"},"0073f1d")))),(0,n.kt)("h4",{id:"\ufe0f-others-30"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Delete 2-test-new-page.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/749eff9b81e1c08068650cff1aba6cd574ea403b"},(0,n.kt)("inlineCode",{parentName:"a"},"749eff9"))),(0,n.kt)("li",{parentName:"ul"},"Create 2-test-new-page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab623ffc27f65e3e5fdcfe627009df1799582325"},(0,n.kt)("inlineCode",{parentName:"a"},"ab623ff"))),(0,n.kt)("li",{parentName:"ul"},"Release 0.9.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/eb7e2e57b5f2778e709b67deee3624f6e9f9e716"},(0,n.kt)("inlineCode",{parentName:"a"},"eb7e2e5"))),(0,n.kt)("li",{parentName:"ul"},"stylelint fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/114e3f97c6209f100aae2d6e24c595b7ba0a6500"},(0,n.kt)("inlineCode",{parentName:"a"},"114e3f9"))),(0,n.kt)("li",{parentName:"ul"},"Move text fragments style to site.overrides ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8368cbe2cecfc296a2fc81dd0bb49cb9e9a9314c"},(0,n.kt)("inlineCode",{parentName:"a"},"8368cbe"))),(0,n.kt)("li",{parentName:"ul"},"Styling scroll-to-text fragments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1bb39148717cdac922c403a0cdbfa3681a65dd9f"},(0,n.kt)("inlineCode",{parentName:"a"},"1bb3914"))),(0,n.kt)("li",{parentName:"ul"},"Update Header.stories.js ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9036c74d54640df2ccfcfdea9ddcdb29787d8ae2"},(0,n.kt)("inlineCode",{parentName:"a"},"9036c74"))),(0,n.kt)("li",{parentName:"ul"},"feature(Docusaurus): Reflect usage of remixicon in iconography page #239 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0802b32c13d978e380960befb78647dadb2d7e53"},(0,n.kt)("inlineCode",{parentName:"a"},"0802b32"))),(0,n.kt)("li",{parentName:"ul"},"Update 1-design.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/146115a13ac7a1943b6878df42f0b8e7f1fcd3f1"},(0,n.kt)("inlineCode",{parentName:"a"},"146115a"))),(0,n.kt)("li",{parentName:"ul"},"Test workflow for contribution - taskman refs #154076 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dcb924f79306ba26bb5168ac0a12d82c0c354caa"},(0,n.kt)("inlineCode",{parentName:"a"},"dcb924f"))),(0,n.kt)("li",{parentName:"ul"},"perf(figma): access to style tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/27d8dbe3c282e187f93bc4d93a0c9aa5c8162b00"},(0,n.kt)("inlineCode",{parentName:"a"},"27d8dbe"))),(0,n.kt)("li",{parentName:"ul"},"Rename 2-test-new-page to 2-test-new-page.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4e3be106cc4739e60ee5038901dbb626cf17f2e7"},(0,n.kt)("inlineCode",{parentName:"a"},"4e3be10")))),(0,n.kt)("h3",{id:"081---2022-08-26"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.8.0...0.8.1"},"0.8.1")," - 2022-08-26"),(0,n.kt)("h4",{id:"-bug-fixes-23"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(message): fix size controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee51e1dca4f84aeb9e39be525016f751acc147de"},(0,n.kt)("inlineCode",{parentName:"a"},"ee51e1d"))),(0,n.kt)("li",{parentName:"ul"},"fix(docusaurus): intro page hero title color now that headers are using tertiary color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/618e3cb7ac5533b1c087aea10452947c8676ab4e"},(0,n.kt)("inlineCode",{parentName:"a"},"618e3cb")))),(0,n.kt)("h4",{id:"-enhancements-30"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(message): restore semantic variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1c16621b4862efc64d82d475798ed40938c65f5e"},(0,n.kt)("inlineCode",{parentName:"a"},"1c16621"))),(0,n.kt)("li",{parentName:"ul"},"refactor(messages): mix semantc and token colors for messages ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/12efa75c30956df9958058242be4b8732819a5a1"},(0,n.kt)("inlineCode",{parentName:"a"},"12efa75"))),(0,n.kt)("li",{parentName:"ul"},"refactor(emotiveColors): temp update for tests ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/61a720c1ddbbad2c5bab17c8b2f890618f2a747c"},(0,n.kt)("inlineCode",{parentName:"a"},"61a720c"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): removed line between sections and moved actions back to the bottom of footer ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d9f33e4cf5a517acfbae497d6cb2fdccb048c281"},(0,n.kt)("inlineCode",{parentName:"a"},"d9f33e4"))),(0,n.kt)("li",{parentName:"ul"},"change(storybook): headings storybook now uses tertiary color by default reflecting site options ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1061e7749de2d4fe1233ccdc7f6f835ad491504a"},(0,n.kt)("inlineCode",{parentName:"a"},"1061e77"))),(0,n.kt)("li",{parentName:"ul"},"refactor(message): add container to story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1259ecead7162d2a46f5e802ba07e7e0dcb72e42"},(0,n.kt)("inlineCode",{parentName:"a"},"1259ece"))),(0,n.kt)("li",{parentName:"ul"},"refactor(message): remove override with custom background color on error ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9b40cd7ef2cca901e65a812585943c2e2d867b5f"},(0,n.kt)("inlineCode",{parentName:"a"},"9b40cd7"))),(0,n.kt)("li",{parentName:"ul"},"refactor(message): add header controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/960c2f7b524b1f049bb2f666e3e8278feca506da"},(0,n.kt)("inlineCode",{parentName:"a"},"960c2f7"))),(0,n.kt)("li",{parentName:"ul"},"change(message): use semantic colors for messages #204 from eea/refactor-message ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/22d2c43cd55a82621f2da3103652677b4b45db1a"},(0,n.kt)("inlineCode",{parentName:"a"},"22d2c43")))),(0,n.kt)("h4",{id:"-documentation-changes-12"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(figma): added figma files to repo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6bd4144ffc9c563ce224a07fe942fc4f2615c53f"},(0,n.kt)("inlineCode",{parentName:"a"},"6bd4144")))),(0,n.kt)("h3",{id:"080---2022-08-20"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.7.6...0.8.0"},"0.8.0")," - 2022-08-20"),(0,n.kt)("h4",{id:"-new-features-18"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(IconCard): card with icon instead of image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a85a1791e3a1245474dcafc4fd833350156dccb4"},(0,n.kt)("inlineCode",{parentName:"a"},"a85a179")))),(0,n.kt)("h4",{id:"-bug-fixes-24"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(docusaurus): typography guideline now has real font values for headings, body, caption and small text ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9508db918687b524c4d464539b9a4667399abb43"},(0,n.kt)("inlineCode",{parentName:"a"},"9508db9"))),(0,n.kt)("li",{parentName:"ul"},"fix(card): fix content gaps, adjust new meta section and update text color for default ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f1a78e14fc9a4b809572bd5d4d45bd10711c6eaa"},(0,n.kt)("inlineCode",{parentName:"a"},"f1a78e1"))),(0,n.kt)("li",{parentName:"ul"},"fix(item): remove duplicate argType ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dde0be5f7fe362143e248f7e53aa1d2e5df1fda0"},(0,n.kt)("inlineCode",{parentName:"a"},"dde0be5"))),(0,n.kt)("li",{parentName:"ul"},"fix(iconCard): add aria-label at links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/44f64c7127c0ccabbbf81eb5a838ee0f63284cea"},(0,n.kt)("inlineCode",{parentName:"a"},"44f64c7"))),(0,n.kt)("li",{parentName:"ul"},"fix(card): merge fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/df440ecd89eeb228f6f28df9109b84460cdfd523"},(0,n.kt)("inlineCode",{parentName:"a"},"df440ec"))),(0,n.kt)("li",{parentName:"ul"},"fix(heroblock): color even on edit page by inheriting color instead of using the tertiary color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac53fb74dedafcce231d1ca72843eff8a589c530"},(0,n.kt)("inlineCode",{parentName:"a"},"ac53fb7"))),(0,n.kt)("li",{parentName:"ul"},"fix(tab): add tabindex for accessibility error ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab512be71b86a3b696a228840e34d297928485ab"},(0,n.kt)("inlineCode",{parentName:"a"},"ab512be"))),(0,n.kt)("li",{parentName:"ul"},"fix(carousel): restore missing variable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1728312162d102aa2812eb3c7a55dac83bca8a04"},(0,n.kt)("inlineCode",{parentName:"a"},"1728312"))),(0,n.kt)("li",{parentName:"ul"},"fix(carousel): restore flex grow for cards and opacity for arrows ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce71305ab3fed5ff5c09b577e970050d3b29a2cb"},(0,n.kt)("inlineCode",{parentName:"a"},"ce71305")))),(0,n.kt)("h4",{id:"-enhancements-31"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(carousel) add links in carousel cards & update structure and variables of less files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f99cb219f3a95f5aab49a180434a4f5e0db14462"},(0,n.kt)("inlineCode",{parentName:"a"},"f99cb21"))),(0,n.kt)("li",{parentName:"ul"},"refactor(iconCard): add control for variations and link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5e1b6a1c7ab9fdce138c5643bc01763a02bed287"},(0,n.kt)("inlineCode",{parentName:"a"},"5e1b6a1"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus, fonts): documented font letter spacing modification ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/522712aeddb55f4ff96fdf4e8bea26f4575504ec"},(0,n.kt)("inlineCode",{parentName:"a"},"522712a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): css updates for card variations and styling updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c8b4a43dd25c50e77e8c71fa8fbc45cd70bde94e"},(0,n.kt)("inlineCode",{parentName:"a"},"c8b4a43"))),(0,n.kt)("li",{parentName:"ul"},"refactor(publicationCard): add links and fix accessibily issue ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/80adf6ce0f01e577c34ddba8b345a1fc562f6711"},(0,n.kt)("inlineCode",{parentName:"a"},"80adf6c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add new section in meta and remove links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bfb82ae9635d26ef478db3d63b39f67b25d11fd5"},(0,n.kt)("inlineCode",{parentName:"a"},"bfb82ae"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): add stackable functionality ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8d714fad0465cc71650dcb41236d5667ccc3e789"},(0,n.kt)("inlineCode",{parentName:"a"},"8d714fa"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): update meta section and controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5e28e12bacec6a226659553b8244aeb0165378c9"},(0,n.kt)("inlineCode",{parentName:"a"},"5e28e12"))),(0,n.kt)("li",{parentName:"ul"},"refactor(roundedCard): remove unnecessary code and controls and add all variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6305c54df14faada4058c602af2e33dbc4fad39d"},(0,n.kt)("inlineCode",{parentName:"a"},"6305c54"))),(0,n.kt)("li",{parentName:"ul"},"refactor(roundedCard): add optional link for image and header ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a6d3bf27031d189c403c4a099b09a9066a1620a2"},(0,n.kt)("inlineCode",{parentName:"a"},"a6d3bf2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add tertiary hover and update css selectors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca069484da914520c92f7d67ac92c476ff2ee4a2"},(0,n.kt)("inlineCode",{parentName:"a"},"ca06948"))),(0,n.kt)("li",{parentName:"ul"},"change(fonts): updated font sizes with values given in figma ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4b0ae48ab140d8bbbf6ccbf46eda8d957195ca50"},(0,n.kt)("inlineCode",{parentName:"a"},"4b0ae48"))),(0,n.kt)("li",{parentName:"ul"},"change(style): color, space and adjust line-height as described in docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3366da262ba2dc1c34f57964accf4d6ef6ed37e1"},(0,n.kt)("inlineCode",{parentName:"a"},"3366da2"))),(0,n.kt)("li",{parentName:"ul"},"change(headings): only h2-h6 get tertiary color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d81308c4c0d52d5610a922146f5b426d9eaf323"},(0,n.kt)("inlineCode",{parentName:"a"},"7d81308"))),(0,n.kt)("li",{parentName:"ul"},"change(site): removed Archivo import as we should only use Roboto font ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a6af0564667075d2012c114acb2ad8e1f39b926f"},(0,n.kt)("inlineCode",{parentName:"a"},"a6af056"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): use tertiary color for headings and body color mirroring the design system styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/145fe7348a19b51784a2879225d1b71a642eed45"},(0,n.kt)("inlineCode",{parentName:"a"},"145fe73"))),(0,n.kt)("li",{parentName:"ul"},"change(fonts): modified headings font size as well as line height ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f0771ea1942b6ef436a03c256491a690a52d7413"},(0,n.kt)("inlineCode",{parentName:"a"},"f0771ea"))),(0,n.kt)("li",{parentName:"ul"},"change(fonts): updated font sizes with values given in figma ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f16eef7128ed4f2e7fe97b1ec77f651dc062b771"},(0,n.kt)("inlineCode",{parentName:"a"},"f16eef7"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): use Roboto font from google fonts also for docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/adca8e911faac2d541eb2b9fecf1d9db5b8f9b4c"},(0,n.kt)("inlineCode",{parentName:"a"},"adca8e9"))),(0,n.kt)("li",{parentName:"ul"},"change(headers): added headerColor variable so that thematic sites can easily choose another heading color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f09d2c5e95e82077cc7dfef43a5c56fc73d435c3"},(0,n.kt)("inlineCode",{parentName:"a"},"f09d2c5"))),(0,n.kt)("li",{parentName:"ul"},"change(fonts): typo fixes for typography section of docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cae4b02b20ff578f5cad7c4238c36baa3cae545a"},(0,n.kt)("inlineCode",{parentName:"a"},"cae4b02"))),(0,n.kt)("li",{parentName:"ul"},"change(fonts): modified footer and header values afer global font size changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f160d354b36dc2bee0707b6d63097d5f08408abe"},(0,n.kt)("inlineCode",{parentName:"a"},"f160d35"))),(0,n.kt)("li",{parentName:"ul"},"refactor(iconCards): run prettier ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fe84e46adbc385098385120d14e7583b890db027"},(0,n.kt)("inlineCode",{parentName:"a"},"fe84e46"))),(0,n.kt)("li",{parentName:"ul"},"change(typography): inherit header colors with @headerColor variable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91d93577772534f67bb74df0c9ed260bbaccdd4c"},(0,n.kt)("inlineCode",{parentName:"a"},"91d9357"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumb): use tertiary color also for breadcrumb ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5cbd44bcabae36bcb99a1e987d701e2ea75434b"},(0,n.kt)("inlineCode",{parentName:"a"},"c5cbd44"))),(0,n.kt)("li",{parentName:"ul"},"change(heading): on homepage on the first hero set font size to h1 and inherit color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5711096e45c57b0c3c871f8dcf870c05405d217d"},(0,n.kt)("inlineCode",{parentName:"a"},"5711096"))),(0,n.kt)("li",{parentName:"ul"},"refactor(carousel): update card titles to display styling fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/edd966b5648be51f2d4056c68489648574506656"},(0,n.kt)("inlineCode",{parentName:"a"},"edd966b"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): use the tertiary color for body and heading colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/11c4ed4683df4527ce79155bc65424789e3864af"},(0,n.kt)("inlineCode",{parentName:"a"},"11c4ed4"))),(0,n.kt)("li",{parentName:"ul"},"change(typography): modified lineheight-0 after headers now use 1.2 instead of 1.25 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/04d78a8b0094d9187548e1e3b16d6fbf2248821c"},(0,n.kt)("inlineCode",{parentName:"a"},"04d78a8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add links to cards and replace description with title in carousel ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0258737d26bbb3015ee6222ec878e0477001f615"},(0,n.kt)("inlineCode",{parentName:"a"},"0258737")))),(0,n.kt)("h4",{id:"\ufe0f-others-31"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feature(heading): and cards refactoring #227 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/334fbda2d5b751858d4cc8cae832ca7f5c1ad6c2"},(0,n.kt)("inlineCode",{parentName:"a"},"334fbda"))),(0,n.kt)("li",{parentName:"ul"},"Update package.json ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3870cf3265f0dab4e181c94a6657b9fa408bf186"},(0,n.kt)("inlineCode",{parentName:"a"},"3870cf3"))),(0,n.kt)("li",{parentName:"ul"},"Header refactor 153536 #226 from eea/header-refactor-153536 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87a6fe73211eb028861e099a67e90d365c5111ea"},(0,n.kt)("inlineCode",{parentName:"a"},"87a6fe7"))),(0,n.kt)("li",{parentName:"ul"},"feature(item): icon is now stackable moving the icon on top #220 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b716acfc850345d666d99840445798cdae201a63"},(0,n.kt)("inlineCode",{parentName:"a"},"b716acf")))),(0,n.kt)("h3",{id:"076---2022-08-15"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.7.5...0.7.6"},"0.7.6")," - 2022-08-15"),(0,n.kt)("h4",{id:"-enhancements-32"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(footer): Footer updates 147837 #225 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fa9ae580c7fd45fb4983672167cb5b0b33cc6279"},(0,n.kt)("inlineCode",{parentName:"a"},"fa9ae58"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): initial redesign of main section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8e85617157cdc31a7470acfcd72b85d8fadd1bce"},(0,n.kt)("inlineCode",{parentName:"a"},"8e85617"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): restructure theme sites logo columns ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dcba45a0bfd832c7d5d1e092db8ea4040eceda57"},(0,n.kt)("inlineCode",{parentName:"a"},"dcba45a"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): set actions before thematic section on mobile ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/db25f966a214c94677192215181453e9d59ca957"},(0,n.kt)("inlineCode",{parentName:"a"},"db25f96"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): fix missing key warning from react dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/77f72d5bdc719805a6314058c741387ee7155d28"},(0,n.kt)("inlineCode",{parentName:"a"},"77f72d5"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): Footer updates 147837 #222 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32fed231f1209caeddb18e0bb75d670f20bafb88"},(0,n.kt)("inlineCode",{parentName:"a"},"32fed23")))),(0,n.kt)("h3",{id:"075---2022-08-11"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.7.3...0.7.5"},"0.7.5")," - 2022-08-11"),(0,n.kt)("h4",{id:"-enhancements-33"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(megamenu): mobile improvements with See all links, active elements and non accordion children #224 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6767b99fea3925b35e9dede0a67ea90242e5e730"},(0,n.kt)("inlineCode",{parentName:"a"},"6767b99"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): render accordion only if children have children ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/be63ce2a8e240eac26eedeff0ca104813afbc6b3"},(0,n.kt)("inlineCode",{parentName:"a"},"be63ce2"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): mobile menu design tweaks as seen in latest figma ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/26d74dc063f0b3f8d541c714a10038d79145047e"},(0,n.kt)("inlineCode",{parentName:"a"},"26d74dc"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): removed icon from at a change menu items and they are no longer bold as requested ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/043e77219979711d2f25845c6811b546e791fbf7"},(0,n.kt)("inlineCode",{parentName:"a"},"043e772"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): reset first level panels after each item pass ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/175351bdc9bab5c2d02b2717c24071ba62d4b924"},(0,n.kt)("inlineCode",{parentName:"a"},"175351b"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): mobile menu improvements #223 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b3cabfe3ddc42c2ea39ae20d01bb6fd0db478ecc"},(0,n.kt)("inlineCode",{parentName:"a"},"b3cabfe"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): fixed key error warnings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/075bf0167554869e9fc2f4938c972112e4afa2f7"},(0,n.kt)("inlineCode",{parentName:"a"},"075bf01"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): handle default active sub accordion ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6192a9938b53522682953cb73d7ccfc6ef9c1aec"},(0,n.kt)("inlineCode",{parentName:"a"},"6192a99"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): enable active border only for items not titles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fb0b8696dd73cbf3083c3006a7cff5a1901a6bac"},(0,n.kt)("inlineCode",{parentName:"a"},"fb0b869")))),(0,n.kt)("h4",{id:"\ufe0f-others-32"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Update package.json ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e21e00dc1e0b54daef2c71311a9da709bc1f7e6d"},(0,n.kt)("inlineCode",{parentName:"a"},"e21e00d")))),(0,n.kt)("h3",{id:"073---2022-08-04"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.7.2...0.7.3"},"0.7.3")," - 2022-08-04"),(0,n.kt)("h4",{id:"-enhancements-34"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(megamenu): added icon on mega menu header section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d0ad4d80fc4941e0cdbd8a2d81415387f86efc1c"},(0,n.kt)("inlineCode",{parentName:"a"},"d0ad4d8")))),(0,n.kt)("h3",{id:"072---2022-08-03"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.7.1...0.7.2"},"0.7.2")," - 2022-08-03"),(0,n.kt)("h4",{id:"-bug-fixes-25"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(contentBox): z-index of content hidden by bg when using content-box-inner ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5a7dac923d648d8fe9c9a9cbb8001969d32aea2"},(0,n.kt)("inlineCode",{parentName:"a"},"c5a7dac")))),(0,n.kt)("h4",{id:"\ufe0f-others-33"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Set focus on search input field in the popup on click ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d12c05106d9b95df1885ffa12cb284a0e50e0dfd"},(0,n.kt)("inlineCode",{parentName:"a"},"d12c051"))),(0,n.kt)("li",{parentName:"ul"},"Make cypress tests work with both slate and draft selectors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4d8e5b1d7719637a46eac8232891fc5ed1f51b6f"},(0,n.kt)("inlineCode",{parentName:"a"},"4d8e5b1")))),(0,n.kt)("h3",{id:"071---2022-08-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.7.0...0.7.1"},"0.7.1")," - 2022-08-01"),(0,n.kt)("h3",{id:"070---2022-08-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.6.5...0.7.0"},"0.7.0")," - 2022-08-01"),(0,n.kt)("h4",{id:"-new-features-19"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(accordion,buttons): primary, secondary and tertiary variations #209 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c34617f7a7d7b6b7568c3127f4ae0f52bd57cf8a"},(0,n.kt)("inlineCode",{parentName:"a"},"c34617f")))),(0,n.kt)("h4",{id:"-bug-fixes-26"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(megamenu): key warning errors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ecd27921546204dfa4aa23d25188876e52cda7a"},(0,n.kt)("inlineCode",{parentName:"a"},"4ecd279"))),(0,n.kt)("li",{parentName:"ul"},"fix(container): add padding also for block editors when we are on the add page not just edit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b857aad7855c30c5059b0f0f7c0f720826a71aa7"},(0,n.kt)("inlineCode",{parentName:"a"},"b857aad"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): bump opacity of gradient class to get rid of green hue of header text ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2011b40d384ae5b54a0525e6d9afc88c02f6ca90"},(0,n.kt)("inlineCode",{parentName:"a"},"2011b40"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): remove console log ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3a200233609bbcea39d8e519dc292a132a98aaa3"},(0,n.kt)("inlineCode",{parentName:"a"},"3a20023")))),(0,n.kt)("h4",{id:"-enhancements-35"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(callToAction): add tertiary variant and restructure exports ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac6695ab3066c41739ec4852f0ec3c3bb6cea346"},(0,n.kt)("inlineCode",{parentName:"a"},"ac6695a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(accordion): add color variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3504c15cc861803dc263fb2ad3b6a478043ced33"},(0,n.kt)("inlineCode",{parentName:"a"},"3504c15"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): WIP bringing back rendering of item with callback and path modification ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e43d4340ea82afde950e5fee44a76119060fc28"},(0,n.kt)("inlineCode",{parentName:"a"},"6e43d43"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): add slide down transition and update targetRefs on close ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/96671574f5f7dd992269c42e509598f62bba516d"},(0,n.kt)("inlineCode",{parentName:"a"},"9667157"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): use renderMenuItem in order to render menu items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9ed5cbdf120ee2c92e5f14c09e5289a5abe3f8b0"},(0,n.kt)("inlineCode",{parentName:"a"},"9ed5cbd"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): replaced eionet logo with an svg variant and tweaked size of eionet to match size of eea logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32ce4623ad454edec864ad6c8b45cbf99465bede"},(0,n.kt)("inlineCode",{parentName:"a"},"32ce462"))),(0,n.kt)("li",{parentName:"ul"},"refactor(callToAction): update tertiary state colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/159668ac526a98032392bcbd2c115dc448193152"},(0,n.kt)("inlineCode",{parentName:"a"},"159668a"))),(0,n.kt)("li",{parentName:"ul"},"change(accordion): style default accordion using the grey from semantic ui ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e24907df397457bd9704905aa29ea5d7e1d396cd"},(0,n.kt)("inlineCode",{parentName:"a"},"e24907d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(accordion): add variations and create a default export ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a9c68ffe933c9d700e46db3e0cbbd9e3820c7c7"},(0,n.kt)("inlineCode",{parentName:"a"},"4a9c68f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(colors): add tertiary shades for element states ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1e24a7e13b50f1ee7bd9bd44f3b2eb8e4460c691"},(0,n.kt)("inlineCode",{parentName:"a"},"1e24a7e"))),(0,n.kt)("li",{parentName:"ul"},"change(tests): try to modify tests to use slate instead of draft ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a2e248593433a7a8bf612008c12a3a20a0049d86"},(0,n.kt)("inlineCode",{parentName:"a"},"a2e2485"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): set active class on storybook list items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/112bff195cd07e789b352ae239a148a168b4d877"},(0,n.kt)("inlineCode",{parentName:"a"},"112bff1"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): add border for active element of menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5e7dfa539dc0d126dfb057ac2d293c94b31561bb"},(0,n.kt)("inlineCode",{parentName:"a"},"5e7dfa5"))),(0,n.kt)("li",{parentName:"ul"},"change(package): condition modification of navDepth settings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dd21dadf34f87f08223be3b98c06e7a2f0714326"},(0,n.kt)("inlineCode",{parentName:"a"},"dd21dad"))),(0,n.kt)("li",{parentName:"ul"},"change(mega menu): use non variable to fix build of volto-kitkat-frontend ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ecd652405ba616c9defc86fd793f8c066c0af1e"},(0,n.kt)("inlineCode",{parentName:"a"},"3ecd652"))),(0,n.kt)("li",{parentName:"ul"},"change(header): prefix mega-menu active class for adding border ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32898cb19c20ee7696c51b99cd9df25a333ae6e9"},(0,n.kt)("inlineCode",{parentName:"a"},"32898cb"))),(0,n.kt)("li",{parentName:"ul"},"change(tests): use data-slate-editor instead of contents that was found in draft js instead of slate ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1e0413cf117c098b188e00249c323f2f718b9299"},(0,n.kt)("inlineCode",{parentName:"a"},"1e0413c"))),(0,n.kt)("li",{parentName:"ul"},"change(stories): hide variant control from button link story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/43f8c412f6762edbed9c60e613736d5b60677cd1"},(0,n.kt)("inlineCode",{parentName:"a"},"43f8c41"))),(0,n.kt)("li",{parentName:"ul"},"change(stories): hide variant control from button link story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aea712668331f5681028d961b42a05655f1113d3"},(0,n.kt)("inlineCode",{parentName:"a"},"aea7126")))),(0,n.kt)("h4",{id:"\ufe0f-others-34"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feature(theme): added context navigation component story and default style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5a6955fe935cf6a07f6593164014ed4c9e77d88f"},(0,n.kt)("inlineCode",{parentName:"a"},"5a6955f"))),(0,n.kt)("li",{parentName:"ul"},"feature(megamenu): open default accordions on mobile navigation based on pathname ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cc299c1047f96aa5f85cdc4bb8bb9b3b4fb9ca5e"},(0,n.kt)("inlineCode",{parentName:"a"},"cc299c1"))),(0,n.kt)("li",{parentName:"ul"},"fix eslint warnings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3b30282ea4df59f2d05644cae5c1d703b4dc48b3"},(0,n.kt)("inlineCode",{parentName:"a"},"3b30282"))),(0,n.kt)("li",{parentName:"ul"},"bump release version to 0.7.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fa82cbd7d50765c322bc5c7c58abb5675e0aadad"},(0,n.kt)("inlineCode",{parentName:"a"},"fa82cbd"))),(0,n.kt)("li",{parentName:"ul"},"Theme fixes, mega menu selected element both in desktop and mobile #211 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4827292a9badb02f178b7431cc63e11070784ea"},(0,n.kt)("inlineCode",{parentName:"a"},"b482729"))),(0,n.kt)("li",{parentName:"ul"},"feature(mega-menu): added menu slide down animation #208 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4360d0ef570fbfcc9989170219f7826e5ed780cf"},(0,n.kt)("inlineCode",{parentName:"a"},"4360d0e")))),(0,n.kt)("h3",{id:"065---2022-07-06"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.6.1...0.6.5"},"0.6.5")," - 2022-07-06"),(0,n.kt)("h4",{id:"-bug-fixes-27"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(header): double click to close dropdown is no longer required ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8a2ed0d1e671d12239ecaf250e68b3187c12a53"},(0,n.kt)("inlineCode",{parentName:"a"},"b8a2ed0"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): menu generation when atAGlance isn't found ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d68b03c05f7671e7ea154efe0199c29a3734fbcf"},(0,n.kt)("inlineCode",{parentName:"a"},"d68b03c"))),(0,n.kt)("li",{parentName:"ul"},"fix(menu): removed minHeight that enlarged the global menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/133be1e43d9b7778fd94388629400c5f2b707ff4"},(0,n.kt)("inlineCode",{parentName:"a"},"133be1e"))),(0,n.kt)("li",{parentName:"ul"},"fix(hero): image dimensions when full width and height isn't enabled ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4114f731cce63dc520bfd00cd487943181cec2ee"},(0,n.kt)("inlineCode",{parentName:"a"},"4114f73"))),(0,n.kt)("li",{parentName:"ul"},"fix(contentBox): removed negative z-index that hid fullwidth bg color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bd60faff53205da95d94930517f2ac830ec523d1"},(0,n.kt)("inlineCode",{parentName:"a"},"bd60faf")))),(0,n.kt)("h4",{id:"-enhancements-36"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(hero): tweaked hero block height and padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/994b6f8943c061657792df8adcbdee5da487ce43"},(0,n.kt)("inlineCode",{parentName:"a"},"994b6f8"))),(0,n.kt)("li",{parentName:"ul"},"change(item): tweak size and padding of icon when used inside item ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dbdef191e70bf59dcfddf63c8f9f9a1343266a59"},(0,n.kt)("inlineCode",{parentName:"a"},"dbdef19"))),(0,n.kt)("li",{parentName:"ul"},"change(typography): updated letterspacing values and clarified values used for certain type tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8a13bf8b3691d288209532842fb2c80962d652c0"},(0,n.kt)("inlineCode",{parentName:"a"},"8a13bf8"))),(0,n.kt)("li",{parentName:"ul"},"change(item): enable theming for icon and text color and added tertiary option ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d4444feedd1cd7e6e8f8da630b4b53a19050d1b"},(0,n.kt)("inlineCode",{parentName:"a"},"6d4444f"))),(0,n.kt)("li",{parentName:"ul"},"change(header): top section chevron sizes and margin as requested in enhancements document ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b307c74a671c10a5a6703dcb2126c3c36679c6f5"},(0,n.kt)("inlineCode",{parentName:"a"},"b307c74"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): add underline to links when applied to headers and use tertiary color by default ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/874f956c61e65ddbb6a240865f3946bb84247712"},(0,n.kt)("inlineCode",{parentName:"a"},"874f956"))),(0,n.kt)("li",{parentName:"ul"},"change(utilities): wrap in quotes h2 and h3 of quoted-wrapper ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8aa471604fb127cfa535373bb90a44b4204dd0f4"},(0,n.kt)("inlineCode",{parentName:"a"},"8aa4716"))),(0,n.kt)("li",{parentName:"ul"},"change(package): bump package version to 0.6.5 denoting bug fixes release ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0585aebaeb9e3483ba230110d99a1a875590ad66"},(0,n.kt)("inlineCode",{parentName:"a"},"0585aeb")))),(0,n.kt)("h3",{id:"061---2022-07-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.6.0...0.6.1"},"0.6.1")," - 2022-07-01"),(0,n.kt)("h4",{id:"-new-features-20"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(UnderlinedTitle): create story and necessary utilities ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8beb56b64ca76fb9f0f6df0f3554e64449a64868"},(0,n.kt)("inlineCode",{parentName:"a"},"8beb56b"))),(0,n.kt)("li",{parentName:"ul"},"feat(headers): added underlined titles with theming support ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af675616f9e002458501cf8b90742514153a298f"},(0,n.kt)("inlineCode",{parentName:"a"},"af67561")))),(0,n.kt)("h4",{id:"-enhancements-37"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(heading): move underline story and update controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2c9bfd279eafc44435d223be326f9496856c2154"},(0,n.kt)("inlineCode",{parentName:"a"},"2c9bfd2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(underlineTitle): add content box for different variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/087891535059d6c2d7d2c2accded20f6ba601bb5"},(0,n.kt)("inlineCode",{parentName:"a"},"0878915"))),(0,n.kt)("li",{parentName:"ul"},"refactor(underlinedTitle): add control for changing heading size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/211f5158bff2b437aac60f26ba63f9adb6be540a"},(0,n.kt)("inlineCode",{parentName:"a"},"211f515"))),(0,n.kt)("li",{parentName:"ul"},"refactor(underlinedTitle): Restore text variation dropdown control ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bd8c61129d2c80475af8d0e9310412d5c3a82169"},(0,n.kt)("inlineCode",{parentName:"a"},"bd8c611"))),(0,n.kt)("li",{parentName:"ul"},"refactor(utilities): add color variation for headings and text ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e3a779ec4fa3b712fcd32124f6f83ab784d2223"},(0,n.kt)("inlineCode",{parentName:"a"},"7e3a779"))),(0,n.kt)("li",{parentName:"ul"},"refactor(utilities): update border bottom utility and restore line height for headings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7fe4a7b9fee579d213fe3945a4e548ff089784bd"},(0,n.kt)("inlineCode",{parentName:"a"},"7fe4a7b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(headings): update the line height of headers according to docusaurus instructions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9da19b3e1ea1fd93431e00edf3dc9a443e94f27a"},(0,n.kt)("inlineCode",{parentName:"a"},"9da19b3")))),(0,n.kt)("h4",{id:"-internal-changes-13"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(countup): package for statistics ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/26fcd09bbd8d44119d5ca957542863be8c64836b"},(0,n.kt)("inlineCode",{parentName:"a"},"26fcd09")))),(0,n.kt)("h3",{id:"060---2022-07-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.5.5...0.6.0"},"0.6.0")," - 2022-07-01"),(0,n.kt)("h4",{id:"-bug-fixes-28"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(item): adjust the container in stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a848c46b5bf3153ec993a21a530e120bae872407"},(0,n.kt)("inlineCode",{parentName:"a"},"a848c46"))),(0,n.kt)("li",{parentName:"ul"},"fix(tag): align start for tags on mobile, update path for Tag List and add containers ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b9de8452c42ed6d16028ce147f2d7a062b895d67"},(0,n.kt)("inlineCode",{parentName:"a"},"b9de845"))),(0,n.kt)("li",{parentName:"ul"},"fix(item): update image width & height on mobiles and add 3 line clamp for description ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0cd2c46c945ff85b55183994990fae9cf450f3d1"},(0,n.kt)("inlineCode",{parentName:"a"},"0cd2c46"))),(0,n.kt)("li",{parentName:"ul"},"fix(pageheader): metadata font size on mobile to be readable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0a9b1fa7db6f0b11265f9eb4d28f25b23bedc79a"},(0,n.kt)("inlineCode",{parentName:"a"},"0a9b1fa"))),(0,n.kt)("li",{parentName:"ul"},"fix(breadcrumb): fixed variable name for breadcrumb item ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2b547eb43e0db4aa9bb63b4e4ba7f541f357fbd0"},(0,n.kt)("inlineCode",{parentName:"a"},"2b547eb")))),(0,n.kt)("h4",{id:"-enhancements-38"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(Item):create item story with custom default class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/069ae02a7cc2b15b7e6732e46f52d07eaa4502b1"},(0,n.kt)("inlineCode",{parentName:"a"},"069ae02"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pagination): add pastanage menu overrides and remove any eea theme css from default story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/508081090baaeb455130c760c6c0e7e23972d84a"},(0,n.kt)("inlineCode",{parentName:"a"},"5080810"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): update variables from px to rem ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/30eed78c170e5719ba4fb85c3a171db3f97d63c8"},(0,n.kt)("inlineCode",{parentName:"a"},"30eed78"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Item):add default item mobile padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/35184655e3225b8ad63626c8e521b5dcf59eaa3b"},(0,n.kt)("inlineCode",{parentName:"a"},"3518465"))),(0,n.kt)("li",{parentName:"ul"},"change(site): added fixes from custom ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0fe4d80586c8877d58905ec40aa7df19c2f4e32f"},(0,n.kt)("inlineCode",{parentName:"a"},"0fe4d80"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Pagination): add default pagination stopry and rename previous as Secondary ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a5e3e13b40d4d1d0c96f1efaa3a0c326d60c6d93"},(0,n.kt)("inlineCode",{parentName:"a"},"a5e3e13"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pagination): comment out secondary pagination and its styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bcf4cff1cff490718751475354b8fb32da174383"},(0,n.kt)("inlineCode",{parentName:"a"},"bcf4cff"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tags): remove content class and add flex wrap ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d6333ca7e61a588d8ffe4d0d2e02005c0aa12379"},(0,n.kt)("inlineCode",{parentName:"a"},"d6333ca"))),(0,n.kt)("li",{parentName:"ul"},"change(logo): use a real svg logo for white eea logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3b80dc7698c3dbab5d3834cc62f5102c2ace0166"},(0,n.kt)("inlineCode",{parentName:"a"},"3b80dc7"))),(0,n.kt)("li",{parentName:"ul"},"change(header): show eea information systems on tablet as well ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce82cebb554eb11a35ea2b3ee0c62bc645716476"},(0,n.kt)("inlineCode",{parentName:"a"},"ce82ceb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): update letter spacing tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f8753b7527b1bf7271102666a8662a74b2b1775"},(0,n.kt)("inlineCode",{parentName:"a"},"5f8753b"))),(0,n.kt)("li",{parentName:"ul"},"change(letterspacing): updated letter spacing positive values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b31818f292ce7ce8711084116a7b4df78cca33f0"},(0,n.kt)("inlineCode",{parentName:"a"},"b31818f"))),(0,n.kt)("li",{parentName:"ul"},"change(pageheader): add bottom margin on mobile for sharing dropdown actions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d3cda4732ec94dac91b36ef10014fbbe08a0a470"},(0,n.kt)("inlineCode",{parentName:"a"},"d3cda47"))),(0,n.kt)("li",{parentName:"ul"},"change(pageheader): removed blogger, reddit and stumbleupon sharing links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e4acc4e83c120cda59d94f04867a53e21bf322ab"},(0,n.kt)("inlineCode",{parentName:"a"},"e4acc4e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Item): add default item background color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c978c8d05355065466a8a661844237a9df103b94"},(0,n.kt)("inlineCode",{parentName:"a"},"c978c8d"))),(0,n.kt)("li",{parentName:"ul"},"change(package): bump package version ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f01f72ba6b09b6aae00c54e446bafddb48c4cd1"},(0,n.kt)("inlineCode",{parentName:"a"},"1f01f72")))),(0,n.kt)("h4",{id:"-internal-changes-14"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(item): update item image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e585e9d8c85a3627696b55c0505e29e8a8c33f7f"},(0,n.kt)("inlineCode",{parentName:"a"},"e585e9d")))),(0,n.kt)("h4",{id:"-documentation-changes-13"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(colors): token usage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c433ec6fcf190f85ab1dd81ea3e63eeb381d0c28"},(0,n.kt)("inlineCode",{parentName:"a"},"c433ec6"))),(0,n.kt)("li",{parentName:"ul"},"docs(Docusaurus): typography and spacing updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48d1269dce396aec26db1d1e2f777851a26eaa81"},(0,n.kt)("inlineCode",{parentName:"a"},"48d1269"))),(0,n.kt)("li",{parentName:"ul"},"docs(Docusaurus): various fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a972a31f7932d29d61a46da251c0c98994516365"},(0,n.kt)("inlineCode",{parentName:"a"},"a972a31"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/66d95e4fee695a20de47f5476712034f9f07f4a8"},(0,n.kt)("inlineCode",{parentName:"a"},"66d95e4")))),(0,n.kt)("h4",{id:"\ufe0f-others-35"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Tabs block custom border left/top ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca4cce05ddb603a26d729dfe31f0f11fda7563fb"},(0,n.kt)("inlineCode",{parentName:"a"},"ca4cce0"))),(0,n.kt)("li",{parentName:"ul"},"Fix sidebar tabs in Volto CSS ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c287db5abbfe068d4b255c41fd58d0433d2640c4"},(0,n.kt)("inlineCode",{parentName:"a"},"c287db5")))),(0,n.kt)("h3",{id:"055---2022-06-23"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.5.4...0.5.5"},"0.5.5")," - 2022-06-23"),(0,n.kt)("h4",{id:"-bug-fixes-29"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(contentBox): color of cards when inside content-boxes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/76a452031473f43928dee1d3ee705d06101e6a21"},(0,n.kt)("inlineCode",{parentName:"a"},"76a4520")))),(0,n.kt)("h4",{id:"-enhancements-39"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(homepage): moved fixes of homepage to custom and colored carousel arrow ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0a226ef3f5d328d45513764bec02d58241417db0"},(0,n.kt)("inlineCode",{parentName:"a"},"0a226ef")))),(0,n.kt)("h3",{id:"054---2022-06-16"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.5.3...0.5.4"},"0.5.4")," - 2022-06-16"),(0,n.kt)("h4",{id:"-bug-fixes-30"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(block-style): Content box preview in sidebar ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6362766f5e8dabf778e3864d2bb08966a55fc078"},(0,n.kt)("inlineCode",{parentName:"a"},"6362766"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): ensure transparency goes as high as the search icon ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4470e132e1e70fba3fdfb33fc63a1cc9d62700e8"},(0,n.kt)("inlineCode",{parentName:"a"},"4470e13")))),(0,n.kt)("h4",{id:"-enhancements-40"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(contentBox): add background as before element instead of using full-width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e0a5962c1b9cb0d3ef9a8d7b7208eded34eb3ce"},(0,n.kt)("inlineCode",{parentName:"a"},"7e0a596"))),(0,n.kt)("li",{parentName:"ul"},"change(content-box): content box links are now underlined ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f7976f50f5807a884522d6dba871a2757a1c5a98"},(0,n.kt)("inlineCode",{parentName:"a"},"f7976f5"))),(0,n.kt)("li",{parentName:"ul"},"change(homepage): added fixes from custom ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c3e03331d328f4fd7c6689f93bc1f1156013b8a9"},(0,n.kt)("inlineCode",{parentName:"a"},"c3e0333"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): add margin top with the height of the top section on edit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fefa6bb0f513e221ddb587f081c0e7d0c3067dfd"},(0,n.kt)("inlineCode",{parentName:"a"},"fefa6bb"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): fix default card color when inside content-boxes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6fdf3aabf9515289b36a5822e21edc5d282c4536"},(0,n.kt)("inlineCode",{parentName:"a"},"6fdf3aa"))),(0,n.kt)("li",{parentName:"ul"},"change(container): removed override of content-box-inner container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/66fe7d45adc631c3ebf0e8dd11de19d7ff60b894"},(0,n.kt)("inlineCode",{parentName:"a"},"66fe7d4")))),(0,n.kt)("h3",{id:"053---2022-06-16"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.5.2...0.5.3"},"0.5.3")," - 2022-06-16"),(0,n.kt)("h4",{id:"-bug-fixes-31"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(homepage): hero and homepage fixes for #151156 #198 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/43d4efc508750e0e9cbb93b9bffc3721be452c5a"},(0,n.kt)("inlineCode",{parentName:"a"},"43d4efc"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): fixed top section width on edit page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce5898b5ee41ea6959a2c454b3fb98216d71feb3"},(0,n.kt)("inlineCode",{parentName:"a"},"ce5898b")))),(0,n.kt)("h4",{id:"-enhancements-41"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(hero): added min height to hero-block-image-wrapper ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3cc37c027597573281710c9db98c687057d261dd"},(0,n.kt)("inlineCode",{parentName:"a"},"3cc37c0"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): spaced hero block has a 3rem margin top and bottom ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c463b033dda601bfd475b282bc0003200a053d45"},(0,n.kt)("inlineCode",{parentName:"a"},"c463b03"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): added extra top margin on hero-block-body from tablet and up within homepage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/64142c3c45f6a8ea6502842055a2341dcf16088c"},(0,n.kt)("inlineCode",{parentName:"a"},"64142c3"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): tweak min height of hero block ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e1271b4b5fdcd8205f0bec8b88ab9ae31f62251f"},(0,n.kt)("inlineCode",{parentName:"a"},"e1271b4"))),(0,n.kt)("li",{parentName:"ul"},"change(card,contentBox): use inherit for text color to inherit black from body ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c1ba3b6ddc16ddc7394aba8d78cad73b5a8c34cb"},(0,n.kt)("inlineCode",{parentName:"a"},"c1ba3b6"))),(0,n.kt)("li",{parentName:"ul"},"change(container): on section-edit modify only left and right padding values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fe6e3ec764643ec01e20ae9dbdde921774ef04cd"},(0,n.kt)("inlineCode",{parentName:"a"},"fe6e3ec"))),(0,n.kt)("li",{parentName:"ul"},"change(utilities): bump z-index of overlay class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ede3209556b620d2252bb03d4c994a92b6708fd2"},(0,n.kt)("inlineCode",{parentName:"a"},"ede3209"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): fixed variable reference for margin of body from homepage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/092b90b2a902b71cc96132ca3c96108edda56342"},(0,n.kt)("inlineCode",{parentName:"a"},"092b90b")))),(0,n.kt)("h3",{id:"052---2022-06-14"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.5.1...0.5.2"},"0.5.2")," - 2022-06-14"),(0,n.kt)("h4",{id:"-new-features-21"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(contentBox) : add new Content Box component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ebbb47fe685f9809aa3572263be376d9688371e"},(0,n.kt)("inlineCode",{parentName:"a"},"2ebbb47"))),(0,n.kt)("li",{parentName:"ul"},"feat(ContentBox): Add primary, secondary, tertiary themes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87cb2fe7e4cd5c2872299756f493e371abcbb05f"},(0,n.kt)("inlineCode",{parentName:"a"},"87cb2fe"))),(0,n.kt)("li",{parentName:"ul"},"feat(ContentBox): Update storybook with available themes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93b26b2f5f1d627aa8049df61257499e4798dd79"},(0,n.kt)("inlineCode",{parentName:"a"},"93b26b2")))),(0,n.kt)("h4",{id:"-enhancements-42"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(contentBox): restructure the component to be more flexible ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f0d2de67e43fafa10052871f99ac841c83cf8157"},(0,n.kt)("inlineCode",{parentName:"a"},"f0d2de6")))),(0,n.kt)("h4",{id:"-internal-changes-15"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(contentBox) : add lint changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5aaf740594f0001b1672bb6dc18d973f55c881f0"},(0,n.kt)("inlineCode",{parentName:"a"},"5aaf740")))),(0,n.kt)("h4",{id:"\ufe0f-others-36"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"perf(eol): change to lf ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/78b2955ff73d9436134d1a6399040b2d7c7f5714"},(0,n.kt)("inlineCode",{parentName:"a"},"78b2955"))),(0,n.kt)("li",{parentName:"ul"},"Cleanup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2b128dface95b560588a343f1ddf7bbaf3efb320"},(0,n.kt)("inlineCode",{parentName:"a"},"2b128df")))),(0,n.kt)("h3",{id:"051---2022-06-13"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.5.0...0.5.1"},"0.5.1")," - 2022-06-13"),(0,n.kt)("h4",{id:"-enhancements-43"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(header): changed homepage text color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/64ce8b61f8f2150513e09bf2926b48aa2ae1071c"},(0,n.kt)("inlineCode",{parentName:"a"},"64ce8b6"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): added styles for adding dark overlay to hero ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bf1d292fecfa8a6b222558f0d93f48e19bf6b8ea"},(0,n.kt)("inlineCode",{parentName:"a"},"bf1d292"))),(0,n.kt)("li",{parentName:"ul"},"change(homepage): hide stagingBanner on homepage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fb6e319dd10f4d148cc8f3b33dafc43280a0254f"},(0,n.kt)("inlineCode",{parentName:"a"},"fb6e319"))),(0,n.kt)("li",{parentName:"ul"},"change(header): use variable for homepage hero-block padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/89ff3441f269281ffb3da32cd3e5c64715b3204b"},(0,n.kt)("inlineCode",{parentName:"a"},"89ff344"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): modified grey-4 color to point to a 10% shade from original color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b406283e61c7356bec9d453567cd1ccde496880d"},(0,n.kt)("inlineCode",{parentName:"a"},"b406283"))),(0,n.kt)("li",{parentName:"ul"},"change(header): added min-height for mega menu needed for 1 items menus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/18814f48fb743c88d05554e9a1773f8d85dec86c"},(0,n.kt)("inlineCode",{parentName:"a"},"18814f4"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): hero section block integration #192 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ea2f40583951016c164c9abdf22d8e809d207fe"},(0,n.kt)("inlineCode",{parentName:"a"},"4ea2f40")))),(0,n.kt)("h4",{id:"\ufe0f-others-37"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Add hero block style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fa39656fd661d8af95f483a6f33a08e4c93c42f1"},(0,n.kt)("inlineCode",{parentName:"a"},"fa39656"))),(0,n.kt)("li",{parentName:"ul"},"Add padding if hero block is not full-width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/808b83957d6a866cc31c928f414fa8fa5da517a1"},(0,n.kt)("inlineCode",{parentName:"a"},"808b839"))),(0,n.kt)("li",{parentName:"ul"},"Cleanup available languages ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0c490512a6a6524efe9a37b4b61ab0061a240abb"},(0,n.kt)("inlineCode",{parentName:"a"},"0c49051"))),(0,n.kt)("li",{parentName:"ul"},"Use 1.5 rem ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1125cd7c65332fc5961ffbbbd2d2ab6bcc8b1b5b"},(0,n.kt)("inlineCode",{parentName:"a"},"1125cd7")))),(0,n.kt)("h3",{id:"050---2022-06-11"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.4.5...0.5.0"},"0.5.0")," - 2022-06-11"),(0,n.kt)("h4",{id:"-new-features-22"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(hero): added storybook implementation of hero component #172 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/17b9d1693e31bf7b3b41ca84be7bd21f07065674"},(0,n.kt)("inlineCode",{parentName:"a"},"17b9d16"))),(0,n.kt)("li",{parentName:"ul"},"feat(hero): add hero block component and stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6019fc843ec14a8afc7558e92c2d4b4bb14ee199"},(0,n.kt)("inlineCode",{parentName:"a"},"6019fc8")))),(0,n.kt)("h4",{id:"-bug-fixes-32"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(header): Internal links in mega menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d8ca13558c3e8c336800791f2fea8a8d33a2b602"},(0,n.kt)("inlineCode",{parentName:"a"},"d8ca135"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): show active menu when clicking on children ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a54fa67a1a92e2ab4216e6d149f66e1ee53aab89"},(0,n.kt)("inlineCode",{parentName:"a"},"a54fa67"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): accessibility and dropdown possition fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/505ac36a27d86e620fb5af515a0b8b5979610f0a"},(0,n.kt)("inlineCode",{parentName:"a"},"505ac36"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): fix accessibility issue by David ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/783dcec0d140e6e6e568d0f82833dcbf8a5c7d3d"},(0,n.kt)("inlineCode",{parentName:"a"},"783dcec"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): dropdowns disappear on resize ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/52338fd3e711f4918612e052dc2034a8d9bd40bd"},(0,n.kt)("inlineCode",{parentName:"a"},"52338fd"))),(0,n.kt)("li",{parentName:"ul"},"fix(header-topdropdown): dedupe html elements for topdropdowns ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cd8a2a7ea091e81b736438f7c2a87c254af1b092"},(0,n.kt)("inlineCode",{parentName:"a"},"cd8a2a7"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): transparency class should apply on the current bg color or image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f9a0033c5538cb19f08f26cf28d47954cc52607d"},(0,n.kt)("inlineCode",{parentName:"a"},"f9a0033"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): mobile dropdown now visible ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/34371b436f2ec100f3920f78de49983ba16679b0"},(0,n.kt)("inlineCode",{parentName:"a"},"34371b4"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): dropdown disappears after window resize #116 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fc7dd8bd7911421fb734a696a2dd5d3ad3b652b0"},(0,n.kt)("inlineCode",{parentName:"a"},"fc7dd8b"))),(0,n.kt)("li",{parentName:"ul"},"fix(header-topdropdown): dedupe html dropdown elements for topdropdowns #115 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f10a7a8743a5fb2cecd0c3374ec9d894e914143f"},(0,n.kt)("inlineCode",{parentName:"a"},"f10a7a8")))),(0,n.kt)("h4",{id:"-enhancements-44"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): update mega menu in header component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2d1ce454553d116efa96288079b8b77649e10abb"},(0,n.kt)("inlineCode",{parentName:"a"},"2d1ce45"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update structure and variables of top bar ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af709094f94f0cc2e2309b1aedb376e45dc7f136"},(0,n.kt)("inlineCode",{parentName:"a"},"af70909"))),(0,n.kt)("li",{parentName:"ul"},"change(header): renamed mega menu items href attribute to url ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ed8144589f87a9ad219c97193863c999a72cb6d"},(0,n.kt)("inlineCode",{parentName:"a"},"3ed8144"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update main section and and add color variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2f0fd1de7c04eff4b2a9b62d03dd13a1b0d69bc"},(0,n.kt)("inlineCode",{parentName:"a"},"f2f0fd1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): minor updates on colors and widths ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a70129fd929fedb344a47e049cca94274e84a3b1"},(0,n.kt)("inlineCode",{parentName:"a"},"a70129f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero): add full-heigh control to adjust height ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a45cb7c599cdc11426207001e67d8f7d727233fe"},(0,n.kt)("inlineCode",{parentName:"a"},"a45cb7c"))),(0,n.kt)("li",{parentName:"ul"},"change(header): disable sticky setting until feature is more stable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1d7af954c85cb6a8a657c1625e4ae863e562346a"},(0,n.kt)("inlineCode",{parentName:"a"},"1d7af95"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero):make button variant and inverted different button controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e182ca9ecdb76507205d84f83cad6a79dd74a03"},(0,n.kt)("inlineCode",{parentName:"a"},"7e182ca"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header):main bar sticky on scroll up ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9c9e7c6f9651c0663a1eab1856d7324a73afb2de"},(0,n.kt)("inlineCode",{parentName:"a"},"9c9e7c6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(headings): update heading sizes for mobile ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19f3ccacaf2c744b5f5c2ec8635773de7ef0016b"},(0,n.kt)("inlineCode",{parentName:"a"},"19f3cca"))),(0,n.kt)("li",{parentName:"ul"},"change(header): hide first link(home) from header menu on site ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ae7f3b9385620eb3d840dd90f512e37cd8556a6d"},(0,n.kt)("inlineCode",{parentName:"a"},"ae7f3b9"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): typo correction and key setting on list.items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/96d2c4fbfa722d22a215e8d27f1400e65fe9476e"},(0,n.kt)("inlineCode",{parentName:"a"},"96d2c4f"))),(0,n.kt)("li",{parentName:"ul"},"change(header): use Link instead of a tag for menu items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9812b3fba7b8305399d6972daf135b8a2d88e876"},(0,n.kt)("inlineCode",{parentName:"a"},"9812b3f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add control for inverted logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/023ca45e6f263166211cbea0d63b1938d11221da"},(0,n.kt)("inlineCode",{parentName:"a"},"023ca45"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero): move quoted utility to h2 tag ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7376676b4875494f16c49945f6b5dac19c6b8009"},(0,n.kt)("inlineCode",{parentName:"a"},"7376676"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add link for menu title inside desktop mega menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24355d000b2bd808b2031cd2b78e60cafb9ad5b1"},(0,n.kt)("inlineCode",{parentName:"a"},"24355d0"))),(0,n.kt)("li",{parentName:"ul"},"refactor(utilities): update hex with color token ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8dc65ef55a62dcb32b6eb8a684524a8dc1fa6ba6"},(0,n.kt)("inlineCode",{parentName:"a"},"8dc65ef"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): and mega menu to latest spec #114 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/44fcf68be242f97ced852b28ac3ab820dc0e1045"},(0,n.kt)("inlineCode",{parentName:"a"},"44fcf68"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update search input and file endings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/afab36f96f245e197eff528cb1d9e6fea45bc7ba"},(0,n.kt)("inlineCode",{parentName:"a"},"afab36f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add control that toggles transparency class on main section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8d4bdb9c527f102ffd3718f32bf1a43309a9bb4"},(0,n.kt)("inlineCode",{parentName:"a"},"b8d4bdb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): restore union dropdown after implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e98bab497ee10ad89d2dfed76c7117b633206fe"},(0,n.kt)("inlineCode",{parentName:"a"},"7e98bab"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): minor responsive fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/16a000634505c9e8f8b310860a30b62798a0fb87"},(0,n.kt)("inlineCode",{parentName:"a"},"16a0006"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero): align hero's text and meta seperately ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4fa958f7c7cc6d331a8eb7aaf25dc44d6cd3632a"},(0,n.kt)("inlineCode",{parentName:"a"},"4fa958f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero):add button variant controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f362a7b2ec273131fa0876f23b74c740c7217b3a"},(0,n.kt)("inlineCode",{parentName:"a"},"f362a7b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update search input ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/368962eabb668e2ec1bdcd18ae81658e7b1d911b"},(0,n.kt)("inlineCode",{parentName:"a"},"368962e"))),(0,n.kt)("li",{parentName:"ul"},"change(header): mark top level active menu item ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/665c449bc2667cc1471a4b97923c897ad3506792"},(0,n.kt)("inlineCode",{parentName:"a"},"665c449"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero):prettier & style changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d84688440417a430afd9fd24f4c8cfeef0121203"},(0,n.kt)("inlineCode",{parentName:"a"},"d846884"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add control for main section stickiness ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2f07572f78074137e7e6a49585273210ed5cedcb"},(0,n.kt)("inlineCode",{parentName:"a"},"2f07572"))),(0,n.kt)("li",{parentName:"ul"},"change(header): use viewport width for changing mobile text in header dropdowns ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b50fa585c0abeedc04a46395f08e50a9e112c430"},(0,n.kt)("inlineCode",{parentName:"a"},"b50fa58"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add fluid font sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f2743e39107fd1bd00a54e03bf92963eb9853f2"},(0,n.kt)("inlineCode",{parentName:"a"},"5f2743e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header) add position sticky & transparent for main section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/29df772edfe23b1752aa3d184659eea90c3c9221"},(0,n.kt)("inlineCode",{parentName:"a"},"29df772"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero): update variables with new design tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1d9792231c50f12fd68364e201054f6ab0926665"},(0,n.kt)("inlineCode",{parentName:"a"},"1d97922"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Language List): render language dropdown as ul and li elements ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3617442da78af07d3f473d0c43c47dd48c9b2ac3"},(0,n.kt)("inlineCode",{parentName:"a"},"3617442"))),(0,n.kt)("li",{parentName:"ul"},"change(header): introduced item class to the mega menu link content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/00ca376ea4cf1de4851e84567b97c374ee7f66e3"},(0,n.kt)("inlineCode",{parentName:"a"},"00ca376"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Language List): add less variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7ccc1ccf57419b6eecbf71d479db72b84428d43a"},(0,n.kt)("inlineCode",{parentName:"a"},"7ccc1cc"))),(0,n.kt)("li",{parentName:"ul"},"change(header): disabled active menu when clicking on globalnav links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3f7b5eedb038b51fbae8a14a683dc6adc919549b"},(0,n.kt)("inlineCode",{parentName:"a"},"3f7b5ee"))),(0,n.kt)("li",{parentName:"ul"},"change(header): target link instead of span directly ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9e865fbb5b256196756c3d84de397296ac0b447a"},(0,n.kt)("inlineCode",{parentName:"a"},"9e865fb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): remove unused imports ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e232db6ce0b2553be79d98d8497fa06f548b772"},(0,n.kt)("inlineCode",{parentName:"a"},"7e232db")))),(0,n.kt)("h4",{id:"\ufe0f-others-38"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Add item themes; override .block .ui.image width based on size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/06010db21398638d46d2e007317d72a7aff7e7d9"},(0,n.kt)("inlineCode",{parentName:"a"},"06010db"))),(0,n.kt)("li",{parentName:"ul"},"Move item icon themes to item.overrides ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/31e8921f4ee4d92ba3a9c58275b41dd3101cffd2"},(0,n.kt)("inlineCode",{parentName:"a"},"31e8921"))),(0,n.kt)("li",{parentName:"ul"},"Override only the width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8d4927084e5daedcb69e6f3a57cab73a9016a55f"},(0,n.kt)("inlineCode",{parentName:"a"},"8d49270"))),(0,n.kt)("li",{parentName:"ul"},"Override tile image in .block parrent ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/005655ddff6f45e211f1ff8156b0b7efa1e47a2e"},(0,n.kt)("inlineCode",{parentName:"a"},"005655d"))),(0,n.kt)("li",{parentName:"ul"},"Update package.json ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9dc38165a95deca1faf2dfccdc03fd6cab3d8c54"},(0,n.kt)("inlineCode",{parentName:"a"},"9dc3816"))),(0,n.kt)("li",{parentName:"ul"},"feature(item): added themes to item icons #190 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a6a2907df09575a18fb6e81dc52e8d6651eff118"},(0,n.kt)("inlineCode",{parentName:"a"},"a6a2907"))),(0,n.kt)("li",{parentName:"ul"},"update storybook header.topdropdown ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e58ac0821af56c06272e3373383647cbbff20978"},(0,n.kt)("inlineCode",{parentName:"a"},"e58ac08"))),(0,n.kt)("li",{parentName:"ul"},"use volto-screen-helper width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea156aad1100166ba78635163cfacdcfb913c1d4"},(0,n.kt)("inlineCode",{parentName:"a"},"ea156aa"))),(0,n.kt)("li",{parentName:"ul"},"Add divider content for metadata field in Banner ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/327ad1c5fdca0d376d04fd36084b940e5dd016ab"},(0,n.kt)("inlineCode",{parentName:"a"},"327ad1c"))),(0,n.kt)("li",{parentName:"ul"},"rename to viewportWidth ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32162e7c695774bbb68ac63a0008e8b148f1e9f5"},(0,n.kt)("inlineCode",{parentName:"a"},"32162e7"))),(0,n.kt)("li",{parentName:"ul"},"don't connect component to store ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/470b8bade5e8f2eaabb20a7bb02c8e82ca42f8a0"},(0,n.kt)("inlineCode",{parentName:"a"},"470b8ba"))),(0,n.kt)("li",{parentName:"ul"},"Add end of line ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51639d804a2b84f66373fb77c569bcc43b22e303"},(0,n.kt)("inlineCode",{parentName:"a"},"51639d8"))),(0,n.kt)("li",{parentName:"ul"},"behave as mobile under 480 only ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/11b99e15cb83245a32bb04f3937f5b95a60b1e95"},(0,n.kt)("inlineCode",{parentName:"a"},"11b99e1"))),(0,n.kt)("li",{parentName:"ul"},"make it account for all mobile-s,m,l ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/69e23ae8d12042f241dc53c9e296c340d5b17089"},(0,n.kt)("inlineCode",{parentName:"a"},"69e23ae")))),(0,n.kt)("h3",{id:"045---2022-06-08"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.4.4...0.4.5"},"0.4.5")," - 2022-06-08"),(0,n.kt)("h4",{id:"-enhancements-45"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(tabs): Add style for tabs accordion template #187 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fb8adbf84ac564a14d45bb6e8f4e1661811672d5"},(0,n.kt)("inlineCode",{parentName:"a"},"fb8adbf"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): avoid react error by providing key prop to grid column ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef0b1937d614a889a0c2117e483a834ed1aec1e3"},(0,n.kt)("inlineCode",{parentName:"a"},"ef0b193")))),(0,n.kt)("h4",{id:"\ufe0f-others-39"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Cleanup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4b9637ebd2d6c015f8d4323551c6cbc4b7506df"},(0,n.kt)("inlineCode",{parentName:"a"},"d4b9637"))),(0,n.kt)("li",{parentName:"ul"},"Add style for tabs accordion template ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a10998372a268b99991f7dda55103149f29d00cb"},(0,n.kt)("inlineCode",{parentName:"a"},"a109983")))),(0,n.kt)("h3",{id:"044---2022-06-08"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.4.3...0.4.4"},"0.4.4")," - 2022-06-08"),(0,n.kt)("h4",{id:"-new-features-23"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(divider): create story for divider ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b10a2e08b14962bed9f13317754f4124ee60d313"},(0,n.kt)("inlineCode",{parentName:"a"},"b10a2e0")))),(0,n.kt)("h4",{id:"-bug-fixes-33"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(divider): restore space between classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c595c152c144463f33757157ed7d6797ae31ceed"},(0,n.kt)("inlineCode",{parentName:"a"},"c595c15"))),(0,n.kt)("li",{parentName:"ul"},"fix(divider): Text colors and transform ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e524e1002bb0700ea69782cf5a95c6073ab383d2"},(0,n.kt)("inlineCode",{parentName:"a"},"e524e10"))),(0,n.kt)("li",{parentName:"ul"},"fix(footer): story aria labels for social media links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/254bdc7ba944943f5d08a71f9d0a3a31bdc06044"},(0,n.kt)("inlineCode",{parentName:"a"},"254bdc7")))),(0,n.kt)("h4",{id:"-enhancements-46"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update logos and less structure ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/66b8e0f12825968d94f7d572f2823d9a8a3a239b"},(0,n.kt)("inlineCode",{parentName:"a"},"66b8e0f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): first footer updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d18a2ee59d0deb143075d8dfeb949898ad1f6399"},(0,n.kt)("inlineCode",{parentName:"a"},"d18a2ee"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): logo updates and adjustments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/101bc9dfe4136240457f335de867a83c28d59339"},(0,n.kt)("inlineCode",{parentName:"a"},"101bc9d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): use tokens and adjust spacing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2cb166949913f725271050e863b38e7630748135"},(0,n.kt)("inlineCode",{parentName:"a"},"2cb1669"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): moved SubFooter logic to SubFooter.jsx from Footer story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/902383a0bb3446dc69237099bd429ead5e30a6c1"},(0,n.kt)("inlineCode",{parentName:"a"},"902383a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Divider):add divider with content inside story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2d66dca901fa189d69b65239dc34b1969097be8"},(0,n.kt)("inlineCode",{parentName:"a"},"e2d66dc"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): added managed by section as properties ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9328fc3084baf22439e1892d256d9a167b911849"},(0,n.kt)("inlineCode",{parentName:"a"},"9328fc3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(divider): remove custom divider ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4870d2252ad216e82213fa1f94cc39609ae676d"},(0,n.kt)("inlineCode",{parentName:"a"},"d4870d2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Divider_:remove green color class & add tertiary ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/95f30186bc1768e08f00ad7d5ffa2a70402ac553"},(0,n.kt)("inlineCode",{parentName:"a"},"95f3018"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): use remix icons for social links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5ef9aa2cebb6f96857a1920cefbf7e367b4d7c28"},(0,n.kt)("inlineCode",{parentName:"a"},"5ef9aa2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Divider):remove clean class and use fitted prop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8d2be350dcc44fd56b5fbfb791fb6b2a45bd8a52"},(0,n.kt)("inlineCode",{parentName:"a"},"8d2be35"))),(0,n.kt)("li",{parentName:"ul"},"change(Divider): Rename color property to theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0deffc823609d23131a85bc180e4a3f5a67a64aa"},(0,n.kt)("inlineCode",{parentName:"a"},"0deffc8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update links and logo align ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7afbab9b37982a557ac8bfa4430205ce912c3b8b"},(0,n.kt)("inlineCode",{parentName:"a"},"7afbab9"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): tweaked column sizes to the values before my changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fdf271868e44bce2904cc28c6fa924ee4c9ba759"},(0,n.kt)("inlineCode",{parentName:"a"},"fdf2718"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): to latest figma design #182 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e0ba2b659db9dc1b140d853840a06bd3ce31cab"},(0,n.kt)("inlineCode",{parentName:"a"},"3e0ba2b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): move subfooter logic to the proper component #185 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/303457719128c9699dd34939bd8db2b647977667"},(0,n.kt)("inlineCode",{parentName:"a"},"3034577"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b0b872b1415c9792a5886f619195f9c0471ea564"},(0,n.kt)("inlineCode",{parentName:"a"},"b0b872b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(testimonial): update divider ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/784450abdf395318fe89d8d3d0a1e398393cc93c"},(0,n.kt)("inlineCode",{parentName:"a"},"784450a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(testimonial): changed divider color to secondary ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/84282f960ab22ccb8403e975c055c61d1023193a"},(0,n.kt)("inlineCode",{parentName:"a"},"84282f9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(divider): remove custom divider from theme config ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a0409e8df3c9ba043717140455369a3630f0da85"},(0,n.kt)("inlineCode",{parentName:"a"},"a0409e8")))),(0,n.kt)("h4",{id:"-documentation-changes-14"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(divider): switch to secondary color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/239844be374a2f6bc4667e7ab3d2f52bfdc181ad"},(0,n.kt)("inlineCode",{parentName:"a"},"239844b"))),(0,n.kt)("li",{parentName:"ul"},"docs(divider): showcase path fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5ea03f60034edc918054aa273e44b84b2537716"},(0,n.kt)("inlineCode",{parentName:"a"},"d5ea03f")))),(0,n.kt)("h4",{id:"\ufe0f-others-40"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Remove unnecessary spaces ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d137981430809345bfb3ad494e7ab981c93c3e51"},(0,n.kt)("inlineCode",{parentName:"a"},"d137981"))),(0,n.kt)("li",{parentName:"ul"},"lint fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/657cf4ed917c4ff992aa033c3d9f4884a949d86d"},(0,n.kt)("inlineCode",{parentName:"a"},"657cf4e"))),(0,n.kt)("li",{parentName:"ul"},"perf(storybook): added storybook favicon ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/38eabc3124c85dd56bf5c68c0fb1e967c39055ec"},(0,n.kt)("inlineCode",{parentName:"a"},"38eabc3")))),(0,n.kt)("h3",{id:"043---2022-06-03"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.4.2...0.4.3"},"0.4.3")," - 2022-06-03"),(0,n.kt)("h4",{id:"-bug-fixes-34"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(edit): Fix columns/accordion inner toolbar padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fafbb525baa60c339906dc6a33d2f9418d050be6"},(0,n.kt)("inlineCode",{parentName:"a"},"fafbb52")))),(0,n.kt)("h4",{id:"-enhancements-47"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): completed removal of description from guides ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/42424b9213ece8d8df84d40f1b73e142cb0ffc6b"},(0,n.kt)("inlineCode",{parentName:"a"},"42424b9")))),(0,n.kt)("h3",{id:"042---2022-06-02"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.4.1...0.4.2"},"0.4.2")," - 2022-06-02"),(0,n.kt)("h4",{id:"-enhancements-48"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): moved color swatches around in the color guide ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8a395fce52a32cf92449a24d3d4cce5abf25a284"},(0,n.kt)("inlineCode",{parentName:"a"},"8a395fc"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): removed description from components and introduced category listing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f220bf0785f5aaede8c25c4164120b09de67b018"},(0,n.kt)("inlineCode",{parentName:"a"},"f220bf0"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): rename gap to space and added em spaces ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f5b042d311518ec3fb32c7f259c39ff62d4547f8"},(0,n.kt)("inlineCode",{parentName:"a"},"f5b042d"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): moved extra docs to webdev section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1ce0797b91418272e4e405467cd1468292620005"},(0,n.kt)("inlineCode",{parentName:"a"},"1ce0797"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): moved md_components files into webdev/md_components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/73c1c08a270d504fa6f2ba2579bcb3e6e25fb112"},(0,n.kt)("inlineCode",{parentName:"a"},"73c1c08"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): added category yml for all sections ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/17405728e3f44828da50890b9fc0f4e8a07f8bf2"},(0,n.kt)("inlineCode",{parentName:"a"},"1740572"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): color guideline updates and spacing tokens documentation #148 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c1154ba172c3b3b40b565c2bcb590f1a5e6b25a4"},(0,n.kt)("inlineCode",{parentName:"a"},"c1154ba"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): modified story links to avoid broken usage tabs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/78dc8d8f4e7cade3ab0e911e6dc002eefc1e7986"},(0,n.kt)("inlineCode",{parentName:"a"},"78dc8d8"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): renamed several file id's so that they match the incremental naming sequence ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/11299c9a4c41ca901926f852227dbca0bc1aee17"},(0,n.kt)("inlineCode",{parentName:"a"},"11299c9")))),(0,n.kt)("h4",{id:"-documentation-changes-15"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(Docusaurus): timeline, testimonial, quote and tags ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aaa54ecbe182872ffc7fff275d5065ebe790d348"},(0,n.kt)("inlineCode",{parentName:"a"},"aaa54ec"))),(0,n.kt)("li",{parentName:"ul"},"docs(spacing): add relative gap tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/92abc8fff2c7006e2c64684048e7783216a230bb"},(0,n.kt)("inlineCode",{parentName:"a"},"92abc8f"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): updated colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a28c99e60867c1eaa1b7b68d4154ccaa8c9ef958"},(0,n.kt)("inlineCode",{parentName:"a"},"a28c99e"))),(0,n.kt)("li",{parentName:"ul"},"docs(tags/content): new page about tags and content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/60be40268a77606c53fc45641bc22166b50b75e7"},(0,n.kt)("inlineCode",{parentName:"a"},"60be402"))),(0,n.kt)("li",{parentName:"ul"},"docs(Docusaurus): labeled icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6a0f61ede3a36c7d66d9b3091b93b0b5ff9a445"},(0,n.kt)("inlineCode",{parentName:"a"},"f6a0f61"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): add font size and line height tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ff65e47cfe56eb3efe976300b764ba13f8685ce"},(0,n.kt)("inlineCode",{parentName:"a"},"2ff65e4"))),(0,n.kt)("li",{parentName:"ul"},"docs(spacing): add spacing gap tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2d53727f8e817588421efea464e849c9f9e16dce"},(0,n.kt)("inlineCode",{parentName:"a"},"2d53727"))),(0,n.kt)("li",{parentName:"ul"},"docs(spacing): add missing gaps ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/442db468830150c8e4ad5f91775fc5b3c47dd655"},(0,n.kt)("inlineCode",{parentName:"a"},"442db46"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): minor fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e66513f08cff598881ce1051b482ddadf8e0593"},(0,n.kt)("inlineCode",{parentName:"a"},"6e66513"))),(0,n.kt)("li",{parentName:"ul"},"docs(spacing): aligned images ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e946fe59457b861a31939e99adf4b380777e01e0"},(0,n.kt)("inlineCode",{parentName:"a"},"e946fe5"))),(0,n.kt)("li",{parentName:"ul"},"docs(spacing): new image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fcd3294d53db76580b8bffc9678a09fd65b33113"},(0,n.kt)("inlineCode",{parentName:"a"},"fcd3294")))),(0,n.kt)("h4",{id:"\ufe0f-others-41"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"merge changes from develop into docusaurus token documentation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a9401384ddf5fcfbf29e50d34f3d7851be85f19a"},(0,n.kt)("inlineCode",{parentName:"a"},"a940138"))),(0,n.kt)("li",{parentName:"ul"},"perf(docs): restructuring order ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f4134d81d1cc59b8ba0d8669415b5eb31c0513d"},(0,n.kt)("inlineCode",{parentName:"a"},"8f4134d")))),(0,n.kt)("h3",{id:"041---2022-06-02"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.4.0...0.4.1"},"0.4.1")," - 2022-06-02"),(0,n.kt)("h4",{id:"-new-features-24"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(languageLabeledIcon) : add new component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/110558eeec37d5b5f616a95298a313ba230dd6f4"},(0,n.kt)("inlineCode",{parentName:"a"},"110558e"))),(0,n.kt)("li",{parentName:"ul"},"feat(LanguageLabeledIcon):add new component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d00200c278e1dab02b449b460a325e0f2e7b8ccd"},(0,n.kt)("inlineCode",{parentName:"a"},"d00200c"))),(0,n.kt)("li",{parentName:"ul"},"feat(newTabLabeledIcon) : add new component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f5cd31257a306a58c1d9cdbf7cb428701412369"},(0,n.kt)("inlineCode",{parentName:"a"},"8f5cd31"))),(0,n.kt)("li",{parentName:"ul"},"feat(labeledIconGroup) : add new component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/787d648342d78c4f9d28fde9d08e83089ef7b08f"},(0,n.kt)("inlineCode",{parentName:"a"},"787d648"))),(0,n.kt)("li",{parentName:"ul"},"feat(DownLoadLabeledIcon) : add new component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6ea2fa1ec17ce235401a8ac741afa8fede920d26"},(0,n.kt)("inlineCode",{parentName:"a"},"6ea2fa1")))),(0,n.kt)("h4",{id:"-bug-fixes-35"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(LabeledIcon) : fix lint errors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91b042f8c16bd3e99659c1c24a5f2a946c72b03f"},(0,n.kt)("inlineCode",{parentName:"a"},"91b042f"))),(0,n.kt)("li",{parentName:"ul"},"fix(LabeledIconGroup) : fix links for tests ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/daa10653ca37f3e83302e2ebcc566b5f5ec4c4d9"},(0,n.kt)("inlineCode",{parentName:"a"},"daa1065"))),(0,n.kt)("li",{parentName:"ul"},"fix(LanguageLabeledIcon):bug fix & languages change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1436e2bc270f8f079f07b7909254bd2e6e087084"},(0,n.kt)("inlineCode",{parentName:"a"},"1436e2b"))),(0,n.kt)("li",{parentName:"ul"},"fix(LabeledIconGroup):fix based on Langauge & Download Labeled icon components changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3015864ce740f534aa204402f85a9f392e342513"},(0,n.kt)("inlineCode",{parentName:"a"},"3015864"))),(0,n.kt)("li",{parentName:"ul"},"fix(newTabLabeledIcon) : add link item ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b1a9ada3dd7dae9e1841cfde5319a6ab37b15de2"},(0,n.kt)("inlineCode",{parentName:"a"},"b1a9ada"))),(0,n.kt)("li",{parentName:"ul"},"fix(Labeled Icons):minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/00f3022cdc2bfad634707f0d6d05768868f599be"},(0,n.kt)("inlineCode",{parentName:"a"},"00f3022")))),(0,n.kt)("h4",{id:"-enhancements-49"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcons): adjust new tab labeled icon to figma and replace px with rems ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/904615d789ea711678f43ce9f9d02a450289031f"},(0,n.kt)("inlineCode",{parentName:"a"},"904615d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(LanguageLabeledIcon):implement with pop up ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0f3dd8f0388484f94351a0ab0798ab53e84c9229"},(0,n.kt)("inlineCode",{parentName:"a"},"0f3dd8f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcon): add group wrapper in labeled icon stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4b7dd314230145b6239fd800d41f546ab5d9eebb"},(0,n.kt)("inlineCode",{parentName:"a"},"4b7dd31"))),(0,n.kt)("li",{parentName:"ul"},"refactor(DownloadLabeledIcon):implement with pop up ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aa61f9b7d449c08c08bc4c004da6a0458598c828"},(0,n.kt)("inlineCode",{parentName:"a"},"aa61f9b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcons): adjust language labeled icon to figma ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5741e3d2e95665ef12670335b12d29cfbf998fdc"},(0,n.kt)("inlineCode",{parentName:"a"},"5741e3d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcons): adjust download icon to figma and replace px with rems ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ae85307a62526fed75ef0b1d37ad59076370b5a"},(0,n.kt)("inlineCode",{parentName:"a"},"4ae8530"))),(0,n.kt)("li",{parentName:"ul"},"refactor(LanguageLabeledIcons):minor storybook change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/78f55442a80cbc2f716ba81274ed08204e3c502a"},(0,n.kt)("inlineCode",{parentName:"a"},"78f5544"))),(0,n.kt)("li",{parentName:"ul"},"refactor(LanguageLabeledIcon): set language code to uppercase and minor storybook change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac286931282c0a69bc6d7803e96cbe302db8994f"},(0,n.kt)("inlineCode",{parentName:"a"},"ac28693"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcon): adjust paddings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9c1ecddc52c81be1d952d0af67862a284eba9eec"},(0,n.kt)("inlineCode",{parentName:"a"},"9c1ecdd"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcons): update margins for group labeled icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5fa5ca9103a5d8ad1510c90cc8c46d0c82abcc63"},(0,n.kt)("inlineCode",{parentName:"a"},"5fa5ca9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcons): add variable for icon color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f9d3cba5115c5c91aaaca49c1f834950400673a"},(0,n.kt)("inlineCode",{parentName:"a"},"9f9d3cb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcons): update colors on download links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c04264229c91bfdea927fd22f4ee1e8ddbcebd5c"},(0,n.kt)("inlineCode",{parentName:"a"},"c042642")))),(0,n.kt)("h4",{id:"-internal-changes-16"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(labeledIconGroup) : lint changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/535cee4795dff75b35856cb4406a9bd33ee07ca4"},(0,n.kt)("inlineCode",{parentName:"a"},"535cee4"))),(0,n.kt)("li",{parentName:"ul"},"style(downloadLabeledIcon) : fix styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d8e3acb3bac1a4174d4bb526d6188cb5e5f8faa"},(0,n.kt)("inlineCode",{parentName:"a"},"6d8e3ac"))),(0,n.kt)("li",{parentName:"ul"},"style(downloadLabeledIcon) : fix alignment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/455801701d2958515885ba2c398312f0c56057b0"},(0,n.kt)("inlineCode",{parentName:"a"},"4558017"))),(0,n.kt)("li",{parentName:"ul"},"chore(LabeledIconGroup) : lint changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab364763bb2526adbbb7fc3c656a16b497568940"},(0,n.kt)("inlineCode",{parentName:"a"},"ab36476")))),(0,n.kt)("h3",{id:"040---2022-06-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.3.1...0.4.0"},"0.4.0")," - 2022-06-01"),(0,n.kt)("h4",{id:"-new-features-25"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(Carousel): create carousel for cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2b0d73798b4fcbf2897d7a8167d9b4d3b3374fb2"},(0,n.kt)("inlineCode",{parentName:"a"},"2b0d737"))),(0,n.kt)("li",{parentName:"ul"},"feat(ItemwithIcons): Initial Item group with icons, new item variation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7f4ea476264856845a07cd24be6ec86ccd21ed8d"},(0,n.kt)("inlineCode",{parentName:"a"},"7f4ea47"))),(0,n.kt)("li",{parentName:"ul"},"feat(utilities): add file and basic utilities ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/05c88b294a49590e3fb355fb6e113f5020442915"},(0,n.kt)("inlineCode",{parentName:"a"},"05c88b2"))),(0,n.kt)("li",{parentName:"ul"},"feat(utilities): add file with basic utilities classes #173 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/855185ff22c77efb75cc5c7850d181254b4c4927"},(0,n.kt)("inlineCode",{parentName:"a"},"855185f")))),(0,n.kt)("h4",{id:"-bug-fixes-36"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(tokens): hsla function for shadows ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8e5d37a6e88321b1e2daf995b407c4ddd6e866e"},(0,n.kt)("inlineCode",{parentName:"a"},"b8e5d37"))),(0,n.kt)("li",{parentName:"ul"},"fix(tokens): remove css var from less file ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a9c422476b412287713a6b475406615c3aed2aca"},(0,n.kt)("inlineCode",{parentName:"a"},"a9c4224"))),(0,n.kt)("li",{parentName:"ul"},"fix(carousel):add storybook controls descriptions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/269a60383ed1e54fc57e26d4eed6b37d1da32236"},(0,n.kt)("inlineCode",{parentName:"a"},"269a603"))),(0,n.kt)("li",{parentName:"ul"},"fix(item): remove image width css from item.less ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7b21cb2d5ddf6a6f72646f47fd268a0bd7af757d"},(0,n.kt)("inlineCode",{parentName:"a"},"7b21cb2"))),(0,n.kt)("li",{parentName:"ul"},"fix(table): Set responsive breakpoint to @tabletBreakpoint ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/067e01842030bfa5639e2a55cb8af5047bb2996f"},(0,n.kt)("inlineCode",{parentName:"a"},"067e018")))),(0,n.kt)("h4",{id:"-enhancements-50"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(item): import item.less in theme definitions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c51637480192dbece828616010174648ac865e2e"},(0,n.kt)("inlineCode",{parentName:"a"},"c516374"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Label):add corner,ribbon & basic label stories and styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2bbbb947113a59127f91b86917ef0edbf36ab16"},(0,n.kt)("inlineCode",{parentName:"a"},"e2bbbb9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Label):style changes based on label importance class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce4d5d1a5bf1b1183242a253e37c509d61f82b8c"},(0,n.kt)("inlineCode",{parentName:"a"},"ce4d5d1"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): rename gap to space and added em spaces ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/719efc44070ef87f049a92e4da96bb111e9fc8ff"},(0,n.kt)("inlineCode",{parentName:"a"},"719efc4"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): add classes for size, set default to tile and add controls for grouped items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5a0405abba4e5f5d36f899dc9e47f43a96d5e49"},(0,n.kt)("inlineCode",{parentName:"a"},"d5a0405"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): add borders, shadows, shapes and z-index tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7069106c2b0ada9cdbad63249b4ada7fde72e05f"},(0,n.kt)("inlineCode",{parentName:"a"},"7069106"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): name spacing tokens gaps and added missing values up to 80px as documented ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9fbd912a6f027150149d82678f88885a939120b0"},(0,n.kt)("inlineCode",{parentName:"a"},"9fbd912"))),(0,n.kt)("li",{parentName:"ul"},"refactor(quote): Rename sourceInfo to extra info ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/76c2b400de4814fe79f303bfd2a82842c848231c"},(0,n.kt)("inlineCode",{parentName:"a"},"76c2b40"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): WIP replacing unstackable with row ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e3a44de4b2dd26667e80e0d131c55b08f3c527d9"},(0,n.kt)("inlineCode",{parentName:"a"},"e3a44de"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tocens): add color design tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/13bb165e103a25aadb9da6414773dc0d35081d88"},(0,n.kt)("inlineCode",{parentName:"a"},"13bb165"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): adjust margins to match figma designs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6334581b336a2f486e85199f371126beea47b92f"},(0,n.kt)("inlineCode",{parentName:"a"},"6334581"))),(0,n.kt)("li",{parentName:"ul"},"refactor(carousel): remove title from story and color on card hover ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/12a1d7c3bd5e7ba6edf4eb20a2d7a6f8f22955f9"},(0,n.kt)("inlineCode",{parentName:"a"},"12a1d7c"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): updated sizes with 4-8-16px increments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f53d655df2b24053a5d331c56dfd14bd3602dfd"},(0,n.kt)("inlineCode",{parentName:"a"},"1f53d65"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): added size tokens to be used for width of elements ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cda5dea1f6ad1ae980c89999d323d7b385894025"},(0,n.kt)("inlineCode",{parentName:"a"},"cda5dea"))),(0,n.kt)("li",{parentName:"ul"},"change(utilities): values need important rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/96150d9a22cb6be6f338f1e9d052cbd65e3602fc"},(0,n.kt)("inlineCode",{parentName:"a"},"96150d9"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): added also rem space values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aedbbddaf7f8be88ed2f8a2b8c21b60752896c53"},(0,n.kt)("inlineCode",{parentName:"a"},"aedbbdd"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): updated z-index tokens with negative values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/404efe4244d67276b435e60a1d7a69aaa90e3d8a"},(0,n.kt)("inlineCode",{parentName:"a"},"404efe4"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): add 14px font size token ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8d8695dce62e7f29af01447308460e4fe3f72b21"},(0,n.kt)("inlineCode",{parentName:"a"},"8d8695d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): restructured and improved sections navigation #174 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b47b0266ffd6baeaf1a5aea1a7ab22c909976de1"},(0,n.kt)("inlineCode",{parentName:"a"},"b47b026"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): add 12 and 14px font size token #176 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/368114729536f03dd85c2d3565b984c3bdfe3a72"},(0,n.kt)("inlineCode",{parentName:"a"},"3681147"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): remove conditional border radius ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f0fe5ada7b74e9c87623dd2b2774283dd89b9a58"},(0,n.kt)("inlineCode",{parentName:"a"},"f0fe5ad")))),(0,n.kt)("h4",{id:"-documentation-changes-16"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(website): created new sections, improved website navigation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/243f0be4d7fa6e988da0ca0f586f5ea478573eef"},(0,n.kt)("inlineCode",{parentName:"a"},"243f0be"))),(0,n.kt)("li",{parentName:"ul"},"docs(homepage): adding design system homepage with links for upcoming sections ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c9a968508acff74d1182e68cf049046dafd564c5"},(0,n.kt)("inlineCode",{parentName:"a"},"c9a9685"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): copyedit, improved navigation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/998762a5bd40d08f619c00743b66d82b43aed653"},(0,n.kt)("inlineCode",{parentName:"a"},"998762a"))),(0,n.kt)("li",{parentName:"ul"},"docs(website): restructuring, moved current DS docs to new folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8bb612f1313dfc739d7912aa2e3252f468e1122f"},(0,n.kt)("inlineCode",{parentName:"a"},"8bb612f"))),(0,n.kt)("li",{parentName:"ul"},"docs(homepage): copy editing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee37d6f1d282b973af744f4305c0eb94c0993113"},(0,n.kt)("inlineCode",{parentName:"a"},"ee37d6f")))),(0,n.kt)("h4",{id:"\ufe0f-others-42"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Release 0.4.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f4bc50928ab877f3670b181dbe6e8cfff7fa2daa"},(0,n.kt)("inlineCode",{parentName:"a"},"f4bc509"))),(0,n.kt)("li",{parentName:"ul"},"feature(homepage): added Item group with icons #167 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ec99f53aeb183b24073be4014a9c2ec30d5235c"},(0,n.kt)("inlineCode",{parentName:"a"},"2ec99f5"))),(0,n.kt)("li",{parentName:"ul"},"feature(tokens): added borders, z-index, shadows tokens #171 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/74c178837cedc7ee9fc55effde1096dc03245574"},(0,n.kt)("inlineCode",{parentName:"a"},"74c1788"))),(0,n.kt)("li",{parentName:"ul"},"feature(tokens): added initial color design tokens #169 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/da3eae05d07783aa5eadaed5d508ee3be8acc47d"},(0,n.kt)("inlineCode",{parentName:"a"},"da3eae0"))),(0,n.kt)("li",{parentName:"ul"},"perf(carousel): added slick library ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca9be5125efa864bc30a0178274d744c5b2bc500"},(0,n.kt)("inlineCode",{parentName:"a"},"ca9be51")))),(0,n.kt)("h3",{id:"031---2022-05-19"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.3.0...0.3.1"},"0.3.1")," - 2022-05-19"),(0,n.kt)("h4",{id:"-bug-fixes-37"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(input,segment): toggle inputs and padding fixes within Volto sidebar forms ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/de030d617325a8f9d028a5c1615faa160fcdd763"},(0,n.kt)("inlineCode",{parentName:"a"},"de030d6")))),(0,n.kt)("h4",{id:"-enhancements-51"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(login): restored width of login container to 376px ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0564293346b2402c3c86009b61066da4200662b8"},(0,n.kt)("inlineCode",{parentName:"a"},"0564293")))),(0,n.kt)("h3",{id:"030---2022-05-17"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.2.4...0.3.0"},"0.3.0")," - 2022-05-17"),(0,n.kt)("h4",{id:"-new-features-26"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(Callout):create Callout component with Blockquote style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3d486b1c2c7f74ee8bc4b3a5e1bf3993ac98f6dd"},(0,n.kt)("inlineCode",{parentName:"a"},"3d486b1"))),(0,n.kt)("li",{parentName:"ul"},"feat(callout): Align the Callout component with Volto slate component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e9343ff7008cd3d60700929e8861c7bdd06df4d3"},(0,n.kt)("inlineCode",{parentName:"a"},"e9343ff")))),(0,n.kt)("h4",{id:"-bug-fixes-38"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(testimonial): fix storybook arg names ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b9df52f7151ef759fd672d365b2d74f6db535ad0"},(0,n.kt)("inlineCode",{parentName:"a"},"b9df52f"))),(0,n.kt)("li",{parentName:"ul"},"fix(table): tweak responsive table for extra long headers ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7f9f9e25f7c57d4bf7edd2546a7579b892867b5c"},(0,n.kt)("inlineCode",{parentName:"a"},"7f9f9e2"))),(0,n.kt)("li",{parentName:"ul"},"fix(quote): fix color and padding issue ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/310d6b37bdf5df3da2d2103eab8f4fa5020c95ab"},(0,n.kt)("inlineCode",{parentName:"a"},"310d6b3"))),(0,n.kt)("li",{parentName:"ul"},"fix(accordion): Fix accordion active title color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/57af1650a0b830e01c79e21b130784190defbcc0"},(0,n.kt)("inlineCode",{parentName:"a"},"57af165"))),(0,n.kt)("li",{parentName:"ul"},"fix(testimonial): remove info arguement ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9593d95f6352fb5aea48c3611b27b4bc6a9ae7e4"},(0,n.kt)("inlineCode",{parentName:"a"},"9593d95")))),(0,n.kt)("h4",{id:"-enhancements-52"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(Table):add responsive mobile table story and styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aed69e698e5b89e33a4c331570755934267492af"},(0,n.kt)("inlineCode",{parentName:"a"},"aed69e6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(testimonial): adjust to volto design | fix avatar image size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/546070e494ad187c50913b5742dab49ce5475a84"},(0,n.kt)("inlineCode",{parentName:"a"},"546070e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Quote):rename Pullquote component to Quote ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9384a0c129b8e4eed637e51a9669c41d8ade69d4"},(0,n.kt)("inlineCode",{parentName:"a"},"9384a0c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Quote):rename Quote.Metadata to Quote.SourceInfo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dfae8b1c147659d24dfd1a13fb4c3098e5865a12"},(0,n.kt)("inlineCode",{parentName:"a"},"dfae8b1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Quote): rename Author to Source ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d400f6a0ec0062f58782b4e170f4a1a9a31c56c"},(0,n.kt)("inlineCode",{parentName:"a"},"6d400f6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Quote):move Testimonial component under Quote folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2467c2089577d67ef5689a2507cb860a837f6a0"},(0,n.kt)("inlineCode",{parentName:"a"},"e2467c2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(testimonial): readjust rounded card ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b41933417a44dabcf829a3346d91c142dd6472d3"},(0,n.kt)("inlineCode",{parentName:"a"},"b419334"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Table):wrap table with semantic ui container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24ac2bb4813df33547f684220e1e12af5ca6df7e"},(0,n.kt)("inlineCode",{parentName:"a"},"24ac2bb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Testimonial):minor storybook bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7b6d128c6be3b2481d4765cebca82af6cafbea05"},(0,n.kt)("inlineCode",{parentName:"a"},"7b6d128"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Callout): wrap story with semantic ui container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ead362d88f43fa1380e8be5481cbc38c055060f8"},(0,n.kt)("inlineCode",{parentName:"a"},"ead362d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(quote): update action name to match the functionality ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/caf2e359cada8056f280d2cd137776d64f82a2af"},(0,n.kt)("inlineCode",{parentName:"a"},"caf2e35"))),(0,n.kt)("li",{parentName:"ul"},"refactor(table): add borders to responsive table with celled attribute ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8a71a670fb34a11fbe4cef7365b91c6be84b5b54"},(0,n.kt)("inlineCode",{parentName:"a"},"8a71a67"))),(0,n.kt)("li",{parentName:"ul"},"change(table): make use of headerSortableWhiteSpace variable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fd836fbe82e92864a628bf4d9d3093674890f722"},(0,n.kt)("inlineCode",{parentName:"a"},"fd836fb"))),(0,n.kt)("li",{parentName:"ul"},"change(table): use the @mobileLandscapeBreakpoint for max 480px media query ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/90880ab324b6a66c7741819dd0d913504751454f"},(0,n.kt)("inlineCode",{parentName:"a"},"90880ab"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Quote):rename pullquote to Quote in Testimonial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f54da192ab3b0823b0d6c77254f8954ab94506c8"},(0,n.kt)("inlineCode",{parentName:"a"},"f54da19"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Testimonial): change card class name ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e995c32bc70780e4315c4dc02d6b6fa9a0c5b29d"},(0,n.kt)("inlineCode",{parentName:"a"},"e995c32"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Testimonial): prettier changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/904594b9814c3d8900656f0e4c8d3a99481efe94"},(0,n.kt)("inlineCode",{parentName:"a"},"904594b")))),(0,n.kt)("h4",{id:"\ufe0f-others-43"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feature(tokens): added tokens folder for design tokens we can use in the system ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a542172cfd84dde0286b4332e66a617a1f3d13bf"},(0,n.kt)("inlineCode",{parentName:"a"},"a542172"))),(0,n.kt)("li",{parentName:"ul"},"perf(lint): fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2ef3abb9daa8fee3dd103adc14246c412951427"},(0,n.kt)("inlineCode",{parentName:"a"},"f2ef3ab"))),(0,n.kt)("li",{parentName:"ul"},"Release 0.3.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8724b2809027b2e359dcd64e418a33cade4ad487"},(0,n.kt)("inlineCode",{parentName:"a"},"8724b28")))),(0,n.kt)("h3",{id:"024---2022-05-13"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.2.3...0.2.4"},"0.2.4")," - 2022-05-13"),(0,n.kt)("h4",{id:"-enhancements-53"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(segment): brought back overrides from pastanaga into our theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/14efd021f81898bb0f2d3f1a2e8677445420591a"},(0,n.kt)("inlineCode",{parentName:"a"},"14efd02"))),(0,n.kt)("li",{parentName:"ul"},"change(container): removed padding from containers restoring thus the defaults ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c2ed813cf2f7ce284e33f2e94e02ff16678c2d05"},(0,n.kt)("inlineCode",{parentName:"a"},"c2ed813"))),(0,n.kt)("li",{parentName:"ul"},"change(grid-story): added container as grid width is influenced by container width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/459f4813ee3c5325a3db22d417ac5f23063bd4d2"},(0,n.kt)("inlineCode",{parentName:"a"},"459f481"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumb): removed padding from breadcrumb added by container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5df5675a519085badc030416e5bb784a9f73321"},(0,n.kt)("inlineCode",{parentName:"a"},"c5df567"))),(0,n.kt)("li",{parentName:"ul"},"change(container): modified all outputted widths to align to grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f29cefa4bfee1fe50844c8450de39ef4b0915d4"},(0,n.kt)("inlineCode",{parentName:"a"},"9f29cef"))),(0,n.kt)("li",{parentName:"ul"},"change(breakpoints): restore Semantic UI breakpoints, adding extra needed values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e7f5b1e4fac6453458078bb02cdc66c328843b59"},(0,n.kt)("inlineCode",{parentName:"a"},"e7f5b1e"))),(0,n.kt)("li",{parentName:"ul"},"change(container): restore maxWidth to 100% now that the last value is 1120px ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8b55c58d3bbc8967b20de19a828aedd2f1473ee5"},(0,n.kt)("inlineCode",{parentName:"a"},"8b55c58"))),(0,n.kt)("li",{parentName:"ul"},"change(header): wrap header globalnav links useful for editing section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/10d4f56624510eb63155ab330dcf0475b0728ed4"},(0,n.kt)("inlineCode",{parentName:"a"},"10d4f56"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumb): added vertical variant to the breadcrumbs like we do in Volto ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f405f8437be6be221b055a41c5d391f4cc94385d"},(0,n.kt)("inlineCode",{parentName:"a"},"f405f84"))),(0,n.kt)("li",{parentName:"ul"},"change(breakpoints): added also contentBreakpoint for backward compatibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b6c9212378a37639e6154d8d8e837169bcbac8b5"},(0,n.kt)("inlineCode",{parentName:"a"},"b6c9212")))),(0,n.kt)("h4",{id:"\ufe0f-others-44"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"[JENKINSFILE]"," Add failure comment, no jenkins fail ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c325bf14f3fb0da150f2a56cda0a9f03d8d8a628"},(0,n.kt)("inlineCode",{parentName:"a"},"c325bf1"))),(0,n.kt)("li",{parentName:"ul"},"prettier changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/134da52549b9d5eac5a12b7ad3005073500ac2c4"},(0,n.kt)("inlineCode",{parentName:"a"},"134da52"))),(0,n.kt)("li",{parentName:"ul"},"[JENKINSFILE]"," format PR comments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/739438c64950c745d630d1998314a2bed595b23a"},(0,n.kt)("inlineCode",{parentName:"a"},"739438c"))),(0,n.kt)("li",{parentName:"ul"},"[JENKINSFILE]"," mention comment author in comment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/39a26aa1ff0f35e93e8df9f442c29c5ab79ff493"},(0,n.kt)("inlineCode",{parentName:"a"},"39a26aa"))),(0,n.kt)("li",{parentName:"ul"},"[JENKINSFILE]"," remove debug, add error per stage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/903eecdb6bcbb8d73cff5e447d80c85e2a2c906d"},(0,n.kt)("inlineCode",{parentName:"a"},"903eecd")))),(0,n.kt)("h3",{id:"023---2022-04-29"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.2.2...0.2.3"},"0.2.3")," - 2022-04-29"),(0,n.kt)("h4",{id:"-new-features-27"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(CallToAction):add feat call to action ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab53642f27c996f929ff871d0794add39bab6c23"},(0,n.kt)("inlineCode",{parentName:"a"},"ab53642")))),(0,n.kt)("h4",{id:"-enhancements-54"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(button): add container to stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6c02c1953e102f2d90ab23023d6b4dfc738ced2e"},(0,n.kt)("inlineCode",{parentName:"a"},"6c02c19"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tab): update vertical tab columns and content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b473fabee196a3ec420e29160448d2be3d1685cc"},(0,n.kt)("inlineCode",{parentName:"a"},"b473fab"))),(0,n.kt)("li",{parentName:"ul"},'refactor(call to action):render call to action with Button as="a" ',(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e7dfabfc2f006505b0f1c802dc6fb48611518bcb"},(0,n.kt)("inlineCode",{parentName:"a"},"e7dfabf"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button): update inverted button colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c822021ab37939632416ce74c0cc88a64b98a3c1"},(0,n.kt)("inlineCode",{parentName:"a"},"c822021"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Tab):scrollbar change in mobile & vertical tab fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0e34cbf459e67b6910217f30a44a1e81f33df622"},(0,n.kt)("inlineCode",{parentName:"a"},"0e34cbf"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): added icon class to share icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48e866e4251dd517c0477cd5a42cec1a98e2f16d"},(0,n.kt)("inlineCode",{parentName:"a"},"48e866e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Button): move button to forms folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/94996fcdf1ea7e55c63dd44e10edf1b44b9bdef5"},(0,n.kt)("inlineCode",{parentName:"a"},"94996fc"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Tab):minor change in secondary pointing menu variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/280b6c41a2107bccb38500f54eb5663ef62c7ae3"},(0,n.kt)("inlineCode",{parentName:"a"},"280b6c4")))),(0,n.kt)("h4",{id:"-documentation-changes-17"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(button): import call to action stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e4eed44e3519ae3dba7d16e252271a964fcb7a4b"},(0,n.kt)("inlineCode",{parentName:"a"},"e4eed44")))),(0,n.kt)("h3",{id:"022---2022-04-22"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.2.1...0.2.2"},"0.2.2")," - 2022-04-22"),(0,n.kt)("h4",{id:"-bug-fixes-39"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(publicationCard): restore line endings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/582859e0ab4fa969662d4cf3e60fe75b160f052a"},(0,n.kt)("inlineCode",{parentName:"a"},"582859e"))),(0,n.kt)("li",{parentName:"ul"},"fix(form): added back overrides from Pastanaga theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a3f7ff810cdeb55b009c2dadc6753d01bbd10d8c"},(0,n.kt)("inlineCode",{parentName:"a"},"a3f7ff8"))),(0,n.kt)("li",{parentName:"ul"},"fix(OrderedList) : add list only if sub list exists ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8acbc8d5a492b411b169b106ab64bb78563f891f"},(0,n.kt)("inlineCode",{parentName:"a"},"8acbc8d"))),(0,n.kt)("li",{parentName:"ul"},"fix(label): update highlight label color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d55bbb03a5d28b2f269c1a1ca447c67dcdc7a748"},(0,n.kt)("inlineCode",{parentName:"a"},"d55bbb0"))),(0,n.kt)("li",{parentName:"ul"},"fix(publication card): run prettier ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/81a5bfc123ce69c44562a5585e41a630fe0bbf5a"},(0,n.kt)("inlineCode",{parentName:"a"},"81a5bfc"))),(0,n.kt)("li",{parentName:"ul"},"fix(avatar) : fix naming convention for arg ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/84fc5fa8faa7887f45cd52e58aa6fa6f8b951d26"},(0,n.kt)("inlineCode",{parentName:"a"},"84fc5fa"))),(0,n.kt)("li",{parentName:"ul"},"fix(tab): restore mobile font sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/58f39be02a45ade92873b86597c33763379e0f44"},(0,n.kt)("inlineCode",{parentName:"a"},"58f39be"))),(0,n.kt)("li",{parentName:"ul"},"fix(addForm): add min height to add form and fixed block chooser overflow ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca4415d49b973378894ec9270501beafbefff776"},(0,n.kt)("inlineCode",{parentName:"a"},"ca4415d"))),(0,n.kt)("li",{parentName:"ul"},"fix(OrderedList): adjust margins to fourth sublists ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/663d384790920f164d51edb304c411275972fbb7"},(0,n.kt)("inlineCode",{parentName:"a"},"663d384"))),(0,n.kt)("li",{parentName:"ul"},"fix(dropdown): being hidden because of third party css ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d353dfd65e93d08a3c8584adeeebea50bf7efe8"},(0,n.kt)("inlineCode",{parentName:"a"},"7d353df"))),(0,n.kt)("li",{parentName:"ul"},"fix(modal): overflow hidden as clearfix of last child from modal ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4923f5165a0a7e8d2dd33ea4c35f9f951372909"},(0,n.kt)("inlineCode",{parentName:"a"},"b4923f5"))),(0,n.kt)("li",{parentName:"ul"},"fix(RelatedContent):fix merge conflict ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/adc34bfdac7d668aa27578eb2a4844c136e0360f"},(0,n.kt)("inlineCode",{parentName:"a"},"adc34bf"))),(0,n.kt)("li",{parentName:"ul"},"fix(button): labeled class needs to be placed after left or right keyword ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53d1204fe52665fe1023747da359d3100d45e58f"},(0,n.kt)("inlineCode",{parentName:"a"},"53d1204")))),(0,n.kt)("h4",{id:"-enhancements-55"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(card): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e10e3d610a313c4e1995676130e2677f0ebab070"},(0,n.kt)("inlineCode",{parentName:"a"},"e10e3d6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add card variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e16d05b4afa678b9089987b42a8257323a78093f"},(0,n.kt)("inlineCode",{parentName:"a"},"e16d05b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): remove stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0deb0cab6d7fd73957b149325960c266c33cdc6f"},(0,n.kt)("inlineCode",{parentName:"a"},"0deb0ca"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):delete primary and secondary card stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f95d227a026ecc34b29cc3e4938c3d13906cfd8"},(0,n.kt)("inlineCode",{parentName:"a"},"1f95d22"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Avatar) : remake avatar as card variant ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea77cdd1acafd2ea288f11074423705e5d6b7412"},(0,n.kt)("inlineCode",{parentName:"a"},"ea77cdd"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add styles for card variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7407bd30e722f2d7b1a9d75a8c7cf155bf1c4996"},(0,n.kt)("inlineCode",{parentName:"a"},"7407bd3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): add story with related content inside of a tab ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dca008a35b27e4a75c13ef965ab8764df0d3b357"},(0,n.kt)("inlineCode",{parentName:"a"},"dca008a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): Rename variables from avatar to rounded ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/be0131631cf8e303f4077fe93b6685fd6b34bf46"},(0,n.kt)("inlineCode",{parentName:"a"},"be01316"))),(0,n.kt)("li",{parentName:"ul"},"refactor(avatar): update less variables and layer structure ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f965db1dd17d90e7165f66d39fdda9016c2eae91"},(0,n.kt)("inlineCode",{parentName:"a"},"f965db1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(PublicationCard):remake publication card to be a semantic card variation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5a0c6ab21c22a53aa6e34fafecfae15a3d435391"},(0,n.kt)("inlineCode",{parentName:"a"},"5a0c6ab"))),(0,n.kt)("li",{parentName:"ul"},"change(button): simplified button styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fe892d6f2f59aecf3f9e8b04f18b55fb0d384021"},(0,n.kt)("inlineCode",{parentName:"a"},"fe892d6"))),(0,n.kt)("li",{parentName:"ul"},"change(button): simplified storybook naming and examples ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9a7df4f46c24a234dd8bb290336ac8e7d5c7422b"},(0,n.kt)("inlineCode",{parentName:"a"},"9a7df4f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Avatar) : convert avatar component to card variation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2004a941c18f8fe21f96f88d3288446fd5e283e8"},(0,n.kt)("inlineCode",{parentName:"a"},"2004a94"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Related Content): change in grid and add see all button ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/955450e974c89aa2297eaa28d278e5098fea7705"},(0,n.kt)("inlineCode",{parentName:"a"},"955450e"))),(0,n.kt)("li",{parentName:"ul"},"change(button): added back button.overrides from pastanaga theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3b55acbf8b8df0e3daa475ab12e4db44693a4053"},(0,n.kt)("inlineCode",{parentName:"a"},"3b55acb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add card class control ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/68c91a9bf7e78874e12e868a0c466f12715a0698"},(0,n.kt)("inlineCode",{parentName:"a"},"68c91a9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):delete publication card variables & overrides files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6be8a037118762cf2280fbe44ba097a0cb7a79e0"},(0,n.kt)("inlineCode",{parentName:"a"},"6be8a03"))),(0,n.kt)("li",{parentName:"ul"},"refactor(OrderedList): rename TOC to Ordered List and add container to the story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e00c4db8e623651eb2ec9ad45de6e3d8c2693b2b"},(0,n.kt)("inlineCode",{parentName:"a"},"e00c4db"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add card grid fluid story with no columns ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f38251ca3fa04a9b586468ead44bbfe8ae110fbb"},(0,n.kt)("inlineCode",{parentName:"a"},"f38251c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(list): remove horizontal control ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f5e576a37452ed368d6f9cf4d55960e737d48ad"},(0,n.kt)("inlineCode",{parentName:"a"},"1f5e576"))),(0,n.kt)("li",{parentName:"ul"},"refactor(avatarGrid): update less variables and layer structure ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/db554a894ca10ba50ff425883000177854ea2455"},(0,n.kt)("inlineCode",{parentName:"a"},"db554a8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Related Content):show button when there are more hidden cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/57ff1c8d485d16c34002da22bd765069e6eb3df0"},(0,n.kt)("inlineCode",{parentName:"a"},"57ff1c8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(RelatedContent):change to use new card variant instead of publication card component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7cf424ae885d9b657a7635fc67a74a8af4c4e905"},(0,n.kt)("inlineCode",{parentName:"a"},"7cf424a"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumb): brought back pastanaga overrides to breadcrumbs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bca1c939c1d49dab1d4b8e72c0999d78383fd643"},(0,n.kt)("inlineCode",{parentName:"a"},"bca1c93"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):delete publication card folder & story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/68bf77306d710651bb2177d429f42b8efc127db2"},(0,n.kt)("inlineCode",{parentName:"a"},"68bf773"))),(0,n.kt)("li",{parentName:"ul"},"change(buttons): modified basic and circular variant behavior ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c06fed9fa74216cf76971b7789dad231a5125ce8"},(0,n.kt)("inlineCode",{parentName:"a"},"c06fed9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):tertiary variation minor story update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87b8dca0b8ef6c6f0fbf1ea6bc71b7b8b6ee9205"},(0,n.kt)("inlineCode",{parentName:"a"},"87b8dca"))),(0,n.kt)("li",{parentName:"ul"},"refactor(DescriptionList): add container to story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d647c1a17097eae9bdfaf8eb8068f6d1d0b13972"},(0,n.kt)("inlineCode",{parentName:"a"},"d647c1a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(List):render ordered list with ol,li tags ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87813c1a942ce498f89b51fe79a59b117afd28b0"},(0,n.kt)("inlineCode",{parentName:"a"},"87813c1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(OrderedList) : change table of contents story to ordered list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb6197c872a97f1b990c675554b1da9b0a8f7959"},(0,n.kt)("inlineCode",{parentName:"a"},"cb6197c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(publicationCard): update tag and name variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c109ad98f257fea233f31d767c4a037a2758be2d"},(0,n.kt)("inlineCode",{parentName:"a"},"c109ad9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(UnorderedList): update list as ul, list items as li and add container to strory ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2c096e117125a7fb943a5d2e665c0077761b271c"},(0,n.kt)("inlineCode",{parentName:"a"},"2c096e1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):organize controls and minor bug fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f3f6e35df077e348ea1e0c2e5c5bd73d4af5aef9"},(0,n.kt)("inlineCode",{parentName:"a"},"f3f6e35"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables): publication card style changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5a84e99ebea6345e45fac3b7ffc077ec42dfb45"},(0,n.kt)("inlineCode",{parentName:"a"},"c5a84e9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables): add less to related content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e1a55438a9fc9dd141a9515c5363d834732a0c4d"},(0,n.kt)("inlineCode",{parentName:"a"},"e1a5543"))),(0,n.kt)("li",{parentName:"ul"},"refactor(RelatedContent):delete publication card component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ed0ed4a1497224b669386f6d0942a79d00555ea"},(0,n.kt)("inlineCode",{parentName:"a"},"2ed0ed4"))),(0,n.kt)("li",{parentName:"ul"},"change(button): basic button is again without padding, border and background ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5a907c721bda1d065153b108d6c9dc0ee20a886d"},(0,n.kt)("inlineCode",{parentName:"a"},"5a907c7"))),(0,n.kt)("li",{parentName:"ul"},"refactor(PublicationCard):remove link wrapper ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5911a0db1967c58311a6776864f92bc0692052fa"},(0,n.kt)("inlineCode",{parentName:"a"},"5911a0d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables): change publication card height per viewport ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d7a525615672f387a2c8a0457bcde5c08aec45dd"},(0,n.kt)("inlineCode",{parentName:"a"},"d7a5256"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Timeline):change timeline icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b2fe0bf9a7a4583f1f10765a9f8c3c989412d472"},(0,n.kt)("inlineCode",{parentName:"a"},"b2fe0bf"))),(0,n.kt)("li",{parentName:"ul"},"refactor(publicationCard): replace px with rems ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53bf8da5e42343de7f7f940c266beb5e530dd63a"},(0,n.kt)("inlineCode",{parentName:"a"},"53bf8da"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Related Content): change in related content grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bf856ce66f9a74cb440cf8a7c93f62cd0d3965e9"},(0,n.kt)("inlineCode",{parentName:"a"},"bf856ce"))),(0,n.kt)("li",{parentName:"ul"},"refactor(List):render description list with dl,dt,dd tags ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ec669a74da08f7a82bb4a1a0a2d752b6ee5ba4bb"},(0,n.kt)("inlineCode",{parentName:"a"},"ec669a7"))),(0,n.kt)("li",{parentName:"ul"},"change(button): show only labeled variant for buttons with icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bf499446dc02e4be8d6452a3e0cba5797b8a005e"},(0,n.kt)("inlineCode",{parentName:"a"},"bf49944"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): import image for rounded card ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca5a47ea2cd713336c7c8ecdebebbdacd681282f"},(0,n.kt)("inlineCode",{parentName:"a"},"ca5a47e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progress): add container to story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dfb33bb8f3560d43e3e7300560bb557591c0a6ba"},(0,n.kt)("inlineCode",{parentName:"a"},"dfb33bb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): add publication card story with different description sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/23af97bc708ac70d70b92efe9a782548c65aabc5"},(0,n.kt)("inlineCode",{parentName:"a"},"23af97b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(List):render default list with dl & dt tags ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ece2280eb06481b3fd42e7a1ffec5c71c08e736f"},(0,n.kt)("inlineCode",{parentName:"a"},"ece2280"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): add publication cards stories with longer description ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/37adefa500c8a85a5b0b86e5b17c687828ea21fc"},(0,n.kt)("inlineCode",{parentName:"a"},"37adefa"))),(0,n.kt)("li",{parentName:"ul"},"change(button): basic icon buttons no longer have box shadows ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c2f3ea38ec3c62dce37612ac1e666a0b064309f7"},(0,n.kt)("inlineCode",{parentName:"a"},"c2f3ea3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): remove story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/afc5f7903a0049563355e3c9292fdd89fa532740"},(0,n.kt)("inlineCode",{parentName:"a"},"afc5f79"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables): change card description line number per device ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6946fdae2a1ede28a0e5971736817b3ae19bf290"},(0,n.kt)("inlineCode",{parentName:"a"},"6946fda"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): update rounded card image path ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8db3a85a45e8e05a3fe86ab824e7550d437222c3"},(0,n.kt)("inlineCode",{parentName:"a"},"8db3a85"))),(0,n.kt)("li",{parentName:"ul"},"refactor(DefaultList): add container to story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f971193369007a45fea7d517cdf0fc2314ebda69"},(0,n.kt)("inlineCode",{parentName:"a"},"f971193"))),(0,n.kt)("li",{parentName:"ul"},"change(button): bumped z-index of sidenav expand button ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/445ed8a8ede4e458814f380bee0600dbb8ff42f6"},(0,n.kt)("inlineCode",{parentName:"a"},"445ed8a"))),(0,n.kt)("li",{parentName:"ul"},"change(progress,label): color accessibility fixes #151 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/09cf6e34ed5a57bfbfc8fe95787591387776df86"},(0,n.kt)("inlineCode",{parentName:"a"},"09cf6e3"))),(0,n.kt)("li",{parentName:"ul"},"change(button): text button now has an underline with a focus border like other buttons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cdd90436bf0c4f8acaca8bf27afef672fb0f3a89"},(0,n.kt)("inlineCode",{parentName:"a"},"cdd9043"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): update card variation grids path ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/756589cff5d3607994d6cf092cb5dd0e36d51903"},(0,n.kt)("inlineCode",{parentName:"a"},"756589c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): minor fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3a880d7d14c89137b2a33342aed1a31c1b2b3939"},(0,n.kt)("inlineCode",{parentName:"a"},"3a880d7"))),(0,n.kt)("li",{parentName:"ul"},"change(button): primary color is blue and secondary is green ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53e0a0c6d32a04c52d089914a224b010b04a8846"},(0,n.kt)("inlineCode",{parentName:"a"},"53e0a0c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(List):change styles to match with the tags lists are rendered ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2673890449579a0421d8ac1c89ad4c5e850322d7"},(0,n.kt)("inlineCode",{parentName:"a"},"2673890"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progress): update colors for accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea2f454f73c859ac21c4fe6e415a2442a6c3d64c"},(0,n.kt)("inlineCode",{parentName:"a"},"ea2f454"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): move avatarGrid & relatedContent to Card folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1959d521de222c95aa13d9b3db249d133f879ccd"},(0,n.kt)("inlineCode",{parentName:"a"},"1959d52"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Timeline): change storybook timeline colors to fix accessibility issues ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/79da8dca48c709fd1df83b858296126f5e5c5753"},(0,n.kt)("inlineCode",{parentName:"a"},"79da8dc"))),(0,n.kt)("li",{parentName:"ul"},"change(segment): restore light grey background color for secondary segments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8716b08a977cacf5dbdab8ab23c714bb03066b0c"},(0,n.kt)("inlineCode",{parentName:"a"},"8716b08"))),(0,n.kt)("li",{parentName:"ul"},"refactor(relatedContent): adjust column paddings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8a1520d1b958b65e968bffdba22c3484916a475e"},(0,n.kt)("inlineCode",{parentName:"a"},"8a1520d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): clear up code ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ada154b5ab562dc7605604de8002a9d3461e594"},(0,n.kt)("inlineCode",{parentName:"a"},"3ada154"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): use the rounded class for avatar grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8c000f3c37103e0068b6d6554783da8188603442"},(0,n.kt)("inlineCode",{parentName:"a"},"8c000f3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card) Update rounded card class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/140b58746673a864d7ea218c4f8a02dc70207af4"},(0,n.kt)("inlineCode",{parentName:"a"},"140b587"))),(0,n.kt)("li",{parentName:"ul"},"refactor(avatar): add variable for image border radius ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c23341c66d34a9dfa572be4df24f1faf4325d58e"},(0,n.kt)("inlineCode",{parentName:"a"},"c23341c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(label): add container to story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/565101fff2c8860deedd599b7b0cff0660c663f6"},(0,n.kt)("inlineCode",{parentName:"a"},"565101f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progress): update value color for accessibility error ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6fc76f8ff3df4bf2b83863687e5ab6bd5e4cd1ef"},(0,n.kt)("inlineCode",{parentName:"a"},"6fc76f8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):use jsx extension ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/413d3284869a35f39f886df7862db6a52e8cc18e"},(0,n.kt)("inlineCode",{parentName:"a"},"413d328")))),(0,n.kt)("h4",{id:"-internal-changes-17"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(Avatar) : add container to stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/41b748cd23002d597d9b6fbb7947a443ef40f9b2"},(0,n.kt)("inlineCode",{parentName:"a"},"41b748c"))),(0,n.kt)("li",{parentName:"ul"},"style(OrderedList): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ed95e4dea2f33d46ca604e1b2c30d63b5596c03d"},(0,n.kt)("inlineCode",{parentName:"a"},"ed95e4d")))),(0,n.kt)("h4",{id:"\ufe0f-others-45"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"perf(eol): change to LF ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c71e42e4a8cf49c4a3b943bfdc8a94c9a9cc4940"},(0,n.kt)("inlineCode",{parentName:"a"},"c71e42e"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): linux eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e0bb30132904f92b9755356f6b5ccbf72075425"},(0,n.kt)("inlineCode",{parentName:"a"},"6e0bb30"))),(0,n.kt)("li",{parentName:"ul"},"lint fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a68866d4058f7412a2635371adebc370b6445281"},(0,n.kt)("inlineCode",{parentName:"a"},"a68866d"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): lf fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7054b2067b0802c5bd04e185cba76e2577ccfdd1"},(0,n.kt)("inlineCode",{parentName:"a"},"7054b20"))),(0,n.kt)("li",{parentName:"ul"},"doco(list): update Ordered List showcase ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/75e40bf4487ea334c9ebc2dd6c2a392d82e662f3"},(0,n.kt)("inlineCode",{parentName:"a"},"75e40bf"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): lf fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19235e585ac50c3669f654a93798b8998894f900"},(0,n.kt)("inlineCode",{parentName:"a"},"19235e5"))),(0,n.kt)("li",{parentName:"ul"},"fixed js syntax error from previous commit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/37dc1f5c1506040c1f155afdea76c4ed739ddda2"},(0,n.kt)("inlineCode",{parentName:"a"},"37dc1f5"))),(0,n.kt)("li",{parentName:"ul"},"Next relese: 0.2.2 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b3fb40ff5e46d7519b6356fdaf7326780bd89d9e"},(0,n.kt)("inlineCode",{parentName:"a"},"b3fb40f")))),(0,n.kt)("h3",{id:"021---2022-04-08"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.2.0...0.2.1"},"0.2.1")," - 2022-04-08"),(0,n.kt)("h4",{id:"-bug-fixes-40"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(version): Switch to 2.0.0.alpha.1 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/83b8b8ebba4f1eb31514b16476ac23a5d2b03ea9"},(0,n.kt)("inlineCode",{parentName:"a"},"83b8b8e")))),(0,n.kt)("h4",{id:"\ufe0f-others-46"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"cleanup(loader): Remove useless HTML ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d1d180c714ea225c1ad269360413a5e5e4b39f22"},(0,n.kt)("inlineCode",{parentName:"a"},"d1d180c")))),(0,n.kt)("h3",{id:"020---2022-04-04"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.9...0.2.0"},"0.2.0")," - 2022-04-04"),(0,n.kt)("h4",{id:"-new-features-28"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(card) : add new default card color-schme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/965adea8eef6d8729790f6d2bd5e71daeee15d75"},(0,n.kt)("inlineCode",{parentName:"a"},"965adea"))),(0,n.kt)("li",{parentName:"ul"},"feat(label): Handle slate links and footnotes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f382431219df29be498fe5063f3d579f0b918068"},(0,n.kt)("inlineCode",{parentName:"a"},"f382431")))),(0,n.kt)("h4",{id:"-bug-fixes-41"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(buttons,toggles): border and background color when active 147629 #139 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea36f31e986110d6c28c104d01666104ac38e2ba"},(0,n.kt)("inlineCode",{parentName:"a"},"ea36f31"))),(0,n.kt)("li",{parentName:"ul"},"fix(checkboxes): background color when they are toggles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4b6ab67085b7514c4f0ab2322e8f45de8bc09449"},(0,n.kt)("inlineCode",{parentName:"a"},"4b6ab67"))),(0,n.kt)("li",{parentName:"ul"},"fix(buttons): border set on basic buttons appearing on svg elements of Volto UI ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/69ca73f33b562b3f87bf11ce43a52ac01f83b951"},(0,n.kt)("inlineCode",{parentName:"a"},"69ca73f"))),(0,n.kt)("li",{parentName:"ul"},"fix(label): Zotero/Footnotes inside label ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0ee4d584f2771b739ed5f2332cb33aad61391786"},(0,n.kt)("inlineCode",{parentName:"a"},"0ee4d58"))),(0,n.kt)("li",{parentName:"ul"},"fix(card) : add control for image url in storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b28e5303ba04c6aee673f1d7f98ce42037c672e1"},(0,n.kt)("inlineCode",{parentName:"a"},"b28e530"))),(0,n.kt)("li",{parentName:"ul"},"fix(less variables):change font family ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e4bca9e0cb7ab9f1fd86e9f4c558382ec129e5a1"},(0,n.kt)("inlineCode",{parentName:"a"},"e4bca9e"))),(0,n.kt)("li",{parentName:"ul"},"fix(storybook):minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9fc53bcad61bbe0561d7a986dbba567d53777a8c"},(0,n.kt)("inlineCode",{parentName:"a"},"9fc53bc"))),(0,n.kt)("li",{parentName:"ul"},"fix(tag): fixes merged theme config ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/eb30363fda8a8a88155ee05268c4d7660fe99df1"},(0,n.kt)("inlineCode",{parentName:"a"},"eb30363"))),(0,n.kt)("li",{parentName:"ul"},"fix(Banner): prop types fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a270e5b4d6e571f219b5da31ca8f883f74da05e3"},(0,n.kt)("inlineCode",{parentName:"a"},"a270e5b")))),(0,n.kt)("h4",{id:"-enhancements-56"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(tag): splits Tags component to TagList and tag, changes default tags style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/78a5f8c245149706a1f7b825ef3e02da5ba86445"},(0,n.kt)("inlineCode",{parentName:"a"},"78a5f8c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner):add banner share pop up in banner story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c9688b2b697c879bbaed3cb3a688a0af7fc71234"},(0,n.kt)("inlineCode",{parentName:"a"},"c9688b2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tag): remove classes and actions that add background color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce9b6f92589618f6cb1e839a2cddc44381ef7406"},(0,n.kt)("inlineCode",{parentName:"a"},"ce9b6f9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner):change banner's image wrapper implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9153dd1073999e67c105b5ba90538bc963e17abc"},(0,n.kt)("inlineCode",{parentName:"a"},"9153dd1"))),(0,n.kt)("li",{parentName:"ul"},"change(package): bump release version to 1.10.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e984c1e1a6ea481a58a5b7a783d077b5769a621"},(0,n.kt)("inlineCode",{parentName:"a"},"7e984c1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): align cards and images, update less variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d47c9780bfbc23d1cba3578f181864074db97e98"},(0,n.kt)("inlineCode",{parentName:"a"},"d47c978"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add class inverted for default card ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/919a56e79c0243fa567144fadd4b842f75f1cf8f"},(0,n.kt)("inlineCode",{parentName:"a"},"919a56e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tag): changes component name ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e1db068bd7ac336a451a4514c61fe44557e14cc2"},(0,n.kt)("inlineCode",{parentName:"a"},"e1db068"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tag): changes color metallicBlue to bottleGreen ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e4b68acf95bb3e192914aab89b2122e0434bf72c"},(0,n.kt)("inlineCode",{parentName:"a"},"e4b68ac"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables): change tag list mobile view ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fcded3dbc67465eec6ef7f72d3fd599ec5cd3c13"},(0,n.kt)("inlineCode",{parentName:"a"},"fcded3d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tagList): update story to not use tag color classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8b5b61bfad9225c0538b713937ed39bbd0bd14e9"},(0,n.kt)("inlineCode",{parentName:"a"},"8b5b61b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner):minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff8c352b899b78528897547df0b20c357fd153cd"},(0,n.kt)("inlineCode",{parentName:"a"},"ff8c352"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner): add metadata field sub component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/327b7e77626c18ae783aea9efae0c7589f63d4f5"},(0,n.kt)("inlineCode",{parentName:"a"},"327b7e7"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): add and adjust remix icon for banner action ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1bf3ffaa16432746c5e5577f0b1643f6659b3f56"},(0,n.kt)("inlineCode",{parentName:"a"},"1bf3ffa"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): replace px with rem and adjust share popup padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a5683294570227d0b25a99e410eb824b2c6d643c"},(0,n.kt)("inlineCode",{parentName:"a"},"a568329"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner):add type class to metadata field and apply styles to it ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/86a286699146c7dda9e288e2183ec8cc86f35a23"},(0,n.kt)("inlineCode",{parentName:"a"},"86a2866"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables):change tag list styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/867008791545769aa003ef7a8a820a7e5a873e4b"},(0,n.kt)("inlineCode",{parentName:"a"},"8670087"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): share items display flex on desktop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ff86840e548f47cd597a0c76b23f996d4a9d74b"},(0,n.kt)("inlineCode",{parentName:"a"},"3ff8684"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): added background gradient, share popup, metadata show and hide #136 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2f5dccacf1e23f45f351b0be58c9bbda04da1518"},(0,n.kt)("inlineCode",{parentName:"a"},"2f5dcca"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): update gradient ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/570ee1e1e9778cb98757804fbd8ad7d9dee9ad13"},(0,n.kt)("inlineCode",{parentName:"a"},"570ee1e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tags): removes hardcoded ':' ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea58e86a79b46b5150d84ff2fbb6a7b8ba47876c"},(0,n.kt)("inlineCode",{parentName:"a"},"ea58e86"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): remove card border ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bc777397026f0efe8e569c8fd0e90d98b585b0eb"},(0,n.kt)("inlineCode",{parentName:"a"},"bc77739")))),(0,n.kt)("h4",{id:"-internal-changes-18"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(card) : add lint and prettier changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9d9a77363f7e4f7ec2ea4db5fa777dc97e086156"},(0,n.kt)("inlineCode",{parentName:"a"},"9d9a773"))),(0,n.kt)("li",{parentName:"ul"},"style(tag): remove comments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/501fcdfb8271f4a3558dadb96c546e71cfdef286"},(0,n.kt)("inlineCode",{parentName:"a"},"501fcdf"))),(0,n.kt)("li",{parentName:"ul"},"style(tag): stylelint and prettier changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/08b63864e8394fd86ada78df0b441cda52cd8063"},(0,n.kt)("inlineCode",{parentName:"a"},"08b6386")))),(0,n.kt)("h4",{id:"\ufe0f-others-47"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"1.10 release #140 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/88d33396845f00830789867663a9cd66ad88920f"},(0,n.kt)("inlineCode",{parentName:"a"},"88d3339"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/328ef2cda2d3470b5cb5ae2ef9854323f6b0f3c7"},(0,n.kt)("inlineCode",{parentName:"a"},"328ef2c"))),(0,n.kt)("li",{parentName:"ul"},"undo changes to Header.jsx committed wrongly in 4b6ab ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bfc4c51d39cf9c5151c39b099071174897de10b0"},(0,n.kt)("inlineCode",{parentName:"a"},"bfc4c51"))),(0,n.kt)("li",{parentName:"ul"},"Update 0-intro.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af75f81a84ddb9b78a77a96450976c6cd1223924"},(0,n.kt)("inlineCode",{parentName:"a"},"af75f81"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): lf fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ecf474ffbaab6796434d49c30fb09deafe9d1125"},(0,n.kt)("inlineCode",{parentName:"a"},"ecf474f"))),(0,n.kt)("li",{parentName:"ul"},"Update 0-intro.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93a073242693fa3c24c39532c2c462f58071e5c4"},(0,n.kt)("inlineCode",{parentName:"a"},"93a0732"))),(0,n.kt)("li",{parentName:"ul"},"modifies tags title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/33c3714660aa6cfbca7e362fd7baa8c396b60a0e"},(0,n.kt)("inlineCode",{parentName:"a"},"33c3714"))),(0,n.kt)("li",{parentName:"ul"},"reafactor(taglist): fixes tags root class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d09959f85d2d21cdc890a71457ed5840b5b2c53"},(0,n.kt)("inlineCode",{parentName:"a"},"7d09959")))),(0,n.kt)("h3",{id:"019---2022-03-25"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.8...0.1.9"},"0.1.9")," - 2022-03-25"),(0,n.kt)("h4",{id:"-new-features-29"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(all): 1.9 release #124 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0d3f6fbf32a4948e00410d9d0943a077863cb869"},(0,n.kt)("inlineCode",{parentName:"a"},"0d3f6fb"))),(0,n.kt)("li",{parentName:"ul"},"feat(callout): Align volto-slate callout with blockquote style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9e0bb49ffe66ebb8b8173af411873ab887b91058"},(0,n.kt)("inlineCode",{parentName:"a"},"9e0bb49")))),(0,n.kt)("h4",{id:"-bug-fixes-42"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(inpageNavigation): restore hidden on top functionality ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c554e6e02e0c82b74653498e2f3fd32a982002a4"},(0,n.kt)("inlineCode",{parentName:"a"},"c554e6e"))),(0,n.kt)("li",{parentName:"ul"},"fix(list): Fix TOC margin on 3rd level ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f17da79394e29baf62bae1247dd954cdd0362108"},(0,n.kt)("inlineCode",{parentName:"a"},"f17da79"))),(0,n.kt)("li",{parentName:"ul"},"fix(inpageNavigation) : add smooth scroll animation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/42f6564276b9214257e2dbc1e2a8f7e501625aee"},(0,n.kt)("inlineCode",{parentName:"a"},"42f6564")))),(0,n.kt)("h4",{id:"-enhancements-57"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update visual and mobile margins ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/64f05af91638d91d2c07217b8edc2fb70a5e7347"},(0,n.kt)("inlineCode",{parentName:"a"},"64f05af"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): restore union dropdown after implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7029c556a9adc1ab9b0269de666e0ed0530f67e"},(0,n.kt)("inlineCode",{parentName:"a"},"a7029c5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pullquote): adjust to the new figma design ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/78e4606ac299938021f9e525898ae7f5cede311f"},(0,n.kt)("inlineCode",{parentName:"a"},"78e4606"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumb): adjust font sizes and import remix divider ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5fcabaf589074716b34fb5d0904e14549d7f4ef2"},(0,n.kt)("inlineCode",{parentName:"a"},"5fcabaf"))),(0,n.kt)("li",{parentName:"ul"},"change(header): use viewport width for changing mobile text in header dropdowns ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5a7868e1725f8766ae1be68d3c27b1313f79196b"},(0,n.kt)("inlineCode",{parentName:"a"},"5a7868e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(inpageNavigation): adjust to the new figma design ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4073acfb87378224d071079467bcfa195b1fc6ac"},(0,n.kt)("inlineCode",{parentName:"a"},"4073acf"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tab): add max width for tab items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/366d279a94d5f388c6167e7afb72d108c77c4085"},(0,n.kt)("inlineCode",{parentName:"a"},"366d279"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables):change pullquote styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9ad94bb424a14713ffa605c7497c95bdefeb6e5f"},(0,n.kt)("inlineCode",{parentName:"a"},"9ad94bb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Pullquote):change quote positions and add Pullquote.Metadata sub component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6bce35fa3cc158d9d18a07d0faf812c5c38bae0b"},(0,n.kt)("inlineCode",{parentName:"a"},"6bce35f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(inpageNavigation): Update to remix icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19a606170b4163cf4f751a419ca36a4c163b566d"},(0,n.kt)("inlineCode",{parentName:"a"},"19a6061"))),(0,n.kt)("li",{parentName:"ul"},"refactor(inpageNavigation) : move icon & text to be in column ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/09539102489ec511cb2b6cd047d316ab8b87ed55"},(0,n.kt)("inlineCode",{parentName:"a"},"0953910"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumbs): modified breadcrumbs template to behave like breadrumb template ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/490a559bc99f3a9d174a344cf0be85086293578e"},(0,n.kt)("inlineCode",{parentName:"a"},"490a559"))),(0,n.kt)("li",{parentName:"ul"},"change(package): bump release version to 1.9.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/43a6e4b92fd05ca272fb140922213834ee426938"},(0,n.kt)("inlineCode",{parentName:"a"},"43a6e4b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumb): adjust font sizes and import remix divider #120 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/09a3a01910ed898b62a9535fe5d2a41cfdb3a91b"},(0,n.kt)("inlineCode",{parentName:"a"},"09a3a01"))),(0,n.kt)("li",{parentName:"ul"},"change(menu): modified secondaryPointingItemMaxWidth to a value that equals to 250 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea138a10257206fae32c4e9a30233a3ddfd424b6"},(0,n.kt)("inlineCode",{parentName:"a"},"ea138a1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pullquote): introduce meta section, use remix icons, integrate slate callouts #119 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fd740c9e72b2defa5cc858ac020f0cb051aa527c"},(0,n.kt)("inlineCode",{parentName:"a"},"fd740c9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): updated visuals and gradients #117 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e5c6d18dc3fb33e5dfa654ecebdc12c6f5f0cf32"},(0,n.kt)("inlineCode",{parentName:"a"},"e5c6d18"))),(0,n.kt)("li",{parentName:"ul"},"change(scrollToTop): feature inpage navigation revamp #121 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3cf20a82b723b8df0b53f16c737e5c8990f891f1"},(0,n.kt)("inlineCode",{parentName:"a"},"3cf20a8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update visual and gradient ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/764ec23a456397b478456f7d628baa4e6c0b4713"},(0,n.kt)("inlineCode",{parentName:"a"},"764ec23"))),(0,n.kt)("li",{parentName:"ul"},"change(header): use 12px font size for mobile resolution dropdowns ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6dad0fab24f37f87696bb50f5a592e88510d053e"},(0,n.kt)("inlineCode",{parentName:"a"},"6dad0fa"))),(0,n.kt)("li",{parentName:"ul"},"change(nav): added navDepth to 3 in order to enable mega menu integration ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4f73fdd0dfadcd63b2f4be7a691bf12dcd9bb76"},(0,n.kt)("inlineCode",{parentName:"a"},"c4f73fd")))),(0,n.kt)("h4",{id:"-internal-changes-19"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(inpageNavigation) : lint changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3641d78374063904c00f1ba19f2f234f7a43892b"},(0,n.kt)("inlineCode",{parentName:"a"},"3641d78"))),(0,n.kt)("li",{parentName:"ul"},"style(inpageNavigation) : add less variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0699c70c66403ff75bf41ba252a74e9f4379671c"},(0,n.kt)("inlineCode",{parentName:"a"},"0699c70"))),(0,n.kt)("li",{parentName:"ul"},"style(pullquote): create variable for icon font size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fea9b0a7c33237ad036522b4dde567718d640210"},(0,n.kt)("inlineCode",{parentName:"a"},"fea9b0a"))),(0,n.kt)("li",{parentName:"ul"},"style(inpageNavigation) : add lint & prettier changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f8dd012a964e0c1f0bc22c36826a4a94bd052759"},(0,n.kt)("inlineCode",{parentName:"a"},"f8dd012"))),(0,n.kt)("li",{parentName:"ul"},"style(inpageNavigation): remove comment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1aee011d032c1a2b7fe564a40688bc39ca457c18"},(0,n.kt)("inlineCode",{parentName:"a"},"1aee011")))),(0,n.kt)("h4",{id:"\ufe0f-others-48"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"perf(eol): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/85a3dc55c7676c0feb8dd5b39fe0cbb9d66a9370"},(0,n.kt)("inlineCode",{parentName:"a"},"85a3dc5"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/00776211ccfa1cb90d9fa0e5269f47f5b3845741"},(0,n.kt)("inlineCode",{parentName:"a"},"0077621"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f1bb1c630edb669b03929a978cc116bae012255"},(0,n.kt)("inlineCode",{parentName:"a"},"9f1bb1c"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2b19fec30d6086f486bdca631a9114d8369fe43"},(0,n.kt)("inlineCode",{parentName:"a"},"e2b19fe"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/03dbc9b027578934f89d9480d981e1bc28f38aa3"},(0,n.kt)("inlineCode",{parentName:"a"},"03dbc9b"))),(0,n.kt)("li",{parentName:"ul"},"Hide breadcrumbs on homepage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e2f609df8d4b6bdb826e539fc0c613406d357a5"},(0,n.kt)("inlineCode",{parentName:"a"},"3e2f609"))),(0,n.kt)("li",{parentName:"ul"},"bug(inpageNavigation): less layers structure fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8d34fbdd5130ed36157db1ff70e8b039faa9f81"},(0,n.kt)("inlineCode",{parentName:"a"},"b8d34fb"))),(0,n.kt)("li",{parentName:"ul"},"prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4b1c572411cbc58dec51d5eeefe9847675c2e41"},(0,n.kt)("inlineCode",{parentName:"a"},"d4b1c57"))),(0,n.kt)("li",{parentName:"ul"},"fefactor(tab): add max width for tab items #118 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/716c408fa4c73f3feb8e36e35fb1f6bb50ac264c"},(0,n.kt)("inlineCode",{parentName:"a"},"716c408"))),(0,n.kt)("li",{parentName:"ul"},"Add reversed option to Timeline grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7c9023245f2fc943380f79743b5f10c6b6f65264"},(0,n.kt)("inlineCode",{parentName:"a"},"7c90232"))),(0,n.kt)("li",{parentName:"ul"},"doc(grid): update grid showcases ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/83671a382e39a2736c2c1353098d5f4fc2a0e67e"},(0,n.kt)("inlineCode",{parentName:"a"},"83671a3"))),(0,n.kt)("li",{parentName:"ul"},"End of line ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7f46fb752ec8918325ebadd386ee88248e02566c"},(0,n.kt)("inlineCode",{parentName:"a"},"7f46fb7")))),(0,n.kt)("h3",{id:"018---2022-03-18"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.7...0.1.8"},"0.1.8")," - 2022-03-18"),(0,n.kt)("h4",{id:"-bug-fixes-43"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(card): avoid long links from spilling outside of card body area ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/95b8951ab87bfab7a68cc20b89b25aa15113aa9d"},(0,n.kt)("inlineCode",{parentName:"a"},"95b8951")))),(0,n.kt)("h4",{id:"-enhancements-58"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(typography): set heading sizes as detailed in docusaurus typography section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/189bf20409581587061ffa30ff2bf04d97f284cf"},(0,n.kt)("inlineCode",{parentName:"a"},"189bf20"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): content tweaks, inpage navigation section #112 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b62d1b1def7c3d8890ffbba30950e8e422e9ed89"},(0,n.kt)("inlineCode",{parentName:"a"},"b62d1b1")))),(0,n.kt)("h4",{id:"-internal-changes-20"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(docusaurus): fixed grid tablet breakpoint value ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c7fbc0912131396e3a1e35803968eda1eff77d40"},(0,n.kt)("inlineCode",{parentName:"a"},"c7fbc09")))),(0,n.kt)("h4",{id:"-documentation-changes-18"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): capitalization remove ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bf8fa4407e7110da1c6a911506d56800bd5c32d7"},(0,n.kt)("inlineCode",{parentName:"a"},"bf8fa44"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1c04976a141324f0dde01b139a77f611e6f51840"},(0,n.kt)("inlineCode",{parentName:"a"},"1c04976"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): comment address on pr 112 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e4fe3bed285eae8b2cff03b1ef558debc0b4edb"},(0,n.kt)("inlineCode",{parentName:"a"},"6e4fe3b"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): color minor update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/13f9fda09287da5b8733d17f9c7567b6b7df750a"},(0,n.kt)("inlineCode",{parentName:"a"},"13f9fda"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): tabs and breadcrump update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d0547e5ad09a8608335b1e77e24c891e49213694"},(0,n.kt)("inlineCode",{parentName:"a"},"d0547e5")))),(0,n.kt)("h4",{id:"\ufe0f-others-49"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"doc(colours): add more content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ec66248f1290369dcf63ee12f7b71a1630df887b"},(0,n.kt)("inlineCode",{parentName:"a"},"ec66248"))),(0,n.kt)("li",{parentName:"ul"},"Add divider content for metadata field in Banner ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f1e34bd6a199f6418fba909e9dfdf50b0100e860"},(0,n.kt)("inlineCode",{parentName:"a"},"f1e34bd"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.8.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fd6ba047e8f8b257c3c75d07a6caefad376f888a"},(0,n.kt)("inlineCode",{parentName:"a"},"fd6ba04")))),(0,n.kt)("h3",{id:"017---2022-03-15"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.6...0.1.7"},"0.1.7")," - 2022-03-15"),(0,n.kt)("h4",{id:"-new-features-30"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(less): add global gap sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c83f20280b8a7ab0b5c78e3df7646beebe08709"},(0,n.kt)("inlineCode",{parentName:"a"},"3c83f20"))),(0,n.kt)("li",{parentName:"ul"},"feat(icons): import remix css ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/29967fb39034910dce286880f347a670f77421b3"},(0,n.kt)("inlineCode",{parentName:"a"},"29967fb")))),(0,n.kt)("h4",{id:"-bug-fixes-44"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(menu): fix border overflow for tabs and pagination ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e88721f916affa2a6d2f03930eb4266f9a2b0fb9"},(0,n.kt)("inlineCode",{parentName:"a"},"e88721f"))),(0,n.kt)("li",{parentName:"ul"},"fix(accordion): responsive and accessibility issues ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c225935ceb9fdba45c6f94086a35e177495fe584"},(0,n.kt)("inlineCode",{parentName:"a"},"c225935")))),(0,n.kt)("h4",{id:"-enhancements-59"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(menu): update paddings for tabs and pagination ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/533a5093e6c306034cb16e0a88e045019677951e"},(0,n.kt)("inlineCode",{parentName:"a"},"533a509"))),(0,n.kt)("li",{parentName:"ul"},"refactor(accordion): import semantic icon for remix arrows ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9aa77d856d1e43f4ec3daaab37f06fa91ebd1eaf"},(0,n.kt)("inlineCode",{parentName:"a"},"9aa77d8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(all) icons, accordion, button and menu itml #108 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/52ed2ca19b5e8dea60f1ee7bfd9c3b6b49a49f7d"},(0,n.kt)("inlineCode",{parentName:"a"},"52ed2ca"))),(0,n.kt)("li",{parentName:"ul"},"change(storybook): segment stories now contain several elements ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/98a7654b0d4a7c30c7a2df35103ddb2740f3ca2d"},(0,n.kt)("inlineCode",{parentName:"a"},"98a7654"))),(0,n.kt)("li",{parentName:"ul"},"change(table): inherit header alignment instead of hard-coding values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ebb5193babfe8b99094db6778afdaf2d91b2c4dd"},(0,n.kt)("inlineCode",{parentName:"a"},"ebb5193"))),(0,n.kt)("li",{parentName:"ul"},"refactor(icons): add remix icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4c1a92b671b52c509386addc02e8919c93391fb"},(0,n.kt)("inlineCode",{parentName:"a"},"c4c1a92"))),(0,n.kt)("li",{parentName:"ul"},"refactor(container): restore mobile width to auto ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2df184c19a8685c69e6b9a55b147a97853cc6b74"},(0,n.kt)("inlineCode",{parentName:"a"},"2df184c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button): update action button hover color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bb09d718433f93091ca1b325471d48741825ca96"},(0,n.kt)("inlineCode",{parentName:"a"},"bb09d71")))),(0,n.kt)("h4",{id:"-internal-changes-21"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(docusaurus): docs delete ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f9d733287902ccb096f5a976a2928e43a43a8e7"},(0,n.kt)("inlineCode",{parentName:"a"},"5f9d733")))),(0,n.kt)("h4",{id:"-documentation-changes-19"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(colors): corrections ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/da64c4c6b58e8840ea98be75d442b90911197e28"},(0,n.kt)("inlineCode",{parentName:"a"},"da64c4c"))),(0,n.kt)("li",{parentName:"ul"},"docs(list): default list showcase ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8ded06231c14d1394f77559aeb2d5a7e3a0c1bf1"},(0,n.kt)("inlineCode",{parentName:"a"},"8ded062")))),(0,n.kt)("h4",{id:"\ufe0f-others-50"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"bug(form): input min-width more specific to not break volto interface ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3f5b5d498ea1a0e3bb6fd62af5930f6579029b11"},(0,n.kt)("inlineCode",{parentName:"a"},"3f5b5d4"))),(0,n.kt)("li",{parentName:"ul"},"Update package.json ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3dba28b5a3d28adbf946a8df3d9cc9b8ef4c68e0"},(0,n.kt)("inlineCode",{parentName:"a"},"3dba28b")))),(0,n.kt)("h3",{id:"016---2022-03-11"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.5...0.1.6"},"0.1.6")," - 2022-03-11"),(0,n.kt)("h4",{id:"-new-features-31"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(cards): add custom display for volto-block-image-cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/645096ac5a0aa3326834191f56ee8a77db0464f5"},(0,n.kt)("inlineCode",{parentName:"a"},"645096a"))),(0,n.kt)("li",{parentName:"ul"},"feat(PublicationCard):create publication card component & styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e5f9b7a9bb301f446b232b99f7db54e6a7470ae"},(0,n.kt)("inlineCode",{parentName:"a"},"3e5f9b7"))),(0,n.kt)("li",{parentName:"ul"},"feat(PublicationCard):create publication card component & styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/12cdd5d50dc4c05f2c2b83586df90c7b91c11a75"},(0,n.kt)("inlineCode",{parentName:"a"},"12cdd5d"))),(0,n.kt)("li",{parentName:"ul"},"feat(Related Content): create Related Content component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/77eda953196f9e686d4ec2c996d6902a614af4a0"},(0,n.kt)("inlineCode",{parentName:"a"},"77eda95"))),(0,n.kt)("li",{parentName:"ul"},"feat(Related Content): create Related Content component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/08d495baeae575a07813056176ac940d7edc91eb"},(0,n.kt)("inlineCode",{parentName:"a"},"08d495b"))),(0,n.kt)("li",{parentName:"ul"},"feat(pagination,related) added several r3 components #105 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/08d47c199286402c31a0ff0de38fd08533d2cd91"},(0,n.kt)("inlineCode",{parentName:"a"},"08d47c1")))),(0,n.kt)("h4",{id:"-bug-fixes-45"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(Related Content): limit publication card number to 4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e7df03214824a85911c26499c8975f88ffa9fe4d"},(0,n.kt)("inlineCode",{parentName:"a"},"e7df032"))),(0,n.kt)("li",{parentName:"ul"},"fix(less variables):rename publication card variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/55c6fb8e5e9660352ce1bf2bd38c4ef8834ce184"},(0,n.kt)("inlineCode",{parentName:"a"},"55c6fb8"))),(0,n.kt)("li",{parentName:"ul"},"fix(Publication Card): add link to card and arg name fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/36a7c961639b2ff07acd455ccf277dd0a93f753c"},(0,n.kt)("inlineCode",{parentName:"a"},"36a7c96"))),(0,n.kt)("li",{parentName:"ul"},"fix(radio): fix bullet scaling issue with firefox ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f02c95f18c77527f949f115471cf24302df4d49"},(0,n.kt)("inlineCode",{parentName:"a"},"5f02c95"))),(0,n.kt)("li",{parentName:"ul"},"fix(radio): fix bullet scaling issue with firefox ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dbb2e27b43e6d267a436a8475107ad01e940ec93"},(0,n.kt)("inlineCode",{parentName:"a"},"dbb2e27")))),(0,n.kt)("h4",{id:"-enhancements-60"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(form): remove custom classes and add container to form items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6b5442a3c56854bf30269f235099d8507ba588f7"},(0,n.kt)("inlineCode",{parentName:"a"},"6b5442a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form): remove custom classes and add container to form items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d1ec083647f854c09d8a64dffa6a5c829321049e"},(0,n.kt)("inlineCode",{parentName:"a"},"d1ec083"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form): update form wrapper component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7195768bbe86121fc82bebca29abfb20b50d77a"},(0,n.kt)("inlineCode",{parentName:"a"},"a719576"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form): update form wrapper component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0736ec7d671d756c13a69bd8bf93488805da27e2"},(0,n.kt)("inlineCode",{parentName:"a"},"0736ec7"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form): adjust form items to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4213cfb79430273e637b06a76af28c9cd660aa74"},(0,n.kt)("inlineCode",{parentName:"a"},"4213cfb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form): adjust form items to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/374ffbc1c380df1b1a5f9939fc658d9ecca4ae1b"},(0,n.kt)("inlineCode",{parentName:"a"},"374ffbc"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumb): remove custom class anf and new variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b3cb83d90e0be7f8a80f619d57bc90cae4f8f207"},(0,n.kt)("inlineCode",{parentName:"a"},"b3cb83d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumb): remove custom class anf and new variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5808ad3576439df010bebfb8fd423858ffc4e66"},(0,n.kt)("inlineCode",{parentName:"a"},"d5808ad"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): clear up unnecessary form elements controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f7e7d5bc285ea5115bc8770c7471729f06da891e"},(0,n.kt)("inlineCode",{parentName:"a"},"f7e7d5b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): small change in unordered list story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ffd87246df9dffcc064683e93d6f3aff35b3931"},(0,n.kt)("inlineCode",{parentName:"a"},"3ffd872"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): small change in unordered list story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6ce16e990f15ef8c61493359815405517756c32c"},(0,n.kt)("inlineCode",{parentName:"a"},"6ce16e9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pagination): fix menu overrides for tabs that affects pagination ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fe8c4ca32072518820ad38f8b334b38f52ef2df5"},(0,n.kt)("inlineCode",{parentName:"a"},"fe8c4ca"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pagination): fix menu overrides for tabs that affects pagination ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3f4b726c2a2047f6f9a65375074dd7ea38717f5c"},(0,n.kt)("inlineCode",{parentName:"a"},"3f4b726"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Loader):remove image & add background image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70fe041e06cfee946bb9557f9fcb5ff49d08c287"},(0,n.kt)("inlineCode",{parentName:"a"},"70fe041"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Loader):remove image & add background image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac3812684ee4377914801cd770890c78bdeecedf"},(0,n.kt)("inlineCode",{parentName:"a"},"ac38126"))),(0,n.kt)("li",{parentName:"ul"},"refactor(list): remove selection control ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a09b1798a62a6e192deb1d217d0c44b4b881ce6a"},(0,n.kt)("inlineCode",{parentName:"a"},"a09b179"))),(0,n.kt)("li",{parentName:"ul"},"refactor(list): remove selection control ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/17bf710d00a91acd35356dbaa9d5093ca80a8987"},(0,n.kt)("inlineCode",{parentName:"a"},"17bf710"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook):unordered list minor change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/df2b72730500aee5d0bbc82185222edacad38b2b"},(0,n.kt)("inlineCode",{parentName:"a"},"df2b727"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook):unordered list minor change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef6db73ce2236d0f653212d2f57c336f1f8d806e"},(0,n.kt)("inlineCode",{parentName:"a"},"ef6db73"))),(0,n.kt)("li",{parentName:"ul"},"refactor(colors): remove metalic blue color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b2f95b6dc3b1d8314827d56e88efa0dfc719aca2"},(0,n.kt)("inlineCode",{parentName:"a"},"b2f95b6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(colors): remove metalic blue color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1eea33f71fdde5834f82d244224c185fde3ab8ba"},(0,n.kt)("inlineCode",{parentName:"a"},"1eea33f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button): update variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b1774d8c7f32ded2eff654b0d16e45d944fe5690"},(0,n.kt)("inlineCode",{parentName:"a"},"b1774d8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button): update variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/061f3e3042f28575dbb1a70f09a62bda728815be"},(0,n.kt)("inlineCode",{parentName:"a"},"061f3e3"))),(0,n.kt)("li",{parentName:"ul"},"change(blockquote): treat slate as a variation of blockquote component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19bd9a5f67e573b71531fe34b29d2e08e0856eae"},(0,n.kt)("inlineCode",{parentName:"a"},"19bd9a5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(container): remove important from rules ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e984771ed59fe849246ae8a01d9d84f3f2f232c5"},(0,n.kt)("inlineCode",{parentName:"a"},"e984771"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook):add textarea control to add/remove fluid class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/475f540efa76d0993c3f7bd72d4c646385f4c909"},(0,n.kt)("inlineCode",{parentName:"a"},"475f540"))),(0,n.kt)("li",{parentName:"ul"},"refactor(container): remove important from rules ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1cc69848705d3d592221bf7fa7d43c8b0eb37f09"},(0,n.kt)("inlineCode",{parentName:"a"},"1cc6984"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): add required attribute to form fields ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fecee278b920c44dd0dd34ace81f9606258c8f7c"},(0,n.kt)("inlineCode",{parentName:"a"},"fecee27"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progressBar): update progress bar colors with vars ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4ef1f0f6eba9792901bc9e0ec5b01877e9da96e"},(0,n.kt)("inlineCode",{parentName:"a"},"c4ef1f0"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progressBar): update progress bar colors with vars ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a44d73c48b6ccc988508fed5c3fb585353fe0958"},(0,n.kt)("inlineCode",{parentName:"a"},"a44d73c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): add required attribute to form fields ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/21da79eafa9f23dcf01cac7e096da7fab2187450"},(0,n.kt)("inlineCode",{parentName:"a"},"21da79e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(list): adjust bullet size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2b29e4e429f939500bc7d7ebd5836b8bc24090ec"},(0,n.kt)("inlineCode",{parentName:"a"},"2b29e4e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(list): adjust bullet size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/61c341cfdad3fccdd7499f6957f91ab99159ea16"},(0,n.kt)("inlineCode",{parentName:"a"},"61c341c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): add inverted background to global variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1427e70f2b208531bbb91ab1a708430f1c03ea3a"},(0,n.kt)("inlineCode",{parentName:"a"},"1427e70"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): add inverted background to global variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea25dfa5589181b7d23bef153bae3ab279e70167"},(0,n.kt)("inlineCode",{parentName:"a"},"ea25dfa"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): remove custom class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/46cc5601e378c7bfcf927b7c25dae2a2d3f795fd"},(0,n.kt)("inlineCode",{parentName:"a"},"46cc560"))),(0,n.kt)("li",{parentName:"ul"},"refactor(container): update mobile width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d548a44d86745270778134028be597f559d7a0b4"},(0,n.kt)("inlineCode",{parentName:"a"},"d548a44"))),(0,n.kt)("li",{parentName:"ul"},"refactor(grid): replace px with rem units ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e792f51e4f41b8f3f53e297b9e5a01d5e2d9bfb1"},(0,n.kt)("inlineCode",{parentName:"a"},"e792f51"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): remove custom class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b5c8e7c2aeb2751d4b981eacc51e3dda58a922dc"},(0,n.kt)("inlineCode",{parentName:"a"},"b5c8e7c"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): updated template to change what's new title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e15f4d3c3e5d4199886bb4cfeda8dce6a4bf041"},(0,n.kt)("inlineCode",{parentName:"a"},"3e15f4d"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): added display variable for footer site logos ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5b3c2f6d85b3a42eefa8521a074a7581bfbd8fb"},(0,n.kt)("inlineCode",{parentName:"a"},"d5b3c2f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(grid): replace px with rem units ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f0331d00f537cf41ca184796386f60a88bfe6c86"},(0,n.kt)("inlineCode",{parentName:"a"},"f0331d0"))),(0,n.kt)("li",{parentName:"ul"},"change(github): auto deploy only on develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/11d6b4e9059674b6dd1fe655995231be03a910fb"},(0,n.kt)("inlineCode",{parentName:"a"},"11d6b4e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): implementation in preparation for Volto integration #20 #89 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/95b136d51ddbc5632c0fa1cc696c2297a8c4695c"},(0,n.kt)("inlineCode",{parentName:"a"},"95b136d"))),(0,n.kt)("li",{parentName:"ul"},"change(github): trigger autobuild when modifying templates contents ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/46094b1427793cd88da6f615b16b70e6cfaee9af"},(0,n.kt)("inlineCode",{parentName:"a"},"46094b1")))),(0,n.kt)("h4",{id:"-internal-changes-22"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(list): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f9e3b05effc0afeddc234b491bc86f2ec82a764f"},(0,n.kt)("inlineCode",{parentName:"a"},"f9e3b05"))),(0,n.kt)("li",{parentName:"ul"},"style(list): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8eb715b05b3bef2795d2485084386c6e910392cf"},(0,n.kt)("inlineCode",{parentName:"a"},"8eb715b"))),(0,n.kt)("li",{parentName:"ul"},"chore(github): merge changes from develop to develop-itml ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/063bd6ecc5e47321854ca4994a91bf0a43ab3e3e"},(0,n.kt)("inlineCode",{parentName:"a"},"063bd6e"))),(0,n.kt)("li",{parentName:"ul"},"chore(github): build deployment only on develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a5a1b0802b46d674d04ae099afc8510e3cb62222"},(0,n.kt)("inlineCode",{parentName:"a"},"a5a1b08"))),(0,n.kt)("li",{parentName:"ul"},"chore(github): build deployment only on develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bb455aa4308e6593c45bcb3a62b8058709d74f83"},(0,n.kt)("inlineCode",{parentName:"a"},"bb455aa"))),(0,n.kt)("li",{parentName:"ul"},"chore(github): merge changes from develop to develop-itml ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/129c12f60025db50bac5b2d3dd36e04a97d49499"},(0,n.kt)("inlineCode",{parentName:"a"},"129c12f")))),(0,n.kt)("h4",{id:"\ufe0f-others-51"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},'Revert "chore(github): merge changes from develop to develop-itml" ',(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca9520fe8d91f8924ea203eb32001e3e6518e472"},(0,n.kt)("inlineCode",{parentName:"a"},"ca9520f"))),(0,n.kt)("li",{parentName:"ul"},"refactor breadcrumbs component, make it functional and customizable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e902d6931060c5676d67842f95391379fcb3cccf"},(0,n.kt)("inlineCode",{parentName:"a"},"e902d69"))),(0,n.kt)("li",{parentName:"ul"},"rollback(cards): move custom display to volto-block-image-cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2564b1ec2cc52670c0f2abc92c49161f5cd1b006"},(0,n.kt)("inlineCode",{parentName:"a"},"2564b1e"))),(0,n.kt)("li",{parentName:"ul"},"bring back segment wrapper and make it attached ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8458f0321f44f22a605e7179485d97f41a0afa38"},(0,n.kt)("inlineCode",{parentName:"a"},"8458f03"))),(0,n.kt)("li",{parentName:"ul"},"no ",(0,n.kt)("inlineCode",{parentName:"li"},"display: flex")," for blockquote added from slate ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5595ce1b8173e6952ab3926dc5f3c988279a42dc"},(0,n.kt)("inlineCode",{parentName:"a"},"5595ce1"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about code length ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a5f36523682dde8d1e16f416a07cd0c8c615a386"},(0,n.kt)("inlineCode",{parentName:"a"},"a5f3652"))),(0,n.kt)("li",{parentName:"ul"},"Add indenting rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/15c44cbcb6a52d0fd0438ff9b5d0e5963a4b53a0"},(0,n.kt)("inlineCode",{parentName:"a"},"15c44cb"))),(0,n.kt)("li",{parentName:"ul"},"fix warning related to proptype ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/946c6c6bc9dece0985ae4b9f9cad6ece2be0ff2c"},(0,n.kt)("inlineCode",{parentName:"a"},"946c6c6"))),(0,n.kt)("li",{parentName:"ul"},"fix profile section css overflow ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/db5126fc902e191d1e18fb7e4c54877c8d8786e6"},(0,n.kt)("inlineCode",{parentName:"a"},"db5126f"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about import sorting ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/804e188eea30427053111310ad2d3edf6a4ec78b"},(0,n.kt)("inlineCode",{parentName:"a"},"804e188"))),(0,n.kt)("li",{parentName:"ul"},"don't use volto-slate ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6a029765d3a59ac65b3b5dd18c1a9624bae1d52a"},(0,n.kt)("inlineCode",{parentName:"a"},"6a02976"))),(0,n.kt)("li",{parentName:"ul"},"remove segment custom width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1d3ea40f98bbdc1eab95b4da739a659b5e29ec16"},(0,n.kt)("inlineCode",{parentName:"a"},"1d3ea40"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about naming vars ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f9020fa3073190681de36cf1dcdf62e69ac2c74"},(0,n.kt)("inlineCode",{parentName:"a"},"8f9020f"))),(0,n.kt)("li",{parentName:"ul"},"update style for accordion title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0b0d678c69d8b0765ff015b0355c01d57c643192"},(0,n.kt)("inlineCode",{parentName:"a"},"0b0d678"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.6.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e771e657e5bedca3630d05cda643c45da5369d4c"},(0,n.kt)("inlineCode",{parentName:"a"},"e771e65"))),(0,n.kt)("li",{parentName:"ul"},"update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bbcab87ef4c8475f347f0daf4ab7e428e69c2316"},(0,n.kt)("inlineCode",{parentName:"a"},"bbcab87"))),(0,n.kt)("li",{parentName:"ul"},"add margin to ","<","br",">"," element to simulate gap as in design ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c6685c11a14febfc9b6c592a9adc9a25a0b80458"},(0,n.kt)("inlineCode",{parentName:"a"},"c6685c1"))),(0,n.kt)("li",{parentName:"ul"},"make breadcrumbs default size as tiny ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/589581fa29a7e249e59393bebe9dfe284090db6f"},(0,n.kt)("inlineCode",{parentName:"a"},"589581f"))),(0,n.kt)("li",{parentName:"ul"},"remove uneeded style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/82a8fb1eb3a359d54bc59234e498eb122d07223c"},(0,n.kt)("inlineCode",{parentName:"a"},"82a8fb1"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about hardcoded values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e04e0df7cd47d575e649d1995ea5c64b2a431b05"},(0,n.kt)("inlineCode",{parentName:"a"},"e04e0df"))),(0,n.kt)("li",{parentName:"ul"},"Add file mode rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/65c9a9357a82a39bf54862eff9231264a6277ab5"},(0,n.kt)("inlineCode",{parentName:"a"},"65c9a93"))),(0,n.kt)("li",{parentName:"ul"},"Add DRY rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/66c9c3a6b05bf3395f5bda1a7c5af26a9962e66c"},(0,n.kt)("inlineCode",{parentName:"a"},"66c9c3a"))),(0,n.kt)("li",{parentName:"ul"},"set profile section overflow to auto ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/71ab47f89a433233c14b394c3824e607dd18a393"},(0,n.kt)("inlineCode",{parentName:"a"},"71ab47f"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using eea-website-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/647a6e3e2093f2c4884c356eb148453551c8f33f"},(0,n.kt)("inlineCode",{parentName:"a"},"647a6e3"))),(0,n.kt)("li",{parentName:"ul"},"removed override already present in card.less ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/50d2ab26f85c8f409da02ec128cc1df34848ca69"},(0,n.kt)("inlineCode",{parentName:"a"},"50d2ab2"))),(0,n.kt)("li",{parentName:"ul"},"update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7a1d482aa875ab2669ed688663228d79ce9b7bea"},(0,n.kt)("inlineCode",{parentName:"a"},"7a1d482"))),(0,n.kt)("li",{parentName:"ul"},"Add functional components rule; add classnames rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91a0b067c7a36002a6d49c5c0238f593b5a6ac6e"},(0,n.kt)("inlineCode",{parentName:"a"},"91a0b06"))),(0,n.kt)("li",{parentName:"ul"},"added comment about need for removal of this fix later ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/65b81665c1cc41991b4903bb44a5eb7fb8ec5f3b"},(0,n.kt)("inlineCode",{parentName:"a"},"65b8166")))),(0,n.kt)("h3",{id:"015---2022-03-08"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.4...0.1.5"},"0.1.5")," - 2022-03-08"),(0,n.kt)("h4",{id:"-new-features-32"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(cards): add custom display for volto-block-image-cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f49ffb65f41c78499f56251c2de267ce5617b4c5"},(0,n.kt)("inlineCode",{parentName:"a"},"f49ffb6"))),(0,n.kt)("li",{parentName:"ul"},"feat(KeyContent): add new component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2534c542c2fd729b31a9064a21dae2bd3cacb2e4"},(0,n.kt)("inlineCode",{parentName:"a"},"2534c54"))),(0,n.kt)("li",{parentName:"ul"},"feat(docusaurus): Updated developer guidelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca146ffd42cb31286a5c49fa09390d0a93270cfa"},(0,n.kt)("inlineCode",{parentName:"a"},"ca146ff"))),(0,n.kt)("li",{parentName:"ul"},"feat(storybook): add testimonial component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/55d97472d82f3819674e78f684e197625c9f854c"},(0,n.kt)("inlineCode",{parentName:"a"},"55d9747"))),(0,n.kt)("li",{parentName:"ul"},"feat(storybook): add AvatarGrid component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b6684456ea6fa17695734b5179b39be77644da93"},(0,n.kt)("inlineCode",{parentName:"a"},"b668445"))),(0,n.kt)("li",{parentName:"ul"},"feat(storybook):add Loader component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6758346a516f7c4be5d66dfdf198dbe2ffe3f01"},(0,n.kt)("inlineCode",{parentName:"a"},"f675834")))),(0,n.kt)("h4",{id:"-bug-fixes-46"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(breakpoints): fix largest screen breakpoint bug on scaling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e4a11c876c20187351fa9454b4fbf0de3e502bff"},(0,n.kt)("inlineCode",{parentName:"a"},"e4a11c8"))),(0,n.kt)("li",{parentName:"ul"},"fix(profile): section css overflow and padding issues #95 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bb9eb0f83307524bda5cf86aa0dfd678c65da653"},(0,n.kt)("inlineCode",{parentName:"a"},"bb9eb0f"))),(0,n.kt)("li",{parentName:"ul"},"fix(storybook): lint auto changes for AvatarGrid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8e74f17df77f8f9f96bf442dc178417bbfc04c6"},(0,n.kt)("inlineCode",{parentName:"a"},"b8e74f1"))),(0,n.kt)("li",{parentName:"ul"},"fix(components): add grid structure to various components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cc33546deda634cee6031bd6cde6eef3eaacb76a"},(0,n.kt)("inlineCode",{parentName:"a"},"cc33546"))),(0,n.kt)("li",{parentName:"ul"},"fix(header) re-added span tags removed in pull request #74 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/00702d7831b84aad52f10368dbef740baf581ab8"},(0,n.kt)("inlineCode",{parentName:"a"},"00702d7")))),(0,n.kt)("h4",{id:"-enhancements-61"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(button): styling updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/37afda5b00797d456e303fb585dad145b575b2ed"},(0,n.kt)("inlineCode",{parentName:"a"},"37afda5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tab): updates on variables and overrides ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/54bf703f9f34f2f945f4635cd4bc4728174c7d47"},(0,n.kt)("inlineCode",{parentName:"a"},"54bf703"))),(0,n.kt)("li",{parentName:"ul"},"change(blockquote): treat slate as a variation of blockquote component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5e8a8b8220c7c25a266f045442aae44303eb8701"},(0,n.kt)("inlineCode",{parentName:"a"},"5e8a8b8"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): added display variable for footer site logos ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2f942b4a80c3ed9eb94e8b71299f4ebf33501eea"},(0,n.kt)("inlineCode",{parentName:"a"},"2f942b4"))),(0,n.kt)("li",{parentName:"ul"},"refactor(checkbox/radio): remove header from message and adjust top position of bullet ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a072b30bb01cf59339960cfd3254584cfae57c6"},(0,n.kt)("inlineCode",{parentName:"a"},"4a072b3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(color): remove secondaryColorDarken variable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/74c8ba073cc92af3987d81d484768235b95fcffb"},(0,n.kt)("inlineCode",{parentName:"a"},"74c8ba0"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): updated template to change what's new title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/58f58c887560e707ced47ccbac6897d8ebcf45d2"},(0,n.kt)("inlineCode",{parentName:"a"},"58f58c8"))),(0,n.kt)("li",{parentName:"ul"},"change(github): auto deploy only on develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bfa35a32bf0fefd4433aec4f7f8ee2cfe53eaae5"},(0,n.kt)("inlineCode",{parentName:"a"},"bfa35a3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): implementation in preparation for Volto integration #20 #97 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cddda2090d3d17c086dfd0cdb8a4dab3f886bfcd"},(0,n.kt)("inlineCode",{parentName:"a"},"cddda20"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumbs): component, make it functional and pluggable #32 #94 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f42e802bdf29d02c76131379b168c8c2119864b"},(0,n.kt)("inlineCode",{parentName:"a"},"9f42e80"))),(0,n.kt)("li",{parentName:"ul"},"change(card): added styles for volto cards integration #92 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a46ac21e6229059fb982174610a733c44000a2b6"},(0,n.kt)("inlineCode",{parentName:"a"},"a46ac21"))),(0,n.kt)("li",{parentName:"ul"},"refactor(grid): remove column count from example ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac0e9cf8e9f6ea99ddf8d5a92e49903999cde262"},(0,n.kt)("inlineCode",{parentName:"a"},"ac0e9cf"))),(0,n.kt)("li",{parentName:"ul"},"change(github): trigger autobuild when modifying templates contents ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f7d1523e92c1c4b3e6285a48d5f8c776aecfa9c"},(0,n.kt)("inlineCode",{parentName:"a"},"5f7d152"))),(0,n.kt)("li",{parentName:"ul"},"refactor(grid): remove custom grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1d978a96a464b3285961d54cb1cbc7c9eaf35faf"},(0,n.kt)("inlineCode",{parentName:"a"},"1d978a9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Form):change form field wrapper implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/73cdd6daba19aefce091552a62a528a42b323228"},(0,n.kt)("inlineCode",{parentName:"a"},"73cdd6d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(message): update colors to match design ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/633ce311dc5a6a141ee514a9108753531aa661e4"},(0,n.kt)("inlineCode",{parentName:"a"},"633ce31"))),(0,n.kt)("li",{parentName:"ul"},"refactor(checkbox/radio): update variables and remove important rules ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ad533b4e3e821c126f62b558523057720d2573c8"},(0,n.kt)("inlineCode",{parentName:"a"},"ad533b4"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables): add variables to less for new components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/47df026655748865bc7af8f44d51e5a9fcf7ee34"},(0,n.kt)("inlineCode",{parentName:"a"},"47df026"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Tab): fix vertical tab alignment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/401bdf2868e8c8305ad2c3cefa3188b730348574"},(0,n.kt)("inlineCode",{parentName:"a"},"401bdf2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(lint changes): add lint changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6f6847fc19db7922c93cb5f52e50db845d053e04"},(0,n.kt)("inlineCode",{parentName:"a"},"6f6847f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(inpageNavigation): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/62f74ea3c08069da8615516a52df8415d50048d5"},(0,n.kt)("inlineCode",{parentName:"a"},"62f74ea"))),(0,n.kt)("li",{parentName:"ul"},"refactor(message): updates on styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4cf8501de961794baf5a8ecec99e4bcddc2d71b"},(0,n.kt)("inlineCode",{parentName:"a"},"b4cf850"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): update class name ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef0969bd873e9fdd0eb32593f7c3f995270ef44c"},(0,n.kt)("inlineCode",{parentName:"a"},"ef0969b"))),(0,n.kt)("li",{parentName:"ul"},"change(github): use develop for auto pushing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a32a723f8126292f62a71cb4c4f94a2c7dec7605"},(0,n.kt)("inlineCode",{parentName:"a"},"a32a723")))),(0,n.kt)("h4",{id:"-internal-changes-23"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(design-system): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/631fa90e2ec5352c01e2ee0824de4a45cc33de34"},(0,n.kt)("inlineCode",{parentName:"a"},"631fa90"))),(0,n.kt)("li",{parentName:"ul"},"style(checkbox/radio): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a04939fdb530ed998a40aeb5b85a748d5dace0cd"},(0,n.kt)("inlineCode",{parentName:"a"},"a04939f"))),(0,n.kt)("li",{parentName:"ul"},"style(design-system): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c753f0b378384150597283c97f657eafbfff296"},(0,n.kt)("inlineCode",{parentName:"a"},"3c753f0"))),(0,n.kt)("li",{parentName:"ul"},"style(message): stylelint fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5b75057cb3a7b366a940ca9d1ba577cd09dc7225"},(0,n.kt)("inlineCode",{parentName:"a"},"5b75057")))),(0,n.kt)("h4",{id:"-documentation-changes-20"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): visuals guidelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/544a9502dc046d7e8bc635c19480a8deb2b31379"},(0,n.kt)("inlineCode",{parentName:"a"},"544a950"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): search guidelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0fb229d8b6a042bd716a093faaf8a1461b70cdb8"},(0,n.kt)("inlineCode",{parentName:"a"},"0fb229d"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): loader page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/892a25dba66f3557af22f8f0f96db695ddf1b402"},(0,n.kt)("inlineCode",{parentName:"a"},"892a25d")))),(0,n.kt)("h4",{id:"\ufe0f-others-52"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Reformat header.less ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f99dfc82c165304ca5600ce5138c1233615ab69"},(0,n.kt)("inlineCode",{parentName:"a"},"1f99dfc"))),(0,n.kt)("li",{parentName:"ul"},"Close menu when changing path ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/65daea9ee34c64bd5e51104077bc745b68169cd2"},(0,n.kt)("inlineCode",{parentName:"a"},"65daea9"))),(0,n.kt)("li",{parentName:"ul"},"refactor breadcrumbs component, make it functional and customizable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ec374e20565eb0a5aed0ff67a02cd6f77eba1f0"},(0,n.kt)("inlineCode",{parentName:"a"},"4ec374e"))),(0,n.kt)("li",{parentName:"ul"},"rollback(cards): move custom display to volto-block-image-cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/79d4c8914b7184d559465135f046b60ee96301e1"},(0,n.kt)("inlineCode",{parentName:"a"},"79d4c89"))),(0,n.kt)("li",{parentName:"ul"},"Open overlay menu on global menu click ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cc749bc4266aae793b85d72c43c8a08b0c2fec48"},(0,n.kt)("inlineCode",{parentName:"a"},"cc749bc"))),(0,n.kt)("li",{parentName:"ul"},"bring back segment wrapper and make it attached ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f413ffaf641c161e8ff0f8010759cffd7e30238"},(0,n.kt)("inlineCode",{parentName:"a"},"9f413ff"))),(0,n.kt)("li",{parentName:"ul"},"Use renderMenuItem also in mobile menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/02de0bb4750062a310109256b6c6d29120287fd4"},(0,n.kt)("inlineCode",{parentName:"a"},"02de0bb"))),(0,n.kt)("li",{parentName:"ul"},"Fix clicking outside closes menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af526646559d1a00ade04dc24def26e5665a5a8c"},(0,n.kt)("inlineCode",{parentName:"a"},"af52664"))),(0,n.kt)("li",{parentName:"ul"},"Cleanup args in header story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2bf6a304b1149ec1204f08f318248ed52ad8fa3d"},(0,n.kt)("inlineCode",{parentName:"a"},"2bf6a30"))),(0,n.kt)("li",{parentName:"ul"},"fix warning related to proptype ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/824b9beff77aae139882cd50a1d670a02ec6f723"},(0,n.kt)("inlineCode",{parentName:"a"},"824b9be"))),(0,n.kt)("li",{parentName:"ul"},"fix profile section css overflow ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8fd265413149f1b5e033dffa0fbcb5ef5ecad15f"},(0,n.kt)("inlineCode",{parentName:"a"},"8fd2654"))),(0,n.kt)("li",{parentName:"ul"},"don't use volto-slate ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70ca3d4ec4e8e4dc633e957b842d94b708af8b82"},(0,n.kt)("inlineCode",{parentName:"a"},"70ca3d4"))),(0,n.kt)("li",{parentName:"ul"},"remove segment custom width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a60d84d5fe76578b7760aa1dad6eef9a20916a7"},(0,n.kt)("inlineCode",{parentName:"a"},"4a60d84"))),(0,n.kt)("li",{parentName:"ul"},"update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/96f4af0fb22605fd294472eb18f7f62e4bd7b0fb"},(0,n.kt)("inlineCode",{parentName:"a"},"96f4af0"))),(0,n.kt)("li",{parentName:"ul"},"Fix TopDropdownMenu component rendering in mobile ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4626def4e1f97f323f3fef130f5d531925ba15b"},(0,n.kt)("inlineCode",{parentName:"a"},"a4626de"))),(0,n.kt)("li",{parentName:"ul"},"Add usePrevious hook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/797faba3cad73288755f6c6e685448d780905189"},(0,n.kt)("inlineCode",{parentName:"a"},"797faba"))),(0,n.kt)("li",{parentName:"ul"},"make breadcrumbs default size as tiny ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c8e1c64f27596421e78927f11616093667b04c6"},(0,n.kt)("inlineCode",{parentName:"a"},"3c8e1c6"))),(0,n.kt)("li",{parentName:"ul"},"Update package.json ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fa020cb5dd85e28d0713b3e8a11aff5b2c1060af"},(0,n.kt)("inlineCode",{parentName:"a"},"fa020cb"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about hardcoded values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0c6912c82625c2e389fd75f0d0a051348781d407"},(0,n.kt)("inlineCode",{parentName:"a"},"0c6912c"))),(0,n.kt)("li",{parentName:"ul"},"set profile section overflow to auto ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8db62bbcd0258fee16411e94888c732a29b1949d"},(0,n.kt)("inlineCode",{parentName:"a"},"8db62bb"))),(0,n.kt)("li",{parentName:"ul"},"added comment about need for removal of this fix later ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6fdbd713dbfe795e7e81cfa37398774fad71c054"},(0,n.kt)("inlineCode",{parentName:"a"},"6fdbd71"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using eea-website-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6051724437a38675e659c797bb5586ef81286ec0"},(0,n.kt)("inlineCode",{parentName:"a"},"6051724"))),(0,n.kt)("li",{parentName:"ul"},"removed override already present in card.less ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93c4e5aac9cc85ff2cc6c04180f6655d5f5616dc"},(0,n.kt)("inlineCode",{parentName:"a"},"93c4e5a"))),(0,n.kt)("li",{parentName:"ul"},"Remove console.log calls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8a3a4cb32bfed2daa86339b15c0301eb01e19f23"},(0,n.kt)("inlineCode",{parentName:"a"},"8a3a4cb"))),(0,n.kt)("li",{parentName:"ul"},"update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/81bb7d4a02576887b80e978c32724580b772d57a"},(0,n.kt)("inlineCode",{parentName:"a"},"81bb7d4"))),(0,n.kt)("li",{parentName:"ul"},"Update comment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ffa24001728f824b8e7154c93c5aad8196bd92ea"},(0,n.kt)("inlineCode",{parentName:"a"},"ffa2400"))),(0,n.kt)("li",{parentName:"ul"},"merge develop into this branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ad5b388957b7d67f1b7ae06f2b80b1c30868d72a"},(0,n.kt)("inlineCode",{parentName:"a"},"ad5b388"))),(0,n.kt)("li",{parentName:"ul"},"WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a8d97f10b9768894a135549e9dc8f938b663f905"},(0,n.kt)("inlineCode",{parentName:"a"},"a8d97f1"))),(0,n.kt)("li",{parentName:"ul"},"Use header.less from develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/99edbc6ccd6023162dcce75b36d6b9451b06f6dc"},(0,n.kt)("inlineCode",{parentName:"a"},"99edbc6"))),(0,n.kt)("li",{parentName:"ul"},"WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/57b5783e2b03859f89c5926951ea232547b455cc"},(0,n.kt)("inlineCode",{parentName:"a"},"57b5783"))),(0,n.kt)("li",{parentName:"ul"},"WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/785da36b725bf14bff28a67da799c51bc5b4f20f"},(0,n.kt)("inlineCode",{parentName:"a"},"785da36"))),(0,n.kt)("li",{parentName:"ul"},"WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5d1eba9a1df2d2bb078f119ee99b0627ac55ae1d"},(0,n.kt)("inlineCode",{parentName:"a"},"5d1eba9"))),(0,n.kt)("li",{parentName:"ul"},"adds Tags ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e37fc1957ed8357bc2190239da4440bb98b0dabe"},(0,n.kt)("inlineCode",{parentName:"a"},"e37fc19"))),(0,n.kt)("li",{parentName:"ul"},"Add useClickOutside hook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70364c88631cbfa6e6854a99dde42ea2ad73221f"},(0,n.kt)("inlineCode",{parentName:"a"},"70364c8"))),(0,n.kt)("li",{parentName:"ul"},"Implement outside click handling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fa6f81823c47ca32209f3f1c8b1810b5447f97ec"},(0,n.kt)("inlineCode",{parentName:"a"},"fa6f818"))),(0,n.kt)("li",{parentName:"ul"},"Simplify overlay menu template ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/28b04784cf32ed4393e452c56680bffda411d526"},(0,n.kt)("inlineCode",{parentName:"a"},"28b0478"))),(0,n.kt)("li",{parentName:"ul"},"fixes less variables, fixes tags positioning ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cc19b9b537b5f21ceaba986bbd0182bb3b867ac7"},(0,n.kt)("inlineCode",{parentName:"a"},"cc19b9b"))),(0,n.kt)("li",{parentName:"ul"},"WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/15bc0f4287b705839f6fd5ac8835f03e2e99f1f1"},(0,n.kt)("inlineCode",{parentName:"a"},"15bc0f4"))),(0,n.kt)("li",{parentName:"ul"},"no ",(0,n.kt)("inlineCode",{parentName:"li"},"display: flex")," for blockquote added from slate ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/312a893e924dea4e7aed182be4a615bc3c4f04f8"},(0,n.kt)("inlineCode",{parentName:"a"},"312a893"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about code length ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/318cd48f8116a49897590137eebe2ce35285b813"},(0,n.kt)("inlineCode",{parentName:"a"},"318cd48"))),(0,n.kt)("li",{parentName:"ul"},"Add indenting rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d58968522ef82a7d5381fc4958ae2049562b7103"},(0,n.kt)("inlineCode",{parentName:"a"},"d589685"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about import sorting ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cd337c16650ae169e4b634b034f40f3cd887ceb8"},(0,n.kt)("inlineCode",{parentName:"a"},"cd337c1"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about naming vars ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b112de0dcaa4209cfe143dcd26ba929b4cbe0a42"},(0,n.kt)("inlineCode",{parentName:"a"},"b112de0"))),(0,n.kt)("li",{parentName:"ul"},"Bring back classNames from header subpopup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e477a5150bee569fadca300a3ccc3586e7d7ef4a"},(0,n.kt)("inlineCode",{parentName:"a"},"e477a51"))),(0,n.kt)("li",{parentName:"ul"},"removes tags hashtag from jsx ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6b8b3e94a6a1060304c1e5b228806985343ef6a0"},(0,n.kt)("inlineCode",{parentName:"a"},"6b8b3e9"))),(0,n.kt)("li",{parentName:"ul"},"WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d481324ff7a63e3cb0847b89fa188cc8781de4dc"},(0,n.kt)("inlineCode",{parentName:"a"},"d481324"))),(0,n.kt)("li",{parentName:"ul"},"fixes undefined on empty classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4b29080d646c44b02a28c4619f5285227fa2bf78"},(0,n.kt)("inlineCode",{parentName:"a"},"4b29080"))),(0,n.kt)("li",{parentName:"ul"},"stylelint changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a5ab83018bccd8fbfcf2160fe9c6c4fc24abe83a"},(0,n.kt)("inlineCode",{parentName:"a"},"a5ab830"))),(0,n.kt)("li",{parentName:"ul"},"Footer link color @white ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/578e4f7bb174cd46d50a8b5c5a97f8bbff510f11"},(0,n.kt)("inlineCode",{parentName:"a"},"578e4f7"))),(0,n.kt)("li",{parentName:"ul"},"add margin to ","<","br",">"," element to simulate gap as in design ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9ab9a97dc231fd3b704fedd99c742f425be4578c"},(0,n.kt)("inlineCode",{parentName:"a"},"9ab9a97"))),(0,n.kt)("li",{parentName:"ul"},"impors colors from site variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6117267716b76b17379ae989911c5d5f00e63259"},(0,n.kt)("inlineCode",{parentName:"a"},"6117267"))),(0,n.kt)("li",{parentName:"ul"},"small fix for the link in footer action ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/72df049aa644ac2a675057bf3a96440144acabfb"},(0,n.kt)("inlineCode",{parentName:"a"},"72df049"))),(0,n.kt)("li",{parentName:"ul"},"remove uneeded style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/66e9064de395b37caef1436aaee3a164b53ae406"},(0,n.kt)("inlineCode",{parentName:"a"},"66e9064"))),(0,n.kt)("li",{parentName:"ul"},"use proper naming conventions for var naming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/596e3143e28f23e60f20becd97276831c89d9684"},(0,n.kt)("inlineCode",{parentName:"a"},"596e314"))),(0,n.kt)("li",{parentName:"ul"},"Add file mode rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/805baa7db5ae1863bc85687f8f872c74a26647c8"},(0,n.kt)("inlineCode",{parentName:"a"},"805baa7"))),(0,n.kt)("li",{parentName:"ul"},"use less variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b43ac8d3bfc0231313f3d8bc719e373a127c6329"},(0,n.kt)("inlineCode",{parentName:"a"},"b43ac8d"))),(0,n.kt)("li",{parentName:"ul"},"Add DRY rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2f1584e769d0462c0385847630e3bbfe48a52339"},(0,n.kt)("inlineCode",{parentName:"a"},"2f1584e"))),(0,n.kt)("li",{parentName:"ul"},"Add functional components rule; add classnames rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1b2915ed3a4a3446e11058ac7de8937cf5755630"},(0,n.kt)("inlineCode",{parentName:"a"},"1b2915e"))),(0,n.kt)("li",{parentName:"ul"},"fix z-index of header ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d2a5d6bb822a298367ce58d867939318171a300"},(0,n.kt)("inlineCode",{parentName:"a"},"7d2a5d6"))),(0,n.kt)("li",{parentName:"ul"},"Remove comment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d120b16491406ea7cc26428dcf13ec2565868d0"},(0,n.kt)("inlineCode",{parentName:"a"},"7d120b1")))),(0,n.kt)("h3",{id:"014---2022-03-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.4-beta.0...0.1.4"},"0.1.4")," - 2022-03-01"),(0,n.kt)("h4",{id:"-enhancements-62"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(pagination): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/06cc3b6db6f56040264e4c70fe2e39ace14499d7"},(0,n.kt)("inlineCode",{parentName:"a"},"06cc3b6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Form):create form field wrapper file ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/95b9934a75ffd6b254b7bb9c119b8087c7565c13"},(0,n.kt)("inlineCode",{parentName:"a"},"95b9934"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): update margins for menu items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/230e476d133b3f7853a73f3f2ee372c6306bd43f"},(0,n.kt)("inlineCode",{parentName:"a"},"230e476"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): update gradient ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/47f2ea40c4f214a41af58ceb90839a05932b0b55"},(0,n.kt)("inlineCode",{parentName:"a"},"47f2ea4")))),(0,n.kt)("h4",{id:"-documentation-changes-21"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): divider page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c6bb2389f819a9ebd8e34db0e825f3e5f62130d4"},(0,n.kt)("inlineCode",{parentName:"a"},"c6bb238")))),(0,n.kt)("h4",{id:"\ufe0f-others-53"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"add footer links,align footer image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b039564e8cd3a0319ebe07f434f20bb7d7827fe1"},(0,n.kt)("inlineCode",{parentName:"a"},"b039564"))),(0,n.kt)("li",{parentName:"ul"},"cosmetics: remove formatting ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e02b08dc2adc8b89a5b9117b5a572c7080248c29"},(0,n.kt)("inlineCode",{parentName:"a"},"e02b08d"))),(0,n.kt)("li",{parentName:"ul"},"refactor Footer component to consume children and prop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/faafcffe07383ba55f5746cb971cdf706d988f78"},(0,n.kt)("inlineCode",{parentName:"a"},"faafcff"))),(0,n.kt)("li",{parentName:"ul"},"update footer stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4e5742872f21d9737f3de443fa0e9d1b6ba02637"},(0,n.kt)("inlineCode",{parentName:"a"},"4e57428"))),(0,n.kt)("li",{parentName:"ul"},"update stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/81973cac96ee48e9b294c45e32c0ec3d2956fe67"},(0,n.kt)("inlineCode",{parentName:"a"},"81973ca"))),(0,n.kt)("li",{parentName:"ul"},"Small improvements to footer ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6d1fdc000ab83932df62244142068f097aeeb85"},(0,n.kt)("inlineCode",{parentName:"a"},"f6d1fdc"))),(0,n.kt)("li",{parentName:"ul"},"fix header urls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e5908916823a1f5771ddbeb51b3e8af026425c49"},(0,n.kt)("inlineCode",{parentName:"a"},"e590891"))),(0,n.kt)("li",{parentName:"ul"},"Rename files in footer story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3de0c19d1ddeb69d8567026e1532fceb9221049a"},(0,n.kt)("inlineCode",{parentName:"a"},"3de0c19"))),(0,n.kt)("li",{parentName:"ul"},"add style for accordion title input on edit mode ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/598aa129f2dff0a2cb2ec57f551fa72481aa911e"},(0,n.kt)("inlineCode",{parentName:"a"},"598aa12"))),(0,n.kt)("li",{parentName:"ul"},"remove comments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2db0d2c2bbebe8bab8cf9801c5ea2650dde96b87"},(0,n.kt)("inlineCode",{parentName:"a"},"2db0d2c"))),(0,n.kt)("li",{parentName:"ul"},"Apply slate customization if volto-slate addon is used ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c066701dc359c6daf01703dac8fa61c2314c11cf"},(0,n.kt)("inlineCode",{parentName:"a"},"c066701"))),(0,n.kt)("li",{parentName:"ul"},"use relative links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af91a203bb30f5c9aa1335bfa8cdaa7857d577e2"},(0,n.kt)("inlineCode",{parentName:"a"},"af91a20"))),(0,n.kt)("li",{parentName:"ul"},"make footer anchor links white ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0c671e1bf52268505a5dc58196c285c04da33b10"},(0,n.kt)("inlineCode",{parentName:"a"},"0c671e1"))),(0,n.kt)("li",{parentName:"ul"},"use custom var for line-height ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f7f6c7ea605014741b9426b19008a4e6eda6704c"},(0,n.kt)("inlineCode",{parentName:"a"},"f7f6c7e"))),(0,n.kt)("li",{parentName:"ul"},"Update semantic.less ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4a90aed030a8927fa2ea949e4f44d23638c751a"},(0,n.kt)("inlineCode",{parentName:"a"},"a4a90ae"))),(0,n.kt)("li",{parentName:"ul"},"Bump release version ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c41a42bc2fd8174a2554e6dce1a1090eff4f3bd1"},(0,n.kt)("inlineCode",{parentName:"a"},"c41a42b"))),(0,n.kt)("li",{parentName:"ul"},"Update style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/89686990b2481f339c9bec7e7f9d35d9caab94c5"},(0,n.kt)("inlineCode",{parentName:"a"},"8968699"))),(0,n.kt)("li",{parentName:"ul"},"remove styling on header popups ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/86c499be61c0d2df46cb3469a47f0afae2e46c49"},(0,n.kt)("inlineCode",{parentName:"a"},"86c499b"))),(0,n.kt)("li",{parentName:"ul"},"remove search icon styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aca80fdc78859461cfee1d902b1d122d4a189b31"},(0,n.kt)("inlineCode",{parentName:"a"},"aca80fd"))),(0,n.kt)("li",{parentName:"ul"},"adjust popup height for computer screens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/47c5edb06c8d8cdb9af8ac64f68be0e0360eccaf"},(0,n.kt)("inlineCode",{parentName:"a"},"47c5edb"))),(0,n.kt)("li",{parentName:"ul"},"fix login container width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9a887e3b15aa63aab9be8738f599febcfe245b81"},(0,n.kt)("inlineCode",{parentName:"a"},"9a887e3"))),(0,n.kt)("li",{parentName:"ul"},"Typo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/90da95c67e965124da7f431e464bcbc15fa67894"},(0,n.kt)("inlineCode",{parentName:"a"},"90da95c"))),(0,n.kt)("li",{parentName:"ul"},"fix search-input icon line-height ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b087ff86d7753f3ee0bf90a9b07c4ee7ef5e336c"},(0,n.kt)("inlineCode",{parentName:"a"},"b087ff8"))),(0,n.kt)("li",{parentName:"ul"},"lint fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e9790ca72b8d3caf114c1b80b9c5837fb6a1a56e"},(0,n.kt)("inlineCode",{parentName:"a"},"e9790ca"))),(0,n.kt)("li",{parentName:"ul"},"Rename, reorganize logos ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1ef8d22df5a757258d8610818f44362046bc828d"},(0,n.kt)("inlineCode",{parentName:"a"},"1ef8d22")))),(0,n.kt)("h3",{id:"014-beta0---2022-02-25"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.3...0.1.4-beta.0"},"0.1.4-beta.0")," - 2022-02-25"),(0,n.kt)("h4",{id:"-new-features-33"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(github): added feature and bug reports templates with our guidelines as checkboxes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/15490937382ced93f5ac69cc1939256c0a468823"},(0,n.kt)("inlineCode",{parentName:"a"},"1549093")))),(0,n.kt)("h3",{id:"013---2022-02-25"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.2...0.1.3"},"0.1.3")," - 2022-02-25"),(0,n.kt)("h4",{id:"-bug-fixes-47"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(all): change eol to unix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/62e72244f78d43ce1c7b1a5ceb8405e4a617c88a"},(0,n.kt)("inlineCode",{parentName:"a"},"62e7224"))),(0,n.kt)("li",{parentName:"ul"},"fix(banner): separate url value ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f9c9140a6f8640bbb83a08f9c5c268f31ff7b6a8"},(0,n.kt)("inlineCode",{parentName:"a"},"f9c9140"))),(0,n.kt)("li",{parentName:"ul"},"fix(all): merge eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c68f6e0e7ab11d7451c8aabf194f62da0b6adb28"},(0,n.kt)("inlineCode",{parentName:"a"},"c68f6e0"))),(0,n.kt)("li",{parentName:"ul"},"fix(blockquote): align self property now uses a valid entry ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ec761634765105694386ce48153fb95c09339273"},(0,n.kt)("inlineCode",{parentName:"a"},"ec76163")))),(0,n.kt)("h4",{id:"-enhancements-63"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): new implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff013afc68fed97d085e3930f6d728b266786dc1"},(0,n.kt)("inlineCode",{parentName:"a"},"ff013af"))),(0,n.kt)("li",{parentName:"ul"},"change(volto): removed customizations made for ims theme from volto-eea-design-system ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bc8d514d82da0811c10eefe6dde16e0846497a4a"},(0,n.kt)("inlineCode",{parentName:"a"},"bc8d514"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Timeline): divide to sub components and change files to .jsx ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e2bd3b6c8dd064e7269819ce465b961a0cee849"},(0,n.kt)("inlineCode",{parentName:"a"},"3e2bd3b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4e5d08d565ef08e4e390ede4a611145a16ca2fa9"},(0,n.kt)("inlineCode",{parentName:"a"},"4e5d08d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): link header's menu to mega menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/08406d84e5bc1c7eb1358baff19ff6731f124b32"},(0,n.kt)("inlineCode",{parentName:"a"},"08406d8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Menu): change mega menu implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/455a51b9a9fbb00c6a89c42de226787c143176f7"},(0,n.kt)("inlineCode",{parentName:"a"},"455a51b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Grid):minor changes and delete extra files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/272585dfed0c0e82b26c1e6843484ad0981ba75f"},(0,n.kt)("inlineCode",{parentName:"a"},"272585d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(timeline): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b98641af00f23302b728094ed00a4563b6813387"},(0,n.kt)("inlineCode",{parentName:"a"},"b98641a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): fix link hover issue for tablet ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/564e9721aea7d4ed998d88764e37454bc3154d3d"},(0,n.kt)("inlineCode",{parentName:"a"},"564e972"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add remix icons and minor updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c9c97dd719187e996efabaee28ccbf23d43f03af"},(0,n.kt)("inlineCode",{parentName:"a"},"c9c97dd"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): change header buttons implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6608b8cfffb75dda90b01728dc4fe657cbd84069"},(0,n.kt)("inlineCode",{parentName:"a"},"6608b8c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): add sub components and change existing Main ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/74c35a3fe462bdad7b9b2a5a6e969043439fdf5b"},(0,n.kt)("inlineCode",{parentName:"a"},"74c35a3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(table): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab7a0e8d9e83edb3035d57285a5f85557bcd7576"},(0,n.kt)("inlineCode",{parentName:"a"},"ab7a0e8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Footer): delete Actions & ThemeSites files and clear imports ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7a78456f55742a1b356070303218342876641e52"},(0,n.kt)("inlineCode",{parentName:"a"},"7a78456"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/326655a48aeac65b32beadb48707d0193c952702"},(0,n.kt)("inlineCode",{parentName:"a"},"326655a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Breadcrumb): add react router link and minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/073a3a36215427dce274a533b10d2d0bb3526de9"},(0,n.kt)("inlineCode",{parentName:"a"},"073a3a3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): show menu on search & minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4d49a8ae6958b84bd2dbaf7bd5f62310037eb288"},(0,n.kt)("inlineCode",{parentName:"a"},"4d49a8a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(List): add extra default list story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/95665cdca945cba104a25d5efcbc56436dffbd7f"},(0,n.kt)("inlineCode",{parentName:"a"},"95665cd"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus) change generation of what's new section and bump package version ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6c35cff4d65bb44755376c85ff4de8c6b39af00b"},(0,n.kt)("inlineCode",{parentName:"a"},"6c35cff"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Footer): minor code changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/67cb4bc5f9d341da78e7816ed89f219d8ac2836e"},(0,n.kt)("inlineCode",{parentName:"a"},"67cb4bc"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Menu): add class to mega menu items for styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19baa342c29322d11371303dc0092f472da1eeee"},(0,n.kt)("inlineCode",{parentName:"a"},"19baa34"))),(0,n.kt)("li",{parentName:"ul"},"change(accordion): modified default accordion stories titles with real accordion names ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cf11cc81d7096d338c565180597822e51fcaa8b7"},(0,n.kt)("inlineCode",{parentName:"a"},"cf11cc8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): accessibility image alt fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7347a688c2f37f08390b189f8bfa990c26c7f75"},(0,n.kt)("inlineCode",{parentName:"a"},"a7347a6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): adjust to volto in progress ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/760becabf40dbbaed36dac6c37275c7e31aa2509"},(0,n.kt)("inlineCode",{parentName:"a"},"760beca"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): header items as storybook arguments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/388c752aa0694e78f5306c2b2efa4a34df4b9ca6"},(0,n.kt)("inlineCode",{parentName:"a"},"388c752"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): update less variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/35b0a98eced49212bb08c3c7d2ac6987a16ec6be"},(0,n.kt)("inlineCode",{parentName:"a"},"35b0a98"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): actions as buttons; don't hardcode url for banner image; subcomponentize Banner, add Banner.Action; add developer guidelines on inline styles and line endings; ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6dd5a41248e8bf4095744bd89217707f3ad820a1"},(0,n.kt)("inlineCode",{parentName:"a"},"6dd5a41"))),(0,n.kt)("li",{parentName:"ul"},"refactor(blockquote): fix responsive margins and sizes rems ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/209f94f5535d83678af5fd650dcc3892a94c8a34"},(0,n.kt)("inlineCode",{parentName:"a"},"209f94f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Input): label position and style change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/970074aacae0c1ffabe88be58779b332993a37fd"},(0,n.kt)("inlineCode",{parentName:"a"},"970074a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update dropdown menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32eb0fa5dbb431c5d8e74e4c3e28b0555dab8aea"},(0,n.kt)("inlineCode",{parentName:"a"},"32eb0fa"))),(0,n.kt)("li",{parentName:"ul"},"refactor(timeline): theming updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c80c9aa5eb08c3b58199c6f6faca06445640f9f8"},(0,n.kt)("inlineCode",{parentName:"a"},"c80c9aa"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Blockquote):remove image stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a6357caa641e18e7a19b834cd907ba8c7117367f"},(0,n.kt)("inlineCode",{parentName:"a"},"a6357ca"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus) proofread blockquote usage section and removed unused api section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0bb29fdb73bce90f842748abd978a388fff93932"},(0,n.kt)("inlineCode",{parentName:"a"},"0bb29fd"))),(0,n.kt)("li",{parentName:"ul"},"change(infrastructure) cherry-pick fix 9639243 skipping jenkins on auto commits ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fc744cda5a4e6d9da0ab6e7f92868d53f28f53c1"},(0,n.kt)("inlineCode",{parentName:"a"},"fc744cd"))),(0,n.kt)("li",{parentName:"ul"},"change(ci) build storybook and docusaurus only when pushing to develop-itml branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4de0cbf9bfc4ecb46605dca1048a38db844880e7"},(0,n.kt)("inlineCode",{parentName:"a"},"4de0cbf"))),(0,n.kt)("li",{parentName:"ul"},"change(infrastructure): modify whats new doc when committing the auto deployment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/39df33ed946a8167e4954cffb676144700e0ec38"},(0,n.kt)("inlineCode",{parentName:"a"},"39df33e"))),(0,n.kt)("li",{parentName:"ul"},"change(blockquote): introduce float argument for blockquote with image storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8fc72906c264b5e96702f8518e81d5724b494a5c"},(0,n.kt)("inlineCode",{parentName:"a"},"8fc7290"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pullquote): add word break ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2245e53dde6dd8abf437afa94e92bbedc60c9f8c"},(0,n.kt)("inlineCode",{parentName:"a"},"2245e53"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner): minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b9073b60e337eab40a992283b5b9e75d5cffe895"},(0,n.kt)("inlineCode",{parentName:"a"},"b9073b6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(table): fix th font weight ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a96a0a7a4cb450b5f947bc397495a2a41c605c87"},(0,n.kt)("inlineCode",{parentName:"a"},"a96a0a7"))),(0,n.kt)("li",{parentName:"ul"},"refactor(comment): remove avatar border radius ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d42c37bb8f71e20e1d0ec438c14e3c7ac00cf0ae"},(0,n.kt)("inlineCode",{parentName:"a"},"d42c37b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): adjust title size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7a24d9c07a5994fa46c39fdf1e827e0d1ae5e504"},(0,n.kt)("inlineCode",{parentName:"a"},"7a24d9c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Image): change image path ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a580da68a45bbe68d314f60e9495fc321489caf5"},(0,n.kt)("inlineCode",{parentName:"a"},"a580da6"))),(0,n.kt)("li",{parentName:"ul"},"change(infrastructure): specify that docs folder contains changes for deployment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a1ca9153b70e3525cd73423d059a8607f63fc2b9"},(0,n.kt)("inlineCode",{parentName:"a"},"a1ca915")))),(0,n.kt)("h4",{id:"-internal-changes-24"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(input) prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e83fa0c3e95e33d89ab668de38e6b0b12d9fb0d9"},(0,n.kt)("inlineCode",{parentName:"a"},"e83fa0c"))),(0,n.kt)("li",{parentName:"ul"},"chore(storybook): prettier fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/354c7b33c92a9f48ca9cbb0b96b6cec213e465c8"},(0,n.kt)("inlineCode",{parentName:"a"},"354c7b3"))),(0,n.kt)("li",{parentName:"ul"},"chore(design system): technical commit for edw integration tests ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f76035122d647e14b5151af3b39f0ab3e199af2"},(0,n.kt)("inlineCode",{parentName:"a"},"9f76035"))),(0,n.kt)("li",{parentName:"ul"},"style(storybook): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c9ad345268335c42e41d13b35c0da93e9770847"},(0,n.kt)("inlineCode",{parentName:"a"},"3c9ad34"))),(0,n.kt)("li",{parentName:"ul"},"chore(infrastructure) updated branch with changes from bitbucket ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/77866f8c7ac203db0645a74b7a7456b5c4de5dd7"},(0,n.kt)("inlineCode",{parentName:"a"},"77866f8")))),(0,n.kt)("h4",{id:"\ufe0f-others-54"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"doc(colours):fix color to better show primary ones ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/705b7899f9d687747d2deb27ac4d8b4429878de0"},(0,n.kt)("inlineCode",{parentName:"a"},"705b789"))),(0,n.kt)("li",{parentName:"ul"},"doc(colours):change font size to fit text in one line ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ad751660ec832e67a0c858e75685259b9ef8d82"},(0,n.kt)("inlineCode",{parentName:"a"},"4ad7516"))),(0,n.kt)("li",{parentName:"ul"},"bump package release to 1.3.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f3cfe4f5232ff96a9845d12da72008cf838c1010"},(0,n.kt)("inlineCode",{parentName:"a"},"f3cfe4f"))),(0,n.kt)("li",{parentName:"ul"},"Refactor banner into content subcomponent ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f8df238b4db90fdb841cdd5436a644e582f73b82"},(0,n.kt)("inlineCode",{parentName:"a"},"f8df238"))),(0,n.kt)("li",{parentName:"ul"},"lint fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cda322d8c013ef303b93b4b8d29594aa3bbd0bc1"},(0,n.kt)("inlineCode",{parentName:"a"},"cda322d"))),(0,n.kt)("li",{parentName:"ul"},"rollback don'ts grammar change and disable unresolved import for Banner.stories.jsx ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a1bd7154fa64451b6a521743955a57405dc7fb67"},(0,n.kt)("inlineCode",{parentName:"a"},"a1bd715"))),(0,n.kt)("li",{parentName:"ul"},"Add space line in component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4d1a5fbe9a9ea53701702d7ce33622795f5ab00"},(0,n.kt)("inlineCode",{parentName:"a"},"d4d1a5f")))),(0,n.kt)("h3",{id:"012---2022-02-17"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.2-beta.2...0.1.2"},"0.1.2")," - 2022-02-17"),(0,n.kt)("h4",{id:"-new-features-34"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(blockquote) added blockquote styles as a custom module ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d30662e23176cf7a5ab64aa322acd5a09a0c4130"},(0,n.kt)("inlineCode",{parentName:"a"},"d30662e")))),(0,n.kt)("h4",{id:"-bug-fixes-48"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(inpageNavigation): hide at the top of the page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/97ef50069cd9b29345fb68ce8b557a47577669a4"},(0,n.kt)("inlineCode",{parentName:"a"},"97ef500"))),(0,n.kt)("li",{parentName:"ul"},"fix(footer):missing image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac91a29a134c97af842c6be4987c60c44c4c96d8"},(0,n.kt)("inlineCode",{parentName:"a"},"ac91a29"))),(0,n.kt)("li",{parentName:"ul"},"fix(comment):fix broken image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8125dc179923f652ecd25003df8ecb4fb0aeffb9"},(0,n.kt)("inlineCode",{parentName:"a"},"8125dc1"))),(0,n.kt)("li",{parentName:"ul"},"fix(message): fix font loading ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fdc498e178a04315c88e005fbc1371ba954ff402"},(0,n.kt)("inlineCode",{parentName:"a"},"fdc498e"))),(0,n.kt)("li",{parentName:"ul"},"fix(logo): logo change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f8c8af4453774386d5d0432a078b049416d034b"},(0,n.kt)("inlineCode",{parentName:"a"},"5f8c8af")))),(0,n.kt)("h4",{id:"-enhancements-64"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): multiple components fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a3ff518323a3eab18edc5057c6f1233e5422a22"},(0,n.kt)("inlineCode",{parentName:"a"},"4a3ff51"))),(0,n.kt)("li",{parentName:"ul"},"change(infrastructure) re-enable integration tests for auto release stack ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce8daf8abc6eb9a6b7fd8579904a3e5642896e3a"},(0,n.kt)("inlineCode",{parentName:"a"},"ce8daf8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): global site files styling update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f3770f1756bca3898e2a67fa532a9d97b0fd1ef2"},(0,n.kt)("inlineCode",{parentName:"a"},"f3770f1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): multiple components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9277aaccb09aa03575b95851d55fc69b1f530e23"},(0,n.kt)("inlineCode",{parentName:"a"},"9277aac"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer) adjust to volto theming update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a59f1c354ceea661c60faabfdb6226c9f4ba1209"},(0,n.kt)("inlineCode",{parentName:"a"},"a59f1c3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): minor styling update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dd6b55c6c5331383a42f6865bd9bd0641feb9a3b"},(0,n.kt)("inlineCode",{parentName:"a"},"dd6b55c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): change header mega menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7559b57a08c2f0e9f3eb95167479ca041b998bc5"},(0,n.kt)("inlineCode",{parentName:"a"},"7559b57"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/451b9493b100dae80bed4b6629da725195dddff1"},(0,n.kt)("inlineCode",{parentName:"a"},"451b949"))),(0,n.kt)("li",{parentName:"ul"},"refactor(accordion): minor styling update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aeaf25f585c1379a2bd40de1c1bf03fee00ef76e"},(0,n.kt)("inlineCode",{parentName:"a"},"aeaf25f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bdff1768096443f2f453d76bf9958adabd309cb7"},(0,n.kt)("inlineCode",{parentName:"a"},"bdff176"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer):mobile responsiveness ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/14822bec78feebc2b06fc26d6992a481be2e3609"},(0,n.kt)("inlineCode",{parentName:"a"},"14822be"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): main and custom less files update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1607760bb1582c63ab1a6b978ac13bb0ca51b0c2"},(0,n.kt)("inlineCode",{parentName:"a"},"1607760"))),(0,n.kt)("li",{parentName:"ul"},"refactor(timeline): update after removing timeline addon ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f54d3806eb0a60379b46b03a04a6602ed465cd15"},(0,n.kt)("inlineCode",{parentName:"a"},"f54d380"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Footer): replace with subcomponents ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/378c652265213bafac9de1d946cb328fa2fe90cb"},(0,n.kt)("inlineCode",{parentName:"a"},"378c652"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): header change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/029e85039bb3f35a6ba4ff2870d98e1faa23661b"},(0,n.kt)("inlineCode",{parentName:"a"},"029e850"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): change header bar ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2b766fd62c86d22f01278c54d3a1dbfb696b095b"},(0,n.kt)("inlineCode",{parentName:"a"},"2b766fd"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus) use itml branch for docusaurus deployment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e286c50056aa6d0d5735cb330789b4e48a1f927"},(0,n.kt)("inlineCode",{parentName:"a"},"6e286c5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(accordion): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/971fcb824f6aa55ac28b4b275927b202d2c08ca6"},(0,n.kt)("inlineCode",{parentName:"a"},"971fcb8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): add sub components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7f955dbafa94c13e71ff587af70aa84d18da8da0"},(0,n.kt)("inlineCode",{parentName:"a"},"7f955db"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus) tweak auto deployment to always commit changes from docs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a2940daef1cf281bac87dec3cec68337053cc52d"},(0,n.kt)("inlineCode",{parentName:"a"},"a2940da"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): less and variables files created ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5b1a8aaf7f678dd60fb88149284058fcab617fd"},(0,n.kt)("inlineCode",{parentName:"a"},"d5b1a8a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(label): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c945e1600b4beb3667b389542adade317d285c6"},(0,n.kt)("inlineCode",{parentName:"a"},"3c945e1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(message): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e950fc56461540be24d9e5b2ff3c0bf8ad53738"},(0,n.kt)("inlineCode",{parentName:"a"},"3e950fc"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Footer): add sub components and props ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c3d14871887a83fb91792fbc8977c0439bcb16f2"},(0,n.kt)("inlineCode",{parentName:"a"},"c3d1487"))),(0,n.kt)("li",{parentName:"ul"},"refactor(modal): modal and confirm adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/83b60e94bdd3203a92a1b9038f9cc45011ba72a5"},(0,n.kt)("inlineCode",{parentName:"a"},"83b60e9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(comment): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/84348c36b5b750c324c89b5e3c462319bb9ebf46"},(0,n.kt)("inlineCode",{parentName:"a"},"84348c3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook):adjust headings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32f64f9b71d1cb8c96c9c37ba1850a2278f95287"},(0,n.kt)("inlineCode",{parentName:"a"},"32f64f9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): add comments to header menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c2c83b202e5117d8e0013101d8e922e9d93d21de"},(0,n.kt)("inlineCode",{parentName:"a"},"c2c83b2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Accordion): clear up accordion stories code ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4e59b8fa961b878591e9806e1ebbfdb841523077"},(0,n.kt)("inlineCode",{parentName:"a"},"4e59b8f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(segmant): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ab211e868296f377fddba203847549f0e5e07df"},(0,n.kt)("inlineCode",{parentName:"a"},"3ab211e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button) minor styling update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8782bb27c789a4aac97b380d718f4de129fdf682"},(0,n.kt)("inlineCode",{parentName:"a"},"8782bb2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): change image position ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cdd76d59ade86f3f989bf7d94e45e4d9b439115f"},(0,n.kt)("inlineCode",{parentName:"a"},"cdd76d5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumbs): update less variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/640817ee904f88a04f0e8f11b258f95b8db97039"},(0,n.kt)("inlineCode",{parentName:"a"},"640817e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(list): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1079c733e6ec634fedaab5b4630888a52b28e482"},(0,n.kt)("inlineCode",{parentName:"a"},"1079c73"))),(0,n.kt)("li",{parentName:"ul"},"refactor(timeline):adjust timeline module ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/213eb11e8e87940c18d81738609b4684329a5ce4"},(0,n.kt)("inlineCode",{parentName:"a"},"213eb11"))),(0,n.kt)("li",{parentName:"ul"},"refactor(blockquote):adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5eec87fc1b3017011266241c20b31217ac27c12d"},(0,n.kt)("inlineCode",{parentName:"a"},"5eec87f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progress): add progress bar colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ccf3c9823b2583fc70183554df7c4588fbf9ca13"},(0,n.kt)("inlineCode",{parentName:"a"},"ccf3c98"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pullquote):adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fee446668a8d65a717b42667af825cb5cec836b2"},(0,n.kt)("inlineCode",{parentName:"a"},"fee4466"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): change mobile mega menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c7ecf18a81024121218d580f201f324cf990829e"},(0,n.kt)("inlineCode",{parentName:"a"},"c7ecf18"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b726e49519914b02766bcd993b94ce9ff164e1df"},(0,n.kt)("inlineCode",{parentName:"a"},"b726e49"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button) adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/eb257f83541871ccc635842664722b914661770c"},(0,n.kt)("inlineCode",{parentName:"a"},"eb257f8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form): minor styling update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/79934b2cde2e806418a6422df2914321181f7a22"},(0,n.kt)("inlineCode",{parentName:"a"},"79934b2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Footer): create Actions & Sites sub components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/446840b99abd6897c1b59a9462d72b1f06f1dd4e"},(0,n.kt)("inlineCode",{parentName:"a"},"446840b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(inpageNavigation): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/85c631a9e9c1454f1f2530e4f1851089663dd610"},(0,n.kt)("inlineCode",{parentName:"a"},"85c631a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Inpage Navigation): changed button's display ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/36e5b4f107ce3535b607f7ed169c723a66ce6ac2"},(0,n.kt)("inlineCode",{parentName:"a"},"36e5b4f"))),(0,n.kt)("li",{parentName:"ul"},"enhancement(docusaurus) modified headings to be within release versions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19ace3038d6b4535b29634209e4d506e7dca2c2c"},(0,n.kt)("inlineCode",{parentName:"a"},"19ace30"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): move components to ui folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb91f88f628580f565eb01ea8627763bc2243dfb"},(0,n.kt)("inlineCode",{parentName:"a"},"cb91f88"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): change mega menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/de0fc6b3862a88ac04058b56020af23c1946ce41"},(0,n.kt)("inlineCode",{parentName:"a"},"de0fc6b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Pullquote): divide Pullquote to sub components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/34413c44ab9e318d67408f7497782b7de693deeb"},(0,n.kt)("inlineCode",{parentName:"a"},"34413c4"))),(0,n.kt)("li",{parentName:"ul"},"enhancement(docusaurus) replace changelog when auto-building docs Refs #145331 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/da25c0e25ffa80131ab4b5503b28e43385d9f827"},(0,n.kt)("inlineCode",{parentName:"a"},"da25c0e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(popup): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d0d192dc2b2a5edd422cf6a7b359c384ec4b1d55"},(0,n.kt)("inlineCode",{parentName:"a"},"d0d192d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ab6f914f487bea0df299de7da0bbd917733ee00"},(0,n.kt)("inlineCode",{parentName:"a"},"2ab6f91"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/89a16af86a165d7798b68b95ff3de215a92f0569"},(0,n.kt)("inlineCode",{parentName:"a"},"89a16af"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pullquotes) remove unnecessary variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e0d20a3febec060ac24c5498846e768d7068e8b9"},(0,n.kt)("inlineCode",{parentName:"a"},"e0d20a3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progress):adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d1ab950ee9cc14bbe95869d4f143fc428aad5a8d"},(0,n.kt)("inlineCode",{parentName:"a"},"d1ab950"))),(0,n.kt)("li",{parentName:"ul"},"refactor(blockquote) change variables names ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/36fd5be9bde1a3ceb8390639414f254fc26b8e76"},(0,n.kt)("inlineCode",{parentName:"a"},"36fd5be"))),(0,n.kt)("li",{parentName:"ul"},"refactor(comment): adjust font sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0311ed14c951eb9cba18a58f6f954c19601d838b"},(0,n.kt)("inlineCode",{parentName:"a"},"0311ed1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(InpageNavigation): clear up code ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1d7afdc8d751e61c3eef75360555807fdbef8619"},(0,n.kt)("inlineCode",{parentName:"a"},"1d7afdc"))),(0,n.kt)("li",{parentName:"ul"},"refactor(container): change variable name for computer padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/26d123f3e7e30a706b09efc10773694af79377f9"},(0,n.kt)("inlineCode",{parentName:"a"},"26d123f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(inpageNavigation): remove imports ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/25c1d1c3016695d92d104a12b22a6a9254f41b20"},(0,n.kt)("inlineCode",{parentName:"a"},"25c1d1c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): update ui index components exports ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce78d47880cab5849f4c01785cdd97a9b26771ec"},(0,n.kt)("inlineCode",{parentName:"a"},"ce78d47"))),(0,n.kt)("li",{parentName:"ul"},"change(infrastructure) auto build storybook when pushing to develop-itml branch of volto-eea-design-system ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e9aa5bc3de9c2e1c5dc55b5d317679bc14dd1cbd"},(0,n.kt)("inlineCode",{parentName:"a"},"e9aa5bc"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): delete demo stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8b58d0245f5bda7e2022a2ef9ace11015f13da01"},(0,n.kt)("inlineCode",{parentName:"a"},"8b58d02"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus) align deployment steps for building docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/37e4ce05d2772ac320a7ad561536189c5ea0a582"},(0,n.kt)("inlineCode",{parentName:"a"},"37e4ce0"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): remove components from customizations folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8930edeaf064ec316f1d086e1301a7e5269bfe4b"},(0,n.kt)("inlineCode",{parentName:"a"},"8930ede"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tab): minor styling update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1252ad0317ecf7e583dbb975b29a4c8e4c75330e"},(0,n.kt)("inlineCode",{parentName:"a"},"1252ad0"))),(0,n.kt)("li",{parentName:"ul"},"refactor(comment): change avatar src ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e5f9c4c02f5de5ae6480eedb45730bb76efbf7b4"},(0,n.kt)("inlineCode",{parentName:"a"},"e5f9c4c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner) : change file type and folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/878742ba0f95440ffbb5aec33f2cc4201dfacd43"},(0,n.kt)("inlineCode",{parentName:"a"},"878742b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form elements):changed text ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/919beea9deccec68ac0cdbbc1249ef4ab4c12230"},(0,n.kt)("inlineCode",{parentName:"a"},"919beea"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Image): change image src ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b9710849adf0cf4f10815186b6293bcc3881d68d"},(0,n.kt)("inlineCode",{parentName:"a"},"b971084"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Pullquote): add component propTypes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d32c5e69e76d7f369a286d29e49d767125550ebc"},(0,n.kt)("inlineCode",{parentName:"a"},"d32c5e6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(blockquote): adjust font sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d71a3cef7bfd4109c56b7fe8c07271c60a4bd19e"},(0,n.kt)("inlineCode",{parentName:"a"},"d71a3ce"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update font sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1c91c357a59669df0da0f4fc70d3aa420db27a14"},(0,n.kt)("inlineCode",{parentName:"a"},"1c91c35"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Blockquote): add component proTypes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea02649f92b0e41b1eb62a771330c2e53b3960e8"},(0,n.kt)("inlineCode",{parentName:"a"},"ea02649"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logo): update image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6113728e248c3e0fd0a467bb34406aa4403399e"},(0,n.kt)("inlineCode",{parentName:"a"},"f611372"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): restore config ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2c5239d92abe6be70b092e7e43f195308800f87"},(0,n.kt)("inlineCode",{parentName:"a"},"f2c5239"))),(0,n.kt)("li",{parentName:"ul"},"refactor(blockquote): update component name ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/572e655c033d93b32a48a61b1bf6383f6c993b26"},(0,n.kt)("inlineCode",{parentName:"a"},"572e655"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): fix story header import ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ceda6c7790964b150b95daf161d10364d6b67427"},(0,n.kt)("inlineCode",{parentName:"a"},"ceda6c7"))),(0,n.kt)("li",{parentName:"ul"},"change(infrastructure) auto build docusaurus when pushing to develop-itml branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7bebdf5e58f37400a8ae3d5f816c64c6b9ca3a5b"},(0,n.kt)("inlineCode",{parentName:"a"},"7bebdf5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): remove components from customization folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a9bb9b34e6961eaf16e54ed6f6ca4942944e8a0"},(0,n.kt)("inlineCode",{parentName:"a"},"4a9bb9b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner):story rename ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/56ff603d6c9cec7c22483a088624f5bd7911f717"},(0,n.kt)("inlineCode",{parentName:"a"},"56ff603"))),(0,n.kt)("li",{parentName:"ul"},"change(testing) removed navigation from cypress tests until component is finished ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5549f4c07cb0ffd725342f365aae07745d7e25f7"},(0,n.kt)("inlineCode",{parentName:"a"},"5549f4c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Segment): change to .jsx extension ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5cb35d81e8628832bab2e6ad50de6892e7e4370e"},(0,n.kt)("inlineCode",{parentName:"a"},"5cb35d8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Pullquote): change to .jsx extension ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/564cf7ea379703315f179ab922b4e0a02df63e47"},(0,n.kt)("inlineCode",{parentName:"a"},"564cf7e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(PopUp):change to .jsx extension ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dcb24ff252665a79fda2fec645e6f2a48ff71fd0"},(0,n.kt)("inlineCode",{parentName:"a"},"dcb24ff"))),(0,n.kt)("li",{parentName:"ul"},"refactor(InpageNavigation): change to .jsx extension ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dfefce3ebe55f8eb6f67974ccc33b0cb0bb13d9f"},(0,n.kt)("inlineCode",{parentName:"a"},"dfefce3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Blockquote): change to .jsx extension ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/44a164532c1ae969e4411e0cfb68b705ff2bfc1e"},(0,n.kt)("inlineCode",{parentName:"a"},"44a1645"))),(0,n.kt)("li",{parentName:"ul"},"refactor(heading): story name update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aa10f3412323321650e20401038d44b9bfdb507a"},(0,n.kt)("inlineCode",{parentName:"a"},"aa10f34")))),(0,n.kt)("h4",{id:"-internal-changes-25"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(footer): prettier fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/902c25712c88330db841240c9f1d6004e3e2674f"},(0,n.kt)("inlineCode",{parentName:"a"},"902c257"))),(0,n.kt)("li",{parentName:"ul"},"style(storybook): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/59f941dea9bf05f31257230f1a871c6eb0e98aae"},(0,n.kt)("inlineCode",{parentName:"a"},"59f941d")))),(0,n.kt)("h4",{id:"-documentation-changes-22"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus):multiple page updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2aba73ea6ff86c5a94789c707d98699fc1397e01"},(0,n.kt)("inlineCode",{parentName:"a"},"2aba73e"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus):update page content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/565697fecb4528cc5b4a6a43ca3ab9b026a2779e"},(0,n.kt)("inlineCode",{parentName:"a"},"565697f"))),(0,n.kt)("li",{parentName:"ul"},"docs(grid):update components grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/60eb083aa5d00840642caf73f6e0bb86b814aed5"},(0,n.kt)("inlineCode",{parentName:"a"},"60eb083"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): page adjustments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0641eacf9f4715acd4baaa651335ff84ac418009"},(0,n.kt)("inlineCode",{parentName:"a"},"0641eac"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus):updated various pages ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f860176a5f755d75d7b9558661e675fc678fe7ac"},(0,n.kt)("inlineCode",{parentName:"a"},"f860176"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): logo change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3af5e5c3acbf7ba4e152ca6944c500dbb0cf10ee"},(0,n.kt)("inlineCode",{parentName:"a"},"3af5e5c")))),(0,n.kt)("h4",{id:"\ufe0f-others-55"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"added sortable table stories and descriptions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d44dd7c651abe46c380b62efd3258c92223e99c"},(0,n.kt)("inlineCode",{parentName:"a"},"6d44dd7"))),(0,n.kt)("li",{parentName:"ul"},"Layout components theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/586101341f713bb072f2753d8df6e8b2ad6e4938"},(0,n.kt)("inlineCode",{parentName:"a"},"5861013"))),(0,n.kt)("li",{parentName:"ul"},"recovered files from origin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4ac04fde9c4297b09c834385f772e955b7f3b4a"},(0,n.kt)("inlineCode",{parentName:"a"},"a4ac04f"))),(0,n.kt)("li",{parentName:"ul"},"grid component & stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a5752e49aac05251905f7355234c3f9bc6b798f"},(0,n.kt)("inlineCode",{parentName:"a"},"4a5752e"))),(0,n.kt)("li",{parentName:"ul"},"Updated what's new section with actual commits from volto-eea-design-system repo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fc5e3c385d82ff7eccbd5841736f3ce292b2b7fd"},(0,n.kt)("inlineCode",{parentName:"a"},"fc5e3c3"))),(0,n.kt)("li",{parentName:"ul"},"Docusaurus title possible fix. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/db699e771b13bbd7e75c3bd84bb91ecf5d0459d8"},(0,n.kt)("inlineCode",{parentName:"a"},"db699e7"))),(0,n.kt)("li",{parentName:"ul"},"form elements stories added description & default values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6b4f6ebeed275a86f5ef6dafb13219db0c0fbbc6"},(0,n.kt)("inlineCode",{parentName:"a"},"6b4f6eb"))),(0,n.kt)("li",{parentName:"ul"},"removed API tabs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/58aa9286eb5d8cc520239aa6ee424ee5cd5446c3"},(0,n.kt)("inlineCode",{parentName:"a"},"58aa928"))),(0,n.kt)("li",{parentName:"ul"},"Layout updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/854f388c5b049e41217ddb444bc7bd0f2c61cdf6"},(0,n.kt)("inlineCode",{parentName:"a"},"854f388"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142123 removed extra customization of semantic.less: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab9de811b20b20a9f91ddc8b45b4de2eb9c47f6c"},(0,n.kt)("inlineCode",{parentName:"a"},"ab9de81"))),(0,n.kt)("li",{parentName:"ul"},"added page-header,footer and grid in docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/660c8e382068c179ca66831ae23588a4fb67cde6"},(0,n.kt)("inlineCode",{parentName:"a"},"660c8e3"))),(0,n.kt)("li",{parentName:"ul"},"Manual docs build and commit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/666eb6aff8535bb586a49579152fcf8a88961f35"},(0,n.kt)("inlineCode",{parentName:"a"},"666eb6a"))),(0,n.kt)("li",{parentName:"ul"},"added svg & png files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f1338d5bb02e17e402cea4b1584c7d01896097f9"},(0,n.kt)("inlineCode",{parentName:"a"},"f1338d5"))),(0,n.kt)("li",{parentName:"ul"},"added missing components to docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/934dfd8a98942c247deb2b5b8693604ad77cafa3"},(0,n.kt)("inlineCode",{parentName:"a"},"934dfd8"))),(0,n.kt)("li",{parentName:"ul"},"Control descriptions updated ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/56581ebc86a91fd012a98984b20f6daad25900fe"},(0,n.kt)("inlineCode",{parentName:"a"},"56581eb"))),(0,n.kt)("li",{parentName:"ul"},"Grid updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/700332d354aea84526ff22acf3bc2f8903c0f584"},(0,n.kt)("inlineCode",{parentName:"a"},"700332d"))),(0,n.kt)("li",{parentName:"ul"},"Button theming update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0ec68b6bd1ab060ac224a859180b9f750834c0b8"},(0,n.kt)("inlineCode",{parentName:"a"},"0ec68b6"))),(0,n.kt)("li",{parentName:"ul"},"site variebales & overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7251162f182f1528d72070aae8a5a14e9ec5ee93"},(0,n.kt)("inlineCode",{parentName:"a"},"7251162"))),(0,n.kt)("li",{parentName:"ul"},"Table and Tabs theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/49f08608e8be8475d561e1ce5c1bfbcfd21001f9"},(0,n.kt)("inlineCode",{parentName:"a"},"49f0860"))),(0,n.kt)("li",{parentName:"ul"},"Responsiveness updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48e1351104249fea610941793ff8ec3bf35d0699"},(0,n.kt)("inlineCode",{parentName:"a"},"48e1351"))),(0,n.kt)("li",{parentName:"ul"},"added various components to docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/550d71963b0957b1c5597bbdb2c699c411c649bd"},(0,n.kt)("inlineCode",{parentName:"a"},"550d719"))),(0,n.kt)("li",{parentName:"ul"},"Checkbox and radio updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24652a238f2c98fe5d8e8032e3320e0b3b4753e5"},(0,n.kt)("inlineCode",{parentName:"a"},"24652a2"))),(0,n.kt)("li",{parentName:"ul"},"remove images from typography and colour docs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8493e924f5af4ba7c2ed478d7bae6992b4ef6ed6"},(0,n.kt)("inlineCode",{parentName:"a"},"8493e92"))),(0,n.kt)("li",{parentName:"ul"},"added guidelines' text and finished all components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/02d75fcdc5a98633e4d563c7ec2863a9588b5506"},(0,n.kt)("inlineCode",{parentName:"a"},"02d75fc"))),(0,n.kt)("li",{parentName:"ul"},"added more missing components in docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8be82634c681a073b13a5a90ee2b699bd25b422a"},(0,n.kt)("inlineCode",{parentName:"a"},"8be8263"))),(0,n.kt)("li",{parentName:"ul"},"Prettier changes on docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f1e5eb796f2072e3b816a39a35cf48523405167"},(0,n.kt)("inlineCode",{parentName:"a"},"5f1e5eb"))),(0,n.kt)("li",{parentName:"ul"},"Grid updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ae099453e280de800a5a06c6fcbe074acc1f7bfd"},(0,n.kt)("inlineCode",{parentName:"a"},"ae09945"))),(0,n.kt)("li",{parentName:"ul"},"Minor fixes for tests ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3bdf3063d9bbc101f4b83c6aa4fc5fef5e87c776"},(0,n.kt)("inlineCode",{parentName:"a"},"3bdf306"))),(0,n.kt)("li",{parentName:"ul"},"Layout updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8b7a4dc8731cb02946e604a0dd73d2a45f61cd8b"},(0,n.kt)("inlineCode",{parentName:"a"},"8b7a4dc"))),(0,n.kt)("li",{parentName:"ul"},"Footer and TOC theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bb3d3c486f64e123b9009a76c6f054a8e2973230"},(0,n.kt)("inlineCode",{parentName:"a"},"bb3d3c4"))),(0,n.kt)("li",{parentName:"ul"},"Refs #145331 manually commit changelog until autobuild is stabilized ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93168b096b60fc6a208b20d1cbe610384be62f42"},(0,n.kt)("inlineCode",{parentName:"a"},"93168b0"))),(0,n.kt)("li",{parentName:"ul"},"label component changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/df8c0ff2d9646e4dcc7ed1a25a80712ca9ea2c9b"},(0,n.kt)("inlineCode",{parentName:"a"},"df8c0ff"))),(0,n.kt)("li",{parentName:"ul"},"added several sections to the theming guidelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff1a649d9c83794024e2db4f6349b3cac4fe79a0"},(0,n.kt)("inlineCode",{parentName:"a"},"ff1a649"))),(0,n.kt)("li",{parentName:"ul"},"Updated removed files. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/84f9b8cf7c469525367764909fa0d322532a13be"},(0,n.kt)("inlineCode",{parentName:"a"},"84f9b8c"))),(0,n.kt)("li",{parentName:"ul"},"added more docusaurus components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/52a3b9edd4c751225609dcaf2d16f08688e9cfeb"},(0,n.kt)("inlineCode",{parentName:"a"},"52a3b9e"))),(0,n.kt)("li",{parentName:"ul"},"Progress Bar ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f2efc9ded5a766df0c611a15f6a93f27bd14a37"},(0,n.kt)("inlineCode",{parentName:"a"},"9f2efc9"))),(0,n.kt)("li",{parentName:"ul"},"Modal and Confirm updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3b306c6fa5631e1e4e37456d483a69bc8cc3b234"},(0,n.kt)("inlineCode",{parentName:"a"},"3b306c6"))),(0,n.kt)("li",{parentName:"ul"},"Add proper changes to whatsnew meant in previous commit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/40f78e362ca607ef3893fff3d03c8ed1b4447c11"},(0,n.kt)("inlineCode",{parentName:"a"},"40f78e3"))),(0,n.kt)("li",{parentName:"ul"},"Form Descriptions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/de0dfbcb3a0a9610f1cbf7337f598b0c5338f2a3"},(0,n.kt)("inlineCode",{parentName:"a"},"de0dfbc"))),(0,n.kt)("li",{parentName:"ul"},"Prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1337e6fffb13fa8447488129d5dcd5af9e35e46a"},(0,n.kt)("inlineCode",{parentName:"a"},"1337e6f"))),(0,n.kt)("li",{parentName:"ul"},"Deleted files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b82f982fbfbaff4e74e35424c6122410e3830faf"},(0,n.kt)("inlineCode",{parentName:"a"},"b82f982"))),(0,n.kt)("li",{parentName:"ul"},"add new images for spacing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7b7b2c48317c45e3ff89162d703434f615c840e9"},(0,n.kt)("inlineCode",{parentName:"a"},"7b7b2c4"))),(0,n.kt)("li",{parentName:"ul"},"Messages Theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ad621a38c121f585125d5934c1939ba6a7198b33"},(0,n.kt)("inlineCode",{parentName:"a"},"ad621a3"))),(0,n.kt)("li",{parentName:"ul"},"added new content to docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1c83452be983d46f4128c33c25e69afef333f82a"},(0,n.kt)("inlineCode",{parentName:"a"},"1c83452"))),(0,n.kt)("li",{parentName:"ul"},"Minor less updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a36a8bbfeb201049fa13987894a5ec2ec167ed03"},(0,n.kt)("inlineCode",{parentName:"a"},"a36a8bb"))),(0,n.kt)("li",{parentName:"ul"},"Tabs and lists updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e37eef19e67c3c5720d5a9565e9884dc5c19f127"},(0,n.kt)("inlineCode",{parentName:"a"},"e37eef1"))),(0,n.kt)("li",{parentName:"ul"},"Inpage nav and timeline components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/76f0f82dc3a8f683268a4df7580b8f73a0cc1cb4"},(0,n.kt)("inlineCode",{parentName:"a"},"76f0f82"))),(0,n.kt)("li",{parentName:"ul"},"Prettier updated files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/679b9d2026091685d6982ab68e5088544ea0941e"},(0,n.kt)("inlineCode",{parentName:"a"},"679b9d2"))),(0,n.kt)("li",{parentName:"ul"},"dropdown initial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d8aef26dc905adbb0fb72c73d6188b50944931c9"},(0,n.kt)("inlineCode",{parentName:"a"},"d8aef26"))),(0,n.kt)("li",{parentName:"ul"},"Prettier changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f068af0b307d85146e1d8a529947c98988c506f7"},(0,n.kt)("inlineCode",{parentName:"a"},"f068af0"))),(0,n.kt)("li",{parentName:"ul"},"List initial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d3b96974bc35ad958b8cfc7921c1fbe345e5ebf"},(0,n.kt)("inlineCode",{parentName:"a"},"6d3b969"))),(0,n.kt)("li",{parentName:"ul"},"List story updated ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e96a6f6cff9a4db994df7cbf584842b18ca1c432"},(0,n.kt)("inlineCode",{parentName:"a"},"e96a6f6"))),(0,n.kt)("li",{parentName:"ul"},"Statistics updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/74bf63999cfeb0791b9475d3895a49a245be2cd3"},(0,n.kt)("inlineCode",{parentName:"a"},"74bf639"))),(0,n.kt)("li",{parentName:"ul"},"styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c169cc026189ca71e6e9cad17bde9d65d93ffbde"},(0,n.kt)("inlineCode",{parentName:"a"},"c169cc0"))),(0,n.kt)("li",{parentName:"ul"},"timeline comp storybook changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f42686ae19b619fa659730567bdceb369ecd4b0"},(0,n.kt)("inlineCode",{parentName:"a"},"1f42686"))),(0,n.kt)("li",{parentName:"ul"},"feature(docusaurus) added theming guidelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ded1f04a3197ac34640f98bcfe363c75a0a3745f"},(0,n.kt)("inlineCode",{parentName:"a"},"ded1f04"))),(0,n.kt)("li",{parentName:"ul"},"Properly commented out integration tests. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48b3a15f426db52b9fa27f6d7792c424b4939867"},(0,n.kt)("inlineCode",{parentName:"a"},"48b3a15"))),(0,n.kt)("li",{parentName:"ul"},"Reattempting commented out integrations tests. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3dd8211ecfca6c7891ef6851d0dc82899ab50f05"},(0,n.kt)("inlineCode",{parentName:"a"},"3dd8211"))),(0,n.kt)("li",{parentName:"ul"},"Button theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4231e1c264165ef6f7e2f2cd6fbd7c51159330b6"},(0,n.kt)("inlineCode",{parentName:"a"},"4231e1c"))),(0,n.kt)("li",{parentName:"ul"},"Card initial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/06dace5c4aa54d90ec4bcdc0b3fbc0883f825947"},(0,n.kt)("inlineCode",{parentName:"a"},"06dace5"))),(0,n.kt)("li",{parentName:"ul"},"form element storybook changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4b06aabddedbc281f23fc75a1e56476c4d1c1af"},(0,n.kt)("inlineCode",{parentName:"a"},"c4b06aa"))),(0,n.kt)("li",{parentName:"ul"},"Pagination theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2a80175762fbab23691d52f89cd38eb6f7740c4e"},(0,n.kt)("inlineCode",{parentName:"a"},"2a80175"))),(0,n.kt)("li",{parentName:"ul"},"Accordion theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8061bf90823a9172cfccb0ea1ed544ceda1c3fe9"},(0,n.kt)("inlineCode",{parentName:"a"},"8061bf9"))),(0,n.kt)("li",{parentName:"ul"},"global var updates and radio story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9526ee2fc8269db60ce912bfd4edfadbb55fed3a"},(0,n.kt)("inlineCode",{parentName:"a"},"9526ee2"))),(0,n.kt)("li",{parentName:"ul"},"created pullquote component & stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/df35563fb7ba2be403461c120b32ebffaa391736"},(0,n.kt)("inlineCode",{parentName:"a"},"df35563"))),(0,n.kt)("li",{parentName:"ul"},"Item stories added description & default values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9d459f2cd92e419813e7edf0f28dec4c750a5940"},(0,n.kt)("inlineCode",{parentName:"a"},"9d459f2"))),(0,n.kt)("li",{parentName:"ul"},"storybook clean up code ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bffd32603a70cf6cafa4874937f3fe218ba5de9d"},(0,n.kt)("inlineCode",{parentName:"a"},"bffd326"))),(0,n.kt)("li",{parentName:"ul"},"List updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/28f1b5352d83e144acdaae694cf20755a3b04106"},(0,n.kt)("inlineCode",{parentName:"a"},"28f1b53"))),(0,n.kt)("li",{parentName:"ul"},"Button classes updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/788c289549490d9ac5f1c40f1e39124349e1dbcd"},(0,n.kt)("inlineCode",{parentName:"a"},"788c289"))),(0,n.kt)("li",{parentName:"ul"},"Prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/678c9be717468fd2c8c425bec5999e81a66dabf6"},(0,n.kt)("inlineCode",{parentName:"a"},"678c9be"))),(0,n.kt)("li",{parentName:"ul"},"Removed header title from partial docusaurus components. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ed7c45e458504fa76ad500ab26f59a442b3c6952"},(0,n.kt)("inlineCode",{parentName:"a"},"ed7c45e"))),(0,n.kt)("li",{parentName:"ul"},"created banner component and stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9be170f2ccb20218a7bdae48c85f77acd69427ff"},(0,n.kt)("inlineCode",{parentName:"a"},"9be170f"))),(0,n.kt)("li",{parentName:"ul"},"Breadcrumb stories description & defaultValue -- clean up code ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/186ab65ca8635c853c919fc645c1ef0486e22a43"},(0,n.kt)("inlineCode",{parentName:"a"},"186ab65"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142123 added customization of semantic.less: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1e02356722fcb7528883b6dc3bf71279343fd1f7"},(0,n.kt)("inlineCode",{parentName:"a"},"1e02356"))),(0,n.kt)("li",{parentName:"ul"},"Card stories added description & default values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6b408f1ed24ee69ad8faacc6b36cf06e9917478"},(0,n.kt)("inlineCode",{parentName:"a"},"f6b408f"))),(0,n.kt)("li",{parentName:"ul"},"Statistic and accordion updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/16064ceeb6e1a7f097979365473c6a86ced4056f"},(0,n.kt)("inlineCode",{parentName:"a"},"16064ce"))),(0,n.kt)("li",{parentName:"ul"},"breadcrumb component & stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5bceb980502828c182a3998943ab086159c3fcb6"},(0,n.kt)("inlineCode",{parentName:"a"},"5bceb98"))),(0,n.kt)("li",{parentName:"ul"},"Container initial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3eb7155332f83bb8896a831e24cbae028413aba2"},(0,n.kt)("inlineCode",{parentName:"a"},"3eb7155"))),(0,n.kt)("li",{parentName:"ul"},"doc(docusaurus):Fix text for various parts ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bfd3fa2584a6e7aa2c26f3502b1ede912682905e"},(0,n.kt)("inlineCode",{parentName:"a"},"bfd3fa2"))),(0,n.kt)("li",{parentName:"ul"},"blockquote component & stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/879b6402f08112fedfffe6d66e72c37750593bb8"},(0,n.kt)("inlineCode",{parentName:"a"},"879b640"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 removed doc comments breaking doc building ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e6a6756b0533e6dbfdb636f9a9e6485e30187cad"},(0,n.kt)("inlineCode",{parentName:"a"},"e6a6756"))),(0,n.kt)("li",{parentName:"ul"},"Popup updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce2d641d8f5d940cbb93deefdabbbfb85ad20ad7"},(0,n.kt)("inlineCode",{parentName:"a"},"ce2d641"))),(0,n.kt)("li",{parentName:"ul"},"Global variables for colors and borders added ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e5fbd619d163acae03d3d1bb26e082390f90c21"},(0,n.kt)("inlineCode",{parentName:"a"},"6e5fbd6"))),(0,n.kt)("li",{parentName:"ul"},"Tab stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5429cfb7751d6ad31231f9cc19d8bd7e8d24d0b8"},(0,n.kt)("inlineCode",{parentName:"a"},"5429cfb"))),(0,n.kt)("li",{parentName:"ul"},"Confirm stories added description & default value ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/85cda14b1338dc986bbab5aa7846b4ef3ec8d0bd"},(0,n.kt)("inlineCode",{parentName:"a"},"85cda14"))),(0,n.kt)("li",{parentName:"ul"},"Kebab case class names ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b41cd078ab5b349dc1d15769832913dcc8e6786f"},(0,n.kt)("inlineCode",{parentName:"a"},"b41cd07"))),(0,n.kt)("li",{parentName:"ul"},"Card and Comment class updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/389946540d3def2ea81c5c7c489e79dc24d4efb3"},(0,n.kt)("inlineCode",{parentName:"a"},"3899465"))),(0,n.kt)("li",{parentName:"ul"},"Accordion updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c97ba39cc7823cb72180a858c0b8a69cc9434927"},(0,n.kt)("inlineCode",{parentName:"a"},"c97ba39"))),(0,n.kt)("li",{parentName:"ul"},"item stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/772e41f3d90034827afcb118c38ab075d3bb7bb9"},(0,n.kt)("inlineCode",{parentName:"a"},"772e41f"))),(0,n.kt)("li",{parentName:"ul"},"Accordion class updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9cdde86f14a17701d66b3d2850980251094934b5"},(0,n.kt)("inlineCode",{parentName:"a"},"9cdde86"))),(0,n.kt)("li",{parentName:"ul"},"Comment stories added description & default value ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb6f25bc1452330f4155ccf6a64df491740ed8da"},(0,n.kt)("inlineCode",{parentName:"a"},"cb6f25b"))),(0,n.kt)("li",{parentName:"ul"},"Accrodion stories description & default value ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab8fb883c3cbfeea1807bf1aaf72f5d8424933f4"},(0,n.kt)("inlineCode",{parentName:"a"},"ab8fb88"))),(0,n.kt)("li",{parentName:"ul"},"Pullquotes updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5984213ba9397ddb4c1932394a5cc368336cf0a"},(0,n.kt)("inlineCode",{parentName:"a"},"c598421"))),(0,n.kt)("li",{parentName:"ul"},"Modal and confirm class updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0ae47e6f55645c0d6318123a5783648326c16852"},(0,n.kt)("inlineCode",{parentName:"a"},"0ae47e6"))),(0,n.kt)("li",{parentName:"ul"},"Tab and paggination updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/96796fffb189d2fa3628423280f3622dcacb449f"},(0,n.kt)("inlineCode",{parentName:"a"},"96796ff"))),(0,n.kt)("li",{parentName:"ul"},"Form Updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e986a9f0fc48ddcbc17488a8bbbaec82cee92232"},(0,n.kt)("inlineCode",{parentName:"a"},"e986a9f"))),(0,n.kt)("li",{parentName:"ul"},"Classes renamed ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/73c8c3d622bb3b9c0b5cf09e340de4df6606a14c"},(0,n.kt)("inlineCode",{parentName:"a"},"73c8c3d"))),(0,n.kt)("li",{parentName:"ul"},"List and item less updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce0de1708ca410c7839f3ce9b5b3cfbdb6979939"},(0,n.kt)("inlineCode",{parentName:"a"},"ce0de17"))),(0,n.kt)("li",{parentName:"ul"},"Confirm theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/36e20ce0dd6cd159e9f8e519d22ab696a622efd9"},(0,n.kt)("inlineCode",{parentName:"a"},"36e20ce"))),(0,n.kt)("li",{parentName:"ul"},"container overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4b3970bd28df5939fd438f7fc58b5d1dfbe33719"},(0,n.kt)("inlineCode",{parentName:"a"},"4b3970b"))),(0,n.kt)("li",{parentName:"ul"},"Docusaurus theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fc4a8c5534b6eb85192a687890846b3a4bed9401"},(0,n.kt)("inlineCode",{parentName:"a"},"fc4a8c5"))),(0,n.kt)("li",{parentName:"ul"},"refacto(headings): update mobile headings sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b2e9f838766ffd73095ecf7eccc71629c09d6bc0"},(0,n.kt)("inlineCode",{parentName:"a"},"b2e9f83"))),(0,n.kt)("li",{parentName:"ul"},"list stories and style changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c61db53b153f8f0e51eddd6a6c82dd38e6278c82"},(0,n.kt)("inlineCode",{parentName:"a"},"c61db53"))),(0,n.kt)("li",{parentName:"ul"},"Tab theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e31e6c3b1f0d6b4dbd63425a1846914d8dfa318d"},(0,n.kt)("inlineCode",{parentName:"a"},"e31e6c3"))),(0,n.kt)("li",{parentName:"ul"},"Message and pagination classes updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c230687c48953208461aa92376588246d49dadaa"},(0,n.kt)("inlineCode",{parentName:"a"},"c230687"))),(0,n.kt)("li",{parentName:"ul"},"Segment initial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5724fe639e0f2aecbb1c633fe7e69b742ddfaf5"},(0,n.kt)("inlineCode",{parentName:"a"},"d5724fe"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 removed doc comments from api_markdown breaking doc building ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/efeacba82875c6b36ee1ef76792e86ca03ee6f35"},(0,n.kt)("inlineCode",{parentName:"a"},"efeacba"))),(0,n.kt)("li",{parentName:"ul"},"Timeline and responsiveness updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1ed152476e33bc41fdf9d89a6bc80f83af538373"},(0,n.kt)("inlineCode",{parentName:"a"},"1ed1524"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142123 use swap font-display for performance reasons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/083738f0834982b5684d67d75c080dc50b1c74ef"},(0,n.kt)("inlineCode",{parentName:"a"},"083738f"))),(0,n.kt)("li",{parentName:"ul"},"Breadcrumb stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3d0d17ca4f04123d55fda64c516b8f867ee1bd13"},(0,n.kt)("inlineCode",{parentName:"a"},"3d0d17c"))),(0,n.kt)("li",{parentName:"ul"},"Table component stories minor change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0bf40835204f57ab300e2c325309fddf5279d76b"},(0,n.kt)("inlineCode",{parentName:"a"},"0bf4083"))),(0,n.kt)("li",{parentName:"ul"},"List stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a64b304a3aa025873643d592de03cbfbc0d02d81"},(0,n.kt)("inlineCode",{parentName:"a"},"a64b304"))),(0,n.kt)("li",{parentName:"ul"},"blockquote component minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cdf71a883d3778e1bde25ec0b4a2f3e370b98b09"},(0,n.kt)("inlineCode",{parentName:"a"},"cdf71a8"))),(0,n.kt)("li",{parentName:"ul"},"ckeckbox stories minor change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d6e508f73a18d7ce9fcdb779026113659ce8950"},(0,n.kt)("inlineCode",{parentName:"a"},"6d6e508"))),(0,n.kt)("li",{parentName:"ul"},"image component storybook changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91290ec540ae913fff76f0dbed6c310668a2eeb3"},(0,n.kt)("inlineCode",{parentName:"a"},"91290ec"))),(0,n.kt)("li",{parentName:"ul"},"button overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5b78dd7b794e2e0ece2d5af9eb171e73b77ee93"},(0,n.kt)("inlineCode",{parentName:"a"},"d5b78dd"))),(0,n.kt)("li",{parentName:"ul"},"accordion overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fdcf7d58eea3ce9e68c49649fb4a788c8a801b49"},(0,n.kt)("inlineCode",{parentName:"a"},"fdcf7d5"))),(0,n.kt)("li",{parentName:"ul"},"Accordion component and stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5079247b2d4b96b2a7252692ea538ca620cbec38"},(0,n.kt)("inlineCode",{parentName:"a"},"5079247"))),(0,n.kt)("li",{parentName:"ul"},"Card theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/23bbb9d1b5751bc4877d02ae1c676ea28463ec39"},(0,n.kt)("inlineCode",{parentName:"a"},"23bbb9d"))),(0,n.kt)("li",{parentName:"ul"},"statistic overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2b11cb5ffb9c907563b37a3db8fea3b1ef3584bc"},(0,n.kt)("inlineCode",{parentName:"a"},"2b11cb5"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 build docs only on pull request like we do with storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/473bb87be53610a654d35c9b399de14824301385"},(0,n.kt)("inlineCode",{parentName:"a"},"473bb87"))),(0,n.kt)("li",{parentName:"ul"},"Card component stories minor change | added link icon ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/deb423af02643697c3781212b177487174d341f7"},(0,n.kt)("inlineCode",{parentName:"a"},"deb423a"))),(0,n.kt)("li",{parentName:"ul"},"comment component stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f1c5e75f1af24c5b39a2e61cf07c773abfa96f66"},(0,n.kt)("inlineCode",{parentName:"a"},"f1c5e75"))),(0,n.kt)("li",{parentName:"ul"},"Accordion component bug fixed ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/815e91df66ed738f3d91cadc8df151782829f545"},(0,n.kt)("inlineCode",{parentName:"a"},"815e91d"))),(0,n.kt)("li",{parentName:"ul"},"Refs #145331 use iso date to release so that we see also time ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ceedf08937ab683c3e624cd3c909bf4a4788f883"},(0,n.kt)("inlineCode",{parentName:"a"},"ceedf08"))),(0,n.kt)("li",{parentName:"ul"},"correct connfig for doco ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93e13135e7f00fe32f4db2d720db4159970da021"},(0,n.kt)("inlineCode",{parentName:"a"},"93e1313"))),(0,n.kt)("li",{parentName:"ul"},"Item updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fae93d43a0ad56c4c9b8ce7bf436ad4f47421744"},(0,n.kt)("inlineCode",{parentName:"a"},"fae93d4"))),(0,n.kt)("li",{parentName:"ul"},"added layout grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2e6be557bcd3bef836338380ef68acade1c6b3e3"},(0,n.kt)("inlineCode",{parentName:"a"},"2e6be55"))),(0,n.kt)("li",{parentName:"ul"},"tab overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87aaf32cac5a0dee0da5833217de68da62327f5a"},(0,n.kt)("inlineCode",{parentName:"a"},"87aaf32"))),(0,n.kt)("li",{parentName:"ul"},"message overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6dccfca52d9673f394d81bd40da0af1b1504af0c"},(0,n.kt)("inlineCode",{parentName:"a"},"6dccfca"))),(0,n.kt)("li",{parentName:"ul"},"segment storie changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/296371fa71e43c2341bee8069f66d5cd1f7aa5f8"},(0,n.kt)("inlineCode",{parentName:"a"},"296371f"))),(0,n.kt)("li",{parentName:"ul"},"progress component stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/df10c2ed1289ae770008c71e1545c1ac0a223fc5"},(0,n.kt)("inlineCode",{parentName:"a"},"df10c2e"))),(0,n.kt)("li",{parentName:"ul"},"message comp storybook changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c86b40563f655fd5833dd05119f04d0e4256e75f"},(0,n.kt)("inlineCode",{parentName:"a"},"c86b405"))),(0,n.kt)("li",{parentName:"ul"},"Accordion cmponent stories | minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6de0d816287a9beeb9e8a5a890a2e14f3457a792"},(0,n.kt)("inlineCode",{parentName:"a"},"6de0d81"))),(0,n.kt)("li",{parentName:"ul"},"Refs #145331 add all changes when auto building docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce11cce4fe3dadc16a0da56c36bc5db480e4ff91"},(0,n.kt)("inlineCode",{parentName:"a"},"ce11cce"))),(0,n.kt)("li",{parentName:"ul"},"perf(timeline):removed semantic timeline package ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0aeb34a189eb53a5fc0fc45d716da515b7ed0301"},(0,n.kt)("inlineCode",{parentName:"a"},"0aeb34a"))),(0,n.kt)("li",{parentName:"ul"},"Tablet Breakpoint update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b229c2739e75a00e403dd07c31eb0dac7700baac"},(0,n.kt)("inlineCode",{parentName:"a"},"b229c27"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 set storyBook Url to eea.github.io ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b7fdecbb5e9e6e7db0b128ab7fd3a98dd1dbbc74"},(0,n.kt)("inlineCode",{parentName:"a"},"b7fdecb"))),(0,n.kt)("li",{parentName:"ul"},"bump package version to signaling of a major release ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c835f1d8193685153b8a9b54edbc2e8d3d095321"},(0,n.kt)("inlineCode",{parentName:"a"},"c835f1d"))),(0,n.kt)("li",{parentName:"ul"},"small commit to trigger deployment of storybook and docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/be46ea3b581cccc82369c9cf6d4e29b02822cd71"},(0,n.kt)("inlineCode",{parentName:"a"},"be46ea3"))),(0,n.kt)("li",{parentName:"ul"},"doc(accordion):revert previous change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3de02da26472c17389366d933f3293f658fd783a"},(0,n.kt)("inlineCode",{parentName:"a"},"3de02da"))),(0,n.kt)("li",{parentName:"ul"},"fix typo for caption @desktop line-height pixel number ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/167155234a897334a03a4f3eadc71701185bb924"},(0,n.kt)("inlineCode",{parentName:"a"},"1671552"))),(0,n.kt)("li",{parentName:"ul"},"Commented out integration tests. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/574cfec852f39bdd30430d2ca3a466aec417180d"},(0,n.kt)("inlineCode",{parentName:"a"},"574cfec"))),(0,n.kt)("li",{parentName:"ul"},"popup overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a9555e3128bd0c92691410c202d9b26dd5a5e0c5"},(0,n.kt)("inlineCode",{parentName:"a"},"a9555e3"))),(0,n.kt)("li",{parentName:"ul"},"container component stories fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/692cfce5e795ac718855349424e7e8eb9c7518ec"},(0,n.kt)("inlineCode",{parentName:"a"},"692cfce"))),(0,n.kt)("li",{parentName:"ul"},"Added timeline to package json fixed ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2e93e0478a1502cccb8d7f866cef337a2546b6c"},(0,n.kt)("inlineCode",{parentName:"a"},"f2e93e0"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142123 modified import of volto-eea-design-system icon.less: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7fab7d2871f153c2db139e3258da071ace7c09d"},(0,n.kt)("inlineCode",{parentName:"a"},"a7fab7d"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142123 reference icon.less from this package: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5616e6d730f1a8cbc04784230c35f3490fd0f921"},(0,n.kt)("inlineCode",{parentName:"a"},"5616e6d"))),(0,n.kt)("li",{parentName:"ul"},"Menu component stories change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2797716aa050a8f70d2b6f0f19b7d01e5cd035be"},(0,n.kt)("inlineCode",{parentName:"a"},"2797716"))),(0,n.kt)("li",{parentName:"ul"},"Image stories minor change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ddb9f1dd56fe42e17df1eac5bfd93ee6eaac3179"},(0,n.kt)("inlineCode",{parentName:"a"},"ddb9f1d"))),(0,n.kt)("li",{parentName:"ul"},"card component stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6ccba1ec4a388ced5a3671bf88d4f18aefc8cff3"},(0,n.kt)("inlineCode",{parentName:"a"},"6ccba1e"))),(0,n.kt)("li",{parentName:"ul"},"Added timeline to package json ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93031d6b6b3215e98074700554d7546f9f17f320"},(0,n.kt)("inlineCode",{parentName:"a"},"93031d6"))),(0,n.kt)("li",{parentName:"ul"},"table stories code clean up ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b7b2a56e37b847a3a3fc3d78f2099aba052826c3"},(0,n.kt)("inlineCode",{parentName:"a"},"b7b2a56"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 removed extra baseUrl from docusaurus config ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/79f36da6a38866765025cedd4f5eeb63e273785c"},(0,n.kt)("inlineCode",{parentName:"a"},"79f36da"))),(0,n.kt)("li",{parentName:"ul"},"Accordion stories minor change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ffe808aabc77c6cb324e8fe097a97bb82c291c29"},(0,n.kt)("inlineCode",{parentName:"a"},"ffe808a"))),(0,n.kt)("li",{parentName:"ul"},"Theme assets ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3f4bea4b53e393bc3d926b63683265c0b5df32c2"},(0,n.kt)("inlineCode",{parentName:"a"},"3f4bea4"))),(0,n.kt)("li",{parentName:"ul"},"Merged with develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/167ec9f7847162965ad045259989cc31abaad7f1"},(0,n.kt)("inlineCode",{parentName:"a"},"167ec9f")))),(0,n.kt)("h3",{id:"012-beta2---2022-01-03"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.2-beta.1...0.1.2-beta.2"},"0.1.2-beta.2")," - 2022-01-03"),(0,n.kt)("h3",{id:"012-beta1---2021-12-22"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.2-beta.0...0.1.2-beta.1"},"0.1.2-beta.1")," - 2021-12-22"),(0,n.kt)("h4",{id:"\ufe0f-others-56"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Tab component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4690a6fc1e739eeeeaa3dc90ee35e05a22875bf8"},(0,n.kt)("inlineCode",{parentName:"a"},"4690a6f"))),(0,n.kt)("li",{parentName:"ul"},"Comment component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a87cb6ad7959ce939c9decbfaa08026d4f00a10e"},(0,n.kt)("inlineCode",{parentName:"a"},"a87cb6a"))),(0,n.kt)("li",{parentName:"ul"},"Form stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fc30c900e5adf5a27930aa64a79a632e2b7d84ae"},(0,n.kt)("inlineCode",{parentName:"a"},"fc30c90"))),(0,n.kt)("li",{parentName:"ul"},"Grid component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/798fdd0d0fecb7980308c831fc9dc111a36c5d9f"},(0,n.kt)("inlineCode",{parentName:"a"},"798fdd0"))),(0,n.kt)("li",{parentName:"ul"},"Image component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/be93385f1ea29846512eb7762d69bb98f33be7f2"},(0,n.kt)("inlineCode",{parentName:"a"},"be93385"))),(0,n.kt)("li",{parentName:"ul"},"Menu component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb1f9a82843bb4e3011be9813ae692c94d986495"},(0,n.kt)("inlineCode",{parentName:"a"},"cb1f9a8"))),(0,n.kt)("li",{parentName:"ul"},"Dropdown component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/57cf954599292e6a2f8a1644c6b6d61706ecaf60"},(0,n.kt)("inlineCode",{parentName:"a"},"57cf954"))),(0,n.kt)("li",{parentName:"ul"},"Header component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/264fd463734c9587e3a820f4d14527af89274e12"},(0,n.kt)("inlineCode",{parentName:"a"},"264fd46"))),(0,n.kt)("li",{parentName:"ul"},"Confirn component minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9a00bc174fb676e626d6cc93fac225e8a6165790"},(0,n.kt)("inlineCode",{parentName:"a"},"9a00bc1"))),(0,n.kt)("li",{parentName:"ul"},"Item component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6994fa00c0f91550f64d7345503df7f562480d32"},(0,n.kt)("inlineCode",{parentName:"a"},"6994fa0"))),(0,n.kt)("li",{parentName:"ul"},"Label component stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5cc5843327deeaa5ae2cedc03e6f0c314be6586a"},(0,n.kt)("inlineCode",{parentName:"a"},"5cc5843"))),(0,n.kt)("li",{parentName:"ul"},"Container component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e6e40b3a505c2e2fe88a36d74ea4e9728e3491f6"},(0,n.kt)("inlineCode",{parentName:"a"},"e6e40b3"))),(0,n.kt)("li",{parentName:"ul"},"Message component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ba9d377fd5b04274f1d42065eafa2401a1b0bbca"},(0,n.kt)("inlineCode",{parentName:"a"},"ba9d377"))),(0,n.kt)("li",{parentName:"ul"},"Breadcrumb component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff7a176141c3a59d71df98a0ed0b23b8c08787df"},(0,n.kt)("inlineCode",{parentName:"a"},"ff7a176"))),(0,n.kt)("li",{parentName:"ul"},"Modal component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af1fe6a84d058fb937b555f4dc3e0efceebefa04"},(0,n.kt)("inlineCode",{parentName:"a"},"af1fe6a"))),(0,n.kt)("li",{parentName:"ul"},"List stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0016042856fa2275aed373eebd6f996b837619a2"},(0,n.kt)("inlineCode",{parentName:"a"},"0016042"))),(0,n.kt)("li",{parentName:"ul"},"Button component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/690dfd234bee017c1f1cda7077265e6cf4a870e9"},(0,n.kt)("inlineCode",{parentName:"a"},"690dfd2"))),(0,n.kt)("li",{parentName:"ul"},"Radio component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/84eac30ab5b523ed09c56b9cca41b058cee3e5d2"},(0,n.kt)("inlineCode",{parentName:"a"},"84eac30"))),(0,n.kt)("li",{parentName:"ul"},"Progress component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e6763571afe637375e8260babd9f2219f29b432a"},(0,n.kt)("inlineCode",{parentName:"a"},"e676357"))),(0,n.kt)("li",{parentName:"ul"},"Pagination component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b1af226b9bd42097dc3c74be3d9ca3fab29b80f6"},(0,n.kt)("inlineCode",{parentName:"a"},"b1af226"))),(0,n.kt)("li",{parentName:"ul"},"Segment component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f8c7efcb9b1de209ff146dd315ea9d43b16f4db"},(0,n.kt)("inlineCode",{parentName:"a"},"5f8c7ef"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 eslint fixes for component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/badcb9158cb4a847380f66592b22c78b5117626a"},(0,n.kt)("inlineCode",{parentName:"a"},"badcb91"))),(0,n.kt)("li",{parentName:"ul"},"Table component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7c104b8e89272b0e2505d165184093ee2680c6f3"},(0,n.kt)("inlineCode",{parentName:"a"},"7c104b8"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 more eslint fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a88c091723af0b87cfa85c83307d9510d2bae65c"},(0,n.kt)("inlineCode",{parentName:"a"},"a88c091"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 warn for broken links instead of throwing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bd5821cb78e030aaf69de73dc4d3bdadbe320195"},(0,n.kt)("inlineCode",{parentName:"a"},"bd5821c"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 merge changes from develop-itml to develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bca28b968bc88720aff9e29e1a94a597a7375666"},(0,n.kt)("inlineCode",{parentName:"a"},"bca28b9"))),(0,n.kt)("li",{parentName:"ul"},"made tabs dynamic for api tab ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea37ecb3ec9fe0ace41d7650d59e209929d8e95f"},(0,n.kt)("inlineCode",{parentName:"a"},"ea37ecb"))),(0,n.kt)("li",{parentName:"ul"},"Basic storybook/Docusaurus components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/840ab60f22f7b73d8742fa7452f198d486c6ec5b"},(0,n.kt)("inlineCode",{parentName:"a"},"840ab60"))),(0,n.kt)("li",{parentName:"ul"},"created List directory & srories based on semantic-ui List component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51f19016b27228a4d391c88b7eee27357d6fdc0d"},(0,n.kt)("inlineCode",{parentName:"a"},"51f1901"))),(0,n.kt)("li",{parentName:"ul"},"made tabs as component easy to call for other components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/07bae4900a4076f3429d3a26978b92aabf6b23ba"},(0,n.kt)("inlineCode",{parentName:"a"},"07bae49"))),(0,n.kt)("li",{parentName:"ul"},"Popup Component | minor fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ff9908a9374f93b9eaf4d8ee8de24acdf5be3ec"},(0,n.kt)("inlineCode",{parentName:"a"},"2ff9908"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Tab component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/95e3a733921b42fbe2540fa39548284abff9fdc0"},(0,n.kt)("inlineCode",{parentName:"a"},"95e3a73"))),(0,n.kt)("li",{parentName:"ul"},"created Table directory and stories based on semantic-ui Table component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e16115daa000962ccd8d141e3c11fd099446a388"},(0,n.kt)("inlineCode",{parentName:"a"},"e16115d"))),(0,n.kt)("li",{parentName:"ul"},"List component stories - minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/de113430b487297417c4697178f9ee37412a5389"},(0,n.kt)("inlineCode",{parentName:"a"},"de11343"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Comment component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a20f8842e8cb5c937dfc450030ac9afcf78ffe11"},(0,n.kt)("inlineCode",{parentName:"a"},"a20f884"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Grid component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/360d2a897f36e86c58b0ba6ac3d4fc852d10287d"},(0,n.kt)("inlineCode",{parentName:"a"},"360d2a8"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Image component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c1d2bcaf886c96052af45fcce98243ea56c98a5"},(0,n.kt)("inlineCode",{parentName:"a"},"3c1d2bc"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Menu component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/17e3b37ae447d8cc86228fa6c0c48a8fd8be9d03"},(0,n.kt)("inlineCode",{parentName:"a"},"17e3b37"))),(0,n.kt)("li",{parentName:"ul"},"Added untracked files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/75f0afda10114e70348e23d480f8f74528531674"},(0,n.kt)("inlineCode",{parentName:"a"},"75f0afd"))),(0,n.kt)("li",{parentName:"ul"},"created Dropdown stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d6a25381078e0b3cabdb9270d5224b3886ab6af9"},(0,n.kt)("inlineCode",{parentName:"a"},"d6a2538"))),(0,n.kt)("li",{parentName:"ul"},"created Header component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8339798f3e7d40f1b5a033bf4d7303c756c38d3"},(0,n.kt)("inlineCode",{parentName:"a"},"b833979"))),(0,n.kt)("li",{parentName:"ul"},"created stories for semantic-ui Confirm component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6fddccc6cf97f9929da52064ceb379f9fc427b42"},(0,n.kt)("inlineCode",{parentName:"a"},"6fddccc"))),(0,n.kt)("li",{parentName:"ul"},"created Statistic directory and stories with semantic-ui Statistic component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cd62498dbd75d5dff0adf849ff95d22bb9dc3b34"},(0,n.kt)("inlineCode",{parentName:"a"},"cd62498"))),(0,n.kt)("li",{parentName:"ul"},"created Item component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/90ec2be7eede347352e318c70615c30e7d422073"},(0,n.kt)("inlineCode",{parentName:"a"},"90ec2be"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Container component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/41934f6c5961ae0ac034a496ac169a191c7a5288"},(0,n.kt)("inlineCode",{parentName:"a"},"41934f6"))),(0,n.kt)("li",{parentName:"ul"},"created Label component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/71732f68b3153320710fbf7fb78dac460b8a084f"},(0,n.kt)("inlineCode",{parentName:"a"},"71732f6"))),(0,n.kt)("li",{parentName:"ul"},"created Message component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/adcbeabe6d4e8c1bbd7bd925c5f7fd3109fb407c"},(0,n.kt)("inlineCode",{parentName:"a"},"adcbeab"))),(0,n.kt)("li",{parentName:"ul"},"created Modal component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c25409d8901ad4eba66fa66a9f5c34b0353569b9"},(0,n.kt)("inlineCode",{parentName:"a"},"c25409d"))),(0,n.kt)("li",{parentName:"ul"},"Breadcrumb component stories and minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6264d92bcf6565e284ae9dc0c7a918652bb3959e"},(0,n.kt)("inlineCode",{parentName:"a"},"6264d92"))),(0,n.kt)("li",{parentName:"ul"},"created Pagination component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/57cdad35e21fdacf303e407abcb8988e97e87242"},(0,n.kt)("inlineCode",{parentName:"a"},"57cdad3"))),(0,n.kt)("li",{parentName:"ul"},"created Segment component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d8d01d70dab9359be46eb1629b3198f871091c7a"},(0,n.kt)("inlineCode",{parentName:"a"},"d8d01d7"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Radio component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1fd062d8a08cbe8507f5154201632ea96f765a2c"},(0,n.kt)("inlineCode",{parentName:"a"},"1fd062d"))),(0,n.kt)("li",{parentName:"ul"},"Menu stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6ba5e0d00a26ffd4625fb51f759af3764cef28de"},(0,n.kt)("inlineCode",{parentName:"a"},"6ba5e0d"))),(0,n.kt)("li",{parentName:"ul"},"Statistic component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c874a520c9959b7673b5c86f63e53e90f006f22"},(0,n.kt)("inlineCode",{parentName:"a"},"3c874a5"))),(0,n.kt)("li",{parentName:"ul"},"Card component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/290bda8dac4c9bb4476108c2e4969fa283f935e2"},(0,n.kt)("inlineCode",{parentName:"a"},"290bda8"))),(0,n.kt)("li",{parentName:"ul"},"Accrordion stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ee3f592fbfaead01506fb6a4dbfb36d06269564"},(0,n.kt)("inlineCode",{parentName:"a"},"2ee3f59"))),(0,n.kt)("li",{parentName:"ul"},"renamed Demo folder to Layout ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b9f6d05708310889dd018961bf5df9d5edd66e12"},(0,n.kt)("inlineCode",{parentName:"a"},"b9f6d05"))),(0,n.kt)("li",{parentName:"ul"},"remove test exclusion ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/94dba3eaa864e25d34bcc33ab19494f83ecabb25"},(0,n.kt)("inlineCode",{parentName:"a"},"94dba3e"))),(0,n.kt)("li",{parentName:"ul"},"Accordion component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e672d59f86a79e69f15b5212e2953aa7c5fea1d1"},(0,n.kt)("inlineCode",{parentName:"a"},"e672d59"))),(0,n.kt)("li",{parentName:"ul"},"fix docusaurus url (removed trailing /) ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b6c59fc7733b3df47dca797906e8f7e40a2f4ada"},(0,n.kt)("inlineCode",{parentName:"a"},"b6c59fc"))),(0,n.kt)("li",{parentName:"ul"},"Item component stories - minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f0a99025b9093ecf2eb25fd4b4e401b5b532a481"},(0,n.kt)("inlineCode",{parentName:"a"},"f0a9902"))),(0,n.kt)("li",{parentName:"ul"},"eea logos and assets ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b435b511d64b0ca99bfd310d66bdbfd5985390cc"},(0,n.kt)("inlineCode",{parentName:"a"},"b435b51")))),(0,n.kt)("h3",{id:"012-beta0---2021-12-18"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.1...0.1.2-beta.0"},"0.1.2-beta.0")," - 2021-12-18"),(0,n.kt)("h4",{id:"\ufe0f-others-57"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Refs #140454 added github action to build docusaurus to the develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/abe6a72882a41c9bca3649a3a6697619038e1677"},(0,n.kt)("inlineCode",{parentName:"a"},"abe6a72")))),(0,n.kt)("h3",{id:"011---2021-12-16"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.1-beta.0...0.1.1"},"0.1.1")," - 2021-12-16"),(0,n.kt)("h4",{id:"\ufe0f-others-58"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Refs #140454 changed the following to volto-eea-design-system: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6791d413cf1b9e434970564d9e59ed56b41907f0"},(0,n.kt)("inlineCode",{parentName:"a"},"6791d41"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 corrected base url for docusaurus website build ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/98271b3d39e2e21dfb4a0e31c334dc9e87811e4a"},(0,n.kt)("inlineCode",{parentName:"a"},"98271b3"))),(0,n.kt)("li",{parentName:"ul"},"Initial test changes on design system/docusaurus. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9dad612f385cc9fde712809f07dbe2b7111432cf"},(0,n.kt)("inlineCode",{parentName:"a"},"9dad612"))),(0,n.kt)("li",{parentName:"ul"},"After prettier check ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9ec40b4fe9d8a18e99f774e1a96a55b286a9733a"},(0,n.kt)("inlineCode",{parentName:"a"},"9ec40b4"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 restore SearchWidget.jsx content and removed dummy text from docs intro page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7505df89d93ac99156834a0c50a8e2b174c506f8"},(0,n.kt)("inlineCode",{parentName:"a"},"7505df8"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 added references to eea and the storybook in the docusaurus footer ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/42bbfcdd67888c3a7a55875d67acae9f7eb753bb"},(0,n.kt)("inlineCode",{parentName:"a"},"42bbfcd"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 lint fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9502f2bdbd45262b38926def5b7b55efabf4c32c"},(0,n.kt)("inlineCode",{parentName:"a"},"9502f2b"))),(0,n.kt)("li",{parentName:"ul"},"Add SonarQube badges ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4e0a4053ff2313fc3939caab80d874470aca062"},(0,n.kt)("inlineCode",{parentName:"a"},"a4e0a40"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 brought changes from develop-itml and upgrades docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/207c873532e38fb7909cdc32a02bf50e575b66fa"},(0,n.kt)("inlineCode",{parentName:"a"},"207c873"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 removed extra content not needed by the docusaurus site ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bc68ebe8259c9b8ed6bc73df8102885554bbc4ed"},(0,n.kt)("inlineCode",{parentName:"a"},"bc68ebe"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 updated docusaurus to latest beta ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d68ed8a1660910067a09550626a5f0e8fbbeeac9"},(0,n.kt)("inlineCode",{parentName:"a"},"d68ed8a")))),(0,n.kt)("h3",{id:"011-beta0---2021-12-09"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.0...0.1.1-beta.0"},"0.1.1-beta.0")," - 2021-12-09"),(0,n.kt)("h4",{id:"\ufe0f-others-59"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Refs #140454 moved header and footer templates from volto-ims-theme: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2d5e56045c0b7d917153d95492dd340668b6222"},(0,n.kt)("inlineCode",{parentName:"a"},"e2d5e56"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 added website folder with docusaurus site skeleton ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6fd15f4365a207308c068fe7eb197c0717e93954"},(0,n.kt)("inlineCode",{parentName:"a"},"6fd15f4"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142794 added commented implementation of the header and footer area: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/773ad8784f4a03e4b600406999d3a274a3984d39"},(0,n.kt)("inlineCode",{parentName:"a"},"773ad87"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 changed the following: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4137ec42270c28cbe036ba11e9475f00a7a5cba3"},(0,n.kt)("inlineCode",{parentName:"a"},"4137ec4"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 removed storybook from volto-eea-design-system: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a129ffb485c4c55f19129a209d920da8f8f52418"},(0,n.kt)("inlineCode",{parentName:"a"},"a129ffb"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 added storybook as a dev dependency: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e04ae4e0294fbb4a09f367d1693a158d5a1e8f2f"},(0,n.kt)("inlineCode",{parentName:"a"},"e04ae4e"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 updated Breadcrumbs.jsx to latest version: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/63fe5076781f3cf2ce5c79641a5f1b45f298b476"},(0,n.kt)("inlineCode",{parentName:"a"},"63fe507"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 we should use jsx and not mdx for storybook tests ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3668e667f857cb3052b9d63cf27ec629fe1c8394"},(0,n.kt)("inlineCode",{parentName:"a"},"3668e66"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 updated eea-design-system readme with extra info on package contents ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d2efc3ddae7b91efc82cf3bce8fb8e42d696a780"},(0,n.kt)("inlineCode",{parentName:"a"},"d2efc3d"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142010 - Optimize Volto-addons gitflow pipelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3af46d2b14fa0b1ef44736f25b0f9ac93b23d18d"},(0,n.kt)("inlineCode",{parentName:"a"},"3af46d2"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 Renamed folders of docusaurus website: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/15bca7462ba1b3c626e2bf76597f6436aa5e9092"},(0,n.kt)("inlineCode",{parentName:"a"},"15bca74"))),(0,n.kt)("li",{parentName:"ul"},"Add demo story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/757c409271eb70baa54bff8bd7c71ba29aaa4f66"},(0,n.kt)("inlineCode",{parentName:"a"},"757c409"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142794 enabled minimum css so that header looks decent ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/adbe2335bacf5ae09541c3679a246a5ec28376a4"},(0,n.kt)("inlineCode",{parentName:"a"},"adbe233"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 use the develop branch for the readme linking, it's always more up to date ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/23dcf166d5d633df2a63ab6fa5bac4be086e99a3"},(0,n.kt)("inlineCode",{parentName:"a"},"23dcf16"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 added missing themes reference for the eea theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e9ca244fcedf0be420748b3e5347e98309b5d996"},(0,n.kt)("inlineCode",{parentName:"a"},"e9ca244"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 modified assets imports after move to volto-eea-design-system ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2250cc7ba4155c328837cea09e2e7d94afc984f8"},(0,n.kt)("inlineCode",{parentName:"a"},"2250cc7"))),(0,n.kt)("li",{parentName:"ul"},"Load footer in segment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/80d38a96284e7fa9416ba327a43e29eb94bebe55"},(0,n.kt)("inlineCode",{parentName:"a"},"80d38a9"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 bump package version to 1.1.0 from 0.1.1 from develop branch: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1314039ceb45d405af6bc4698b489bbd6562c6ae"},(0,n.kt)("inlineCode",{parentName:"a"},"1314039"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142794 keep toolbalWidth variables in case design system runs in an older version of Volto ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1a8b30562e4167fe36b095877db0b215d10cb620"},(0,n.kt)("inlineCode",{parentName:"a"},"1a8b305"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142794 changed the following: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fbb80b1dbd0e3078777b8b3496d4b207ba25639a"},(0,n.kt)("inlineCode",{parentName:"a"},"fbb80b1"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 moved storybook scripts to the scripts section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/705c4c365d26152d917c62991f3f8202bc75287d"},(0,n.kt)("inlineCode",{parentName:"a"},"705c4c3"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 removed dangling comma ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/514f24d503a1f05497696c22c7fdbf7bc19d4e54"},(0,n.kt)("inlineCode",{parentName:"a"},"514f24d"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 changed link to the start of the docs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0e16fdfc77e119da4e1f15183d9cb95ef9b4b6cf"},(0,n.kt)("inlineCode",{parentName:"a"},"0e16fdf"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 add h1 to the list of elements that are max 800px and centered ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d3c30f409aa4cb43810839f8960589456cc1b2e"},(0,n.kt)("inlineCode",{parentName:"a"},"7d3c30f"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using ims-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8d657d056cde5163cfe90ac66bc973f55d82e5e9"},(0,n.kt)("inlineCode",{parentName:"a"},"8d657d0")))),(0,n.kt)("h3",{id:"010---2021-11-17"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.0.1...0.1.0"},"0.1.0")," - 2021-11-17"),(0,n.kt)("h4",{id:"\ufe0f-others-60"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Refs #140454 changed the following to volto-eea-design-system: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/40d2af693e35abdda3ededc7aabcb17e9a12e781"},(0,n.kt)("inlineCode",{parentName:"a"},"40d2af6"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 elements folder now has the variables and overrides from pastanaga theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/595b4e60816d3e24950ede3afea6e5f2aa2d7008"},(0,n.kt)("inlineCode",{parentName:"a"},"595b4e6"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 use font awesome from SemanticUI instead of Pastanaga: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4e273ca1b9a2be1f169d12258ac2335c3ebeefff"},(0,n.kt)("inlineCode",{parentName:"a"},"4e273ca"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 removed the components customizations from volto-eea-design-system: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c98c260b549cd1db48bfe556e994692a4855b95d"},(0,n.kt)("inlineCode",{parentName:"a"},"c98c260"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 added customizations folder from volto-ims-theme to volto-eea-design-system: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff4bf44bd648ff179bd7c82d0cf80da968b291b0"},(0,n.kt)("inlineCode",{parentName:"a"},"ff4bf44"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 modules folder now has the variables and overrides from pastanaga theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2841b62c87e3242423bca1117c7e1793baa7974"},(0,n.kt)("inlineCode",{parentName:"a"},"f2841b6"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 customized Comments.jsx to remove unnecessary container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b2e95d7ae875a7fc85366c76ef35ce215dd7b5ff"},(0,n.kt)("inlineCode",{parentName:"a"},"b2e95d7"))),(0,n.kt)("li",{parentName:"ul"},"Refs #132149 added initial commit for volto-eea-design-system: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2934b911d589fde126f70363a61cbdd2e3dcf7c9"},(0,n.kt)("inlineCode",{parentName:"a"},"2934b91"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 collection folder now has the variables and overrides from pastanaga: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/213d4968e4efa380a389fb7ab40ec3196f030050"},(0,n.kt)("inlineCode",{parentName:"a"},"213d496"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 removed search widget customization, we can use volto-ims-theme for that file ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b7e8b0c4821584a84f940d8f780057122321aae7"},(0,n.kt)("inlineCode",{parentName:"a"},"b7e8b0c"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 stylelint quick fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5595925f68871135a07d703c8ba009b0172c7ccd"},(0,n.kt)("inlineCode",{parentName:"a"},"5595925"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 changed the following: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/769f4f9eca0ed9fffe0c8c49c56bcb123a203f3c"},(0,n.kt)("inlineCode",{parentName:"a"},"769f4f9"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 changed the following to the eea theme: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/06d8d86a7be81fd3feadf034eacfa61eb69743ab"},(0,n.kt)("inlineCode",{parentName:"a"},"06d8d86"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 eea site.variables now use all values from pastanaga's site.variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6535c0f4e1968822a232b017a55babd280716d88"},(0,n.kt)("inlineCode",{parentName:"a"},"6535c0f"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 simplified container overrides: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51250038527f2e4b1135a2b5bfc6adccc3f77a06"},(0,n.kt)("inlineCode",{parentName:"a"},"5125003"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/177d0ce854a8a963faa2aae9481cbcc7e340e0fa"},(0,n.kt)("inlineCode",{parentName:"a"},"177d0ce"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 globals folder now has the variables and overrides from pastanaga theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/116a0c338bd92dd14636a649476b4f00951e3734"},(0,n.kt)("inlineCode",{parentName:"a"},"116a0c3"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 changed the following: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2e7f42381b63e65bafac3b754d49b65daca9663d"},(0,n.kt)("inlineCode",{parentName:"a"},"2e7f423"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 modules folder now has the variables and overrides from pastanaga theme: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/27a201d57024a7c621f4943b8eb59a3247b6c89d"},(0,n.kt)("inlineCode",{parentName:"a"},"27a201d"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 text elements are now with a max width and centered within content-area: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bbed7bbfb3e79a371b7bf7dea2206cdbdcdfe76d"},(0,n.kt)("inlineCode",{parentName:"a"},"bbed7bb"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 added main.variables entries from pastanaga to eea theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1cbbc550436c889d1b297ae9e6880167fce28fe1"},(0,n.kt)("inlineCode",{parentName:"a"},"1cbbc55"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 modified theme image imports for component customizations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef3238a4d615fa1b496e83f4e6c4c0d27f3d68f4"},(0,n.kt)("inlineCode",{parentName:"a"},"ef3238a"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 modified container width to be auto: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2e8d2e0ebb3e4a55b7cf1b66c3dff222ef12aa18"},(0,n.kt)("inlineCode",{parentName:"a"},"2e8d2e0"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 modified several icons to use the \\f values instead of \\e: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c397145bc1e76916ae72a94faaf33f49bd9ca5a6"},(0,n.kt)("inlineCode",{parentName:"a"},"c397145"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 changed the following: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c518edacad9b8bed61ea50d318d8d43bf7f483a0"},(0,n.kt)("inlineCode",{parentName:"a"},"c518eda"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 ensure that main column isn't enlarged over the sidebar section on edit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f7a28684223494933bcd8ec1f6d86b1b3da17e10"},(0,n.kt)("inlineCode",{parentName:"a"},"f7a2868"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 changed the following to the form styling: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/eb92e054fe330730c1a44737cbbdf33985216cbb"},(0,n.kt)("inlineCode",{parentName:"a"},"eb92e05"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 modified path of theme folder location for image selection ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f8cca4594857ab4afd654f35e4ec97e4d3e04be4"},(0,n.kt)("inlineCode",{parentName:"a"},"f8cca45"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 added missing mobileScrollbarWidth variables introduced as part of the mobile navigation pull request ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/444c78d998199e703d7ecde01b3feb0d44c60977"},(0,n.kt)("inlineCode",{parentName:"a"},"444c78d"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 reference font and image path from ~volto-themes instead of relative ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ec93ed3a496673eed7d7ec07a2f76aaa6a29d7ca"},(0,n.kt)("inlineCode",{parentName:"a"},"ec93ed3"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 ensure that Volto doesn't crash when site module is set to eea: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51f2f27f5ba947b49b4b69fcf9b8890676cd1d7e"},(0,n.kt)("inlineCode",{parentName:"a"},"51f2f27"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 added tiny size prop to Breadcrumbs in order to have it as 12px ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/56a12e200c27c3a1826fa3088c34f762ed74dff7"},(0,n.kt)("inlineCode",{parentName:"a"},"56a12e2")))),(0,n.kt)("h3",{id:"001---2021-11-17"},"0.0.1 - 2021-11-17"),(0,n.kt)("h4",{id:"\ufe0f-others-61"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Initial commit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b0bdd445c95a20d088e00469f81028c16482640a"},(0,n.kt)("inlineCode",{parentName:"a"},"b0bdd44")))))}s.isMDXComponent=!0}}]); \ No newline at end of file diff --git a/docs/assets/js/runtime~main.ea9eaeaf.js b/docs/assets/js/runtime~main.c8c186fa.js similarity index 99% rename from docs/assets/js/runtime~main.ea9eaeaf.js rename to docs/assets/js/runtime~main.c8c186fa.js index de796e47c2..e18c35fdf6 100644 --- a/docs/assets/js/runtime~main.ea9eaeaf.js +++ b/docs/assets/js/runtime~main.c8c186fa.js @@ -1 +1 @@ -(()=>{"use strict";var e,d,a,f,c,b={},t={};function r(e){var d=t[e];if(void 0!==d)return d.exports;var a=t[e]={id:e,loaded:!1,exports:{}};return b[e].call(a.exports,a,a.exports,r),a.loaded=!0,a.exports}r.m=b,r.c=t,e=[],r.O=(d,a,f,c)=>{if(!a){var b=1/0;for(i=0;i=c)&&Object.keys(r.O).every((e=>r.O[e](a[o])))?a.splice(o--,1):(t=!1,c0&&e[i-1][2]>c;i--)e[i]=e[i-1];e[i]=[a,f,c]},r.n=e=>{var d=e&&e.__esModule?()=>e.default:()=>e;return r.d(d,{a:d}),d},a=Object.getPrototypeOf?e=>Object.getPrototypeOf(e):e=>e.__proto__,r.t=function(e,f){if(1&f&&(e=this(e)),8&f)return e;if("object"==typeof e&&e){if(4&f&&e.__esModule)return e;if(16&f&&"function"==typeof e.then)return e}var c=Object.create(null);r.r(c);var b={};d=d||[null,a({}),a([]),a(a)];for(var t=2&f&&e;"object"==typeof t&&!~d.indexOf(t);t=a(t))Object.getOwnPropertyNames(t).forEach((d=>b[d]=()=>e[d]));return b.default=()=>e,r.d(c,b),c},r.d=(e,d)=>{for(var a in d)r.o(d,a)&&!r.o(e,a)&&Object.defineProperty(e,a,{enumerable:!0,get:d[a]})},r.f={},r.e=e=>Promise.all(Object.keys(r.f).reduce(((d,a)=>(r.f[a](e,d),d)),[])),r.u=e=>"assets/js/"+({53:"935f2afb",123:"3fc91083",296:"a64f9232",432:"323ff172",554:"8fd6869d",585:"c74413f4",596:"ca221c65",698:"56bbe726",918:"1e6d2369",952:"4442ee2e",1129:"30e35848",1327:"9c235974",1356:"7ca1ae16",1500:"3508f21e",1704:"6c6ad4cd",2099:"f4f5dc73",2163:"0bef62f9",2263:"e9a55e4f",2282:"9a6dc4ea",2305:"686ae6d4",2359:"d61699b0",2438:"d9dbb717",2453:"a5822498",2463:"42e0342b",2543:"86298114",2582:"63791757",2672:"bdd5fc8f",2678:"9b6f4efd",2853:"06df40a2",2873:"398224d0",3018:"2d344845",3166:"f9ee06b1",3293:"b78356b1",3305:"1f485700",3412:"792760cc",3436:"860b2a9d",3608:"9e4087bc",3661:"39f50359",3808:"fe8a233d",3822:"77dd8181",3902:"a8b15fb1",3934:"aa38dcb9",4009:"8050142d",4195:"c4f5d8e4",4419:"f601d3af",4521:"1a10606c",5294:"76fe1567",5386:"54e4468f",5435:"24202412",5437:"a186f965",5886:"7e4403b7",6061:"046f8cb9",6196:"c3faf33a",6245:"41d5c757",6304:"1c178b4f",6515:"f8c0402f",6570:"23d147e2",6671:"8effdd7e",6966:"c7d85666",7098:"d727d0d1",7426:"671d942a",7492:"b0f56568",7578:"3aee128f",7918:"17896441",8027:"2d39cd59",8150:"85201c01",8362:"0b225811",8518:"627750f7",8635:"0a8b14be",9003:"072ed0e5",9053:"75066279",9110:"7810a5ba",9173:"6d890e16",9184:"b3c62368",9213:"6dda7ddb",9221:"797402ac",9340:"d6e43592",9456:"aed7c9bd",9514:"1be78505",9744:"224603d4",9817:"14eb3368"}[e]||e)+"."+{53:"af8c3126",123:"1fc5f8a1",296:"a3fe1499",432:"8e77499f",554:"9012c388",585:"88e2ed16",596:"c934dcb0",698:"02ecf8a0",918:"74ff9fcc",952:"51f99e28",1129:"07372634",1327:"37d0ed39",1356:"02804555",1500:"929876a1",1704:"6511d866",2099:"2a653be0",2163:"096fabb0",2263:"3980a0d4",2282:"f1d8d943",2305:"600335dc",2359:"e041662b",2438:"e1067b46",2453:"7f593cf2",2463:"6d5f3ad4",2543:"52def2ee",2582:"b5f68b7e",2672:"25d9da0a",2678:"b0273f83",2853:"23875b5f",2873:"b722ee28",3018:"1383b54d",3166:"136c147f",3293:"655674df",3305:"1237957a",3412:"08f0edc4",3436:"cba9bde3",3608:"6e912446",3661:"593bba5c",3808:"a7fce259",3822:"dbb98ec9",3902:"73af5b7e",3934:"a4f5c736",4009:"1e9f60f9",4195:"684c270e",4419:"4a574066",4521:"216f709e",4608:"46768f56",5294:"86227180",5386:"f96775e6",5435:"67d0c84c",5437:"e2c081c8",5886:"f539fb56",6061:"24207895",6196:"aa89e306",6245:"8b547e3f",6304:"6abca704",6515:"6a8c6376",6570:"dd09dcfc",6671:"78438c01",6966:"3b2a23c4",7098:"451ca2c2",7426:"361333e3",7492:"01af3d6a",7578:"465c5637",7918:"6d7b2f82",8027:"c3e1229f",8150:"e3153012",8362:"69f9ed96",8518:"6f79a50b",8635:"9eacda40",9003:"b1cc3b3e",9053:"90332cf0",9110:"cbdafccc",9173:"3ab4f8fe",9184:"9ae02f15",9213:"3a3aae20",9221:"261f0d22",9340:"c521528a",9456:"3112a237",9514:"a4a3adad",9744:"bcc78ee9",9817:"d6f1bb65"}[e]+".js",r.miniCssF=e=>"assets/css/styles.6aa5c4cf.css",r.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),r.o=(e,d)=>Object.prototype.hasOwnProperty.call(e,d),f={},c="website:",r.l=(e,d,a,b)=>{if(f[e])f[e].push(d);else{var t,o;if(void 0!==a)for(var n=document.getElementsByTagName("script"),i=0;i{t.onerror=t.onload=null,clearTimeout(u);var c=f[e];if(delete f[e],t.parentNode&&t.parentNode.removeChild(t),c&&c.forEach((e=>e(a))),d)return d(a)},u=setTimeout(l.bind(null,void 0,{type:"timeout",target:t}),12e4);t.onerror=l.bind(null,t.onerror),t.onload=l.bind(null,t.onload),o&&document.head.appendChild(t)}},r.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r.p="/volto-eea-design-system/",r.gca=function(e){return e={17896441:"7918",24202412:"5435",63791757:"2582",75066279:"9053",86298114:"2543","935f2afb":"53","3fc91083":"123",a64f9232:"296","323ff172":"432","8fd6869d":"554",c74413f4:"585",ca221c65:"596","56bbe726":"698","1e6d2369":"918","4442ee2e":"952","30e35848":"1129","9c235974":"1327","7ca1ae16":"1356","3508f21e":"1500","6c6ad4cd":"1704",f4f5dc73:"2099","0bef62f9":"2163",e9a55e4f:"2263","9a6dc4ea":"2282","686ae6d4":"2305",d61699b0:"2359",d9dbb717:"2438",a5822498:"2453","42e0342b":"2463",bdd5fc8f:"2672","9b6f4efd":"2678","06df40a2":"2853","398224d0":"2873","2d344845":"3018",f9ee06b1:"3166",b78356b1:"3293","1f485700":"3305","792760cc":"3412","860b2a9d":"3436","9e4087bc":"3608","39f50359":"3661",fe8a233d:"3808","77dd8181":"3822",a8b15fb1:"3902",aa38dcb9:"3934","8050142d":"4009",c4f5d8e4:"4195",f601d3af:"4419","1a10606c":"4521","76fe1567":"5294","54e4468f":"5386",a186f965:"5437","7e4403b7":"5886","046f8cb9":"6061",c3faf33a:"6196","41d5c757":"6245","1c178b4f":"6304",f8c0402f:"6515","23d147e2":"6570","8effdd7e":"6671",c7d85666:"6966",d727d0d1:"7098","671d942a":"7426",b0f56568:"7492","3aee128f":"7578","2d39cd59":"8027","85201c01":"8150","0b225811":"8362","627750f7":"8518","0a8b14be":"8635","072ed0e5":"9003","7810a5ba":"9110","6d890e16":"9173",b3c62368:"9184","6dda7ddb":"9213","797402ac":"9221",d6e43592:"9340",aed7c9bd:"9456","1be78505":"9514","224603d4":"9744","14eb3368":"9817"}[e]||e,r.p+r.u(e)},(()=>{var e={1303:0,532:0};r.f.j=(d,a)=>{var f=r.o(e,d)?e[d]:void 0;if(0!==f)if(f)a.push(f[2]);else if(/^(1303|532)$/.test(d))e[d]=0;else{var c=new Promise(((a,c)=>f=e[d]=[a,c]));a.push(f[2]=c);var b=r.p+r.u(d),t=new Error;r.l(b,(a=>{if(r.o(e,d)&&(0!==(f=e[d])&&(e[d]=void 0),f)){var c=a&&("load"===a.type?"missing":a.type),b=a&&a.target&&a.target.src;t.message="Loading chunk "+d+" failed.\n("+c+": "+b+")",t.name="ChunkLoadError",t.type=c,t.request=b,f[1](t)}}),"chunk-"+d,d)}},r.O.j=d=>0===e[d];var d=(d,a)=>{var f,c,b=a[0],t=a[1],o=a[2],n=0;if(b.some((d=>0!==e[d]))){for(f in t)r.o(t,f)&&(r.m[f]=t[f]);if(o)var i=o(r)}for(d&&d(a);n{"use strict";var e,d,a,f,c,b={},t={};function r(e){var d=t[e];if(void 0!==d)return d.exports;var a=t[e]={id:e,loaded:!1,exports:{}};return b[e].call(a.exports,a,a.exports,r),a.loaded=!0,a.exports}r.m=b,r.c=t,e=[],r.O=(d,a,f,c)=>{if(!a){var b=1/0;for(i=0;i=c)&&Object.keys(r.O).every((e=>r.O[e](a[o])))?a.splice(o--,1):(t=!1,c0&&e[i-1][2]>c;i--)e[i]=e[i-1];e[i]=[a,f,c]},r.n=e=>{var d=e&&e.__esModule?()=>e.default:()=>e;return r.d(d,{a:d}),d},a=Object.getPrototypeOf?e=>Object.getPrototypeOf(e):e=>e.__proto__,r.t=function(e,f){if(1&f&&(e=this(e)),8&f)return e;if("object"==typeof e&&e){if(4&f&&e.__esModule)return e;if(16&f&&"function"==typeof e.then)return e}var c=Object.create(null);r.r(c);var b={};d=d||[null,a({}),a([]),a(a)];for(var t=2&f&&e;"object"==typeof t&&!~d.indexOf(t);t=a(t))Object.getOwnPropertyNames(t).forEach((d=>b[d]=()=>e[d]));return b.default=()=>e,r.d(c,b),c},r.d=(e,d)=>{for(var a in d)r.o(d,a)&&!r.o(e,a)&&Object.defineProperty(e,a,{enumerable:!0,get:d[a]})},r.f={},r.e=e=>Promise.all(Object.keys(r.f).reduce(((d,a)=>(r.f[a](e,d),d)),[])),r.u=e=>"assets/js/"+({53:"935f2afb",123:"3fc91083",296:"a64f9232",432:"323ff172",554:"8fd6869d",585:"c74413f4",596:"ca221c65",698:"56bbe726",918:"1e6d2369",952:"4442ee2e",1129:"30e35848",1327:"9c235974",1356:"7ca1ae16",1500:"3508f21e",1704:"6c6ad4cd",2099:"f4f5dc73",2163:"0bef62f9",2263:"e9a55e4f",2282:"9a6dc4ea",2305:"686ae6d4",2359:"d61699b0",2438:"d9dbb717",2453:"a5822498",2463:"42e0342b",2543:"86298114",2582:"63791757",2672:"bdd5fc8f",2678:"9b6f4efd",2853:"06df40a2",2873:"398224d0",3018:"2d344845",3166:"f9ee06b1",3293:"b78356b1",3305:"1f485700",3412:"792760cc",3436:"860b2a9d",3608:"9e4087bc",3661:"39f50359",3808:"fe8a233d",3822:"77dd8181",3902:"a8b15fb1",3934:"aa38dcb9",4009:"8050142d",4195:"c4f5d8e4",4419:"f601d3af",4521:"1a10606c",5294:"76fe1567",5386:"54e4468f",5435:"24202412",5437:"a186f965",5886:"7e4403b7",6061:"046f8cb9",6196:"c3faf33a",6245:"41d5c757",6304:"1c178b4f",6515:"f8c0402f",6570:"23d147e2",6671:"8effdd7e",6966:"c7d85666",7098:"d727d0d1",7426:"671d942a",7492:"b0f56568",7578:"3aee128f",7918:"17896441",8027:"2d39cd59",8150:"85201c01",8362:"0b225811",8518:"627750f7",8635:"0a8b14be",9003:"072ed0e5",9053:"75066279",9110:"7810a5ba",9173:"6d890e16",9184:"b3c62368",9213:"6dda7ddb",9221:"797402ac",9340:"d6e43592",9456:"aed7c9bd",9514:"1be78505",9744:"224603d4",9817:"14eb3368"}[e]||e)+"."+{53:"af8c3126",123:"1fc5f8a1",296:"a3fe1499",432:"8e77499f",554:"9012c388",585:"88e2ed16",596:"c934dcb0",698:"02ecf8a0",918:"74ff9fcc",952:"51f99e28",1129:"07372634",1327:"37d0ed39",1356:"02804555",1500:"929876a1",1704:"6511d866",2099:"2a653be0",2163:"096fabb0",2263:"3980a0d4",2282:"f1d8d943",2305:"600335dc",2359:"e041662b",2438:"e1067b46",2453:"7f593cf2",2463:"6d5f3ad4",2543:"52def2ee",2582:"b5f68b7e",2672:"25d9da0a",2678:"b0273f83",2853:"23875b5f",2873:"b722ee28",3018:"1383b54d",3166:"136c147f",3293:"655674df",3305:"1237957a",3412:"08f0edc4",3436:"cba9bde3",3608:"6e912446",3661:"593bba5c",3808:"a7fce259",3822:"dbb98ec9",3902:"73af5b7e",3934:"a4f5c736",4009:"1e9f60f9",4195:"684c270e",4419:"4a574066",4521:"216f709e",4608:"46768f56",5294:"86227180",5386:"f96775e6",5435:"67d0c84c",5437:"e2c081c8",5886:"f539fb56",6061:"24207895",6196:"aa89e306",6245:"b162b801",6304:"6abca704",6515:"6a8c6376",6570:"dd09dcfc",6671:"78438c01",6966:"3b2a23c4",7098:"451ca2c2",7426:"361333e3",7492:"01af3d6a",7578:"465c5637",7918:"6d7b2f82",8027:"c3e1229f",8150:"e3153012",8362:"69f9ed96",8518:"6f79a50b",8635:"9eacda40",9003:"b1cc3b3e",9053:"90332cf0",9110:"cbdafccc",9173:"3ab4f8fe",9184:"9ae02f15",9213:"3a3aae20",9221:"261f0d22",9340:"c521528a",9456:"3112a237",9514:"a4a3adad",9744:"bcc78ee9",9817:"d6f1bb65"}[e]+".js",r.miniCssF=e=>"assets/css/styles.6aa5c4cf.css",r.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),r.o=(e,d)=>Object.prototype.hasOwnProperty.call(e,d),f={},c="website:",r.l=(e,d,a,b)=>{if(f[e])f[e].push(d);else{var t,o;if(void 0!==a)for(var n=document.getElementsByTagName("script"),i=0;i{t.onerror=t.onload=null,clearTimeout(u);var c=f[e];if(delete f[e],t.parentNode&&t.parentNode.removeChild(t),c&&c.forEach((e=>e(a))),d)return d(a)},u=setTimeout(l.bind(null,void 0,{type:"timeout",target:t}),12e4);t.onerror=l.bind(null,t.onerror),t.onload=l.bind(null,t.onload),o&&document.head.appendChild(t)}},r.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r.p="/volto-eea-design-system/",r.gca=function(e){return e={17896441:"7918",24202412:"5435",63791757:"2582",75066279:"9053",86298114:"2543","935f2afb":"53","3fc91083":"123",a64f9232:"296","323ff172":"432","8fd6869d":"554",c74413f4:"585",ca221c65:"596","56bbe726":"698","1e6d2369":"918","4442ee2e":"952","30e35848":"1129","9c235974":"1327","7ca1ae16":"1356","3508f21e":"1500","6c6ad4cd":"1704",f4f5dc73:"2099","0bef62f9":"2163",e9a55e4f:"2263","9a6dc4ea":"2282","686ae6d4":"2305",d61699b0:"2359",d9dbb717:"2438",a5822498:"2453","42e0342b":"2463",bdd5fc8f:"2672","9b6f4efd":"2678","06df40a2":"2853","398224d0":"2873","2d344845":"3018",f9ee06b1:"3166",b78356b1:"3293","1f485700":"3305","792760cc":"3412","860b2a9d":"3436","9e4087bc":"3608","39f50359":"3661",fe8a233d:"3808","77dd8181":"3822",a8b15fb1:"3902",aa38dcb9:"3934","8050142d":"4009",c4f5d8e4:"4195",f601d3af:"4419","1a10606c":"4521","76fe1567":"5294","54e4468f":"5386",a186f965:"5437","7e4403b7":"5886","046f8cb9":"6061",c3faf33a:"6196","41d5c757":"6245","1c178b4f":"6304",f8c0402f:"6515","23d147e2":"6570","8effdd7e":"6671",c7d85666:"6966",d727d0d1:"7098","671d942a":"7426",b0f56568:"7492","3aee128f":"7578","2d39cd59":"8027","85201c01":"8150","0b225811":"8362","627750f7":"8518","0a8b14be":"8635","072ed0e5":"9003","7810a5ba":"9110","6d890e16":"9173",b3c62368:"9184","6dda7ddb":"9213","797402ac":"9221",d6e43592:"9340",aed7c9bd:"9456","1be78505":"9514","224603d4":"9744","14eb3368":"9817"}[e]||e,r.p+r.u(e)},(()=>{var e={1303:0,532:0};r.f.j=(d,a)=>{var f=r.o(e,d)?e[d]:void 0;if(0!==f)if(f)a.push(f[2]);else if(/^(1303|532)$/.test(d))e[d]=0;else{var c=new Promise(((a,c)=>f=e[d]=[a,c]));a.push(f[2]=c);var b=r.p+r.u(d),t=new Error;r.l(b,(a=>{if(r.o(e,d)&&(0!==(f=e[d])&&(e[d]=void 0),f)){var c=a&&("load"===a.type?"missing":a.type),b=a&&a.target&&a.target.src;t.message="Loading chunk "+d+" failed.\n("+c+": "+b+")",t.name="ChunkLoadError",t.type=c,t.request=b,f[1](t)}}),"chunk-"+d,d)}},r.O.j=d=>0===e[d];var d=(d,a)=>{var f,c,b=a[0],t=a[1],o=a[2],n=0;if(b.some((d=>0!==e[d]))){for(f in t)r.o(t,f)&&(r.m[f]=t[f]);if(o)var i=o(r)}for(d&&d(a);n Archive | EEA Design System - +

Archive

Archive

- + \ No newline at end of file diff --git a/docs/docs/category/components/index.html b/docs/docs/category/components/index.html index c32e519fe0..da04695b18 100644 --- a/docs/docs/category/components/index.html +++ b/docs/docs/category/components/index.html @@ -5,13 +5,13 @@ Components | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/category/forms/index.html b/docs/docs/category/forms/index.html index 14a7c9e1c7..87084b5f88 100644 --- a/docs/docs/category/forms/index.html +++ b/docs/docs/category/forms/index.html @@ -5,13 +5,13 @@ Forms | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/category/guidelines/index.html b/docs/docs/category/guidelines/index.html index b447dfa668..7bcda56082 100644 --- a/docs/docs/category/guidelines/index.html +++ b/docs/docs/category/guidelines/index.html @@ -5,13 +5,13 @@ Guidelines | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/category/maps-and-charts/index.html b/docs/docs/category/maps-and-charts/index.html index fd410f5188..f693141678 100644 --- a/docs/docs/category/maps-and-charts/index.html +++ b/docs/docs/category/maps-and-charts/index.html @@ -5,13 +5,13 @@ Maps and charts | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/category/publications/index.html b/docs/docs/category/publications/index.html index 83f8096dac..f3a9f1a203 100644 --- a/docs/docs/category/publications/index.html +++ b/docs/docs/category/publications/index.html @@ -5,13 +5,13 @@ Publications | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/category/quotes/index.html b/docs/docs/category/quotes/index.html index 771b535b11..6361f29e7e 100644 --- a/docs/docs/category/quotes/index.html +++ b/docs/docs/category/quotes/index.html @@ -5,13 +5,13 @@ Quotes | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/category/resources/index.html b/docs/docs/category/resources/index.html index b0a7adc625..6c2e29d9d9 100644 --- a/docs/docs/category/resources/index.html +++ b/docs/docs/category/resources/index.html @@ -5,13 +5,13 @@ Resources | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/category/search/index.html b/docs/docs/category/search/index.html index 0c6b9df2cb..111b21cdf7 100644 --- a/docs/docs/category/search/index.html +++ b/docs/docs/category/search/index.html @@ -5,13 +5,13 @@ Search | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/category/templates/index.html b/docs/docs/category/templates/index.html index c7c4b4173a..f38721b4a5 100644 --- a/docs/docs/category/templates/index.html +++ b/docs/docs/category/templates/index.html @@ -5,13 +5,13 @@ Templates | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/category/utilities/index.html b/docs/docs/category/utilities/index.html index 84248f71bf..2a4b880c8b 100644 --- a/docs/docs/category/utilities/index.html +++ b/docs/docs/category/utilities/index.html @@ -5,13 +5,13 @@ Utilities | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/category/visuals/index.html b/docs/docs/category/visuals/index.html index 10c3cfdc39..77b780f0c1 100644 --- a/docs/docs/category/visuals/index.html +++ b/docs/docs/category/visuals/index.html @@ -5,13 +5,13 @@ Visuals | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/category/web-content/index.html b/docs/docs/category/web-content/index.html index 5dbfb629f3..0f89c658d8 100644 --- a/docs/docs/category/web-content/index.html +++ b/docs/docs/category/web-content/index.html @@ -5,13 +5,13 @@ Web content | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/category/web-development/index.html b/docs/docs/category/web-development/index.html index cce6facbb4..e65905fc93 100644 --- a/docs/docs/category/web-development/index.html +++ b/docs/docs/category/web-development/index.html @@ -5,13 +5,13 @@ Web development | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/dataguide/intro/index.html b/docs/docs/dataguide/intro/index.html index 4a35b9448c..e0e27ea713 100644 --- a/docs/docs/dataguide/intro/index.html +++ b/docs/docs/dataguide/intro/index.html @@ -5,13 +5,13 @@ Dos and don'ts | EEA Design System - +
- + \ No newline at end of file diff --git a/docs/docs/intro/index.html b/docs/docs/intro/index.html index af862b5568..5b12e7a067 100644 --- a/docs/docs/intro/index.html +++ b/docs/docs/intro/index.html @@ -5,13 +5,13 @@ Introduction | EEA Design System - +

Introduction

We created the EEA Design System (EEA-DS) to standardize the visual language and user experience of the EEA’s online applications.

This also allows us to be more effecient when creating online applications instead of reinventing the wheel over and over.

EEA-DS was built by a multi-disciplinary team of developers, designers, UX researchers, writers and data scientists. Combining the expertise of all of these roles allowed us to create a design system with a wide range of elements and for various target users (Web Designer, Web Writer/Content manager, Web Developer and Data scientist).

What is a design system?

A design system is a catalogue of everything that makes up your digital product including user interface elements, writing style, guiding principles, coding standards, visual design, etc. using reusable components for easy development.

All library elements are accompanied by:

  • documentation explaining what a component is and how it should be used
  • a visual demonstration
  • HTML/CSS code for implementation
- + \ No newline at end of file diff --git a/docs/docs/pubguide/design/index.html b/docs/docs/pubguide/design/index.html index 2d8f446036..0275d8c493 100644 --- a/docs/docs/pubguide/design/index.html +++ b/docs/docs/pubguide/design/index.html @@ -5,14 +5,14 @@ Design guidelines | EEA Design System - +
- + \ No newline at end of file diff --git a/docs/docs/pubguide/writing/index.html b/docs/docs/pubguide/writing/index.html index 5cb569ec49..c7d692327a 100644 --- a/docs/docs/pubguide/writing/index.html +++ b/docs/docs/pubguide/writing/index.html @@ -5,13 +5,13 @@ Writing guidelines | EEA Design System - +
- + \ No newline at end of file diff --git a/docs/docs/webcontent/intro/index.html b/docs/docs/webcontent/intro/index.html index 5a5a9bed98..b153c37fe6 100644 --- a/docs/docs/webcontent/intro/index.html +++ b/docs/docs/webcontent/intro/index.html @@ -5,13 +5,13 @@ Guidelines | EEA Design System - +
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Accordion/index.html b/docs/docs/webdev/Components/Accordion/index.html index 253bdb834e..dcfd991e53 100644 --- a/docs/docs/webdev/Components/Accordion/index.html +++ b/docs/docs/webdev/Components/Accordion/index.html @@ -5,13 +5,13 @@ Accordion | EEA Design System - +

Accordion

The accordion component is used to generate vertically stacked content in a page. It is intended to save vertical space by hiding content, reducing scrolling.

Accordions contain labels with the relevant information. Users can click on the accordion to read additional information. For this reason, accordion labels (collapsed state) should be as descriptive and concise as possible.

Do's

  • use labels that are representative of the content inside the (initially hidden) container
  • order logically (such as 1st quarter, 2nd quarter, 3rd quarter, 4th quarter)
  • make sure this component is required in order to shorten the page

Don'ts

  • don't use unless users will benefit from hidden information
  • don't use actionable items (i.e. forms, accordions, buttons, CTAs, etc.) or pictures in the content container as they will have decreased visibility
  • don't hide important information that should be present at all times
  • don't use long labels, ideally keep it to one line, maximum 2

When to use

  • when you need to present multiple sections of content in a simple way on one page, without overwhelming the user (especially applicable to mobile)
  • when it’s not critical for every user to read every section of content, adding value
  • when you can make extensive and complex content easier to digest through descriptive labels

When not to use

  • don't use when pages are short (reading time: under 3 minutes)
  • don't use when information would be better structured horizontally (does not need comparison between sections) - use tabs instead
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Breadcrumb/index.html b/docs/docs/webdev/Components/Breadcrumb/index.html index 35b6582dcc..7ca9ec70b7 100644 --- a/docs/docs/webdev/Components/Breadcrumb/index.html +++ b/docs/docs/webdev/Components/Breadcrumb/index.html @@ -5,13 +5,13 @@ Breadcrumb | EEA Design System - +

Breadcrumb

The Breadcrumb informs the users on their current location relative to the homepage of the website and allows them to navigate to higher levels. It is a series links except the last item in the group, which is the current page.

Do's

  • the first element of the breadcrumb must always be labelled "Home" and must link to the homepage of the actual site where the current user page is located

Don'ts

  • use long labels which creates visual clutter
  • breadcrumb links cannot exceed 220px in length else they will be truncated

When to use

  • if your website's navigational structure is a tree of more than 2 levels

When not to use

  • if your website's navigational structure has less than 3 levels of depth
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Buttons/index.html b/docs/docs/webdev/Components/Buttons/index.html index 6ee4346257..bd563128f3 100644 --- a/docs/docs/webdev/Components/Buttons/index.html +++ b/docs/docs/webdev/Components/Buttons/index.html @@ -5,13 +5,13 @@ Buttons | EEA Design System - +

Buttons

Buttons trigger an action in a web page. There are 4 variants of the button component with different levels of importance and usages.

Primary Button

Use for basic and successful actions. They direct the user’s attention to the primary action the application is suggesting that the user take.

Do's

  • make sure the button‘s microcopy represents the action such as “Submit“ or “Register“
  • use an icon only when it is necessary
  • use to perform a new action, task, move to next step

Don'ts

  • don't assign an action that should be assigned for a CTA (Call To Action) or other variations of buttons
  • don't use an icon when it is not relevant or necessary to the action

When not to use

  • don't use for navigation
  • don't use for downloads
  • don't use when the primary action is negative - use secondary button
  • don't use when the action can't be undone, such as delete

Secondary Button

Use for medium-emphasis actions. They contain actions that are important but aren’t the primary action. They are used to indicate a secondary action that compliments a primary action or to reduce visual noise when there are many actions of equal importance on the page.

Do's

  • ensure the button performs an action, such as "Cancel", "Delete," "Remove" or "Replace" as the secondary action next to the primary button
  • use an icon only when it is necessary

Don'ts

  • don't use for primary positive actions – such as Submit, Send, Accept, Apply or navigation
  • don't use on its own
  • don't use for navigation
  • don't use an icon when it is not relevant or necessary to the action

Inverted Button

When to use

  • use inverted and inverted-green only on white or light color background
  • use inverted-dark only on dark background

Use for low-emphasis actions or for buttons that could have a long length text. It can be grouped with other buttons or placed independently.

When to use

  • use with low emphasis in a button group
  • use on pages/cards when the main focus should be the content and not the button
  • when there is a single action intended

When not to use

  • do not use for navigation purpose
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Callout/index.html b/docs/docs/webdev/Components/Callout/index.html index f6ef41fd6a..2e82c6b9e5 100644 --- a/docs/docs/webdev/Components/Callout/index.html +++ b/docs/docs/webdev/Components/Callout/index.html @@ -5,13 +5,13 @@ Callout | EEA Design System - +

Callout

The callout component is used to capture users' attention of an excerpt, testimonial, or a quote cited from the article or other sources. The design style makes the quoted section more distinguishable than the rest of the content in the web page.

Do's

  • always name the source of the quoted content
  • limit the quote to no longer than 80 characters
  • use the image variant to add a portrait of the quoted person

Don'ts

  • do not apply more than two callout components on the webpage
  • for the image variant, do not use a photoshopped composition of images

When to use

  • quoting something important

When not to use

  • to emphasize text style
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Cards/index.html b/docs/docs/webdev/Components/Cards/index.html index 95e3285f3e..7a0c1a5f77 100644 --- a/docs/docs/webdev/Components/Cards/index.html +++ b/docs/docs/webdev/Components/Cards/index.html @@ -5,14 +5,14 @@ Card | EEA Design System - +

Card

Cards component is used as an entry point to more detailed information. The component can include various sets of elements to serve users' specific needs.

Do's

  • use cards to emphasize on contents
  • only display the most relevant information on each card illustration: card with a thumbnail, title, description
  • keep the amount of links on the cards as low as possible

Don'ts

  • overuse cards
  • limit the amount of cards to small groups of items
  • limit to 3-4 cards within a row
  • display too many links on a cards, the main and ideally only action on card should remain to navigate to the content it represent

When to use

  • browsing for information (as opposed to searching)

  • grouping heterogeneous types of content

  • allowing users to scan through content in small portions

    • to display structured content
    • to make information discoverable
  • the user goals that the card-based web design best responds to:

    • scrolling through
    • scanning through
    • browsing through

When not to use

  • searching for information (as opposed to browsing)
  • on small screen display avoid using too many cards as they force users to scroll down and rely on their short-term memory. This creates a cognitive overload, a negative user experience
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Comment/index.html b/docs/docs/webdev/Components/Comment/index.html index 0f5b098a2f..6caf698ae0 100644 --- a/docs/docs/webdev/Components/Comment/index.html +++ b/docs/docs/webdev/Components/Comment/index.html @@ -5,13 +5,13 @@ Comment | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Confirm/index.html b/docs/docs/webdev/Components/Confirm/index.html index 9f51e670ad..fdffdecc8a 100644 --- a/docs/docs/webdev/Components/Confirm/index.html +++ b/docs/docs/webdev/Components/Confirm/index.html @@ -5,13 +5,13 @@ Confirm | EEA Design System - +

Confirm

A confirmation dialog asks users whether they are sure that they want to proceed with an action.

Do’s

  • use a confirmation dialog before actions that cannot be undone
  • be specific and inform users about the consequence of their actions.

Don’ts

  • do not use confirmation dialogs for routine actions
  • avoid giving confirmation dialogs a default Yes answer
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Content/index.html b/docs/docs/webdev/Components/Content/index.html index 77ac6f9489..409152046f 100644 --- a/docs/docs/webdev/Components/Content/index.html +++ b/docs/docs/webdev/Components/Content/index.html @@ -5,7 +5,7 @@ Content | EEA Design System - + @@ -18,7 +18,7 @@ Don’t indent paragraphs, use whitespace before. While most longform print design uses indented lines to distinguish paragraphs, it’s more conventional on the web to use unindented paragraphs separated by whitespace. Use at least 1em of whitespace between paragraphs. To properly separate paragraphs from one another, use the equivalent of one blank line of whitespace between them. Using more than 1.5em disturbs the flow of the text, and using less than 0.5em doesn’t provide enough separation. Headings should be closer to the text they introduce than the text that preceeds them. It’s important that headings are more visually connected to the text for which they’re the heading than the text of the previous section to reduce ambiguity and cognitive dissonance. Use at least 1.5 times the amount of whitespace above the heading as below it.

- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Divider/index.html b/docs/docs/webdev/Components/Divider/index.html index ce7112fe04..5b596da946 100644 --- a/docs/docs/webdev/Components/Divider/index.html +++ b/docs/docs/webdev/Components/Divider/index.html @@ -5,13 +5,13 @@ Divider | EEA Design System - +

Divider

Dividers are used throughout all types of design to establish content hierarchy and separate themes. Deceptively simple, they are one of the main contributors to our visual style.

Kinds of Visual Dividers

Talking about dividers, we can analyze them in two aspects: their appearance and their functions. Starting with the visual part, there are 4 basic and broadly used methods of dividing content in our user interfaces:

  • Lines

  • Color contrast

  • Negative space

  • Images

Lines have belonged to the top methods of separating the pieces of content since time immemorial, both in print production and in digital interfaces. They are recognized easily in this role, so users won’t need to think twice.

Don’ts

Too many lines can overload the screen with visual noise and create unnecessary visual tension. Use lines only if the content cannot be effectively divided in another way.

When to use

  • when whitespace is not enough of a separator

  • in lists, separate items to show they are individual and unrelated items when each item is long and otherwise difficult to scan

  • in layouts, when background color changes (e.g. from Gray 100 to White)

When not to use

  • for surrounding an item, use a border instead

  • for grouping content, use a card or table

Color Contrast is another effective type of visual divider. Contrast is one of the key factors influencing scannability and visual hierarchy of the page or screen. With all that, color contrast can effective separate different option, items, or interactive zones, that means work as a visual divider.

Negative space (aka white space) means empty space on the screen around and often inside the elements. Yet, empty does not mean passive or wasted: as well as any other element of the screen, it works supporting a positive user experience. Negative space is one of the most popular kinds of visual dividers, especially in interfaces built on the idea of minimalism and simplicity. Negative space turns into an effective and elegant visual divider that also let the interface to breathe and avoid clutter.

Images of all kinds present one more effective visual divider. In this role, they are especially popular in the interfaces with lots of text content pages. Photos, illustrations, 3D graphics, as well as animated images, help to balance the text content, increase scannability and readability levels, effectively divide the visual blocks, as well as add fun and emotional appeal.

- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Forms/Checkbox/index.html b/docs/docs/webdev/Components/Forms/Checkbox/index.html index 0114cb1e4f..0c010abf05 100644 --- a/docs/docs/webdev/Components/Forms/Checkbox/index.html +++ b/docs/docs/webdev/Components/Forms/Checkbox/index.html @@ -5,13 +5,13 @@ Checkbox | EEA Design System - +

Checkbox

The checkbox is a form input for users to choose one or more options from the list of selections.

Dos

  • always make sure each checkbox has a short, distinct and indicative checkbox label
  • use checkbox labels as click targets (clicking the label will select that option)
  • arrange them vertically, in a single column layout
  • group related fields
  • order logically
  • indicate whether the input group is optional or mandatory
  • make use of helper text if there are further directions or hints the users may need in completing their goal
  • write specific and clear error messages, so users understand how to properly address and recover from the error

Don'ts

  • don't add them without grouping first, in a logical order
  • don't restrict the number of checkboxes that can be ticked at any time
  • don't nest elements under the checkbox - keep all the options on the same level

When to use

  • use in any situation where the input information is known to the organisation
  • when users need to select options or toggle settings
  • in forms with multiple non-exclusive options
  • in search filters
  • to turn a setting option on or off

When not to use

  • do not use it when you have mutually exclusive items
  • do not use it if the checkbox selection will perform an action
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Forms/Dropdown/index.html b/docs/docs/webdev/Components/Forms/Dropdown/index.html index e93f4fde83..e2f190468e 100644 --- a/docs/docs/webdev/Components/Forms/Dropdown/index.html +++ b/docs/docs/webdev/Components/Forms/Dropdown/index.html @@ -5,13 +5,13 @@ Dropdown | EEA Design System - +

Dropdown

Default single select

The select component, is a widget which displays a list of selectable items from which the user can select one values.

Do's

  • write short, distinct and indicative headings for the items listed inside the dropdown
  • use dropdown select menu labels as click targets (clicking the label will trigger the action)
  • indicate whether the input is optional
  • make use of helper text if there are further directions or hints the users may need in completing their goal (example: you must be a current resident of this country)
  • write specific and clear error message texts, so users understand how to address the error

Don'ts

  • don't use as navigation
  • don't use it for multi-select

When to use

  • when there are more than 5 options to select from

When not to use

  • when you want users to read all options
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Forms/Radio/index.html b/docs/docs/webdev/Components/Forms/Radio/index.html index 36e7a6dcea..ecc0393c78 100644 --- a/docs/docs/webdev/Components/Forms/Radio/index.html +++ b/docs/docs/webdev/Components/Forms/Radio/index.html @@ -5,13 +5,13 @@ Radio | EEA Design System - +

Radio

Radio buttons provides a selection with two or more options. Only one option can be selected.

Do's

  • use labels as click targets (clicking the label will select that option)
  • group related fields
  • order logically (e.g. ages 18-25, ages 25-35, ages, 35-50, over 65)
  • indicate whether the input group is optional - if it's mandatory, have a neutral option (e.g. other, n/a) selected by default
  • make use of helper text if there are further directions or hints the users may need in completing their goal
  • write specific and clear error messages, so users understand how to address the error

Don'ts

  • don't add them without grouping first
  • don't nest elements under radio buttons - keep all the options on the same level

When to use

  • when you have under 10 items
  • when users need to select options or toggle settings, for example
  • in forms with multiple non-exclusive options (e.g. search filters)
  • only one selection can be made

When not to use

  • avoid when more than one option can be selected - use checkboxes instead
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Forms/TextArea/index.html b/docs/docs/webdev/Components/Forms/TextArea/index.html index 6b7a1f6dca..38b24980be 100644 --- a/docs/docs/webdev/Components/Forms/TextArea/index.html +++ b/docs/docs/webdev/Components/Forms/TextArea/index.html @@ -5,13 +5,13 @@ Text Area | EEA Design System - +

Text Area

A text area is an input field allowing users to enter multiple lines of text. Use in any situation where the user needs to input a large, or unknown, amount of data.

Do's

  • allow copy/paste for ease of use
  • match the text field to the expected size of the input - make it wide enough for the user to see their entire entry
  • write specific and clear error message texts, so users understand how to address the error

Don'ts

  • don't use placeholder text in the text field - this may not be read by screen reading software, leading to accessibility issues
  • don't have a mandatory minimum input of characters
  • don't restrict the use of uncommon or special characters
  • don't disable copy and paste functions
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Forms/TextInput/index.html b/docs/docs/webdev/Components/Forms/TextInput/index.html index 049a39f066..56ef88e4b5 100644 --- a/docs/docs/webdev/Components/Forms/TextInput/index.html +++ b/docs/docs/webdev/Components/Forms/TextInput/index.html @@ -5,13 +5,13 @@ Text Input | EEA Design System - +

Text Input

A text field is an input that can be used on a form, sign-in or any place where data is requested from the user.

Do's

  • minimise the number of input fields - only ask for necessary information
  • arrange them vertically for better layout and readability
  • group related fields together
  • order input fields logically, matching real-world task succession and interactions
  • always label each text area with a short, descriptive title, placed above the text area
  • indicate whether the input field is optional or mandatory
  • make use of helper text if there are further directions or hints the users may need in completing their goal (example: Must be at least 6 characters and contain a number and a special character)
  • allow copy/paste for ease of use
  • if a character counter is necessary, place it below the text area
  • match the text field area to the expected size of the input - make it wide enough for the user to see their entire entry
  • write specific and descriptive error message for easy comprehension

Don'ts

  • don't use placeholder text in the text area - this may not be read by screen reading software, leading to accessibility issues
  • don't have a mandatory minimum input of characters
  • don't restrict the use of uncommon or special characters
  • don't disable copyand paste functions

When to use

  • use in any situation where the user needs to input limited amount of data (name, email address, age, etc)

When not to use

  • do not use where the user needs to input a large, or unknown amount of data
  • do not use when the user must respond with specific options which are known to the organisation
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Headings/index.html b/docs/docs/webdev/Components/Headings/index.html index af37b5f627..d7bc336bf7 100644 --- a/docs/docs/webdev/Components/Headings/index.html +++ b/docs/docs/webdev/Components/Headings/index.html @@ -5,13 +5,13 @@ Headings | EEA Design System - +

Headings

Effective headings are recognizable immediately, and help readers understand the flow of content on the page.

How to Use

  • employ visual contrast to make headings stand out. Headings need to appear separate from the rest of the content on the page
  • size matters: Headings should be big
  • use headings as titles. If we’re labeling a section of a website, the heading serves as the title for the section
  • be concise. Keep headings short. In some cases, it’s even okay to drop articles like “the” and “a,” as they can be assumed
  • not all headings should be bold
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Image/index.html b/docs/docs/webdev/Components/Image/index.html index 4dd0c056dc..56b3fcdb3c 100644 --- a/docs/docs/webdev/Components/Image/index.html +++ b/docs/docs/webdev/Components/Image/index.html @@ -5,13 +5,13 @@ Image | EEA Design System - +

Image

Images must have natural snapshots that show unique situations.

Do’s

  • use stylistic tools such as light, perspective, color, focus and composition to tell stories that are authentic and believable.
  • the content of the photographs should be positive, optimistic, natural, realistic, warm, and welcoming. Framing should be playful and feel spontaneous
  • use image copyrights to be respectful of the author’s ownership rights

Don’ts

  • do not use images that are too dark or do not have enough contrast
  • do not use overlaying gradients
  • images that are too static or that appear too symmetrical should not be used
  • do not use images that are over exposed or over saturated
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Inpage-Navigation/index.html b/docs/docs/webdev/Components/Inpage-Navigation/index.html index 48087a2a7f..fb0b6087a4 100644 --- a/docs/docs/webdev/Components/Inpage-Navigation/index.html +++ b/docs/docs/webdev/Components/Inpage-Navigation/index.html @@ -5,13 +5,13 @@ Inpage Navigation | EEA Design System - +

Inpage Navigation

A Back to Top button, which is a shortcut that allows users to quickly navigate to the top of the page.

When users get at the bottom of a really long page, they often will need to get back to the top to:

  • see the navigation menu and choose a new destination
  • access filtering and sorting features
  • enter or edit a query in the search box

When the page is really long (for example, because of infinite scrolling), it becomes too tedious to scroll back up through screens and screens of content. Hence the role of the Back to Top button.

Do's

  • use a 'Back to Top button' for pages that are longer than 4 screens. For relatively short page lengths, 'Back to Top links' are overkill
  • place a persistent 'Back to Top button' in the lower right side of the page. This is where people expect to see it. This position is out of the way, but noticeable. When the button is placed in a different place on the screen, it is often ignored
  • label the button 'Back to Top'. This phrase is most descriptive. An icon only (.e.g., an arrow pointing up) can be ambiguous and, depending on the graphical realization, may not convey the right meaning
  • keep the button small so it doesn’t cover important page elements. But, if you are on a touch screen, make it big enough so people can tap it
  • make the button stand out visually on the page rather than blend in. When Back to Top blends too much with the background content, users are less likely to notice and use it
  • consider delaying the appearance of a 'Back to Top' option until after users scroll a few pages and indicate that they want to scroll up (e.g., move the scroll bar up, flick up on the page). Thus, the button appears only when it is most likely needed, without covering up important parts of the screen the rest of the time
  • make the button stationary. Once it appears, don’t allow it to move. Moving elements cause major distractions, since the eye is automatically attracted to any movement on the screen
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Item/index.html b/docs/docs/webdev/Components/Item/index.html index b566b4efda..acd0ac57ad 100644 --- a/docs/docs/webdev/Components/Item/index.html +++ b/docs/docs/webdev/Components/Item/index.html @@ -5,13 +5,13 @@ Item | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Labeled-icons/index.html b/docs/docs/webdev/Components/Labeled-icons/index.html index 2eaf37298a..11c1f6bad5 100644 --- a/docs/docs/webdev/Components/Labeled-icons/index.html +++ b/docs/docs/webdev/Components/Labeled-icons/index.html @@ -5,13 +5,13 @@ Labeled icons | EEA Design System - +

Labeled icons

The labeled icons are used as a visual represenation of every available action below data products.

Do's

  • keep the labels as short as possible
  • always choose icons that the users can easily identify

Don'ts

  • don't use more than 5-6 labeled icons at once
  • dont use less than two in one row
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Labels/index.html b/docs/docs/webdev/Components/Labels/index.html index 165bbf28a2..6872eca77d 100644 --- a/docs/docs/webdev/Components/Labels/index.html +++ b/docs/docs/webdev/Components/Labels/index.html @@ -5,13 +5,13 @@ Label | EEA Design System - +

Label

Labels are used to indicate the different states for items in a list. They bring supplementary meaning by adding an indicative state (label) that is visually distinct (background colour) from other elements.

Do's

  • keep the message consistent on a single list of items and express meaning based on the content in which it is being used (e.g. "canceled" for events)
  • keep the label succinct (1-2 words)

Don'ts

  • don't use 2 labels at the same time (in one list)

When to use

  • when you have items in a list with multiple states (e.g. featured item & generic list item; canceled, rescheduled & upcoming event)

When not to use

  • when all items in a list have the same state (e.g. search list items)
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Lists/index.html b/docs/docs/webdev/Components/Lists/index.html index baa4191920..9b0a1e7959 100644 --- a/docs/docs/webdev/Components/Lists/index.html +++ b/docs/docs/webdev/Components/Lists/index.html @@ -5,13 +5,13 @@ List | EEA Design System - +

List

Used to present chunks of information in a concise and scannable way, lists help to organise content related to a single topic, grouping together a set of items or text options.

Ordered lists

Ordered lists display a set of items in a sequential and logical order, indicated by a number in front of the label. Common use cases include counting, ranking or sequencing, but can be used in everything that has a hierarchy. Different list styles can be applied to list items, like numbers, roman numerals or letters, which can be used interchangeably when nesting (e.g. nested item 1 & 2 under item 3).

Do's

  • make sure the items are placed in hierarchical order so that the relation, rank or order is obvious to the user
  • indicate the external links, if linking to any pages external to the EEA
  • for easy to read purpose, try to use labels that are relatively consistent in characters & width

Don'ts

  • do not nest lists deeper than 3 levels

When to use

  • use ordered lists when you need to display items in a specific order or to indicate hierarchy

When not to use

  • do not use it for navigation purpose
  • do not use it when all items have equal value or importance
  • do not use when you have one or more overarching categories that require descriptions

Unordered list

Unordered lists are used to group related content without any particular order, with bullet points placed in front of the labels. Common use cases are much broader than ordered lists. They are used for a set of items that can be arranged in any specific order. Different bullet list styles are available to unordered list items, such as disc, circle, square or hyphen when nesting (eg. 2 sub-points under point 2).

Do's

  • indicate the external links, if linking to any pages external to the EEA
  • for easy to read purpose, try to use labels that are relatively consistent in characters & width

Don'ts

  • do not nest lists deeper than 3 levels in order to avoid clutters

When to use

  • use it when you need to display items that do not have a specific order or hierarchy

When not to use

  • do not use it for navigation purpose
  • do not use it when items can be ranked, counted or sequenced
  • do not use when you have one or more overarching categories or terms require descriptions

Description lists

Description lists are used to display and organise content with a descriptions. Common use cases include glossary, or a list of speakers with their biographies.

Do's

  • keep label short and meaningful
  • order logically according to their hierarchy, significance and degree of relatedness
  • avoid using long sentences
  • try to use labels that are relatively consistent in characters & width
  • add a meaningful description or explanation of each term

Don'ts

  • do not use an active voice
  • do not nest description lists

When to use

  • use a description list when the terms in the list require a specific description or explanation
  • on content pages to add additional information(such as latest update on the content of a page) or link to pages of interest

When not to use

  • do not use it for navigation purpose
  • do not use it when items can be ranked, counted or sequenced
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Loader/index.html b/docs/docs/webdev/Components/Loader/index.html index c19b9cac42..c1e18480d3 100644 --- a/docs/docs/webdev/Components/Loader/index.html +++ b/docs/docs/webdev/Components/Loader/index.html @@ -5,13 +5,13 @@ Loader | EEA Design System - +

Loader

Loaders can be used to indicate progress on long actions/waits which meet some or preferably all of these characteristics:

  • the action/wait is blocking user flow. That is, it's difficult or impossible for the user to proceed with the flow she is on without waiting.

    • e.g. The user asked a question and the answer is being retrieved from a server

    • e.g. The user scrolled to the bottom of page feed and new content is being loaded

  • the action is long enough that a user may feel anxious if there is no indication of progress. For short actions or waits having a short-lived throbber is not a great idea because it can confuse users

  • it's difficult or impossible to indicate exact progress. If it's possible to indicate progress (eg percentage complete) then progress bars or widgets are more appropriately communicative and less likely to frustrate users

Dont ‘s

Do not use it for actions that take less than 1 sec.

- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Logo/index.html b/docs/docs/webdev/Components/Logo/index.html index 9eb945b988..cfbc8c23f1 100644 --- a/docs/docs/webdev/Components/Logo/index.html +++ b/docs/docs/webdev/Components/Logo/index.html @@ -5,13 +5,13 @@ Logo | EEA Design System - +

Logo

To ensure consistency, it is important that the EEA logo appears only in the colours specified in these guidelines.

When applying the logo to images ensure that it is against a light, uncluttered background.

To ensure logo's integrity and visibility, it must always be kept clear of competing text, images or graphic elements. It must be surrounded by a minimum clear space οf 16px as indicated below.

EEA LOGO - Dark version

The only time the white version of the EEA logo appears on is against the dark background of the footer.

- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Messages/index.html b/docs/docs/webdev/Components/Messages/index.html index c716299ffc..a712fc5a63 100644 --- a/docs/docs/webdev/Components/Messages/index.html +++ b/docs/docs/webdev/Components/Messages/index.html @@ -5,13 +5,13 @@ Messages | EEA Design System - +

Messages

Messages component contains important information to alert users to take a certain actions.

Do's

  • keep the message brief and clear
  • use consistent messages for the same information/success/warning/error throughout your site

Don'ts

  • overuse messages - users may ignore them and they can get in the way of a user completing their task
  • write messages that are neutral. For example, instead of The postal code you entered is invalid, the message should say Please enter a valid postal code

When to use

  • when the information is essential to convey to the users in order to go to the next step
  • success message: the user has performed an action which was successfully completed
  • warning message: the user needs to know about the potential dangers of completing their task (for example: "you are about replace/erase your data")
  • error message: the user tried to perform an action that failed because of a problem (for example: a file could not be uploaded because it wasn't the correct type of file)

When not to use

  • don't use to show non critical information
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Modal/index.html b/docs/docs/webdev/Components/Modal/index.html index 3f405b8023..ac99621068 100644 --- a/docs/docs/webdev/Components/Modal/index.html +++ b/docs/docs/webdev/Components/Modal/index.html @@ -5,13 +5,13 @@ Modal | EEA Design System - +

Modal

Modals appear on top of the main content and require user interaction. This dialog disables the main content until the user explicitly interacts with the modal dialog.

Do’s

  • use modal dialogs for important warnings, to prevent or correct critical errors
  • use modal dialogs to request the user to enter information critical to continuing the current process
  • modal dialogs can be used to fragment a complex workflow into simpler steps

Don’ts

  • do not use modal dialogs for nonessential information that is not related to the current user flow
  • avoid modal dialogs that interrupt high-stake processes
  • avoid modal dialogues for complex decision making that require additional sources of information unavailable in the modal
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Pagination/index.html b/docs/docs/webdev/Components/Pagination/index.html index 12ba9f06eb..d067b29a93 100644 --- a/docs/docs/webdev/Components/Pagination/index.html +++ b/docs/docs/webdev/Components/Pagination/index.html @@ -5,13 +5,13 @@ Pagination | EEA Design System - +

Pagination

Pagination component is the control to navigate through multiple pages.

Do's

  • place the pagination below the list of items

Don'ts

  • don't replace this component with an "infinite scrolling" feature

When to use

  • to show long lists otherwise redundant scrolling in one page

When not to use

  • don't use to break unrelated content on different pages
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Popup/index.html b/docs/docs/webdev/Components/Popup/index.html index 331bbf2509..f9e6c63b7b 100644 --- a/docs/docs/webdev/Components/Popup/index.html +++ b/docs/docs/webdev/Components/Popup/index.html @@ -5,14 +5,14 @@ Popup | EEA Design System - +

Popup

A popup (also known as an overlay) is a window or dialog that appears on top of the page content. A popup can be classified according to two dimensions:

  • whether the user can interact with the rest of the page, and it is called 'Modal' when the content on the page is disabled until the user explicitly interacts with the overlay or 'Nonmodal' when users can still interact with the background content (for example, by selecting links or tapping buttons) while the overlay remains visible
  • whether the background is dimmed the popup is called a 'Lightbox'

Do’s

  • present the content in the popup when it’s contextually relevant to the user
  • if you must present critical information (e.g., important warnings to prevent or correct errors) in a popup, be sure to show only one at a time

Don’ts

  • do not show a popup before the main page content loads
  • do not display a popup right after the user logs in
  • you should not ask for feedback before people have done anything meaningful
  • do not show multiple popups one after another
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Progress/index.html b/docs/docs/webdev/Components/Progress/index.html index 32e498e5a7..39e5e9c4d2 100644 --- a/docs/docs/webdev/Components/Progress/index.html +++ b/docs/docs/webdev/Components/Progress/index.html @@ -5,13 +5,13 @@ Progress | EEA Design System - +

Progress

Progress indicators tell users that more time is needed to process the last user action (for instance, to load a file, or to install a new update), and how much time remains.

Do’s

  • use a progress indicator for any action that takes longer than about 1.0 second
  • use Looped animation only for fast actions. The animated-spinner icon is an example of this common progress indicator. This indicator should be used for actions that take between 2-10 seconds
  • percent-done animation: Use for actions that take 10 seconds or more.

Don’ts

  • do not use static progress indicators
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Quote/Quote/index.html b/docs/docs/webdev/Components/Quote/Quote/index.html index 30d58c2261..3e1a5e1d8e 100644 --- a/docs/docs/webdev/Components/Quote/Quote/index.html +++ b/docs/docs/webdev/Components/Quote/Quote/index.html @@ -5,13 +5,13 @@ Quote | EEA Design System - +

Quote

Quote is a key phrase, quotation, or excerpt that has been pulled from an article and used as a page layout graphic element, serving to entice readers into the article or to highlight a key topic.

Dont's

  • Do not use more than one quote per page
  • Do not use long text or job title
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Quote/Testimonial/index.html b/docs/docs/webdev/Components/Quote/Testimonial/index.html index 7b6df3a004..019cabf63f 100644 --- a/docs/docs/webdev/Components/Quote/Testimonial/index.html +++ b/docs/docs/webdev/Components/Quote/Testimonial/index.html @@ -5,13 +5,13 @@ Testimonial | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Search/Filters/index.html b/docs/docs/webdev/Components/Search/Filters/index.html index 1b50fbf82f..542f19742c 100644 --- a/docs/docs/webdev/Components/Search/Filters/index.html +++ b/docs/docs/webdev/Components/Search/Filters/index.html @@ -5,13 +5,13 @@ Filters | EEA Design System - +

Filters

The filter options must cover the most important aspects of whatever users will be filtering, based on relevance to users’ needs.

To design a filter that serves our users, we need to answer the following questions:

  • which characteristics are most influential to users in making their choice?

  • what words do users use to describe these characteristics?

  • do users understand our labels, or do they look like jargon to them?

  • which filter values are the most popular or most used?

    How to use Search filters

  • make sure users can find the search filters:

    • on desktop, users tend to find and use them easily when they are placed to the top and top left area of the page
    • on mobile where usually they are behind a button or drawer Keep them at the top and don’t rely on just an icon. Remove any ambiguity by adding a label to the icon or removing the icon altogether and just have text
  • ensure the options are relevant to users. When it comes to filters, matching the user’s mental model of how they would choose something in the physical world, is important in helping them choose something on a website

  • clearly display the selections to users. Feedback is an important heuristic for the usability of a website. So, once users have found the filters, understood the options they have, and made their selections – it’s important to let them know their choices have been applied to the list of products

  • allow a combination of filters. A big part of filters’ effectiveness will come down to using a number of them at the same time, letting the filters interact to produce the best results

  • live filtering updates. Live update for filtering UIs is great because the user gets to immediately see the changed results they are getting

  • include a ‘Clear all’ interaction. Let the users clear all applied filters with one click to action

  • show the number of results. Another key element in communicating feedback is to display the number of results. This provides users with feedback as to how effective their input was to reduce the result list and save time

  • make Important filters easily found. Users often do not reach useful filters because they are hidden at the bottom of a long menu. Filters at the top of the menu are the most used ones

Don’ts

Do not use live filtering updates

  • on mobile devices. Their screens are simply too small to pack the results, filters, and the live update feedback, without a visual overload

  • when handling a lot of data. For users doing a lot of research, having to wait for the results to update after each individual filter would be simply unbearable

In this case let the user batch their filters and click on an apply button before any actual updating takes place.

- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Search/Searchbox/index.html b/docs/docs/webdev/Components/Search/Searchbox/index.html index 1691c20dfd..b8245094e7 100644 --- a/docs/docs/webdev/Components/Search/Searchbox/index.html +++ b/docs/docs/webdev/Components/Search/Searchbox/index.html @@ -5,13 +5,13 @@ Searchbox | EEA Design System - +

Searchbox

Search lets users assert independence from websites' attempt to direct how they use it. Therefore, many users go straight to the homepage search function.

Search is also users' escape hatch when they are stuck in navigation. When they cannot find a reasonable place to go next, they often turn to the site's search function. This is why you should make search available from every page on the site; you cannot predict where users will be when they decide they are lost.

Do's

  • use placeholder text. Placeholder text provides context as to what can be searched and describes the action of the input

  • use a magnifying glass icon. The magnifying glass is universally recognized as a symbol for search and one which users can easily identify

  • provide a button to submit search queries. Inputs should be accessible. Ensure users can return results using their keyboard as well as clicking a button or the magnifying glass icon

  • consider the search icon position. In most cases, it is beneficial to place the Icon to the right of placeholder text. This allows the Icon to act as the submit button and makes more sense hierarchically as queries are entered first, and results returned after

  • use input widths which are appropriate for the typical query length. The width of the Input field should be wide enough to contain the typical search query. If an Input field is too narrow, it results in scrolling and decreases usability. It is recommended to use a minimum width of 27 characters

- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Search/Suggestions/index.html b/docs/docs/webdev/Components/Search/Suggestions/index.html index 6c2abefbd2..99640930bb 100644 --- a/docs/docs/webdev/Components/Search/Suggestions/index.html +++ b/docs/docs/webdev/Components/Search/Suggestions/index.html @@ -5,13 +5,13 @@ Suggestions | EEA Design System - +

Suggestions

Auto-suggestion is a powerful tool that reduces data input. Typical users are very poor at query formulation: if they don’t get good results on the first try, later search attempts rarely succeed. When autocomplete suggestions work well, they help the user articulate better search queries.

Usage

  • ensure that auto-suggestions are useful. Poorly designed auto-suggestions can confuse and distract users. Thus, use spelling auto-corrections, recognition of root words, and predictive text in order to improve the tool

  • present less than 10 items in the list of suggestions (and without a scrollbar) so the information doesn’t become overwhelming

  • allow for keyboard navigation for the list of suggestions. Once a user scrolls down past the last item, they should return to the top of the list. The Esc key should allow users to exit the list

  • highlight differences between the inputted information and suggested information. For example, the input text might have a standard weight, while suggested terms are bolded

- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Segment/index.html b/docs/docs/webdev/Components/Segment/index.html index 867a4ddadf..2325c5d459 100644 --- a/docs/docs/webdev/Components/Segment/index.html +++ b/docs/docs/webdev/Components/Segment/index.html @@ -5,13 +5,13 @@ Segment | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Statistic/index.html b/docs/docs/webdev/Components/Statistic/index.html index f999ce841e..449300eaa3 100644 --- a/docs/docs/webdev/Components/Statistic/index.html +++ b/docs/docs/webdev/Components/Statistic/index.html @@ -5,13 +5,13 @@ Statistic | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Tab/index.html b/docs/docs/webdev/Components/Tab/index.html index 25ece6dc1b..ea7703e079 100644 --- a/docs/docs/webdev/Components/Tab/index.html +++ b/docs/docs/webdev/Components/Tab/index.html @@ -5,14 +5,14 @@ Tab | EEA Design System - +

Tab

The tabs component lets users navigate between related sections of content, displaying one section at a time.

Do’s

Tabs can be useful for users to quickly switch between related information if:

  • your content can be usefully separated into sections
  • the first section is more relevant than the others for most users
  • users will not need to view all the sections at once

Don’ts

Tabs hide content from users and not everyone will notice them or understand how they work. Do not use tabs if your users might need to:

  • read all the content in order, for example, to understand a step-by-step process
  • compare information in different tabs

Having to memorize information and switch between tabs can be frustrating. Test your content without tabs first.

Consider if it is better to:

  • simplify and reduce the amount of content
  • split the content across multiple pages
  • keep the content on a single page, separated by headings
  • use a table of contents to let users navigate quickly to specific sections of content

Tab labels

  • use short tab labels to appear in a single row. In exceptions, they can use a second line if needed, with a tab max width of 250px. Alternatively, you can use scrollable tabs to allow room for longer titles
  • don’t truncate labels unless required, as truncated text can impede comprehension
  • tab labels should consist of 1 – 2 words: Labels on tabs should clearly describe their function or destination within 2 words at most. Constraining yourself to 1 – 2 words will also help you in thinking more about selecting the best words for your tab labels.
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Table/index.html b/docs/docs/webdev/Components/Table/index.html index 5ddb0ce9e1..6702655545 100644 --- a/docs/docs/webdev/Components/Table/index.html +++ b/docs/docs/webdev/Components/Table/index.html @@ -5,13 +5,13 @@ Table | EEA Design System - +

Table

Tables are used to structure complex data in an organised way that is more user friendly and discoverable.

Do's

  • reduce the table width to fit the content
  • align content left to right within cells
  • use a dash ( - ) in null data cells
  • adjusts the styling to render a small/large table

Don'ts

  • don't spell out numbers
  • don't use colour alone to convey information

When to use

  • use when you want to show structured information, or static data
  • use when you want to help users to compare information

When not to use

  • when you don't have any relationship among content you want to present
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Tags/index.html b/docs/docs/webdev/Components/Tags/index.html index 1aeb9d08d9..6a853a5d5d 100644 --- a/docs/docs/webdev/Components/Tags/index.html +++ b/docs/docs/webdev/Components/Tags/index.html @@ -5,13 +5,13 @@ Tags | EEA Design System - +

Tags

Labels, Tags, or Badges are all types of classification component that help to categorize, organize, and label elements. Tags are used to call attention to new or updated content.

Do's

  • use them to draw attention to new, important content. Tags can focus attention on important content on that might otherwise be missed
  • when needed to filter results with one or more tags
  • to indicate the number of new or unread items within a container. For example, to indicate the number of unread emails within a person’s inbox

Don'ts

  • if your tags aren’t interactive, disable hover, focus, and active styles
  • don’t mix interactive and static tags
  • don’t overdo it. If everything on a page is called out as important, nothing commands unique attention.
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Timeline/index.html b/docs/docs/webdev/Components/Timeline/index.html index b49bafca97..3798ba6a4b 100644 --- a/docs/docs/webdev/Components/Timeline/index.html +++ b/docs/docs/webdev/Components/Timeline/index.html @@ -5,13 +5,13 @@ Timeline | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Visuals/Charts/index.html b/docs/docs/webdev/Components/Visuals/Charts/index.html index 9e1083ea9e..ab408ac656 100644 --- a/docs/docs/webdev/Components/Visuals/Charts/index.html +++ b/docs/docs/webdev/Components/Visuals/Charts/index.html @@ -5,13 +5,13 @@ Charts | EEA Design System - +

Charts

Static and Interactive

Data accuracy and integrity come first. Don’t distort or confuse the information for embellishment or partiality. Emphasize clarity and transparency. Reduce cognitive load and focus on what matters. Every action, color, and visual element should support data insights and understanding.

More information can be referenced here https://www.eea.europa.eu/data-and-maps/daviz/learn-more/chart-dos-and-donts

Use the interactive chart if:

  • you want to give the user the possibility to visually filter data

  • you want the user to gain insights before filtering large datasets

Do not use the interactive chart if:

  • you want to visualize data without using it for filtering

  • you are not using the visual filter bar

- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Visuals/Dashboard/index.html b/docs/docs/webdev/Components/Visuals/Dashboard/index.html index 939a4bbc38..887a54a854 100644 --- a/docs/docs/webdev/Components/Visuals/Dashboard/index.html +++ b/docs/docs/webdev/Components/Visuals/Dashboard/index.html @@ -5,13 +5,13 @@ Dashboard | EEA Design System - +

Dashboard

A good dashboard design means:

  • information available at the fingertip
  • metrics are clear
  • intuitive design
  • customizable
  • summarized data

Do’s

  • reside on a single screen
  • support the aims and objectives of the intended user
  • show what the underlying data means:  This can be done through adequate labelling, logical grouping of related visualisations and the use of clear statistical and verbal descriptions
  • summarise data and provide a means to dig deeper into the data 
  • make optimal use of the available space: Double your margins

Don’ts

  • don’t hide information or rely on interactions too much
  • don’t flood the user with data
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Visuals/Maps/index.html b/docs/docs/webdev/Components/Visuals/Maps/index.html index 8840873d66..8381b276e7 100644 --- a/docs/docs/webdev/Components/Visuals/Maps/index.html +++ b/docs/docs/webdev/Components/Visuals/Maps/index.html @@ -5,13 +5,13 @@ Maps | EEA Design System - +

Maps

Static

There are five main design principles in map design.

  • legibility
  • visual contrast
  • figure-ground organization
  • hierarchical organization, and
  • balance

Together these principles form a system for seeing and understanding the relative importance of the content in the map and on the page.

What are the qualities of a good map?

  • clear idea of what the map is trying to demonstrate
  • easy to interpret legend or key
  • good use of symbols to demonstrate a clear point
  • good sources/metadata
  • clear features not overcrowded

Styles

  • do not use underlined text! This is difficult for low-vision users to read and indicates a possible hyperlink
  • italics should be used as little as possible, for water labels and short labels only
  • bolding of fonts is a good way to call out features, but avoid it for continuous, readable text
  • although ALL CAPS labels stand out, they are harder to read and should be used sparingly

Map Objects

  • avoid overlapping points or annotations, when possible. Try to place them offset from a line
  • there should be visible whitespace between symbols; touching symbols blend together for users with low vision
  • there should be a 2x size difference in levels of information

Colors

  • use a limited color palette. Limited color palette works the best for all UIs, and map UI is not an exception. It’s much easier to create visual harmony with a limited color palette. You should use between 10 to 12 colors for a full-body color palette, depending on the complexity of your map. Choose colors for individuals with visual impairments such as color-blindness (i.e. don’t use red-green color schemes)
  • try to use the same hue for similar features. For example, features related to transportation (bus stops, railway stations, etc.) should share the same hue. The same hue will help users to decode visual elements without reading text, and this will help you to create a more cohesive UI.
  • always consider accessibility. Many people have limited color vision, so you also need to take this into account when selecting colors to ensure that you have a proper contrast ratio

Text

  • choose fonts that have a variety of styles, such as bold, extra bold, italic, bold italic light, etc to differentiate between different kinds of features on your map
  • use one version of fonts for the map body and one for the explainer text outside the map

Interactive Maps

Interactive maps are high risk, high reward. Highly interactive maps can be too difficult for new users, yet they can also allow users to learn and explore at their own pace. It is always important to test designs on multiple people with varying degrees of technical expertise to see how they interact differently with the layout. Interactive map design should reflect what the cartographer is trying to convey (beauty vs. function) and never sacrifice visual hierarchy or great styling for interactivity.

Tips for designing effective interactive maps:

  • simplify the interface
  • panels should be the minimum possible size so they don’t clutter the space
  • don’t innovate to the point where users don’t know what to do
  • use panel opacity and margins to help them blend with your basemap and look cohesive
  • leave space for the maps to be used on mobile devices. This means avoiding permanent panels

Pop-ups and markers

  • keep pop-ups concise
  • only one pop-up on the screen at a time (generally)
  • cluster markers for better readability
  • use a legend when you have multiple types of markers
  • remove unnecessary padding and margins from popups
  • use a slight shadow to “lift” pop-ups off the map
- + \ No newline at end of file diff --git a/docs/docs/webdev/Guidelines/colours/index.html b/docs/docs/webdev/Guidelines/colours/index.html index 0fb129bb5a..87adf73903 100644 --- a/docs/docs/webdev/Guidelines/colours/index.html +++ b/docs/docs/webdev/Guidelines/colours/index.html @@ -5,14 +5,14 @@ Colours | EEA Design System - +

Colours

Communication is key

Although we value an aesthetically pleasing use of colour, clear communication is our focus. We use colours to support the purpose of the content, communicating things like hierarchy of information, interactive states, and the difference between distinct elements.

Accessibility

Accessibility is crucial and AA colour contrast must be achieved. It is up to the designer to ensure these standards are met but please refer to the accessibility guide for support. The colour system is designed to generate themes that meet WCAG 2.1 compliant contrast ratios. This makes things easier to find, identify, and interact with. It also makes the whole experience more accessible for visitors who are colour blind or who have low vision. However, you should never convey information using colour alone.

Legend:
AA: Compatible with WCAG AA requirements
AAA: Compatible with WCAG AAA requirements
AA L: Compatible with WCAG AA requirements only for Large text (WCAG defines large text as text that is 18pt and larger, or 14pt and larger if it is bold.)

You can find more on WCAG requirements here

Brand Colours

This colour should be eye-catching but not harsh. It can be liberally applied to your layout as its main identity. A primary colour is the colour displayed most frequently across your screens and components. Brand colours are extracted from the EEA logo in order to help users to easily identify the brand.

#007B6C
EEA GREEN
#004B7F
EEA BLUE

Shades

#C8FFF8
#A0E5DC
#78CAC0
#50B0A4
#289588
#007B6C
#005248

#A0D7FF
#47B3FF
#0A99FF
#0083E0
#006BB8
#004B7F
#003052

Supplementary colours

These colours highlight or complement the primary colours. These are to be used sparingly to make the UI elements stand out. These colours can be used together together or separately.

#3D5265
AAA
#F9F9F9
AAA
ΕΕΑ main background colour is white but the secondary colours can also be used as background to compliment text elements or components.

You can use #F9F9F9 as background with #3D5265 text (10.44:1 AAA) or, you can use #3D5265 background with #F9F9F9 text (10.44:1 AAA)

Shades

#DAE8F4
#ACCAE5
#87A7C3
#6989A5
#4C677F
#3D5265
#2E3E4C

#FFFFFF
#F9F9F9
#E6E7E8
#BCBEC0
#747678
#323232
#000000

Core colours

#3D5265
Text colour
#FFFFFF
Background colour
#007B6C
Highlight
(EEA Green)
#006BB8
Default
#004B7F
Hover
#753AAD
Visited
#003052
Active

Discrete colours

#3D5265
Usually used with a small text style
#323232
Used with a background

State colours

These are the colours that communicate purpose. They help users convey messages. For example, Green has a positive connotation. We use Green to convey success, confirmation messages, etc.

#B83230
ERROR
#FF9933
WARNING
#007B6C
SUCCESS
#004B7F
INFO









Thematic Platforms

info

All thematic platforms use EEA Supplementary colours, state colours, link colours and discrete colours.


Biodiversity

Brand Colours

This colour should be eye-catching but not harsh. It can be liberally applied to your layout as its main identity. A primary colour is the colour displayed most frequently across your screens and components. Brand colours are extracted from the Biodiversity logo in order to help users to easily identify the brand.

#289588
#FAC50D

Shades

#C8FFF8
#A0E5DC
#78CAC0
#50B0A4
#289588
#007B6C
#005248

#FEF6CD
#FBEC9B
#FAD936
#FAC50D
#FDAF20
#FF9933
#C35527

Core colours

#3D5265
Text colour
#FFFFFF
Background colour
#005248
Elements
#289588
Highlight










Forest Information System

Brand Colours

This colour should be eye-catching but not harsh. It can be liberally applied to your layout as its main identity. A primary colour is the colour displayed most frequently across your screens and components. Brand colours are extracted from the Forest information system logo in order to help users to easily identify the brand.

#007B6C
#005248

Shades

#C8FFF8
#A0E5DC
#78CAC0
#50B0A4
#289588
#007B6C
#005248

Core colours

#3D5265
Text colour
#FFFFFF
Background colour
#005248
Elements
#007B6C
Highlight










Wise Freshwater

Brand Colours

This colour should be eye-catching but not harsh. It can be liberally applied to your layout as its main identity. A primary colour is the colour displayed most frequently across your screens and components. Brand colours are extracted from the Wise Freshwater logo in order to help users to easily identify the brand.

#0083E0
#004B7F

Shades

#A0D7FF
#47B3FF
#0A99FF
#0083E0
#006BB8
#004B7F
#003052

Core colours

#3D5265
Text colour
#FFFFFF
Background colour
#0083E0
Elements
#004B7F
Highlight










Wise Marine

Brand Colours

This colour should be eye-catching but not harsh. It can be liberally applied to your layout as its main identity. A primary colour is the colour displayed most frequently across your screens and components. Brand colours are extracted from the Wise Marine logo in order to help users to easily identify the brand.

#004B7F
#0083E0

Shades

#A0D7FF
#47B3FF
#0A99FF
#0083E0
#006BB8
#004B7F
#003052

Core colours

#3D5265
Text colour
#FFFFFF
Background colour
#0083E0
Elements
#004B7F
Highlight









EEA complete colour palette

Not all colours have to be used - sometimes a simple colour scheme works best. Accessible text and background colour combinations are included and marked with their accesibility level.

#FFF6EC
brown-0
#FFEDD8
brown-1
#E7BC91
brown-2
#BC8A5F
brown-3
#8B5E34
brown-4
#603808
brown-5
#3D2201
brown-6

#EFEBF2
purple-0
#DFD6E7
purple-1
#BEADCE
purple-2
#9E84B6
purple-3
#753AAD
purple-4
#5C3285
purple-5
#3C096C
purple-6
#FBEEF8
red-0
#F6DDF0
red-1
#E7B2C0
red-2
#D78890
red-3
#C65B59
red-4
#B83230
red-5
#5C1918
red-6

#FEF6CD
yellow-0
#FBEC9B
yellow-1
#FAD936
yellow-2
#FAC50D
yellow-3
#FDAF20
yellow-4
#FF9933
yellow-5
#C35527
yellow-6
#C8FFF8
green-0
#A0E5DC
green-1
#78CAC0
green-2
#50B0A4
green-3
#289588
green-4
#007B6C
green-5
#005248
green-6

#A0D7FF
blue-0
#47B3FF
blue-1
#0A99FF
blue-2
#0083E0
blue-3
#006BB8
blue-4
#004B7F
blue-5
#003052
blue-6
#DAE8F4
blue-grey-0
#ACCAE5
blue-grey-1
#87A7C3
blue-grey-2
#6989A5
blue-grey-3
#4C677F
blue-grey-4
#3D5265
blue-grey-5
#2E3E4C
blue-grey-6

#FFFFFF
grey-0
#F9F9F9
grey-1
#E6E7E8
grey-2
#BCBEC0
grey-3
#747678
grey-4
#323232
grey-5
#000000
grey-6

Tools for creating colour palettes

You can use the following tools for creating colour wheels and additional shades for every main colour at each of EEA's network sites.

https://color.adobe.com/create/color-wheel

https://coolors.co/

Colours for maps

For optional creation of additional colour shades to use in maps and charts you can use the following tools.

https://colorbrewer2.org

https://carto.com/carto-colors/

- + \ No newline at end of file diff --git a/docs/docs/webdev/Guidelines/iconography/index.html b/docs/docs/webdev/Guidelines/iconography/index.html index b923b3a9bc..042f409ccd 100644 --- a/docs/docs/webdev/Guidelines/iconography/index.html +++ b/docs/docs/webdev/Guidelines/iconography/index.html @@ -5,14 +5,14 @@ Iconography | EEA Design System - +

Iconography

In our websites we use the Remix icon set

Remix Icon is a set of open-source neutral-style system symbols elaborately crafted for designers and developers. All of the icons are free for both personal and commercial use. (http://remixicon.com/)

We use icons to help our users understand the core idea of the content quickly or enhance the aesthetic appeal of the interface.

Consistency is key with icons, and all your icons should be the same size when you build them. Our grid is based on 8s, you'd want to build at 16, 24, or 32.

Choose a common size to build all your icons to, and then allow your engineers to scale to other sizes that might be needed by other designers. You don't want to build the same icon over and over at a multitude of sizes.

For product icons, use 1 color. Anything more than that and your components are going to become too complex and difficult for other designers to leverage. Anything with 3 or more colors is an illustration, not an icon.

Grids

The pixel grid is the fundamental grid that uses the smallest increment: a pixel. When building icons, you always want to align objects to the pixel grid, especially straight lines. But, you can build other shapes on the pixel grid. You want to build things on the pixel grid, not just because it will render more nicely, but because it makes your life easier. Spacing things evenly is much easier when you're using a grid. It helps you stay consistent with your placement, and overall will make your icons look better.

The optical grid helps us figure out where the center of mass of the icon is, as well as how large it is perceived by the human eye. Circles and curved objects take up less visual space than squares. It is best to put your icons in a fixed size container so that they’re all identical dimensions when exported. Adding this intrinsic padding supports the optical/perceptive weighting without additional effort in dev later.

In building the optical grid, you should give padding at the edge that’s equal to your stroke weight, or possibly double if using a 1px stroke.

Strokes and fills

Making sure our icons are all styled the same way is very important. We might have use cases for applying a fill to show something is selected, for instance, but you definitely want to create a set with one style, and possibly create the other variant.

Typically, filled icons have higher recognizability. Stroked icons give us great ability to create tiny details. When choosing which style is more appropriate, you should also consider your overall brand.

If you're going to create stroked icons, strokes all need to be the same weight. The space between strokes not be thinner than your stroke weight.

Don’ts

When possible, avoid type in icons. Icons are meant to be global. If you do need type (for instance, currency symbols), draw it yourself, rather than using a typeface.

Icon set

ri-home-line

ri-home-fill

ri-home-2-line

ri-home-2-fill

ri-home-3-line

ri-home-3-fill

ri-home-4-line

ri-home-4-fill

ri-home-5-line

ri-home-5-fill

ri-home-6-line

ri-home-6-fill

ri-home-7-line

ri-home-7-fill

ri-home-8-line

ri-home-8-fill

ri-home-gear-line

ri-home-gear-fill

ri-home-wifi-line

ri-home-wifi-fill

ri-home-smile-line

ri-home-smile-fill

ri-home-smile-2-line

ri-home-smile-2-fill

ri-home-heart-line

ri-home-heart-fill

ri-building-line

ri-building-fill

ri-building-2-line

ri-building-2-fill

ri-building-3-line

ri-building-3-fill

ri-building-4-line

ri-building-4-fill

ri-hotel-line

ri-hotel-fill

ri-community-line

ri-community-fill

ri-government-line

ri-government-fill

ri-bank-line

ri-bank-fill

ri-store-line

ri-store-fill

ri-store-2-line

ri-store-2-fill

ri-store-3-line

ri-store-3-fill

ri-hospital-line

ri-hospital-fill

ri-ancient-gate-line

ri-ancient-gate-fill

ri-ancient-pavilion-line

ri-ancient-pavilion-fill

Buildings

ri-mail-line

ri-mail-fill

ri-mail-open-line

ri-mail-open-fill

ri-mail-send-line

ri-mail-send-fill

ri-mail-unread-line

ri-mail-unread-fill

ri-mail-add-line

ri-mail-add-fill

ri-mail-check-line

ri-mail-check-fill

ri-mail-close-line

ri-mail-close-fill

ri-mail-download-line

ri-mail-download-fill

ri-mail-forbid-line

ri-mail-forbid-fill

ri-mail-lock-line

ri-mail-lock-fill

ri-mail-settings-line

ri-mail-settings-fill

ri-mail-star-line

ri-mail-star-fill

ri-mail-volume-line

ri-mail-volume-fill

ri-inbox-line

ri-inbox-fill

ri-inbox-archive-line

ri-inbox-archive-fill

ri-inbox-unarchive-line

ri-inbox-unarchive-fill

ri-cloud-line

ri-cloud-fill

ri-cloud-off-line

ri-cloud-off-fill

ri-attachment-line

ri-attachment-fill

ri-profile-line

ri-profile-fill

ri-archive-line

ri-archive-fill

ri-archive-drawer-line

ri-archive-drawer-fill

ri-at-line

ri-at-fill

ri-award-line

ri-award-fill

ri-medal-line

ri-medal-fill

ri-medal-2-line

ri-medal-2-fill

ri-bar-chart-line

ri-bar-chart-fill

ri-bar-chart-horizontal-line

ri-bar-chart-horizontal-fill

ri-bar-chart-2-line

ri-bar-chart-2-fill

ri-bar-chart-box-line

ri-bar-chart-box-fill

ri-bar-chart-grouped-line

ri-bar-chart-grouped-fill

ri-bubble-chart-line

ri-bubble-chart-fill

ri-pie-chart-line

ri-pie-chart-fill

ri-pie-chart-2-line

ri-pie-chart-2-fill

ri-pie-chart-box-line

ri-pie-chart-box-fill

ri-donut-chart-line

ri-donut-chart-fill

ri-line-chart-line

ri-line-chart-fill

ri-bookmark-line

ri-bookmark-fill

ri-bookmark-2-line

ri-bookmark-2-fill

ri-bookmark-3-line

ri-bookmark-3-fill

ri-briefcase-line

ri-briefcase-fill

ri-briefcase-2-line

ri-briefcase-2-fill

ri-briefcase-3-line

ri-briefcase-3-fill

ri-briefcase-4-line

ri-briefcase-4-fill

ri-briefcase-5-line

ri-briefcase-5-fill

ri-calculator-line

ri-calculator-fill

ri-calendar-line

ri-calendar-fill

ri-calendar-2-line

ri-calendar-2-fill

ri-calendar-event-line

ri-calendar-event-fill

ri-calendar-todo-line

ri-calendar-todo-fill

ri-calendar-check-line

ri-calendar-check-fill

ri-customer-service-line

ri-customer-service-fill

ri-customer-service-2-line

ri-customer-service-2-fill

ri-flag-line

ri-flag-fill

ri-flag-2-line

ri-flag-2-fill

ri-global-line

ri-global-fill

ri-honour-line

ri-honour-fill

ri-links-line

ri-links-fill

ri-printer-line

ri-printer-fill

ri-printer-cloud-line

ri-printer-cloud-fill

ri-record-mail-line

ri-record-mail-fill

ri-reply-line

ri-reply-fill

ri-reply-all-line

ri-reply-all-fill

ri-send-plane-line

ri-send-plane-fill

ri-send-plane-2-line

ri-send-plane-2-fill

ri-projector-line

ri-projector-fill

ri-projector-2-line

ri-projector-2-fill

ri-slideshow-line

ri-slideshow-fill

ri-slideshow-2-line

ri-slideshow-2-fill

ri-slideshow-3-line

ri-slideshow-3-fill

ri-slideshow-4-line

ri-slideshow-4-fill

ri-window-line

ri-window-fill

ri-window-2-line

ri-window-2-fill

ri-stack-line

ri-stack-fill

ri-service-line

ri-service-fill

ri-registered-line

ri-registered-fill

ri-trademark-line

ri-trademark-fill

ri-advertisement-line

ri-advertisement-fill

ri-copyleft-line

ri-copyleft-fill

ri-copyright-line

ri-copyright-fill

ri-creative-commons-line

ri-creative-commons-fill

ri-creative-commons-by-line

ri-creative-commons-by-fill

ri-creative-commons-nc-line

ri-creative-commons-nc-fill

ri-creative-commons-nd-line

ri-creative-commons-nd-fill

ri-creative-commons-sa-line

ri-creative-commons-sa-fill

ri-creative-commons-zero-line

ri-creative-commons-zero-fill

Business

ri-chat-1-line

ri-chat-1-fill

ri-chat-2-line

ri-chat-2-fill

ri-chat-3-line

ri-chat-3-fill

ri-chat-4-line

ri-chat-4-fill

ri-message-line

ri-message-fill

ri-message-2-line

ri-message-2-fill

ri-message-3-line

ri-message-3-fill

ri-chat-check-line

ri-chat-check-fill

ri-chat-delete-line

ri-chat-delete-fill

ri-chat-forward-line

ri-chat-forward-fill

ri-chat-upload-line

ri-chat-upload-fill

ri-chat-download-line

ri-chat-download-fill

ri-chat-new-line

ri-chat-new-fill

ri-chat-settings-line

ri-chat-settings-fill

ri-chat-smile-line

ri-chat-smile-fill

ri-chat-smile-2-line

ri-chat-smile-2-fill

ri-chat-smile-3-line

ri-chat-smile-3-fill

ri-chat-heart-line

ri-chat-heart-fill

ri-chat-off-line

ri-chat-off-fill

ri-feedback-line

ri-feedback-fill

ri-discuss-line

ri-discuss-fill

ri-question-answer-line

ri-question-answer-fill

ri-questionnaire-line

ri-questionnaire-fill

ri-video-chat-line

ri-video-chat-fill

ri-chat-voice-line

ri-chat-voice-fill

ri-chat-quote-line

ri-chat-quote-fill

ri-chat-follow-up-line

ri-chat-follow-up-fill

ri-chat-poll-line

ri-chat-poll-fill

ri-chat-history-line

ri-chat-history-fill

ri-chat-private-line

ri-chat-private-fill

Communication

ri-pencil-line

ri-pencil-fill

ri-edit-line

ri-edit-fill

ri-edit-2-line

ri-edit-2-fill

ri-ball-pen-line

ri-ball-pen-fill

ri-quill-pen-line

ri-quill-pen-fill

ri-pen-nib-line

ri-pen-nib-fill

ri-ink-bottle-line

ri-ink-bottle-fill

ri-mark-pen-line

ri-mark-pen-fill

ri-markup-line

ri-markup-fill

ri-edit-box-line

ri-edit-box-fill

ri-edit-circle-line

ri-edit-circle-fill

ri-sip-line

ri-sip-fill

ri-brush-line

ri-brush-fill

ri-brush-2-line

ri-brush-2-fill

ri-brush-3-line

ri-brush-3-fill

ri-brush-4-line

ri-brush-4-fill

ri-paint-brush-line

ri-paint-brush-fill

ri-contrast-line

ri-contrast-fill

ri-contrast-2-line

ri-contrast-2-fill

ri-drop-line

ri-drop-fill

ri-blur-off-line

ri-blur-off-fill

ri-contrast-drop-line

ri-contrast-drop-fill

ri-contrast-drop-2-line

ri-contrast-drop-2-fill

ri-compasses-line

ri-compasses-fill

ri-compasses-2-line

ri-compasses-2-fill

ri-scissors-line

ri-scissors-fill

ri-scissors-cut-line

ri-scissors-cut-fill

ri-scissors-2-line

ri-scissors-2-fill

ri-slice-line

ri-slice-fill

ri-eraser-line

ri-eraser-fill

ri-ruler-line

ri-ruler-fill

ri-ruler-2-line

ri-ruler-2-fill

ri-pencil-ruler-line

ri-pencil-ruler-fill

ri-pencil-ruler-2-line

ri-pencil-ruler-2-fill

ri-t-box-line

ri-t-box-fill

ri-input-method-line

ri-input-method-fill

ri-artboard-line

ri-artboard-fill

ri-artboard-2-line

ri-artboard-2-fill

ri-crop-line

ri-crop-fill

ri-crop-2-line

ri-crop-2-fill

ri-screenshot-line

ri-screenshot-fill

ri-screenshot-2-line

ri-screenshot-2-fill

ri-drag-move-line

ri-drag-move-fill

ri-drag-move-2-line

ri-drag-move-2-fill

ri-focus-line

ri-focus-fill

ri-focus-2-line

ri-focus-2-fill

ri-focus-3-line

ri-focus-3-fill

ri-paint-line

ri-paint-fill

ri-palette-line

ri-palette-fill

ri-pantone-line

ri-pantone-fill

ri-shape-line

ri-shape-fill

ri-shape-2-line

ri-shape-2-fill

ri-magic-line

ri-magic-fill

ri-anticlockwise-line

ri-anticlockwise-fill

ri-anticlockwise-2-line

ri-anticlockwise-2-fill

ri-clockwise-line

ri-clockwise-fill

ri-clockwise-2-line

ri-clockwise-2-fill

ri-hammer-line

ri-hammer-fill

ri-tools-line

ri-tools-fill

ri-drag-drop-line

ri-drag-drop-fill

ri-table-line

ri-table-fill

ri-table-alt-line

ri-table-alt-fill

ri-layout-line

ri-layout-fill

ri-layout-2-line

ri-layout-2-fill

ri-layout-3-line

ri-layout-3-fill

ri-layout-4-line

ri-layout-4-fill

ri-layout-5-line

ri-layout-5-fill

ri-layout-6-line

ri-layout-6-fill

ri-layout-column-line

ri-layout-column-fill

ri-layout-row-line

ri-layout-row-fill

ri-layout-top-line

ri-layout-top-fill

ri-layout-right-line

ri-layout-right-fill

ri-layout-bottom-line

ri-layout-bottom-fill

ri-layout-left-line

ri-layout-left-fill

ri-layout-top-2-line

ri-layout-top-2-fill

ri-layout-right-2-line

ri-layout-right-2-fill

ri-layout-bottom-2-line

ri-layout-bottom-2-fill

ri-layout-left-2-line

ri-layout-left-2-fill

ri-layout-grid-line

ri-layout-grid-fill

ri-layout-masonry-line

ri-layout-masonry-fill

ri-collage-line

ri-collage-fill

ri-grid-line

ri-grid-fill

Design

ri-bug-line

ri-bug-fill

ri-bug-2-line

ri-bug-2-fill

ri-code-line

ri-code-fill

ri-code-s-line

ri-code-s-fill

ri-code-s-slash-line

ri-code-s-slash-fill

ri-code-box-line

ri-code-box-fill

ri-terminal-box-line

ri-terminal-box-fill

ri-terminal-line

ri-terminal-fill

ri-terminal-window-line

ri-terminal-window-fill

ri-parentheses-line

ri-parentheses-fill

ri-brackets-line

ri-brackets-fill

ri-braces-line

ri-braces-fill

ri-command-line

ri-command-fill

ri-cursor-line

ri-cursor-fill

ri-git-commit-line

ri-git-commit-fill

ri-git-pull-request-line

ri-git-pull-request-fill

ri-git-merge-line

ri-git-merge-fill

ri-git-branch-line

ri-git-branch-fill

ri-git-repository-line

ri-git-repository-fill

ri-git-repository-commits-line

ri-git-repository-commits-fill

ri-git-repository-private-line

ri-git-repository-private-fill

ri-html5-line

ri-html5-fill

ri-css3-line

ri-css3-fill

Development

ri-tv-line

ri-tv-fill

ri-tv-2-line

ri-tv-2-fill

ri-computer-line

ri-computer-fill

ri-mac-line

ri-mac-fill

ri-macbook-line

ri-macbook-fill

ri-cellphone-line

ri-cellphone-fill

ri-smartphone-line

ri-smartphone-fill

ri-tablet-line

ri-tablet-fill

ri-device-line

ri-device-fill

ri-phone-line

ri-phone-fill

ri-database-line

ri-database-fill

ri-database-2-line

ri-database-2-fill

ri-server-line

ri-server-fill

ri-hard-drive-line

ri-hard-drive-fill

ri-hard-drive-2-line

ri-hard-drive-2-fill

ri-install-line

ri-install-fill

ri-uninstall-line

ri-uninstall-fill

ri-save-line

ri-save-fill

ri-save-2-line

ri-save-2-fill

ri-save-3-line

ri-save-3-fill

ri-sd-card-line

ri-sd-card-fill

ri-sd-card-mini-line

ri-sd-card-mini-fill

ri-sim-card-line

ri-sim-card-fill

ri-sim-card-2-line

ri-sim-card-2-fill

ri-dual-sim-1-line

ri-dual-sim-1-fill

ri-dual-sim-2-line

ri-dual-sim-2-fill

ri-u-disk-line

ri-u-disk-fill

ri-battery-line

ri-battery-fill

ri-battery-charge-line

ri-battery-charge-fill

ri-battery-low-line

ri-battery-low-fill

ri-battery-2-line

ri-battery-2-fill

ri-battery-2-charge-line

ri-battery-2-charge-fill

ri-battery-saver-line

ri-battery-saver-fill

ri-battery-share-line

ri-battery-share-fill

ri-cast-line

ri-cast-fill

ri-airplay-line

ri-airplay-fill

ri-cpu-line

ri-cpu-fill

ri-gradienter-line

ri-gradienter-fill

ri-keyboard-line

ri-keyboard-fill

ri-keyboard-box-line

ri-keyboard-box-fill

ri-mouse-line

ri-mouse-fill

ri-sensor-line

ri-sensor-fill

ri-router-line

ri-router-fill

ri-radar-line

ri-radar-fill

ri-gamepad-line

ri-gamepad-fill

ri-remote-control-line

ri-remote-control-fill

ri-remote-control-2-line

ri-remote-control-2-fill

ri-device-recover-line

ri-device-recover-fill

ri-hotspot-line

ri-hotspot-fill

ri-phone-find-line

ri-phone-find-fill

ri-phone-lock-line

ri-phone-lock-fill

ri-rotate-lock-line

ri-rotate-lock-fill

ri-restart-line

ri-restart-fill

ri-shut-down-line

ri-shut-down-fill

ri-fingerprint-line

ri-fingerprint-fill

ri-fingerprint-2-line

ri-fingerprint-2-fill

ri-barcode-line

ri-barcode-fill

ri-barcode-box-line

ri-barcode-box-fill

ri-qr-code-line

ri-qr-code-fill

ri-qr-scan-line

ri-qr-scan-fill

ri-qr-scan-2-line

ri-qr-scan-2-fill

ri-scan-line

ri-scan-fill

ri-scan-2-line

ri-scan-2-fill

ri-rss-line

ri-rss-fill

ri-gps-line

ri-gps-fill

ri-base-station-line

ri-base-station-fill

ri-bluetooth-line

ri-bluetooth-fill

ri-bluetooth-connect-line

ri-bluetooth-connect-fill

ri-wifi-line

ri-wifi-fill

ri-wifi-off-line

ri-wifi-off-fill

ri-signal-wifi-line

ri-signal-wifi-fill

ri-signal-wifi-1-line

ri-signal-wifi-1-fill

ri-signal-wifi-2-line

ri-signal-wifi-2-fill

ri-signal-wifi-3-line

ri-signal-wifi-3-fill

ri-signal-wifi-error-line

ri-signal-wifi-error-fill

ri-signal-wifi-off-line

ri-signal-wifi-off-fill

ri-wireless-charging-line

ri-wireless-charging-fill

ri-dashboard-2-line

ri-dashboard-2-fill

ri-dashboard-3-line

ri-dashboard-3-fill

ri-usb-line

ri-usb-fill

Device

ri-file-line

ri-file-fill

ri-file-2-line

ri-file-2-fill

ri-file-3-line

ri-file-3-fill

ri-file-4-line

ri-file-4-fill

ri-sticky-note-line

ri-sticky-note-fill

ri-sticky-note-2-line

ri-sticky-note-2-fill

ri-file-edit-line

ri-file-edit-fill

ri-draft-line

ri-draft-fill

ri-file-paper-line

ri-file-paper-fill

ri-file-paper-2-line

ri-file-paper-2-fill

ri-file-text-line

ri-file-text-fill

ri-file-list-line

ri-file-list-fill

ri-file-list-2-line

ri-file-list-2-fill

ri-file-list-3-line

ri-file-list-3-fill

ri-bill-line

ri-bill-fill

ri-file-copy-line

ri-file-copy-fill

ri-file-copy-2-line

ri-file-copy-2-fill

ri-clipboard-line

ri-clipboard-fill

ri-survey-line

ri-survey-fill

ri-article-line

ri-article-fill

ri-newspaper-line

ri-newspaper-fill

ri-file-zip-line

ri-file-zip-fill

ri-file-mark-line

ri-file-mark-fill

ri-task-line

ri-task-fill

ri-todo-line

ri-todo-fill

ri-book-line

ri-book-fill

ri-book-mark-line

ri-book-mark-fill

ri-book-2-line

ri-book-2-fill

ri-book-3-line

ri-book-3-fill

ri-book-open-line

ri-book-open-fill

ri-book-read-line

ri-book-read-fill

ri-contacts-book-line

ri-contacts-book-fill

ri-contacts-book-2-line

ri-contacts-book-2-fill

ri-contacts-book-upload-line

ri-contacts-book-upload-fill

ri-booklet-line

ri-booklet-fill

ri-file-code-line

ri-file-code-fill

ri-file-pdf-line

ri-file-pdf-fill

ri-file-word-line

ri-file-word-fill

ri-file-ppt-line

ri-file-ppt-fill

ri-file-excel-line

ri-file-excel-fill

ri-file-word-2-line

ri-file-word-2-fill

ri-file-ppt-2-line

ri-file-ppt-2-fill

ri-file-excel-2-line

ri-file-excel-2-fill

ri-file-hwp-line

ri-file-hwp-fill

ri-keynote-line

ri-keynote-fill

ri-numbers-line

ri-numbers-fill

ri-pages-line

ri-pages-fill

ri-file-search-line

ri-file-search-fill

ri-file-add-line

ri-file-add-fill

ri-file-reduce-line

ri-file-reduce-fill

ri-file-settings-line

ri-file-settings-fill

ri-file-upload-line

ri-file-upload-fill

ri-file-transfer-line

ri-file-transfer-fill

ri-file-download-line

ri-file-download-fill

ri-file-lock-line

ri-file-lock-fill

ri-file-chart-line

ri-file-chart-fill

ri-file-chart-2-line

ri-file-chart-2-fill

ri-file-music-line

ri-file-music-fill

ri-file-gif-line

ri-file-gif-fill

ri-file-forbid-line

ri-file-forbid-fill

ri-file-info-line

ri-file-info-fill

ri-file-warning-line

ri-file-warning-fill

ri-file-unknow-line

ri-file-unknow-fill

ri-file-user-line

ri-file-user-fill

ri-file-shield-line

ri-file-shield-fill

ri-file-shield-2-line

ri-file-shield-2-fill

ri-file-damage-line

ri-file-damage-fill

ri-file-history-line

ri-file-history-fill

ri-file-shred-line

ri-file-shred-fill

ri-file-cloud-line

ri-file-cloud-fill

ri-folder-line

ri-folder-fill

ri-folder-2-line

ri-folder-2-fill

ri-folder-3-line

ri-folder-3-fill

ri-folder-4-line

ri-folder-4-fill

ri-folder-5-line

ri-folder-5-fill

ri-folders-line

ri-folders-fill

ri-folder-add-line

ri-folder-add-fill

ri-folder-reduce-line

ri-folder-reduce-fill

ri-folder-settings-line

ri-folder-settings-fill

ri-folder-upload-line

ri-folder-upload-fill

ri-folder-transfer-line

ri-folder-transfer-fill

ri-folder-download-line

ri-folder-download-fill

ri-folder-lock-line

ri-folder-lock-fill

ri-folder-chart-line

ri-folder-chart-fill

ri-folder-chart-2-line

ri-folder-chart-2-fill

ri-folder-music-line

ri-folder-music-fill

ri-folder-forbid-line

ri-folder-forbid-fill

ri-folder-info-line

ri-folder-info-fill

ri-folder-warning-line

ri-folder-warning-fill

ri-folder-unknow-line

ri-folder-unknow-fill

ri-folder-user-line

ri-folder-user-fill

ri-folder-shield-line

ri-folder-shield-fill

ri-folder-shield-2-line

ri-folder-shield-2-fill

ri-folder-shared-line

ri-folder-shared-fill

ri-folder-received-line

ri-folder-received-fill

ri-folder-open-line

ri-folder-open-fill

ri-folder-keyhole-line

ri-folder-keyhole-fill

ri-folder-zip-line

ri-folder-zip-fill

ri-folder-history-line

ri-folder-history-fill

ri-markdown-line

ri-markdown-fill

Document

ri-bold

ri-italic

ri-heading

ri-text

ri-font-color

ri-font-size

ri-font-size-2

ri-underline

ri-emphasis

ri-emphasis-cn

ri-strikethrough

ri-strikethrough-2

ri-format-clear

ri-align-left

ri-align-center

ri-align-right

ri-align-justify

ri-align-top

ri-align-vertically

ri-align-bottom

ri-list-check

ri-list-check-2

ri-list-ordered

ri-list-unordered

ri-indent-decrease

ri-indent-increase

ri-line-height

ri-text-spacing

ri-text-wrap

ri-attachment-2

ri-link

ri-link-unlink

ri-link-m

ri-link-unlink-m

ri-separator

ri-space

ri-page-separator

ri-code-view

ri-double-quotes-l

ri-double-quotes-r

ri-single-quotes-l

ri-single-quotes-r

ri-table-2

ri-subscript

ri-subscript-2

ri-superscript

ri-superscript-2

ri-paragraph

ri-text-direction-l

ri-text-direction-r

ri-functions

ri-omega

ri-hashtag

ri-asterisk

ri-question-mark

ri-translate

ri-translate-2

ri-a-b

ri-english-input

ri-pinyin-input

ri-wubi-input

ri-input-cursor-move

ri-number-1

ri-number-2

ri-number-3

ri-number-4

ri-number-5

ri-number-6

ri-number-7

ri-number-8

ri-number-9

ri-number-0

ri-sort-asc

ri-sort-desc

ri-bring-forward

ri-send-backward

ri-bring-to-front

ri-send-to-back

ri-h-1

ri-h-2

ri-h-3

ri-h-4

ri-h-5

ri-h-6

ri-insert-column-left

ri-insert-column-right

ri-insert-row-top

ri-insert-row-bottom

ri-delete-column

ri-delete-row

ri-merge-cells-horizontal

ri-merge-cells-vertical

ri-split-cells-horizontal

ri-split-cells-vertical

ri-flow-chart

ri-mind-map

ri-node-tree

ri-organization-chart

ri-rounded-corner

Editor

ri-wallet-line

ri-wallet-fill

ri-wallet-2-line

ri-wallet-2-fill

ri-wallet-3-line

ri-wallet-3-fill

ri-bank-card-line

ri-bank-card-fill

ri-bank-card-2-line

ri-bank-card-2-fill

ri-secure-payment-line

ri-secure-payment-fill

ri-refund-line

ri-refund-fill

ri-refund-2-line

ri-refund-2-fill

ri-safe-line

ri-safe-fill

ri-safe-2-line

ri-safe-2-fill

ri-price-tag-line

ri-price-tag-fill

ri-price-tag-2-line

ri-price-tag-2-fill

ri-price-tag-3-line

ri-price-tag-3-fill

ri-ticket-line

ri-ticket-fill

ri-ticket-2-line

ri-ticket-2-fill

ri-coupon-line

ri-coupon-fill

ri-coupon-2-line

ri-coupon-2-fill

ri-coupon-3-line

ri-coupon-3-fill

ri-coupon-4-line

ri-coupon-4-fill

ri-coupon-5-line

ri-coupon-5-fill

ri-shopping-bag-line

ri-shopping-bag-fill

ri-shopping-bag-2-line

ri-shopping-bag-2-fill

ri-shopping-bag-3-line

ri-shopping-bag-3-fill

ri-shopping-basket-line

ri-shopping-basket-fill

ri-shopping-basket-2-line

ri-shopping-basket-2-fill

ri-shopping-cart-line

ri-shopping-cart-fill

ri-shopping-cart-2-line

ri-shopping-cart-2-fill

ri-vip-line

ri-vip-fill

ri-vip-crown-line

ri-vip-crown-fill

ri-vip-crown-2-line

ri-vip-crown-2-fill

ri-vip-diamond-line

ri-vip-diamond-fill

ri-trophy-line

ri-trophy-fill

ri-exchange-line

ri-exchange-fill

ri-exchange-box-line

ri-exchange-box-fill

ri-swap-line

ri-swap-fill

ri-swap-box-line

ri-swap-box-fill

ri-exchange-dollar-line

ri-exchange-dollar-fill

ri-exchange-cny-line

ri-exchange-cny-fill

ri-exchange-funds-line

ri-exchange-funds-fill

ri-increase-decrease-line

ri-increase-decrease-fill

ri-percent-line

ri-percent-fill

ri-copper-coin-line

ri-copper-coin-fill

ri-copper-diamond-line

ri-copper-diamond-fill

ri-money-cny-box-line

ri-money-cny-box-fill

ri-money-cny-circle-line

ri-money-cny-circle-fill

ri-money-dollar-box-line

ri-money-dollar-box-fill

ri-money-dollar-circle-line

ri-money-dollar-circle-fill

ri-money-euro-box-line

ri-money-euro-box-fill

ri-money-euro-circle-line

ri-money-euro-circle-fill

ri-money-pound-box-line

ri-money-pound-box-fill

ri-money-pound-circle-line

ri-money-pound-circle-fill

ri-bit-coin-line

ri-bit-coin-fill

ri-coin-line

ri-coin-fill

ri-coins-line

ri-coins-fill

ri-currency-line

ri-currency-fill

ri-funds-line

ri-funds-fill

ri-funds-box-line

ri-funds-box-fill

ri-red-packet-line

ri-red-packet-fill

ri-water-flash-line

ri-water-flash-fill

ri-stock-line

ri-stock-fill

ri-auction-line

ri-auction-fill

ri-gift-line

ri-gift-fill

ri-gift-2-line

ri-gift-2-fill

ri-hand-coin-line

ri-hand-coin-fill

ri-hand-heart-line

ri-hand-heart-fill

ri-24-hours-line

ri-24-hours-fill

Finance

ri-heart-line

ri-heart-fill

ri-heart-2-line

ri-heart-2-fill

ri-heart-3-line

ri-heart-3-fill

ri-heart-add-line

ri-heart-add-fill

ri-dislike-line

ri-dislike-fill

ri-hearts-line

ri-hearts-fill

ri-heart-pulse-line

ri-heart-pulse-fill

ri-pulse-line

ri-pulse-fill

ri-empathize-line

ri-empathize-fill

ri-nurse-line

ri-nurse-fill

ri-dossier-line

ri-dossier-fill

ri-health-book-line

ri-health-book-fill

ri-first-aid-kit-line

ri-first-aid-kit-fill

ri-capsule-line

ri-capsule-fill

ri-medicine-bottle-line

ri-medicine-bottle-fill

ri-flask-line

ri-flask-fill

ri-test-tube-line

ri-test-tube-fill

ri-microscope-line

ri-microscope-fill

ri-hand-sanitizer-line

ri-hand-sanitizer-fill

ri-mental-health-line

ri-mental-health-fill

ri-psychotherapy-line

ri-psychotherapy-fill

ri-stethoscope-line

ri-stethoscope-fill

ri-syringe-line

ri-syringe-fill

ri-thermometer-line

ri-thermometer-fill

ri-infrared-thermometer-line

ri-infrared-thermometer-fill

ri-surgical-mask-line

ri-surgical-mask-fill

ri-virus-line

ri-virus-fill

ri-lungs-line

ri-lungs-fill

ri-rest-time-line

ri-rest-time-fill

ri-zzz-line

ri-zzz-fill

Health & Medical

ri-alipay-line

ri-alipay-fill

ri-amazon-line

ri-amazon-fill

ri-android-line

ri-android-fill

ri-angularjs-line

ri-angularjs-fill

ri-app-store-line

ri-app-store-fill

ri-apple-line

ri-apple-fill

ri-baidu-line

ri-baidu-fill

ri-behance-line

ri-behance-fill

ri-bilibili-line

ri-bilibili-fill

ri-centos-line

ri-centos-fill

ri-chrome-line

ri-chrome-fill

ri-codepen-line

ri-codepen-fill

ri-coreos-line

ri-coreos-fill

ri-dingding-line

ri-dingding-fill

ri-discord-line

ri-discord-fill

ri-disqus-line

ri-disqus-fill

ri-douban-line

ri-douban-fill

ri-dribbble-line

ri-dribbble-fill

ri-drive-line

ri-drive-fill

ri-dropbox-line

ri-dropbox-fill

ri-edge-line

ri-edge-fill

ri-evernote-line

ri-evernote-fill

ri-facebook-line

ri-facebook-fill

ri-facebook-circle-line

ri-facebook-circle-fill

ri-facebook-box-line

ri-facebook-box-fill

ri-finder-line

ri-finder-fill

ri-firefox-line

ri-firefox-fill

ri-flutter-line

ri-flutter-fill

ri-gatsby-line

ri-gatsby-fill

ri-github-line

ri-github-fill

ri-gitlab-line

ri-gitlab-fill

ri-google-line

ri-google-fill

ri-google-play-line

ri-google-play-fill

ri-honor-of-kings-line

ri-honor-of-kings-fill

ri-ie-line

ri-ie-fill

ri-instagram-line

ri-instagram-fill

ri-invision-line

ri-invision-fill

ri-kakao-talk-line

ri-kakao-talk-fill

ri-line-line

ri-line-fill

ri-linkedin-line

ri-linkedin-fill

ri-linkedin-box-line

ri-linkedin-box-fill

ri-mastercard-line

ri-mastercard-fill

ri-mastodon-line

ri-mastodon-fill

ri-medium-line

ri-medium-fill

ri-messenger-line

ri-messenger-fill

ri-microsoft-line

ri-microsoft-fill

ri-mini-program-line

ri-mini-program-fill

ri-netease-cloud-music-line

ri-netease-cloud-music-fill

ri-netflix-line

ri-netflix-fill

ri-npmjs-line

ri-npmjs-fill

ri-open-source-line

ri-open-source-fill

ri-opera-line

ri-opera-fill

ri-patreon-line

ri-patreon-fill

ri-paypal-line

ri-paypal-fill

ri-pinterest-line

ri-pinterest-fill

ri-pixelfed-line

ri-pixelfed-fill

ri-playstation-line

ri-playstation-fill

ri-product-hunt-line

ri-product-hunt-fill

ri-qq-line

ri-qq-fill

ri-reactjs-line

ri-reactjs-fill

ri-reddit-line

ri-reddit-fill

ri-remixicon-line

ri-remixicon-fill

ri-safari-line

ri-safari-fill

ri-skype-line

ri-skype-fill

ri-slack-line

ri-slack-fill

ri-snapchat-line

ri-snapchat-fill

ri-soundcloud-line

ri-soundcloud-fill

ri-spectrum-line

ri-spectrum-fill

ri-spotify-line

ri-spotify-fill

ri-stack-overflow-line

ri-stack-overflow-fill

ri-stackshare-line

ri-stackshare-fill

ri-steam-line

ri-steam-fill

ri-switch-line

ri-switch-fill

ri-taobao-line

ri-taobao-fill

ri-telegram-line

ri-telegram-fill

ri-trello-line

ri-trello-fill

ri-tumblr-line

ri-tumblr-fill

ri-twitch-line

ri-twitch-fill

ri-twitter-line

ri-twitter-fill

ri-ubuntu-line

ri-ubuntu-fill

ri-unsplash-line

ri-unsplash-fill

ri-vimeo-line

ri-vimeo-fill

ri-visa-line

ri-visa-fill

ri-vuejs-line

ri-vuejs-fill

ri-wechat-line

ri-wechat-fill

ri-wechat-2-line

ri-wechat-2-fill

ri-wechat-pay-line

ri-wechat-pay-fill

ri-weibo-line

ri-weibo-fill

ri-whatsapp-line

ri-whatsapp-fill

ri-windows-line

ri-windows-fill

ri-xbox-line

ri-xbox-fill

ri-xing-line

ri-xing-fill

ri-youtube-line

ri-youtube-fill

ri-zcool-line

ri-zcool-fill

ri-zhihu-line

ri-zhihu-fill

Logos

ri-map-pin-line

ri-map-pin-fill

ri-map-pin-2-line

ri-map-pin-2-fill

ri-map-pin-3-line

ri-map-pin-3-fill

ri-map-pin-4-line

ri-map-pin-4-fill

ri-map-pin-5-line

ri-map-pin-5-fill

ri-map-pin-add-line

ri-map-pin-add-fill

ri-map-pin-range-line

ri-map-pin-range-fill

ri-map-pin-time-line

ri-map-pin-time-fill

ri-map-pin-user-line

ri-map-pin-user-fill

ri-pin-distance-line

ri-pin-distance-fill

ri-pushpin-line

ri-pushpin-fill

ri-pushpin-2-line

ri-pushpin-2-fill

ri-compass-line

ri-compass-fill

ri-compass-2-line

ri-compass-2-fill

ri-compass-3-line

ri-compass-3-fill

ri-compass-4-line

ri-compass-4-fill

ri-compass-discover-line

ri-compass-discover-fill

ri-anchor-line

ri-anchor-fill

ri-china-railway-line

ri-china-railway-fill

ri-space-ship-line

ri-space-ship-fill

ri-rocket-line

ri-rocket-fill

ri-rocket-2-line

ri-rocket-2-fill

ri-map-line

ri-map-fill

ri-map-2-line

ri-map-2-fill

ri-treasure-map-line

ri-treasure-map-fill

ri-road-map-line

ri-road-map-fill

ri-earth-line

ri-earth-fill

ri-globe-line

ri-globe-fill

ri-parking-line

ri-parking-fill

ri-parking-box-line

ri-parking-box-fill

ri-route-line

ri-route-fill

ri-guide-line

ri-guide-fill

ri-gas-station-line

ri-gas-station-fill

ri-charging-pile-line

ri-charging-pile-fill

ri-charging-pile-2-line

ri-charging-pile-2-fill

ri-car-line

ri-car-fill

ri-car-washing-line

ri-car-washing-fill

ri-roadster-line

ri-roadster-fill

ri-taxi-line

ri-taxi-fill

ri-taxi-wifi-line

ri-taxi-wifi-fill

ri-police-car-line

ri-police-car-fill

ri-bus-line

ri-bus-fill

ri-bus-2-line

ri-bus-2-fill

ri-bus-wifi-line

ri-bus-wifi-fill

ri-truck-line

ri-truck-fill

ri-train-line

ri-train-fill

ri-train-wifi-line

ri-train-wifi-fill

ri-subway-line

ri-subway-fill

ri-subway-wifi-line

ri-subway-wifi-fill

ri-flight-takeoff-line

ri-flight-takeoff-fill

ri-flight-land-line

ri-flight-land-fill

ri-plane-line

ri-plane-fill

ri-sailboat-line

ri-sailboat-fill

ri-ship-line

ri-ship-fill

ri-ship-2-line

ri-ship-2-fill

ri-bike-line

ri-bike-fill

ri-e-bike-line

ri-e-bike-fill

ri-e-bike-2-line

ri-e-bike-2-fill

ri-takeaway-line

ri-takeaway-fill

ri-motorbike-line

ri-motorbike-fill

ri-caravan-line

ri-caravan-fill

ri-walk-line

ri-walk-fill

ri-run-line

ri-run-fill

ri-riding-line

ri-riding-fill

ri-barricade-line

ri-barricade-fill

ri-footprint-line

ri-footprint-fill

ri-traffic-light-line

ri-traffic-light-fill

ri-signal-tower-line

ri-signal-tower-fill

ri-restaurant-line

ri-restaurant-fill

ri-restaurant-2-line

ri-restaurant-2-fill

ri-cup-line

ri-cup-fill

ri-goblet-line

ri-goblet-fill

ri-hotel-bed-line

ri-hotel-bed-fill

ri-navigation-line

ri-navigation-fill

ri-oil-line

ri-oil-fill

ri-direction-line

ri-direction-fill

ri-steering-line

ri-steering-fill

ri-steering-2-line

ri-steering-2-fill

ri-lifebuoy-line

ri-lifebuoy-fill

ri-passport-line

ri-passport-fill

ri-suitcase-line

ri-suitcase-fill

ri-suitcase-2-line

ri-suitcase-2-fill

ri-suitcase-3-line

ri-suitcase-3-fill

ri-luggage-deposit-line

ri-luggage-deposit-fill

ri-luggage-cart-line

ri-luggage-cart-fill

Map

ri-image-line

ri-image-fill

ri-image-2-line

ri-image-2-fill

ri-image-add-line

ri-image-add-fill

ri-image-edit-line

ri-image-edit-fill

ri-landscape-line

ri-landscape-fill

ri-gallery-line

ri-gallery-fill

ri-gallery-upload-line

ri-gallery-upload-fill

ri-video-line

ri-video-fill

ri-movie-line

ri-movie-fill

ri-movie-2-line

ri-movie-2-fill

ri-film-line

ri-film-fill

ri-clapperboard-line

ri-clapperboard-fill

ri-vidicon-line

ri-vidicon-fill

ri-vidicon-2-line

ri-vidicon-2-fill

ri-live-line

ri-live-fill

ri-video-add-line

ri-video-add-fill

ri-video-upload-line

ri-video-upload-fill

ri-video-download-line

ri-video-download-fill

ri-dv-line

ri-dv-fill

ri-camera-line

ri-camera-fill

ri-camera-off-line

ri-camera-off-fill

ri-camera-2-line

ri-camera-2-fill

ri-camera-3-line

ri-camera-3-fill

ri-camera-lens-line

ri-camera-lens-fill

ri-camera-switch-line

ri-camera-switch-fill

ri-polaroid-line

ri-polaroid-fill

ri-polaroid-2-line

ri-polaroid-2-fill

ri-phone-camera-line

ri-phone-camera-fill

ri-webcam-line

ri-webcam-fill

ri-mv-line

ri-mv-fill

ri-music-line

ri-music-fill

ri-music-2-line

ri-music-2-fill

ri-disc-line

ri-disc-fill

ri-album-line

ri-album-fill

ri-dvd-line

ri-dvd-fill

ri-headphone-line

ri-headphone-fill

ri-radio-line

ri-radio-fill

ri-radio-2-line

ri-radio-2-fill

ri-tape-line

ri-tape-fill

ri-mic-line

ri-mic-fill

ri-mic-2-line

ri-mic-2-fill

ri-mic-off-line

ri-mic-off-fill

ri-volume-down-line

ri-volume-down-fill

ri-volume-mute-line

ri-volume-mute-fill

ri-volume-up-line

ri-volume-up-fill

ri-volume-vibrate-line

ri-volume-vibrate-fill

ri-volume-off-vibrate-line

ri-volume-off-vibrate-fill

ri-speaker-line

ri-speaker-fill

ri-speaker-2-line

ri-speaker-2-fill

ri-speaker-3-line

ri-speaker-3-fill

ri-surround-sound-line

ri-surround-sound-fill

ri-broadcast-line

ri-broadcast-fill

ri-notification-line

ri-notification-fill

ri-notification-2-line

ri-notification-2-fill

ri-notification-3-line

ri-notification-3-fill

ri-notification-4-line

ri-notification-4-fill

ri-notification-off-line

ri-notification-off-fill

ri-play-circle-line

ri-play-circle-fill

ri-pause-circle-line

ri-pause-circle-fill

ri-record-circle-line

ri-record-circle-fill

ri-stop-circle-line

ri-stop-circle-fill

ri-eject-line

ri-eject-fill

ri-play-line

ri-play-fill

ri-pause-line

ri-pause-fill

ri-stop-line

ri-stop-fill

ri-rewind-line

ri-rewind-fill

ri-speed-line

ri-speed-fill

ri-skip-back-line

ri-skip-back-fill

ri-skip-forward-line

ri-skip-forward-fill

ri-play-mini-line

ri-play-mini-fill

ri-pause-mini-line

ri-pause-mini-fill

ri-stop-mini-line

ri-stop-mini-fill

ri-rewind-mini-line

ri-rewind-mini-fill

ri-speed-mini-line

ri-speed-mini-fill

ri-skip-back-mini-line

ri-skip-back-mini-fill

ri-skip-forward-mini-line

ri-skip-forward-mini-fill

ri-repeat-line

ri-repeat-fill

ri-repeat-2-line

ri-repeat-2-fill

ri-repeat-one-line

ri-repeat-one-fill

ri-order-play-line

ri-order-play-fill

ri-shuffle-line

ri-shuffle-fill

ri-play-list-line

ri-play-list-fill

ri-play-list-2-line

ri-play-list-2-fill

ri-play-list-add-line

ri-play-list-add-fill

ri-fullscreen-line

ri-fullscreen-fill

ri-fullscreen-exit-line

ri-fullscreen-exit-fill

ri-equalizer-line

ri-equalizer-fill

ri-sound-module-line

ri-sound-module-fill

ri-rhythm-line

ri-rhythm-fill

ri-voiceprint-line

ri-voiceprint-fill

ri-hq-line

ri-hq-fill

ri-hd-line

ri-hd-fill

ri-4k-line

ri-4k-fill

ri-closed-captioning-line

ri-closed-captioning-fill

ri-aspect-ratio-line

ri-aspect-ratio-fill

ri-picture-in-picture-line

ri-picture-in-picture-fill

ri-picture-in-picture-2-line

ri-picture-in-picture-2-fill

ri-picture-in-picture-exit-line

ri-picture-in-picture-exit-fill

Media

ri-apps-line

ri-apps-fill

ri-apps-2-line

ri-apps-2-fill

ri-function-line

ri-function-fill

ri-dashboard-line

ri-dashboard-fill

ri-menu-line

ri-menu-fill

ri-menu-2-line

ri-menu-2-fill

ri-menu-3-line

ri-menu-3-fill

ri-menu-4-line

ri-menu-4-fill

ri-menu-5-line

ri-menu-5-fill

ri-menu-add-line

ri-menu-add-fill

ri-menu-fold-line

ri-menu-fold-fill

ri-menu-unfold-line

ri-menu-unfold-fill

ri-more-line

ri-more-fill

ri-more-2-line

ri-more-2-fill

ri-star-line

ri-star-fill

ri-star-s-line

ri-star-s-fill

ri-star-half-line

ri-star-half-fill

ri-star-half-s-line

ri-star-half-s-fill

ri-settings-line

ri-settings-fill

ri-settings-2-line

ri-settings-2-fill

ri-settings-3-line

ri-settings-3-fill

ri-settings-4-line

ri-settings-4-fill

ri-settings-5-line

ri-settings-5-fill

ri-settings-6-line

ri-settings-6-fill

ri-list-settings-line

ri-list-settings-fill

ri-forbid-line

ri-forbid-fill

ri-forbid-2-line

ri-forbid-2-fill

ri-information-line

ri-information-fill

ri-error-warning-line

ri-error-warning-fill

ri-question-line

ri-question-fill

ri-alert-line

ri-alert-fill

ri-spam-line

ri-spam-fill

ri-spam-2-line

ri-spam-2-fill

ri-spam-3-line

ri-spam-3-fill

ri-checkbox-blank-line

ri-checkbox-blank-fill

ri-checkbox-line

ri-checkbox-fill

ri-checkbox-indeterminate-line

ri-checkbox-indeterminate-fill

ri-add-box-line

ri-add-box-fill

ri-checkbox-blank-circle-line

ri-checkbox-blank-circle-fill

ri-checkbox-circle-line

ri-checkbox-circle-fill

ri-indeterminate-circle-line

ri-indeterminate-circle-fill

ri-add-circle-line

ri-add-circle-fill

ri-close-circle-line

ri-close-circle-fill

ri-radio-button-line

ri-radio-button-fill

ri-checkbox-multiple-blank-line

ri-checkbox-multiple-blank-fill

ri-checkbox-multiple-line

ri-checkbox-multiple-fill

ri-check-line

ri-check-fill

ri-check-double-line

ri-check-double-fill

ri-close-line

ri-close-fill

ri-add-line

ri-add-fill

ri-subtract-line

ri-subtract-fill

ri-divide-line

ri-divide-fill

ri-arrow-left-up-line

ri-arrow-left-up-fill

ri-arrow-up-line

ri-arrow-up-fill

ri-arrow-right-up-line

ri-arrow-right-up-fill

ri-arrow-right-line

ri-arrow-right-fill

ri-arrow-right-down-line

ri-arrow-right-down-fill

ri-arrow-down-line

ri-arrow-down-fill

ri-arrow-left-down-line

ri-arrow-left-down-fill

ri-arrow-left-line

ri-arrow-left-fill

ri-arrow-up-circle-line

ri-arrow-up-circle-fill

ri-arrow-right-circle-line

ri-arrow-right-circle-fill

ri-arrow-down-circle-line

ri-arrow-down-circle-fill

ri-arrow-left-circle-line

ri-arrow-left-circle-fill

ri-arrow-up-s-line

ri-arrow-up-s-fill

ri-arrow-down-s-line

ri-arrow-down-s-fill

ri-arrow-right-s-line

ri-arrow-right-s-fill

ri-arrow-left-s-line

ri-arrow-left-s-fill

ri-arrow-drop-up-line

ri-arrow-drop-up-fill

ri-arrow-drop-right-line

ri-arrow-drop-right-fill

ri-arrow-drop-down-line

ri-arrow-drop-down-fill

ri-arrow-drop-left-line

ri-arrow-drop-left-fill

ri-arrow-left-right-line

ri-arrow-left-right-fill

ri-arrow-up-down-line

ri-arrow-up-down-fill

ri-arrow-go-back-line

ri-arrow-go-back-fill

ri-arrow-go-forward-line

ri-arrow-go-forward-fill

ri-download-line

ri-download-fill

ri-upload-line

ri-upload-fill

ri-download-2-line

ri-download-2-fill

ri-upload-2-line

ri-upload-2-fill

ri-download-cloud-line

ri-download-cloud-fill

ri-download-cloud-2-line

ri-download-cloud-2-fill

ri-upload-cloud-line

ri-upload-cloud-fill

ri-upload-cloud-2-line

ri-upload-cloud-2-fill

ri-login-box-line

ri-login-box-fill

ri-logout-box-line

ri-logout-box-fill

ri-logout-box-r-line

ri-logout-box-r-fill

ri-login-circle-line

ri-login-circle-fill

ri-logout-circle-line

ri-logout-circle-fill

ri-logout-circle-r-line

ri-logout-circle-r-fill

ri-refresh-line

ri-refresh-fill

ri-shield-line

ri-shield-fill

ri-shield-cross-line

ri-shield-cross-fill

ri-shield-flash-line

ri-shield-flash-fill

ri-shield-star-line

ri-shield-star-fill

ri-shield-user-line

ri-shield-user-fill

ri-shield-keyhole-line

ri-shield-keyhole-fill

ri-shield-check-line

ri-shield-check-fill

ri-delete-back-line

ri-delete-back-fill

ri-delete-back-2-line

ri-delete-back-2-fill

ri-delete-bin-line

ri-delete-bin-fill

ri-delete-bin-2-line

ri-delete-bin-2-fill

ri-delete-bin-3-line

ri-delete-bin-3-fill

ri-delete-bin-4-line

ri-delete-bin-4-fill

ri-delete-bin-5-line

ri-delete-bin-5-fill

ri-delete-bin-6-line

ri-delete-bin-6-fill

ri-delete-bin-7-line

ri-delete-bin-7-fill

ri-lock-line

ri-lock-fill

ri-lock-2-line

ri-lock-2-fill

ri-lock-password-line

ri-lock-password-fill

ri-lock-unlock-line

ri-lock-unlock-fill

ri-eye-line

ri-eye-fill

ri-eye-off-line

ri-eye-off-fill

ri-eye-2-line

ri-eye-2-fill

ri-eye-close-line

ri-eye-close-fill

ri-search-line

ri-search-fill

ri-search-2-line

ri-search-2-fill

ri-search-eye-line

ri-search-eye-fill

ri-zoom-in-line

ri-zoom-in-fill

ri-zoom-out-line

ri-zoom-out-fill

ri-find-replace-line

ri-find-replace-fill

ri-share-line

ri-share-fill

ri-share-box-line

ri-share-box-fill

ri-share-circle-line

ri-share-circle-fill

ri-share-forward-line

ri-share-forward-fill

ri-share-forward-2-line

ri-share-forward-2-fill

ri-share-forward-box-line

ri-share-forward-box-fill

ri-side-bar-line

ri-side-bar-fill

ri-time-line

ri-time-fill

ri-timer-line

ri-timer-fill

ri-timer-2-line

ri-timer-2-fill

ri-timer-flash-line

ri-timer-flash-fill

ri-alarm-line

ri-alarm-fill

ri-history-line

ri-history-fill

ri-thumb-down-line

ri-thumb-down-fill

ri-thumb-up-line

ri-thumb-up-fill

ri-alarm-warning-line

ri-alarm-warning-fill

ri-notification-badge-line

ri-notification-badge-fill

ri-toggle-line

ri-toggle-fill

ri-filter-line

ri-filter-fill

ri-filter-2-line

ri-filter-2-fill

ri-filter-3-line

ri-filter-3-fill

ri-filter-off-line

ri-filter-off-fill

ri-loader-line

ri-loader-fill

ri-loader-2-line

ri-loader-2-fill

ri-loader-3-line

ri-loader-3-fill

ri-loader-4-line

ri-loader-4-fill

ri-loader-5-line

ri-loader-5-fill

ri-external-link-line

ri-external-link-fill

System

ri-user-line

ri-user-fill

ri-user-2-line

ri-user-2-fill

ri-user-3-line

ri-user-3-fill

ri-user-4-line

ri-user-4-fill

ri-user-5-line

ri-user-5-fill

ri-user-6-line

ri-user-6-fill

ri-user-smile-line

ri-user-smile-fill

ri-account-box-line

ri-account-box-fill

ri-account-circle-line

ri-account-circle-fill

ri-account-pin-box-line

ri-account-pin-box-fill

ri-account-pin-circle-line

ri-account-pin-circle-fill

ri-user-add-line

ri-user-add-fill

ri-user-follow-line

ri-user-follow-fill

ri-user-unfollow-line

ri-user-unfollow-fill

ri-user-shared-line

ri-user-shared-fill

ri-user-shared-2-line

ri-user-shared-2-fill

ri-user-received-line

ri-user-received-fill

ri-user-received-2-line

ri-user-received-2-fill

ri-user-location-line

ri-user-location-fill

ri-user-search-line

ri-user-search-fill

ri-user-settings-line

ri-user-settings-fill

ri-user-star-line

ri-user-star-fill

ri-user-heart-line

ri-user-heart-fill

ri-admin-line

ri-admin-fill

ri-contacts-line

ri-contacts-fill

ri-group-line

ri-group-fill

ri-group-2-line

ri-group-2-fill

ri-team-line

ri-team-fill

ri-user-voice-line

ri-user-voice-fill

ri-emotion-line

ri-emotion-fill

ri-emotion-2-line

ri-emotion-2-fill

ri-emotion-happy-line

ri-emotion-happy-fill

ri-emotion-normal-line

ri-emotion-normal-fill

ri-emotion-unhappy-line

ri-emotion-unhappy-fill

ri-emotion-laugh-line

ri-emotion-laugh-fill

ri-emotion-sad-line

ri-emotion-sad-fill

ri-skull-line

ri-skull-fill

ri-skull-2-line

ri-skull-2-fill

ri-men-line

ri-men-fill

ri-women-line

ri-women-fill

ri-travesti-line

ri-travesti-fill

ri-genderless-line

ri-genderless-fill

ri-open-arm-line

ri-open-arm-fill

ri-body-scan-line

ri-body-scan-fill

ri-parent-line

ri-parent-fill

ri-robot-line

ri-robot-fill

ri-aliens-line

ri-aliens-fill

ri-bear-smile-line

ri-bear-smile-fill

ri-mickey-line

ri-mickey-fill

ri-criminal-line

ri-criminal-fill

ri-ghost-line

ri-ghost-fill

ri-ghost-2-line

ri-ghost-2-fill

ri-ghost-smile-line

ri-ghost-smile-fill

ri-star-smile-line

ri-star-smile-fill

ri-spy-line

ri-spy-fill

User & Faces

ri-sun-line

ri-sun-fill

ri-moon-line

ri-moon-fill

ri-flashlight-line

ri-flashlight-fill

ri-cloudy-line

ri-cloudy-fill

ri-cloudy-2-line

ri-cloudy-2-fill

ri-mist-line

ri-mist-fill

ri-foggy-line

ri-foggy-fill

ri-cloud-windy-line

ri-cloud-windy-fill

ri-windy-line

ri-windy-fill

ri-rainy-line

ri-rainy-fill

ri-drizzle-line

ri-drizzle-fill

ri-showers-line

ri-showers-fill

ri-heavy-showers-line

ri-heavy-showers-fill

ri-thunderstorms-line

ri-thunderstorms-fill

ri-hail-line

ri-hail-fill

ri-snowy-line

ri-snowy-fill

ri-sun-cloudy-line

ri-sun-cloudy-fill

ri-moon-cloudy-line

ri-moon-cloudy-fill

ri-tornado-line

ri-tornado-fill

ri-typhoon-line

ri-typhoon-fill

ri-haze-line

ri-haze-fill

ri-haze-2-line

ri-haze-2-fill

ri-sun-foggy-line

ri-sun-foggy-fill

ri-moon-foggy-line

ri-moon-foggy-fill

ri-moon-clear-line

ri-moon-clear-fill

ri-temp-hot-line

ri-temp-hot-fill

ri-temp-cold-line

ri-temp-cold-fill

ri-celsius-line

ri-celsius-fill

ri-fahrenheit-line

ri-fahrenheit-fill

ri-fire-line

ri-fire-fill

ri-blaze-line

ri-blaze-fill

ri-earthquake-line

ri-earthquake-fill

ri-flood-line

ri-flood-fill

ri-meteor-line

ri-meteor-fill

ri-rainbow-line

ri-rainbow-fill

Weather

ri-basketball-line

ri-basketball-fill

ri-bell-line

ri-bell-fill

ri-billiards-line

ri-billiards-fill

ri-boxing-line

ri-boxing-fill

ri-cake-line

ri-cake-fill

ri-cake-2-line

ri-cake-2-fill

ri-cake-3-line

ri-cake-3-fill

ri-door-lock-line

ri-door-lock-fill

ri-door-lock-box-line

ri-door-lock-box-fill

ri-football-line

ri-football-fill

ri-game-line

ri-game-fill

ri-handbag-line

ri-handbag-fill

ri-key-line

ri-key-fill

ri-key-2-line

ri-key-2-fill

ri-knife-line

ri-knife-fill

ri-knife-blood-line

ri-knife-blood-fill

ri-lightbulb-line

ri-lightbulb-fill

ri-lightbulb-flash-line

ri-lightbulb-flash-fill

ri-outlet-line

ri-outlet-fill

ri-outlet-2-line

ri-outlet-2-fill

ri-ping-pong-line

ri-ping-pong-fill

ri-plug-line

ri-plug-fill

ri-plug-2-line

ri-plug-2-fill

ri-reserved-line

ri-reserved-fill

ri-shirt-line

ri-shirt-fill

ri-sword-line

ri-sword-fill

ri-t-shirt-line

ri-t-shirt-fill

ri-t-shirt-2-line

ri-t-shirt-2-fill

ri-t-shirt-air-line

ri-t-shirt-air-fill

ri-umbrella-line

ri-umbrella-fill

ri-character-recognition-line

ri-character-recognition-fill

ri-voice-recognition-line

ri-voice-recognition-fill

ri-leaf-line

ri-leaf-fill

ri-plant-line

ri-plant-fill

ri-seedling-line

ri-seedling-fill

ri-recycle-line

ri-recycle-fill

ri-scales-line

ri-scales-fill

ri-scales-2-line

ri-scales-2-fill

ri-scales-3-line

ri-scales-3-fill

ri-fridge-line

ri-fridge-fill

ri-wheelchair-line

ri-wheelchair-fill

ri-cactus-line

ri-cactus-fill

ri-door-line

ri-door-fill

ri-door-open-line

ri-door-open-fill

ri-door-closed-line

ri-door-closed-fill

Others

- + \ No newline at end of file diff --git a/docs/docs/webdev/Guidelines/images/index.html b/docs/docs/webdev/Guidelines/images/index.html index 51b9440589..dcc41988f7 100644 --- a/docs/docs/webdev/Guidelines/images/index.html +++ b/docs/docs/webdev/Guidelines/images/index.html @@ -5,7 +5,7 @@ Use of images | EEA Design System - + @@ -14,7 +14,7 @@ To acknowledge a copyrighted work add three things to the image, the copyright symbol, the year of the copyright, and the name of the copyright holder.

Best practices

  • your visual content is relevant to the topic of the webpage
  • only add an image whenever it adds value to the webpage
  • place images near the relevant text
  • the most important image should be near the top of the webpage
  • avoid embedding text in images, not all users can access them (page translation tools can't read images)
  • text in HTML, provide alt text for images; follow rules of accessibility
  • create good content is equally important as visual content for images

Widely supported image formats

File type (short)File type (long)File extension
GIFgraphics Interchange Format.gif
JPEGjoint Photographic Expert Group image.jpeg .jpg
PNGportable Network Graphics.png
SVGscalable Vector Graphics.svg

Raster graphic

Raster images are pixel-based. When you scale up a raster image you'll see jagged and blurry edges.

GIF (Graphics Interchange Format)

  • fewer colours, file size is smaller than JPEG
  • interlaced progressive loading, low-quality version first, more detailed image is loaded next
  • fewer colours, file size is smaller than JPEG
  • does not lose any data with compression
  • best use for web graphics with few colours only, and line drawings

JPG/JPEG (Joint Photographic-Experts-Group)

  • can display millions of colours, use JPEG format for photographs, still images, shading with light and dark
  • use JPEG when file size is more important than the quality of the image
  • optimising JPEG images; 60% - 75% is usually optimal for web publishing 16-bit data format
  • compatible across many platforms and image editors

PNG (Portable Network Graphics)

  • support transparency (alpha channel), allow a translucent look
  • lossless compression, no loss of data
  • manage high-contrast or detailed images better than JPEG
  • they can go down to very small file sizes when there are limited colours, use an 8-bit colour palette instead of a 24 colour palette
  • PNG images can be used in any colour background still maintain the original appearance

Vector graphic

Vector image format can produce results with high fidelity at every resolution setting. It is an ideal format for high-resolution screens. If you zoom into a vector graphic it will always remain the same quality.

SVG (Scalable Vector Graphics)

  • SVG is in vector format – it does not lose any data when compressed
  • SVG formats are supported by most contemporary browsers
  • the image file size is lightweight and compressible supports transparency

Editing visuals

  • don't apply effects, gradients, borders or filters. It can make the picture look manipulated
  • don't pick photos with frames, rounded corners or drop shadows
  • cropping. Pay attention to the copyright. In some cases you need prior consent from the author to alter the image
- + \ No newline at end of file diff --git a/docs/docs/webdev/Guidelines/intro/index.html b/docs/docs/webdev/Guidelines/intro/index.html index c425dc0bf2..5e11654fcf 100644 --- a/docs/docs/webdev/Guidelines/intro/index.html +++ b/docs/docs/webdev/Guidelines/intro/index.html @@ -5,14 +5,14 @@ Intro | EEA Design System - +

Intro

Guidelines

The DS v1 is the EEA's design system, created with a set of guiding principles that followed throughout the process. By following a user-centered design approach and best UX practices, the DS v1 is the result of in-depth research into the users' needs and goals, offering solutions that are assessed, tested and revised continuously. All components included in the DS v1 follow the Web Content Accessibility Guidelines (WCAG).

The main characteristics of our design system are:

  • Minimal use of drop shadows
  • Sharp edges and corners
  • Uncluttered, distraction-free design
  • High readability with clear typography
  • Easily adjusted for responsive design

We emphasize more on functionality rather than appearance and in parallel we try to offer a consistent appearance irrespective of the screen resolution and types of devices. Trying not to use unnecessary designing elements, we focus on faster site designing and minimum loading time.

- + \ No newline at end of file diff --git a/docs/docs/webdev/Guidelines/spacing/index.html b/docs/docs/webdev/Guidelines/spacing/index.html index 2d5b4db13a..8d436f2342 100644 --- a/docs/docs/webdev/Guidelines/spacing/index.html +++ b/docs/docs/webdev/Guidelines/spacing/index.html @@ -5,7 +5,7 @@ Spacing | EEA Design System - + @@ -13,7 +13,7 @@

Spacing

To ensure that layouts are visually balanced, most measurements align to 8px, which corresponds to both spacing and the overall layout. Consistent spacing creates visual balance that makes the user interface (UI) easier for merchants to scan. Apply consistent spacing to improve the quality of the UI. Components are sized in 8px increments, ensuring a consistent visual rhythm across each screen. Smaller elements, such as icons, can align to a 4px grid, while typography can fall on a 4px baseline grid, meaning that each line’s typographic baseline is spaced in increments of 4px from its neighbor.

Principles

Create visual rhythm
We use incrementally measured spacing to create harmonious arrangements of components and text. This gives the elements a predictable rhythm, which makes the experience as a whole feel intentional and well designed.

Precise but flexible
Beyond mathematical precision, spacing also reacts to the objects it surrounds, giving more space to larger objects, less to small. Optical adjustments can also be made if an element looks off and the spacing needs a nudge to make things feel right.

Two types of spacing scale

Component Spacing
Controls the spacing inside the components.
For components use smaller increments. ( 4px, 8px, 12px, 16px, 20px, 24px, 32px, 36px, 40px, 48px)

Layout Spacing
Controls space between the components.
For layout scale use larger increments (16px, 24px, 32px, 48px, 64px, 96px )

Spacing Gaps in pixels

Token namePixelsTypically used
space-0251pxnot typically used
space-052pxnot typically used
space-14pxseparate related elements and for small padding
space-28pxonly for right and left padding of buttons, form elements and horizontal tabs
space-312pxto separate unrelated elements or groups and for normal padding
space-416pxto separate sub-sections of content
space-520pxto separate sub-sections of content
space-624pxto separate sub-sections of content
space-728pxto separate sections of content
space-832pxto separate sections of content
space-936pxto separate sections of content
space-1040px
space-1144px
space-1248px
space-1352px
space-1456px
space-1560px
space-1664px
space-1768px
space-1872px
space-1976px
space-2080px
space-2496px

Spacing Gaps in rem

Token nameRem
rem-space-0250.063rem
rem-space-050.125rem
rem-space-10.25rem
rem-space-20.5rem
rem-space-30.75rem
rem-space-41rem
rem-space-51.25rem
rem-space-61.5rem
rem-space-71.75rem
rem-space-82rem
rem-space-92.25rem
rem-space-102.5rem
rem-space-112.75rem
rem-space-123rem
rem-space-133.25rem
rem-space-143.5rem
rem-space-153.75rem
rem-space-164rem
rem-space-174.25rem
rem-space-184.5rem
rem-space-194.75rem
rem-space-205rem
rem-space-246rem

Spacing Gaps in em

Token nameRem
em-space-0250.063em
em-space-050.125em
em-space-10.25em
em-space-20.5em
em-space-30.75em
em-space-41em
em-space-51.25em
em-space-61.5em
em-space-71.75em
em-space-82em
em-space-92.25em
em-space-102.5em
em-space-112.75em
em-space-123em
em-space-133.25em
em-space-143.5em
em-space-153.75em
em-space-164em
em-space-174.25em
em-space-184.5em
em-space-194.75em
em-space-205em
em-space-246em
- + \ No newline at end of file diff --git a/docs/docs/webdev/Guidelines/typography/index.html b/docs/docs/webdev/Guidelines/typography/index.html index 3285412a60..0af89739a8 100644 --- a/docs/docs/webdev/Guidelines/typography/index.html +++ b/docs/docs/webdev/Guidelines/typography/index.html @@ -5,7 +5,7 @@ Typography | EEA Design System - + @@ -16,7 +16,7 @@ but 150% tends to be the most quoted sweet spot (and a WCAG recommendation). You should experiment to see what looks best with your text. The line-height value is always divisible by 4 to support the grid.

This is why for body text we use 150% line height, while for headers we use 120% due to the larger font size where using 150% would add too much space between the heading lines.


Letter spacing

Letter spacing (also known as character spacing or tracking ) is the adjustment of the horizontal white space between the letters in a block of text. Unlike kerning, which affects only designated pairs of letters, letterspacing affects every pair. By adjusting letter spacing to the environment you are working with you will help readers consume your information faster, and more efficiently. The fun part is that they won’t even notice it!

Headings -0.015em (-1.5%)

Body 0%

Caption and Small text 0.01em (1%)


Text color

Body text color is blue-grey-5 (#3D5265)

Color also plays a key role in an interface’s typographic hierarchy, often by established types like:

  • Brand colors and supplementary colors, for most interface text whether body or heading.
  • Interactive, not just for links but also flat buttons, tab labels, and more
  • Disabled, often resulting is especially lower contrast treatments
  • Error, usually red, for the highest contrast with its surroundings

Line length

Line-length is the number of characters displayed in a single line. Lines that are too long or too short can distract readers. For readability, limit to no more than 80 characters including spaces for desktop. Line length for mobile is recommended to use 40 to 60 characters including space per line.


Base Font Size

We set 16px (1rem) as the base font size for body text to ensure readability. It is the default font size for most browsers.


Desktop Styles

Heading 1

Font Size: 44px or 2.75rem
Letter spacing: -0.015em (-1.5%)
Line height: 1.2 (120%)

Heading 2

Font Size: 32px or 2rem
Letter spacing: -0.015em (-1.5%)
Line height: 1.2 (120%)

Heading 3

Font Size: 26px or 1.625rem
Letter spacing: -0.015em (-1.5%)
Line height: 1.2 (120%)

Heading 4

Font Size: 20px or 1.25rem
Letter spacing: -0.015em (-1.5%)
Line height: 1.2 (120%)
Heading 5
Font Size: 18px or 1.125rem
Letter spacing: -0.015em (-1.5%)
Line height: 1.2 (120%)

Body text

Font Size: 16px or 1rem
Letter spacing: 0 (0%)
Line height: 1.5 (150%)

Caption text

Font Size: 14px or 0.875rem
Letter spacing: 0.01 (1%)
Line height: 1.5 (150%)

Small text

Font Size: 12px or 0.75rem
Letter spacing: 0.01 (1%)
Line height: 1.5 (150%)

Mobile Styles

Heading 1

Font Size: 30px or 1.875rem
Letter spacing: -0.015em (-1.5%)
Line height: 1.2 (120%)

Heading 2

Font Size: 24px or 1.5rem
Letter spacing: -0.015em (-1.5%)
Line height: 1.2 (120%)

Heading 3

Font Size: 20px or 1.25rem
Letter spacing: -0.015em (-1.5%)
Line height: 1.2 (120%)

Heading 4

Font Size: 18px or 1.125rem
Letter spacing: -0.015em (-1.5%)
Line height: 1.2 (120%)

Body

Font Size: 16px or 1rem
Letter spacing: 0 (0%)
Line height: 1.5 (150%)

Caption

Font Size: 14px or 0.875rem
Letter spacing: 0.01em (1%)
Line height: 1.5 (150%)

Small text

Font Size: 12px or 0.75rem
Letter spacing: 0.01em (1%)
Line height: 1.5 (150%)

Typography tokens

Weight

Token nameValueStyle
font-weight-1100Thin
font-weight-2200Light
font-weight-3300Book
font-weight-4400Regular
font-weight-5500Medium
font-weight-6600SemiBold
font-weight-7700Bold
font-weight-8800ExtraBold
font-weight-9900Black

Line height

Token nameValue(no unit)
font-lineheight-00.95
font-lineheight-01.1
font-lineheight-11.2
font-lineheight-21.375
font-lineheight-31.5
font-lineheight-41.75
font-lineheight-52

Letter spacing

Token nameValue(em)
font-letterspacing-000-.02
font-letterspacing-00-.015
font-letterspacing-0-.01
font-letterspacing-1.01
font-letterspacing-2.015
font-letterspacing-3.02
font-letterspacing-4.075
font-letterspacing-5.15

Font size

Token nameValue(rem)Value(px)
font-size-00.7512
font-size-0.87514
font-size-1116
font-size-21.12518
font-size-31.2520
font-size-41.524
font-size-51.62526
font-size-61.87530
font-size-7232
font-size-82.2536
font-size-92.540
font-size-102.7544

Font size fluid

Token nameValue
font-size-fluid-0clamp(1.125rem, 2vw, 1.25rem)
font-size-fluid-1clamp(1.25rem, 4vw, 1.625rem)
font-size-fluid-2clamp(1.5rem, 6vw, 2rem)
font-size-fluid-3clamp(1.875rem, 9vw, 2.75rem)
- + \ No newline at end of file diff --git a/docs/docs/webdev/Resources/developer-guidelines/index.html b/docs/docs/webdev/Resources/developer-guidelines/index.html index 6b74f237ea..f17ec6a709 100644 --- a/docs/docs/webdev/Resources/developer-guidelines/index.html +++ b/docs/docs/webdev/Resources/developer-guidelines/index.html @@ -5,7 +5,7 @@ Developer Guidelines | EEA Design System - + @@ -71,7 +71,7 @@ guidelines as to what combinations of props and variations are allowed, to ensure a consistent look and feel. One place to document these constraints is in the control options we have in Storybook.

- + \ No newline at end of file diff --git a/docs/docs/webdev/Resources/theming-guidelines/index.html b/docs/docs/webdev/Resources/theming-guidelines/index.html index e2d0617436..a662bafa51 100644 --- a/docs/docs/webdev/Resources/theming-guidelines/index.html +++ b/docs/docs/webdev/Resources/theming-guidelines/index.html @@ -5,7 +5,7 @@ Theming Guidelines | EEA Design System - + @@ -28,7 +28,7 @@ it's simply a job of changing one global variable:

// site.variables
/* This adjusts the meta alignment across all elements */
@metaAlign: right;

The same is true with colors used in components, try to avoid custom values set on components only as they should be part of the site.variables color pallete.

Semantic UI global setting example

We see this rule played out in many places within site.variables:

// site.variables
/*--------------
Form Input
---------------*/
/* This adjusts the default form input across all elements */
@inputBackground : @white;

Then within form.variables we have several rules that make use of the global setting:

// form.variables
/* Text Area */
@textAreaBackground: @inputBackground;

/* Inverted */
@invertedInputBackground: @inputBackground;

Check components design when having odd numbers or images

As written down in the Card component issue, if your component accepts images consider how they would adapt in case there is a mix between portrait and landscapei images.

What about situations where you have an odd number of elements or the body of the components differ in size?

The components need to be checked for such situations and to ensure they are flexible to deal with these mix and match elements.

Ex:

If the card is flex based and the parent wrapper is flex as well, consider adding a max-height to the card body or image wrapper so that they all keep a standard size.

Code formatting

  • CSS and less files should be formatted using prettier. Indent space will be 2 spaces.
  • Files should be edited as Unix files, with LF line endings.
- + \ No newline at end of file diff --git a/docs/docs/webdev/Templates/Grid/index.html b/docs/docs/webdev/Templates/Grid/index.html index e3e022c35a..0edf164376 100644 --- a/docs/docs/webdev/Templates/Grid/index.html +++ b/docs/docs/webdev/Templates/Grid/index.html @@ -5,7 +5,7 @@ Grid | EEA Design System - + @@ -16,7 +16,7 @@

Don’ts

Do not make gutters too large or the same width as the columns. Oversized gutters will not leave enough room for content and may prevent a layout from appearing unified.

Breakpoints

A breakpoint is the screen size threshold determined by specific layout requirements. At a given breakpoint range, the layout adjusts to suit the screen size and orientation. ΕΕΑ provides responsive layouts based on 4-column, 8-column, and 12-column grids, available for use across different screens, devices, and orientations. Each breakpoint range determines the number of columns, and recommended margins and gutters for each display size.

BreakpointsColumnsGuttersMargins
Mobile320-480px420px or 1.25rem30px or 1.875rem
Tablet481-835px8 20px or 1.25rem40px or 2.5rem
Desktop1025px and above1220px or 1.25rem140px or 8.75rem
- + \ No newline at end of file diff --git a/docs/docs/webdev/Templates/PageHeader/index.html b/docs/docs/webdev/Templates/PageHeader/index.html index 30a3549521..05b5802a66 100644 --- a/docs/docs/webdev/Templates/PageHeader/index.html +++ b/docs/docs/webdev/Templates/PageHeader/index.html @@ -5,13 +5,13 @@ Page Header | EEA Design System - +

Page Header

The page header component provides users with the context of the page. It is always placed just below the site header.

Anatomy

ComponentsMandatoryOptional
Page titleyesno
Meta (content type, published date, modified date, reading time)noyes
Download - Bookmark actionsnoyes
Breadcrumb
The Breadcrumb component provides information on the page and its relationship to the site's hierarchy and structure.
It is optional if your website's navigational structure has less than 3 levels.
noyes
Image copyrightsyesno

Do's

  • ensure the pages contain all the components and elements in the anatomy table above
  • always use a page header when building your internal pages
  • when choosing a background image, make sure it highlights the main object related to the content and is meaningful
  • choose image copyright text colors accordingly, use light font color on darker images and darker font color on lighter ones

Don'ts

  • don't use more than one-page header per page
  • do not use a background image unless there is a communication need, as it might be a distraction

When to use

  • to highlight the topic of the page, or to show important information about the page

When not to use

  • the page header is not used for the homepage of the website
- + \ No newline at end of file diff --git a/docs/docs/webdev/Templates/SiteFooter/index.html b/docs/docs/webdev/Templates/SiteFooter/index.html index 4b2d4f97f1..ae73d81e44 100644 --- a/docs/docs/webdev/Templates/SiteFooter/index.html +++ b/docs/docs/webdev/Templates/SiteFooter/index.html @@ -5,13 +5,13 @@ Site Footer | EEA Design System - +

Site Footer

The core footer provides supplementary information such as copyright, legal, privacy, social media, contact information and links to other important sites within the EEA. It is always placed at the bottom of every page. Always use a footer when building your page

Anatomy

Νο.ComponentsMandatoryDescription
1EEA logoyesLogo of European Environment Agency (EEA)
2EIONET logoyesLogo of European Environment Information and Observation Network
3Contact information
yesLinks to the associated services available through the EEA site
4Social mediayesLinks to social EEA's social media
5Environmental information systemsyesEuropean Information Systems
6Legal navigationyesContains legal information links - consistent throughout the family sites
7Content owner detailsyesIndicates ownership over the site's content

Do's

  • make sure the footer contain all the elements in the anatomy table above

Don'ts

  • don't use more than one footer per page
- + \ No newline at end of file diff --git a/docs/docs/webdev/Templates/SiteHeader/index.html b/docs/docs/webdev/Templates/SiteHeader/index.html index 723204bd3f..d8a8b6ddd9 100644 --- a/docs/docs/webdev/Templates/SiteHeader/index.html +++ b/docs/docs/webdev/Templates/SiteHeader/index.html @@ -5,13 +5,13 @@ Site Header | EEA Design System - +

Site Header

The EEA header shows users that they are on EEA portal and which service they are using.

Anatomy

Νο.ComponentsMandatoryDescription
1Official EU website statementyesAll official European Union website addresses are in the europa.eu domain
2Environmental Information systemsyesComplete list of EEA's thematic websites
3Languages
yesLanguage select
4EEA IdentityyesLogo of European Environmental Agency
5MenuyesMain navigation of the website
6SearchyesEnables the user to search and retrieve related information from using keywords

Do’s

  • You must use the EEA header at the top of every page if your service is being hosted on one of these domains:
    • Eea.europa.eu
  • Make sure that contain all mandatory element from the Anatomy table

Dont’s

  • You must not use the EEA header if your service is not being hosted in one of the above domains.
- + \ No newline at end of file diff --git a/docs/docs/webdev/Utilities/intro/index.html b/docs/docs/webdev/Utilities/intro/index.html index 143038843c..41f79457b7 100644 --- a/docs/docs/webdev/Utilities/intro/index.html +++ b/docs/docs/webdev/Utilities/intro/index.html @@ -5,13 +5,13 @@ Utilities | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/whatsnew/index.html b/docs/docs/whatsnew/index.html index 0a522b4ff8..0a60b7245f 100644 --- a/docs/docs/whatsnew/index.html +++ b/docs/docs/whatsnew/index.html @@ -5,13 +5,13 @@ What's new | EEA Design System - +
-

What's new

EEA Design System (1.0)

Components ready to be used

The following components are ready to be used as Volto blocks, slate integration, or via the advanced block styler:

  • Accordion block
  • Call to Action block
  • Callout - part of the Description block, slate
  • Card - part of the Teaser block and Listing block, it includes several variations like round card e.g., used for Avatar
  • Divider block
  • Headings slate
  • Hero block
  • Item block - used for text with an icon (remixicon or custom SVG/image) on the left/right
  • List slate - ordered and unordered
  • Quote block
  • Statistic block
  • Tag block
  • Table block
  • Tabs block
  • Timeline block

Future releases

Below is a non-exhaustive list of the work-in-progress which is planned for future releases:

  • Navigation Portlet (used on the left/right hand of content)
  • Spacing/padding system. We want to add the ability for editors to consistently apply various spacing/padding on certain components in order to allow a better alignment when components are used together.
  • Improve docusaurus and storybook with more components, controls, and variations in order to better reflect what is possible in Volto.

Generated by auto-changelog.

Unreleased - 2023-04-07T18:14:46.589Z

🚀 New Features

  • feat(storybook): components keyboard and screen reader optimization #324 from eea/design-system-accessibility 85faff7

🐛 Bug Fixes

  • fix: dont run isInternalURL twice a48984e
  • fix: github autoformat be97749
  • fix(cards): focus outline for header needed for the overflow hidden solution with max title lines 849a7a8
  • fix(header): external url in header now takes you to the correct url #330 from eea/header-external-url-fix 086c61d
  • fix(item): flex variant on edit when inside blockchooser #333 from eea/fix-item-csss 65b9099
  • fix: external url in header 9e3aea6
  • fix: check if client method change 7c53b83
  • fix(item): use child selector instead of descendent as it interferes with blockchooser refs #157040 ad4ca37
  • fix(tag): fix in args 18eaaf4

💅 Enhancements

  • refactor(megaMenu): align menu items with demo site for better testing 82a5c84
  • refactor(breadcrumbs): updates on structure and story for accessibility 770c8c0
  • change(logo): update eionet svg 3c87fc7
  • refactor(downloadLabeledIcon): accessibility fix df3935d
  • refactor(languageLabeledIcon): accessibility fix 61edd9e
  • refactor(megaMenu): Restructure Topics and Countries lists d816e7a
  • refactor(newTabLabeledIcon): accessibility fix 211e40a
  • refactor(comment): accessibility fixes and text button update dad8cb6
  • change(mega-menu): use lists for navigation, enhance voice over support for better accessibility d13137f
  • change(storybook): removed links for Label and Comment that we implement without a link ee0bfdf
  • refactor(card): fix header outline not showing issue 48fc2e2
  • refactor(header): firefox accessibility errors fix c7d35b9
  • change(ContextNavigation): accessibility updates, not restructuring of the volto component 03fe83d
  • refactor(modal): restructure close icon as button f1b836e
  • refactor(label): add href attribute to links 05f664d
  • refactor(inpageNavigation): restructure as a button 48e22ac
  • refactor(labeledIconGroup): group updates for all labeled icons a679d9d
  • change(breadcrumbs): label modification for better screen reader output c967bef
  • refactor(checkbox): accessibility fix 3b3047f
  • change(mega-menu): sub-title padding tweaks for better spacing normalization e08668d
  • change(card): simplified headerLineHeightOffset used as margin top for cards header ca61105
  • refactor(megaMenu): clean up function after test 883eb73
  • change(mega-menu): added code to align countries left column subtitle with the right column 1aa33dd
  • change(logos): updated eionet logo used in the site footer #318 from eea/footer-logo-update 70671d0
  • change(breadcrumbs): fixed sizing of breadcrumbs list items 1761e98
  • change(checkbox): toggle hover color correction 4f4d0df
  • change(breadcrumbs,mega-menu): better screen readers support, see links instead of groups #309 from eea/firefox-accessibility-tab-issues d6b0b4a
  • change(card): add links to teaser titles cc64c74
  • change(inpageNavigation): story improvements ade63c6

🏠 Internal changes

  • style(megaMenu): remove comments and unused properties fa5f8f8

🏠 Documentation changes

1.0.6 - 2023-03-29

🚀 New Features

  • feat: add viewport-(width/height) less functions and fixed banner image url #329 from eea/develop e8e70bd
  • feat: add viewport-(width/height) less functions 68300a3

💅 Enhancements

  • change(docusaurus): set full class name for remix icons f435e10
  • refactor(Banner.jsx): use flattenToAppURL helper function to get image source URL 24b13d7

🏠 Internal changes

  • style(theme): update container width and margins in eea theme 3e4446a

🛠️ Others

  • horizontal overflow hidden in view mode f395f27

1.0.5 - 2023-03-28

🚀 New Features

  • feat: improve full-width class 70bba7e

🐛 Bug Fixes

  • fix(banner): Add missing divider for time tag #327 from eea/banner-metadata c46a583
  • fix(banner): Add missing divider for time tag 7d68c39

1.0.4 - 2023-03-27

🚀 New Features

  • feat(copyright): Add copyright prefix - Image - refs #250724 6a72772

🏠 Internal changes

  • style(copyright): Cleanup useless min-height - refs #250724 f2457df

🛠️ Others

1.0.3 - 2023-03-24

🐛 Bug Fixes

  • fix: improve full-width class 9322259
  • fix(header): Remove z-index from subsite logo #320 from eea/subsite-logo 5091100
  • fix(header): Remove z-index from subsite logo d433a97

💅 Enhancements

  • change(header): Add search popup customizations from eea-website-theme 43e5a78
  • change(popup): create custom popup for better accessibility 036aac9
  • change(popup): added most important popup properties from Semantic ui implementation 61f65bc
  • change(banner): use custom-made Popup for better accessibility 10d0fcf
  • change(banner): use custom-made Popup for better accessibility 9108bee
  • change(popup): added also the basic property a4497ac
  • change(colors): update gray-4 color value #321 from eea/update-gray-4 f458ff0
  • change(banner): MetadataField now uses proper time tag when value is datetime b4c4d34
  • refactor(tokens): updated gray-4 b890df7
  • change(footer): Fix error and empty div if no social links are present #319 from eea/footer-social 8922246
  • change(footer): Fix error and empty div if no social links are present 5d934a6

🛠️ Others

1.0.2 - 2023-03-14

🐛 Bug Fixes

  • fix(megamenu): topic menu title is now placed before content 6004bcb
  • fix(megamenu): removed in depth nav_title renaming that set title wrongly to a-z topics 899ca0e

💅 Enhancements

  • change(megamenu): removed special styling from at a glance mega menu section fd0c4c8
  • change(footer): renamed thematic information platforms to environmental information systems e7004a7
  • change(docusaurus): updated static image of footer sections 4ff3185

🏠 Documentation changes

  • docs(What's new): Update 'What's new' d7ed9d6

🛠️ Others

  • fixed accordion selector typo f4cabc8

1.0.1 - 2023-03-13

1.0.0 - 2023-03-13

🐛 Bug Fixes

  • fix(Footer): Open internal links within the same page 5b3e409

💅 Enhancements

  • change(banner): use huge scale instead of full image for better performance 381c58e

1.0.0-beta.6 - 2023-03-10

🚀 New Features

  • feat(site): serve Roboto fonts from eea design system package instead of google fonts #311 from eea/roboto-library f6a1b3e

🐛 Bug Fixes

  • fix: full-width is now properly sized 6e2e348
  • fix(storybook): add fontDisplay 078966a

💅 Enhancements

  • change(image): copyright position fixes, moved image floating to image-block-container 53422e0
  • change(colors:) update the design system colour palette #312 from eea/update-color-palette a5fb694
  • refactor(docusaurus): added roboto library 19de7b1
  • refactor(storybook): added roboto library e991621
  • refactor(tokens): update colours 3a2c1e1
  • refactor(storybook): restored site variables a48478b
  • change(copyright): implemented copyright hover design 6b12441

🏠 Internal changes

  • chore(storybook): switched google fonts to true 4a8cae4
  • chore(colours): changed back yellow 6 87c9bbc
  • chore(lint): lint 9b0f125
  • chore(storybook): lint 29bc809

🏠 Documentation changes

  • docs(colours): colours update 161007e
  • docs(colours): accessibility ee342aa

🛠️ Others

1.0.0-beta.5 - 2023-03-07

💅 Enhancements

  • change(carousel): tweak size of carousel dots for better touch interaction e1fb823
  • change(footer): removed min width and height from links ac33219

🏠 Internal changes

  • style(hiddenStructure): Add hiddenStructure utility to be used with h1 heading on frontpage - refs #158717 672cca2

🛠️ Others

  • fixed less build failure due to changes in footer.less 190bc8c
  • lazyload bg img on footer also ae07162
  • lazyload footer images a0633c9
  • Increase performance - mobile friendly 07d86c8
  • better useOnScreen hook c214b6b
  • role change for accessibility 5e758e0
  • minimum tap dimension for mobile a25e9a8
  • Release 1.0.0-beta.5 e4417e1
  • Add Sonarqube tag using eea-website-frontend addons list b227cf8
  • feature(mobile): increased performance by lazy loading footer images #303 from eea/increase_performance 80d1df1
  • useOnScreen default export 3e6cfdd
  • use aria-labels on dropdown 27e1443
  • prettier a7f8384

1.0.0-beta.4 - 2023-03-01

🚀 New Features

  • feat(footer): Add footer description 2ad0f71
  • feat(footer): Add footer description #306 from eea/footer-description bf655d1

🐛 Bug Fixes

  • fix(footer): Don't show empty row if description is not present 2ca7f7d
  • fix(footer): Add class for children 3c50d15
  • fix(search): Fix search links color #307 from eea/search-accessibility a76f48b
  • fix(search): Fix search links color 69c42ef

💅 Enhancements

  • change(carousel): tweak card width and padding for better arrow alignment e184f70
  • change(storybook): include footer description in storybook e904aa0

🛠️ Others

1.0.0-beta.3 - 2023-02-21

🚀 New Features

  • feat(accordion): storybook accessibility by using buttons for titles #297 from eea/accessibility-accordion 809d52b

🐛 Bug Fixes

  • fix(dropdown): remove close on blur so that we can navigate links using keyboard 5442715

💅 Enhancements

  • change(language): dropdown to use links for proper keyboard navigation 6a7de30
  • refactor(images): cleared unused/renamed images assets 821f5c1
  • refactor(Accessibility): add box-shadow on focus-visible components b1adcc3
  • refactor(images): remove unused docusaurus svgs c5ef14c
  • refactor(header): add escape key functionality, actions from div to button to have proper focus state 8081aa4
  • change(language): restore dropdown duplication in order to properly show and hide language dropdown cb28888
  • change(search): to reflect changes from eea-website-theme 2cc35e0
  • refactor(footer): update p with h3 heading tag for header ca1477b
  • refactor(footer images): removed unused/renamed 186de6b
  • refactor(Accordion): div titles to buttons, test in mobile mega menu accordions eaad4b4
  • refactor(docusaurus): cleanup decorative images fedc4d4
  • change(accessibility): style outline instead of box-shadow 53209f3
  • refactor(Footer): update mobile header size 01ab7f0
  • change(header): set the logo class directly on the link f8fba50
  • refactor(images): clear docusaurus unused pngs db5c611
  • refactor(header-images): removed unused 8250d94
  • change(language): hide language dropdown by default cc6064f
  • change(header): top dropdown menu keyboard navigation #293 from eea/accessibility-megamenu-searchbox 1e6fa65
  • change(button): set focus styling for buttons 33ebfca
  • change(footer): Avoid devtools warning in FooterActions #304 from eea/avoid_warning d774824
  • change(footer): Accessibility update p with h3 heading tag for theme sites title #302 from eea/footer-accessibility 5bf70de
  • change(documentation): Rename all image files to follow the agreed convention #301 from eea/refactor-image-filenames cfe44ef

🏠 Internal changes

  • style(header): react syntax fix 3add127
  • chore(docusaurus): ignore website/.yarn 0b33ffd

🏠 Documentation changes

  • docs(guidelines): add image name convention 290747c

🛠️ Others

1.0.0-beta.2 - 2023-02-13

🐛 Bug Fixes

  • fix(footer): action and copyright #300 from eea/develop 579f3e4
  • fix(footer): action or copyright links are simple a tags for external link 9af5070
  • fix(accessibility): added navigation and footer id's for skip link 48354b9

💅 Enhancements

  • change(footer): typos and modified footer links to be center aligned ac23f04
  • change(footer): added gap for actions and copyright 7d32ddd
  • change(footer): modified footer gap b8a820a
  • change(footer): removed extra text and date from copyright section af47bbe
  • change(navigation): raise z-index of go to top link 485ca72

🏠 Internal changes

  • chore(docs): Update eea.hbs template to beta - refs #158717 196538e

🛠️ Others

1.0.0-beta.1 - 2023-02-09

🚀 New Features

  • feat(search): Add search suggestions style 6b2b77b
  • feat(search): Add search suggestions style #296 from eea/search-suggestions 3b0c956

💅 Enhancements

  • change(search): Add proper margin for search popup 190c9f5

🛠️ Others

1.0.0-alpha.15 - 2023-02-08

🚀 New Features

  • feat(Card): add teaser card grid story 53cac0b
  • feat(utilities): Complete list of text-align utilities - refs #160747 224fab6
  • feat(small): CSS for small HTML tag - refs #160747 ad3c0ad
  • feat(fw-light): Add font weight light utility - refs #160747 c44cf57

🐛 Bug Fixes

  • fix(card): teaser card dimensions on tablet size #290 from eea/teaser-card-grid 013fdf5

💅 Enhancements

  • change(card): added extra content for teaser card story 30690ae
  • refactor(style-menu): add text-color to paragraphs styles #291 from eea/stylemenu-theme-colors 2d78307
  • change(header): Small fix in search popup #292 from eea/search-popup 86c1305
  • refactor(style-menu): add text-color to paragraphs styles 3446bc2
  • change(color): darkCyan is now replaced everywhere by the new green ef3791d
  • change(header): Small fix in search popup 3d622ea

🛠️ Others

1.0.0-alpha.14 - 2023-01-30

💅 Enhancements

  • change(mobile menu): integrate a-z topic with menu rendering logic #287 from eea/develop 05d4c04
  • change(mobile menu): integrate a-z topic with menu rendering logic 246d3d8

🛠️ Others

1.0.0-alpha.13.1 - 2023-01-30

💅 Enhancements

  • change(mobile menu): hardcode a-z topics to '/en/topics-in-depth' #286 from eea/develop 6436224
  • change(mobile menu): hardcode a-z topics to '/en/topics-in-depth' 5235b52

🛠️ Others

1.0.0-alpha.13 - 2023-01-27

🚀 New Features

  • feat(utilities): added has--bg--top center and bottom utility classes 051e6d7

🐛 Bug Fixes

  • fix(header): update green color used in page header #284 from eea/fix-banner-background 29d54db

💅 Enhancements

  • change(site): added fixes from customVolto.css to design package 51ba9b5
  • refactor(Banner): update banner background green color fd4a552
  • change(mobile menu): changed link for a-z topics to point to in depth 721bf23

🛠️ Others

  • 1.0.0-alpha.13 release #285 from eea/develop c966940
  • bump next version to alpha 13 897e906
  • Back to dev 5780dc7

1.0.0-alpha.12 - 2023-01-24

🚀 New Features

  • feat(card, colors): visited color change and title on image option for cards #283 from eea/develop e638ee6

🐛 Bug Fixes

  • fix(mobile menu): sub links when an accordion section is active bb3be81

💅 Enhancements

  • refactor(Card): create card template for stories 2fa77f3
  • refactor(Card): add image with title css 6e6e63e
  • change(card): implement title on image within image section ff6cc60
  • change(card): added image card section, tweaked mobile heading size 0f879e1
  • change(cards): moved image gradient overlay to a mixin.less file 8b4928a
  • refactor(card): Update titles value and size c35ad5c
  • refactor(docusaurus): applied image naming convention ee7bc29
  • change(cards): added image for all storybook card examples 3f19413
  • change(banner): restored label value of metadata field when type isn't date 571a4f2
  • change(card): title padding value for a more balance look 74b6556
  • change(card): removed uppercase transform from title on image 2948ae1
  • change(colors, Docusaurus): Visited link colour change and thematic logo replacement #278 from eea/refactor-visited-link f82d978
  • refactor(storybook): visited link variables b209b2f

🏠 Documentation changes

  • docs(colors): visited link update ece77fe

🛠️ Others

  • fix typos in footer gradient variables 4006640
  • change version to alpha 12 instead of 1 final 3225025
  • feature(card): new card variation with title on top of image #267 from eea/title-on-image-card 2c0ca95
  • Back to dev 477d997

1.0.0-alpha.11 - 2023-01-17

🚀 New Features

  • feat(docusaurus): Header and footer elements section #277 0df271c

🐛 Bug Fixes

  • fix(banner): storybook date input and simplified gradient opacity 7674d76
  • fix(banner): re-added title class on banner title 6d15799

💅 Enhancements

  • refactor(banner): sync storybook and Volto component c9087cc
  • change(banner): removed margin from title 17e592c
  • refactor(banner): sync storybook and Volto component #275 from eea/sync-page-banner-theme 4331fb4

🏠 Documentation changes

  • docs(footer): updates on header elements b41c550
  • docs(footer): add elements anatomy d9f0872

🛠️ Others

  • add(banner): banner title css d003247
  • Release 1.0.0-alpha.11 07e8f85
  • renamed image elements as requested in review 8541fb6
  • remove(banner-gradiant): image gradiant in favour of text 1b58520
  • update(gradient): use 8deg angle 6fd597d
  • update(gradiant): make it 0deg 1bb2696
  • remove(comment) referencing old verison of title 4226d42

1.0.0-alpha.10 - 2023-01-13

🐛 Bug Fixes

  • fix(subsite): Fix logo size on subsite section 65fff54
  • fix(subsite): Fix logo size on subsite section #279 from eea/subsite-fixes 8f6cf94
  • fix(mega-menu): show sub grid only if there are children ddfbd82

🛠️ Others

  • Add variable definitions 293fe65
  • Release 1.0.0-alpha.10 7014d08
  • Add Sonarqube tag using advisory-board-frontend addons list ef58a6f
  • Back to dev 31d4616

1.0.0-alpha.9 - 2022-12-28

💅 Enhancements

  • change(contextnav): Default title is text, custom title is link #273 from eea/context-nav-link-title ef7bdb7

🛠️ Others

  • Show document and folder content-type in Navigation listing 8471db3
  • Default title is text, custom title is link 1ae95b0
  • Context nav title link to # a27a6b7

1.0.0-alpha.8 - 2022-12-23

🚀 New Features

  • feat(copyright): Align copyright options with Volto integration - refs #158210 6bac7f6

💅 Enhancements

  • refactor(logo): import theme site logos to the story 2f29136
  • refactor(logo): update logo and mega search gradient e11f44d
  • refactor(logos): convert logo names to lowercase 07b8228
  • change(item): use default logic of setting align class on content 6b5b47c
  • refactor(logo): update logo 170efe5
  • refactor(logos): convert storybook logo names to lowercase c4b24ec
  • refactor(logo): add eea roboto font logo variations de1224a
  • refactor(logo): add container and segment to logo story 61eff16
  • change(item): removed requirement for aligned classes to be on content 30c0d5d
  • change(logos): cleanup eea logo reference to only eea-logo and eea-logo-white.svg 2796e05

🏠 Internal changes

  • chore(npmignore): Reduce npmjs package size 164c8a5
  • chore(npmignore): Reduce npmjs package size ade9d5b
  • chore(docs): renamed logo mdx to md 52e9d46

🏠 Documentation changes

  • docs(logos): svgs without classes 28a5833
  • docs(logos): add dark mode logos ccc1609
  • docs(logo): update eea logos and add logo wrapper 91cdd66
  • docs(logo): update logos on docusaurus 760e101
  • docs(logos): updated svgs dc224e1
  • docs(logos): add thematic logos 5a21a30
  • docs(logos): add zipped svgs for download 5855bf8
  • docs(logos): wisef logo update 8f90b59
  • docs(logos): move to static, add download 8c1fd5f
  • docs(logos): improve eea logo visibility 82188ab
  • docs(logos): change eea logo to svg f57b846

🛠️ Others

  • logo update or docusaurus thematic logo listing #274 from eea/develop dde90be
  • (feat): Add ability to disable the language select from website top menu - refs #158616 411c8e4
  • Proof reading page header section 230239e
  • bump package version b4628be
  • feature(docusaurus, storybook): logos selection for sites plus inverted options #253 from eea/doc-logo-page dbfc90d
  • Add Sonarqube tag using advisory-board-frontend addons list c4769e9
  • test(Jenkins): Run tests and cypress with latest canary @plone/volto 92feea0

1.0.0-alpha.7 - 2022-12-16

🚀 New Features

  • feat(item): normalized size for image or icon items #258 from eea/refactor-items 945170f

🐛 Bug Fixes

  • fix(card): rounded after removal of has--rounded--true style class d4727af
  • fix(item): removed margin set for description which pushed the text from icon d9d4031
  • fix(project): Proper paths if volto-eea-design-system package is not installed, but in development #270 from eea/correct_paths 0f8ee8d

💅 Enhancements

  • refactor(item): update icon variations and paddings 6a407b3
  • refactor(item): update spacing 2fd91c4
  • refactor(item): initial values for new sizes & add description class 3546296
  • refactor(item): add icon and more size options 1120bb6
  • refactor(item): update image and icon sizes b802573
  • change(item): set same height as width on item images 69cbd23
  • refactor(item): update item part 2 9812ae2
  • change(item): rename large to big class 24ff127
  • change(item): added tiny size that outputs 24px icon sizes 2ea9636
  • change(image): added preview image size default to 400px a0aa867
  • refactor(item): update operator for condition controls 149ccb2

🛠️ Others

  • Proper paths if the package is not installed, but in development 7a2655f
  • Update .project.eslintrc.js a2fd3f2
  • added back descriptionDistance variable until package release 3af811a
  • Release 1.0.0-alpha.7 7e66bcc
  • Add Sonarqube tag using cca-frontend addons list ce47e9b
  • Back to dev cb531c9

1.0.0-alpha.6 - 2022-12-07

🚀 New Features

  • feat(copyright): create copyright component and import it in banner 8fcde9d
  • feat(Header): add hideSearch prop 13ddfe5
  • feat(Docusaurus): Image copyright information #257 from eea/image-copyright-info 2119515

🐛 Bug Fixes

  • fix(tags): content gap when using tags-content wrapper c4eb9b8

💅 Enhancements

  • refactor(hero): add copyright component to hero 0fa88fa
  • change(copyright): implementation to add classes on content sections e10bde6
  • change(copyright): removed color variant 747b8a2
  • change(copyright): removed copyrightVariant from Banner and Hero stories ac62e07
  • change(tagList): modified implementation to align to volto-tags-block 7a57a3d
  • refactor(copyright): remove data section 52cb09d
  • change(copyright): line height to match page header implementation a56254e
  • change(copyright): now uses text color css variable with fallback to white ee7268b

🏠 Documentation changes

  • docs(copyright): copyright documentation a90ed76

🛠️ Others

  • Update usage_markdown.md f76d4a2
  • grammar fixes cb2a5a5
  • Release 1.0.0-alpha.6 6ca32f0
  • feature(copyright): image information #250 from eea/feature-copyright a8618c7
  • lint fix by introducing local variable tagsGap 7b6c0ae
  • Update 3-images.md 1b0ef03

1.0.0-alpha.5 - 2022-11-29

🚀 New Features

  • feat(Iconography): import and showcase remix icons 777112f

🐛 Bug Fixes

  • fix(docusaurus): right bar overflow fix 197c763
  • fix(lists): bullet position by using padding instead of margin 0ecae2e
  • fix(label): color for yellow variant as white isn't accessible on yellow color 91d8880
  • fix(contentBox): avoid text decoration for header-link added on cards 3ccb592
  • fix(label): margin value for ribbon image left and right margin f8e1129

💅 Enhancements

  • refactor(docusaurus): eea color palette in separate file 6c855df
  • refactor(docusaurus): classes for color boxes 80219d5
  • refactor(docusaurus): move supplementary, state and link colors to partials 2776be3
  • refactor(docusaurus): fix side menu / moved more content in palette partial f5b7077
  • change(tag): set gap on tags element for margin between tag elements 726bc6d

🏠 Internal changes

  • chore(colours): fix wrong class name 51ad0a8

🏠 Documentation changes

  • docs(docusaurus): Iconography updates, thematic platforms 2a0e596
  • docs(colors): thematic pages integration ea7a422
  • docs(docusaurus): color updates cc13b54
  • docs(colors): fix swatches accessibility 306cb74
  • docs(docusaurus): typography and colors fixes according to comments on PR ae20a72
  • docs(colours): adjust logos heights 854d4fb
  • docs(typography): merge designer and dev units 65c240e
  • docs(typography): readded extra font sizes, fixed fluid a4a5d89
  • docs(typography): changed em to percentages d417600
  • docs(colors): minors updates and instructions 84ac882
  • docs(colors): blue-grey-6 adjustment e7ab2d1
  • docs(colours): added active colour 574f7a9
  • docs(colors): switch FISE logo to png 335471f
  • docs(colors): updated visited 0248fd1
  • docs(FISE): replaced logo f7d8331

🛠️ Others

  • perf(docusaurus): added remixicon and roboto locally b67b1a7
  • feature(Docusaurus): Updates on color palette information including thematic websites #231 from eea/refactor-docusaurus ec7843d
  • Upgrade Jenkinsfile storybook to yarn 3 d20de8d
  • Back to dev 563fbc5

1.0.0-alpha.4 - 2022-11-22

🐛 Bug Fixes

  • fix(cards-storybook): load slick carousel css for arrow and pagination styles 1159b1b

💅 Enhancements

  • change(cards): refactor cards theming implementation d4e4542
  • change(cards): allow rounded, inverted and theme parameter to be set by has classes 4b4ad89
  • change(card): expect has classes on the card directly 6a9e38b
  • change(utilities): added has text classes to the text alignment utilities e6974c6
  • change(utilities): modified class name for text align using has naming 579a0cb
  • change(theme): ensure that only direct children of container have a default top and bottom margin 7f8b8dc
  • change(build): upgrade action to trigger workflow and wait to latest version c63ad3f
  • refactor(card): theming implementation to allow has theming classes #265 from eea/card-refactoring 24edc99
  • change(theme): add slick-carousel dependency f2eec7d

🛠️ Others

1.0.0-alpha.3 - 2022-11-16

🚀 New Features

  • feat(Header): Add subsite section styling #263 from eea/subsite 00398b8

🐛 Bug Fixes

  • fix(search): position now changed by default to absolute from relative 51b08fc
  • fix(megaMenu): remove paddings for buttons added by active class ec33ebf

💅 Enhancements

  • change(components): load overrides files for our defined semantic files adde7a9
  • change(container): fullwidth now take into account devices without hover 5a35a65
  • change(container): ensure only the top level elements behave like containers 98b85d1
  • change(container): modified column-block grid to remove margin and padding when using full width class 35c1cee
  • change(mega-menu): hide home link and accordion content from mobile menu 1a69172
  • change(container): width from min width 1280px to 1365px max width 66e551e
  • change(container): removed app extras and view setting of layout sizes f6dc1ee
  • change(views): customized DefaultView to pass class into page-document area 91123aa
  • refactor(megaMenu): desktop - use buttons for menu section titles and readjust content cb9315f
  • refactor(megaMenu): add nav_title and nav_description attributes 0d7a568
  • refactor(megaMenu): style sub-title and nav-description b2a48fd
  • refactor(sidemenu): add third level list and items & update active indication e2d87da
  • change(columns): implement narrow, container and wide width classes 9696b54
  • change(container): story to add classes that modify the max width of the containers 37948f8
  • change(container): affect only left and right margin of containers 183265b
  • change(containers): modified class names after layout checks 1dc3689
  • refactor(sidemenu): add is_in_path and is_current attributes for an active example a3fe7fd
  • change(container): story to avoid adding containerwidth property to container div c13d83c
  • refactor(megaMenu): mobile - use buttons for menu section titles a7b632f
  • refactor(megaMenu): update padding variables c5f2583
  • change(views): moved narrow style bellow the default container width styles 72fa58d
  • change(listing): removed container from default view page-document area 69f3d8f
  • change(views): rename classes names to width_view and added app extras layout component 745b772
  • change(container): use important flag for left and right margin a49c83a
  • change(container): add variables for edit and add section of containers f2e2c33
  • refactor(megaMenu): update sub-title paddings 992f919
  • change(site): add a 1rem margin top and bottom on all styled classes dabf6c1
  • change(homepage): removed hiding of staging banner from homepage 4ba2cd7
  • change(container): unset values of page-document on 1200+ browser width dd5bea3
  • change(megamenu): set children to be appended to the right of the menu title b69c23a
  • change(theme): modified wide width to point to 1320px as it's perfectly divisible by 4 8f82573
  • change(theme): modified wide width to point to 1368px as it's perfectly divisible by 4 2349fee
  • change(container): renamed content-text-width to container-text-width 6f788c2
  • change(listing): provide ui container fallback if no class is passed to default view af9e94d
  • change(narrow-view): re-added container class to page-document 56b44a6
  • change(view): set container width for view-viewview class as well 29dc324

🏠 Internal changes

  • style: load header/footer overrides e5b5e0f
  • style(megaMenu): restore item description color 8a19bbb
  • style(megaMenu): restore accordion content bottom padding 8e0c5a7

🛠️ Others

  • Add subsite styling e79c0ed
  • WIP settings column grid width when using full size class affc7ac
  • code cleanup 2cdc3e5
  • fix eslint 30c52e4
  • test(estlint): Fix .project.eslintrc.js aaeaa07
  • modified left value of full width classes with toolbars 70d82d4
  • Release 1.0.0-alpha.3 8fc86a7
  • feature(content): added NarrowView useful for modifying the containers from content-area d937df7
  • jslint fix 9846159
  • Feature(container): flexible container size #260 from eea/feature-flexible-container 8f84c5b
  • Add Sonarqube tag using circularity-frontend addons list 76a41c7
  • fix broken variable call for contentBox.variables introduced in previous commit by mistake d249c11
  • clean up 89f3cb3
  • removed console log from code fad86ae

1.0.0-alpha.2 - 2022-10-28

💅 Enhancements

  • change(documentation): grammarly proof-read suggestions 9f609be
  • refactor(volto-slate): Upgrade to @plone/volto-slate - refs #153447 853d9d1

🏠 Internal changes

🛠️ Others

  • test(cypress): Upgrade to Cypress 10 / Razzle 4 c1c1f4b
  • more explanations a8b2272
  • add announcement bar, showing that EEA DS is WIP e14aeac
  • Update dependencies ee30a2b

1.0.0-alpha.1 - 2022-10-20

💅 Enhancements

  • refactor(footer): update svg and tablet contact link sizes 6aba061
  • change(blockquote): renamed to Callout reflecting the correct naming from Storybook 61a518c
  • change(footer): Shadow removed from logo & tablet updates #252 from eea/fix-footer 6df783d
  • change(colors): updated theme classes for text to use css variable colors cb089fd

🏠 Internal changes

  • style(footer): reduce social icons margin f6a9cf7

🏠 Documentation changes

  • docs(alpha): Update included components in 1.0 alpha version - refs #154387 fcc5af9
  • docs(callout): Rename Blockqoute to Callout in docusaurus - refs #154387 8d733ac

🛠️ Others

0.9.6 - 2022-12-16

🛠️ Others

  • Release 0.9.6 ae19b83
  • feature(copyright): image information #250 from eea/feature-copyright 7b323ed
  • Release-it 1f5671d

0.9.5 - 2022-10-20

🐛 Bug Fixes

  • fix(statistic): margin and slate colors when using the inverted options f263dea

0.9.4 - 2022-10-19

🐛 Bug Fixes

  • fix(edit-interface): block chooser and power user menu item colors when inside content-box 7aee4f1
  • fix(header): hero text going over the logo and menu on mobile resolutions 1434508
  • fix(content-box): z-index of box-inner and added underline to slate links c8b7c7e
  • fix(content-box): adding of underline to links c2f5f0f

💅 Enhancements

  • change(banner,colors): content box theme aware colors banner changes#254 from eea/develop bcb9a8c
  • change(Banner): Add subtitle subcomponent bb67f4c
  • change(item): moved svg filter definitions to item.overrides de70366
  • change(accordion): accordion titles with themes colors can now be modified by css variables e2ac13e
  • change(colors): in lists and callouts to allow color changes 940d1b8
  • change(colors): added backgroundColorSupplementary color variable 1f5262a
  • change(list,bullet): color is no longer primary instead it's text color css variant 8c04670
  • change(statistics): use theme colors with css variable for easy color customization fb72a01
  • change(Banner): Show label in metadata field 1acda3c
  • change(tags, items): use text color with css variable for content color for easy customization 6660e2e
  • change(styling): modified naming of theme css variables a332961
  • change(colors): added backgroundColor color variable b7e6831
  • change(quote): use secondary css var for easier color replacement 7a32312
  • change(statistics): tweaked margin of statistics so that they don't overflow over context boxes b4a8e33
  • change(accordion): allow customization of accordion title background color 6590baf
  • change(colors): introduced css variables for primary colors #247 ac80825
  • change(content-box): override primary text color to white as well 28b43c7

🛠️ Others

  • Include changes in the storybook a4d9fa4

0.9.3 - 2022-10-04

🐛 Bug Fixes

  • fix(card, contentBox): meta font size, removed header override of cards a7f94b9
  • fix(List): Ordered list item story - refs #155248 c70a2bc
  • fix(OrderedList): li third level margin left - refs #155248 fba5cb9
  • fix(cards): inherit color of card description ceda799
  • fix(accordion): Fix content default padding - refs #153783 566adf7

💅 Enhancements

  • change(site): committed fixed from custom into eea design package 9b9a1fd
  • change(jenkins): added yarn policy for storybook building 3d1b844
  • change(docusaurus): typography updates 60a93a4
  • change(item): added item image coloring when applying theming classes 0403fe4
  • change(accordion, site): change text color to tertiary instead of black 4641058
  • change(accordion): allow customization of accordion title with css variables 15e7d27
  • change(content-box): added css variables that will set text color and background for children 86cac53
  • change(tabs): allow customization of tab active and hover color 4370f42
  • change(tabs): color for tabs-block section 6778c92
  • change(cards): by default date is set to appear on the right of the meta section b7b80e8
  • change(cards): carousel dots are now relative positioned daa40a4

🏠 Documentation changes

  • docs(typography): update, local fonts 39a32d9
  • docs(typography): token fix to match used values for heightheight and letterspacing 91693ec
  • docs(typography): token fix to match used values for lineheight ff41b56
  • docs(typography): remove semibold 6eb3e08

🛠️ Others

  • test(cypress): Fix md5 dependency 17f618e

0.9.2 - 2022-09-27

0.9.1 - 2022-09-27

💅 Enhancements

  • change(cards): added ability to change the text alignment using css variables ed532ac
  • change(styles): use flex-end values only instead of end to avoid babel warning 24244b2
  • change(rounded): image size, border radius to ensure more image are turned into rounded options 51e23c1

🛠️ Others

  • Merge pull request #243 from eea/develop 576564c
  • Add Sonarqube tag using eea-website-frontend addons list 4a5be6e
  • Back to dev b251255

0.9.0 - 2022-09-19

🚀 New Features

  • feat(countUp): intall countup package and import it in statistics 10ba7cf
  • feat(docusaurus): custom editUrl function for the components usage pages - taskman refs #154076 93c4240
  • feat(site): Styling scroll-to-text fragments #238 1883fcf
  • feat(docusaurus): added Edit this page link in footer of each page - taskman refs #154076 2cf8746

🐛 Bug Fixes

  • fix(header): Prevent dropdown closing when clicking inside content 838f340
  • fix(cards): position of bullets and arrow clicking on events page 148723 22ef828
  • fix(cards): rounded images show up now even when card parent is cards 48f5e81
  • fix(statistic): add a min-width to content so unwrapped statistics don't break 7c5d511
  • fix(sideNavigation): add role list to list item 58f322b
  • fix(sideNavigation): remove unused useState import f9ea677

💅 Enhancements

  • refactor(sideNavigation): implement the design to the initial navigation & make component dynamic b673d63
  • refactor(header): update top bar 626bdd5
  • refactor(statistic): create custom export and add links 9f9ed56
  • refactor(statistic): update inverted style and add background variations 7578dc6
  • refactor(statistic): remove horizontal display on mobiles & update columns control 58f00e1
  • refactor(header): minor fixes spotted in testing 0f0f3ab
  • refactor(header): update main section heights d669f01
  • refactor(sideNavigation): remove green border and divider 939cd9b
  • refactor(link): update colors for link states 3e9f599
  • change(cards): styles img tag outside of .image ee89274
  • refactor(sideNavigation): update controls a3e8430
  • refactor(statistic): fix firefox issue for fit content 87aa113
  • change(statistics): rearrange controls order b19ae70
  • refactor(statistic): add max width to wrap text for all content 758f8ce
  • refactor(statistic): add max width to label so it wraps the text 824a127
  • change(Side menu & in page navigation): styling according to figma design #221 b2df858
  • change(header): align header with latest figma changes #232 135cd68
  • change(cards): integration when cards also contain call to action buttons f0d8766
  • refactor(iconography): icon group headings b9ccd80
  • refactor(header): add variables for some sizes 8eae84e
  • refactor(Statisctic): Rename slateVariation to extraVariation a07c589
  • change(docusaurus): started example on how to add headings for iconography 53cf843
  • change(cards): remove center alignment of rounded cards body area, only the image is now centered fdfac48
  • change(color): updated link colors #234 feabfe7
  • change(mockup): Access to figma style tokens 0bb25be
  • refactor(statistic): update margin 5190f56
  • refactor(button): adjust vertical margin db6d441

🏠 Internal changes

  • style(statistic): update decimal point 7976aa4
  • style(link): update visited link color d3b18b3

🏠 Documentation changes

  • docs(iconography): added icons, guidelines 0073f1d

🛠️ Others

  • Delete 2-test-new-page.md 749eff9
  • Create 2-test-new-page ab623ff
  • Release 0.9.0 eb7e2e5
  • stylelint fix 114e3f9
  • Move text fragments style to site.overrides 8368cbe
  • Styling scroll-to-text fragments 1bb3914
  • Update Header.stories.js 9036c74
  • feature(Docusaurus): Reflect usage of remixicon in iconography page #239 0802b32
  • Update 1-design.md 146115a
  • Test workflow for contribution - taskman refs #154076 dcb924f
  • perf(figma): access to style tokens 27d8dbe
  • Rename 2-test-new-page to 2-test-new-page.md 4e3be10

0.8.1 - 2022-08-26

🐛 Bug Fixes

  • fix(message): fix size controls ee51e1d
  • fix(docusaurus): intro page hero title color now that headers are using tertiary color 618e3cb

💅 Enhancements

  • refactor(message): restore semantic variables 1c16621
  • refactor(messages): mix semantc and token colors for messages 12efa75
  • refactor(emotiveColors): temp update for tests 61a720c
  • change(footer): removed line between sections and moved actions back to the bottom of footer d9f33e4
  • change(storybook): headings storybook now uses tertiary color by default reflecting site options 1061e77
  • refactor(message): add container to story 1259ece
  • refactor(message): remove override with custom background color on error 9b40cd7
  • refactor(message): add header controls 960c2f7
  • change(message): use semantic colors for messages #204 from eea/refactor-message 22d2c43

🏠 Documentation changes

  • docs(figma): added figma files to repo 6bd4144

0.8.0 - 2022-08-20

🚀 New Features

  • feat(IconCard): card with icon instead of image a85a179

🐛 Bug Fixes

  • fix(docusaurus): typography guideline now has real font values for headings, body, caption and small text 9508db9
  • fix(card): fix content gaps, adjust new meta section and update text color for default f1a78e1
  • fix(item): remove duplicate argType dde0be5
  • fix(iconCard): add aria-label at links 44f64c7
  • fix(card): merge fix df440ec
  • fix(heroblock): color even on edit page by inheriting color instead of using the tertiary color ac53fb7
  • fix(tab): add tabindex for accessibility error ab512be
  • fix(carousel): restore missing variable 1728312
  • fix(carousel): restore flex grow for cards and opacity for arrows ce71305

💅 Enhancements

  • refactor(carousel) add links in carousel cards & update structure and variables of less files f99cb21
  • refactor(iconCard): add control for variations and link 5e1b6a1
  • change(docusaurus, fonts): documented font letter spacing modification 522712a
  • refactor(card): css updates for card variations and styling updates c8b4a43
  • refactor(publicationCard): add links and fix accessibily issue 80adf6c
  • refactor(card): add new section in meta and remove links bfb82ae
  • refactor(item): add stackable functionality 8d714fa
  • refactor(card): update meta section and controls 5e28e12
  • refactor(roundedCard): remove unnecessary code and controls and add all variations 6305c54
  • refactor(roundedCard): add optional link for image and header a6d3bf2
  • refactor(card): add tertiary hover and update css selectors ca06948
  • change(fonts): updated font sizes with values given in figma 4b0ae48
  • change(style): color, space and adjust line-height as described in docusaurus 3366da2
  • change(headings): only h2-h6 get tertiary color 7d81308
  • change(site): removed Archivo import as we should only use Roboto font a6af056
  • change(docusaurus): use tertiary color for headings and body color mirroring the design system styles 145fe73
  • change(fonts): modified headings font size as well as line height f0771ea
  • change(fonts): updated font sizes with values given in figma f16eef7
  • change(docusaurus): use Roboto font from google fonts also for docusaurus adca8e9
  • change(headers): added headerColor variable so that thematic sites can easily choose another heading color f09d2c5
  • change(fonts): typo fixes for typography section of docusaurus cae4b02
  • change(fonts): modified footer and header values afer global font size changes f160d35
  • refactor(iconCards): run prettier fe84e46
  • change(typography): inherit header colors with @headerColor variable 91d9357
  • change(breadcrumb): use tertiary color also for breadcrumb c5cbd44
  • change(heading): on homepage on the first hero set font size to h1 and inherit color 5711096
  • refactor(carousel): update card titles to display styling fix edd966b
  • change(docusaurus): use the tertiary color for body and heading colors 11c4ed4
  • change(typography): modified lineheight-0 after headers now use 1.2 instead of 1.25 04d78a8
  • refactor(card): add links to cards and replace description with title in carousel 0258737

🛠️ Others

  • feature(heading): and cards refactoring #227 from eea/develop 334fbda
  • Update package.json 3870cf3
  • Header refactor 153536 #226 from eea/header-refactor-153536 87a6fe7
  • feature(item): icon is now stackable moving the icon on top #220 b716acf

0.7.6 - 2022-08-15

💅 Enhancements

  • change(footer): Footer updates 147837 #225 fa9ae58
  • refactor(footer): initial redesign of main section 8e85617
  • refactor(footer): restructure theme sites logo columns dcba45a
  • change(footer): set actions before thematic section on mobile db25f96
  • change(footer): fix missing key warning from react dev 77f72d5
  • change(footer): Footer updates 147837 #222 32fed23

0.7.5 - 2022-08-11

💅 Enhancements

  • change(megamenu): mobile improvements with See all links, active elements and non accordion children #224 6767b99
  • change(megamenu): render accordion only if children have children be63ce2
  • change(megamenu): mobile menu design tweaks as seen in latest figma 26d74dc
  • change(megamenu): removed icon from at a change menu items and they are no longer bold as requested 043e772
  • change(megamenu): reset first level panels after each item pass 175351b
  • change(megamenu): mobile menu improvements #223 b3cabfe
  • change(megamenu): fixed key error warnings 075bf01
  • change(megamenu): handle default active sub accordion 6192a99
  • change(megamenu): enable active border only for items not titles fb0b869

🛠️ Others

0.7.3 - 2022-08-04

💅 Enhancements

  • change(megamenu): added icon on mega menu header section d0ad4d8

0.7.2 - 2022-08-03

🐛 Bug Fixes

  • fix(contentBox): z-index of content hidden by bg when using content-box-inner c5a7dac

🛠️ Others

  • Set focus on search input field in the popup on click d12c051
  • Make cypress tests work with both slate and draft selectors 4d8e5b1

0.7.1 - 2022-08-01

0.7.0 - 2022-08-01

🚀 New Features

  • feat(accordion,buttons): primary, secondary and tertiary variations #209 c34617f

🐛 Bug Fixes

  • fix(megamenu): key warning errors 4ecd279
  • fix(container): add padding also for block editors when we are on the add page not just edit b857aad
  • fix(header): bump opacity of gradient class to get rid of green hue of header text 2011b40
  • fix(header): remove console log 3a20023

💅 Enhancements

  • refactor(callToAction): add tertiary variant and restructure exports ac6695a
  • refactor(accordion): add color variations 3504c15
  • change(megamenu): WIP bringing back rendering of item with callback and path modification 6e43d43
  • refactor(megaMenu): add slide down transition and update targetRefs on close 9667157
  • change(megamenu): use renderMenuItem in order to render menu items 9ed5cbd
  • change(footer): replaced eionet logo with an svg variant and tweaked size of eionet to match size of eea logo 32ce462
  • refactor(callToAction): update tertiary state colors 159668a
  • change(accordion): style default accordion using the grey from semantic ui e24907d
  • refactor(accordion): add variations and create a default export 4a9c68f
  • refactor(colors): add tertiary shades for element states 1e24a7e
  • change(tests): try to modify tests to use slate instead of draft a2e2485
  • change(megamenu): set active class on storybook list items 112bff1
  • change(megamenu): add border for active element of menu 5e7dfa5
  • change(package): condition modification of navDepth settings dd21dad
  • change(mega menu): use non variable to fix build of volto-kitkat-frontend 3ecd652
  • change(header): prefix mega-menu active class for adding border 32898cb
  • change(tests): use data-slate-editor instead of contents that was found in draft js instead of slate 1e0413c
  • change(stories): hide variant control from button link story 43f8c41
  • change(stories): hide variant control from button link story aea7126

🛠️ Others

  • feature(theme): added context navigation component story and default style 5a6955f
  • feature(megamenu): open default accordions on mobile navigation based on pathname cc299c1
  • fix eslint warnings 3b30282
  • bump release version to 0.7.0 fa82cbd
  • Theme fixes, mega menu selected element both in desktop and mobile #211 b482729
  • feature(mega-menu): added menu slide down animation #208 4360d0e

0.6.5 - 2022-07-06

🐛 Bug Fixes

  • fix(header): double click to close dropdown is no longer required b8a2ed0
  • fix(header): menu generation when atAGlance isn't found d68b03c
  • fix(menu): removed minHeight that enlarged the global menu 133be1e
  • fix(hero): image dimensions when full width and height isn't enabled 4114f73
  • fix(contentBox): removed negative z-index that hid fullwidth bg color bd60faf

💅 Enhancements

  • change(hero): tweaked hero block height and padding 994b6f8
  • change(item): tweak size and padding of icon when used inside item dbdef19
  • change(typography): updated letterspacing values and clarified values used for certain type tokens 8a13bf8
  • change(item): enable theming for icon and text color and added tertiary option 6d4444f
  • change(header): top section chevron sizes and margin as requested in enhancements document b307c74
  • change(cards): add underline to links when applied to headers and use tertiary color by default 874f956
  • change(utilities): wrap in quotes h2 and h3 of quoted-wrapper 8aa4716
  • change(package): bump package version to 0.6.5 denoting bug fixes release 0585aeb

0.6.1 - 2022-07-01

🚀 New Features

  • feat(UnderlinedTitle): create story and necessary utilities 8beb56b
  • feat(headers): added underlined titles with theming support af67561

💅 Enhancements

  • refactor(heading): move underline story and update controls 2c9bfd2
  • refactor(underlineTitle): add content box for different variations 0878915
  • refactor(underlinedTitle): add control for changing heading size 211f515
  • refactor(underlinedTitle): Restore text variation dropdown control bd8c611
  • refactor(utilities): add color variation for headings and text 7e3a779
  • refactor(utilities): update border bottom utility and restore line height for headings 7fe4a7b
  • refactor(headings): update the line height of headers according to docusaurus instructions 9da19b3

🏠 Internal changes

  • chore(countup): package for statistics 26fcd09

0.6.0 - 2022-07-01

🐛 Bug Fixes

  • fix(item): adjust the container in stories a848c46
  • fix(tag): align start for tags on mobile, update path for Tag List and add containers b9de845
  • fix(item): update image width & height on mobiles and add 3 line clamp for description 0cd2c46
  • fix(pageheader): metadata font size on mobile to be readable 0a9b1fa
  • fix(breadcrumb): fixed variable name for breadcrumb item 2b547eb

💅 Enhancements

  • refactor(Item):create item story with custom default class 069ae02
  • refactor(pagination): add pastanage menu overrides and remove any eea theme css from default story 5080810
  • refactor(item): update variables from px to rem 30eed78
  • refactor(Item):add default item mobile padding 3518465
  • change(site): added fixes from custom 0fe4d80
  • refactor(Pagination): add default pagination stopry and rename previous as Secondary a5e3e13
  • refactor(pagination): comment out secondary pagination and its styling bcf4cff
  • refactor(tags): remove content class and add flex wrap d6333ca
  • change(logo): use a real svg logo for white eea logo 3b80dc7
  • change(header): show eea information systems on tablet as well ce82ceb
  • refactor(tokens): update letter spacing tokens 5f8753b
  • change(letterspacing): updated letter spacing positive values b31818f
  • change(pageheader): add bottom margin on mobile for sharing dropdown actions d3cda47
  • change(pageheader): removed blogger, reddit and stumbleupon sharing links e4acc4e
  • refactor(Item): add default item background color c978c8d
  • change(package): bump package version 1f01f72

🏠 Internal changes

  • style(item): update item image e585e9d

🏠 Documentation changes

  • docs(colors): token usage c433ec6
  • docs(Docusaurus): typography and spacing updates 48d1269
  • docs(Docusaurus): various fixes a972a31
  • docs(typography): updates 66d95e4

🛠️ Others

  • Tabs block custom border left/top ca4cce0
  • Fix sidebar tabs in Volto CSS c287db5

0.5.5 - 2022-06-23

🐛 Bug Fixes

  • fix(contentBox): color of cards when inside content-boxes 76a4520

💅 Enhancements

  • change(homepage): moved fixes of homepage to custom and colored carousel arrow 0a226ef

0.5.4 - 2022-06-16

🐛 Bug Fixes

  • fix(block-style): Content box preview in sidebar 6362766
  • fix(header): ensure transparency goes as high as the search icon 4470e13

💅 Enhancements

  • change(contentBox): add background as before element instead of using full-width 7e0a596
  • change(content-box): content box links are now underlined f7976f5
  • change(homepage): added fixes from custom c3e0333
  • change(hero): add margin top with the height of the top section on edit fefa6bb
  • change(cards): fix default card color when inside content-boxes 6fdf3aa
  • change(container): removed override of content-box-inner container 66fe7d4

0.5.3 - 2022-06-16

🐛 Bug Fixes

  • fix(homepage): hero and homepage fixes for #151156 #198 43d4efc
  • fix(header): fixed top section width on edit page ce5898b

💅 Enhancements

  • change(hero): added min height to hero-block-image-wrapper 3cc37c0
  • change(hero): spaced hero block has a 3rem margin top and bottom c463b03
  • change(hero): added extra top margin on hero-block-body from tablet and up within homepage 64142c3
  • change(hero): tweak min height of hero block e1271b4
  • change(card,contentBox): use inherit for text color to inherit black from body c1ba3b6
  • change(container): on section-edit modify only left and right padding values fe6e3ec
  • change(utilities): bump z-index of overlay class ede3209
  • change(hero): fixed variable reference for margin of body from homepage 092b90b

0.5.2 - 2022-06-14

🚀 New Features

  • feat(contentBox) : add new Content Box component 2ebbb47
  • feat(ContentBox): Add primary, secondary, tertiary themes 87cb2fe
  • feat(ContentBox): Update storybook with available themes 93b26b2

💅 Enhancements

  • refactor(contentBox): restructure the component to be more flexible f0d2de6

🏠 Internal changes

  • chore(contentBox) : add lint changes 5aaf740

🛠️ Others

0.5.1 - 2022-06-13

💅 Enhancements

  • change(header): changed homepage text color 64ce8b6
  • change(hero): added styles for adding dark overlay to hero bf1d292
  • change(homepage): hide stagingBanner on homepage fb6e319
  • change(header): use variable for homepage hero-block padding 89ff344
  • change(tokens): modified grey-4 color to point to a 10% shade from original color b406283
  • change(header): added min-height for mega menu needed for 1 items menus 18814f4
  • change(hero): hero section block integration #192 4ea2f40

🛠️ Others

0.5.0 - 2022-06-11

🚀 New Features

  • feat(hero): added storybook implementation of hero component #172 17b9d16
  • feat(hero): add hero block component and stories 6019fc8

🐛 Bug Fixes

  • fix(header): Internal links in mega menu d8ca135
  • fix(header): show active menu when clicking on children a54fa67
  • fix(header): accessibility and dropdown possition fixes 505ac36
  • fix(header): fix accessibility issue by David 783dcec
  • fix(header): dropdowns disappear on resize 52338fd
  • fix(header-topdropdown): dedupe html elements for topdropdowns cd8a2a7
  • fix(header): transparency class should apply on the current bg color or image f9a0033
  • fix(header): mobile dropdown now visible 34371b4
  • fix(header): dropdown disappears after window resize #116 fc7dd8b
  • fix(header-topdropdown): dedupe html dropdown elements for topdropdowns #115 f10a7a8

💅 Enhancements

  • refactor(megaMenu): update mega menu in header component 2d1ce45
  • refactor(header): update structure and variables of top bar af70909
  • change(header): renamed mega menu items href attribute to url 3ed8144
  • refactor(header): update main section and and add color variations f2f0fd1
  • refactor(header): minor updates on colors and widths a70129f
  • refactor(hero): add full-heigh control to adjust height a45cb7c
  • change(header): disable sticky setting until feature is more stable 1d7af95
  • refactor(hero):make button variant and inverted different button controls 7e182ca
  • refactor(header):main bar sticky on scroll up 9c9e7c6
  • refactor(headings): update heading sizes for mobile 19f3cca
  • change(header): hide first link(home) from header menu on site ae7f3b9
  • change(megamenu): typo correction and key setting on list.items 96d2c4f
  • change(header): use Link instead of a tag for menu items 9812b3f
  • refactor(header): add control for inverted logo 023ca45
  • refactor(hero): move quoted utility to h2 tag 7376676
  • refactor(header): add link for menu title inside desktop mega menu 24355d0
  • refactor(utilities): update hex with color token 8dc65ef
  • refactor(header): and mega menu to latest spec #114 44fcf68
  • refactor(header): update search input and file endings afab36f
  • refactor(header): add control that toggles transparency class on main section b8d4bdb
  • refactor(header): restore union dropdown after implementation 7e98bab
  • refactor(header): minor responsive fixes 16a0006
  • refactor(hero): align hero's text and meta seperately 4fa958f
  • refactor(hero):add button variant controls f362a7b
  • refactor(header): update search input 368962e
  • change(header): mark top level active menu item 665c449
  • refactor(hero):prettier & style changes d846884
  • refactor(header): add control for main section stickiness 2f07572
  • change(header): use viewport width for changing mobile text in header dropdowns b50fa58
  • refactor(header): add fluid font sizes 5f2743e
  • refactor(header) add position sticky & transparent for main section 29df772
  • refactor(hero): update variables with new design tokens 1d97922
  • refactor(Language List): render language dropdown as ul and li elements 3617442
  • change(header): introduced item class to the mega menu link content 00ca376
  • refactor(Language List): add less variables 7ccc1cc
  • change(header): disabled active menu when clicking on globalnav links 3f7b5ee
  • change(header): target link instead of span directly 9e865fb
  • refactor(header): remove unused imports 7e232db

🛠️ Others

  • Add item themes; override .block .ui.image width based on size 06010db
  • Move item icon themes to item.overrides 31e8921
  • Override only the width 8d49270
  • Override tile image in .block parrent 005655d
  • Update package.json 9dc3816
  • feature(item): added themes to item icons #190 a6a2907
  • update storybook header.topdropdown e58ac08
  • use volto-screen-helper width ea156aa
  • Add divider content for metadata field in Banner 327ad1c
  • rename to viewportWidth 32162e7
  • don't connect component to store 470b8ba
  • Add end of line 51639d8
  • behave as mobile under 480 only 11b99e1
  • make it account for all mobile-s,m,l 69e23ae

0.4.5 - 2022-06-08

💅 Enhancements

  • change(tabs): Add style for tabs accordion template #187 fb8adbf
  • change(footer): avoid react error by providing key prop to grid column ef0b193

🛠️ Others

0.4.4 - 2022-06-08

🚀 New Features

  • feat(divider): create story for divider b10a2e0

🐛 Bug Fixes

  • fix(divider): restore space between classes c595c15
  • fix(divider): Text colors and transform e524e10
  • fix(footer): story aria labels for social media links 254bdc7

💅 Enhancements

  • refactor(footer): update logos and less structure 66b8e0f
  • refactor(footer): first footer updates d18a2ee
  • refactor(footer): logo updates and adjustments 101bc9d
  • refactor(footer): use tokens and adjust spacing 2cb1669
  • change(footer): moved SubFooter logic to SubFooter.jsx from Footer story 902383a
  • refactor(Divider):add divider with content inside story e2d66dc
  • change(footer): added managed by section as properties 9328fc3
  • refactor(divider): remove custom divider d4870d2
  • refactor(Divider_:remove green color class & add tertiary 95f3018
  • refactor(footer): use remix icons for social links 5ef9aa2
  • refactor(Divider):remove clean class and use fitted prop 8d2be35
  • change(Divider): Rename color property to theme 0deffc8
  • refactor(footer): update links and logo align 7afbab9
  • change(footer): tweaked column sizes to the values before my changes fdf2718
  • refactor(footer): to latest figma design #182 3e0ba2b
  • refactor(footer): move subfooter logic to the proper component #185 3034577
  • refactor(footer): update controls b0b872b
  • refactor(testimonial): update divider 784450a
  • refactor(testimonial): changed divider color to secondary 84282f9
  • refactor(divider): remove custom divider from theme config a0409e8

🏠 Documentation changes

  • docs(divider): switch to secondary color 239844b
  • docs(divider): showcase path fix d5ea03f

🛠️ Others

0.4.3 - 2022-06-03

🐛 Bug Fixes

  • fix(edit): Fix columns/accordion inner toolbar padding fafbb52

💅 Enhancements

  • change(docusaurus): completed removal of description from guides 42424b9

0.4.2 - 2022-06-02

💅 Enhancements

  • change(docusaurus): moved color swatches around in the color guide 8a395fc
  • change(docusaurus): removed description from components and introduced category listing f220bf0
  • change(docusaurus): rename gap to space and added em spaces f5b042d
  • change(docusaurus): moved extra docs to webdev section 1ce0797
  • change(docusaurus): moved md_components files into webdev/md_components 73c1c08
  • change(docusaurus): added category yml for all sections 1740572
  • change(docusaurus): color guideline updates and spacing tokens documentation #148 c1154ba
  • change(docusaurus): modified story links to avoid broken usage tabs 78dc8d8
  • change(docusaurus): renamed several file id's so that they match the incremental naming sequence 11299c9

🏠 Documentation changes

  • docs(Docusaurus): timeline, testimonial, quote and tags aaa54ec
  • docs(spacing): add relative gap tokens 92abc8f
  • docs(colors): updated colors a28c99e
  • docs(tags/content): new page about tags and content 60be402
  • docs(Docusaurus): labeled icons f6a0f61
  • docs(typography): add font size and line height tokens 2ff65e4
  • docs(spacing): add spacing gap tokens 2d53727
  • docs(spacing): add missing gaps 442db46
  • docs(docusaurus): minor fix 6e66513
  • docs(spacing): aligned images e946fe5
  • docs(spacing): new image fcd3294

🛠️ Others

  • merge changes from develop into docusaurus token documentation a940138
  • perf(docs): restructuring order 8f4134d

0.4.1 - 2022-06-02

🚀 New Features

  • feat(languageLabeledIcon) : add new component 110558e
  • feat(LanguageLabeledIcon):add new component d00200c
  • feat(newTabLabeledIcon) : add new component 8f5cd31
  • feat(labeledIconGroup) : add new component 787d648
  • feat(DownLoadLabeledIcon) : add new component 6ea2fa1

🐛 Bug Fixes

  • fix(LabeledIcon) : fix lint errors 91b042f
  • fix(LabeledIconGroup) : fix links for tests daa1065
  • fix(LanguageLabeledIcon):bug fix & languages change 1436e2b
  • fix(LabeledIconGroup):fix based on Langauge & Download Labeled icon components changes 3015864
  • fix(newTabLabeledIcon) : add link item b1a9ada
  • fix(Labeled Icons):minor bug fix 00f3022

💅 Enhancements

  • refactor(labeledIcons): adjust new tab labeled icon to figma and replace px with rems 904615d
  • refactor(LanguageLabeledIcon):implement with pop up 0f3dd8f
  • refactor(labeledIcon): add group wrapper in labeled icon stories 4b7dd31
  • refactor(DownloadLabeledIcon):implement with pop up aa61f9b
  • refactor(labeledIcons): adjust language labeled icon to figma 5741e3d
  • refactor(labeledIcons): adjust download icon to figma and replace px with rems 4ae8530
  • refactor(LanguageLabeledIcons):minor storybook change 78f5544
  • refactor(LanguageLabeledIcon): set language code to uppercase and minor storybook change ac28693
  • refactor(labeledIcon): adjust paddings 9c1ecdd
  • refactor(labeledIcons): update margins for group labeled icons 5fa5ca9
  • refactor(labeledIcons): add variable for icon color 9f9d3cb
  • refactor(labeledIcons): update colors on download links c042642

🏠 Internal changes

  • chore(labeledIconGroup) : lint changes 535cee4
  • style(downloadLabeledIcon) : fix styling 6d8e3ac
  • style(downloadLabeledIcon) : fix alignment 4558017
  • chore(LabeledIconGroup) : lint changes ab36476

0.4.0 - 2022-06-01

🚀 New Features

  • feat(Carousel): create carousel for cards 2b0d737
  • feat(ItemwithIcons): Initial Item group with icons, new item variation 7f4ea47
  • feat(utilities): add file and basic utilities 05c88b2
  • feat(utilities): add file with basic utilities classes #173 855185f

🐛 Bug Fixes

  • fix(tokens): hsla function for shadows b8e5d37
  • fix(tokens): remove css var from less file a9c4224
  • fix(carousel):add storybook controls descriptions 269a603
  • fix(item): remove image width css from item.less 7b21cb2
  • fix(table): Set responsive breakpoint to @tabletBreakpoint 067e018

💅 Enhancements

  • refactor(item): import item.less in theme definitions c516374
  • refactor(Label):add corner,ribbon & basic label stories and styles e2bbbb9
  • refactor(Label):style changes based on label importance class ce4d5d1
  • change(tokens): rename gap to space and added em spaces 719efc4
  • refactor(item): add classes for size, set default to tile and add controls for grouped items d5a0405
  • refactor(tokens): add borders, shadows, shapes and z-index tokens 7069106
  • change(tokens): name spacing tokens gaps and added missing values up to 80px as documented 9fbd912
  • refactor(quote): Rename sourceInfo to extra info 76c2b40
  • refactor(item): WIP replacing unstackable with row e3a44de
  • refactor(tocens): add color design tokens 13bb165
  • refactor(item): adjust margins to match figma designs 6334581
  • refactor(carousel): remove title from story and color on card hover 12a1d7c
  • change(tokens): updated sizes with 4-8-16px increments 1f53d65
  • change(tokens): added size tokens to be used for width of elements cda5dea
  • change(utilities): values need important rule 96150d9
  • change(tokens): added also rem space values aedbbdd
  • change(tokens): updated z-index tokens with negative values 404efe4
  • refactor(tokens): add 14px font size token 8d8695d
  • refactor(docusaurus): restructured and improved sections navigation #174 b47b026
  • refactor(tokens): add 12 and 14px font size token #176 3681147
  • refactor(tokens): remove conditional border radius f0fe5ad

🏠 Documentation changes

  • docs(website): created new sections, improved website navigation 243f0be
  • docs(homepage): adding design system homepage with links for upcoming sections c9a9685
  • docs(docusaurus): copyedit, improved navigation 998762a
  • docs(website): restructuring, moved current DS docs to new folder 8bb612f
  • docs(homepage): copy editing ee37d6f

🛠️ Others

  • Release 0.4.0 f4bc509
  • feature(homepage): added Item group with icons #167 2ec99f5
  • feature(tokens): added borders, z-index, shadows tokens #171 74c1788
  • feature(tokens): added initial color design tokens #169 da3eae0
  • perf(carousel): added slick library ca9be51

0.3.1 - 2022-05-19

🐛 Bug Fixes

  • fix(input,segment): toggle inputs and padding fixes within Volto sidebar forms de030d6

💅 Enhancements

  • change(login): restored width of login container to 376px 0564293

0.3.0 - 2022-05-17

🚀 New Features

  • feat(Callout):create Callout component with Blockquote style 3d486b1
  • feat(callout): Align the Callout component with Volto slate component e9343ff

🐛 Bug Fixes

  • fix(testimonial): fix storybook arg names b9df52f
  • fix(table): tweak responsive table for extra long headers 7f9f9e2
  • fix(quote): fix color and padding issue 310d6b3
  • fix(accordion): Fix accordion active title color 57af165
  • fix(testimonial): remove info arguement 9593d95

💅 Enhancements

  • refactor(Table):add responsive mobile table story and styles aed69e6
  • refactor(testimonial): adjust to volto design | fix avatar image size 546070e
  • refactor(Quote):rename Pullquote component to Quote 9384a0c
  • refactor(Quote):rename Quote.Metadata to Quote.SourceInfo dfae8b1
  • refactor(Quote): rename Author to Source 6d400f6
  • refactor(Quote):move Testimonial component under Quote folder e2467c2
  • refactor(testimonial): readjust rounded card b419334
  • refactor(Table):wrap table with semantic ui container 24ac2bb
  • refactor(Testimonial):minor storybook bug fix 7b6d128
  • refactor(Callout): wrap story with semantic ui container ead362d
  • refactor(quote): update action name to match the functionality caf2e35
  • refactor(table): add borders to responsive table with celled attribute 8a71a67
  • change(table): make use of headerSortableWhiteSpace variable fd836fb
  • change(table): use the @mobileLandscapeBreakpoint for max 480px media query 90880ab
  • refactor(Quote):rename pullquote to Quote in Testimonial f54da19
  • refactor(Testimonial): change card class name e995c32
  • refactor(Testimonial): prettier changes 904594b

🛠️ Others

  • feature(tokens): added tokens folder for design tokens we can use in the system a542172
  • perf(lint): fix f2ef3ab
  • Release 0.3.0 8724b28

0.2.4 - 2022-05-13

💅 Enhancements

  • change(segment): brought back overrides from pastanaga into our theme 14efd02
  • change(container): removed padding from containers restoring thus the defaults c2ed813
  • change(grid-story): added container as grid width is influenced by container width 459f481
  • change(breadcrumb): removed padding from breadcrumb added by container c5df567
  • change(container): modified all outputted widths to align to grid 9f29cef
  • change(breakpoints): restore Semantic UI breakpoints, adding extra needed values e7f5b1e
  • change(container): restore maxWidth to 100% now that the last value is 1120px 8b55c58
  • change(header): wrap header globalnav links useful for editing section 10d4f56
  • change(breadcrumb): added vertical variant to the breadcrumbs like we do in Volto f405f84
  • change(breakpoints): added also contentBreakpoint for backward compatibility b6c9212

🛠️ Others

  • [JENKINSFILE] Add failure comment, no jenkins fail c325bf1
  • prettier changes 134da52
  • [JENKINSFILE] format PR comments 739438c
  • [JENKINSFILE] mention comment author in comment 39a26aa
  • [JENKINSFILE] remove debug, add error per stage 903eecd

0.2.3 - 2022-04-29

🚀 New Features

  • feat(CallToAction):add feat call to action ab53642

💅 Enhancements

  • refactor(button): add container to stories 6c02c19
  • refactor(tab): update vertical tab columns and content b473fab
  • refactor(call to action):render call to action with Button as="a" e7dfabf
  • refactor(button): update inverted button colors c822021
  • refactor(Tab):scrollbar change in mobile & vertical tab fix 0e34cbf
  • change(banner): added icon class to share icons 48e866e
  • refactor(Button): move button to forms folder 94996fc
  • refactor(Tab):minor change in secondary pointing menu variables 280b6c4

🏠 Documentation changes

  • docs(button): import call to action stories e4eed44

0.2.2 - 2022-04-22

🐛 Bug Fixes

  • fix(publicationCard): restore line endings 582859e
  • fix(form): added back overrides from Pastanaga theme a3f7ff8
  • fix(OrderedList) : add list only if sub list exists 8acbc8d
  • fix(label): update highlight label color d55bbb0
  • fix(publication card): run prettier 81a5bfc
  • fix(avatar) : fix naming convention for arg 84fc5fa
  • fix(tab): restore mobile font sizes 58f39be
  • fix(addForm): add min height to add form and fixed block chooser overflow ca4415d
  • fix(OrderedList): adjust margins to fourth sublists 663d384
  • fix(dropdown): being hidden because of third party css 7d353df
  • fix(modal): overflow hidden as clearfix of last child from modal b4923f5
  • fix(RelatedContent):fix merge conflict adc34bf
  • fix(button): labeled class needs to be placed after left or right keyword 53d1204

💅 Enhancements

  • refactor(card): prettier fixes e10e3d6
  • refactor(card): add card variations e16d05b
  • refactor(card): remove stories 0deb0ca
  • refactor(card):delete primary and secondary card stories 1f95d22
  • refactor(Avatar) : remake avatar as card variant ea77cdd
  • refactor(card): add styles for card variations 7407bd3
  • refactor(storybook): add story with related content inside of a tab dca008a
  • refactor(card): Rename variables from avatar to rounded be01316
  • refactor(avatar): update less variables and layer structure f965db1
  • refactor(PublicationCard):remake publication card to be a semantic card variation 5a0c6ab
  • change(button): simplified button styling fe892d6
  • change(button): simplified storybook naming and examples 9a7df4f
  • refactor(Avatar) : convert avatar component to card variation 2004a94
  • refactor(Related Content): change in grid and add see all button 955450e
  • change(button): added back button.overrides from pastanaga theme 3b55acb
  • refactor(card): add card class control 68c91a9
  • refactor(card):delete publication card variables & overrides files 6be8a03
  • refactor(OrderedList): rename TOC to Ordered List and add container to the story e00c4db
  • refactor(card): add card grid fluid story with no columns f38251c
  • refactor(list): remove horizontal control 1f5e576
  • refactor(avatarGrid): update less variables and layer structure db554a8
  • refactor(Related Content):show button when there are more hidden cards 57ff1c8
  • refactor(RelatedContent):change to use new card variant instead of publication card component 7cf424a
  • change(breadcrumb): brought back pastanaga overrides to breadcrumbs bca1c93
  • refactor(card):delete publication card folder & story 68bf773
  • change(buttons): modified basic and circular variant behavior c06fed9
  • refactor(card):tertiary variation minor story update 87b8dca
  • refactor(DescriptionList): add container to story d647c1a
  • refactor(List):render ordered list with ol,li tags 87813c1
  • refactor(OrderedList) : change table of contents story to ordered list cb6197c
  • refactor(publicationCard): update tag and name variables c109ad9
  • refactor(UnorderedList): update list as ul, list items as li and add container to strory 2c096e1
  • refactor(card):organize controls and minor bug fixes f3f6e35
  • refactor(less variables): publication card style changes c5a84e9
  • refactor(less variables): add less to related content e1a5543
  • refactor(RelatedContent):delete publication card component 2ed0ed4
  • change(button): basic button is again without padding, border and background 5a907c7
  • refactor(PublicationCard):remove link wrapper 5911a0d
  • refactor(less variables): change publication card height per viewport d7a5256
  • refactor(Timeline):change timeline icons b2fe0bf
  • refactor(publicationCard): replace px with rems 53bf8da
  • refactor(Related Content): change in related content grid bf856ce
  • refactor(List):render description list with dl,dt,dd tags ec669a7
  • change(button): show only labeled variant for buttons with icons bf49944
  • refactor(card): import image for rounded card ca5a47e
  • refactor(progress): add container to story dfb33bb
  • refactor(storybook): add publication card story with different description sizes 23af97b
  • refactor(List):render default list with dl & dt tags ece2280
  • refactor(storybook): add publication cards stories with longer description 37adefa
  • change(button): basic icon buttons no longer have box shadows c2f3ea3
  • refactor(card): remove story afc5f79
  • refactor(less variables): change card description line number per device 6946fda
  • refactor(card): update rounded card image path 8db3a85
  • refactor(DefaultList): add container to story f971193
  • change(button): bumped z-index of sidenav expand button 445ed8a
  • change(progress,label): color accessibility fixes #151 09cf6e3
  • change(button): text button now has an underline with a focus border like other buttons cdd9043
  • refactor(card): update card variation grids path 756589c
  • refactor(card): minor fixes 3a880d7
  • change(button): primary color is blue and secondary is green 53e0a0c
  • refactor(List):change styles to match with the tags lists are rendered 2673890
  • refactor(progress): update colors for accessibility ea2f454
  • refactor(card): move avatarGrid & relatedContent to Card folder 1959d52
  • refactor(Timeline): change storybook timeline colors to fix accessibility issues 79da8dc
  • change(segment): restore light grey background color for secondary segments 8716b08
  • refactor(relatedContent): adjust column paddings 8a1520d
  • refactor(storybook): clear up code 3ada154
  • refactor(card): use the rounded class for avatar grid 8c000f3
  • refactor(card) Update rounded card class 140b587
  • refactor(avatar): add variable for image border radius c23341c
  • refactor(label): add container to story 565101f
  • refactor(progress): update value color for accessibility error 6fc76f8
  • refactor(card):use jsx extension 413d328

🏠 Internal changes

  • chore(Avatar) : add container to stories 41b748c
  • style(OrderedList): prettier fixes ed95e4d

🛠️ Others

0.2.1 - 2022-04-08

🐛 Bug Fixes

  • fix(version): Switch to 2.0.0.alpha.1 83b8b8e

🛠️ Others

  • cleanup(loader): Remove useless HTML d1d180c

0.2.0 - 2022-04-04

🚀 New Features

  • feat(card) : add new default card color-schme 965adea
  • feat(label): Handle slate links and footnotes f382431

🐛 Bug Fixes

  • fix(buttons,toggles): border and background color when active 147629 #139 ea36f31
  • fix(checkboxes): background color when they are toggles 4b6ab67
  • fix(buttons): border set on basic buttons appearing on svg elements of Volto UI 69ca73f
  • fix(label): Zotero/Footnotes inside label 0ee4d58
  • fix(card) : add control for image url in storybook b28e530
  • fix(less variables):change font family e4bca9e
  • fix(storybook):minor bug fix 9fc53bc
  • fix(tag): fixes merged theme config eb30363
  • fix(Banner): prop types fix a270e5b

💅 Enhancements

  • refactor(tag): splits Tags component to TagList and tag, changes default tags style 78a5f8c
  • refactor(Banner):add banner share pop up in banner story c9688b2
  • refactor(tag): remove classes and actions that add background color ce9b6f9
  • refactor(Banner):change banner's image wrapper implementation 9153dd1
  • change(package): bump release version to 1.10.0 7e984c1
  • refactor(card): align cards and images, update less variables d47c978
  • refactor(card): add class inverted for default card 919a56e
  • refactor(tag): changes component name e1db068
  • refactor(tag): changes color metallicBlue to bottleGreen e4b68ac
  • refactor(less variables): change tag list mobile view fcded3d
  • refactor(tagList): update story to not use tag color classes 8b5b61b
  • refactor(Banner):minor bug fix ff8c352
  • refactor(Banner): add metadata field sub component 327b7e7
  • refactor(banner): add and adjust remix icon for banner action 1bf3ffa
  • refactor(banner): replace px with rem and adjust share popup padding a568329
  • refactor(Banner):add type class to metadata field and apply styles to it 86a2866
  • refactor(less variables):change tag list styles 8670087
  • refactor(banner): share items display flex on desktop 3ff8684
  • change(banner): added background gradient, share popup, metadata show and hide #136 2f5dcca
  • refactor(banner): update gradient 570ee1e
  • refactor(tags): removes hardcoded ':' ea58e86
  • refactor(card): remove card border bc77739

🏠 Internal changes

  • style(card) : add lint and prettier changes 9d9a773
  • style(tag): remove comments 501fcdf
  • style(tag): stylelint and prettier changes 08b6386

🛠️ Others

0.1.9 - 2022-03-25

🚀 New Features

  • feat(all): 1.9 release #124 0d3f6fb
  • feat(callout): Align volto-slate callout with blockquote style 9e0bb49

🐛 Bug Fixes

  • fix(inpageNavigation): restore hidden on top functionality c554e6e
  • fix(list): Fix TOC margin on 3rd level f17da79
  • fix(inpageNavigation) : add smooth scroll animation 42f6564

💅 Enhancements

  • refactor(footer): update visual and mobile margins 64f05af
  • refactor(header): restore union dropdown after implementation a7029c5
  • refactor(pullquote): adjust to the new figma design 78e4606
  • refactor(breadcrumb): adjust font sizes and import remix divider 5fcabaf
  • change(header): use viewport width for changing mobile text in header dropdowns 5a7868e
  • refactor(inpageNavigation): adjust to the new figma design 4073acf
  • refactor(tab): add max width for tab items 366d279
  • refactor(less variables):change pullquote styles 9ad94bb
  • refactor(Pullquote):change quote positions and add Pullquote.Metadata sub component 6bce35f
  • refactor(inpageNavigation): Update to remix icons 19a6061
  • refactor(inpageNavigation) : move icon & text to be in column 0953910
  • change(breadcrumbs): modified breadcrumbs template to behave like breadrumb template 490a559
  • change(package): bump release version to 1.9.0 43a6e4b
  • refactor(breadcrumb): adjust font sizes and import remix divider #120 09a3a01
  • change(menu): modified secondaryPointingItemMaxWidth to a value that equals to 250 ea138a1
  • refactor(pullquote): introduce meta section, use remix icons, integrate slate callouts #119 fd740c9
  • refactor(footer): updated visuals and gradients #117 e5c6d18
  • change(scrollToTop): feature inpage navigation revamp #121 3cf20a8
  • refactor(footer): update visual and gradient 764ec23
  • change(header): use 12px font size for mobile resolution dropdowns 6dad0fa
  • change(nav): added navDepth to 3 in order to enable mega menu integration c4f73fd

🏠 Internal changes

  • style(inpageNavigation) : lint changes 3641d78
  • style(inpageNavigation) : add less variables 0699c70
  • style(pullquote): create variable for icon font size fea9b0a
  • style(inpageNavigation) : add lint & prettier changes f8dd012
  • style(inpageNavigation): remove comment 1aee011

🛠️ Others

0.1.8 - 2022-03-18

🐛 Bug Fixes

  • fix(card): avoid long links from spilling outside of card body area 95b8951

💅 Enhancements

  • change(typography): set heading sizes as detailed in docusaurus typography section 189bf20
  • change(docusaurus): content tweaks, inpage navigation section #112 b62d1b1

🏠 Internal changes

  • chore(docusaurus): fixed grid tablet breakpoint value c7fbc09

🏠 Documentation changes

  • docs(docusaurus): capitalization remove bf8fa44
  • docs(docusaurus): update 1c04976
  • docs(docusaurus): comment address on pr 112 6e4fe3b
  • docs(docusaurus): color minor update 13f9fda
  • docs(docusaurus): tabs and breadcrump update d0547e5

🛠️ Others

  • doc(colours): add more content ec66248
  • Add divider content for metadata field in Banner f1e34bd
  • Release 1.8.0 fd6ba04

0.1.7 - 2022-03-15

🚀 New Features

  • feat(less): add global gap sizes 3c83f20
  • feat(icons): import remix css 29967fb

🐛 Bug Fixes

  • fix(menu): fix border overflow for tabs and pagination e88721f
  • fix(accordion): responsive and accessibility issues c225935

💅 Enhancements

  • refactor(menu): update paddings for tabs and pagination 533a509
  • refactor(accordion): import semantic icon for remix arrows 9aa77d8
  • refactor(all) icons, accordion, button and menu itml #108 52ed2ca
  • change(storybook): segment stories now contain several elements 98a7654
  • change(table): inherit header alignment instead of hard-coding values ebb5193
  • refactor(icons): add remix icons c4c1a92
  • refactor(container): restore mobile width to auto 2df184c
  • refactor(button): update action button hover color bb09d71

🏠 Internal changes

  • chore(docusaurus): docs delete 5f9d733

🏠 Documentation changes

  • docs(colors): corrections da64c4c
  • docs(list): default list showcase 8ded062

🛠️ Others

  • bug(form): input min-width more specific to not break volto interface 3f5b5d4
  • Update package.json 3dba28b

0.1.6 - 2022-03-11

🚀 New Features

  • feat(cards): add custom display for volto-block-image-cards 645096a
  • feat(PublicationCard):create publication card component & styles 3e5f9b7
  • feat(PublicationCard):create publication card component & styles 12cdd5d
  • feat(Related Content): create Related Content component 77eda95
  • feat(Related Content): create Related Content component 08d495b
  • feat(pagination,related) added several r3 components #105 08d47c1

🐛 Bug Fixes

  • fix(Related Content): limit publication card number to 4 e7df032
  • fix(less variables):rename publication card variables 55c6fb8
  • fix(Publication Card): add link to card and arg name fix 36a7c96
  • fix(radio): fix bullet scaling issue with firefox 5f02c95
  • fix(radio): fix bullet scaling issue with firefox dbb2e27

💅 Enhancements

  • refactor(form): remove custom classes and add container to form items 6b5442a
  • refactor(form): remove custom classes and add container to form items d1ec083
  • refactor(form): update form wrapper component a719576
  • refactor(form): update form wrapper component 0736ec7
  • refactor(form): adjust form items to volto theming 4213cfb
  • refactor(form): adjust form items to volto theming 374ffbc
  • refactor(breadcrumb): remove custom class anf and new variables b3cb83d
  • refactor(breadcrumb): remove custom class anf and new variables d5808ad
  • refactor(storybook): clear up unnecessary form elements controls f7e7d5b
  • refactor(storybook): small change in unordered list story 3ffd872
  • refactor(storybook): small change in unordered list story 6ce16e9
  • refactor(pagination): fix menu overrides for tabs that affects pagination fe8c4ca
  • refactor(pagination): fix menu overrides for tabs that affects pagination 3f4b726
  • refactor(Loader):remove image & add background image 70fe041
  • refactor(Loader):remove image & add background image ac38126
  • refactor(list): remove selection control a09b179
  • refactor(list): remove selection control 17bf710
  • refactor(storybook):unordered list minor change df2b727
  • refactor(storybook):unordered list minor change ef6db73
  • refactor(colors): remove metalic blue color b2f95b6
  • refactor(colors): remove metalic blue color 1eea33f
  • refactor(button): update variables b1774d8
  • refactor(button): update variables 061f3e3
  • change(blockquote): treat slate as a variation of blockquote component 19bd9a5
  • refactor(container): remove important from rules e984771
  • refactor(storybook):add textarea control to add/remove fluid class 475f540
  • refactor(container): remove important from rules 1cc6984
  • refactor(storybook): add required attribute to form fields fecee27
  • refactor(progressBar): update progress bar colors with vars c4ef1f0
  • refactor(progressBar): update progress bar colors with vars a44d73c
  • refactor(storybook): add required attribute to form fields 21da79e
  • refactor(list): adjust bullet size 2b29e4e
  • refactor(list): adjust bullet size 61c341c
  • refactor(statistic): add inverted background to global variables 1427e70
  • refactor(statistic): add inverted background to global variables ea25dfa
  • refactor(statistic): remove custom class 46cc560
  • refactor(container): update mobile width d548a44
  • refactor(grid): replace px with rem units e792f51
  • refactor(statistic): remove custom class b5c8e7c
  • change(docusaurus): updated template to change what's new title 3e15f4d
  • change(footer): added display variable for footer site logos d5b3c2f
  • refactor(grid): replace px with rem units f0331d0
  • change(github): auto deploy only on develop branch 11d6b4e
  • refactor(header): implementation in preparation for Volto integration #20 #89 95b136d
  • change(github): trigger autobuild when modifying templates contents 46094b1

🏠 Internal changes

  • style(list): prettier fixes f9e3b05
  • style(list): prettier fixes 8eb715b
  • chore(github): merge changes from develop to develop-itml 063bd6e
  • chore(github): build deployment only on develop branch a5a1b08
  • chore(github): build deployment only on develop branch bb455aa
  • chore(github): merge changes from develop to develop-itml 129c12f

🛠️ Others

  • Revert "chore(github): merge changes from develop to develop-itml" ca9520f
  • refactor breadcrumbs component, make it functional and customizable e902d69
  • rollback(cards): move custom display to volto-block-image-cards 2564b1e
  • bring back segment wrapper and make it attached 8458f03
  • no display: flex for blockquote added from slate 5595ce1
  • Add rule about code length a5f3652
  • Add indenting rule 15c44cb
  • fix warning related to proptype 946c6c6
  • fix profile section css overflow db5126f
  • Add rule about import sorting 804e188
  • don't use volto-slate 6a02976
  • remove segment custom width 1d3ea40
  • Add rule about naming vars 8f9020f
  • update style for accordion title 0b0d678
  • Release 1.6.0 e771e65
  • update bbcab87
  • add margin to <br> element to simulate gap as in design c6685c1
  • make breadcrumbs default size as tiny 589581f
  • remove uneeded style 82a8fb1
  • Add rule about hardcoded values e04e0df
  • Add file mode rule 65c9a93
  • Add DRY rule 66c9c3a
  • set profile section overflow to auto 71ab47f
  • Add Sonarqube tag using eea-website-frontend addons list 647a6e3
  • removed override already present in card.less 50d2ab2
  • update 7a1d482
  • Add functional components rule; add classnames rule 91a0b06
  • added comment about need for removal of this fix later 65b8166

0.1.5 - 2022-03-08

🚀 New Features

  • feat(cards): add custom display for volto-block-image-cards f49ffb6
  • feat(KeyContent): add new component 2534c54
  • feat(docusaurus): Updated developer guidelines ca146ff
  • feat(storybook): add testimonial component 55d9747
  • feat(storybook): add AvatarGrid component b668445
  • feat(storybook):add Loader component f675834

🐛 Bug Fixes

  • fix(breakpoints): fix largest screen breakpoint bug on scaling e4a11c8
  • fix(profile): section css overflow and padding issues #95 bb9eb0f
  • fix(storybook): lint auto changes for AvatarGrid b8e74f1
  • fix(components): add grid structure to various components cc33546
  • fix(header) re-added span tags removed in pull request #74 00702d7

💅 Enhancements

  • refactor(button): styling updates 37afda5
  • refactor(tab): updates on variables and overrides 54bf703
  • change(blockquote): treat slate as a variation of blockquote component 5e8a8b8
  • change(footer): added display variable for footer site logos 2f942b4
  • refactor(checkbox/radio): remove header from message and adjust top position of bullet 4a072b3
  • refactor(color): remove secondaryColorDarken variable 74c8ba0
  • change(docusaurus): updated template to change what's new title 58f58c8
  • change(github): auto deploy only on develop branch bfa35a3
  • refactor(header): implementation in preparation for Volto integration #20 #97 cddda20
  • refactor(breadcrumbs): component, make it functional and pluggable #32 #94 9f42e80
  • change(card): added styles for volto cards integration #92 a46ac21
  • refactor(grid): remove column count from example ac0e9cf
  • change(github): trigger autobuild when modifying templates contents 5f7d152
  • refactor(grid): remove custom grid 1d978a9
  • refactor(Form):change form field wrapper implementation 73cdd6d
  • refactor(message): update colors to match design 633ce31
  • refactor(checkbox/radio): update variables and remove important rules ad533b4
  • refactor(less variables): add variables to less for new components 47df026
  • refactor(Tab): fix vertical tab alignment 401bdf2
  • refactor(lint changes): add lint changes 6f6847f
  • refactor(inpageNavigation): adjust to volto theming 62f74ea
  • refactor(message): updates on styling b4cf850
  • refactor(banner): update class name ef0969b
  • change(github): use develop for auto pushing a32a723

🏠 Internal changes

  • style(design-system): unix eol 631fa90
  • style(checkbox/radio): prettier fixes a04939f
  • style(design-system): unix eol 3c753f0
  • style(message): stylelint fix 5b75057

🏠 Documentation changes

  • docs(docusaurus): visuals guidelines 544a950
  • docs(docusaurus): search guidelines 0fb229d
  • docs(docusaurus): loader page 892a25d

🛠️ Others

  • Reformat header.less 1f99dfc
  • Close menu when changing path 65daea9
  • refactor breadcrumbs component, make it functional and customizable 4ec374e
  • rollback(cards): move custom display to volto-block-image-cards 79d4c89
  • Open overlay menu on global menu click cc749bc
  • bring back segment wrapper and make it attached 9f413ff
  • Use renderMenuItem also in mobile menu 02de0bb
  • Fix clicking outside closes menu af52664
  • Cleanup args in header story 2bf6a30
  • fix warning related to proptype 824b9be
  • fix profile section css overflow 8fd2654
  • don't use volto-slate 70ca3d4
  • remove segment custom width 4a60d84
  • update 96f4af0
  • Fix TopDropdownMenu component rendering in mobile a4626de
  • Add usePrevious hook 797faba
  • make breadcrumbs default size as tiny 3c8e1c6
  • Update package.json fa020cb
  • Add rule about hardcoded values 0c6912c
  • set profile section overflow to auto 8db62bb
  • added comment about need for removal of this fix later 6fdbd71
  • Add Sonarqube tag using eea-website-frontend addons list 6051724
  • removed override already present in card.less 93c4e5a
  • Remove console.log calls 8a3a4cb
  • update 81bb7d4
  • Update comment ffa2400
  • merge develop into this branch ad5b388
  • WIP a8d97f1
  • Use header.less from develop branch 99edbc6
  • WIP 57b5783
  • WIP 785da36
  • WIP 5d1eba9
  • adds Tags e37fc19
  • Add useClickOutside hook 70364c8
  • Implement outside click handling fa6f818
  • Simplify overlay menu template 28b0478
  • fixes less variables, fixes tags positioning cc19b9b
  • WIP 15bc0f4
  • no display: flex for blockquote added from slate 312a893
  • Add rule about code length 318cd48
  • Add indenting rule d589685
  • Add rule about import sorting cd337c1
  • Add rule about naming vars b112de0
  • Bring back classNames from header subpopup e477a51
  • removes tags hashtag from jsx 6b8b3e9
  • WIP d481324
  • fixes undefined on empty classes 4b29080
  • stylelint changes a5ab830
  • Footer link color @white 578e4f7
  • add margin to <br> element to simulate gap as in design 9ab9a97
  • impors colors from site variables 6117267
  • small fix for the link in footer action 72df049
  • remove uneeded style 66e9064
  • use proper naming conventions for var naming 596e314
  • Add file mode rule 805baa7
  • use less variables b43ac8d
  • Add DRY rule 2f1584e
  • Add functional components rule; add classnames rule 1b2915e
  • fix z-index of header 7d2a5d6
  • Remove comment 7d120b1

0.1.4 - 2022-03-01

💅 Enhancements

  • refactor(pagination): adjust to volto theming 06cc3b6
  • refactor(Form):create form field wrapper file 95b9934
  • refactor(megaMenu): update margins for menu items 230e476
  • refactor(megaMenu): update gradient 47f2ea4

🏠 Documentation changes

  • docs(docusaurus): divider page c6bb238

🛠️ Others

0.1.4-beta.0 - 2022-02-25

🚀 New Features

  • feat(github): added feature and bug reports templates with our guidelines as checkboxes 1549093

0.1.3 - 2022-02-25

🐛 Bug Fixes

  • fix(all): change eol to unix 62e7224
  • fix(banner): separate url value f9c9140
  • fix(all): merge eol c68f6e0
  • fix(blockquote): align self property now uses a valid entry ec76163

💅 Enhancements

  • refactor(megaMenu): new implementation ff013af
  • change(volto): removed customizations made for ims theme from volto-eea-design-system bc8d514
  • refactor(Timeline): divide to sub components and change files to .jsx 3e2bd3b
  • refactor(header): update variables 4e5d08d
  • refactor(Header): link header's menu to mega menu 08406d8
  • refactor(Menu): change mega menu implementation 455a51b
  • refactor(Grid):minor changes and delete extra files 272585d
  • refactor(timeline): adjust to volto theming b98641a
  • refactor(megaMenu): fix link hover issue for tablet 564e972
  • refactor(header): add remix icons and minor updates c9c97dd
  • refactor(Header): change header buttons implementation 6608b8c
  • refactor(Header): add sub components and change existing Main 74c35a3
  • refactor(table): adjust to volto theming ab7a0e8
  • refactor(Footer): delete Actions & ThemeSites files and clear imports 7a78456
  • refactor(header): update variables 326655a
  • refactor(Breadcrumb): add react router link and minor bug fix 073a3a3
  • refactor(Header): show menu on search & minor bug fix 4d49a8a
  • refactor(List): add extra default list story 95665cd
  • change(docusaurus) change generation of what's new section and bump package version 6c35cff
  • refactor(Footer): minor code changes 67cb4bc
  • refactor(Menu): add class to mega menu items for styling 19baa34
  • change(accordion): modified default accordion stories titles with real accordion names cf11cc8
  • refactor(Header): accessibility image alt fix a7347a6
  • refactor(header): adjust to volto in progress 760beca
  • refactor(Header): header items as storybook arguments 388c752
  • refactor(banner): update less variables 35b0a98
  • refactor(banner): actions as buttons; don't hardcode url for banner image; subcomponentize Banner, add Banner.Action; add developer guidelines on inline styles and line endings; 6dd5a41
  • refactor(blockquote): fix responsive margins and sizes rems 209f94f
  • refactor(Input): label position and style change 970074a
  • refactor(header): update dropdown menu 32eb0fa
  • refactor(timeline): theming updates c80c9aa
  • refactor(Blockquote):remove image stories a6357ca
  • change(docusaurus) proofread blockquote usage section and removed unused api section 0bb29fd
  • change(infrastructure) cherry-pick fix 9639243 skipping jenkins on auto commits fc744cd
  • change(ci) build storybook and docusaurus only when pushing to develop-itml branch 4de0cbf
  • change(infrastructure): modify whats new doc when committing the auto deployment 39df33e
  • change(blockquote): introduce float argument for blockquote with image storybook 8fc7290
  • refactor(pullquote): add word break 2245e53
  • refactor(Banner): minor bug fix b9073b6
  • refactor(table): fix th font weight a96a0a7
  • refactor(comment): remove avatar border radius d42c37b
  • refactor(banner): adjust title size 7a24d9c
  • refactor(Image): change image path a580da6
  • change(infrastructure): specify that docs folder contains changes for deployment a1ca915

🏠 Internal changes

  • style(input) prettier fixes e83fa0c
  • chore(storybook): prettier fix 354c7b3
  • chore(design system): technical commit for edw integration tests 9f76035
  • style(storybook): prettier fixes 3c9ad34
  • chore(infrastructure) updated branch with changes from bitbucket 77866f8

🛠️ Others

  • doc(colours):fix color to better show primary ones 705b789
  • doc(colours):change font size to fit text in one line 4ad7516
  • bump package release to 1.3.0 f3cfe4f
  • Refactor banner into content subcomponent f8df238
  • lint fixes cda322d
  • rollback don'ts grammar change and disable unresolved import for Banner.stories.jsx a1bd715
  • Add space line in component d4d1a5f

0.1.2 - 2022-02-17

🚀 New Features

  • feat(blockquote) added blockquote styles as a custom module d30662e

🐛 Bug Fixes

  • fix(inpageNavigation): hide at the top of the page 97ef500
  • fix(footer):missing image ac91a29
  • fix(comment):fix broken image 8125dc1
  • fix(message): fix font loading fdc498e
  • fix(logo): logo change 5f8c8af

💅 Enhancements

  • refactor(storybook): multiple components fixes 4a3ff51
  • change(infrastructure) re-enable integration tests for auto release stack ce8daf8
  • refactor(storybook): global site files styling update f3770f1
  • refactor(storybook): multiple components 9277aac
  • refactor(footer) adjust to volto theming update a59f1c3
  • refactor(header): minor styling update dd6b55c
  • refactor(Header): change header mega menu 7559b57
  • refactor(banner): adjust to volto theming 451b949
  • refactor(accordion): minor styling update aeaf25f
  • refactor(footer): adjust to volto theming bdff176
  • refactor(footer):mobile responsiveness 14822be
  • refactor(storybook): main and custom less files update 1607760
  • refactor(timeline): update after removing timeline addon f54d380
  • refactor(Footer): replace with subcomponents 378c652
  • refactor(Header): header change 029e850
  • refactor(Header): change header bar 2b766fd
  • change(docusaurus) use itml branch for docusaurus deployment 6e286c5
  • refactor(accordion): adjust to volto theming 971fcb8
  • refactor(Header): add sub components 7f955db
  • change(docusaurus) tweak auto deployment to always commit changes from docs a2940da
  • refactor(banner): less and variables files created d5b1a8a
  • refactor(label): adjust to volto theming 3c945e1
  • refactor(message): adjust to volto theming 3e950fc
  • refactor(Footer): add sub components and props c3d1487
  • refactor(modal): modal and confirm adjust to volto theming 83b60e9
  • refactor(comment): adjust to volto theming 84348c3
  • refactor(storybook):adjust headings 32f64f9
  • refactor(Header): add comments to header menu c2c83b2
  • refactor(Accordion): clear up accordion stories code 4e59b8f
  • refactor(segmant): adjust to volto theming 3ab211e
  • refactor(button) minor styling update 8782bb2
  • refactor(banner): change image position cdd76d5
  • refactor(breadcrumbs): update less variables 640817e
  • refactor(list): adjust to volto theming 1079c73
  • refactor(timeline):adjust timeline module 213eb11
  • refactor(blockquote):adjust to volto theming 5eec87f
  • refactor(progress): add progress bar colors ccf3c98
  • refactor(pullquote):adjust to volto theming fee4466
  • refactor(Header): change mobile mega menu c7ecf18
  • refactor(statistic): adjust to volto theming b726e49
  • refactor(button) adjust to volto theming eb257f8
  • refactor(form): minor styling update 79934b2
  • refactor(Footer): create Actions & Sites sub components 446840b
  • refactor(inpageNavigation): adjust to volto theming 85c631a
  • refactor(Inpage Navigation): changed button's display 36e5b4f
  • enhancement(docusaurus) modified headings to be within release versions 19ace30
  • refactor(storybook): move components to ui folder cb91f88
  • refactor(Header): change mega menu de0fc6b
  • refactor(Pullquote): divide Pullquote to sub components 34413c4
  • enhancement(docusaurus) replace changelog when auto-building docs Refs #145331 da25c0e
  • refactor(popup): adjust to volto theming d0d192d
  • refactor(card):adjust to volto theming 2ab6f91
  • refactor(item): adjust to volto theming 89a16af
  • refactor(pullquotes) remove unnecessary variables e0d20a3
  • refactor(progress):adjust to volto theming d1ab950
  • refactor(blockquote) change variables names 36fd5be
  • refactor(comment): adjust font sizes 0311ed1
  • refactor(InpageNavigation): clear up code 1d7afdc
  • refactor(container): change variable name for computer padding 26d123f
  • refactor(inpageNavigation): remove imports 25c1d1c
  • refactor(storybook): update ui index components exports ce78d47
  • change(infrastructure) auto build storybook when pushing to develop-itml branch of volto-eea-design-system e9aa5bc
  • refactor(storybook): delete demo stories 8b58d02
  • change(docusaurus) align deployment steps for building docusaurus 37e4ce0
  • refactor(storybook): remove components from customizations folder 8930ede
  • refactor(tab): minor styling update 1252ad0
  • refactor(comment): change avatar src e5f9c4c
  • refactor(banner) : change file type and folder 878742b
  • refactor(form elements):changed text 919beea
  • refactor(Image): change image src b971084
  • refactor(Pullquote): add component propTypes d32c5e6
  • refactor(blockquote): adjust font sizes d71a3ce
  • refactor(footer): update font sizes 1c91c35
  • refactor(Blockquote): add component proTypes ea02649
  • refactor(logo): update image f611372
  • refactor(docusaurus): restore config f2c5239
  • refactor(blockquote): update component name 572e655
  • refactor(header): fix story header import ceda6c7
  • change(infrastructure) auto build docusaurus when pushing to develop-itml branch 7bebdf5
  • refactor(storybook): remove components from customization folder 4a9bb9b
  • refactor(banner):story rename 56ff603
  • change(testing) removed navigation from cypress tests until component is finished 5549f4c
  • refactor(Segment): change to .jsx extension 5cb35d8
  • refactor(Pullquote): change to .jsx extension 564cf7e
  • refactor(PopUp):change to .jsx extension dcb24ff
  • refactor(InpageNavigation): change to .jsx extension dfefce3
  • refactor(Blockquote): change to .jsx extension 44a1645
  • refactor(heading): story name update aa10f34

🏠 Internal changes

  • style(footer): prettier fix 902c257
  • style(storybook): prettier fixes 59f941d

🏠 Documentation changes

  • docs(docusaurus):multiple page updates 2aba73e
  • docs(docusaurus):update page content 565697f
  • docs(grid):update components grid 60eb083
  • docs(docusaurus): page adjustments 0641eac
  • docs(docusaurus):updated various pages f860176
  • docs(docusaurus): logo change 3af5e5c

🛠️ Others

  • added sortable table stories and descriptions 6d44dd7
  • Layout components theming 5861013
  • recovered files from origin a4ac04f
  • grid component & stories changes 4a5752e
  • Updated what's new section with actual commits from volto-eea-design-system repo fc5e3c3
  • Docusaurus title possible fix. db699e7
  • form elements stories added description & default values 6b4f6eb
  • removed API tabs 58aa928
  • Layout updates 854f388
  • Refs #142123 removed extra customization of semantic.less: ab9de81
  • added page-header,footer and grid in docusaurus 660c8e3
  • Manual docs build and commit 666eb6a
  • added svg & png files f1338d5
  • added missing components to docusaurus 934dfd8
  • Control descriptions updated 56581eb
  • Grid updates 700332d
  • Button theming update 0ec68b6
  • site variebales & overrides changes 7251162
  • Table and Tabs theming 49f0860
  • Responsiveness updates 48e1351
  • added various components to docusaurus 550d719
  • Checkbox and radio updates 24652a2
  • remove images from typography and colour docs 8493e92
  • added guidelines' text and finished all components 02d75fc
  • added more missing components in docusaurus 8be8263
  • Prettier changes on docusaurus 5f1e5eb
  • Grid updates ae09945
  • Minor fixes for tests 3bdf306
  • Layout updates 8b7a4dc
  • Footer and TOC theming bb3d3c4
  • Refs #145331 manually commit changelog until autobuild is stabilized 93168b0
  • label component changes df8c0ff
  • added several sections to the theming guidelines ff1a649
  • Updated removed files. 84f9b8c
  • added more docusaurus components 52a3b9e
  • Progress Bar 9f2efc9
  • Modal and Confirm updates 3b306c6
  • Add proper changes to whatsnew meant in previous commit 40f78e3
  • Form Descriptions de0dfbc
  • Prettier fixes 1337e6f
  • Deleted files b82f982
  • add new images for spacing 7b7b2c4
  • Messages Theming ad621a3
  • added new content to docusaurus 1c83452
  • Minor less updates a36a8bb
  • Tabs and lists updates e37eef1
  • Inpage nav and timeline components 76f0f82
  • Prettier updated files 679b9d2
  • dropdown initial d8aef26
  • Prettier changes f068af0
  • List initial 6d3b969
  • List story updated e96a6f6
  • Statistics updates 74bf639
  • styling c169cc0
  • timeline comp storybook changes 1f42686
  • feature(docusaurus) added theming guidelines ded1f04
  • Properly commented out integration tests. 48b3a15
  • Reattempting commented out integrations tests. 3dd8211
  • Button theming 4231e1c
  • Card initial 06dace5
  • form element storybook changes c4b06aa
  • Pagination theming 2a80175
  • Accordion theming 8061bf9
  • global var updates and radio story 9526ee2
  • created pullquote component & stories df35563
  • Item stories added description & default values 9d459f2
  • storybook clean up code bffd326
  • List updates 28f1b53
  • Button classes updates 788c289
  • Prettier fixes 678c9be
  • Removed header title from partial docusaurus components. ed7c45e
  • created banner component and stories 9be170f
  • Breadcrumb stories description & defaultValue -- clean up code 186ab65
  • Refs #142123 added customization of semantic.less: 1e02356
  • Card stories added description & default values f6b408f
  • Statistic and accordion updates 16064ce
  • breadcrumb component & stories changes 5bceb98
  • Container initial 3eb7155
  • doc(docusaurus):Fix text for various parts bfd3fa2
  • blockquote component & stories 879b640
  • Refs #143412 removed doc comments breaking doc building e6a6756
  • Popup updates ce2d641
  • Global variables for colors and borders added 6e5fbd6
  • Tab stories changes 5429cfb
  • Confirm stories added description & default value 85cda14
  • Kebab case class names b41cd07
  • Card and Comment class updates 3899465
  • Accordion updates c97ba39
  • item stories changes 772e41f
  • Accordion class updates 9cdde86
  • Comment stories added description & default value cb6f25b
  • Accrodion stories description & default value ab8fb88
  • Pullquotes updates c598421
  • Modal and confirm class updates 0ae47e6
  • Tab and paggination updates 96796ff
  • Form Updates e986a9f
  • Classes renamed 73c8c3d
  • List and item less updates ce0de17
  • Confirm theming 36e20ce
  • container overrides changes 4b3970b
  • Docusaurus theming fc4a8c5
  • refacto(headings): update mobile headings sizes b2e9f83
  • list stories and style changes c61db53
  • Tab theming e31e6c3
  • Message and pagination classes updates c230687
  • Segment initial d5724fe
  • Refs #143412 removed doc comments from api_markdown breaking doc building efeacba
  • Timeline and responsiveness updates 1ed1524
  • Refs #142123 use swap font-display for performance reasons 083738f
  • Breadcrumb stories minor changes 3d0d17c
  • Table component stories minor change 0bf4083
  • List stories changes a64b304
  • blockquote component minor changes cdf71a8
  • ckeckbox stories minor change 6d6e508
  • image component storybook changes 91290ec
  • button overrides changes d5b78dd
  • accordion overrides changes fdcf7d5
  • Accordion component and stories changes 5079247
  • Card theming 23bbb9d
  • statistic overrides changes 2b11cb5
  • Refs #143412 build docs only on pull request like we do with storybook 473bb87
  • Card component stories minor change | added link icon deb423a
  • comment component stories changes f1c5e75
  • Accordion component bug fixed 815e91d
  • Refs #145331 use iso date to release so that we see also time ceedf08
  • correct connfig for doco 93e1313
  • Item updates fae93d4
  • added layout grid 2e6be55
  • tab overrides changes 87aaf32
  • message overrides changes 6dccfca
  • segment storie changes 296371f
  • progress component stories changes df10c2e
  • message comp storybook changes c86b405
  • Accordion cmponent stories | minor bug fix 6de0d81
  • Refs #145331 add all changes when auto building docusaurus ce11cce
  • perf(timeline):removed semantic timeline package 0aeb34a
  • Tablet Breakpoint update b229c27
  • Refs #143412 set storyBook Url to eea.github.io b7fdecb
  • bump package version to signaling of a major release c835f1d
  • small commit to trigger deployment of storybook and docusaurus be46ea3
  • doc(accordion):revert previous change 3de02da
  • fix typo for caption @desktop line-height pixel number 1671552
  • Commented out integration tests. 574cfec
  • popup overrides changes a9555e3
  • container component stories fixes 692cfce
  • Added timeline to package json fixed f2e93e0
  • Refs #142123 modified import of volto-eea-design-system icon.less: a7fab7d
  • Refs #142123 reference icon.less from this package: 5616e6d
  • Menu component stories change 2797716
  • Image stories minor change ddb9f1d
  • card component stories changes 6ccba1e
  • Added timeline to package json 93031d6
  • table stories code clean up b7b2a56
  • Refs #143412 removed extra baseUrl from docusaurus config 79f36da
  • Accordion stories minor change ffe808a
  • Theme assets 3f4bea4
  • Merged with develop 167ec9f

0.1.2-beta.2 - 2022-01-03

0.1.2-beta.1 - 2021-12-22

🛠️ Others

  • Tab component stories minor changes 4690a6f
  • Comment component stories minor changes a87cb6a
  • Form stories changes fc30c90
  • Grid component stories minor changes 798fdd0
  • Image component stories minor changes be93385
  • Menu component stories minor changes cb1f9a8
  • Dropdown component stories minor changes 57cf954
  • Header component stories minor changes 264fd46
  • Confirn component minor changes 9a00bc1
  • Item component stories minor changes 6994fa0
  • Label component stories changes 5cc5843
  • Container component stories minor changes e6e40b3
  • Message component stories minor changes ba9d377
  • Breadcrumb component stories minor changes ff7a176
  • Modal component stories minor changes af1fe6a
  • List stories changes 0016042
  • Button component stories minor changes 690dfd2
  • Radio component stories minor changes 84eac30
  • Progress component stories minor changes e676357
  • Pagination component stories minor changes b1af226
  • Segment component stories minor changes 5f8c7ef
  • Refs #143412 eslint fixes for component stories badcb91
  • Table component stories minor changes 7c104b8
  • Refs #143412 more eslint fixes a88c091
  • Refs #143412 warn for broken links instead of throwing bd5821c
  • Refs #143412 merge changes from develop-itml to develop branch bca28b9
  • made tabs dynamic for api tab ea37ecb
  • Basic storybook/Docusaurus components 840ab60
  • created List directory & srories based on semantic-ui List component 51f1901
  • made tabs as component easy to call for other components 07bae49
  • Popup Component | minor fixes 2ff9908
  • created stories for Tab component 95e3a73
  • created Table directory and stories based on semantic-ui Table component e16115d
  • List component stories - minor changes de11343
  • created stories for Comment component a20f884
  • created stories for Grid component 360d2a8
  • created stories for Image component 3c1d2bc
  • created stories for Menu component 17e3b37
  • Added untracked files 75f0afd
  • created Dropdown stories d6a2538
  • created Header component stories b833979
  • created stories for semantic-ui Confirm component 6fddccc
  • created Statistic directory and stories with semantic-ui Statistic component cd62498
  • created Item component stories 90ec2be
  • created stories for Container component 41934f6
  • created Label component stories 71732f6
  • created Message component stories adcbeab
  • created Modal component stories c25409d
  • Breadcrumb component stories and minor changes 6264d92
  • created Pagination component stories 57cdad3
  • created Segment component stories d8d01d7
  • created stories for Radio component 1fd062d
  • Menu stories minor changes 6ba5e0d
  • Statistic component stories minor changes 3c874a5
  • Card component stories minor changes 290bda8
  • Accrordion stories minor changes 2ee3f59
  • renamed Demo folder to Layout b9f6d05
  • remove test exclusion 94dba3e
  • Accordion component stories minor changes e672d59
  • fix docusaurus url (removed trailing /) b6c59fc
  • Item component stories - minor changes f0a9902
  • eea logos and assets b435b51

0.1.2-beta.0 - 2021-12-18

🛠️ Others

  • Refs #140454 added github action to build docusaurus to the develop branch abe6a72

0.1.1 - 2021-12-16

🛠️ Others

  • Refs #140454 changed the following to volto-eea-design-system: 6791d41
  • Refs #140454 corrected base url for docusaurus website build 98271b3
  • Initial test changes on design system/docusaurus. 9dad612
  • After prettier check 9ec40b4
  • Refs #140454 restore SearchWidget.jsx content and removed dummy text from docs intro page 7505df8
  • Refs #140454 added references to eea and the storybook in the docusaurus footer 42bbfcd
  • Refs #140454 lint fixes 9502f2b
  • Add SonarQube badges a4e0a40
  • Refs #140454 brought changes from develop-itml and upgrades docusaurus 207c873
  • Refs #140454 removed extra content not needed by the docusaurus site bc68ebe
  • Refs #140454 updated docusaurus to latest beta d68ed8a

0.1.1-beta.0 - 2021-12-09

🛠️ Others

  • Refs #140454 moved header and footer templates from volto-ims-theme: e2d5e56
  • Refs #140454 added website folder with docusaurus site skeleton 6fd15f4
  • Refs #142794 added commented implementation of the header and footer area: 773ad87
  • Refs #140454 changed the following: 4137ec4
  • Refs #140454 removed storybook from volto-eea-design-system: a129ffb
  • Refs #140454 added storybook as a dev dependency: e04ae4e
  • Refs #140454 updated Breadcrumbs.jsx to latest version: 63fe507
  • Refs #140454 we should use jsx and not mdx for storybook tests 3668e66
  • Refs #140454 updated eea-design-system readme with extra info on package contents d2efc3d
  • Refs #142010 - Optimize Volto-addons gitflow pipelines 3af46d2
  • Refs #140454 Renamed folders of docusaurus website: 15bca74
  • Add demo story 757c409
  • Refs #142794 enabled minimum css so that header looks decent adbe233
  • Refs #140454 use the develop branch for the readme linking, it's always more up to date 23dcf16
  • Refs #140454 added missing themes reference for the eea theme e9ca244
  • Refs #140454 modified assets imports after move to volto-eea-design-system 2250cc7
  • Load footer in segment 80d38a9
  • Refs #140454 bump package version to 1.1.0 from 0.1.1 from develop branch: 1314039
  • Refs #142794 keep toolbalWidth variables in case design system runs in an older version of Volto 1a8b305
  • Refs #142794 changed the following: fbb80b1
  • Refs #140454 moved storybook scripts to the scripts section 705c4c3
  • Refs #140454 removed dangling comma 514f24d
  • Refs #140454 changed link to the start of the docs 0e16fdf
  • Refs #140454 add h1 to the list of elements that are max 800px and centered 7d3c30f
  • Add Sonarqube tag using ims-frontend addons list 8d657d0

0.1.0 - 2021-11-17

🛠️ Others

  • Refs #140454 changed the following to volto-eea-design-system: 40d2af6
  • Refs #141204 elements folder now has the variables and overrides from pastanaga theme 595b4e6
  • Refs #141204 use font awesome from SemanticUI instead of Pastanaga: 4e273ca
  • Refs #141204 removed the components customizations from volto-eea-design-system: c98c260
  • Refs #141204 added customizations folder from volto-ims-theme to volto-eea-design-system: ff4bf44
  • Refs #141204 modules folder now has the variables and overrides from pastanaga theme f2841b6
  • Refs #141204 customized Comments.jsx to remove unnecessary container b2e95d7
  • Refs #132149 added initial commit for volto-eea-design-system: 2934b91
  • Refs #141204 collection folder now has the variables and overrides from pastanaga: 213d496
  • Refs #141204 removed search widget customization, we can use volto-ims-theme for that file b7e8b0c
  • Refs #141204 stylelint quick fixes 5595925
  • Refs #141204 changed the following: 769f4f9
  • Refs #141204 changed the following to the eea theme: 06d8d86
  • Refs #141204 eea site.variables now use all values from pastanaga's site.variables 6535c0f
  • Refs #141204 simplified container overrides: 5125003
  • Release 1.0.0 177d0ce
  • Refs #141204 globals folder now has the variables and overrides from pastanaga theme 116a0c3
  • Refs #141204 changed the following: 2e7f423
  • Refs #141204 modules folder now has the variables and overrides from pastanaga theme: 27a201d
  • Refs #141204 text elements are now with a max width and centered within content-area: bbed7bb
  • Refs #141204 added main.variables entries from pastanaga to eea theme 1cbbc55
  • Refs #141204 modified theme image imports for component customizations ef3238a
  • Refs #141204 modified container width to be auto: 2e8d2e0
  • Refs #141204 modified several icons to use the \f values instead of \e: c397145
  • Refs #141204 changed the following: c518eda
  • Refs #141204 ensure that main column isn't enlarged over the sidebar section on edit f7a2868
  • Refs #141204 changed the following to the form styling: eb92e05
  • Refs #141204 modified path of theme folder location for image selection f8cca45
  • Refs #141204 added missing mobileScrollbarWidth variables introduced as part of the mobile navigation pull request 444c78d
  • Refs #140454 reference font and image path from ~volto-themes instead of relative ec93ed3
  • Refs #141204 ensure that Volto doesn't crash when site module is set to eea: 51f2f27
  • Refs #141204 added tiny size prop to Breadcrumbs in order to have it as 12px 56a12e2

0.0.1 - 2021-11-17

🛠️ Others

- +

What's new

EEA Design System (1.0)

Components ready to be used

The following components are ready to be used as Volto blocks, slate integration, or via the advanced block styler:

  • Accordion block
  • Call to Action block
  • Callout - part of the Description block, slate
  • Card - part of the Teaser block and Listing block, it includes several variations like round card e.g., used for Avatar
  • Divider block
  • Headings slate
  • Hero block
  • Item block - used for text with an icon (remixicon or custom SVG/image) on the left/right
  • List slate - ordered and unordered
  • Quote block
  • Statistic block
  • Tag block
  • Table block
  • Tabs block
  • Timeline block

Future releases

Below is a non-exhaustive list of the work-in-progress which is planned for future releases:

  • Navigation Portlet (used on the left/right hand of content)
  • Spacing/padding system. We want to add the ability for editors to consistently apply various spacing/padding on certain components in order to allow a better alignment when components are used together.
  • Improve docusaurus and storybook with more components, controls, and variations in order to better reflect what is possible in Volto.

Generated by auto-changelog.

Unreleased - 2023-04-07T19:47:24.545Z

🚀 New Features

  • feat(storybook): components keyboard and screen reader optimization #324 from eea/design-system-accessibility 85faff7

🐛 Bug Fixes

  • fix: dont run isInternalURL twice a48984e
  • fix: github autoformat be97749
  • fix(cards): focus outline for header needed for the overflow hidden solution with max title lines 849a7a8
  • fix(header): external url in header now takes you to the correct url #330 from eea/header-external-url-fix 086c61d
  • fix(item): flex variant on edit when inside blockchooser #333 from eea/fix-item-csss 65b9099
  • fix: external url in header 9e3aea6
  • fix: check if client method change 7c53b83
  • fix(item): use child selector instead of descendent as it interferes with blockchooser refs #157040 ad4ca37
  • fix(tag): fix in args 18eaaf4

💅 Enhancements

  • refactor(megaMenu): align menu items with demo site for better testing 82a5c84
  • refactor(breadcrumbs): updates on structure and story for accessibility 770c8c0
  • change(logo): update eionet svg 3c87fc7
  • refactor(downloadLabeledIcon): accessibility fix df3935d
  • refactor(languageLabeledIcon): accessibility fix 61edd9e
  • refactor(megaMenu): Restructure Topics and Countries lists d816e7a
  • refactor(newTabLabeledIcon): accessibility fix 211e40a
  • refactor(comment): accessibility fixes and text button update dad8cb6
  • change(mega-menu): use lists for navigation, enhance voice over support for better accessibility d13137f
  • change(storybook): removed links for Label and Comment that we implement without a link ee0bfdf
  • refactor(card): fix header outline not showing issue 48fc2e2
  • refactor(header): firefox accessibility errors fix c7d35b9
  • change(ContextNavigation): accessibility updates, not restructuring of the volto component 03fe83d
  • refactor(modal): restructure close icon as button f1b836e
  • refactor(label): add href attribute to links 05f664d
  • refactor(inpageNavigation): restructure as a button 48e22ac
  • refactor(labeledIconGroup): group updates for all labeled icons a679d9d
  • change(breadcrumbs): label modification for better screen reader output c967bef
  • refactor(checkbox): accessibility fix 3b3047f
  • change(card): simplified headerLineHeightOffset used as margin top for cards header ca61105
  • refactor(megaMenu): clean up function after test 883eb73
  • change(mega-menu): added code to align countries left column subtitle with the right column 1aa33dd
  • change(mega-menu): sub-title padding tweaks for better spacing normalization e08668d
  • change(logos): updated eionet logo used in the site footer #318 from eea/footer-logo-update 70671d0
  • change(breadcrumbs,mega-menu): better screen readers support, see links instead of groups #309 from eea/firefox-accessibility-tab-issues d6b0b4a
  • change(breadcrumbs): fixed sizing of breadcrumbs list items 1761e98
  • change(checkbox): toggle hover color correction 4f4d0df
  • change(card): add links to teaser titles cc64c74
  • change(inpageNavigation): story improvements ade63c6

🏠 Internal changes

  • style(megaMenu): remove comments and unused properties fa5f8f8

🏠 Documentation changes

1.0.6 - 2023-03-29

🚀 New Features

  • feat: add viewport-(width/height) less functions and fixed banner image url #329 from eea/develop e8e70bd
  • feat: add viewport-(width/height) less functions 68300a3

💅 Enhancements

  • change(docusaurus): set full class name for remix icons f435e10
  • refactor(Banner.jsx): use flattenToAppURL helper function to get image source URL 24b13d7

🏠 Internal changes

  • style(theme): update container width and margins in eea theme 3e4446a

🛠️ Others

  • horizontal overflow hidden in view mode f395f27

1.0.5 - 2023-03-28

🚀 New Features

  • feat: improve full-width class 70bba7e

🐛 Bug Fixes

  • fix(banner): Add missing divider for time tag #327 from eea/banner-metadata c46a583
  • fix(banner): Add missing divider for time tag 7d68c39

1.0.4 - 2023-03-27

🚀 New Features

  • feat(copyright): Add copyright prefix - Image - refs #250724 6a72772

🏠 Internal changes

  • style(copyright): Cleanup useless min-height - refs #250724 f2457df

🛠️ Others

1.0.3 - 2023-03-24

🐛 Bug Fixes

  • fix: improve full-width class 9322259
  • fix(header): Remove z-index from subsite logo #320 from eea/subsite-logo 5091100
  • fix(header): Remove z-index from subsite logo d433a97

💅 Enhancements

  • change(header): Add search popup customizations from eea-website-theme 43e5a78
  • change(popup): create custom popup for better accessibility 036aac9
  • change(popup): added most important popup properties from Semantic ui implementation 61f65bc
  • change(banner): use custom-made Popup for better accessibility 10d0fcf
  • change(banner): use custom-made Popup for better accessibility 9108bee
  • change(popup): added also the basic property a4497ac
  • change(colors): update gray-4 color value #321 from eea/update-gray-4 f458ff0
  • change(banner): MetadataField now uses proper time tag when value is datetime b4c4d34
  • refactor(tokens): updated gray-4 b890df7
  • change(footer): Fix error and empty div if no social links are present #319 from eea/footer-social 8922246
  • change(footer): Fix error and empty div if no social links are present 5d934a6

🛠️ Others

1.0.2 - 2023-03-14

🐛 Bug Fixes

  • fix(megamenu): topic menu title is now placed before content 6004bcb
  • fix(megamenu): removed in depth nav_title renaming that set title wrongly to a-z topics 899ca0e

💅 Enhancements

  • change(megamenu): removed special styling from at a glance mega menu section fd0c4c8
  • change(footer): renamed thematic information platforms to environmental information systems e7004a7
  • change(docusaurus): updated static image of footer sections 4ff3185

🏠 Documentation changes

  • docs(What's new): Update 'What's new' d7ed9d6

🛠️ Others

  • fixed accordion selector typo f4cabc8

1.0.1 - 2023-03-13

1.0.0 - 2023-03-13

🐛 Bug Fixes

  • fix(Footer): Open internal links within the same page 5b3e409

💅 Enhancements

  • change(banner): use huge scale instead of full image for better performance 381c58e

1.0.0-beta.6 - 2023-03-10

🚀 New Features

  • feat(site): serve Roboto fonts from eea design system package instead of google fonts #311 from eea/roboto-library f6a1b3e

🐛 Bug Fixes

  • fix: full-width is now properly sized 6e2e348
  • fix(storybook): add fontDisplay 078966a

💅 Enhancements

  • change(image): copyright position fixes, moved image floating to image-block-container 53422e0
  • change(colors:) update the design system colour palette #312 from eea/update-color-palette a5fb694
  • refactor(docusaurus): added roboto library 19de7b1
  • refactor(storybook): added roboto library e991621
  • refactor(tokens): update colours 3a2c1e1
  • refactor(storybook): restored site variables a48478b
  • change(copyright): implemented copyright hover design 6b12441

🏠 Internal changes

  • chore(storybook): switched google fonts to true 4a8cae4
  • chore(colours): changed back yellow 6 87c9bbc
  • chore(lint): lint 9b0f125
  • chore(storybook): lint 29bc809

🏠 Documentation changes

  • docs(colours): colours update 161007e
  • docs(colours): accessibility ee342aa

🛠️ Others

1.0.0-beta.5 - 2023-03-07

💅 Enhancements

  • change(carousel): tweak size of carousel dots for better touch interaction e1fb823
  • change(footer): removed min width and height from links ac33219

🏠 Internal changes

  • style(hiddenStructure): Add hiddenStructure utility to be used with h1 heading on frontpage - refs #158717 672cca2

🛠️ Others

  • fixed less build failure due to changes in footer.less 190bc8c
  • lazyload bg img on footer also ae07162
  • lazyload footer images a0633c9
  • Increase performance - mobile friendly 07d86c8
  • better useOnScreen hook c214b6b
  • role change for accessibility 5e758e0
  • minimum tap dimension for mobile a25e9a8
  • Release 1.0.0-beta.5 e4417e1
  • Add Sonarqube tag using eea-website-frontend addons list b227cf8
  • feature(mobile): increased performance by lazy loading footer images #303 from eea/increase_performance 80d1df1
  • useOnScreen default export 3e6cfdd
  • use aria-labels on dropdown 27e1443
  • prettier a7f8384

1.0.0-beta.4 - 2023-03-01

🚀 New Features

  • feat(footer): Add footer description 2ad0f71
  • feat(footer): Add footer description #306 from eea/footer-description bf655d1

🐛 Bug Fixes

  • fix(footer): Don't show empty row if description is not present 2ca7f7d
  • fix(footer): Add class for children 3c50d15
  • fix(search): Fix search links color #307 from eea/search-accessibility a76f48b
  • fix(search): Fix search links color 69c42ef

💅 Enhancements

  • change(carousel): tweak card width and padding for better arrow alignment e184f70
  • change(storybook): include footer description in storybook e904aa0

🛠️ Others

1.0.0-beta.3 - 2023-02-21

🚀 New Features

  • feat(accordion): storybook accessibility by using buttons for titles #297 from eea/accessibility-accordion 809d52b

🐛 Bug Fixes

  • fix(dropdown): remove close on blur so that we can navigate links using keyboard 5442715

💅 Enhancements

  • change(language): dropdown to use links for proper keyboard navigation 6a7de30
  • refactor(images): cleared unused/renamed images assets 821f5c1
  • refactor(Accessibility): add box-shadow on focus-visible components b1adcc3
  • refactor(images): remove unused docusaurus svgs c5ef14c
  • refactor(header): add escape key functionality, actions from div to button to have proper focus state 8081aa4
  • change(language): restore dropdown duplication in order to properly show and hide language dropdown cb28888
  • change(search): to reflect changes from eea-website-theme 2cc35e0
  • refactor(footer): update p with h3 heading tag for header ca1477b
  • refactor(footer images): removed unused/renamed 186de6b
  • refactor(Accordion): div titles to buttons, test in mobile mega menu accordions eaad4b4
  • refactor(docusaurus): cleanup decorative images fedc4d4
  • change(accessibility): style outline instead of box-shadow 53209f3
  • refactor(Footer): update mobile header size 01ab7f0
  • change(header): set the logo class directly on the link f8fba50
  • refactor(images): clear docusaurus unused pngs db5c611
  • refactor(header-images): removed unused 8250d94
  • change(language): hide language dropdown by default cc6064f
  • change(header): top dropdown menu keyboard navigation #293 from eea/accessibility-megamenu-searchbox 1e6fa65
  • change(button): set focus styling for buttons 33ebfca
  • change(footer): Avoid devtools warning in FooterActions #304 from eea/avoid_warning d774824
  • change(footer): Accessibility update p with h3 heading tag for theme sites title #302 from eea/footer-accessibility 5bf70de
  • change(documentation): Rename all image files to follow the agreed convention #301 from eea/refactor-image-filenames cfe44ef

🏠 Internal changes

  • style(header): react syntax fix 3add127
  • chore(docusaurus): ignore website/.yarn 0b33ffd

🏠 Documentation changes

  • docs(guidelines): add image name convention 290747c

🛠️ Others

1.0.0-beta.2 - 2023-02-13

🐛 Bug Fixes

  • fix(footer): action and copyright #300 from eea/develop 579f3e4
  • fix(footer): action or copyright links are simple a tags for external link 9af5070
  • fix(accessibility): added navigation and footer id's for skip link 48354b9

💅 Enhancements

  • change(footer): typos and modified footer links to be center aligned ac23f04
  • change(footer): added gap for actions and copyright 7d32ddd
  • change(footer): modified footer gap b8a820a
  • change(footer): removed extra text and date from copyright section af47bbe
  • change(navigation): raise z-index of go to top link 485ca72

🏠 Internal changes

  • chore(docs): Update eea.hbs template to beta - refs #158717 196538e

🛠️ Others

1.0.0-beta.1 - 2023-02-09

🚀 New Features

  • feat(search): Add search suggestions style 6b2b77b
  • feat(search): Add search suggestions style #296 from eea/search-suggestions 3b0c956

💅 Enhancements

  • change(search): Add proper margin for search popup 190c9f5

🛠️ Others

1.0.0-alpha.15 - 2023-02-08

🚀 New Features

  • feat(Card): add teaser card grid story 53cac0b
  • feat(utilities): Complete list of text-align utilities - refs #160747 224fab6
  • feat(small): CSS for small HTML tag - refs #160747 ad3c0ad
  • feat(fw-light): Add font weight light utility - refs #160747 c44cf57

🐛 Bug Fixes

  • fix(card): teaser card dimensions on tablet size #290 from eea/teaser-card-grid 013fdf5

💅 Enhancements

  • change(card): added extra content for teaser card story 30690ae
  • refactor(style-menu): add text-color to paragraphs styles #291 from eea/stylemenu-theme-colors 2d78307
  • change(header): Small fix in search popup #292 from eea/search-popup 86c1305
  • refactor(style-menu): add text-color to paragraphs styles 3446bc2
  • change(color): darkCyan is now replaced everywhere by the new green ef3791d
  • change(header): Small fix in search popup 3d622ea

🛠️ Others

1.0.0-alpha.14 - 2023-01-30

💅 Enhancements

  • change(mobile menu): integrate a-z topic with menu rendering logic #287 from eea/develop 05d4c04
  • change(mobile menu): integrate a-z topic with menu rendering logic 246d3d8

🛠️ Others

1.0.0-alpha.13.1 - 2023-01-30

💅 Enhancements

  • change(mobile menu): hardcode a-z topics to '/en/topics-in-depth' #286 from eea/develop 6436224
  • change(mobile menu): hardcode a-z topics to '/en/topics-in-depth' 5235b52

🛠️ Others

1.0.0-alpha.13 - 2023-01-27

🚀 New Features

  • feat(utilities): added has--bg--top center and bottom utility classes 051e6d7

🐛 Bug Fixes

  • fix(header): update green color used in page header #284 from eea/fix-banner-background 29d54db

💅 Enhancements

  • change(site): added fixes from customVolto.css to design package 51ba9b5
  • refactor(Banner): update banner background green color fd4a552
  • change(mobile menu): changed link for a-z topics to point to in depth 721bf23

🛠️ Others

  • 1.0.0-alpha.13 release #285 from eea/develop c966940
  • bump next version to alpha 13 897e906
  • Back to dev 5780dc7

1.0.0-alpha.12 - 2023-01-24

🚀 New Features

  • feat(card, colors): visited color change and title on image option for cards #283 from eea/develop e638ee6

🐛 Bug Fixes

  • fix(mobile menu): sub links when an accordion section is active bb3be81

💅 Enhancements

  • refactor(Card): create card template for stories 2fa77f3
  • refactor(Card): add image with title css 6e6e63e
  • change(card): implement title on image within image section ff6cc60
  • change(card): added image card section, tweaked mobile heading size 0f879e1
  • change(cards): moved image gradient overlay to a mixin.less file 8b4928a
  • refactor(card): Update titles value and size c35ad5c
  • refactor(docusaurus): applied image naming convention ee7bc29
  • change(cards): added image for all storybook card examples 3f19413
  • change(banner): restored label value of metadata field when type isn't date 571a4f2
  • change(card): title padding value for a more balance look 74b6556
  • change(card): removed uppercase transform from title on image 2948ae1
  • change(colors, Docusaurus): Visited link colour change and thematic logo replacement #278 from eea/refactor-visited-link f82d978
  • refactor(storybook): visited link variables b209b2f

🏠 Documentation changes

  • docs(colors): visited link update ece77fe

🛠️ Others

  • fix typos in footer gradient variables 4006640
  • change version to alpha 12 instead of 1 final 3225025
  • feature(card): new card variation with title on top of image #267 from eea/title-on-image-card 2c0ca95
  • Back to dev 477d997

1.0.0-alpha.11 - 2023-01-17

🚀 New Features

  • feat(docusaurus): Header and footer elements section #277 0df271c

🐛 Bug Fixes

  • fix(banner): storybook date input and simplified gradient opacity 7674d76
  • fix(banner): re-added title class on banner title 6d15799

💅 Enhancements

  • refactor(banner): sync storybook and Volto component c9087cc
  • change(banner): removed margin from title 17e592c
  • refactor(banner): sync storybook and Volto component #275 from eea/sync-page-banner-theme 4331fb4

🏠 Documentation changes

  • docs(footer): updates on header elements b41c550
  • docs(footer): add elements anatomy d9f0872

🛠️ Others

  • add(banner): banner title css d003247
  • Release 1.0.0-alpha.11 07e8f85
  • renamed image elements as requested in review 8541fb6
  • remove(banner-gradiant): image gradiant in favour of text 1b58520
  • update(gradient): use 8deg angle 6fd597d
  • update(gradiant): make it 0deg 1bb2696
  • remove(comment) referencing old verison of title 4226d42

1.0.0-alpha.10 - 2023-01-13

🐛 Bug Fixes

  • fix(subsite): Fix logo size on subsite section 65fff54
  • fix(subsite): Fix logo size on subsite section #279 from eea/subsite-fixes 8f6cf94
  • fix(mega-menu): show sub grid only if there are children ddfbd82

🛠️ Others

  • Add variable definitions 293fe65
  • Release 1.0.0-alpha.10 7014d08
  • Add Sonarqube tag using advisory-board-frontend addons list ef58a6f
  • Back to dev 31d4616

1.0.0-alpha.9 - 2022-12-28

💅 Enhancements

  • change(contextnav): Default title is text, custom title is link #273 from eea/context-nav-link-title ef7bdb7

🛠️ Others

  • Show document and folder content-type in Navigation listing 8471db3
  • Default title is text, custom title is link 1ae95b0
  • Context nav title link to # a27a6b7

1.0.0-alpha.8 - 2022-12-23

🚀 New Features

  • feat(copyright): Align copyright options with Volto integration - refs #158210 6bac7f6

💅 Enhancements

  • refactor(logo): import theme site logos to the story 2f29136
  • refactor(logo): update logo and mega search gradient e11f44d
  • refactor(logos): convert logo names to lowercase 07b8228
  • change(item): use default logic of setting align class on content 6b5b47c
  • refactor(logo): update logo 170efe5
  • refactor(logos): convert storybook logo names to lowercase c4b24ec
  • refactor(logo): add eea roboto font logo variations de1224a
  • refactor(logo): add container and segment to logo story 61eff16
  • change(item): removed requirement for aligned classes to be on content 30c0d5d
  • change(logos): cleanup eea logo reference to only eea-logo and eea-logo-white.svg 2796e05

🏠 Internal changes

  • chore(npmignore): Reduce npmjs package size 164c8a5
  • chore(npmignore): Reduce npmjs package size ade9d5b
  • chore(docs): renamed logo mdx to md 52e9d46

🏠 Documentation changes

  • docs(logos): svgs without classes 28a5833
  • docs(logos): add dark mode logos ccc1609
  • docs(logo): update eea logos and add logo wrapper 91cdd66
  • docs(logo): update logos on docusaurus 760e101
  • docs(logos): updated svgs dc224e1
  • docs(logos): add thematic logos 5a21a30
  • docs(logos): add zipped svgs for download 5855bf8
  • docs(logos): wisef logo update 8f90b59
  • docs(logos): move to static, add download 8c1fd5f
  • docs(logos): improve eea logo visibility 82188ab
  • docs(logos): change eea logo to svg f57b846

🛠️ Others

  • logo update or docusaurus thematic logo listing #274 from eea/develop dde90be
  • (feat): Add ability to disable the language select from website top menu - refs #158616 411c8e4
  • Proof reading page header section 230239e
  • bump package version b4628be
  • feature(docusaurus, storybook): logos selection for sites plus inverted options #253 from eea/doc-logo-page dbfc90d
  • Add Sonarqube tag using advisory-board-frontend addons list c4769e9
  • test(Jenkins): Run tests and cypress with latest canary @plone/volto 92feea0

1.0.0-alpha.7 - 2022-12-16

🚀 New Features

  • feat(item): normalized size for image or icon items #258 from eea/refactor-items 945170f

🐛 Bug Fixes

  • fix(card): rounded after removal of has--rounded--true style class d4727af
  • fix(item): removed margin set for description which pushed the text from icon d9d4031
  • fix(project): Proper paths if volto-eea-design-system package is not installed, but in development #270 from eea/correct_paths 0f8ee8d

💅 Enhancements

  • refactor(item): update icon variations and paddings 6a407b3
  • refactor(item): update spacing 2fd91c4
  • refactor(item): initial values for new sizes & add description class 3546296
  • refactor(item): add icon and more size options 1120bb6
  • refactor(item): update image and icon sizes b802573
  • change(item): set same height as width on item images 69cbd23
  • refactor(item): update item part 2 9812ae2
  • change(item): rename large to big class 24ff127
  • change(item): added tiny size that outputs 24px icon sizes 2ea9636
  • change(image): added preview image size default to 400px a0aa867
  • refactor(item): update operator for condition controls 149ccb2

🛠️ Others

  • Proper paths if the package is not installed, but in development 7a2655f
  • Update .project.eslintrc.js a2fd3f2
  • added back descriptionDistance variable until package release 3af811a
  • Release 1.0.0-alpha.7 7e66bcc
  • Add Sonarqube tag using cca-frontend addons list ce47e9b
  • Back to dev cb531c9

1.0.0-alpha.6 - 2022-12-07

🚀 New Features

  • feat(copyright): create copyright component and import it in banner 8fcde9d
  • feat(Header): add hideSearch prop 13ddfe5
  • feat(Docusaurus): Image copyright information #257 from eea/image-copyright-info 2119515

🐛 Bug Fixes

  • fix(tags): content gap when using tags-content wrapper c4eb9b8

💅 Enhancements

  • refactor(hero): add copyright component to hero 0fa88fa
  • change(copyright): implementation to add classes on content sections e10bde6
  • change(copyright): removed color variant 747b8a2
  • change(copyright): removed copyrightVariant from Banner and Hero stories ac62e07
  • change(tagList): modified implementation to align to volto-tags-block 7a57a3d
  • refactor(copyright): remove data section 52cb09d
  • change(copyright): line height to match page header implementation a56254e
  • change(copyright): now uses text color css variable with fallback to white ee7268b

🏠 Documentation changes

  • docs(copyright): copyright documentation a90ed76

🛠️ Others

  • Update usage_markdown.md f76d4a2
  • grammar fixes cb2a5a5
  • Release 1.0.0-alpha.6 6ca32f0
  • feature(copyright): image information #250 from eea/feature-copyright a8618c7
  • lint fix by introducing local variable tagsGap 7b6c0ae
  • Update 3-images.md 1b0ef03

1.0.0-alpha.5 - 2022-11-29

🚀 New Features

  • feat(Iconography): import and showcase remix icons 777112f

🐛 Bug Fixes

  • fix(docusaurus): right bar overflow fix 197c763
  • fix(lists): bullet position by using padding instead of margin 0ecae2e
  • fix(label): color for yellow variant as white isn't accessible on yellow color 91d8880
  • fix(contentBox): avoid text decoration for header-link added on cards 3ccb592
  • fix(label): margin value for ribbon image left and right margin f8e1129

💅 Enhancements

  • refactor(docusaurus): eea color palette in separate file 6c855df
  • refactor(docusaurus): classes for color boxes 80219d5
  • refactor(docusaurus): move supplementary, state and link colors to partials 2776be3
  • refactor(docusaurus): fix side menu / moved more content in palette partial f5b7077
  • change(tag): set gap on tags element for margin between tag elements 726bc6d

🏠 Internal changes

  • chore(colours): fix wrong class name 51ad0a8

🏠 Documentation changes

  • docs(docusaurus): Iconography updates, thematic platforms 2a0e596
  • docs(colors): thematic pages integration ea7a422
  • docs(docusaurus): color updates cc13b54
  • docs(colors): fix swatches accessibility 306cb74
  • docs(docusaurus): typography and colors fixes according to comments on PR ae20a72
  • docs(colours): adjust logos heights 854d4fb
  • docs(typography): merge designer and dev units 65c240e
  • docs(typography): readded extra font sizes, fixed fluid a4a5d89
  • docs(typography): changed em to percentages d417600
  • docs(colors): minors updates and instructions 84ac882
  • docs(colors): blue-grey-6 adjustment e7ab2d1
  • docs(colours): added active colour 574f7a9
  • docs(colors): switch FISE logo to png 335471f
  • docs(colors): updated visited 0248fd1
  • docs(FISE): replaced logo f7d8331

🛠️ Others

  • perf(docusaurus): added remixicon and roboto locally b67b1a7
  • feature(Docusaurus): Updates on color palette information including thematic websites #231 from eea/refactor-docusaurus ec7843d
  • Upgrade Jenkinsfile storybook to yarn 3 d20de8d
  • Back to dev 563fbc5

1.0.0-alpha.4 - 2022-11-22

🐛 Bug Fixes

  • fix(cards-storybook): load slick carousel css for arrow and pagination styles 1159b1b

💅 Enhancements

  • change(cards): refactor cards theming implementation d4e4542
  • change(cards): allow rounded, inverted and theme parameter to be set by has classes 4b4ad89
  • change(card): expect has classes on the card directly 6a9e38b
  • change(utilities): added has text classes to the text alignment utilities e6974c6
  • change(utilities): modified class name for text align using has naming 579a0cb
  • change(theme): ensure that only direct children of container have a default top and bottom margin 7f8b8dc
  • change(build): upgrade action to trigger workflow and wait to latest version c63ad3f
  • refactor(card): theming implementation to allow has theming classes #265 from eea/card-refactoring 24edc99
  • change(theme): add slick-carousel dependency f2eec7d

🛠️ Others

1.0.0-alpha.3 - 2022-11-16

🚀 New Features

  • feat(Header): Add subsite section styling #263 from eea/subsite 00398b8

🐛 Bug Fixes

  • fix(search): position now changed by default to absolute from relative 51b08fc
  • fix(megaMenu): remove paddings for buttons added by active class ec33ebf

💅 Enhancements

  • change(components): load overrides files for our defined semantic files adde7a9
  • change(container): fullwidth now take into account devices without hover 5a35a65
  • change(container): ensure only the top level elements behave like containers 98b85d1
  • change(container): modified column-block grid to remove margin and padding when using full width class 35c1cee
  • change(mega-menu): hide home link and accordion content from mobile menu 1a69172
  • change(container): width from min width 1280px to 1365px max width 66e551e
  • change(container): removed app extras and view setting of layout sizes f6dc1ee
  • change(views): customized DefaultView to pass class into page-document area 91123aa
  • refactor(megaMenu): desktop - use buttons for menu section titles and readjust content cb9315f
  • refactor(megaMenu): add nav_title and nav_description attributes 0d7a568
  • refactor(megaMenu): style sub-title and nav-description b2a48fd
  • refactor(sidemenu): add third level list and items & update active indication e2d87da
  • change(columns): implement narrow, container and wide width classes 9696b54
  • change(container): story to add classes that modify the max width of the containers 37948f8
  • change(container): affect only left and right margin of containers 183265b
  • change(containers): modified class names after layout checks 1dc3689
  • refactor(sidemenu): add is_in_path and is_current attributes for an active example a3fe7fd
  • change(container): story to avoid adding containerwidth property to container div c13d83c
  • refactor(megaMenu): mobile - use buttons for menu section titles a7b632f
  • refactor(megaMenu): update padding variables c5f2583
  • change(views): moved narrow style bellow the default container width styles 72fa58d
  • change(listing): removed container from default view page-document area 69f3d8f
  • change(views): rename classes names to width_view and added app extras layout component 745b772
  • change(container): use important flag for left and right margin a49c83a
  • change(container): add variables for edit and add section of containers f2e2c33
  • refactor(megaMenu): update sub-title paddings 992f919
  • change(site): add a 1rem margin top and bottom on all styled classes dabf6c1
  • change(homepage): removed hiding of staging banner from homepage 4ba2cd7
  • change(container): unset values of page-document on 1200+ browser width dd5bea3
  • change(megamenu): set children to be appended to the right of the menu title b69c23a
  • change(theme): modified wide width to point to 1320px as it's perfectly divisible by 4 8f82573
  • change(theme): modified wide width to point to 1368px as it's perfectly divisible by 4 2349fee
  • change(container): renamed content-text-width to container-text-width 6f788c2
  • change(listing): provide ui container fallback if no class is passed to default view af9e94d
  • change(narrow-view): re-added container class to page-document 56b44a6
  • change(view): set container width for view-viewview class as well 29dc324

🏠 Internal changes

  • style: load header/footer overrides e5b5e0f
  • style(megaMenu): restore item description color 8a19bbb
  • style(megaMenu): restore accordion content bottom padding 8e0c5a7

🛠️ Others

  • Add subsite styling e79c0ed
  • WIP settings column grid width when using full size class affc7ac
  • code cleanup 2cdc3e5
  • fix eslint 30c52e4
  • test(estlint): Fix .project.eslintrc.js aaeaa07
  • modified left value of full width classes with toolbars 70d82d4
  • Release 1.0.0-alpha.3 8fc86a7
  • feature(content): added NarrowView useful for modifying the containers from content-area d937df7
  • jslint fix 9846159
  • Feature(container): flexible container size #260 from eea/feature-flexible-container 8f84c5b
  • Add Sonarqube tag using circularity-frontend addons list 76a41c7
  • fix broken variable call for contentBox.variables introduced in previous commit by mistake d249c11
  • clean up 89f3cb3
  • removed console log from code fad86ae

1.0.0-alpha.2 - 2022-10-28

💅 Enhancements

  • change(documentation): grammarly proof-read suggestions 9f609be
  • refactor(volto-slate): Upgrade to @plone/volto-slate - refs #153447 853d9d1

🏠 Internal changes

🛠️ Others

  • test(cypress): Upgrade to Cypress 10 / Razzle 4 c1c1f4b
  • more explanations a8b2272
  • add announcement bar, showing that EEA DS is WIP e14aeac
  • Update dependencies ee30a2b

1.0.0-alpha.1 - 2022-10-20

💅 Enhancements

  • refactor(footer): update svg and tablet contact link sizes 6aba061
  • change(blockquote): renamed to Callout reflecting the correct naming from Storybook 61a518c
  • change(footer): Shadow removed from logo & tablet updates #252 from eea/fix-footer 6df783d
  • change(colors): updated theme classes for text to use css variable colors cb089fd

🏠 Internal changes

  • style(footer): reduce social icons margin f6a9cf7

🏠 Documentation changes

  • docs(alpha): Update included components in 1.0 alpha version - refs #154387 fcc5af9
  • docs(callout): Rename Blockqoute to Callout in docusaurus - refs #154387 8d733ac

🛠️ Others

0.9.6 - 2022-12-16

🛠️ Others

  • Release 0.9.6 ae19b83
  • feature(copyright): image information #250 from eea/feature-copyright 7b323ed
  • Release-it 1f5671d

0.9.5 - 2022-10-20

🐛 Bug Fixes

  • fix(statistic): margin and slate colors when using the inverted options f263dea

0.9.4 - 2022-10-19

🐛 Bug Fixes

  • fix(edit-interface): block chooser and power user menu item colors when inside content-box 7aee4f1
  • fix(header): hero text going over the logo and menu on mobile resolutions 1434508
  • fix(content-box): z-index of box-inner and added underline to slate links c8b7c7e
  • fix(content-box): adding of underline to links c2f5f0f

💅 Enhancements

  • change(banner,colors): content box theme aware colors banner changes#254 from eea/develop bcb9a8c
  • change(Banner): Add subtitle subcomponent bb67f4c
  • change(item): moved svg filter definitions to item.overrides de70366
  • change(accordion): accordion titles with themes colors can now be modified by css variables e2ac13e
  • change(colors): in lists and callouts to allow color changes 940d1b8
  • change(colors): added backgroundColorSupplementary color variable 1f5262a
  • change(list,bullet): color is no longer primary instead it's text color css variant 8c04670
  • change(statistics): use theme colors with css variable for easy color customization fb72a01
  • change(Banner): Show label in metadata field 1acda3c
  • change(tags, items): use text color with css variable for content color for easy customization 6660e2e
  • change(styling): modified naming of theme css variables a332961
  • change(colors): added backgroundColor color variable b7e6831
  • change(quote): use secondary css var for easier color replacement 7a32312
  • change(statistics): tweaked margin of statistics so that they don't overflow over context boxes b4a8e33
  • change(accordion): allow customization of accordion title background color 6590baf
  • change(colors): introduced css variables for primary colors #247 ac80825
  • change(content-box): override primary text color to white as well 28b43c7

🛠️ Others

  • Include changes in the storybook a4d9fa4

0.9.3 - 2022-10-04

🐛 Bug Fixes

  • fix(card, contentBox): meta font size, removed header override of cards a7f94b9
  • fix(List): Ordered list item story - refs #155248 c70a2bc
  • fix(OrderedList): li third level margin left - refs #155248 fba5cb9
  • fix(cards): inherit color of card description ceda799
  • fix(accordion): Fix content default padding - refs #153783 566adf7

💅 Enhancements

  • change(site): committed fixed from custom into eea design package 9b9a1fd
  • change(jenkins): added yarn policy for storybook building 3d1b844
  • change(docusaurus): typography updates 60a93a4
  • change(item): added item image coloring when applying theming classes 0403fe4
  • change(accordion, site): change text color to tertiary instead of black 4641058
  • change(accordion): allow customization of accordion title with css variables 15e7d27
  • change(content-box): added css variables that will set text color and background for children 86cac53
  • change(tabs): allow customization of tab active and hover color 4370f42
  • change(tabs): color for tabs-block section 6778c92
  • change(cards): by default date is set to appear on the right of the meta section b7b80e8
  • change(cards): carousel dots are now relative positioned daa40a4

🏠 Documentation changes

  • docs(typography): update, local fonts 39a32d9
  • docs(typography): token fix to match used values for heightheight and letterspacing 91693ec
  • docs(typography): token fix to match used values for lineheight ff41b56
  • docs(typography): remove semibold 6eb3e08

🛠️ Others

  • test(cypress): Fix md5 dependency 17f618e

0.9.2 - 2022-09-27

0.9.1 - 2022-09-27

💅 Enhancements

  • change(cards): added ability to change the text alignment using css variables ed532ac
  • change(styles): use flex-end values only instead of end to avoid babel warning 24244b2
  • change(rounded): image size, border radius to ensure more image are turned into rounded options 51e23c1

🛠️ Others

  • Merge pull request #243 from eea/develop 576564c
  • Add Sonarqube tag using eea-website-frontend addons list 4a5be6e
  • Back to dev b251255

0.9.0 - 2022-09-19

🚀 New Features

  • feat(countUp): intall countup package and import it in statistics 10ba7cf
  • feat(docusaurus): custom editUrl function for the components usage pages - taskman refs #154076 93c4240
  • feat(site): Styling scroll-to-text fragments #238 1883fcf
  • feat(docusaurus): added Edit this page link in footer of each page - taskman refs #154076 2cf8746

🐛 Bug Fixes

  • fix(header): Prevent dropdown closing when clicking inside content 838f340
  • fix(cards): position of bullets and arrow clicking on events page 148723 22ef828
  • fix(cards): rounded images show up now even when card parent is cards 48f5e81
  • fix(statistic): add a min-width to content so unwrapped statistics don't break 7c5d511
  • fix(sideNavigation): add role list to list item 58f322b
  • fix(sideNavigation): remove unused useState import f9ea677

💅 Enhancements

  • refactor(sideNavigation): implement the design to the initial navigation & make component dynamic b673d63
  • refactor(header): update top bar 626bdd5
  • refactor(statistic): create custom export and add links 9f9ed56
  • refactor(statistic): update inverted style and add background variations 7578dc6
  • refactor(statistic): remove horizontal display on mobiles & update columns control 58f00e1
  • refactor(header): minor fixes spotted in testing 0f0f3ab
  • refactor(header): update main section heights d669f01
  • refactor(sideNavigation): remove green border and divider 939cd9b
  • refactor(link): update colors for link states 3e9f599
  • change(cards): styles img tag outside of .image ee89274
  • refactor(sideNavigation): update controls a3e8430
  • refactor(statistic): fix firefox issue for fit content 87aa113
  • change(statistics): rearrange controls order b19ae70
  • refactor(statistic): add max width to wrap text for all content 758f8ce
  • refactor(statistic): add max width to label so it wraps the text 824a127
  • change(Side menu & in page navigation): styling according to figma design #221 b2df858
  • change(header): align header with latest figma changes #232 135cd68
  • change(cards): integration when cards also contain call to action buttons f0d8766
  • refactor(iconography): icon group headings b9ccd80
  • refactor(header): add variables for some sizes 8eae84e
  • refactor(Statisctic): Rename slateVariation to extraVariation a07c589
  • change(docusaurus): started example on how to add headings for iconography 53cf843
  • change(cards): remove center alignment of rounded cards body area, only the image is now centered fdfac48
  • change(color): updated link colors #234 feabfe7
  • change(mockup): Access to figma style tokens 0bb25be
  • refactor(statistic): update margin 5190f56
  • refactor(button): adjust vertical margin db6d441

🏠 Internal changes

  • style(statistic): update decimal point 7976aa4
  • style(link): update visited link color d3b18b3

🏠 Documentation changes

  • docs(iconography): added icons, guidelines 0073f1d

🛠️ Others

  • Delete 2-test-new-page.md 749eff9
  • Create 2-test-new-page ab623ff
  • Release 0.9.0 eb7e2e5
  • stylelint fix 114e3f9
  • Move text fragments style to site.overrides 8368cbe
  • Styling scroll-to-text fragments 1bb3914
  • Update Header.stories.js 9036c74
  • feature(Docusaurus): Reflect usage of remixicon in iconography page #239 0802b32
  • Update 1-design.md 146115a
  • Test workflow for contribution - taskman refs #154076 dcb924f
  • perf(figma): access to style tokens 27d8dbe
  • Rename 2-test-new-page to 2-test-new-page.md 4e3be10

0.8.1 - 2022-08-26

🐛 Bug Fixes

  • fix(message): fix size controls ee51e1d
  • fix(docusaurus): intro page hero title color now that headers are using tertiary color 618e3cb

💅 Enhancements

  • refactor(message): restore semantic variables 1c16621
  • refactor(messages): mix semantc and token colors for messages 12efa75
  • refactor(emotiveColors): temp update for tests 61a720c
  • change(footer): removed line between sections and moved actions back to the bottom of footer d9f33e4
  • change(storybook): headings storybook now uses tertiary color by default reflecting site options 1061e77
  • refactor(message): add container to story 1259ece
  • refactor(message): remove override with custom background color on error 9b40cd7
  • refactor(message): add header controls 960c2f7
  • change(message): use semantic colors for messages #204 from eea/refactor-message 22d2c43

🏠 Documentation changes

  • docs(figma): added figma files to repo 6bd4144

0.8.0 - 2022-08-20

🚀 New Features

  • feat(IconCard): card with icon instead of image a85a179

🐛 Bug Fixes

  • fix(docusaurus): typography guideline now has real font values for headings, body, caption and small text 9508db9
  • fix(card): fix content gaps, adjust new meta section and update text color for default f1a78e1
  • fix(item): remove duplicate argType dde0be5
  • fix(iconCard): add aria-label at links 44f64c7
  • fix(card): merge fix df440ec
  • fix(heroblock): color even on edit page by inheriting color instead of using the tertiary color ac53fb7
  • fix(tab): add tabindex for accessibility error ab512be
  • fix(carousel): restore missing variable 1728312
  • fix(carousel): restore flex grow for cards and opacity for arrows ce71305

💅 Enhancements

  • refactor(carousel) add links in carousel cards & update structure and variables of less files f99cb21
  • refactor(iconCard): add control for variations and link 5e1b6a1
  • change(docusaurus, fonts): documented font letter spacing modification 522712a
  • refactor(card): css updates for card variations and styling updates c8b4a43
  • refactor(publicationCard): add links and fix accessibily issue 80adf6c
  • refactor(card): add new section in meta and remove links bfb82ae
  • refactor(item): add stackable functionality 8d714fa
  • refactor(card): update meta section and controls 5e28e12
  • refactor(roundedCard): remove unnecessary code and controls and add all variations 6305c54
  • refactor(roundedCard): add optional link for image and header a6d3bf2
  • refactor(card): add tertiary hover and update css selectors ca06948
  • change(fonts): updated font sizes with values given in figma 4b0ae48
  • change(style): color, space and adjust line-height as described in docusaurus 3366da2
  • change(headings): only h2-h6 get tertiary color 7d81308
  • change(site): removed Archivo import as we should only use Roboto font a6af056
  • change(docusaurus): use tertiary color for headings and body color mirroring the design system styles 145fe73
  • change(fonts): modified headings font size as well as line height f0771ea
  • change(fonts): updated font sizes with values given in figma f16eef7
  • change(docusaurus): use Roboto font from google fonts also for docusaurus adca8e9
  • change(headers): added headerColor variable so that thematic sites can easily choose another heading color f09d2c5
  • change(fonts): typo fixes for typography section of docusaurus cae4b02
  • change(fonts): modified footer and header values afer global font size changes f160d35
  • refactor(iconCards): run prettier fe84e46
  • change(typography): inherit header colors with @headerColor variable 91d9357
  • change(breadcrumb): use tertiary color also for breadcrumb c5cbd44
  • change(heading): on homepage on the first hero set font size to h1 and inherit color 5711096
  • refactor(carousel): update card titles to display styling fix edd966b
  • change(docusaurus): use the tertiary color for body and heading colors 11c4ed4
  • change(typography): modified lineheight-0 after headers now use 1.2 instead of 1.25 04d78a8
  • refactor(card): add links to cards and replace description with title in carousel 0258737

🛠️ Others

  • feature(heading): and cards refactoring #227 from eea/develop 334fbda
  • Update package.json 3870cf3
  • Header refactor 153536 #226 from eea/header-refactor-153536 87a6fe7
  • feature(item): icon is now stackable moving the icon on top #220 b716acf

0.7.6 - 2022-08-15

💅 Enhancements

  • change(footer): Footer updates 147837 #225 fa9ae58
  • refactor(footer): initial redesign of main section 8e85617
  • refactor(footer): restructure theme sites logo columns dcba45a
  • change(footer): set actions before thematic section on mobile db25f96
  • change(footer): fix missing key warning from react dev 77f72d5
  • change(footer): Footer updates 147837 #222 32fed23

0.7.5 - 2022-08-11

💅 Enhancements

  • change(megamenu): mobile improvements with See all links, active elements and non accordion children #224 6767b99
  • change(megamenu): render accordion only if children have children be63ce2
  • change(megamenu): mobile menu design tweaks as seen in latest figma 26d74dc
  • change(megamenu): removed icon from at a change menu items and they are no longer bold as requested 043e772
  • change(megamenu): reset first level panels after each item pass 175351b
  • change(megamenu): mobile menu improvements #223 b3cabfe
  • change(megamenu): fixed key error warnings 075bf01
  • change(megamenu): handle default active sub accordion 6192a99
  • change(megamenu): enable active border only for items not titles fb0b869

🛠️ Others

0.7.3 - 2022-08-04

💅 Enhancements

  • change(megamenu): added icon on mega menu header section d0ad4d8

0.7.2 - 2022-08-03

🐛 Bug Fixes

  • fix(contentBox): z-index of content hidden by bg when using content-box-inner c5a7dac

🛠️ Others

  • Set focus on search input field in the popup on click d12c051
  • Make cypress tests work with both slate and draft selectors 4d8e5b1

0.7.1 - 2022-08-01

0.7.0 - 2022-08-01

🚀 New Features

  • feat(accordion,buttons): primary, secondary and tertiary variations #209 c34617f

🐛 Bug Fixes

  • fix(megamenu): key warning errors 4ecd279
  • fix(container): add padding also for block editors when we are on the add page not just edit b857aad
  • fix(header): bump opacity of gradient class to get rid of green hue of header text 2011b40
  • fix(header): remove console log 3a20023

💅 Enhancements

  • refactor(callToAction): add tertiary variant and restructure exports ac6695a
  • refactor(accordion): add color variations 3504c15
  • change(megamenu): WIP bringing back rendering of item with callback and path modification 6e43d43
  • refactor(megaMenu): add slide down transition and update targetRefs on close 9667157
  • change(megamenu): use renderMenuItem in order to render menu items 9ed5cbd
  • change(footer): replaced eionet logo with an svg variant and tweaked size of eionet to match size of eea logo 32ce462
  • refactor(callToAction): update tertiary state colors 159668a
  • change(accordion): style default accordion using the grey from semantic ui e24907d
  • refactor(accordion): add variations and create a default export 4a9c68f
  • refactor(colors): add tertiary shades for element states 1e24a7e
  • change(tests): try to modify tests to use slate instead of draft a2e2485
  • change(megamenu): set active class on storybook list items 112bff1
  • change(megamenu): add border for active element of menu 5e7dfa5
  • change(package): condition modification of navDepth settings dd21dad
  • change(mega menu): use non variable to fix build of volto-kitkat-frontend 3ecd652
  • change(header): prefix mega-menu active class for adding border 32898cb
  • change(tests): use data-slate-editor instead of contents that was found in draft js instead of slate 1e0413c
  • change(stories): hide variant control from button link story 43f8c41
  • change(stories): hide variant control from button link story aea7126

🛠️ Others

  • feature(theme): added context navigation component story and default style 5a6955f
  • feature(megamenu): open default accordions on mobile navigation based on pathname cc299c1
  • fix eslint warnings 3b30282
  • bump release version to 0.7.0 fa82cbd
  • Theme fixes, mega menu selected element both in desktop and mobile #211 b482729
  • feature(mega-menu): added menu slide down animation #208 4360d0e

0.6.5 - 2022-07-06

🐛 Bug Fixes

  • fix(header): double click to close dropdown is no longer required b8a2ed0
  • fix(header): menu generation when atAGlance isn't found d68b03c
  • fix(menu): removed minHeight that enlarged the global menu 133be1e
  • fix(hero): image dimensions when full width and height isn't enabled 4114f73
  • fix(contentBox): removed negative z-index that hid fullwidth bg color bd60faf

💅 Enhancements

  • change(hero): tweaked hero block height and padding 994b6f8
  • change(item): tweak size and padding of icon when used inside item dbdef19
  • change(typography): updated letterspacing values and clarified values used for certain type tokens 8a13bf8
  • change(item): enable theming for icon and text color and added tertiary option 6d4444f
  • change(header): top section chevron sizes and margin as requested in enhancements document b307c74
  • change(cards): add underline to links when applied to headers and use tertiary color by default 874f956
  • change(utilities): wrap in quotes h2 and h3 of quoted-wrapper 8aa4716
  • change(package): bump package version to 0.6.5 denoting bug fixes release 0585aeb

0.6.1 - 2022-07-01

🚀 New Features

  • feat(UnderlinedTitle): create story and necessary utilities 8beb56b
  • feat(headers): added underlined titles with theming support af67561

💅 Enhancements

  • refactor(heading): move underline story and update controls 2c9bfd2
  • refactor(underlineTitle): add content box for different variations 0878915
  • refactor(underlinedTitle): add control for changing heading size 211f515
  • refactor(underlinedTitle): Restore text variation dropdown control bd8c611
  • refactor(utilities): add color variation for headings and text 7e3a779
  • refactor(utilities): update border bottom utility and restore line height for headings 7fe4a7b
  • refactor(headings): update the line height of headers according to docusaurus instructions 9da19b3

🏠 Internal changes

  • chore(countup): package for statistics 26fcd09

0.6.0 - 2022-07-01

🐛 Bug Fixes

  • fix(item): adjust the container in stories a848c46
  • fix(tag): align start for tags on mobile, update path for Tag List and add containers b9de845
  • fix(item): update image width & height on mobiles and add 3 line clamp for description 0cd2c46
  • fix(pageheader): metadata font size on mobile to be readable 0a9b1fa
  • fix(breadcrumb): fixed variable name for breadcrumb item 2b547eb

💅 Enhancements

  • refactor(Item):create item story with custom default class 069ae02
  • refactor(pagination): add pastanage menu overrides and remove any eea theme css from default story 5080810
  • refactor(item): update variables from px to rem 30eed78
  • refactor(Item):add default item mobile padding 3518465
  • change(site): added fixes from custom 0fe4d80
  • refactor(Pagination): add default pagination stopry and rename previous as Secondary a5e3e13
  • refactor(pagination): comment out secondary pagination and its styling bcf4cff
  • refactor(tags): remove content class and add flex wrap d6333ca
  • change(logo): use a real svg logo for white eea logo 3b80dc7
  • change(header): show eea information systems on tablet as well ce82ceb
  • refactor(tokens): update letter spacing tokens 5f8753b
  • change(letterspacing): updated letter spacing positive values b31818f
  • change(pageheader): add bottom margin on mobile for sharing dropdown actions d3cda47
  • change(pageheader): removed blogger, reddit and stumbleupon sharing links e4acc4e
  • refactor(Item): add default item background color c978c8d
  • change(package): bump package version 1f01f72

🏠 Internal changes

  • style(item): update item image e585e9d

🏠 Documentation changes

  • docs(colors): token usage c433ec6
  • docs(Docusaurus): typography and spacing updates 48d1269
  • docs(Docusaurus): various fixes a972a31
  • docs(typography): updates 66d95e4

🛠️ Others

  • Tabs block custom border left/top ca4cce0
  • Fix sidebar tabs in Volto CSS c287db5

0.5.5 - 2022-06-23

🐛 Bug Fixes

  • fix(contentBox): color of cards when inside content-boxes 76a4520

💅 Enhancements

  • change(homepage): moved fixes of homepage to custom and colored carousel arrow 0a226ef

0.5.4 - 2022-06-16

🐛 Bug Fixes

  • fix(block-style): Content box preview in sidebar 6362766
  • fix(header): ensure transparency goes as high as the search icon 4470e13

💅 Enhancements

  • change(contentBox): add background as before element instead of using full-width 7e0a596
  • change(content-box): content box links are now underlined f7976f5
  • change(homepage): added fixes from custom c3e0333
  • change(hero): add margin top with the height of the top section on edit fefa6bb
  • change(cards): fix default card color when inside content-boxes 6fdf3aa
  • change(container): removed override of content-box-inner container 66fe7d4

0.5.3 - 2022-06-16

🐛 Bug Fixes

  • fix(homepage): hero and homepage fixes for #151156 #198 43d4efc
  • fix(header): fixed top section width on edit page ce5898b

💅 Enhancements

  • change(hero): added min height to hero-block-image-wrapper 3cc37c0
  • change(hero): spaced hero block has a 3rem margin top and bottom c463b03
  • change(hero): added extra top margin on hero-block-body from tablet and up within homepage 64142c3
  • change(hero): tweak min height of hero block e1271b4
  • change(card,contentBox): use inherit for text color to inherit black from body c1ba3b6
  • change(container): on section-edit modify only left and right padding values fe6e3ec
  • change(utilities): bump z-index of overlay class ede3209
  • change(hero): fixed variable reference for margin of body from homepage 092b90b

0.5.2 - 2022-06-14

🚀 New Features

  • feat(contentBox) : add new Content Box component 2ebbb47
  • feat(ContentBox): Add primary, secondary, tertiary themes 87cb2fe
  • feat(ContentBox): Update storybook with available themes 93b26b2

💅 Enhancements

  • refactor(contentBox): restructure the component to be more flexible f0d2de6

🏠 Internal changes

  • chore(contentBox) : add lint changes 5aaf740

🛠️ Others

0.5.1 - 2022-06-13

💅 Enhancements

  • change(header): changed homepage text color 64ce8b6
  • change(hero): added styles for adding dark overlay to hero bf1d292
  • change(homepage): hide stagingBanner on homepage fb6e319
  • change(header): use variable for homepage hero-block padding 89ff344
  • change(tokens): modified grey-4 color to point to a 10% shade from original color b406283
  • change(header): added min-height for mega menu needed for 1 items menus 18814f4
  • change(hero): hero section block integration #192 4ea2f40

🛠️ Others

0.5.0 - 2022-06-11

🚀 New Features

  • feat(hero): added storybook implementation of hero component #172 17b9d16
  • feat(hero): add hero block component and stories 6019fc8

🐛 Bug Fixes

  • fix(header): Internal links in mega menu d8ca135
  • fix(header): show active menu when clicking on children a54fa67
  • fix(header): accessibility and dropdown possition fixes 505ac36
  • fix(header): fix accessibility issue by David 783dcec
  • fix(header): dropdowns disappear on resize 52338fd
  • fix(header-topdropdown): dedupe html elements for topdropdowns cd8a2a7
  • fix(header): transparency class should apply on the current bg color or image f9a0033
  • fix(header): mobile dropdown now visible 34371b4
  • fix(header): dropdown disappears after window resize #116 fc7dd8b
  • fix(header-topdropdown): dedupe html dropdown elements for topdropdowns #115 f10a7a8

💅 Enhancements

  • refactor(megaMenu): update mega menu in header component 2d1ce45
  • refactor(header): update structure and variables of top bar af70909
  • change(header): renamed mega menu items href attribute to url 3ed8144
  • refactor(header): update main section and and add color variations f2f0fd1
  • refactor(header): minor updates on colors and widths a70129f
  • refactor(hero): add full-heigh control to adjust height a45cb7c
  • change(header): disable sticky setting until feature is more stable 1d7af95
  • refactor(hero):make button variant and inverted different button controls 7e182ca
  • refactor(header):main bar sticky on scroll up 9c9e7c6
  • refactor(headings): update heading sizes for mobile 19f3cca
  • change(header): hide first link(home) from header menu on site ae7f3b9
  • change(megamenu): typo correction and key setting on list.items 96d2c4f
  • change(header): use Link instead of a tag for menu items 9812b3f
  • refactor(header): add control for inverted logo 023ca45
  • refactor(hero): move quoted utility to h2 tag 7376676
  • refactor(header): add link for menu title inside desktop mega menu 24355d0
  • refactor(utilities): update hex with color token 8dc65ef
  • refactor(header): and mega menu to latest spec #114 44fcf68
  • refactor(header): update search input and file endings afab36f
  • refactor(header): add control that toggles transparency class on main section b8d4bdb
  • refactor(header): restore union dropdown after implementation 7e98bab
  • refactor(header): minor responsive fixes 16a0006
  • refactor(hero): align hero's text and meta seperately 4fa958f
  • refactor(hero):add button variant controls f362a7b
  • refactor(header): update search input 368962e
  • change(header): mark top level active menu item 665c449
  • refactor(hero):prettier & style changes d846884
  • refactor(header): add control for main section stickiness 2f07572
  • change(header): use viewport width for changing mobile text in header dropdowns b50fa58
  • refactor(header): add fluid font sizes 5f2743e
  • refactor(header) add position sticky & transparent for main section 29df772
  • refactor(hero): update variables with new design tokens 1d97922
  • refactor(Language List): render language dropdown as ul and li elements 3617442
  • change(header): introduced item class to the mega menu link content 00ca376
  • refactor(Language List): add less variables 7ccc1cc
  • change(header): disabled active menu when clicking on globalnav links 3f7b5ee
  • change(header): target link instead of span directly 9e865fb
  • refactor(header): remove unused imports 7e232db

🛠️ Others

  • Add item themes; override .block .ui.image width based on size 06010db
  • Move item icon themes to item.overrides 31e8921
  • Override only the width 8d49270
  • Override tile image in .block parrent 005655d
  • Update package.json 9dc3816
  • feature(item): added themes to item icons #190 a6a2907
  • update storybook header.topdropdown e58ac08
  • use volto-screen-helper width ea156aa
  • Add divider content for metadata field in Banner 327ad1c
  • rename to viewportWidth 32162e7
  • don't connect component to store 470b8ba
  • Add end of line 51639d8
  • behave as mobile under 480 only 11b99e1
  • make it account for all mobile-s,m,l 69e23ae

0.4.5 - 2022-06-08

💅 Enhancements

  • change(tabs): Add style for tabs accordion template #187 fb8adbf
  • change(footer): avoid react error by providing key prop to grid column ef0b193

🛠️ Others

0.4.4 - 2022-06-08

🚀 New Features

  • feat(divider): create story for divider b10a2e0

🐛 Bug Fixes

  • fix(divider): restore space between classes c595c15
  • fix(divider): Text colors and transform e524e10
  • fix(footer): story aria labels for social media links 254bdc7

💅 Enhancements

  • refactor(footer): update logos and less structure 66b8e0f
  • refactor(footer): first footer updates d18a2ee
  • refactor(footer): logo updates and adjustments 101bc9d
  • refactor(footer): use tokens and adjust spacing 2cb1669
  • change(footer): moved SubFooter logic to SubFooter.jsx from Footer story 902383a
  • refactor(Divider):add divider with content inside story e2d66dc
  • change(footer): added managed by section as properties 9328fc3
  • refactor(divider): remove custom divider d4870d2
  • refactor(Divider_:remove green color class & add tertiary 95f3018
  • refactor(footer): use remix icons for social links 5ef9aa2
  • refactor(Divider):remove clean class and use fitted prop 8d2be35
  • change(Divider): Rename color property to theme 0deffc8
  • refactor(footer): update links and logo align 7afbab9
  • change(footer): tweaked column sizes to the values before my changes fdf2718
  • refactor(footer): to latest figma design #182 3e0ba2b
  • refactor(footer): move subfooter logic to the proper component #185 3034577
  • refactor(footer): update controls b0b872b
  • refactor(testimonial): update divider 784450a
  • refactor(testimonial): changed divider color to secondary 84282f9
  • refactor(divider): remove custom divider from theme config a0409e8

🏠 Documentation changes

  • docs(divider): switch to secondary color 239844b
  • docs(divider): showcase path fix d5ea03f

🛠️ Others

0.4.3 - 2022-06-03

🐛 Bug Fixes

  • fix(edit): Fix columns/accordion inner toolbar padding fafbb52

💅 Enhancements

  • change(docusaurus): completed removal of description from guides 42424b9

0.4.2 - 2022-06-02

💅 Enhancements

  • change(docusaurus): moved color swatches around in the color guide 8a395fc
  • change(docusaurus): removed description from components and introduced category listing f220bf0
  • change(docusaurus): rename gap to space and added em spaces f5b042d
  • change(docusaurus): moved extra docs to webdev section 1ce0797
  • change(docusaurus): moved md_components files into webdev/md_components 73c1c08
  • change(docusaurus): added category yml for all sections 1740572
  • change(docusaurus): color guideline updates and spacing tokens documentation #148 c1154ba
  • change(docusaurus): modified story links to avoid broken usage tabs 78dc8d8
  • change(docusaurus): renamed several file id's so that they match the incremental naming sequence 11299c9

🏠 Documentation changes

  • docs(Docusaurus): timeline, testimonial, quote and tags aaa54ec
  • docs(spacing): add relative gap tokens 92abc8f
  • docs(colors): updated colors a28c99e
  • docs(tags/content): new page about tags and content 60be402
  • docs(Docusaurus): labeled icons f6a0f61
  • docs(typography): add font size and line height tokens 2ff65e4
  • docs(spacing): add spacing gap tokens 2d53727
  • docs(spacing): add missing gaps 442db46
  • docs(docusaurus): minor fix 6e66513
  • docs(spacing): aligned images e946fe5
  • docs(spacing): new image fcd3294

🛠️ Others

  • merge changes from develop into docusaurus token documentation a940138
  • perf(docs): restructuring order 8f4134d

0.4.1 - 2022-06-02

🚀 New Features

  • feat(languageLabeledIcon) : add new component 110558e
  • feat(LanguageLabeledIcon):add new component d00200c
  • feat(newTabLabeledIcon) : add new component 8f5cd31
  • feat(labeledIconGroup) : add new component 787d648
  • feat(DownLoadLabeledIcon) : add new component 6ea2fa1

🐛 Bug Fixes

  • fix(LabeledIcon) : fix lint errors 91b042f
  • fix(LabeledIconGroup) : fix links for tests daa1065
  • fix(LanguageLabeledIcon):bug fix & languages change 1436e2b
  • fix(LabeledIconGroup):fix based on Langauge & Download Labeled icon components changes 3015864
  • fix(newTabLabeledIcon) : add link item b1a9ada
  • fix(Labeled Icons):minor bug fix 00f3022

💅 Enhancements

  • refactor(labeledIcons): adjust new tab labeled icon to figma and replace px with rems 904615d
  • refactor(LanguageLabeledIcon):implement with pop up 0f3dd8f
  • refactor(labeledIcon): add group wrapper in labeled icon stories 4b7dd31
  • refactor(DownloadLabeledIcon):implement with pop up aa61f9b
  • refactor(labeledIcons): adjust language labeled icon to figma 5741e3d
  • refactor(labeledIcons): adjust download icon to figma and replace px with rems 4ae8530
  • refactor(LanguageLabeledIcons):minor storybook change 78f5544
  • refactor(LanguageLabeledIcon): set language code to uppercase and minor storybook change ac28693
  • refactor(labeledIcon): adjust paddings 9c1ecdd
  • refactor(labeledIcons): update margins for group labeled icons 5fa5ca9
  • refactor(labeledIcons): add variable for icon color 9f9d3cb
  • refactor(labeledIcons): update colors on download links c042642

🏠 Internal changes

  • chore(labeledIconGroup) : lint changes 535cee4
  • style(downloadLabeledIcon) : fix styling 6d8e3ac
  • style(downloadLabeledIcon) : fix alignment 4558017
  • chore(LabeledIconGroup) : lint changes ab36476

0.4.0 - 2022-06-01

🚀 New Features

  • feat(Carousel): create carousel for cards 2b0d737
  • feat(ItemwithIcons): Initial Item group with icons, new item variation 7f4ea47
  • feat(utilities): add file and basic utilities 05c88b2
  • feat(utilities): add file with basic utilities classes #173 855185f

🐛 Bug Fixes

  • fix(tokens): hsla function for shadows b8e5d37
  • fix(tokens): remove css var from less file a9c4224
  • fix(carousel):add storybook controls descriptions 269a603
  • fix(item): remove image width css from item.less 7b21cb2
  • fix(table): Set responsive breakpoint to @tabletBreakpoint 067e018

💅 Enhancements

  • refactor(item): import item.less in theme definitions c516374
  • refactor(Label):add corner,ribbon & basic label stories and styles e2bbbb9
  • refactor(Label):style changes based on label importance class ce4d5d1
  • change(tokens): rename gap to space and added em spaces 719efc4
  • refactor(item): add classes for size, set default to tile and add controls for grouped items d5a0405
  • refactor(tokens): add borders, shadows, shapes and z-index tokens 7069106
  • change(tokens): name spacing tokens gaps and added missing values up to 80px as documented 9fbd912
  • refactor(quote): Rename sourceInfo to extra info 76c2b40
  • refactor(item): WIP replacing unstackable with row e3a44de
  • refactor(tocens): add color design tokens 13bb165
  • refactor(item): adjust margins to match figma designs 6334581
  • refactor(carousel): remove title from story and color on card hover 12a1d7c
  • change(tokens): updated sizes with 4-8-16px increments 1f53d65
  • change(tokens): added size tokens to be used for width of elements cda5dea
  • change(utilities): values need important rule 96150d9
  • change(tokens): added also rem space values aedbbdd
  • change(tokens): updated z-index tokens with negative values 404efe4
  • refactor(tokens): add 14px font size token 8d8695d
  • refactor(docusaurus): restructured and improved sections navigation #174 b47b026
  • refactor(tokens): add 12 and 14px font size token #176 3681147
  • refactor(tokens): remove conditional border radius f0fe5ad

🏠 Documentation changes

  • docs(website): created new sections, improved website navigation 243f0be
  • docs(homepage): adding design system homepage with links for upcoming sections c9a9685
  • docs(docusaurus): copyedit, improved navigation 998762a
  • docs(website): restructuring, moved current DS docs to new folder 8bb612f
  • docs(homepage): copy editing ee37d6f

🛠️ Others

  • Release 0.4.0 f4bc509
  • feature(homepage): added Item group with icons #167 2ec99f5
  • feature(tokens): added borders, z-index, shadows tokens #171 74c1788
  • feature(tokens): added initial color design tokens #169 da3eae0
  • perf(carousel): added slick library ca9be51

0.3.1 - 2022-05-19

🐛 Bug Fixes

  • fix(input,segment): toggle inputs and padding fixes within Volto sidebar forms de030d6

💅 Enhancements

  • change(login): restored width of login container to 376px 0564293

0.3.0 - 2022-05-17

🚀 New Features

  • feat(Callout):create Callout component with Blockquote style 3d486b1
  • feat(callout): Align the Callout component with Volto slate component e9343ff

🐛 Bug Fixes

  • fix(testimonial): fix storybook arg names b9df52f
  • fix(table): tweak responsive table for extra long headers 7f9f9e2
  • fix(quote): fix color and padding issue 310d6b3
  • fix(accordion): Fix accordion active title color 57af165
  • fix(testimonial): remove info arguement 9593d95

💅 Enhancements

  • refactor(Table):add responsive mobile table story and styles aed69e6
  • refactor(testimonial): adjust to volto design | fix avatar image size 546070e
  • refactor(Quote):rename Pullquote component to Quote 9384a0c
  • refactor(Quote):rename Quote.Metadata to Quote.SourceInfo dfae8b1
  • refactor(Quote): rename Author to Source 6d400f6
  • refactor(Quote):move Testimonial component under Quote folder e2467c2
  • refactor(testimonial): readjust rounded card b419334
  • refactor(Table):wrap table with semantic ui container 24ac2bb
  • refactor(Testimonial):minor storybook bug fix 7b6d128
  • refactor(Callout): wrap story with semantic ui container ead362d
  • refactor(quote): update action name to match the functionality caf2e35
  • refactor(table): add borders to responsive table with celled attribute 8a71a67
  • change(table): make use of headerSortableWhiteSpace variable fd836fb
  • change(table): use the @mobileLandscapeBreakpoint for max 480px media query 90880ab
  • refactor(Quote):rename pullquote to Quote in Testimonial f54da19
  • refactor(Testimonial): change card class name e995c32
  • refactor(Testimonial): prettier changes 904594b

🛠️ Others

  • feature(tokens): added tokens folder for design tokens we can use in the system a542172
  • perf(lint): fix f2ef3ab
  • Release 0.3.0 8724b28

0.2.4 - 2022-05-13

💅 Enhancements

  • change(segment): brought back overrides from pastanaga into our theme 14efd02
  • change(container): removed padding from containers restoring thus the defaults c2ed813
  • change(grid-story): added container as grid width is influenced by container width 459f481
  • change(breadcrumb): removed padding from breadcrumb added by container c5df567
  • change(container): modified all outputted widths to align to grid 9f29cef
  • change(breakpoints): restore Semantic UI breakpoints, adding extra needed values e7f5b1e
  • change(container): restore maxWidth to 100% now that the last value is 1120px 8b55c58
  • change(header): wrap header globalnav links useful for editing section 10d4f56
  • change(breadcrumb): added vertical variant to the breadcrumbs like we do in Volto f405f84
  • change(breakpoints): added also contentBreakpoint for backward compatibility b6c9212

🛠️ Others

  • [JENKINSFILE] Add failure comment, no jenkins fail c325bf1
  • prettier changes 134da52
  • [JENKINSFILE] format PR comments 739438c
  • [JENKINSFILE] mention comment author in comment 39a26aa
  • [JENKINSFILE] remove debug, add error per stage 903eecd

0.2.3 - 2022-04-29

🚀 New Features

  • feat(CallToAction):add feat call to action ab53642

💅 Enhancements

  • refactor(button): add container to stories 6c02c19
  • refactor(tab): update vertical tab columns and content b473fab
  • refactor(call to action):render call to action with Button as="a" e7dfabf
  • refactor(button): update inverted button colors c822021
  • refactor(Tab):scrollbar change in mobile & vertical tab fix 0e34cbf
  • change(banner): added icon class to share icons 48e866e
  • refactor(Button): move button to forms folder 94996fc
  • refactor(Tab):minor change in secondary pointing menu variables 280b6c4

🏠 Documentation changes

  • docs(button): import call to action stories e4eed44

0.2.2 - 2022-04-22

🐛 Bug Fixes

  • fix(publicationCard): restore line endings 582859e
  • fix(form): added back overrides from Pastanaga theme a3f7ff8
  • fix(OrderedList) : add list only if sub list exists 8acbc8d
  • fix(label): update highlight label color d55bbb0
  • fix(publication card): run prettier 81a5bfc
  • fix(avatar) : fix naming convention for arg 84fc5fa
  • fix(tab): restore mobile font sizes 58f39be
  • fix(addForm): add min height to add form and fixed block chooser overflow ca4415d
  • fix(OrderedList): adjust margins to fourth sublists 663d384
  • fix(dropdown): being hidden because of third party css 7d353df
  • fix(modal): overflow hidden as clearfix of last child from modal b4923f5
  • fix(RelatedContent):fix merge conflict adc34bf
  • fix(button): labeled class needs to be placed after left or right keyword 53d1204

💅 Enhancements

  • refactor(card): prettier fixes e10e3d6
  • refactor(card): add card variations e16d05b
  • refactor(card): remove stories 0deb0ca
  • refactor(card):delete primary and secondary card stories 1f95d22
  • refactor(Avatar) : remake avatar as card variant ea77cdd
  • refactor(card): add styles for card variations 7407bd3
  • refactor(storybook): add story with related content inside of a tab dca008a
  • refactor(card): Rename variables from avatar to rounded be01316
  • refactor(avatar): update less variables and layer structure f965db1
  • refactor(PublicationCard):remake publication card to be a semantic card variation 5a0c6ab
  • change(button): simplified button styling fe892d6
  • change(button): simplified storybook naming and examples 9a7df4f
  • refactor(Avatar) : convert avatar component to card variation 2004a94
  • refactor(Related Content): change in grid and add see all button 955450e
  • change(button): added back button.overrides from pastanaga theme 3b55acb
  • refactor(card): add card class control 68c91a9
  • refactor(card):delete publication card variables & overrides files 6be8a03
  • refactor(OrderedList): rename TOC to Ordered List and add container to the story e00c4db
  • refactor(card): add card grid fluid story with no columns f38251c
  • refactor(list): remove horizontal control 1f5e576
  • refactor(avatarGrid): update less variables and layer structure db554a8
  • refactor(Related Content):show button when there are more hidden cards 57ff1c8
  • refactor(RelatedContent):change to use new card variant instead of publication card component 7cf424a
  • change(breadcrumb): brought back pastanaga overrides to breadcrumbs bca1c93
  • refactor(card):delete publication card folder & story 68bf773
  • change(buttons): modified basic and circular variant behavior c06fed9
  • refactor(card):tertiary variation minor story update 87b8dca
  • refactor(DescriptionList): add container to story d647c1a
  • refactor(List):render ordered list with ol,li tags 87813c1
  • refactor(OrderedList) : change table of contents story to ordered list cb6197c
  • refactor(publicationCard): update tag and name variables c109ad9
  • refactor(UnorderedList): update list as ul, list items as li and add container to strory 2c096e1
  • refactor(card):organize controls and minor bug fixes f3f6e35
  • refactor(less variables): publication card style changes c5a84e9
  • refactor(less variables): add less to related content e1a5543
  • refactor(RelatedContent):delete publication card component 2ed0ed4
  • change(button): basic button is again without padding, border and background 5a907c7
  • refactor(PublicationCard):remove link wrapper 5911a0d
  • refactor(less variables): change publication card height per viewport d7a5256
  • refactor(Timeline):change timeline icons b2fe0bf
  • refactor(publicationCard): replace px with rems 53bf8da
  • refactor(Related Content): change in related content grid bf856ce
  • refactor(List):render description list with dl,dt,dd tags ec669a7
  • change(button): show only labeled variant for buttons with icons bf49944
  • refactor(card): import image for rounded card ca5a47e
  • refactor(progress): add container to story dfb33bb
  • refactor(storybook): add publication card story with different description sizes 23af97b
  • refactor(List):render default list with dl & dt tags ece2280
  • refactor(storybook): add publication cards stories with longer description 37adefa
  • change(button): basic icon buttons no longer have box shadows c2f3ea3
  • refactor(card): remove story afc5f79
  • refactor(less variables): change card description line number per device 6946fda
  • refactor(card): update rounded card image path 8db3a85
  • refactor(DefaultList): add container to story f971193
  • change(button): bumped z-index of sidenav expand button 445ed8a
  • change(progress,label): color accessibility fixes #151 09cf6e3
  • change(button): text button now has an underline with a focus border like other buttons cdd9043
  • refactor(card): update card variation grids path 756589c
  • refactor(card): minor fixes 3a880d7
  • change(button): primary color is blue and secondary is green 53e0a0c
  • refactor(List):change styles to match with the tags lists are rendered 2673890
  • refactor(progress): update colors for accessibility ea2f454
  • refactor(card): move avatarGrid & relatedContent to Card folder 1959d52
  • refactor(Timeline): change storybook timeline colors to fix accessibility issues 79da8dc
  • change(segment): restore light grey background color for secondary segments 8716b08
  • refactor(relatedContent): adjust column paddings 8a1520d
  • refactor(storybook): clear up code 3ada154
  • refactor(card): use the rounded class for avatar grid 8c000f3
  • refactor(card) Update rounded card class 140b587
  • refactor(avatar): add variable for image border radius c23341c
  • refactor(label): add container to story 565101f
  • refactor(progress): update value color for accessibility error 6fc76f8
  • refactor(card):use jsx extension 413d328

🏠 Internal changes

  • chore(Avatar) : add container to stories 41b748c
  • style(OrderedList): prettier fixes ed95e4d

🛠️ Others

0.2.1 - 2022-04-08

🐛 Bug Fixes

  • fix(version): Switch to 2.0.0.alpha.1 83b8b8e

🛠️ Others

  • cleanup(loader): Remove useless HTML d1d180c

0.2.0 - 2022-04-04

🚀 New Features

  • feat(card) : add new default card color-schme 965adea
  • feat(label): Handle slate links and footnotes f382431

🐛 Bug Fixes

  • fix(buttons,toggles): border and background color when active 147629 #139 ea36f31
  • fix(checkboxes): background color when they are toggles 4b6ab67
  • fix(buttons): border set on basic buttons appearing on svg elements of Volto UI 69ca73f
  • fix(label): Zotero/Footnotes inside label 0ee4d58
  • fix(card) : add control for image url in storybook b28e530
  • fix(less variables):change font family e4bca9e
  • fix(storybook):minor bug fix 9fc53bc
  • fix(tag): fixes merged theme config eb30363
  • fix(Banner): prop types fix a270e5b

💅 Enhancements

  • refactor(tag): splits Tags component to TagList and tag, changes default tags style 78a5f8c
  • refactor(Banner):add banner share pop up in banner story c9688b2
  • refactor(tag): remove classes and actions that add background color ce9b6f9
  • refactor(Banner):change banner's image wrapper implementation 9153dd1
  • change(package): bump release version to 1.10.0 7e984c1
  • refactor(card): align cards and images, update less variables d47c978
  • refactor(card): add class inverted for default card 919a56e
  • refactor(tag): changes component name e1db068
  • refactor(tag): changes color metallicBlue to bottleGreen e4b68ac
  • refactor(less variables): change tag list mobile view fcded3d
  • refactor(tagList): update story to not use tag color classes 8b5b61b
  • refactor(Banner):minor bug fix ff8c352
  • refactor(Banner): add metadata field sub component 327b7e7
  • refactor(banner): add and adjust remix icon for banner action 1bf3ffa
  • refactor(banner): replace px with rem and adjust share popup padding a568329
  • refactor(Banner):add type class to metadata field and apply styles to it 86a2866
  • refactor(less variables):change tag list styles 8670087
  • refactor(banner): share items display flex on desktop 3ff8684
  • change(banner): added background gradient, share popup, metadata show and hide #136 2f5dcca
  • refactor(banner): update gradient 570ee1e
  • refactor(tags): removes hardcoded ':' ea58e86
  • refactor(card): remove card border bc77739

🏠 Internal changes

  • style(card) : add lint and prettier changes 9d9a773
  • style(tag): remove comments 501fcdf
  • style(tag): stylelint and prettier changes 08b6386

🛠️ Others

0.1.9 - 2022-03-25

🚀 New Features

  • feat(all): 1.9 release #124 0d3f6fb
  • feat(callout): Align volto-slate callout with blockquote style 9e0bb49

🐛 Bug Fixes

  • fix(inpageNavigation): restore hidden on top functionality c554e6e
  • fix(list): Fix TOC margin on 3rd level f17da79
  • fix(inpageNavigation) : add smooth scroll animation 42f6564

💅 Enhancements

  • refactor(footer): update visual and mobile margins 64f05af
  • refactor(header): restore union dropdown after implementation a7029c5
  • refactor(pullquote): adjust to the new figma design 78e4606
  • refactor(breadcrumb): adjust font sizes and import remix divider 5fcabaf
  • change(header): use viewport width for changing mobile text in header dropdowns 5a7868e
  • refactor(inpageNavigation): adjust to the new figma design 4073acf
  • refactor(tab): add max width for tab items 366d279
  • refactor(less variables):change pullquote styles 9ad94bb
  • refactor(Pullquote):change quote positions and add Pullquote.Metadata sub component 6bce35f
  • refactor(inpageNavigation): Update to remix icons 19a6061
  • refactor(inpageNavigation) : move icon & text to be in column 0953910
  • change(breadcrumbs): modified breadcrumbs template to behave like breadrumb template 490a559
  • change(package): bump release version to 1.9.0 43a6e4b
  • refactor(breadcrumb): adjust font sizes and import remix divider #120 09a3a01
  • change(menu): modified secondaryPointingItemMaxWidth to a value that equals to 250 ea138a1
  • refactor(pullquote): introduce meta section, use remix icons, integrate slate callouts #119 fd740c9
  • refactor(footer): updated visuals and gradients #117 e5c6d18
  • change(scrollToTop): feature inpage navigation revamp #121 3cf20a8
  • refactor(footer): update visual and gradient 764ec23
  • change(header): use 12px font size for mobile resolution dropdowns 6dad0fa
  • change(nav): added navDepth to 3 in order to enable mega menu integration c4f73fd

🏠 Internal changes

  • style(inpageNavigation) : lint changes 3641d78
  • style(inpageNavigation) : add less variables 0699c70
  • style(pullquote): create variable for icon font size fea9b0a
  • style(inpageNavigation) : add lint & prettier changes f8dd012
  • style(inpageNavigation): remove comment 1aee011

🛠️ Others

0.1.8 - 2022-03-18

🐛 Bug Fixes

  • fix(card): avoid long links from spilling outside of card body area 95b8951

💅 Enhancements

  • change(typography): set heading sizes as detailed in docusaurus typography section 189bf20
  • change(docusaurus): content tweaks, inpage navigation section #112 b62d1b1

🏠 Internal changes

  • chore(docusaurus): fixed grid tablet breakpoint value c7fbc09

🏠 Documentation changes

  • docs(docusaurus): capitalization remove bf8fa44
  • docs(docusaurus): update 1c04976
  • docs(docusaurus): comment address on pr 112 6e4fe3b
  • docs(docusaurus): color minor update 13f9fda
  • docs(docusaurus): tabs and breadcrump update d0547e5

🛠️ Others

  • doc(colours): add more content ec66248
  • Add divider content for metadata field in Banner f1e34bd
  • Release 1.8.0 fd6ba04

0.1.7 - 2022-03-15

🚀 New Features

  • feat(less): add global gap sizes 3c83f20
  • feat(icons): import remix css 29967fb

🐛 Bug Fixes

  • fix(menu): fix border overflow for tabs and pagination e88721f
  • fix(accordion): responsive and accessibility issues c225935

💅 Enhancements

  • refactor(menu): update paddings for tabs and pagination 533a509
  • refactor(accordion): import semantic icon for remix arrows 9aa77d8
  • refactor(all) icons, accordion, button and menu itml #108 52ed2ca
  • change(storybook): segment stories now contain several elements 98a7654
  • change(table): inherit header alignment instead of hard-coding values ebb5193
  • refactor(icons): add remix icons c4c1a92
  • refactor(container): restore mobile width to auto 2df184c
  • refactor(button): update action button hover color bb09d71

🏠 Internal changes

  • chore(docusaurus): docs delete 5f9d733

🏠 Documentation changes

  • docs(colors): corrections da64c4c
  • docs(list): default list showcase 8ded062

🛠️ Others

  • bug(form): input min-width more specific to not break volto interface 3f5b5d4
  • Update package.json 3dba28b

0.1.6 - 2022-03-11

🚀 New Features

  • feat(cards): add custom display for volto-block-image-cards 645096a
  • feat(PublicationCard):create publication card component & styles 3e5f9b7
  • feat(PublicationCard):create publication card component & styles 12cdd5d
  • feat(Related Content): create Related Content component 77eda95
  • feat(Related Content): create Related Content component 08d495b
  • feat(pagination,related) added several r3 components #105 08d47c1

🐛 Bug Fixes

  • fix(Related Content): limit publication card number to 4 e7df032
  • fix(less variables):rename publication card variables 55c6fb8
  • fix(Publication Card): add link to card and arg name fix 36a7c96
  • fix(radio): fix bullet scaling issue with firefox 5f02c95
  • fix(radio): fix bullet scaling issue with firefox dbb2e27

💅 Enhancements

  • refactor(form): remove custom classes and add container to form items 6b5442a
  • refactor(form): remove custom classes and add container to form items d1ec083
  • refactor(form): update form wrapper component a719576
  • refactor(form): update form wrapper component 0736ec7
  • refactor(form): adjust form items to volto theming 4213cfb
  • refactor(form): adjust form items to volto theming 374ffbc
  • refactor(breadcrumb): remove custom class anf and new variables b3cb83d
  • refactor(breadcrumb): remove custom class anf and new variables d5808ad
  • refactor(storybook): clear up unnecessary form elements controls f7e7d5b
  • refactor(storybook): small change in unordered list story 3ffd872
  • refactor(storybook): small change in unordered list story 6ce16e9
  • refactor(pagination): fix menu overrides for tabs that affects pagination fe8c4ca
  • refactor(pagination): fix menu overrides for tabs that affects pagination 3f4b726
  • refactor(Loader):remove image & add background image 70fe041
  • refactor(Loader):remove image & add background image ac38126
  • refactor(list): remove selection control a09b179
  • refactor(list): remove selection control 17bf710
  • refactor(storybook):unordered list minor change df2b727
  • refactor(storybook):unordered list minor change ef6db73
  • refactor(colors): remove metalic blue color b2f95b6
  • refactor(colors): remove metalic blue color 1eea33f
  • refactor(button): update variables b1774d8
  • refactor(button): update variables 061f3e3
  • change(blockquote): treat slate as a variation of blockquote component 19bd9a5
  • refactor(container): remove important from rules e984771
  • refactor(storybook):add textarea control to add/remove fluid class 475f540
  • refactor(container): remove important from rules 1cc6984
  • refactor(storybook): add required attribute to form fields fecee27
  • refactor(progressBar): update progress bar colors with vars c4ef1f0
  • refactor(progressBar): update progress bar colors with vars a44d73c
  • refactor(storybook): add required attribute to form fields 21da79e
  • refactor(list): adjust bullet size 2b29e4e
  • refactor(list): adjust bullet size 61c341c
  • refactor(statistic): add inverted background to global variables 1427e70
  • refactor(statistic): add inverted background to global variables ea25dfa
  • refactor(statistic): remove custom class 46cc560
  • refactor(container): update mobile width d548a44
  • refactor(grid): replace px with rem units e792f51
  • refactor(statistic): remove custom class b5c8e7c
  • change(docusaurus): updated template to change what's new title 3e15f4d
  • change(footer): added display variable for footer site logos d5b3c2f
  • refactor(grid): replace px with rem units f0331d0
  • change(github): auto deploy only on develop branch 11d6b4e
  • refactor(header): implementation in preparation for Volto integration #20 #89 95b136d
  • change(github): trigger autobuild when modifying templates contents 46094b1

🏠 Internal changes

  • style(list): prettier fixes f9e3b05
  • style(list): prettier fixes 8eb715b
  • chore(github): merge changes from develop to develop-itml 063bd6e
  • chore(github): build deployment only on develop branch a5a1b08
  • chore(github): build deployment only on develop branch bb455aa
  • chore(github): merge changes from develop to develop-itml 129c12f

🛠️ Others

  • Revert "chore(github): merge changes from develop to develop-itml" ca9520f
  • refactor breadcrumbs component, make it functional and customizable e902d69
  • rollback(cards): move custom display to volto-block-image-cards 2564b1e
  • bring back segment wrapper and make it attached 8458f03
  • no display: flex for blockquote added from slate 5595ce1
  • Add rule about code length a5f3652
  • Add indenting rule 15c44cb
  • fix warning related to proptype 946c6c6
  • fix profile section css overflow db5126f
  • Add rule about import sorting 804e188
  • don't use volto-slate 6a02976
  • remove segment custom width 1d3ea40
  • Add rule about naming vars 8f9020f
  • update style for accordion title 0b0d678
  • Release 1.6.0 e771e65
  • update bbcab87
  • add margin to <br> element to simulate gap as in design c6685c1
  • make breadcrumbs default size as tiny 589581f
  • remove uneeded style 82a8fb1
  • Add rule about hardcoded values e04e0df
  • Add file mode rule 65c9a93
  • Add DRY rule 66c9c3a
  • set profile section overflow to auto 71ab47f
  • Add Sonarqube tag using eea-website-frontend addons list 647a6e3
  • removed override already present in card.less 50d2ab2
  • update 7a1d482
  • Add functional components rule; add classnames rule 91a0b06
  • added comment about need for removal of this fix later 65b8166

0.1.5 - 2022-03-08

🚀 New Features

  • feat(cards): add custom display for volto-block-image-cards f49ffb6
  • feat(KeyContent): add new component 2534c54
  • feat(docusaurus): Updated developer guidelines ca146ff
  • feat(storybook): add testimonial component 55d9747
  • feat(storybook): add AvatarGrid component b668445
  • feat(storybook):add Loader component f675834

🐛 Bug Fixes

  • fix(breakpoints): fix largest screen breakpoint bug on scaling e4a11c8
  • fix(profile): section css overflow and padding issues #95 bb9eb0f
  • fix(storybook): lint auto changes for AvatarGrid b8e74f1
  • fix(components): add grid structure to various components cc33546
  • fix(header) re-added span tags removed in pull request #74 00702d7

💅 Enhancements

  • refactor(button): styling updates 37afda5
  • refactor(tab): updates on variables and overrides 54bf703
  • change(blockquote): treat slate as a variation of blockquote component 5e8a8b8
  • change(footer): added display variable for footer site logos 2f942b4
  • refactor(checkbox/radio): remove header from message and adjust top position of bullet 4a072b3
  • refactor(color): remove secondaryColorDarken variable 74c8ba0
  • change(docusaurus): updated template to change what's new title 58f58c8
  • change(github): auto deploy only on develop branch bfa35a3
  • refactor(header): implementation in preparation for Volto integration #20 #97 cddda20
  • refactor(breadcrumbs): component, make it functional and pluggable #32 #94 9f42e80
  • change(card): added styles for volto cards integration #92 a46ac21
  • refactor(grid): remove column count from example ac0e9cf
  • change(github): trigger autobuild when modifying templates contents 5f7d152
  • refactor(grid): remove custom grid 1d978a9
  • refactor(Form):change form field wrapper implementation 73cdd6d
  • refactor(message): update colors to match design 633ce31
  • refactor(checkbox/radio): update variables and remove important rules ad533b4
  • refactor(less variables): add variables to less for new components 47df026
  • refactor(Tab): fix vertical tab alignment 401bdf2
  • refactor(lint changes): add lint changes 6f6847f
  • refactor(inpageNavigation): adjust to volto theming 62f74ea
  • refactor(message): updates on styling b4cf850
  • refactor(banner): update class name ef0969b
  • change(github): use develop for auto pushing a32a723

🏠 Internal changes

  • style(design-system): unix eol 631fa90
  • style(checkbox/radio): prettier fixes a04939f
  • style(design-system): unix eol 3c753f0
  • style(message): stylelint fix 5b75057

🏠 Documentation changes

  • docs(docusaurus): visuals guidelines 544a950
  • docs(docusaurus): search guidelines 0fb229d
  • docs(docusaurus): loader page 892a25d

🛠️ Others

  • Reformat header.less 1f99dfc
  • Close menu when changing path 65daea9
  • refactor breadcrumbs component, make it functional and customizable 4ec374e
  • rollback(cards): move custom display to volto-block-image-cards 79d4c89
  • Open overlay menu on global menu click cc749bc
  • bring back segment wrapper and make it attached 9f413ff
  • Use renderMenuItem also in mobile menu 02de0bb
  • Fix clicking outside closes menu af52664
  • Cleanup args in header story 2bf6a30
  • fix warning related to proptype 824b9be
  • fix profile section css overflow 8fd2654
  • don't use volto-slate 70ca3d4
  • remove segment custom width 4a60d84
  • update 96f4af0
  • Fix TopDropdownMenu component rendering in mobile a4626de
  • Add usePrevious hook 797faba
  • make breadcrumbs default size as tiny 3c8e1c6
  • Update package.json fa020cb
  • Add rule about hardcoded values 0c6912c
  • set profile section overflow to auto 8db62bb
  • added comment about need for removal of this fix later 6fdbd71
  • Add Sonarqube tag using eea-website-frontend addons list 6051724
  • removed override already present in card.less 93c4e5a
  • Remove console.log calls 8a3a4cb
  • update 81bb7d4
  • Update comment ffa2400
  • merge develop into this branch ad5b388
  • WIP a8d97f1
  • Use header.less from develop branch 99edbc6
  • WIP 57b5783
  • WIP 785da36
  • WIP 5d1eba9
  • adds Tags e37fc19
  • Add useClickOutside hook 70364c8
  • Implement outside click handling fa6f818
  • Simplify overlay menu template 28b0478
  • fixes less variables, fixes tags positioning cc19b9b
  • WIP 15bc0f4
  • no display: flex for blockquote added from slate 312a893
  • Add rule about code length 318cd48
  • Add indenting rule d589685
  • Add rule about import sorting cd337c1
  • Add rule about naming vars b112de0
  • Bring back classNames from header subpopup e477a51
  • removes tags hashtag from jsx 6b8b3e9
  • WIP d481324
  • fixes undefined on empty classes 4b29080
  • stylelint changes a5ab830
  • Footer link color @white 578e4f7
  • add margin to <br> element to simulate gap as in design 9ab9a97
  • impors colors from site variables 6117267
  • small fix for the link in footer action 72df049
  • remove uneeded style 66e9064
  • use proper naming conventions for var naming 596e314
  • Add file mode rule 805baa7
  • use less variables b43ac8d
  • Add DRY rule 2f1584e
  • Add functional components rule; add classnames rule 1b2915e
  • fix z-index of header 7d2a5d6
  • Remove comment 7d120b1

0.1.4 - 2022-03-01

💅 Enhancements

  • refactor(pagination): adjust to volto theming 06cc3b6
  • refactor(Form):create form field wrapper file 95b9934
  • refactor(megaMenu): update margins for menu items 230e476
  • refactor(megaMenu): update gradient 47f2ea4

🏠 Documentation changes

  • docs(docusaurus): divider page c6bb238

🛠️ Others

0.1.4-beta.0 - 2022-02-25

🚀 New Features

  • feat(github): added feature and bug reports templates with our guidelines as checkboxes 1549093

0.1.3 - 2022-02-25

🐛 Bug Fixes

  • fix(all): change eol to unix 62e7224
  • fix(banner): separate url value f9c9140
  • fix(all): merge eol c68f6e0
  • fix(blockquote): align self property now uses a valid entry ec76163

💅 Enhancements

  • refactor(megaMenu): new implementation ff013af
  • change(volto): removed customizations made for ims theme from volto-eea-design-system bc8d514
  • refactor(Timeline): divide to sub components and change files to .jsx 3e2bd3b
  • refactor(header): update variables 4e5d08d
  • refactor(Header): link header's menu to mega menu 08406d8
  • refactor(Menu): change mega menu implementation 455a51b
  • refactor(Grid):minor changes and delete extra files 272585d
  • refactor(timeline): adjust to volto theming b98641a
  • refactor(megaMenu): fix link hover issue for tablet 564e972
  • refactor(header): add remix icons and minor updates c9c97dd
  • refactor(Header): change header buttons implementation 6608b8c
  • refactor(Header): add sub components and change existing Main 74c35a3
  • refactor(table): adjust to volto theming ab7a0e8
  • refactor(Footer): delete Actions & ThemeSites files and clear imports 7a78456
  • refactor(header): update variables 326655a
  • refactor(Breadcrumb): add react router link and minor bug fix 073a3a3
  • refactor(Header): show menu on search & minor bug fix 4d49a8a
  • refactor(List): add extra default list story 95665cd
  • change(docusaurus) change generation of what's new section and bump package version 6c35cff
  • refactor(Footer): minor code changes 67cb4bc
  • refactor(Menu): add class to mega menu items for styling 19baa34
  • change(accordion): modified default accordion stories titles with real accordion names cf11cc8
  • refactor(Header): accessibility image alt fix a7347a6
  • refactor(header): adjust to volto in progress 760beca
  • refactor(Header): header items as storybook arguments 388c752
  • refactor(banner): update less variables 35b0a98
  • refactor(banner): actions as buttons; don't hardcode url for banner image; subcomponentize Banner, add Banner.Action; add developer guidelines on inline styles and line endings; 6dd5a41
  • refactor(blockquote): fix responsive margins and sizes rems 209f94f
  • refactor(Input): label position and style change 970074a
  • refactor(header): update dropdown menu 32eb0fa
  • refactor(timeline): theming updates c80c9aa
  • refactor(Blockquote):remove image stories a6357ca
  • change(docusaurus) proofread blockquote usage section and removed unused api section 0bb29fd
  • change(infrastructure) cherry-pick fix 9639243 skipping jenkins on auto commits fc744cd
  • change(ci) build storybook and docusaurus only when pushing to develop-itml branch 4de0cbf
  • change(infrastructure): modify whats new doc when committing the auto deployment 39df33e
  • change(blockquote): introduce float argument for blockquote with image storybook 8fc7290
  • refactor(pullquote): add word break 2245e53
  • refactor(Banner): minor bug fix b9073b6
  • refactor(table): fix th font weight a96a0a7
  • refactor(comment): remove avatar border radius d42c37b
  • refactor(banner): adjust title size 7a24d9c
  • refactor(Image): change image path a580da6
  • change(infrastructure): specify that docs folder contains changes for deployment a1ca915

🏠 Internal changes

  • style(input) prettier fixes e83fa0c
  • chore(storybook): prettier fix 354c7b3
  • chore(design system): technical commit for edw integration tests 9f76035
  • style(storybook): prettier fixes 3c9ad34
  • chore(infrastructure) updated branch with changes from bitbucket 77866f8

🛠️ Others

  • doc(colours):fix color to better show primary ones 705b789
  • doc(colours):change font size to fit text in one line 4ad7516
  • bump package release to 1.3.0 f3cfe4f
  • Refactor banner into content subcomponent f8df238
  • lint fixes cda322d
  • rollback don'ts grammar change and disable unresolved import for Banner.stories.jsx a1bd715
  • Add space line in component d4d1a5f

0.1.2 - 2022-02-17

🚀 New Features

  • feat(blockquote) added blockquote styles as a custom module d30662e

🐛 Bug Fixes

  • fix(inpageNavigation): hide at the top of the page 97ef500
  • fix(footer):missing image ac91a29
  • fix(comment):fix broken image 8125dc1
  • fix(message): fix font loading fdc498e
  • fix(logo): logo change 5f8c8af

💅 Enhancements

  • refactor(storybook): multiple components fixes 4a3ff51
  • change(infrastructure) re-enable integration tests for auto release stack ce8daf8
  • refactor(storybook): global site files styling update f3770f1
  • refactor(storybook): multiple components 9277aac
  • refactor(footer) adjust to volto theming update a59f1c3
  • refactor(header): minor styling update dd6b55c
  • refactor(Header): change header mega menu 7559b57
  • refactor(banner): adjust to volto theming 451b949
  • refactor(accordion): minor styling update aeaf25f
  • refactor(footer): adjust to volto theming bdff176
  • refactor(footer):mobile responsiveness 14822be
  • refactor(storybook): main and custom less files update 1607760
  • refactor(timeline): update after removing timeline addon f54d380
  • refactor(Footer): replace with subcomponents 378c652
  • refactor(Header): header change 029e850
  • refactor(Header): change header bar 2b766fd
  • change(docusaurus) use itml branch for docusaurus deployment 6e286c5
  • refactor(accordion): adjust to volto theming 971fcb8
  • refactor(Header): add sub components 7f955db
  • change(docusaurus) tweak auto deployment to always commit changes from docs a2940da
  • refactor(banner): less and variables files created d5b1a8a
  • refactor(label): adjust to volto theming 3c945e1
  • refactor(message): adjust to volto theming 3e950fc
  • refactor(Footer): add sub components and props c3d1487
  • refactor(modal): modal and confirm adjust to volto theming 83b60e9
  • refactor(comment): adjust to volto theming 84348c3
  • refactor(storybook):adjust headings 32f64f9
  • refactor(Header): add comments to header menu c2c83b2
  • refactor(Accordion): clear up accordion stories code 4e59b8f
  • refactor(segmant): adjust to volto theming 3ab211e
  • refactor(button) minor styling update 8782bb2
  • refactor(banner): change image position cdd76d5
  • refactor(breadcrumbs): update less variables 640817e
  • refactor(list): adjust to volto theming 1079c73
  • refactor(timeline):adjust timeline module 213eb11
  • refactor(blockquote):adjust to volto theming 5eec87f
  • refactor(progress): add progress bar colors ccf3c98
  • refactor(pullquote):adjust to volto theming fee4466
  • refactor(Header): change mobile mega menu c7ecf18
  • refactor(statistic): adjust to volto theming b726e49
  • refactor(button) adjust to volto theming eb257f8
  • refactor(form): minor styling update 79934b2
  • refactor(Footer): create Actions & Sites sub components 446840b
  • refactor(inpageNavigation): adjust to volto theming 85c631a
  • refactor(Inpage Navigation): changed button's display 36e5b4f
  • enhancement(docusaurus) modified headings to be within release versions 19ace30
  • refactor(storybook): move components to ui folder cb91f88
  • refactor(Header): change mega menu de0fc6b
  • refactor(Pullquote): divide Pullquote to sub components 34413c4
  • enhancement(docusaurus) replace changelog when auto-building docs Refs #145331 da25c0e
  • refactor(popup): adjust to volto theming d0d192d
  • refactor(card):adjust to volto theming 2ab6f91
  • refactor(item): adjust to volto theming 89a16af
  • refactor(pullquotes) remove unnecessary variables e0d20a3
  • refactor(progress):adjust to volto theming d1ab950
  • refactor(blockquote) change variables names 36fd5be
  • refactor(comment): adjust font sizes 0311ed1
  • refactor(InpageNavigation): clear up code 1d7afdc
  • refactor(container): change variable name for computer padding 26d123f
  • refactor(inpageNavigation): remove imports 25c1d1c
  • refactor(storybook): update ui index components exports ce78d47
  • change(infrastructure) auto build storybook when pushing to develop-itml branch of volto-eea-design-system e9aa5bc
  • refactor(storybook): delete demo stories 8b58d02
  • change(docusaurus) align deployment steps for building docusaurus 37e4ce0
  • refactor(storybook): remove components from customizations folder 8930ede
  • refactor(tab): minor styling update 1252ad0
  • refactor(comment): change avatar src e5f9c4c
  • refactor(banner) : change file type and folder 878742b
  • refactor(form elements):changed text 919beea
  • refactor(Image): change image src b971084
  • refactor(Pullquote): add component propTypes d32c5e6
  • refactor(blockquote): adjust font sizes d71a3ce
  • refactor(footer): update font sizes 1c91c35
  • refactor(Blockquote): add component proTypes ea02649
  • refactor(logo): update image f611372
  • refactor(docusaurus): restore config f2c5239
  • refactor(blockquote): update component name 572e655
  • refactor(header): fix story header import ceda6c7
  • change(infrastructure) auto build docusaurus when pushing to develop-itml branch 7bebdf5
  • refactor(storybook): remove components from customization folder 4a9bb9b
  • refactor(banner):story rename 56ff603
  • change(testing) removed navigation from cypress tests until component is finished 5549f4c
  • refactor(Segment): change to .jsx extension 5cb35d8
  • refactor(Pullquote): change to .jsx extension 564cf7e
  • refactor(PopUp):change to .jsx extension dcb24ff
  • refactor(InpageNavigation): change to .jsx extension dfefce3
  • refactor(Blockquote): change to .jsx extension 44a1645
  • refactor(heading): story name update aa10f34

🏠 Internal changes

  • style(footer): prettier fix 902c257
  • style(storybook): prettier fixes 59f941d

🏠 Documentation changes

  • docs(docusaurus):multiple page updates 2aba73e
  • docs(docusaurus):update page content 565697f
  • docs(grid):update components grid 60eb083
  • docs(docusaurus): page adjustments 0641eac
  • docs(docusaurus):updated various pages f860176
  • docs(docusaurus): logo change 3af5e5c

🛠️ Others

  • added sortable table stories and descriptions 6d44dd7
  • Layout components theming 5861013
  • recovered files from origin a4ac04f
  • grid component & stories changes 4a5752e
  • Updated what's new section with actual commits from volto-eea-design-system repo fc5e3c3
  • Docusaurus title possible fix. db699e7
  • form elements stories added description & default values 6b4f6eb
  • removed API tabs 58aa928
  • Layout updates 854f388
  • Refs #142123 removed extra customization of semantic.less: ab9de81
  • added page-header,footer and grid in docusaurus 660c8e3
  • Manual docs build and commit 666eb6a
  • added svg & png files f1338d5
  • added missing components to docusaurus 934dfd8
  • Control descriptions updated 56581eb
  • Grid updates 700332d
  • Button theming update 0ec68b6
  • site variebales & overrides changes 7251162
  • Table and Tabs theming 49f0860
  • Responsiveness updates 48e1351
  • added various components to docusaurus 550d719
  • Checkbox and radio updates 24652a2
  • remove images from typography and colour docs 8493e92
  • added guidelines' text and finished all components 02d75fc
  • added more missing components in docusaurus 8be8263
  • Prettier changes on docusaurus 5f1e5eb
  • Grid updates ae09945
  • Minor fixes for tests 3bdf306
  • Layout updates 8b7a4dc
  • Footer and TOC theming bb3d3c4
  • Refs #145331 manually commit changelog until autobuild is stabilized 93168b0
  • label component changes df8c0ff
  • added several sections to the theming guidelines ff1a649
  • Updated removed files. 84f9b8c
  • added more docusaurus components 52a3b9e
  • Progress Bar 9f2efc9
  • Modal and Confirm updates 3b306c6
  • Add proper changes to whatsnew meant in previous commit 40f78e3
  • Form Descriptions de0dfbc
  • Prettier fixes 1337e6f
  • Deleted files b82f982
  • add new images for spacing 7b7b2c4
  • Messages Theming ad621a3
  • added new content to docusaurus 1c83452
  • Minor less updates a36a8bb
  • Tabs and lists updates e37eef1
  • Inpage nav and timeline components 76f0f82
  • Prettier updated files 679b9d2
  • dropdown initial d8aef26
  • Prettier changes f068af0
  • List initial 6d3b969
  • List story updated e96a6f6
  • Statistics updates 74bf639
  • styling c169cc0
  • timeline comp storybook changes 1f42686
  • feature(docusaurus) added theming guidelines ded1f04
  • Properly commented out integration tests. 48b3a15
  • Reattempting commented out integrations tests. 3dd8211
  • Button theming 4231e1c
  • Card initial 06dace5
  • form element storybook changes c4b06aa
  • Pagination theming 2a80175
  • Accordion theming 8061bf9
  • global var updates and radio story 9526ee2
  • created pullquote component & stories df35563
  • Item stories added description & default values 9d459f2
  • storybook clean up code bffd326
  • List updates 28f1b53
  • Button classes updates 788c289
  • Prettier fixes 678c9be
  • Removed header title from partial docusaurus components. ed7c45e
  • created banner component and stories 9be170f
  • Breadcrumb stories description & defaultValue -- clean up code 186ab65
  • Refs #142123 added customization of semantic.less: 1e02356
  • Card stories added description & default values f6b408f
  • Statistic and accordion updates 16064ce
  • breadcrumb component & stories changes 5bceb98
  • Container initial 3eb7155
  • doc(docusaurus):Fix text for various parts bfd3fa2
  • blockquote component & stories 879b640
  • Refs #143412 removed doc comments breaking doc building e6a6756
  • Popup updates ce2d641
  • Global variables for colors and borders added 6e5fbd6
  • Tab stories changes 5429cfb
  • Confirm stories added description & default value 85cda14
  • Kebab case class names b41cd07
  • Card and Comment class updates 3899465
  • Accordion updates c97ba39
  • item stories changes 772e41f
  • Accordion class updates 9cdde86
  • Comment stories added description & default value cb6f25b
  • Accrodion stories description & default value ab8fb88
  • Pullquotes updates c598421
  • Modal and confirm class updates 0ae47e6
  • Tab and paggination updates 96796ff
  • Form Updates e986a9f
  • Classes renamed 73c8c3d
  • List and item less updates ce0de17
  • Confirm theming 36e20ce
  • container overrides changes 4b3970b
  • Docusaurus theming fc4a8c5
  • refacto(headings): update mobile headings sizes b2e9f83
  • list stories and style changes c61db53
  • Tab theming e31e6c3
  • Message and pagination classes updates c230687
  • Segment initial d5724fe
  • Refs #143412 removed doc comments from api_markdown breaking doc building efeacba
  • Timeline and responsiveness updates 1ed1524
  • Refs #142123 use swap font-display for performance reasons 083738f
  • Breadcrumb stories minor changes 3d0d17c
  • Table component stories minor change 0bf4083
  • List stories changes a64b304
  • blockquote component minor changes cdf71a8
  • ckeckbox stories minor change 6d6e508
  • image component storybook changes 91290ec
  • button overrides changes d5b78dd
  • accordion overrides changes fdcf7d5
  • Accordion component and stories changes 5079247
  • Card theming 23bbb9d
  • statistic overrides changes 2b11cb5
  • Refs #143412 build docs only on pull request like we do with storybook 473bb87
  • Card component stories minor change | added link icon deb423a
  • comment component stories changes f1c5e75
  • Accordion component bug fixed 815e91d
  • Refs #145331 use iso date to release so that we see also time ceedf08
  • correct connfig for doco 93e1313
  • Item updates fae93d4
  • added layout grid 2e6be55
  • tab overrides changes 87aaf32
  • message overrides changes 6dccfca
  • segment storie changes 296371f
  • progress component stories changes df10c2e
  • message comp storybook changes c86b405
  • Accordion cmponent stories | minor bug fix 6de0d81
  • Refs #145331 add all changes when auto building docusaurus ce11cce
  • perf(timeline):removed semantic timeline package 0aeb34a
  • Tablet Breakpoint update b229c27
  • Refs #143412 set storyBook Url to eea.github.io b7fdecb
  • bump package version to signaling of a major release c835f1d
  • small commit to trigger deployment of storybook and docusaurus be46ea3
  • doc(accordion):revert previous change 3de02da
  • fix typo for caption @desktop line-height pixel number 1671552
  • Commented out integration tests. 574cfec
  • popup overrides changes a9555e3
  • container component stories fixes 692cfce
  • Added timeline to package json fixed f2e93e0
  • Refs #142123 modified import of volto-eea-design-system icon.less: a7fab7d
  • Refs #142123 reference icon.less from this package: 5616e6d
  • Menu component stories change 2797716
  • Image stories minor change ddb9f1d
  • card component stories changes 6ccba1e
  • Added timeline to package json 93031d6
  • table stories code clean up b7b2a56
  • Refs #143412 removed extra baseUrl from docusaurus config 79f36da
  • Accordion stories minor change ffe808a
  • Theme assets 3f4bea4
  • Merged with develop 167ec9f

0.1.2-beta.2 - 2022-01-03

0.1.2-beta.1 - 2021-12-22

🛠️ Others

  • Tab component stories minor changes 4690a6f
  • Comment component stories minor changes a87cb6a
  • Form stories changes fc30c90
  • Grid component stories minor changes 798fdd0
  • Image component stories minor changes be93385
  • Menu component stories minor changes cb1f9a8
  • Dropdown component stories minor changes 57cf954
  • Header component stories minor changes 264fd46
  • Confirn component minor changes 9a00bc1
  • Item component stories minor changes 6994fa0
  • Label component stories changes 5cc5843
  • Container component stories minor changes e6e40b3
  • Message component stories minor changes ba9d377
  • Breadcrumb component stories minor changes ff7a176
  • Modal component stories minor changes af1fe6a
  • List stories changes 0016042
  • Button component stories minor changes 690dfd2
  • Radio component stories minor changes 84eac30
  • Progress component stories minor changes e676357
  • Pagination component stories minor changes b1af226
  • Segment component stories minor changes 5f8c7ef
  • Refs #143412 eslint fixes for component stories badcb91
  • Table component stories minor changes 7c104b8
  • Refs #143412 more eslint fixes a88c091
  • Refs #143412 warn for broken links instead of throwing bd5821c
  • Refs #143412 merge changes from develop-itml to develop branch bca28b9
  • made tabs dynamic for api tab ea37ecb
  • Basic storybook/Docusaurus components 840ab60
  • created List directory & srories based on semantic-ui List component 51f1901
  • made tabs as component easy to call for other components 07bae49
  • Popup Component | minor fixes 2ff9908
  • created stories for Tab component 95e3a73
  • created Table directory and stories based on semantic-ui Table component e16115d
  • List component stories - minor changes de11343
  • created stories for Comment component a20f884
  • created stories for Grid component 360d2a8
  • created stories for Image component 3c1d2bc
  • created stories for Menu component 17e3b37
  • Added untracked files 75f0afd
  • created Dropdown stories d6a2538
  • created Header component stories b833979
  • created stories for semantic-ui Confirm component 6fddccc
  • created Statistic directory and stories with semantic-ui Statistic component cd62498
  • created Item component stories 90ec2be
  • created stories for Container component 41934f6
  • created Label component stories 71732f6
  • created Message component stories adcbeab
  • created Modal component stories c25409d
  • Breadcrumb component stories and minor changes 6264d92
  • created Pagination component stories 57cdad3
  • created Segment component stories d8d01d7
  • created stories for Radio component 1fd062d
  • Menu stories minor changes 6ba5e0d
  • Statistic component stories minor changes 3c874a5
  • Card component stories minor changes 290bda8
  • Accrordion stories minor changes 2ee3f59
  • renamed Demo folder to Layout b9f6d05
  • remove test exclusion 94dba3e
  • Accordion component stories minor changes e672d59
  • fix docusaurus url (removed trailing /) b6c59fc
  • Item component stories - minor changes f0a9902
  • eea logos and assets b435b51

0.1.2-beta.0 - 2021-12-18

🛠️ Others

  • Refs #140454 added github action to build docusaurus to the develop branch abe6a72

0.1.1 - 2021-12-16

🛠️ Others

  • Refs #140454 changed the following to volto-eea-design-system: 6791d41
  • Refs #140454 corrected base url for docusaurus website build 98271b3
  • Initial test changes on design system/docusaurus. 9dad612
  • After prettier check 9ec40b4
  • Refs #140454 restore SearchWidget.jsx content and removed dummy text from docs intro page 7505df8
  • Refs #140454 added references to eea and the storybook in the docusaurus footer 42bbfcd
  • Refs #140454 lint fixes 9502f2b
  • Add SonarQube badges a4e0a40
  • Refs #140454 brought changes from develop-itml and upgrades docusaurus 207c873
  • Refs #140454 removed extra content not needed by the docusaurus site bc68ebe
  • Refs #140454 updated docusaurus to latest beta d68ed8a

0.1.1-beta.0 - 2021-12-09

🛠️ Others

  • Refs #140454 moved header and footer templates from volto-ims-theme: e2d5e56
  • Refs #140454 added website folder with docusaurus site skeleton 6fd15f4
  • Refs #142794 added commented implementation of the header and footer area: 773ad87
  • Refs #140454 changed the following: 4137ec4
  • Refs #140454 removed storybook from volto-eea-design-system: a129ffb
  • Refs #140454 added storybook as a dev dependency: e04ae4e
  • Refs #140454 updated Breadcrumbs.jsx to latest version: 63fe507
  • Refs #140454 we should use jsx and not mdx for storybook tests 3668e66
  • Refs #140454 updated eea-design-system readme with extra info on package contents d2efc3d
  • Refs #142010 - Optimize Volto-addons gitflow pipelines 3af46d2
  • Refs #140454 Renamed folders of docusaurus website: 15bca74
  • Add demo story 757c409
  • Refs #142794 enabled minimum css so that header looks decent adbe233
  • Refs #140454 use the develop branch for the readme linking, it's always more up to date 23dcf16
  • Refs #140454 added missing themes reference for the eea theme e9ca244
  • Refs #140454 modified assets imports after move to volto-eea-design-system 2250cc7
  • Load footer in segment 80d38a9
  • Refs #140454 bump package version to 1.1.0 from 0.1.1 from develop branch: 1314039
  • Refs #142794 keep toolbalWidth variables in case design system runs in an older version of Volto 1a8b305
  • Refs #142794 changed the following: fbb80b1
  • Refs #140454 moved storybook scripts to the scripts section 705c4c3
  • Refs #140454 removed dangling comma 514f24d
  • Refs #140454 changed link to the start of the docs 0e16fdf
  • Refs #140454 add h1 to the list of elements that are max 800px and centered 7d3c30f
  • Add Sonarqube tag using ims-frontend addons list 8d657d0

0.1.0 - 2021-11-17

🛠️ Others

  • Refs #140454 changed the following to volto-eea-design-system: 40d2af6
  • Refs #141204 elements folder now has the variables and overrides from pastanaga theme 595b4e6
  • Refs #141204 use font awesome from SemanticUI instead of Pastanaga: 4e273ca
  • Refs #141204 removed the components customizations from volto-eea-design-system: c98c260
  • Refs #141204 added customizations folder from volto-ims-theme to volto-eea-design-system: ff4bf44
  • Refs #141204 modules folder now has the variables and overrides from pastanaga theme f2841b6
  • Refs #141204 customized Comments.jsx to remove unnecessary container b2e95d7
  • Refs #132149 added initial commit for volto-eea-design-system: 2934b91
  • Refs #141204 collection folder now has the variables and overrides from pastanaga: 213d496
  • Refs #141204 removed search widget customization, we can use volto-ims-theme for that file b7e8b0c
  • Refs #141204 stylelint quick fixes 5595925
  • Refs #141204 changed the following: 769f4f9
  • Refs #141204 changed the following to the eea theme: 06d8d86
  • Refs #141204 eea site.variables now use all values from pastanaga's site.variables 6535c0f
  • Refs #141204 simplified container overrides: 5125003
  • Release 1.0.0 177d0ce
  • Refs #141204 globals folder now has the variables and overrides from pastanaga theme 116a0c3
  • Refs #141204 changed the following: 2e7f423
  • Refs #141204 modules folder now has the variables and overrides from pastanaga theme: 27a201d
  • Refs #141204 text elements are now with a max width and centered within content-area: bbed7bb
  • Refs #141204 added main.variables entries from pastanaga to eea theme 1cbbc55
  • Refs #141204 modified theme image imports for component customizations ef3238a
  • Refs #141204 modified container width to be auto: 2e8d2e0
  • Refs #141204 modified several icons to use the \f values instead of \e: c397145
  • Refs #141204 changed the following: c518eda
  • Refs #141204 ensure that main column isn't enlarged over the sidebar section on edit f7a2868
  • Refs #141204 changed the following to the form styling: eb92e05
  • Refs #141204 modified path of theme folder location for image selection f8cca45
  • Refs #141204 added missing mobileScrollbarWidth variables introduced as part of the mobile navigation pull request 444c78d
  • Refs #140454 reference font and image path from ~volto-themes instead of relative ec93ed3
  • Refs #141204 ensure that Volto doesn't crash when site module is set to eea: 51f2f27
  • Refs #141204 added tiny size prop to Breadcrumbs in order to have it as 12px 56a12e2

0.0.1 - 2021-11-17

🛠️ Others

+ \ No newline at end of file diff --git a/docs/index.html b/docs/index.html index aadb481110..d49a3d8b32 100644 --- a/docs/index.html +++ b/docs/index.html @@ -5,13 +5,13 @@ Welcome to EEA Design System Homepage | EEA Design System - +

EEA Design System

Creating a consistent user experience for our digital products

I am a...

Web developer

Design system for web developers

Web designer

Design system for web designers

Web content creator

Tips and tricks for writing for the web

Publication writer

Writing manual for publications

Publication designer

Design system for publications

Data scientist

Design system for data scientists

- + \ No newline at end of file diff --git a/website/docs/2-whatsnew.md b/website/docs/2-whatsnew.md index 5c2a031352..00944c7ae5 100644 --- a/website/docs/2-whatsnew.md +++ b/website/docs/2-whatsnew.md @@ -32,7 +32,7 @@ Below is a non-exhaustive list of the work-in-progress which is planned for futu Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). -### [Unreleased](https://github.com/eea/volto-eea-design-system/compare/1.0.6...HEAD) - 2023-04-07T18:14:46.589Z +### [Unreleased](https://github.com/eea/volto-eea-design-system/compare/1.0.6...HEAD) - 2023-04-07T19:47:24.545Z #### :rocket: New Features @@ -71,14 +71,14 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - refactor(labeledIconGroup): group updates for all labeled icons [`a679d9d`](https://github.com/eea/volto-eea-design-system/commit/a679d9d05b804f516fdeed449eba1e74e227818c) - change(breadcrumbs): label modification for better screen reader output [`c967bef`](https://github.com/eea/volto-eea-design-system/commit/c967bef63ac6f622f5936235dd5590831a674d15) - refactor(checkbox): accessibility fix [`3b3047f`](https://github.com/eea/volto-eea-design-system/commit/3b3047f6a6bdd9e9ad858e6a7ca0c6f6b404e605) -- change(mega-menu): sub-title padding tweaks for better spacing normalization [`e08668d`](https://github.com/eea/volto-eea-design-system/commit/e08668dd9fd948e57628e5582e7a4a7f08d96451) - change(card): simplified headerLineHeightOffset used as margin top for cards header [`ca61105`](https://github.com/eea/volto-eea-design-system/commit/ca61105f2f39e6880ce545ba4d54f3568e7b87e2) - refactor(megaMenu): clean up function after test [`883eb73`](https://github.com/eea/volto-eea-design-system/commit/883eb73cbc3db6a1fadd0200118eafdce91b7aab) - change(mega-menu): added code to align countries left column subtitle with the right column [`1aa33dd`](https://github.com/eea/volto-eea-design-system/commit/1aa33dd7ac7154a91515eef688f276d664d5d7f3) +- change(mega-menu): sub-title padding tweaks for better spacing normalization [`e08668d`](https://github.com/eea/volto-eea-design-system/commit/e08668dd9fd948e57628e5582e7a4a7f08d96451) - change(logos): updated eionet logo used in the site footer #318 from eea/footer-logo-update [`70671d0`](https://github.com/eea/volto-eea-design-system/commit/70671d03bbc228e3013e382cb51e6764a83b01a8) +- change(breadcrumbs,mega-menu): better screen readers support, see links instead of groups #309 from eea/firefox-accessibility-tab-issues [`d6b0b4a`](https://github.com/eea/volto-eea-design-system/commit/d6b0b4adba8f04799491025fb41ac97e875bcce0) - change(breadcrumbs): fixed sizing of breadcrumbs list items [`1761e98`](https://github.com/eea/volto-eea-design-system/commit/1761e984a6ffebbcca0c7b88128a01235fc6b903) - change(checkbox): toggle hover color correction [`4f4d0df`](https://github.com/eea/volto-eea-design-system/commit/4f4d0df7292fdccb89f83feface51639bd5d6559) -- change(breadcrumbs,mega-menu): better screen readers support, see links instead of groups #309 from eea/firefox-accessibility-tab-issues [`d6b0b4a`](https://github.com/eea/volto-eea-design-system/commit/d6b0b4adba8f04799491025fb41ac97e875bcce0) - change(card): add links to teaser titles [`cc64c74`](https://github.com/eea/volto-eea-design-system/commit/cc64c74a69539af287f424abdf96226635284303) - change(inpageNavigation): story improvements [`ade63c6`](https://github.com/eea/volto-eea-design-system/commit/ade63c6f0b08c62318d31c54568cca29d0f106bc) From 1bae05ff82b235137ba5ca84c521c9fc2df8a342 Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 10 Apr 2023 10:04:30 +0000 Subject: [PATCH 44/45] Autobuild of docusaurus docs --- docs/404.html | 4 ++-- .../{41d5c757.b162b801.js => 41d5c757.205be74d.js} | 2 +- ...ime~main.c8c186fa.js => runtime~main.8afffea3.js} | 2 +- docs/blog/archive/index.html | 4 ++-- docs/docs/category/components/index.html | 4 ++-- docs/docs/category/forms/index.html | 4 ++-- docs/docs/category/guidelines/index.html | 4 ++-- docs/docs/category/maps-and-charts/index.html | 4 ++-- docs/docs/category/publications/index.html | 4 ++-- docs/docs/category/quotes/index.html | 4 ++-- docs/docs/category/resources/index.html | 4 ++-- docs/docs/category/search/index.html | 4 ++-- docs/docs/category/templates/index.html | 4 ++-- docs/docs/category/utilities/index.html | 4 ++-- docs/docs/category/visuals/index.html | 4 ++-- docs/docs/category/web-content/index.html | 4 ++-- docs/docs/category/web-development/index.html | 4 ++-- docs/docs/dataguide/intro/index.html | 4 ++-- docs/docs/intro/index.html | 4 ++-- docs/docs/pubguide/design/index.html | 4 ++-- docs/docs/pubguide/writing/index.html | 4 ++-- docs/docs/webcontent/intro/index.html | 4 ++-- docs/docs/webdev/Components/Accordion/index.html | 4 ++-- docs/docs/webdev/Components/Breadcrumb/index.html | 4 ++-- docs/docs/webdev/Components/Buttons/index.html | 4 ++-- docs/docs/webdev/Components/Callout/index.html | 4 ++-- docs/docs/webdev/Components/Cards/index.html | 4 ++-- docs/docs/webdev/Components/Comment/index.html | 4 ++-- docs/docs/webdev/Components/Confirm/index.html | 4 ++-- docs/docs/webdev/Components/Content/index.html | 4 ++-- docs/docs/webdev/Components/Divider/index.html | 4 ++-- .../docs/webdev/Components/Forms/Checkbox/index.html | 4 ++-- .../docs/webdev/Components/Forms/Dropdown/index.html | 4 ++-- docs/docs/webdev/Components/Forms/Radio/index.html | 4 ++-- .../docs/webdev/Components/Forms/TextArea/index.html | 4 ++-- .../webdev/Components/Forms/TextInput/index.html | 4 ++-- docs/docs/webdev/Components/Headings/index.html | 4 ++-- docs/docs/webdev/Components/Image/index.html | 4 ++-- .../webdev/Components/Inpage-Navigation/index.html | 4 ++-- docs/docs/webdev/Components/Item/index.html | 4 ++-- docs/docs/webdev/Components/Labeled-icons/index.html | 4 ++-- docs/docs/webdev/Components/Labels/index.html | 4 ++-- docs/docs/webdev/Components/Lists/index.html | 4 ++-- docs/docs/webdev/Components/Loader/index.html | 4 ++-- docs/docs/webdev/Components/Logo/index.html | 4 ++-- docs/docs/webdev/Components/Messages/index.html | 4 ++-- docs/docs/webdev/Components/Modal/index.html | 4 ++-- docs/docs/webdev/Components/Pagination/index.html | 4 ++-- docs/docs/webdev/Components/Popup/index.html | 4 ++-- docs/docs/webdev/Components/Progress/index.html | 4 ++-- docs/docs/webdev/Components/Quote/Quote/index.html | 4 ++-- .../webdev/Components/Quote/Testimonial/index.html | 4 ++-- .../docs/webdev/Components/Search/Filters/index.html | 4 ++-- .../webdev/Components/Search/Searchbox/index.html | 4 ++-- .../webdev/Components/Search/Suggestions/index.html | 4 ++-- docs/docs/webdev/Components/Segment/index.html | 4 ++-- docs/docs/webdev/Components/Statistic/index.html | 4 ++-- docs/docs/webdev/Components/Tab/index.html | 4 ++-- docs/docs/webdev/Components/Table/index.html | 4 ++-- docs/docs/webdev/Components/Tags/index.html | 4 ++-- docs/docs/webdev/Components/Timeline/index.html | 4 ++-- .../docs/webdev/Components/Visuals/Charts/index.html | 4 ++-- .../webdev/Components/Visuals/Dashboard/index.html | 4 ++-- docs/docs/webdev/Components/Visuals/Maps/index.html | 4 ++-- docs/docs/webdev/Guidelines/colours/index.html | 4 ++-- docs/docs/webdev/Guidelines/iconography/index.html | 4 ++-- docs/docs/webdev/Guidelines/images/index.html | 4 ++-- docs/docs/webdev/Guidelines/intro/index.html | 4 ++-- docs/docs/webdev/Guidelines/spacing/index.html | 4 ++-- docs/docs/webdev/Guidelines/typography/index.html | 4 ++-- .../webdev/Resources/developer-guidelines/index.html | 4 ++-- .../webdev/Resources/theming-guidelines/index.html | 4 ++-- docs/docs/webdev/Templates/Grid/index.html | 4 ++-- docs/docs/webdev/Templates/PageHeader/index.html | 4 ++-- docs/docs/webdev/Templates/SiteFooter/index.html | 4 ++-- docs/docs/webdev/Templates/SiteHeader/index.html | 4 ++-- docs/docs/webdev/Utilities/intro/index.html | 4 ++-- docs/docs/whatsnew/index.html | 6 +++--- docs/index.html | 4 ++-- website/docs/2-whatsnew.md | 12 ++++++------ 80 files changed, 163 insertions(+), 163 deletions(-) rename docs/assets/js/{41d5c757.b162b801.js => 41d5c757.205be74d.js} (99%) rename docs/assets/js/{runtime~main.c8c186fa.js => runtime~main.8afffea3.js} (99%) diff --git a/docs/404.html b/docs/404.html index 69d50c7cad..362d464075 100644 --- a/docs/404.html +++ b/docs/404.html @@ -5,13 +5,13 @@ Page Not Found | EEA Design System - +

Page Not Found

We could not find what you were looking for.

Please contact the owner of the site that linked you to the original URL and let them know their link is broken.

- + \ No newline at end of file diff --git a/docs/assets/js/41d5c757.b162b801.js b/docs/assets/js/41d5c757.205be74d.js similarity index 99% rename from docs/assets/js/41d5c757.b162b801.js rename to docs/assets/js/41d5c757.205be74d.js index f7bc675440..ca85565a60 100644 --- a/docs/assets/js/41d5c757.b162b801.js +++ b/docs/assets/js/41d5c757.205be74d.js @@ -1 +1 @@ -"use strict";(self.webpackChunkwebsite=self.webpackChunkwebsite||[]).push([[6245],{3905:(e,a,t)=>{t.d(a,{Zo:()=>c,kt:()=>h});var i=t(7294);function n(e,a,t){return a in e?Object.defineProperty(e,a,{value:t,enumerable:!0,configurable:!0,writable:!0}):e[a]=t,e}function o(e,a){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);a&&(i=i.filter((function(a){return Object.getOwnPropertyDescriptor(e,a).enumerable}))),t.push.apply(t,i)}return t}function m(e){for(var a=1;a=0||(n[t]=e[t]);return n}(e,a);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(i=0;i=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(n[t]=e[t])}return n}var d=i.createContext({}),r=function(e){var a=i.useContext(d),t=a;return e&&(t="function"==typeof e?e(a):m(m({},a),e)),t},c=function(e){var a=r(e.components);return i.createElement(d.Provider,{value:a},e.children)},s="mdxType",f={inlineCode:"code",wrapper:function(e){var a=e.children;return i.createElement(i.Fragment,{},a)}},p=i.forwardRef((function(e,a){var t=e.components,n=e.mdxType,o=e.originalType,d=e.parentName,c=l(e,["components","mdxType","originalType","parentName"]),s=r(t),p=n,h=s["".concat(d,".").concat(p)]||s[p]||f[p]||o;return t?i.createElement(h,m(m({ref:a},c),{},{components:t})):i.createElement(h,m({ref:a},c))}));function h(e,a){var t=arguments,n=a&&a.mdxType;if("string"==typeof e||n){var o=t.length,m=new Array(o);m[0]=p;var l={};for(var d in a)hasOwnProperty.call(a,d)&&(l[d]=a[d]);l.originalType=e,l[s]="string"==typeof e?e:n,m[1]=l;for(var r=2;r{t.r(a),t.d(a,{contentTitle:()=>m,default:()=>s,frontMatter:()=>o,metadata:()=>l,toc:()=>d});var i=t(7462),n=(t(7294),t(3905));const o={title:"What's new"},m=void 0,l={unversionedId:"whatsnew",id:"whatsnew",title:"What's new",description:"EEA Design System (1.0)",source:"@site/docs/2-whatsnew.md",sourceDirName:".",slug:"/whatsnew",permalink:"/volto-eea-design-system/docs/whatsnew",editUrl:"https://github.com/eea/volto-eea-design-system/edit/contribute-documentation/website/docs/2-whatsnew.md",tags:[],version:"current",sidebarPosition:2,frontMatter:{title:"What's new"},sidebar:"sidebar",previous:{title:"Introduction",permalink:"/volto-eea-design-system/docs/intro"},next:{title:"Web development",permalink:"/volto-eea-design-system/docs/category/web-development"}},d=[{value:"EEA Design System (1.0)",id:"eea-design-system-10",children:[{value:"Components ready to be used",id:"components-ready-to-be-used",children:[],level:4},{value:"Future releases",id:"future-releases",children:[],level:4}],level:3},{value:"Unreleased - 2023-04-07T19:47:24.545Z",id:"unreleased---2023-04-07t194724545z",children:[{value:"\ud83d\ude80 New Features",id:"-new-features",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes",children:[],level:4}],level:3},{value:"1.0.6 - 2023-03-29",id:"106---2023-03-29",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-1",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-1",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-1",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others",children:[],level:4}],level:3},{value:"1.0.5 - 2023-03-28",id:"105---2023-03-28",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-2",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-1",children:[],level:4}],level:3},{value:"1.0.4 - 2023-03-27",id:"104---2023-03-27",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-3",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-2",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-1",children:[],level:4}],level:3},{value:"1.0.3 - 2023-03-24",id:"103---2023-03-24",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-2",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-2",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-2",children:[],level:4}],level:3},{value:"1.0.2 - 2023-03-14",id:"102---2023-03-14",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-3",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-3",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-1",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-3",children:[],level:4}],level:3},{value:"1.0.1 - 2023-03-13",id:"101---2023-03-13",children:[],level:3},{value:"1.0.0 - 2023-03-13",id:"100---2023-03-13",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-4",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-4",children:[],level:4}],level:3},{value:"1.0.0-beta.6 - 2023-03-10",id:"100-beta6---2023-03-10",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-4",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-5",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-5",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-3",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-2",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-4",children:[],level:4}],level:3},{value:"1.0.0-beta.5 - 2023-03-07",id:"100-beta5---2023-03-07",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-6",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-4",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-5",children:[],level:4}],level:3},{value:"1.0.0-beta.4 - 2023-03-01",id:"100-beta4---2023-03-01",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-5",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-6",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-7",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-6",children:[],level:4}],level:3},{value:"1.0.0-beta.3 - 2023-02-21",id:"100-beta3---2023-02-21",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-6",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-7",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-8",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-5",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-3",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-7",children:[],level:4}],level:3},{value:"1.0.0-beta.2 - 2023-02-13",id:"100-beta2---2023-02-13",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-8",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-9",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-6",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-8",children:[],level:4}],level:3},{value:"1.0.0-beta.1 - 2023-02-09",id:"100-beta1---2023-02-09",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-7",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-10",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-9",children:[],level:4}],level:3},{value:"1.0.0-alpha.15 - 2023-02-08",id:"100-alpha15---2023-02-08",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-8",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-9",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-11",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-10",children:[],level:4}],level:3},{value:"1.0.0-alpha.14 - 2023-01-30",id:"100-alpha14---2023-01-30",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-12",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-11",children:[],level:4}],level:3},{value:"1.0.0-alpha.13.1 - 2023-01-30",id:"100-alpha131---2023-01-30",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-13",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-12",children:[],level:4}],level:3},{value:"1.0.0-alpha.13 - 2023-01-27",id:"100-alpha13---2023-01-27",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-9",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-10",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-14",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-13",children:[],level:4}],level:3},{value:"1.0.0-alpha.12 - 2023-01-24",id:"100-alpha12---2023-01-24",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-10",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-11",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-15",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-4",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-14",children:[],level:4}],level:3},{value:"1.0.0-alpha.11 - 2023-01-17",id:"100-alpha11---2023-01-17",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-11",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-12",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-16",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-5",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-15",children:[],level:4}],level:3},{value:"1.0.0-alpha.10 - 2023-01-13",id:"100-alpha10---2023-01-13",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-13",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-16",children:[],level:4}],level:3},{value:"1.0.0-alpha.9 - 2022-12-28",id:"100-alpha9---2022-12-28",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-17",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-17",children:[],level:4}],level:3},{value:"1.0.0-alpha.8 - 2022-12-23",id:"100-alpha8---2022-12-23",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-12",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-18",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-7",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-6",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-18",children:[],level:4}],level:3},{value:"1.0.0-alpha.7 - 2022-12-16",id:"100-alpha7---2022-12-16",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-13",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-14",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-19",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-19",children:[],level:4}],level:3},{value:"1.0.0-alpha.6 - 2022-12-07",id:"100-alpha6---2022-12-07",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-14",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-15",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-20",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-7",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-20",children:[],level:4}],level:3},{value:"1.0.0-alpha.5 - 2022-11-29",id:"100-alpha5---2022-11-29",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-15",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-16",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-21",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-8",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-8",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-21",children:[],level:4}],level:3},{value:"1.0.0-alpha.4 - 2022-11-22",id:"100-alpha4---2022-11-22",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-17",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-22",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-22",children:[],level:4}],level:3},{value:"1.0.0-alpha.3 - 2022-11-16",id:"100-alpha3---2022-11-16",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-16",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-18",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-23",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-9",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-23",children:[],level:4}],level:3},{value:"1.0.0-alpha.2 - 2022-10-28",id:"100-alpha2---2022-10-28",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-24",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-10",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-24",children:[],level:4}],level:3},{value:"1.0.0-alpha.1 - 2022-10-20",id:"100-alpha1---2022-10-20",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-25",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-11",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-9",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-25",children:[],level:4}],level:3},{value:"0.9.6 - 2022-12-16",id:"096---2022-12-16",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-26",children:[],level:4}],level:3},{value:"0.9.5 - 2022-10-20",id:"095---2022-10-20",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-19",children:[],level:4}],level:3},{value:"0.9.4 - 2022-10-19",id:"094---2022-10-19",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-20",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-26",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-27",children:[],level:4}],level:3},{value:"0.9.3 - 2022-10-04",id:"093---2022-10-04",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-21",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-27",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-10",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-28",children:[],level:4}],level:3},{value:"0.9.2 - 2022-09-27",id:"092---2022-09-27",children:[],level:3},{value:"0.9.1 - 2022-09-27",id:"091---2022-09-27",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-28",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-29",children:[],level:4}],level:3},{value:"0.9.0 - 2022-09-19",id:"090---2022-09-19",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-17",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-22",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-29",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-12",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-11",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-30",children:[],level:4}],level:3},{value:"0.8.1 - 2022-08-26",id:"081---2022-08-26",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-23",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-30",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-12",children:[],level:4}],level:3},{value:"0.8.0 - 2022-08-20",id:"080---2022-08-20",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-18",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-24",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-31",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-31",children:[],level:4}],level:3},{value:"0.7.6 - 2022-08-15",id:"076---2022-08-15",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-32",children:[],level:4}],level:3},{value:"0.7.5 - 2022-08-11",id:"075---2022-08-11",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-33",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-32",children:[],level:4}],level:3},{value:"0.7.3 - 2022-08-04",id:"073---2022-08-04",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-34",children:[],level:4}],level:3},{value:"0.7.2 - 2022-08-03",id:"072---2022-08-03",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-25",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-33",children:[],level:4}],level:3},{value:"0.7.1 - 2022-08-01",id:"071---2022-08-01",children:[],level:3},{value:"0.7.0 - 2022-08-01",id:"070---2022-08-01",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-19",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-26",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-35",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-34",children:[],level:4}],level:3},{value:"0.6.5 - 2022-07-06",id:"065---2022-07-06",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-27",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-36",children:[],level:4}],level:3},{value:"0.6.1 - 2022-07-01",id:"061---2022-07-01",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-20",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-37",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-13",children:[],level:4}],level:3},{value:"0.6.0 - 2022-07-01",id:"060---2022-07-01",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-28",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-38",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-14",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-13",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-35",children:[],level:4}],level:3},{value:"0.5.5 - 2022-06-23",id:"055---2022-06-23",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-29",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-39",children:[],level:4}],level:3},{value:"0.5.4 - 2022-06-16",id:"054---2022-06-16",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-30",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-40",children:[],level:4}],level:3},{value:"0.5.3 - 2022-06-16",id:"053---2022-06-16",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-31",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-41",children:[],level:4}],level:3},{value:"0.5.2 - 2022-06-14",id:"052---2022-06-14",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-21",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-42",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-15",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-36",children:[],level:4}],level:3},{value:"0.5.1 - 2022-06-13",id:"051---2022-06-13",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-43",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-37",children:[],level:4}],level:3},{value:"0.5.0 - 2022-06-11",id:"050---2022-06-11",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-22",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-32",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-44",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-38",children:[],level:4}],level:3},{value:"0.4.5 - 2022-06-08",id:"045---2022-06-08",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-45",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-39",children:[],level:4}],level:3},{value:"0.4.4 - 2022-06-08",id:"044---2022-06-08",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-23",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-33",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-46",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-14",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-40",children:[],level:4}],level:3},{value:"0.4.3 - 2022-06-03",id:"043---2022-06-03",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-34",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-47",children:[],level:4}],level:3},{value:"0.4.2 - 2022-06-02",id:"042---2022-06-02",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-48",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-15",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-41",children:[],level:4}],level:3},{value:"0.4.1 - 2022-06-02",id:"041---2022-06-02",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-24",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-35",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-49",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-16",children:[],level:4}],level:3},{value:"0.4.0 - 2022-06-01",id:"040---2022-06-01",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-25",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-36",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-50",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-16",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-42",children:[],level:4}],level:3},{value:"0.3.1 - 2022-05-19",id:"031---2022-05-19",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-37",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-51",children:[],level:4}],level:3},{value:"0.3.0 - 2022-05-17",id:"030---2022-05-17",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-26",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-38",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-52",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-43",children:[],level:4}],level:3},{value:"0.2.4 - 2022-05-13",id:"024---2022-05-13",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-53",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-44",children:[],level:4}],level:3},{value:"0.2.3 - 2022-04-29",id:"023---2022-04-29",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-27",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-54",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-17",children:[],level:4}],level:3},{value:"0.2.2 - 2022-04-22",id:"022---2022-04-22",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-39",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-55",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-17",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-45",children:[],level:4}],level:3},{value:"0.2.1 - 2022-04-08",id:"021---2022-04-08",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-40",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-46",children:[],level:4}],level:3},{value:"0.2.0 - 2022-04-04",id:"020---2022-04-04",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-28",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-41",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-56",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-18",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-47",children:[],level:4}],level:3},{value:"0.1.9 - 2022-03-25",id:"019---2022-03-25",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-29",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-42",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-57",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-19",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-48",children:[],level:4}],level:3},{value:"0.1.8 - 2022-03-18",id:"018---2022-03-18",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-43",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-58",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-20",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-18",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-49",children:[],level:4}],level:3},{value:"0.1.7 - 2022-03-15",id:"017---2022-03-15",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-30",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-44",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-59",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-21",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-19",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-50",children:[],level:4}],level:3},{value:"0.1.6 - 2022-03-11",id:"016---2022-03-11",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-31",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-45",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-60",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-22",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-51",children:[],level:4}],level:3},{value:"0.1.5 - 2022-03-08",id:"015---2022-03-08",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-32",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-46",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-61",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-23",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-20",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-52",children:[],level:4}],level:3},{value:"0.1.4 - 2022-03-01",id:"014---2022-03-01",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-62",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-21",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-53",children:[],level:4}],level:3},{value:"0.1.4-beta.0 - 2022-02-25",id:"014-beta0---2022-02-25",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-33",children:[],level:4}],level:3},{value:"0.1.3 - 2022-02-25",id:"013---2022-02-25",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-47",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-63",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-24",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-54",children:[],level:4}],level:3},{value:"0.1.2 - 2022-02-17",id:"012---2022-02-17",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-34",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-48",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-64",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-25",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-22",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-55",children:[],level:4}],level:3},{value:"0.1.2-beta.2 - 2022-01-03",id:"012-beta2---2022-01-03",children:[],level:3},{value:"0.1.2-beta.1 - 2021-12-22",id:"012-beta1---2021-12-22",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-56",children:[],level:4}],level:3},{value:"0.1.2-beta.0 - 2021-12-18",id:"012-beta0---2021-12-18",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-57",children:[],level:4}],level:3},{value:"0.1.1 - 2021-12-16",id:"011---2021-12-16",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-58",children:[],level:4}],level:3},{value:"0.1.1-beta.0 - 2021-12-09",id:"011-beta0---2021-12-09",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-59",children:[],level:4}],level:3},{value:"0.1.0 - 2021-11-17",id:"010---2021-11-17",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-60",children:[],level:4}],level:3},{value:"0.0.1 - 2021-11-17",id:"001---2021-11-17",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-61",children:[],level:4}],level:3}],r={toc:d},c="wrapper";function s(e){let{components:a,...t}=e;return(0,n.kt)(c,(0,i.Z)({},r,t,{components:a,mdxType:"MDXLayout"}),(0,n.kt)("h3",{id:"eea-design-system-10"},"EEA Design System (1.0)"),(0,n.kt)("h4",{id:"components-ready-to-be-used"},"Components ready to be used"),(0,n.kt)("p",null,"The following components are ready to be used as Volto ",(0,n.kt)("inlineCode",{parentName:"p"},"blocks"),", ",(0,n.kt)("inlineCode",{parentName:"p"},"slate")," integration, or via the advanced ",(0,n.kt)("inlineCode",{parentName:"p"},"block styler"),":"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Accordion ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Call to Action ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Callout - part of the Description ",(0,n.kt)("inlineCode",{parentName:"li"},"block"),", ",(0,n.kt)("inlineCode",{parentName:"li"},"slate")),(0,n.kt)("li",{parentName:"ul"},"Card - part of the Teaser ",(0,n.kt)("inlineCode",{parentName:"li"},"block")," and Listing ",(0,n.kt)("inlineCode",{parentName:"li"},"block"),", it includes several variations like round card e.g., used for Avatar"),(0,n.kt)("li",{parentName:"ul"},"Divider ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Headings ",(0,n.kt)("inlineCode",{parentName:"li"},"slate")),(0,n.kt)("li",{parentName:"ul"},"Hero ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Item ",(0,n.kt)("inlineCode",{parentName:"li"},"block")," - used for text with an icon (remixicon or custom SVG/image) on the left/right"),(0,n.kt)("li",{parentName:"ul"},"List ",(0,n.kt)("inlineCode",{parentName:"li"},"slate")," - ordered and unordered"),(0,n.kt)("li",{parentName:"ul"},"Quote ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Statistic ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Tag ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Table ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Tabs ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Timeline ",(0,n.kt)("inlineCode",{parentName:"li"},"block"))),(0,n.kt)("h4",{id:"future-releases"},"Future releases"),(0,n.kt)("p",null,"Below is a non-exhaustive list of the work-in-progress which is planned for future releases:"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Navigation Portlet (used on the left/right hand of content)"),(0,n.kt)("li",{parentName:"ul"},"Spacing/padding system. We want to add the ability for editors to consistently apply various spacing/padding on certain components in order to allow a better alignment when components are used together."),(0,n.kt)("li",{parentName:"ul"},"Improve docusaurus and storybook with more components, controls, and variations in order to better reflect what is possible in Volto.")),(0,n.kt)("p",null,"Generated by ",(0,n.kt)("a",{parentName:"p",href:"https://github.com/CookPete/auto-changelog"},(0,n.kt)("inlineCode",{parentName:"a"},"auto-changelog")),"."),(0,n.kt)("h3",{id:"unreleased---2023-04-07t194724545z"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.6...HEAD"},"Unreleased")," - 2023-04-07T19:47:24.545Z"),(0,n.kt)("h4",{id:"-new-features"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(storybook): components keyboard and screen reader optimization #324 from eea/design-system-accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/85faff73025442a012f079b6734ef868862cc44f"},(0,n.kt)("inlineCode",{parentName:"a"},"85faff7")))),(0,n.kt)("h4",{id:"-bug-fixes"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix: dont run isInternalURL twice ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a48984e0cb224944aed3846447c416511d080779"},(0,n.kt)("inlineCode",{parentName:"a"},"a48984e"))),(0,n.kt)("li",{parentName:"ul"},"fix: github autoformat ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/be9774981032759b3284a6fb93490a204a817c7a"},(0,n.kt)("inlineCode",{parentName:"a"},"be97749"))),(0,n.kt)("li",{parentName:"ul"},"fix(cards): focus outline for header needed for the overflow hidden solution with max title lines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/849a7a8e3cf801bf0a4d7e9189b603ea15219fcc"},(0,n.kt)("inlineCode",{parentName:"a"},"849a7a8"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): external url in header now takes you to the correct url #330 from eea/header-external-url-fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/086c61d683a7ac67dea221aa39ffe4cef05a9a68"},(0,n.kt)("inlineCode",{parentName:"a"},"086c61d"))),(0,n.kt)("li",{parentName:"ul"},"fix(item): flex variant on edit when inside blockchooser #333 from eea/fix-item-csss ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/65b9099779180feeb7d10384928bb0a3224b947d"},(0,n.kt)("inlineCode",{parentName:"a"},"65b9099"))),(0,n.kt)("li",{parentName:"ul"},"fix: external url in header ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9e3aea649ca6f9446324d5d351cdfcde08332f84"},(0,n.kt)("inlineCode",{parentName:"a"},"9e3aea6"))),(0,n.kt)("li",{parentName:"ul"},"fix: check if client method change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7c53b83a54e4e7d3c5329c46de03cdf7aabedf13"},(0,n.kt)("inlineCode",{parentName:"a"},"7c53b83"))),(0,n.kt)("li",{parentName:"ul"},"fix(item): use child selector instead of descendent as it interferes with blockchooser refs #157040 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ad4ca3725c595c8dbeaff69f730928313c1779ec"},(0,n.kt)("inlineCode",{parentName:"a"},"ad4ca37"))),(0,n.kt)("li",{parentName:"ul"},"fix(tag): fix in args ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/18eaaf41fa80a3e175341a2ddd7376b8281fee7d"},(0,n.kt)("inlineCode",{parentName:"a"},"18eaaf4")))),(0,n.kt)("h4",{id:"-enhancements"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): align menu items with demo site for better testing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/82a5c84cfde81dd8243f3f9a2d1fcaa8ac4b1463"},(0,n.kt)("inlineCode",{parentName:"a"},"82a5c84"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumbs): updates on structure and story for accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/770c8c0bce88c5d9301ab0293a8e4865849bfeb2"},(0,n.kt)("inlineCode",{parentName:"a"},"770c8c0"))),(0,n.kt)("li",{parentName:"ul"},"change(logo): update eionet svg ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c87fc750a3dc376205a643eefced410a41b22c6"},(0,n.kt)("inlineCode",{parentName:"a"},"3c87fc7"))),(0,n.kt)("li",{parentName:"ul"},"refactor(downloadLabeledIcon): accessibility fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/df3935dc5836298768316399ba36927325541fef"},(0,n.kt)("inlineCode",{parentName:"a"},"df3935d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(languageLabeledIcon): accessibility fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/61edd9e1022a8954930db30c262290680974d880"},(0,n.kt)("inlineCode",{parentName:"a"},"61edd9e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): Restructure Topics and Countries lists ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d816e7ab9cdf2f202ab994201c16241cfb26c33a"},(0,n.kt)("inlineCode",{parentName:"a"},"d816e7a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(newTabLabeledIcon): accessibility fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/211e40aa47d1f0de91b1d949770c452336b80248"},(0,n.kt)("inlineCode",{parentName:"a"},"211e40a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(comment): accessibility fixes and text button update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dad8cb67a0092b01b50197c94691ed8a5d00a128"},(0,n.kt)("inlineCode",{parentName:"a"},"dad8cb6"))),(0,n.kt)("li",{parentName:"ul"},"change(mega-menu): use lists for navigation, enhance voice over support for better accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d13137f024d6357514b85f184d219eb81dd585f2"},(0,n.kt)("inlineCode",{parentName:"a"},"d13137f"))),(0,n.kt)("li",{parentName:"ul"},"change(storybook): removed links for Label and Comment that we implement without a link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee0bfdf3aee3e4b6b6eba6dabd7817a37ace48ae"},(0,n.kt)("inlineCode",{parentName:"a"},"ee0bfdf"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): fix header outline not showing issue ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48fc2e2328ff184402e15edbaf1ed2507e771a14"},(0,n.kt)("inlineCode",{parentName:"a"},"48fc2e2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): firefox accessibility errors fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c7d35b92b90940b466ea016dbbb3f1c6dfa0c3ab"},(0,n.kt)("inlineCode",{parentName:"a"},"c7d35b9"))),(0,n.kt)("li",{parentName:"ul"},"change(ContextNavigation): accessibility updates, not restructuring of the volto component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/03fe83dce70c6931c543b93c71e3cd8e16f99ec8"},(0,n.kt)("inlineCode",{parentName:"a"},"03fe83d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(modal): restructure close icon as button ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f1b836e3071c220235eb327ee7ef67edac4d467d"},(0,n.kt)("inlineCode",{parentName:"a"},"f1b836e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(label): add href attribute to links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/05f664dde27f1e0580ab7f32a7934e4d8e85c918"},(0,n.kt)("inlineCode",{parentName:"a"},"05f664d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(inpageNavigation): restructure as a button ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48e22ac0ee521f87497822a0ec9d627829d849d5"},(0,n.kt)("inlineCode",{parentName:"a"},"48e22ac"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIconGroup): group updates for all labeled icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a679d9d05b804f516fdeed449eba1e74e227818c"},(0,n.kt)("inlineCode",{parentName:"a"},"a679d9d"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumbs): label modification for better screen reader output ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c967bef63ac6f622f5936235dd5590831a674d15"},(0,n.kt)("inlineCode",{parentName:"a"},"c967bef"))),(0,n.kt)("li",{parentName:"ul"},"refactor(checkbox): accessibility fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3b3047f6a6bdd9e9ad858e6a7ca0c6f6b404e605"},(0,n.kt)("inlineCode",{parentName:"a"},"3b3047f"))),(0,n.kt)("li",{parentName:"ul"},"change(card): simplified headerLineHeightOffset used as margin top for cards header ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca61105f2f39e6880ce545ba4d54f3568e7b87e2"},(0,n.kt)("inlineCode",{parentName:"a"},"ca61105"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): clean up function after test ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/883eb73cbc3db6a1fadd0200118eafdce91b7aab"},(0,n.kt)("inlineCode",{parentName:"a"},"883eb73"))),(0,n.kt)("li",{parentName:"ul"},"change(mega-menu): added code to align countries left column subtitle with the right column ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1aa33dd7ac7154a91515eef688f276d664d5d7f3"},(0,n.kt)("inlineCode",{parentName:"a"},"1aa33dd"))),(0,n.kt)("li",{parentName:"ul"},"change(mega-menu): sub-title padding tweaks for better spacing normalization ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e08668dd9fd948e57628e5582e7a4a7f08d96451"},(0,n.kt)("inlineCode",{parentName:"a"},"e08668d"))),(0,n.kt)("li",{parentName:"ul"},"change(logos): updated eionet logo used in the site footer #318 from eea/footer-logo-update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70671d03bbc228e3013e382cb51e6764a83b01a8"},(0,n.kt)("inlineCode",{parentName:"a"},"70671d0"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumbs,mega-menu): better screen readers support, see links instead of groups #309 from eea/firefox-accessibility-tab-issues ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d6b0b4adba8f04799491025fb41ac97e875bcce0"},(0,n.kt)("inlineCode",{parentName:"a"},"d6b0b4a"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumbs): fixed sizing of breadcrumbs list items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1761e984a6ffebbcca0c7b88128a01235fc6b903"},(0,n.kt)("inlineCode",{parentName:"a"},"1761e98"))),(0,n.kt)("li",{parentName:"ul"},"change(checkbox): toggle hover color correction ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4f4d0df7292fdccb89f83feface51639bd5d6559"},(0,n.kt)("inlineCode",{parentName:"a"},"4f4d0df"))),(0,n.kt)("li",{parentName:"ul"},"change(card): add links to teaser titles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cc64c74a69539af287f424abdf96226635284303"},(0,n.kt)("inlineCode",{parentName:"a"},"cc64c74"))),(0,n.kt)("li",{parentName:"ul"},"change(inpageNavigation): story improvements ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ade63c6f0b08c62318d31c54568cca29d0f106bc"},(0,n.kt)("inlineCode",{parentName:"a"},"ade63c6")))),(0,n.kt)("h4",{id:"-internal-changes"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(megaMenu): remove comments and unused properties ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fa5f8f878421d879026aacd86e5390112b8852a1"},(0,n.kt)("inlineCode",{parentName:"a"},"fa5f8f8")))),(0,n.kt)("h4",{id:"-documentation-changes"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(footer): logo update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ad982d63423442bc292cd7553ad3163b33b337bb"},(0,n.kt)("inlineCode",{parentName:"a"},"ad982d6")))),(0,n.kt)("h3",{id:"106---2023-03-29"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.5...1.0.6"},"1.0.6")," - 2023-03-29"),(0,n.kt)("h4",{id:"-new-features-1"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat: add viewport-(width/height) less functions and fixed banner image url #329 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e8e70bdc81f4f301a9dce370867a873e55563048"},(0,n.kt)("inlineCode",{parentName:"a"},"e8e70bd"))),(0,n.kt)("li",{parentName:"ul"},"feat: add viewport-(width/height) less functions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/68300a3c34e66954c7ef3a6e52baa37431fbfa9e"},(0,n.kt)("inlineCode",{parentName:"a"},"68300a3")))),(0,n.kt)("h4",{id:"-enhancements-1"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): set full class name for remix icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f435e10034b04cab4aeb301d8521559f98be299e"},(0,n.kt)("inlineCode",{parentName:"a"},"f435e10"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner.jsx): use flattenToAppURL helper function to get image source URL ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24b13d7c09a498ca889d413135c9abc4e6cab9ad"},(0,n.kt)("inlineCode",{parentName:"a"},"24b13d7")))),(0,n.kt)("h4",{id:"-internal-changes-1"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(theme): update container width and margins in eea theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e4446a3af641ddca03f1f2833dd6e79535feb98"},(0,n.kt)("inlineCode",{parentName:"a"},"3e4446a")))),(0,n.kt)("h4",{id:"\ufe0f-others"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"horizontal overflow hidden in view mode ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f395f276df003480a219bae639f87bebcf35799f"},(0,n.kt)("inlineCode",{parentName:"a"},"f395f27")))),(0,n.kt)("h3",{id:"105---2023-03-28"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.4...1.0.5"},"1.0.5")," - 2023-03-28"),(0,n.kt)("h4",{id:"-new-features-2"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat: improve full-width class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70bba7e295dd237e7c579ef0446ff05e0c8529d8"},(0,n.kt)("inlineCode",{parentName:"a"},"70bba7e")))),(0,n.kt)("h4",{id:"-bug-fixes-1"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(banner): Add missing divider for time tag #327 from eea/banner-metadata ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c46a58336ec9eb2ce75d2637f3197f417e8ca326"},(0,n.kt)("inlineCode",{parentName:"a"},"c46a583"))),(0,n.kt)("li",{parentName:"ul"},"fix(banner): Add missing divider for time tag ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d68c395d368a267baef4422df6e72f63d099b75"},(0,n.kt)("inlineCode",{parentName:"a"},"7d68c39")))),(0,n.kt)("h3",{id:"104---2023-03-27"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.3...1.0.4"},"1.0.4")," - 2023-03-27"),(0,n.kt)("h4",{id:"-new-features-3"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(copyright): Add copyright prefix - Image - refs #250724 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6a727723c15aee499ed7cedc9f364c5e2c8014bb"},(0,n.kt)("inlineCode",{parentName:"a"},"6a72772")))),(0,n.kt)("h4",{id:"-internal-changes-2"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(copyright): Cleanup useless min-height - refs #250724 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2457df6376ac1a4d00f87eee90e61f66f7ffebb"},(0,n.kt)("inlineCode",{parentName:"a"},"f2457df")))),(0,n.kt)("h4",{id:"\ufe0f-others-1"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cfd6eba8b01eceff4e28ab7ab51b2457672ac172"},(0,n.kt)("inlineCode",{parentName:"a"},"cfd6eba")))),(0,n.kt)("h3",{id:"103---2023-03-24"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.2...1.0.3"},"1.0.3")," - 2023-03-24"),(0,n.kt)("h4",{id:"-bug-fixes-2"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix: improve full-width class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93222590a630b27f3dfccb7df0a50070c9c9901c"},(0,n.kt)("inlineCode",{parentName:"a"},"9322259"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): Remove z-index from subsite logo #320 from eea/subsite-logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/50911009918faf7d3064d97ea7b685ad71970521"},(0,n.kt)("inlineCode",{parentName:"a"},"5091100"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): Remove z-index from subsite logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d433a9788d76db0f1c08ef6bb2313f479c2bb19b"},(0,n.kt)("inlineCode",{parentName:"a"},"d433a97")))),(0,n.kt)("h4",{id:"-enhancements-2"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(header): Add search popup customizations from eea-website-theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/43e5a78be8efa1098ea0fc87f43f40f2b5d482c1"},(0,n.kt)("inlineCode",{parentName:"a"},"43e5a78"))),(0,n.kt)("li",{parentName:"ul"},"change(popup): create custom popup for better accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/036aac95509b6d78b2d3b251578a7de878e28371"},(0,n.kt)("inlineCode",{parentName:"a"},"036aac9"))),(0,n.kt)("li",{parentName:"ul"},"change(popup): added most important popup properties from Semantic ui implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/61f65bc0e5806aaac33b54db36d5360fd05a48cc"},(0,n.kt)("inlineCode",{parentName:"a"},"61f65bc"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): use custom-made Popup for better accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/10d0fcfb28ca97efe9fa5c0f6c9c350b76a73140"},(0,n.kt)("inlineCode",{parentName:"a"},"10d0fcf"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): use custom-made Popup for better accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9108bee5f671505be5199e72a4749bb0af0c0cb9"},(0,n.kt)("inlineCode",{parentName:"a"},"9108bee"))),(0,n.kt)("li",{parentName:"ul"},"change(popup): added also the basic property ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4497acddde258ed31cda09f4d905e003a1e4611"},(0,n.kt)("inlineCode",{parentName:"a"},"a4497ac"))),(0,n.kt)("li",{parentName:"ul"},"change(colors): update gray-4 color value #321 from eea/update-gray-4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f458ff0965debd3629cdd78362244836d0d42687"},(0,n.kt)("inlineCode",{parentName:"a"},"f458ff0"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): MetadataField now uses proper time tag when value is datetime ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4c4d34d5905a6771a281fc3db1174b4998c8fa8"},(0,n.kt)("inlineCode",{parentName:"a"},"b4c4d34"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): updated gray-4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b890df7693880fb965e41752eda64df992a1cdc4"},(0,n.kt)("inlineCode",{parentName:"a"},"b890df7"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): Fix error and empty div if no social links are present #319 from eea/footer-social ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/89222466b76a4720af73c0d516074efec0757c34"},(0,n.kt)("inlineCode",{parentName:"a"},"8922246"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): Fix error and empty div if no social links are present ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5d934a6545ae783ff41dc9e3eda389c571d1369b"},(0,n.kt)("inlineCode",{parentName:"a"},"5d934a6")))),(0,n.kt)("h4",{id:"\ufe0f-others-2"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"lint ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca41def7a3743a8328f26cec868bd20395b62446"},(0,n.kt)("inlineCode",{parentName:"a"},"ca41def"))),(0,n.kt)("li",{parentName:"ul"},"refactor ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9789201c7966cd711bfa85fe448f6f6df2583eaf"},(0,n.kt)("inlineCode",{parentName:"a"},"9789201"))),(0,n.kt)("li",{parentName:"ul"},"lint ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/646dfaa729b51367ce7545ea928837a481a5485a"},(0,n.kt)("inlineCode",{parentName:"a"},"646dfaa"))),(0,n.kt)("li",{parentName:"ul"},"(feat):Page Header Banner accessibility #316 from eea/accesibility-banner ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e587f4657de137273053480a3536a066ab032a29"},(0,n.kt)("inlineCode",{parentName:"a"},"e587f46"))),(0,n.kt)("li",{parentName:"ul"},"storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c8c77de372060328d535b190f30747797db0d23a"},(0,n.kt)("inlineCode",{parentName:"a"},"c8c77de"))),(0,n.kt)("li",{parentName:"ul"},"banner accesibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5e2f23bae30b5bb14d3f607e0cfeb85d0cfe4a9f"},(0,n.kt)("inlineCode",{parentName:"a"},"5e2f23b"))),(0,n.kt)("li",{parentName:"ul"},"prettier ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6ed78e50ee68accca10b06b0790c231ddeb1a1fa"},(0,n.kt)("inlineCode",{parentName:"a"},"6ed78e5"))),(0,n.kt)("li",{parentName:"ul"},"cleaning ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4391aa6c6611d1a15f5977eb150416909ad83bc1"},(0,n.kt)("inlineCode",{parentName:"a"},"4391aa6"))),(0,n.kt)("li",{parentName:"ul"},"lint 3 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2e0bed19a24d8abfa230212cd8c09f8313dc00f2"},(0,n.kt)("inlineCode",{parentName:"a"},"2e0bed1"))),(0,n.kt)("li",{parentName:"ul"},"lint 1 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4c958034870a9861c542359144e3c56f9157994"},(0,n.kt)("inlineCode",{parentName:"a"},"b4c9580")))),(0,n.kt)("h3",{id:"102---2023-03-14"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.1...1.0.2"},"1.0.2")," - 2023-03-14"),(0,n.kt)("h4",{id:"-bug-fixes-3"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(megamenu): topic menu title is now placed before content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6004bcb2683dedf6d6e18e61f33fde84a54c38d5"},(0,n.kt)("inlineCode",{parentName:"a"},"6004bcb"))),(0,n.kt)("li",{parentName:"ul"},"fix(megamenu): removed in depth nav_title renaming that set title wrongly to a-z topics ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/899ca0e2ba5f8f9eb61e4280d786f74a17c186b7"},(0,n.kt)("inlineCode",{parentName:"a"},"899ca0e")))),(0,n.kt)("h4",{id:"-enhancements-3"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(megamenu): removed special styling from at a glance mega menu section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fd0c4c8a06bb4c4aa26f57c453132d13d30bc691"},(0,n.kt)("inlineCode",{parentName:"a"},"fd0c4c8"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): renamed thematic information platforms to environmental information systems ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e7004a7ea39451dbf97e1faed222b0cc5a12d6ce"},(0,n.kt)("inlineCode",{parentName:"a"},"e7004a7"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): updated static image of footer sections ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ff3185edf9257c790d2a124d3f937f61d84e147"},(0,n.kt)("inlineCode",{parentName:"a"},"4ff3185")))),(0,n.kt)("h4",{id:"-documentation-changes-1"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(What's new): Update 'What's new' ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d7ed9d619aa60d087c3821a972ebe5bf5766521a"},(0,n.kt)("inlineCode",{parentName:"a"},"d7ed9d6")))),(0,n.kt)("h4",{id:"\ufe0f-others-3"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fixed accordion selector typo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f4cabc8f2222cf587af9e04b0ea196799b84202f"},(0,n.kt)("inlineCode",{parentName:"a"},"f4cabc8")))),(0,n.kt)("h3",{id:"101---2023-03-13"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0...1.0.1"},"1.0.1")," - 2023-03-13"),(0,n.kt)("h3",{id:"100---2023-03-13"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-beta.6...1.0.0"},"1.0.0")," - 2023-03-13"),(0,n.kt)("h4",{id:"-bug-fixes-4"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(Footer): Open internal links within the same page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5b3e409c71281800bb0fd137a1bac256efaca2b5"},(0,n.kt)("inlineCode",{parentName:"a"},"5b3e409")))),(0,n.kt)("h4",{id:"-enhancements-4"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(banner): use huge scale instead of full image for better performance ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/381c58e3521436f562d9e1727428a18435e2c0f3"},(0,n.kt)("inlineCode",{parentName:"a"},"381c58e")))),(0,n.kt)("h3",{id:"100-beta6---2023-03-10"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-beta.5...1.0.0-beta.6"},"1.0.0-beta.6")," - 2023-03-10"),(0,n.kt)("h4",{id:"-new-features-4"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(site): serve Roboto fonts from eea design system package instead of google fonts #311 from eea/roboto-library ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6a1b3e3864a0bc8602e9c434ff70746bba59f44"},(0,n.kt)("inlineCode",{parentName:"a"},"f6a1b3e")))),(0,n.kt)("h4",{id:"-bug-fixes-5"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix: full-width is now properly sized ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e2e3482d658febbd692112608df14279bed05e7"},(0,n.kt)("inlineCode",{parentName:"a"},"6e2e348"))),(0,n.kt)("li",{parentName:"ul"},"fix(storybook): add fontDisplay ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/078966a6a5c7277d36fcd31bb4c0704bcc43e523"},(0,n.kt)("inlineCode",{parentName:"a"},"078966a")))),(0,n.kt)("h4",{id:"-enhancements-5"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(image): copyright position fixes, moved image floating to image-block-container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53422e0ea345a7cb6e8cb07bf9006b48d86ded58"},(0,n.kt)("inlineCode",{parentName:"a"},"53422e0"))),(0,n.kt)("li",{parentName:"ul"},"change(colors:) update the design system colour palette #312 from eea/update-color-palette ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a5fb69465717dbdc0fe8091640a0e46f66199b65"},(0,n.kt)("inlineCode",{parentName:"a"},"a5fb694"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): added roboto library ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19de7b19fe795870102000bfebbf452d88b3a7b1"},(0,n.kt)("inlineCode",{parentName:"a"},"19de7b1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): added roboto library ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e9916215728dda0ff423f8196e7442588058042e"},(0,n.kt)("inlineCode",{parentName:"a"},"e991621"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): update colours ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3a2c1e1da8f0224e08f9f8afac3f0a74f7ce91d3"},(0,n.kt)("inlineCode",{parentName:"a"},"3a2c1e1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): restored site variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a48478bae9bdf1d9275be999e1ec8382f10a2fec"},(0,n.kt)("inlineCode",{parentName:"a"},"a48478b"))),(0,n.kt)("li",{parentName:"ul"},"change(copyright): implemented copyright hover design ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6b1244163de7ff58d1529fdd791502c862ee48ec"},(0,n.kt)("inlineCode",{parentName:"a"},"6b12441")))),(0,n.kt)("h4",{id:"-internal-changes-3"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(storybook): switched google fonts to true ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a8cae46582356cc24ec3cd7ec47e692bc67a6a5"},(0,n.kt)("inlineCode",{parentName:"a"},"4a8cae4"))),(0,n.kt)("li",{parentName:"ul"},"chore(colours): changed back yellow 6 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87c9bbc0ec9a2a0f4bf8eeb03525d43ce6f502be"},(0,n.kt)("inlineCode",{parentName:"a"},"87c9bbc"))),(0,n.kt)("li",{parentName:"ul"},"chore(lint): lint ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9b0f1256a8b0a583ac7724a8d88259c615d7e0c7"},(0,n.kt)("inlineCode",{parentName:"a"},"9b0f125"))),(0,n.kt)("li",{parentName:"ul"},"chore(storybook): lint ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/29bc809ab2e9fa4207b8b067785e6b17e91db3b4"},(0,n.kt)("inlineCode",{parentName:"a"},"29bc809")))),(0,n.kt)("h4",{id:"-documentation-changes-2"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(colours): colours update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/161007e2480aa79517c4ca772364a12a0756f1af"},(0,n.kt)("inlineCode",{parentName:"a"},"161007e"))),(0,n.kt)("li",{parentName:"ul"},"docs(colours): accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee342aa6af3863d243222eaa89709be2ba61f988"},(0,n.kt)("inlineCode",{parentName:"a"},"ee342aa")))),(0,n.kt)("h4",{id:"\ufe0f-others-4"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"test(cypress): Use latest stable Volto for testing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/20516617ae045f48c37a7ac7ad05c3d1090339b3"},(0,n.kt)("inlineCode",{parentName:"a"},"2051661"))),(0,n.kt)("li",{parentName:"ul"},"Update What's new section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/caa4b5d93affa7b63a332eaed9e73ea161a508cf"},(0,n.kt)("inlineCode",{parentName:"a"},"caa4b5d"))),(0,n.kt)("li",{parentName:"ul"},"Prepare final release 1.0.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef4383d05b295cbbb377f877522b9f83cd0873ef"},(0,n.kt)("inlineCode",{parentName:"a"},"ef4383d"))),(0,n.kt)("li",{parentName:"ul"},"lint fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/599f5098904f607bd694dd5d2e642c8820f11b3c"},(0,n.kt)("inlineCode",{parentName:"a"},"599f509"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/80cd3df3534e46e52ba246256c3d990a52753bbd"},(0,n.kt)("inlineCode",{parentName:"a"},"80cd3df")))),(0,n.kt)("h3",{id:"100-beta5---2023-03-07"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-beta.4...1.0.0-beta.5"},"1.0.0-beta.5")," - 2023-03-07"),(0,n.kt)("h4",{id:"-enhancements-6"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(carousel): tweak size of carousel dots for better touch interaction ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e1fb8230806de2e157a9a5ea87e63765769565b4"},(0,n.kt)("inlineCode",{parentName:"a"},"e1fb823"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): removed min width and height from links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac33219fb77f23bb5148355551a7aad9f453d2e7"},(0,n.kt)("inlineCode",{parentName:"a"},"ac33219")))),(0,n.kt)("h4",{id:"-internal-changes-4"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(hiddenStructure): Add hiddenStructure utility to be used with h1 heading on frontpage - refs #158717 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/672cca2401003f56e5ea104f18103ea090e38fd7"},(0,n.kt)("inlineCode",{parentName:"a"},"672cca2")))),(0,n.kt)("h4",{id:"\ufe0f-others-5"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fixed less build failure due to changes in footer.less ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/190bc8cfa88191b45808f1e27c6e2737ee3d15b1"},(0,n.kt)("inlineCode",{parentName:"a"},"190bc8c"))),(0,n.kt)("li",{parentName:"ul"},"lazyload bg img on footer also ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ae07162ba1b27bff58fed70eaabc28c78c5f45a3"},(0,n.kt)("inlineCode",{parentName:"a"},"ae07162"))),(0,n.kt)("li",{parentName:"ul"},"lazyload footer images ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a0633c9ec4ccfb63a48eb4e4c4a63c90daac1a37"},(0,n.kt)("inlineCode",{parentName:"a"},"a0633c9"))),(0,n.kt)("li",{parentName:"ul"},"Increase performance - mobile friendly ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/07d86c8e77568f91d50b3a45248de9427140a295"},(0,n.kt)("inlineCode",{parentName:"a"},"07d86c8"))),(0,n.kt)("li",{parentName:"ul"},"better useOnScreen hook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c214b6b76443f81c795ce2f3aa457562ec088b30"},(0,n.kt)("inlineCode",{parentName:"a"},"c214b6b"))),(0,n.kt)("li",{parentName:"ul"},"role change for accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5e758e0a7fa8c56ba688d0a43de5890686f14ea3"},(0,n.kt)("inlineCode",{parentName:"a"},"5e758e0"))),(0,n.kt)("li",{parentName:"ul"},"minimum tap dimension for mobile ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a25e9a8ba8a8a0f24d287ed7513e549ae2caab0f"},(0,n.kt)("inlineCode",{parentName:"a"},"a25e9a8"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-beta.5 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e4417e121477511c350ae3fbe4e70aadb445ed86"},(0,n.kt)("inlineCode",{parentName:"a"},"e4417e1"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using eea-website-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b227cf8a8c44b9d91e9fda8a7999fb0a42bacdca"},(0,n.kt)("inlineCode",{parentName:"a"},"b227cf8"))),(0,n.kt)("li",{parentName:"ul"},"feature(mobile): increased performance by lazy loading footer images #303 from eea/increase_performance ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/80d1df1c459680331d486f9e8e6a95c9db0adbf6"},(0,n.kt)("inlineCode",{parentName:"a"},"80d1df1"))),(0,n.kt)("li",{parentName:"ul"},"useOnScreen default export ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e6cfdd4dcb814aad328f97be7af41af071ccba6"},(0,n.kt)("inlineCode",{parentName:"a"},"3e6cfdd"))),(0,n.kt)("li",{parentName:"ul"},"use aria-labels on dropdown ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/27e144315416ceace0f01def03b5b24640f5c7da"},(0,n.kt)("inlineCode",{parentName:"a"},"27e1443"))),(0,n.kt)("li",{parentName:"ul"},"prettier ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7f838470c1bcc4e2be115d514d92a1b686a5e9b"},(0,n.kt)("inlineCode",{parentName:"a"},"a7f8384")))),(0,n.kt)("h3",{id:"100-beta4---2023-03-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-beta.3...1.0.0-beta.4"},"1.0.0-beta.4")," - 2023-03-01"),(0,n.kt)("h4",{id:"-new-features-5"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(footer): Add footer description ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ad0f714556c5b8c2fd95a2caea5c3a1e82c75d1"},(0,n.kt)("inlineCode",{parentName:"a"},"2ad0f71"))),(0,n.kt)("li",{parentName:"ul"},"feat(footer): Add footer description #306 from eea/footer-description ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bf655d133dd75b217c34b3d4303ad450a59f2c51"},(0,n.kt)("inlineCode",{parentName:"a"},"bf655d1")))),(0,n.kt)("h4",{id:"-bug-fixes-6"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(footer): Don't show empty row if description is not present ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ca7f7d3247668ae8583b8cd629856aac82eb07d"},(0,n.kt)("inlineCode",{parentName:"a"},"2ca7f7d"))),(0,n.kt)("li",{parentName:"ul"},"fix(footer): Add class for children ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c50d15cd6ed46d78ef10d48fd851ed7c4b5ddea"},(0,n.kt)("inlineCode",{parentName:"a"},"3c50d15"))),(0,n.kt)("li",{parentName:"ul"},"fix(search): Fix search links color #307 from eea/search-accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a76f48bab3a7d3f6b748eaa85b33266401372e40"},(0,n.kt)("inlineCode",{parentName:"a"},"a76f48b"))),(0,n.kt)("li",{parentName:"ul"},"fix(search): Fix search links color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/69c42effc5bdc3d31f18de74d77a3b7cc0018dc5"},(0,n.kt)("inlineCode",{parentName:"a"},"69c42ef")))),(0,n.kt)("h4",{id:"-enhancements-7"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(carousel): tweak card width and padding for better arrow alignment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e184f70062d622e1ec53e8e1e2b012c080e62d77"},(0,n.kt)("inlineCode",{parentName:"a"},"e184f70"))),(0,n.kt)("li",{parentName:"ul"},"change(storybook): include footer description in storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e904aa0850e101d736e8d045e822d9a58b75ff6a"},(0,n.kt)("inlineCode",{parentName:"a"},"e904aa0")))),(0,n.kt)("h4",{id:"\ufe0f-others-6"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-beta.4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8c335c56c5a2a76ea87f9da318055770f904e649"},(0,n.kt)("inlineCode",{parentName:"a"},"8c335c5"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/38b03333066416915b056f8ac45da4de87ed7184"},(0,n.kt)("inlineCode",{parentName:"a"},"38b0333")))),(0,n.kt)("h3",{id:"100-beta3---2023-02-21"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-beta.2...1.0.0-beta.3"},"1.0.0-beta.3")," - 2023-02-21"),(0,n.kt)("h4",{id:"-new-features-6"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(accordion): storybook accessibility by using buttons for titles #297 from eea/accessibility-accordion ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/809d52b203ef40fab735006b3b8358d68682f7cf"},(0,n.kt)("inlineCode",{parentName:"a"},"809d52b")))),(0,n.kt)("h4",{id:"-bug-fixes-7"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(dropdown): remove close on blur so that we can navigate links using keyboard ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5442715e022b3eb2eeb709ff597f815947ac45bd"},(0,n.kt)("inlineCode",{parentName:"a"},"5442715")))),(0,n.kt)("h4",{id:"-enhancements-8"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(language): dropdown to use links for proper keyboard navigation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6a7de30d9d229443d6d2070d9649129e6d35badf"},(0,n.kt)("inlineCode",{parentName:"a"},"6a7de30"))),(0,n.kt)("li",{parentName:"ul"},"refactor(images): cleared unused/renamed images assets ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/821f5c1da5c1e2350818cd9b8b82bc0b1893370d"},(0,n.kt)("inlineCode",{parentName:"a"},"821f5c1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Accessibility): add box-shadow on focus-visible components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b1adcc315a89c7d3431e542e8d1b6ec479a346e2"},(0,n.kt)("inlineCode",{parentName:"a"},"b1adcc3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(images): remove unused docusaurus svgs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5ef14cdb1923d803feb673559d41b3064211653"},(0,n.kt)("inlineCode",{parentName:"a"},"c5ef14c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add escape key functionality, actions from div to button to have proper focus state ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8081aa4e3b77f8a3dc89aa358408d75e3dca5579"},(0,n.kt)("inlineCode",{parentName:"a"},"8081aa4"))),(0,n.kt)("li",{parentName:"ul"},"change(language): restore dropdown duplication in order to properly show and hide language dropdown ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb28888ff19bd9894b58403e674f69de42ad8d09"},(0,n.kt)("inlineCode",{parentName:"a"},"cb28888"))),(0,n.kt)("li",{parentName:"ul"},"change(search): to reflect changes from eea-website-theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2cc35e0da6e6eac1473724293fcf6cd6b0a914b5"},(0,n.kt)("inlineCode",{parentName:"a"},"2cc35e0"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update p with h3 heading tag for header ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca1477b554f56423d40a33d8ee788c3f3bd3e341"},(0,n.kt)("inlineCode",{parentName:"a"},"ca1477b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer images): removed unused/renamed ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/186de6b23906e05ec700c3db5180a4d7f7e5ed68"},(0,n.kt)("inlineCode",{parentName:"a"},"186de6b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Accordion): div titles to buttons, test in mobile mega menu accordions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/eaad4b479e37ebf5ac004cfc5759e0be603000a7"},(0,n.kt)("inlineCode",{parentName:"a"},"eaad4b4"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): cleanup decorative images ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fedc4d4dc156f9c1394fcedcebece4fb87dc70b6"},(0,n.kt)("inlineCode",{parentName:"a"},"fedc4d4"))),(0,n.kt)("li",{parentName:"ul"},"change(accessibility): style outline instead of box-shadow ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53209f3b28c9a1dd54a8a86ab418b8bc2a8e01b3"},(0,n.kt)("inlineCode",{parentName:"a"},"53209f3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Footer): update mobile header size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/01ab7f0d9abe688b3d96aaec018838e1abefec73"},(0,n.kt)("inlineCode",{parentName:"a"},"01ab7f0"))),(0,n.kt)("li",{parentName:"ul"},"change(header): set the logo class directly on the link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f8fba508f925d9e6b86720fcb2c7dcfffee4ab5e"},(0,n.kt)("inlineCode",{parentName:"a"},"f8fba50"))),(0,n.kt)("li",{parentName:"ul"},"refactor(images): clear docusaurus unused pngs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/db5c61124182e3030f753f6baa294fbdecaa3798"},(0,n.kt)("inlineCode",{parentName:"a"},"db5c611"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header-images): removed unused ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8250d94421d9d1ee13144e71bc0938af2b7309f5"},(0,n.kt)("inlineCode",{parentName:"a"},"8250d94"))),(0,n.kt)("li",{parentName:"ul"},"change(language): hide language dropdown by default ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cc6064f72dcb4dbf96e9b05205cc796775d75205"},(0,n.kt)("inlineCode",{parentName:"a"},"cc6064f"))),(0,n.kt)("li",{parentName:"ul"},"change(header): top dropdown menu keyboard navigation #293 from eea/accessibility-megamenu-searchbox ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1e6fa658e52b9d5e6cc38f065b5707b592005241"},(0,n.kt)("inlineCode",{parentName:"a"},"1e6fa65"))),(0,n.kt)("li",{parentName:"ul"},"change(button): set focus styling for buttons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/33ebfcacb014fca365ae58079bfa5429d9007e54"},(0,n.kt)("inlineCode",{parentName:"a"},"33ebfca"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): Avoid devtools warning in FooterActions #304 from eea/avoid_warning ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d774824c5d3d0998b3440ac83152428cfa821087"},(0,n.kt)("inlineCode",{parentName:"a"},"d774824"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): Accessibility update p with h3 heading tag for theme sites title #302 from eea/footer-accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5bf70de97aee216a0b88f5843a290c6bcb5da6f2"},(0,n.kt)("inlineCode",{parentName:"a"},"5bf70de"))),(0,n.kt)("li",{parentName:"ul"},"change(documentation): Rename all image files to follow the agreed convention #301 from eea/refactor-image-filenames ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cfe44ef79943af9b9179df1b8ec5f8c743e8bb39"},(0,n.kt)("inlineCode",{parentName:"a"},"cfe44ef")))),(0,n.kt)("h4",{id:"-internal-changes-5"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(header): react syntax fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3add1271c785a92bea0ef925d7bc562cef1e0d92"},(0,n.kt)("inlineCode",{parentName:"a"},"3add127"))),(0,n.kt)("li",{parentName:"ul"},"chore(docusaurus): ignore website/.yarn ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0b33ffd1dda61b126e3cc5ff48888124d6aee41b"},(0,n.kt)("inlineCode",{parentName:"a"},"0b33ffd")))),(0,n.kt)("h4",{id:"-documentation-changes-3"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(guidelines): add image name convention ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/290747c8df6919199577bc7fce6a0e337cb57853"},(0,n.kt)("inlineCode",{parentName:"a"},"290747c")))),(0,n.kt)("h4",{id:"\ufe0f-others-7"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Avoid warning in FooterActions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0fe73d70e44e32be73049f3b5cf826de42115942"},(0,n.kt)("inlineCode",{parentName:"a"},"0fe73d7"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-beta.3 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/386c9032d39317b0bb95191bd59e3b7a99bded69"},(0,n.kt)("inlineCode",{parentName:"a"},"386c903")))),(0,n.kt)("h3",{id:"100-beta2---2023-02-13"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-beta.1...1.0.0-beta.2"},"1.0.0-beta.2")," - 2023-02-13"),(0,n.kt)("h4",{id:"-bug-fixes-8"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(footer): action and copyright #300 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/579f3e436e9608b38a2407a16c070345462bfccc"},(0,n.kt)("inlineCode",{parentName:"a"},"579f3e4"))),(0,n.kt)("li",{parentName:"ul"},"fix(footer): action or copyright links are simple a tags for external link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9af5070187ec975e58387f133afedcf1bbc47a50"},(0,n.kt)("inlineCode",{parentName:"a"},"9af5070"))),(0,n.kt)("li",{parentName:"ul"},"fix(accessibility): added navigation and footer id's for skip link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48354b908e7d1a87b4e1a965d225e8f1b3e0ac59"},(0,n.kt)("inlineCode",{parentName:"a"},"48354b9")))),(0,n.kt)("h4",{id:"-enhancements-9"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(footer): typos and modified footer links to be center aligned ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac23f046bcac06525985dff7520bb2766dec44ec"},(0,n.kt)("inlineCode",{parentName:"a"},"ac23f04"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): added gap for actions and copyright ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d32ddd3c28a48c6c2fb73dea373bb5873b6f76b"},(0,n.kt)("inlineCode",{parentName:"a"},"7d32ddd"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): modified footer gap ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8a820ac90c7d6664e4d4655c2c06edfa976c64e"},(0,n.kt)("inlineCode",{parentName:"a"},"b8a820a"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): removed extra text and date from copyright section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af47bbec298678fece6f879fbc18fe2e01ab0894"},(0,n.kt)("inlineCode",{parentName:"a"},"af47bbe"))),(0,n.kt)("li",{parentName:"ul"},"change(navigation): raise z-index of go to top link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/485ca7291da7a156b6b580c42e46d4f3602211bb"},(0,n.kt)("inlineCode",{parentName:"a"},"485ca72")))),(0,n.kt)("h4",{id:"-internal-changes-6"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(docs): Update eea.hbs template to beta - refs #158717 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/196538ed7bb9dab36a0efb4cef84e96dd3038ff8"},(0,n.kt)("inlineCode",{parentName:"a"},"196538e")))),(0,n.kt)("h4",{id:"\ufe0f-others-8"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change version to beta 2 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cbb07981454b28de840561eca281888e8bc29f9e"},(0,n.kt)("inlineCode",{parentName:"a"},"cbb0798"))),(0,n.kt)("li",{parentName:"ul"},"Beta release ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ad51b3c2bbb75f19af14fa56afdbddf57b6c95e"},(0,n.kt)("inlineCode",{parentName:"a"},"4ad51b3")))),(0,n.kt)("h3",{id:"100-beta1---2023-02-09"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.15...1.0.0-beta.1"},"1.0.0-beta.1")," - 2023-02-09"),(0,n.kt)("h4",{id:"-new-features-7"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(search): Add search suggestions style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6b2b77bbaba11541606ae2bc1f4e8ffc823f470d"},(0,n.kt)("inlineCode",{parentName:"a"},"6b2b77b"))),(0,n.kt)("li",{parentName:"ul"},"feat(search): Add search suggestions style #296 from eea/search-suggestions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3b0c956f569ebdc8400b88249c45067a1f881264"},(0,n.kt)("inlineCode",{parentName:"a"},"3b0c956")))),(0,n.kt)("h4",{id:"-enhancements-10"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(search): Add proper margin for search popup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/190c9f5be570215586086f42aebc7e36d6a26ea2"},(0,n.kt)("inlineCode",{parentName:"a"},"190c9f5")))),(0,n.kt)("h4",{id:"\ufe0f-others-9"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Extra bottom padding for header menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4f38c7a96d93fbcd47de4ec60176de2a667c5643"},(0,n.kt)("inlineCode",{parentName:"a"},"4f38c7a"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-beta.1 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4384ae28597c725f66ab0f1361ffd5167ee5e3a1"},(0,n.kt)("inlineCode",{parentName:"a"},"4384ae2"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c2ee90c1754f17a304897839adf482bc2a111212"},(0,n.kt)("inlineCode",{parentName:"a"},"c2ee90c")))),(0,n.kt)("h3",{id:"100-alpha15---2023-02-08"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.14...1.0.0-alpha.15"},"1.0.0-alpha.15")," - 2023-02-08"),(0,n.kt)("h4",{id:"-new-features-8"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(Card): add teaser card grid story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53cac0b0d1c40ad6ad8c9dc91c5d24bfb160f98e"},(0,n.kt)("inlineCode",{parentName:"a"},"53cac0b"))),(0,n.kt)("li",{parentName:"ul"},"feat(utilities): Complete list of text-align utilities - refs #160747 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/224fab602184b8974f588c91a7412e3d03e4e2f7"},(0,n.kt)("inlineCode",{parentName:"a"},"224fab6"))),(0,n.kt)("li",{parentName:"ul"},"feat(small): CSS for small HTML tag - refs #160747 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ad3c0adec4efa7cead69153d399c6452131c94cc"},(0,n.kt)("inlineCode",{parentName:"a"},"ad3c0ad"))),(0,n.kt)("li",{parentName:"ul"},"feat(fw-light): Add font weight light utility - refs #160747 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c44cf57db5845fbb9c07233aeedab79e1438f80f"},(0,n.kt)("inlineCode",{parentName:"a"},"c44cf57")))),(0,n.kt)("h4",{id:"-bug-fixes-9"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(card): teaser card dimensions on tablet size #290 from eea/teaser-card-grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/013fdf5cad347aee14bdc51553dbd95d972a7c66"},(0,n.kt)("inlineCode",{parentName:"a"},"013fdf5")))),(0,n.kt)("h4",{id:"-enhancements-11"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(card): added extra content for teaser card story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/30690ae6c499682853cb19db10b0cdc13c6f9508"},(0,n.kt)("inlineCode",{parentName:"a"},"30690ae"))),(0,n.kt)("li",{parentName:"ul"},"refactor(style-menu): add text-color to paragraphs styles #291 from eea/stylemenu-theme-colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2d783075b8089184e50b1763226af0d60ed11786"},(0,n.kt)("inlineCode",{parentName:"a"},"2d78307"))),(0,n.kt)("li",{parentName:"ul"},"change(header): Small fix in search popup #292 from eea/search-popup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/86c130539455b9a00b4b088b1871a98b9756df79"},(0,n.kt)("inlineCode",{parentName:"a"},"86c1305"))),(0,n.kt)("li",{parentName:"ul"},"refactor(style-menu): add text-color to paragraphs styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3446bc2704603bbfead7ff6c72d4e3a1ce81c7d4"},(0,n.kt)("inlineCode",{parentName:"a"},"3446bc2"))),(0,n.kt)("li",{parentName:"ul"},"change(color): darkCyan is now replaced everywhere by the new green ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef3791de6e2ea23487791c717eefc575e21fd283"},(0,n.kt)("inlineCode",{parentName:"a"},"ef3791d"))),(0,n.kt)("li",{parentName:"ul"},"change(header): Small fix in search popup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3d622ea99df5a1f1088f70998e38fd5bf43997cf"},(0,n.kt)("inlineCode",{parentName:"a"},"3d622ea")))),(0,n.kt)("h4",{id:"\ufe0f-others-10"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Release alpha 15 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3b72b29aaf9b3e1bfb7015808aafbd73a7167895"},(0,n.kt)("inlineCode",{parentName:"a"},"3b72b29")))),(0,n.kt)("h3",{id:"100-alpha14---2023-01-30"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.13.1...1.0.0-alpha.14"},"1.0.0-alpha.14")," - 2023-01-30"),(0,n.kt)("h4",{id:"-enhancements-12"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(mobile menu): integrate a-z topic with menu rendering logic #287 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/05d4c04603e6572cd6f9b255faa03c4636d8efdb"},(0,n.kt)("inlineCode",{parentName:"a"},"05d4c04"))),(0,n.kt)("li",{parentName:"ul"},"change(mobile menu): integrate a-z topic with menu rendering logic ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/246d3d839b773e2f6e1fff7fed5f9aa7a4968daa"},(0,n.kt)("inlineCode",{parentName:"a"},"246d3d8")))),(0,n.kt)("h4",{id:"\ufe0f-others-11"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"bump release to alpha 14 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/92f01975a809553ed122824c8407c74da9132c23"},(0,n.kt)("inlineCode",{parentName:"a"},"92f0197"))),(0,n.kt)("li",{parentName:"ul"},"link fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e1c12a132a1a99d773af359ebce071fb37c7e661"},(0,n.kt)("inlineCode",{parentName:"a"},"e1c12a1")))),(0,n.kt)("h3",{id:"100-alpha131---2023-01-30"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.13...1.0.0-alpha.13.1"},"1.0.0-alpha.13.1")," - 2023-01-30"),(0,n.kt)("h4",{id:"-enhancements-13"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(mobile menu): hardcode a-z topics to '/en/topics-in-depth' #286 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6436224e1922fb5d4b4053c874cebe5c57b2a6b9"},(0,n.kt)("inlineCode",{parentName:"a"},"6436224"))),(0,n.kt)("li",{parentName:"ul"},"change(mobile menu): hardcode a-z topics to '/en/topics-in-depth' ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5235b52047a80a8b626aa5ef3ef304c4d9a82003"},(0,n.kt)("inlineCode",{parentName:"a"},"5235b52")))),(0,n.kt)("h4",{id:"\ufe0f-others-12"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change release to 13.1 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70aa5648e7d9e14796445323b6ebaf7733cc7fd8"},(0,n.kt)("inlineCode",{parentName:"a"},"70aa564")))),(0,n.kt)("h3",{id:"100-alpha13---2023-01-27"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.12...1.0.0-alpha.13"},"1.0.0-alpha.13")," - 2023-01-27"),(0,n.kt)("h4",{id:"-new-features-9"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(utilities): added has--bg--top center and bottom utility classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/051e6d7c33aca7947802ddaa9fe68ac41ed7fe11"},(0,n.kt)("inlineCode",{parentName:"a"},"051e6d7")))),(0,n.kt)("h4",{id:"-bug-fixes-10"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(header): update green color used in page header #284 from eea/fix-banner-background ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/29d54db06487d18a367202725e525ac26e5b7c58"},(0,n.kt)("inlineCode",{parentName:"a"},"29d54db")))),(0,n.kt)("h4",{id:"-enhancements-14"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(site): added fixes from customVolto.css to design package ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51ba9b5df0186bdf075d803dea6032bac52e540f"},(0,n.kt)("inlineCode",{parentName:"a"},"51ba9b5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner): update banner background green color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fd4a552d9ff7a2973ebd6d18b6fbfd9bba5d98c6"},(0,n.kt)("inlineCode",{parentName:"a"},"fd4a552"))),(0,n.kt)("li",{parentName:"ul"},"change(mobile menu): changed link for a-z topics to point to in depth ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/721bf237d23d2a8e47fc2132912646c4ce182c9d"},(0,n.kt)("inlineCode",{parentName:"a"},"721bf23")))),(0,n.kt)("h4",{id:"\ufe0f-others-13"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"1.0.0-alpha.13 release #285 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c96694005e2d4160876f6a900db13940d42266d5"},(0,n.kt)("inlineCode",{parentName:"a"},"c966940"))),(0,n.kt)("li",{parentName:"ul"},"bump next version to alpha 13 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/897e9069062282f1b5cd8d86a02b8e54c40a4690"},(0,n.kt)("inlineCode",{parentName:"a"},"897e906"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5780dc7abeb24da5e77b043a34593ff7a44f350d"},(0,n.kt)("inlineCode",{parentName:"a"},"5780dc7")))),(0,n.kt)("h3",{id:"100-alpha12---2023-01-24"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.11...1.0.0-alpha.12"},"1.0.0-alpha.12")," - 2023-01-24"),(0,n.kt)("h4",{id:"-new-features-10"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(card, colors): visited color change and title on image option for cards #283 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e638ee6b77885fd5989179aa9e6532e46e475247"},(0,n.kt)("inlineCode",{parentName:"a"},"e638ee6")))),(0,n.kt)("h4",{id:"-bug-fixes-11"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(mobile menu): sub links when an accordion section is active ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bb3be81416340ad0e3e992cd4e75642fc50f8ad3"},(0,n.kt)("inlineCode",{parentName:"a"},"bb3be81")))),(0,n.kt)("h4",{id:"-enhancements-15"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(Card): create card template for stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2fa77f3f93935dd01cd5e3d77437fe8dc03721da"},(0,n.kt)("inlineCode",{parentName:"a"},"2fa77f3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Card): add image with title css ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e6e63e2362a27b0bbf4b8dd968f11a0dc87da2a"},(0,n.kt)("inlineCode",{parentName:"a"},"6e6e63e"))),(0,n.kt)("li",{parentName:"ul"},"change(card): implement title on image within image section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff6cc600978355e04dde704d014d2cbe27df1298"},(0,n.kt)("inlineCode",{parentName:"a"},"ff6cc60"))),(0,n.kt)("li",{parentName:"ul"},"change(card): added image card section, tweaked mobile heading size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0f879e15d22ae066f020d8188ef3e355c27d016c"},(0,n.kt)("inlineCode",{parentName:"a"},"0f879e1"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): moved image gradient overlay to a mixin.less file ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8b4928a87bfe5fae6f64c93d7c8f1f7a3045816c"},(0,n.kt)("inlineCode",{parentName:"a"},"8b4928a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): Update titles value and size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c35ad5c76caa00556f8a501d2e7d516464790dc4"},(0,n.kt)("inlineCode",{parentName:"a"},"c35ad5c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): applied image naming convention ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee7bc290084e198f9f94e40fbf44c6d9cb19d1ba"},(0,n.kt)("inlineCode",{parentName:"a"},"ee7bc29"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): added image for all storybook card examples ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3f194130bb6fb7b9ab04a7e1305f26fa135c23d2"},(0,n.kt)("inlineCode",{parentName:"a"},"3f19413"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): restored label value of metadata field when type isn't date ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/571a4f27fe73d0465b6482f70dd70b2dc47dffe8"},(0,n.kt)("inlineCode",{parentName:"a"},"571a4f2"))),(0,n.kt)("li",{parentName:"ul"},"change(card): title padding value for a more balance look ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/74b65563d973eb9c6afc534935e253f2705fe9ee"},(0,n.kt)("inlineCode",{parentName:"a"},"74b6556"))),(0,n.kt)("li",{parentName:"ul"},"change(card): removed uppercase transform from title on image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2948ae16f748911929910ac53d1e0acf96952317"},(0,n.kt)("inlineCode",{parentName:"a"},"2948ae1"))),(0,n.kt)("li",{parentName:"ul"},"change(colors, Docusaurus): Visited link colour change and thematic logo replacement #278 from eea/refactor-visited-link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f82d9781cc3b34443f181565c2ec1892d534f8e2"},(0,n.kt)("inlineCode",{parentName:"a"},"f82d978"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): visited link variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b209b2f7703641926c6d4b1f7162eef39b2a1ad8"},(0,n.kt)("inlineCode",{parentName:"a"},"b209b2f")))),(0,n.kt)("h4",{id:"-documentation-changes-4"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(colors): visited link update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ece77fec130de1d9d8014d40e7da975bf57061ee"},(0,n.kt)("inlineCode",{parentName:"a"},"ece77fe")))),(0,n.kt)("h4",{id:"\ufe0f-others-14"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix typos in footer gradient variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/40066405d97af838e986370101371a8162029e02"},(0,n.kt)("inlineCode",{parentName:"a"},"4006640"))),(0,n.kt)("li",{parentName:"ul"},"change version to alpha 12 instead of 1 final ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32250253f5d7fe9f01126136ad86b8a4f2f5c700"},(0,n.kt)("inlineCode",{parentName:"a"},"3225025"))),(0,n.kt)("li",{parentName:"ul"},"feature(card): new card variation with title on top of image #267 from eea/title-on-image-card ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2c0ca95700bb162bc1273c83f2fc4f591de8dcf0"},(0,n.kt)("inlineCode",{parentName:"a"},"2c0ca95"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/477d997513ef5152ab98e080ad07f927b5869705"},(0,n.kt)("inlineCode",{parentName:"a"},"477d997")))),(0,n.kt)("h3",{id:"100-alpha11---2023-01-17"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.10...1.0.0-alpha.11"},"1.0.0-alpha.11")," - 2023-01-17"),(0,n.kt)("h4",{id:"-new-features-11"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(docusaurus): Header and footer elements section #277 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0df271c4c79bd8a24750cfe44d69f32cb04a1b63"},(0,n.kt)("inlineCode",{parentName:"a"},"0df271c")))),(0,n.kt)("h4",{id:"-bug-fixes-12"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(banner): storybook date input and simplified gradient opacity ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7674d767bb770342828d6bea6953ce45b823943f"},(0,n.kt)("inlineCode",{parentName:"a"},"7674d76"))),(0,n.kt)("li",{parentName:"ul"},"fix(banner): re-added title class on banner title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d157994934c3da9af4e3dd37844f910bddf8377"},(0,n.kt)("inlineCode",{parentName:"a"},"6d15799")))),(0,n.kt)("h4",{id:"-enhancements-16"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(banner): sync storybook and Volto component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c9087cc8edc3fb27e0b96b509354861ec306f22a"},(0,n.kt)("inlineCode",{parentName:"a"},"c9087cc"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): removed margin from title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/17e592c4f3fd16a78069af50574e2ac608166a0f"},(0,n.kt)("inlineCode",{parentName:"a"},"17e592c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): sync storybook and Volto component #275 from eea/sync-page-banner-theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4331fb4a6d5744e7d7d6a001bca91265a22587fd"},(0,n.kt)("inlineCode",{parentName:"a"},"4331fb4")))),(0,n.kt)("h4",{id:"-documentation-changes-5"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(footer): updates on header elements ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b41c550475dc5a2eefcad5d75439601d079613e2"},(0,n.kt)("inlineCode",{parentName:"a"},"b41c550"))),(0,n.kt)("li",{parentName:"ul"},"docs(footer): add elements anatomy ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d9f0872f93a6f7572f798b2c001d3af00eb282e3"},(0,n.kt)("inlineCode",{parentName:"a"},"d9f0872")))),(0,n.kt)("h4",{id:"\ufe0f-others-15"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"add(banner): banner title css ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d0032474d2b57eb63a4b50a882ced2ee743a48e6"},(0,n.kt)("inlineCode",{parentName:"a"},"d003247"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-alpha.11 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/07e8f858b0bdeaa6a348c0bfc2b785f26017e1ea"},(0,n.kt)("inlineCode",{parentName:"a"},"07e8f85"))),(0,n.kt)("li",{parentName:"ul"},"renamed image elements as requested in review ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8541fb6739d3c935ed8d44a220114546b2aef682"},(0,n.kt)("inlineCode",{parentName:"a"},"8541fb6"))),(0,n.kt)("li",{parentName:"ul"},"remove(banner-gradiant): image gradiant in favour of text ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1b58520490be5e17ea4ce6fc98329d467dad3960"},(0,n.kt)("inlineCode",{parentName:"a"},"1b58520"))),(0,n.kt)("li",{parentName:"ul"},"update(gradient): use 8deg angle ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6fd597d8d7a83fdf8a27939e4c69dfc3975b6a81"},(0,n.kt)("inlineCode",{parentName:"a"},"6fd597d"))),(0,n.kt)("li",{parentName:"ul"},"update(gradiant): make it 0deg ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1bb2696375eef233b509e27d9d464b8343421430"},(0,n.kt)("inlineCode",{parentName:"a"},"1bb2696"))),(0,n.kt)("li",{parentName:"ul"},"remove(comment) referencing old verison of title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4226d42e34b119e057cf4e9878b6a99172cb976a"},(0,n.kt)("inlineCode",{parentName:"a"},"4226d42")))),(0,n.kt)("h3",{id:"100-alpha10---2023-01-13"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.9...1.0.0-alpha.10"},"1.0.0-alpha.10")," - 2023-01-13"),(0,n.kt)("h4",{id:"-bug-fixes-13"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(subsite): Fix logo size on subsite section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/65fff54503a9ace573dc7198f6bedb372e65d211"},(0,n.kt)("inlineCode",{parentName:"a"},"65fff54"))),(0,n.kt)("li",{parentName:"ul"},"fix(subsite): Fix logo size on subsite section #279 from eea/subsite-fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f6cf94811dbebc2081c0ca812570a72dd977b06"},(0,n.kt)("inlineCode",{parentName:"a"},"8f6cf94"))),(0,n.kt)("li",{parentName:"ul"},"fix(mega-menu): show sub grid only if there are children ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ddfbd82aab2be723ae230d703f72a8cd489f17d8"},(0,n.kt)("inlineCode",{parentName:"a"},"ddfbd82")))),(0,n.kt)("h4",{id:"\ufe0f-others-16"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Add variable definitions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/293fe65e2f24e6290e1286229169a77f9be4750e"},(0,n.kt)("inlineCode",{parentName:"a"},"293fe65"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-alpha.10 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7014d080ce114bd0bc039abeecbd7229333b0971"},(0,n.kt)("inlineCode",{parentName:"a"},"7014d08"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using advisory-board-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef58a6f5ad8deea26b1395a86778fe1159b7617b"},(0,n.kt)("inlineCode",{parentName:"a"},"ef58a6f"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/31d461662b9184a7bbe190e86f3c47fab39229fe"},(0,n.kt)("inlineCode",{parentName:"a"},"31d4616")))),(0,n.kt)("h3",{id:"100-alpha9---2022-12-28"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.8...1.0.0-alpha.9"},"1.0.0-alpha.9")," - 2022-12-28"),(0,n.kt)("h4",{id:"-enhancements-17"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(contextnav): Default title is text, custom title is link #273 from eea/context-nav-link-title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef7bdb7c40cd12c3d7e059074aa5797b8cb3378c"},(0,n.kt)("inlineCode",{parentName:"a"},"ef7bdb7")))),(0,n.kt)("h4",{id:"\ufe0f-others-17"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Show document and folder content-type in Navigation listing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8471db3b3d555e8602f1076d0f96a2ba38a12247"},(0,n.kt)("inlineCode",{parentName:"a"},"8471db3"))),(0,n.kt)("li",{parentName:"ul"},"Default title is text, custom title is link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1ae95b05b67423121566448c6b0cededca4b2b1d"},(0,n.kt)("inlineCode",{parentName:"a"},"1ae95b0"))),(0,n.kt)("li",{parentName:"ul"},"Context nav title link to # ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a27a6b78bcda0eb6037f73f1d36b06e00e3ffc52"},(0,n.kt)("inlineCode",{parentName:"a"},"a27a6b7")))),(0,n.kt)("h3",{id:"100-alpha8---2022-12-23"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.7...1.0.0-alpha.8"},"1.0.0-alpha.8")," - 2022-12-23"),(0,n.kt)("h4",{id:"-new-features-12"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(copyright): Align copyright options with Volto integration - refs #158210 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6bac7f6a9ad969af4be1c8c08a18a1144d5bad63"},(0,n.kt)("inlineCode",{parentName:"a"},"6bac7f6")))),(0,n.kt)("h4",{id:"-enhancements-18"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(logo): import theme site logos to the story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2f29136ca457f2419ca25a5292a036b2cd0fc402"},(0,n.kt)("inlineCode",{parentName:"a"},"2f29136"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logo): update logo and mega search gradient ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e11f44d59334fc02e3833a133b20e7b2240a2022"},(0,n.kt)("inlineCode",{parentName:"a"},"e11f44d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logos): convert logo names to lowercase ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/07b822864490b4cc63bef94f3306466ba5933e16"},(0,n.kt)("inlineCode",{parentName:"a"},"07b8228"))),(0,n.kt)("li",{parentName:"ul"},"change(item): use default logic of setting align class on content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6b5b47c10ce5a6d3710bedd492aa3d362d62d225"},(0,n.kt)("inlineCode",{parentName:"a"},"6b5b47c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logo): update logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/170efe5bfc7fd4988f4a4d4aac18ace32c360cd6"},(0,n.kt)("inlineCode",{parentName:"a"},"170efe5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logos): convert storybook logo names to lowercase ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4b24ec8796f8fffd87158a55f4ac19624ebe04c"},(0,n.kt)("inlineCode",{parentName:"a"},"c4b24ec"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logo): add eea roboto font logo variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/de1224a97568c0b48b509c65170a6080d8a058d4"},(0,n.kt)("inlineCode",{parentName:"a"},"de1224a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logo): add container and segment to logo story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/61eff16fcd080194fe1187656d67ef73a7dd4d6c"},(0,n.kt)("inlineCode",{parentName:"a"},"61eff16"))),(0,n.kt)("li",{parentName:"ul"},"change(item): removed requirement for aligned classes to be on content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/30c0d5d2de7ac05172cfb726b60a8bd763de7b31"},(0,n.kt)("inlineCode",{parentName:"a"},"30c0d5d"))),(0,n.kt)("li",{parentName:"ul"},"change(logos): cleanup eea logo reference to only eea-logo and eea-logo-white.svg ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2796e054a21a9025036c8b2882afe23a6984cd37"},(0,n.kt)("inlineCode",{parentName:"a"},"2796e05")))),(0,n.kt)("h4",{id:"-internal-changes-7"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(npmignore): Reduce npmjs package size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/164c8a5ad0f7241eb8e30c53eccfdff9cec1fb93"},(0,n.kt)("inlineCode",{parentName:"a"},"164c8a5"))),(0,n.kt)("li",{parentName:"ul"},"chore(npmignore): Reduce npmjs package size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ade9d5ba3411efc47cdd3b461fd60b2b7389f9be"},(0,n.kt)("inlineCode",{parentName:"a"},"ade9d5b"))),(0,n.kt)("li",{parentName:"ul"},"chore(docs): renamed logo mdx to md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/52e9d46bb2decabdc935eeee84dacc3e063e3616"},(0,n.kt)("inlineCode",{parentName:"a"},"52e9d46")))),(0,n.kt)("h4",{id:"-documentation-changes-6"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(logos): svgs without classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/28a58336ac57deb3eec7287b6fbf5cd58ada8a7e"},(0,n.kt)("inlineCode",{parentName:"a"},"28a5833"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): add dark mode logos ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ccc1609643cff5f851942ab95198d44252ddb22e"},(0,n.kt)("inlineCode",{parentName:"a"},"ccc1609"))),(0,n.kt)("li",{parentName:"ul"},"docs(logo): update eea logos and add logo wrapper ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91cdd6636dfb102e4712177ad5fa7e952eb6ea45"},(0,n.kt)("inlineCode",{parentName:"a"},"91cdd66"))),(0,n.kt)("li",{parentName:"ul"},"docs(logo): update logos on docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/760e1012892ab28b25e8d9b0de50cfa0ba07addf"},(0,n.kt)("inlineCode",{parentName:"a"},"760e101"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): updated svgs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dc224e1dbcf46a29b0639afde694d44221affe27"},(0,n.kt)("inlineCode",{parentName:"a"},"dc224e1"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): add thematic logos ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5a21a3076e506e6bd7f82fa97697f81825e87255"},(0,n.kt)("inlineCode",{parentName:"a"},"5a21a30"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): add zipped svgs for download ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5855bf83b471a9849ee71370d7eee4f6a1d12a44"},(0,n.kt)("inlineCode",{parentName:"a"},"5855bf8"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): wisef logo update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f90b59d03c1c4eaa760dd981e082f237c09e96f"},(0,n.kt)("inlineCode",{parentName:"a"},"8f90b59"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): move to static, add download ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8c1fd5f9a64bd8fb976687fe5ed96bc515b95393"},(0,n.kt)("inlineCode",{parentName:"a"},"8c1fd5f"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): improve eea logo visibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/82188abb99aa080d7bea15975497e03c653d311c"},(0,n.kt)("inlineCode",{parentName:"a"},"82188ab"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): change eea logo to svg ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f57b846ca9d635f5af4d1adeee280a5adcaf7b5f"},(0,n.kt)("inlineCode",{parentName:"a"},"f57b846")))),(0,n.kt)("h4",{id:"\ufe0f-others-18"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"logo update or docusaurus thematic logo listing #274 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dde90beb68ac129e476ece22e7ced4640786f094"},(0,n.kt)("inlineCode",{parentName:"a"},"dde90be"))),(0,n.kt)("li",{parentName:"ul"},"(feat): Add ability to disable the language select from website top menu - refs #158616 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/411c8e4afaf0b2b9edfdeeecdca22aa4cc41f329"},(0,n.kt)("inlineCode",{parentName:"a"},"411c8e4"))),(0,n.kt)("li",{parentName:"ul"},"Proof reading page header section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/230239e1b22734fb8606656985bc5e513731e244"},(0,n.kt)("inlineCode",{parentName:"a"},"230239e"))),(0,n.kt)("li",{parentName:"ul"},"bump package version ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4628bed134abc76e38a243d4e98143e19cef989"},(0,n.kt)("inlineCode",{parentName:"a"},"b4628be"))),(0,n.kt)("li",{parentName:"ul"},"feature(docusaurus, storybook): logos selection for sites plus inverted options #253 from eea/doc-logo-page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dbfc90d035dc40e9d4054347f00fde4de486d63d"},(0,n.kt)("inlineCode",{parentName:"a"},"dbfc90d"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using advisory-board-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4769e987d525f5dcafac8e6cf8a89fd8111667d"},(0,n.kt)("inlineCode",{parentName:"a"},"c4769e9"))),(0,n.kt)("li",{parentName:"ul"},"test(Jenkins): Run tests and cypress with latest canary @plone/volto ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/92feea09796c9ef0530f65fa1d34139905133215"},(0,n.kt)("inlineCode",{parentName:"a"},"92feea0")))),(0,n.kt)("h3",{id:"100-alpha7---2022-12-16"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.6...1.0.0-alpha.7"},"1.0.0-alpha.7")," - 2022-12-16"),(0,n.kt)("h4",{id:"-new-features-13"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(item): normalized size for image or icon items #258 from eea/refactor-items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/945170f1503be68aa3fc1bd950a97eeebfd81037"},(0,n.kt)("inlineCode",{parentName:"a"},"945170f")))),(0,n.kt)("h4",{id:"-bug-fixes-14"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(card): rounded after removal of has--rounded--true style class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4727afdecf3d25e3e5bc98d472b976d60154183"},(0,n.kt)("inlineCode",{parentName:"a"},"d4727af"))),(0,n.kt)("li",{parentName:"ul"},"fix(item): removed margin set for description which pushed the text from icon ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d9d40310fcfb1bd214bd901b79dcbac41e9a8518"},(0,n.kt)("inlineCode",{parentName:"a"},"d9d4031"))),(0,n.kt)("li",{parentName:"ul"},"fix(project): Proper paths if volto-eea-design-system package is not installed, but in development #270 from eea/correct_paths ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0f8ee8d770f1b26d4315be8f615d58a61acbafc8"},(0,n.kt)("inlineCode",{parentName:"a"},"0f8ee8d")))),(0,n.kt)("h4",{id:"-enhancements-19"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(item): update icon variations and paddings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6a407b3e7f743eb7b73247bcc5d489685d567bc6"},(0,n.kt)("inlineCode",{parentName:"a"},"6a407b3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): update spacing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2fd91c4aa1a76dd2f7099d3f24f94067e95e06a1"},(0,n.kt)("inlineCode",{parentName:"a"},"2fd91c4"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): initial values for new sizes & add description class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3546296f0cacb96411c8c67b98e9763e2b843b05"},(0,n.kt)("inlineCode",{parentName:"a"},"3546296"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): add icon and more size options ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1120bb62d9ab908c5c97a4871a66e3c08c5c7ece"},(0,n.kt)("inlineCode",{parentName:"a"},"1120bb6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): update image and icon sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8025735121aaa0024a5783afbde0f6be3715618"},(0,n.kt)("inlineCode",{parentName:"a"},"b802573"))),(0,n.kt)("li",{parentName:"ul"},"change(item): set same height as width on item images ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/69cbd23ca53dd68ae9f7c00a69ed2d8820746305"},(0,n.kt)("inlineCode",{parentName:"a"},"69cbd23"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): update item part 2 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9812ae2e41ac86cfd4c56e13af8af570b752966f"},(0,n.kt)("inlineCode",{parentName:"a"},"9812ae2"))),(0,n.kt)("li",{parentName:"ul"},"change(item): rename large to big class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24ff1275b9a0556b85ab86757bc0c84f50357e7d"},(0,n.kt)("inlineCode",{parentName:"a"},"24ff127"))),(0,n.kt)("li",{parentName:"ul"},"change(item): added tiny size that outputs 24px icon sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ea96363a957f9033cb5bfe2d7fd311e92377493"},(0,n.kt)("inlineCode",{parentName:"a"},"2ea9636"))),(0,n.kt)("li",{parentName:"ul"},"change(image): added preview image size default to 400px ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a0aa867e932d1b3c0bf449553726d6feb645853e"},(0,n.kt)("inlineCode",{parentName:"a"},"a0aa867"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): update operator for condition controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/149ccb2f1e498c27e5550214cdee25eb808ab27e"},(0,n.kt)("inlineCode",{parentName:"a"},"149ccb2")))),(0,n.kt)("h4",{id:"\ufe0f-others-19"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Proper paths if the package is not installed, but in development ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7a2655f7cf9d3c687f172eefcf2b4cff4b12f832"},(0,n.kt)("inlineCode",{parentName:"a"},"7a2655f"))),(0,n.kt)("li",{parentName:"ul"},"Update .project.eslintrc.js ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a2fd3f23473325976c2b146e066eeb538d140dce"},(0,n.kt)("inlineCode",{parentName:"a"},"a2fd3f2"))),(0,n.kt)("li",{parentName:"ul"},"added back descriptionDistance variable until package release ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3af811a8d86a132e16de118697ba5a4302a8a4da"},(0,n.kt)("inlineCode",{parentName:"a"},"3af811a"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-alpha.7 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e66bcc296b389bc55073e7f99681534977dce3a"},(0,n.kt)("inlineCode",{parentName:"a"},"7e66bcc"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using cca-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce47e9b163bcb4eda988e3a87718b54ffbd3f99f"},(0,n.kt)("inlineCode",{parentName:"a"},"ce47e9b"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb531c933c907bdbb88c9de0f1df2eb7ce899a4c"},(0,n.kt)("inlineCode",{parentName:"a"},"cb531c9")))),(0,n.kt)("h3",{id:"100-alpha6---2022-12-07"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.5...1.0.0-alpha.6"},"1.0.0-alpha.6")," - 2022-12-07"),(0,n.kt)("h4",{id:"-new-features-14"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(copyright): create copyright component and import it in banner ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8fcde9df2915585e2336024436cef76642820d75"},(0,n.kt)("inlineCode",{parentName:"a"},"8fcde9d"))),(0,n.kt)("li",{parentName:"ul"},"feat(Header): add hideSearch prop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/13ddfe59a6bd7fe2050b70ac4524a6f6c5c169ea"},(0,n.kt)("inlineCode",{parentName:"a"},"13ddfe5"))),(0,n.kt)("li",{parentName:"ul"},"feat(Docusaurus): Image copyright information #257 from eea/image-copyright-info ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/21195153240da052acb7171f7904449ed7854cb3"},(0,n.kt)("inlineCode",{parentName:"a"},"2119515")))),(0,n.kt)("h4",{id:"-bug-fixes-15"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(tags): content gap when using tags-content wrapper ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4eb9b89d4ea09f936b7fcdc22a84105fd8639af"},(0,n.kt)("inlineCode",{parentName:"a"},"c4eb9b8")))),(0,n.kt)("h4",{id:"-enhancements-20"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(hero): add copyright component to hero ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0fa88fad3e7b48789dc6d0462b9f78dd359b8949"},(0,n.kt)("inlineCode",{parentName:"a"},"0fa88fa"))),(0,n.kt)("li",{parentName:"ul"},"change(copyright): implementation to add classes on content sections ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e10bde674f2b1f722ec6c70734e4a72c018f4afe"},(0,n.kt)("inlineCode",{parentName:"a"},"e10bde6"))),(0,n.kt)("li",{parentName:"ul"},"change(copyright): removed color variant ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/747b8a27155569247d4975837587e3320327fce9"},(0,n.kt)("inlineCode",{parentName:"a"},"747b8a2"))),(0,n.kt)("li",{parentName:"ul"},"change(copyright): removed copyrightVariant from Banner and Hero stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac62e079d4eafb818f9cae25880a04d9e069d107"},(0,n.kt)("inlineCode",{parentName:"a"},"ac62e07"))),(0,n.kt)("li",{parentName:"ul"},"change(tagList): modified implementation to align to volto-tags-block ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7a57a3d4bf7ede4b5ab5f3ef045d664aaaf67f2c"},(0,n.kt)("inlineCode",{parentName:"a"},"7a57a3d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(copyright): remove data section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/52cb09dc363bb0a2e363ec86dcefb4c57e07a14d"},(0,n.kt)("inlineCode",{parentName:"a"},"52cb09d"))),(0,n.kt)("li",{parentName:"ul"},"change(copyright): line height to match page header implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a56254e7588cfc6aca999f550084d79dca6e9a6c"},(0,n.kt)("inlineCode",{parentName:"a"},"a56254e"))),(0,n.kt)("li",{parentName:"ul"},"change(copyright): now uses text color css variable with fallback to white ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee7268ba359f079dfce45fd0fe91f75ae5c37e94"},(0,n.kt)("inlineCode",{parentName:"a"},"ee7268b")))),(0,n.kt)("h4",{id:"-documentation-changes-7"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(copyright): copyright documentation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a90ed766e60b5eb5b027beb36d2b1967d2c41fa3"},(0,n.kt)("inlineCode",{parentName:"a"},"a90ed76")))),(0,n.kt)("h4",{id:"\ufe0f-others-20"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Update usage_markdown.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f76d4a242f795451d64ef2d192d0006a0ed5eac1"},(0,n.kt)("inlineCode",{parentName:"a"},"f76d4a2"))),(0,n.kt)("li",{parentName:"ul"},"grammar fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb2a5a5fd9dfc01eccc179721b06988742f5b2e2"},(0,n.kt)("inlineCode",{parentName:"a"},"cb2a5a5"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-alpha.6 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6ca32f03c1860781d3c1c4ff9558713ad8acac95"},(0,n.kt)("inlineCode",{parentName:"a"},"6ca32f0"))),(0,n.kt)("li",{parentName:"ul"},"feature(copyright): image information #250 from eea/feature-copyright ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a8618c7f0230a19b6c973aa2c9646463de9eeffb"},(0,n.kt)("inlineCode",{parentName:"a"},"a8618c7"))),(0,n.kt)("li",{parentName:"ul"},"lint fix by introducing local variable tagsGap ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7b6c0ae2ebfed06221700faf9a0d0c2bdeb60d99"},(0,n.kt)("inlineCode",{parentName:"a"},"7b6c0ae"))),(0,n.kt)("li",{parentName:"ul"},"Update 3-images.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1b0ef033f9c8a36aaa739f268263f24a6d0fb473"},(0,n.kt)("inlineCode",{parentName:"a"},"1b0ef03")))),(0,n.kt)("h3",{id:"100-alpha5---2022-11-29"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.4...1.0.0-alpha.5"},"1.0.0-alpha.5")," - 2022-11-29"),(0,n.kt)("h4",{id:"-new-features-15"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(Iconography): import and showcase remix icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/777112f7e77ce8c74c3fd4384bff6ec9694aba04"},(0,n.kt)("inlineCode",{parentName:"a"},"777112f")))),(0,n.kt)("h4",{id:"-bug-fixes-16"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(docusaurus): right bar overflow fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/197c763624f70556c62379bc0751763725d0fed3"},(0,n.kt)("inlineCode",{parentName:"a"},"197c763"))),(0,n.kt)("li",{parentName:"ul"},"fix(lists): bullet position by using padding instead of margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0ecae2e7fe61b98d8795f876a525fbbc873bf799"},(0,n.kt)("inlineCode",{parentName:"a"},"0ecae2e"))),(0,n.kt)("li",{parentName:"ul"},"fix(label): color for yellow variant as white isn't accessible on yellow color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91d8880a829d2728c49a1953f6d2d8c2c812990c"},(0,n.kt)("inlineCode",{parentName:"a"},"91d8880"))),(0,n.kt)("li",{parentName:"ul"},"fix(contentBox): avoid text decoration for header-link added on cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ccb592db6f465cec59124b94fb6918b513bb761"},(0,n.kt)("inlineCode",{parentName:"a"},"3ccb592"))),(0,n.kt)("li",{parentName:"ul"},"fix(label): margin value for ribbon image left and right margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f8e1129734709d6034539a6522105af9d43fef20"},(0,n.kt)("inlineCode",{parentName:"a"},"f8e1129")))),(0,n.kt)("h4",{id:"-enhancements-21"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): eea color palette in separate file ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6c855df9c2238f8d21860ade4578aa969b68448e"},(0,n.kt)("inlineCode",{parentName:"a"},"6c855df"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): classes for color boxes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/80219d52bc63842d8e6382dbbe7d43cdc8a29b9c"},(0,n.kt)("inlineCode",{parentName:"a"},"80219d5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): move supplementary, state and link colors to partials ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2776be32615d7a6bdd8561a523fb9cfb1a85e38b"},(0,n.kt)("inlineCode",{parentName:"a"},"2776be3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): fix side menu / moved more content in palette partial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f5b70775471369ca8f3193784b9bc66caa8fb76f"},(0,n.kt)("inlineCode",{parentName:"a"},"f5b7077"))),(0,n.kt)("li",{parentName:"ul"},"change(tag): set gap on tags element for margin between tag elements ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/726bc6da821a366a5afa03659e614cc73ed02c0b"},(0,n.kt)("inlineCode",{parentName:"a"},"726bc6d")))),(0,n.kt)("h4",{id:"-internal-changes-8"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(colours): fix wrong class name ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51ad0a8232f7f35cae05f5861d7822db852b3f8d"},(0,n.kt)("inlineCode",{parentName:"a"},"51ad0a8")))),(0,n.kt)("h4",{id:"-documentation-changes-8"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): Iconography updates, thematic platforms ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2a0e596bd002290e0759d8c5e568da4d318f7d59"},(0,n.kt)("inlineCode",{parentName:"a"},"2a0e596"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): thematic pages integration ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea7a4220a93d3fd2f437b51462f7f19d99f52595"},(0,n.kt)("inlineCode",{parentName:"a"},"ea7a422"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): color updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cc13b5499a9ae13bb45925a057f8ff4d6a2e4643"},(0,n.kt)("inlineCode",{parentName:"a"},"cc13b54"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): fix swatches accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/306cb74d3e06390a9c15da9b8b29c9d3c8f0f6c5"},(0,n.kt)("inlineCode",{parentName:"a"},"306cb74"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): typography and colors fixes according to comments on PR ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ae20a7258cc88465fa0937895c2999952736f456"},(0,n.kt)("inlineCode",{parentName:"a"},"ae20a72"))),(0,n.kt)("li",{parentName:"ul"},"docs(colours): adjust logos heights ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/854d4fb761be7307e83e5dd2eb0fe5a0117727c5"},(0,n.kt)("inlineCode",{parentName:"a"},"854d4fb"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): merge designer and dev units ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/65c240eddbf20b3fc870d301b96837f49ad9caca"},(0,n.kt)("inlineCode",{parentName:"a"},"65c240e"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): readded extra font sizes, fixed fluid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4a5d892538a9713d14ac718b1bf2c771be09810"},(0,n.kt)("inlineCode",{parentName:"a"},"a4a5d89"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): changed em to percentages ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4176007ff4b421bc988b618488e0ba6b550f9fe"},(0,n.kt)("inlineCode",{parentName:"a"},"d417600"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): minors updates and instructions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/84ac8828e430b4af2b461534b4e2f81189080145"},(0,n.kt)("inlineCode",{parentName:"a"},"84ac882"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): blue-grey-6 adjustment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e7ab2d15d3a617bc5b3713897f3e3521d9e2720a"},(0,n.kt)("inlineCode",{parentName:"a"},"e7ab2d1"))),(0,n.kt)("li",{parentName:"ul"},"docs(colours): added active colour ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/574f7a95ea8a9510d03a104ad72fafafcae5d738"},(0,n.kt)("inlineCode",{parentName:"a"},"574f7a9"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): switch FISE logo to png ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/335471fd95bbd78cd7bd80b960272baa0a32e1c5"},(0,n.kt)("inlineCode",{parentName:"a"},"335471f"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): updated visited ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0248fd164cbf85168945797244977c305c67608d"},(0,n.kt)("inlineCode",{parentName:"a"},"0248fd1"))),(0,n.kt)("li",{parentName:"ul"},"docs(FISE): replaced logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f7d833127f769d79f099618b98789c6929b4ba08"},(0,n.kt)("inlineCode",{parentName:"a"},"f7d8331")))),(0,n.kt)("h4",{id:"\ufe0f-others-21"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"perf(docusaurus): added remixicon and roboto locally ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b67b1a72bc9cdc7c62a25967e81b430f8b62d558"},(0,n.kt)("inlineCode",{parentName:"a"},"b67b1a7"))),(0,n.kt)("li",{parentName:"ul"},"feature(Docusaurus): Updates on color palette information including thematic websites #231 from eea/refactor-docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ec7843dea07f626dc1c71ae1baa8bb5b0caa52f3"},(0,n.kt)("inlineCode",{parentName:"a"},"ec7843d"))),(0,n.kt)("li",{parentName:"ul"},"Upgrade Jenkinsfile storybook to yarn 3 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d20de8d6e21a14660b7b5125a80218a8a6f19e62"},(0,n.kt)("inlineCode",{parentName:"a"},"d20de8d"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/563fbc5fac0d4b0295690d0a3a4e04271753f18a"},(0,n.kt)("inlineCode",{parentName:"a"},"563fbc5")))),(0,n.kt)("h3",{id:"100-alpha4---2022-11-22"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.3...1.0.0-alpha.4"},"1.0.0-alpha.4")," - 2022-11-22"),(0,n.kt)("h4",{id:"-bug-fixes-17"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(cards-storybook): load slick carousel css for arrow and pagination styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1159b1beea0d7f7e026f1f1181fea91b7ac38ffa"},(0,n.kt)("inlineCode",{parentName:"a"},"1159b1b")))),(0,n.kt)("h4",{id:"-enhancements-22"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(cards): refactor cards theming implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4e454238d540ef306f4c1a4f8e9a94c7aa10189"},(0,n.kt)("inlineCode",{parentName:"a"},"d4e4542"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): allow rounded, inverted and theme parameter to be set by has classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4b4ad893fc5d39629b4e8d874327f31ea2e7d885"},(0,n.kt)("inlineCode",{parentName:"a"},"4b4ad89"))),(0,n.kt)("li",{parentName:"ul"},"change(card): expect has classes on the card directly ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6a9e38bcae0656685a99b47800d556813663d2ee"},(0,n.kt)("inlineCode",{parentName:"a"},"6a9e38b"))),(0,n.kt)("li",{parentName:"ul"},"change(utilities): added has text classes to the text alignment utilities ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e6974c634551fe0d19a9c9da269f5c6fbaefab7a"},(0,n.kt)("inlineCode",{parentName:"a"},"e6974c6"))),(0,n.kt)("li",{parentName:"ul"},"change(utilities): modified class name for text align using has naming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/579a0cbe0f704eb9305119fdd162f4f29c8086d5"},(0,n.kt)("inlineCode",{parentName:"a"},"579a0cb"))),(0,n.kt)("li",{parentName:"ul"},"change(theme): ensure that only direct children of container have a default top and bottom margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7f8b8dcc72827004d366e1c531311cf8734053fc"},(0,n.kt)("inlineCode",{parentName:"a"},"7f8b8dc"))),(0,n.kt)("li",{parentName:"ul"},"change(build): upgrade action to trigger workflow and wait to latest version ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c63ad3fdae7972bb2c722dea3d046861fa0ac086"},(0,n.kt)("inlineCode",{parentName:"a"},"c63ad3f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): theming implementation to allow has theming classes #265 from eea/card-refactoring ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24edc99d85c0c619fc763a8774a96f7208f529a5"},(0,n.kt)("inlineCode",{parentName:"a"},"24edc99"))),(0,n.kt)("li",{parentName:"ul"},"change(theme): add slick-carousel dependency ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2eec7d7233adf86b9c4f61670eb87d9754ff94c"},(0,n.kt)("inlineCode",{parentName:"a"},"f2eec7d")))),(0,n.kt)("h4",{id:"\ufe0f-others-22"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Update eea.github.io on all commits in develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3d0b8d745138bd2e0219560c8c895ce2c56dbf04"},(0,n.kt)("inlineCode",{parentName:"a"},"3d0b8d7"))),(0,n.kt)("li",{parentName:"ul"},"Exclude mockups from npm package ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/634af8e3ddabec36a18597d8d7638888269875fc"},(0,n.kt)("inlineCode",{parentName:"a"},"634af8e"))),(0,n.kt)("li",{parentName:"ul"},"fix rounded selector ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1fa15442f03d3f3d9ef59afa14075b061483cf3a"},(0,n.kt)("inlineCode",{parentName:"a"},"1fa1544"))),(0,n.kt)("li",{parentName:"ul"},"Trigger re-build ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3566dd2b4d2cd12496e05b792c85a78de550dd50"},(0,n.kt)("inlineCode",{parentName:"a"},"3566dd2"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea47f6f10097f23f635d98f0c5483bebf8378fc4"},(0,n.kt)("inlineCode",{parentName:"a"},"ea47f6f")))),(0,n.kt)("h3",{id:"100-alpha3---2022-11-16"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.2...1.0.0-alpha.3"},"1.0.0-alpha.3")," - 2022-11-16"),(0,n.kt)("h4",{id:"-new-features-16"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(Header): Add subsite section styling #263 from eea/subsite ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/00398b8a6c5d83241c30d0ba85d95c115edf2480"},(0,n.kt)("inlineCode",{parentName:"a"},"00398b8")))),(0,n.kt)("h4",{id:"-bug-fixes-18"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(search): position now changed by default to absolute from relative ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51b08fc217e25c1391a2bac0b42a8c3f7ae091c7"},(0,n.kt)("inlineCode",{parentName:"a"},"51b08fc"))),(0,n.kt)("li",{parentName:"ul"},"fix(megaMenu): remove paddings for buttons added by active class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ec33ebfe23a6064c88383ab465bd45edee2dba9b"},(0,n.kt)("inlineCode",{parentName:"a"},"ec33ebf")))),(0,n.kt)("h4",{id:"-enhancements-23"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(components): load overrides files for our defined semantic files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/adde7a9519f38fa779d8d038f3b6817281f0b4a2"},(0,n.kt)("inlineCode",{parentName:"a"},"adde7a9"))),(0,n.kt)("li",{parentName:"ul"},"change(container): fullwidth now take into account devices without hover ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5a35a65ce4928972027325bd01265db3f046f0e8"},(0,n.kt)("inlineCode",{parentName:"a"},"5a35a65"))),(0,n.kt)("li",{parentName:"ul"},"change(container): ensure only the top level elements behave like containers ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/98b85d1fb285919a8851454fa3007131b2a0ffc3"},(0,n.kt)("inlineCode",{parentName:"a"},"98b85d1"))),(0,n.kt)("li",{parentName:"ul"},"change(container): modified column-block grid to remove margin and padding when using full width class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/35c1cee7b3b35e7c361562ab7a430240f0117cc3"},(0,n.kt)("inlineCode",{parentName:"a"},"35c1cee"))),(0,n.kt)("li",{parentName:"ul"},"change(mega-menu): hide home link and accordion content from mobile menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1a691729b6d61c0daf46c5de035c1c55b0fda0d9"},(0,n.kt)("inlineCode",{parentName:"a"},"1a69172"))),(0,n.kt)("li",{parentName:"ul"},"change(container): width from min width 1280px to 1365px max width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/66e551e532da2cc5e9716e5179f943f172663be4"},(0,n.kt)("inlineCode",{parentName:"a"},"66e551e"))),(0,n.kt)("li",{parentName:"ul"},"change(container): removed app extras and view setting of layout sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6dc1ee602634df85140f6db75e41293b72eacf1"},(0,n.kt)("inlineCode",{parentName:"a"},"f6dc1ee"))),(0,n.kt)("li",{parentName:"ul"},"change(views): customized DefaultView to pass class into page-document area ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91123aad429f4bb086110b4997e43e9809a97581"},(0,n.kt)("inlineCode",{parentName:"a"},"91123aa"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): desktop - use buttons for menu section titles and readjust content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb9315f2b999193b7b64cec27c49fc8dda306899"},(0,n.kt)("inlineCode",{parentName:"a"},"cb9315f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): add nav_title and nav_description attributes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0d7a5686daab2ecec87d78728437d8f994606448"},(0,n.kt)("inlineCode",{parentName:"a"},"0d7a568"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): style sub-title and nav-description ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b2a48fd3588ffdc75f61f0b8d52284d13edf2d92"},(0,n.kt)("inlineCode",{parentName:"a"},"b2a48fd"))),(0,n.kt)("li",{parentName:"ul"},"refactor(sidemenu): add third level list and items & update active indication ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2d87da9fddca2b867f3d065a007c0b921587a61"},(0,n.kt)("inlineCode",{parentName:"a"},"e2d87da"))),(0,n.kt)("li",{parentName:"ul"},"change(columns): implement narrow, container and wide width classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9696b5457e50ba3186406a584da16f5248c14439"},(0,n.kt)("inlineCode",{parentName:"a"},"9696b54"))),(0,n.kt)("li",{parentName:"ul"},"change(container): story to add classes that modify the max width of the containers ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/37948f89ee797738bd8bbb0023bc5dca018d7331"},(0,n.kt)("inlineCode",{parentName:"a"},"37948f8"))),(0,n.kt)("li",{parentName:"ul"},"change(container): affect only left and right margin of containers ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/183265b7dd8d20359b6c3956ea05b62df6e70f75"},(0,n.kt)("inlineCode",{parentName:"a"},"183265b"))),(0,n.kt)("li",{parentName:"ul"},"change(containers): modified class names after layout checks ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1dc3689509001031f0afd30422f517de5316e47a"},(0,n.kt)("inlineCode",{parentName:"a"},"1dc3689"))),(0,n.kt)("li",{parentName:"ul"},"refactor(sidemenu): add is_in_path and is_current attributes for an active example ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a3fe7fd8da93db0a065d4408ce154c9d8c26b568"},(0,n.kt)("inlineCode",{parentName:"a"},"a3fe7fd"))),(0,n.kt)("li",{parentName:"ul"},"change(container): story to avoid adding containerwidth property to container div ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c13d83cdbc8741bf4075cdfcd884f39f3f71d73c"},(0,n.kt)("inlineCode",{parentName:"a"},"c13d83c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): mobile - use buttons for menu section titles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7b632fd29a8ac815d2e590509baa51f1279e659"},(0,n.kt)("inlineCode",{parentName:"a"},"a7b632f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): update padding variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5f25838ba9ec367a58c98c929921ebf09cd8ad8"},(0,n.kt)("inlineCode",{parentName:"a"},"c5f2583"))),(0,n.kt)("li",{parentName:"ul"},"change(views): moved narrow style bellow the default container width styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/72fa58dce9ea03a1e4f409a9f9aab21b01efbfc8"},(0,n.kt)("inlineCode",{parentName:"a"},"72fa58d"))),(0,n.kt)("li",{parentName:"ul"},"change(listing): removed container from default view page-document area ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/69f3d8f422e3cb95e89937929aaef48b5569bcdf"},(0,n.kt)("inlineCode",{parentName:"a"},"69f3d8f"))),(0,n.kt)("li",{parentName:"ul"},"change(views): rename classes names to width_view and added app extras layout component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/745b7720839754d1e248795cb1263f8c02f5f3c2"},(0,n.kt)("inlineCode",{parentName:"a"},"745b772"))),(0,n.kt)("li",{parentName:"ul"},"change(container): use important flag for left and right margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a49c83abe9a045d28118a680558de5416a0516a3"},(0,n.kt)("inlineCode",{parentName:"a"},"a49c83a"))),(0,n.kt)("li",{parentName:"ul"},"change(container): add variables for edit and add section of containers ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2e2c335dc82c120d15d4c536c400ae742f68fe7"},(0,n.kt)("inlineCode",{parentName:"a"},"f2e2c33"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): update sub-title paddings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/992f919bb5155c8e6fc169e43adf00dcae41f400"},(0,n.kt)("inlineCode",{parentName:"a"},"992f919"))),(0,n.kt)("li",{parentName:"ul"},"change(site): add a 1rem margin top and bottom on all styled classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dabf6c1162fe23cef61a2053eefd7e687f649a56"},(0,n.kt)("inlineCode",{parentName:"a"},"dabf6c1"))),(0,n.kt)("li",{parentName:"ul"},"change(homepage): removed hiding of staging banner from homepage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ba2cd7fc17cdf1bf58381aa58e05acad0ac77ba"},(0,n.kt)("inlineCode",{parentName:"a"},"4ba2cd7"))),(0,n.kt)("li",{parentName:"ul"},"change(container): unset values of page-document on 1200+ browser width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dd5bea37d414e2a8689eaf6cc99c7b3a3d4b0e08"},(0,n.kt)("inlineCode",{parentName:"a"},"dd5bea3"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): set children to be appended to the right of the menu title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b69c23a20ef2ded1f0382650ff8e85d1bead6941"},(0,n.kt)("inlineCode",{parentName:"a"},"b69c23a"))),(0,n.kt)("li",{parentName:"ul"},"change(theme): modified wide width to point to 1320px as it's perfectly divisible by 4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f825737d6dafd595024bb4537eab624a47a9ad0"},(0,n.kt)("inlineCode",{parentName:"a"},"8f82573"))),(0,n.kt)("li",{parentName:"ul"},"change(theme): modified wide width to point to 1368px as it's perfectly divisible by 4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2349fee36ee72783665a0b101d684389f1fdf834"},(0,n.kt)("inlineCode",{parentName:"a"},"2349fee"))),(0,n.kt)("li",{parentName:"ul"},"change(container): renamed content-text-width to container-text-width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6f788c282348292dd4b5deb47ffe83ca4573e5c8"},(0,n.kt)("inlineCode",{parentName:"a"},"6f788c2"))),(0,n.kt)("li",{parentName:"ul"},"change(listing): provide ui container fallback if no class is passed to default view ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af9e94ded1e301f4c811749badbcc1f59e6d0de5"},(0,n.kt)("inlineCode",{parentName:"a"},"af9e94d"))),(0,n.kt)("li",{parentName:"ul"},"change(narrow-view): re-added container class to page-document ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/56b44a6e09d45f96c106dc471bb2e1cde58ef10f"},(0,n.kt)("inlineCode",{parentName:"a"},"56b44a6"))),(0,n.kt)("li",{parentName:"ul"},"change(view): set container width for view-viewview class as well ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/29dc324319d6dc2450dd0e906c1b4c93fd65ed56"},(0,n.kt)("inlineCode",{parentName:"a"},"29dc324")))),(0,n.kt)("h4",{id:"-internal-changes-9"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style: load header/footer overrides ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e5b5e0fc00c61d81f45c12f119bd2f06a91b1b5c"},(0,n.kt)("inlineCode",{parentName:"a"},"e5b5e0f"))),(0,n.kt)("li",{parentName:"ul"},"style(megaMenu): restore item description color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8a19bbb4866cdeb31d87b782587c499e621055b7"},(0,n.kt)("inlineCode",{parentName:"a"},"8a19bbb"))),(0,n.kt)("li",{parentName:"ul"},"style(megaMenu): restore accordion content bottom padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8e0c5a79f06247d353511b412b0122c6f614f5ec"},(0,n.kt)("inlineCode",{parentName:"a"},"8e0c5a7")))),(0,n.kt)("h4",{id:"\ufe0f-others-23"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Add subsite styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e79c0ed7931d6287dbeb3bab1e9155b8707481a3"},(0,n.kt)("inlineCode",{parentName:"a"},"e79c0ed"))),(0,n.kt)("li",{parentName:"ul"},"WIP settings column grid width when using full size class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/affc7ac99527aa92d5a192d90dc8c9ec46a66404"},(0,n.kt)("inlineCode",{parentName:"a"},"affc7ac"))),(0,n.kt)("li",{parentName:"ul"},"code cleanup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2cdc3e590b6d36865f16890c45ce56d32963e1d0"},(0,n.kt)("inlineCode",{parentName:"a"},"2cdc3e5"))),(0,n.kt)("li",{parentName:"ul"},"fix eslint ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/30c52e4eb443555ca44c1b35df064e73d52c0a8b"},(0,n.kt)("inlineCode",{parentName:"a"},"30c52e4"))),(0,n.kt)("li",{parentName:"ul"},"test(estlint): Fix .project.eslintrc.js ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aaeaa07b27491551daba29bbfdd7cab4a54b6bec"},(0,n.kt)("inlineCode",{parentName:"a"},"aaeaa07"))),(0,n.kt)("li",{parentName:"ul"},"modified left value of full width classes with toolbars ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70d82d47fbc2c00a3a709de0d5c087c8443a1eae"},(0,n.kt)("inlineCode",{parentName:"a"},"70d82d4"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-alpha.3 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8fc86a7d0bf4ad06ab339b3066ff56ea61d48878"},(0,n.kt)("inlineCode",{parentName:"a"},"8fc86a7"))),(0,n.kt)("li",{parentName:"ul"},"feature(content): added NarrowView useful for modifying the containers from content-area ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d937df7c262e8d8cc6e78eebec736e28263fc657"},(0,n.kt)("inlineCode",{parentName:"a"},"d937df7"))),(0,n.kt)("li",{parentName:"ul"},"jslint fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/98461593605344d0b6d8cba81f91d1cafc2653cd"},(0,n.kt)("inlineCode",{parentName:"a"},"9846159"))),(0,n.kt)("li",{parentName:"ul"},"Feature(container): flexible container size #260 from eea/feature-flexible-container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f84c5b67afe9cbe01b2a44a8f92a9a554e1036a"},(0,n.kt)("inlineCode",{parentName:"a"},"8f84c5b"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using circularity-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/76a41c786995fd54afe4d1c345de939f683ffa70"},(0,n.kt)("inlineCode",{parentName:"a"},"76a41c7"))),(0,n.kt)("li",{parentName:"ul"},"fix broken variable call for contentBox.variables introduced in previous commit by mistake ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d249c1160d19bedb174a2fde3fdab48d9ce297d4"},(0,n.kt)("inlineCode",{parentName:"a"},"d249c11"))),(0,n.kt)("li",{parentName:"ul"},"clean up ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/89f3cb33d70a14806a953f0acd1807e94169ee5c"},(0,n.kt)("inlineCode",{parentName:"a"},"89f3cb3"))),(0,n.kt)("li",{parentName:"ul"},"removed console log from code ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fad86ae581dd81d0c29fc03d8528e57cadadd3fb"},(0,n.kt)("inlineCode",{parentName:"a"},"fad86ae")))),(0,n.kt)("h3",{id:"100-alpha2---2022-10-28"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.1...1.0.0-alpha.2"},"1.0.0-alpha.2")," - 2022-10-28"),(0,n.kt)("h4",{id:"-enhancements-24"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(documentation): grammarly proof-read suggestions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f609be3758673b0d479d99baee69e7238a5b7f9"},(0,n.kt)("inlineCode",{parentName:"a"},"9f609be"))),(0,n.kt)("li",{parentName:"ul"},"refactor(volto-slate): Upgrade to @plone/volto-slate - refs #153447 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/853d9d189dd17859e3999fbf53507df7083eefb4"},(0,n.kt)("inlineCode",{parentName:"a"},"853d9d1")))),(0,n.kt)("h4",{id:"-internal-changes-10"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(docs): Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e33113a0541d082d93f61c7494bcce2ac5f79a8c"},(0,n.kt)("inlineCode",{parentName:"a"},"e33113a")))),(0,n.kt)("h4",{id:"\ufe0f-others-24"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"test(cypress): Upgrade to Cypress 10 / Razzle 4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c1c1f4b280945a9f0b77eb0b59de003c1360bac9"},(0,n.kt)("inlineCode",{parentName:"a"},"c1c1f4b"))),(0,n.kt)("li",{parentName:"ul"},"more explanations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a8b22728659125ba6ea6fb41f29571a8f1b9953b"},(0,n.kt)("inlineCode",{parentName:"a"},"a8b2272"))),(0,n.kt)("li",{parentName:"ul"},"add announcement bar, showing that EEA DS is WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e14aeac02cf922493aff4f83c8d80af95cc63eb9"},(0,n.kt)("inlineCode",{parentName:"a"},"e14aeac"))),(0,n.kt)("li",{parentName:"ul"},"Update dependencies ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee30a2bad3769163d3ab4d996c0a7be8fcb4bc6e"},(0,n.kt)("inlineCode",{parentName:"a"},"ee30a2b")))),(0,n.kt)("h3",{id:"100-alpha1---2022-10-20"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.6...1.0.0-alpha.1"},"1.0.0-alpha.1")," - 2022-10-20"),(0,n.kt)("h4",{id:"-enhancements-25"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update svg and tablet contact link sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6aba061a5d37e84da706e94a2ce1140ffca81d43"},(0,n.kt)("inlineCode",{parentName:"a"},"6aba061"))),(0,n.kt)("li",{parentName:"ul"},"change(blockquote): renamed to Callout reflecting the correct naming from Storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/61a518c84f08b03d29b99aafce3d9108ae56b3a7"},(0,n.kt)("inlineCode",{parentName:"a"},"61a518c"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): Shadow removed from logo & tablet updates #252 from eea/fix-footer ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6df783d6571cb1b477202bf1d503763d98db66bf"},(0,n.kt)("inlineCode",{parentName:"a"},"6df783d"))),(0,n.kt)("li",{parentName:"ul"},"change(colors): updated theme classes for text to use css variable colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb089fd9a40b67430e0d4efaa2cb51902a46de4f"},(0,n.kt)("inlineCode",{parentName:"a"},"cb089fd")))),(0,n.kt)("h4",{id:"-internal-changes-11"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(footer): reduce social icons margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6a9cf7a6da4a46d9b85a63fbdfc8d421ae4c0d8"},(0,n.kt)("inlineCode",{parentName:"a"},"f6a9cf7")))),(0,n.kt)("h4",{id:"-documentation-changes-9"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(alpha): Update included components in 1.0 alpha version - refs #154387 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fcc5af9bb9163d158ccd6ce452d7f80ac26f7ac0"},(0,n.kt)("inlineCode",{parentName:"a"},"fcc5af9"))),(0,n.kt)("li",{parentName:"ul"},"docs(callout): Rename Blockqoute to Callout in docusaurus - refs #154387 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8d733ac7b00273581575ceddd1a4480ba67fa498"},(0,n.kt)("inlineCode",{parentName:"a"},"8d733ac")))),(0,n.kt)("h4",{id:"\ufe0f-others-25"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-alpha.1 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70e4d97c6a2b13f3b98efe1e2ba93174be2df476"},(0,n.kt)("inlineCode",{parentName:"a"},"70e4d97")))),(0,n.kt)("h3",{id:"096---2022-12-16"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.5...0.9.6"},"0.9.6")," - 2022-12-16"),(0,n.kt)("h4",{id:"\ufe0f-others-26"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Release 0.9.6 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ae19b837678ef5a6a26ebe7c69577e446b13ed50"},(0,n.kt)("inlineCode",{parentName:"a"},"ae19b83"))),(0,n.kt)("li",{parentName:"ul"},"feature(copyright): image information #250 from eea/feature-copyright ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7b323ed27e15f9b4265618099089526c97aa89a1"},(0,n.kt)("inlineCode",{parentName:"a"},"7b323ed"))),(0,n.kt)("li",{parentName:"ul"},"Release-it ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f5671de5a36a721f86a2f8ae4077fd2e0ffafb5"},(0,n.kt)("inlineCode",{parentName:"a"},"1f5671d")))),(0,n.kt)("h3",{id:"095---2022-10-20"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.4...0.9.5"},"0.9.5")," - 2022-10-20"),(0,n.kt)("h4",{id:"-bug-fixes-19"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(statistic): margin and slate colors when using the inverted options ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f263dea1940594ad00b3548c8640ca378fee5563"},(0,n.kt)("inlineCode",{parentName:"a"},"f263dea")))),(0,n.kt)("h3",{id:"094---2022-10-19"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.3...0.9.4"},"0.9.4")," - 2022-10-19"),(0,n.kt)("h4",{id:"-bug-fixes-20"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(edit-interface): block chooser and power user menu item colors when inside content-box ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7aee4f1619a0d798b5fd8d90844a780c25aca019"},(0,n.kt)("inlineCode",{parentName:"a"},"7aee4f1"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): hero text going over the logo and menu on mobile resolutions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1434508f5995d4316dfb2fd18fdc7926a4ece6ee"},(0,n.kt)("inlineCode",{parentName:"a"},"1434508"))),(0,n.kt)("li",{parentName:"ul"},"fix(content-box): z-index of box-inner and added underline to slate links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c8b7c7e41df39e1bf6377401a7aad4220287d454"},(0,n.kt)("inlineCode",{parentName:"a"},"c8b7c7e"))),(0,n.kt)("li",{parentName:"ul"},"fix(content-box): adding of underline to links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c2f5f0f45963e48342edb0046d84b945ffe4b6a8"},(0,n.kt)("inlineCode",{parentName:"a"},"c2f5f0f")))),(0,n.kt)("h4",{id:"-enhancements-26"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(banner,colors): content box theme aware colors banner changes#254 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bcb9a8cde0cb0f927a68c0872e590e5ab853f824"},(0,n.kt)("inlineCode",{parentName:"a"},"bcb9a8c"))),(0,n.kt)("li",{parentName:"ul"},"change(Banner): Add subtitle subcomponent ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bb67f4c83a2ff0e17958116fc4a52a426ba64a70"},(0,n.kt)("inlineCode",{parentName:"a"},"bb67f4c"))),(0,n.kt)("li",{parentName:"ul"},"change(item): moved svg filter definitions to item.overrides ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/de703661065648968903bb6b46efc13d19c51d2b"},(0,n.kt)("inlineCode",{parentName:"a"},"de70366"))),(0,n.kt)("li",{parentName:"ul"},"change(accordion): accordion titles with themes colors can now be modified by css variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2ac13ea56a74b2f7a22abc274bc94c770fbe3a2"},(0,n.kt)("inlineCode",{parentName:"a"},"e2ac13e"))),(0,n.kt)("li",{parentName:"ul"},"change(colors): in lists and callouts to allow color changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/940d1b8ed815b1a38f78d7602f0b221b48fe21f9"},(0,n.kt)("inlineCode",{parentName:"a"},"940d1b8"))),(0,n.kt)("li",{parentName:"ul"},"change(colors): added backgroundColorSupplementary color variable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f5262af2b90d2ffd9dd5560232f3bf47bcc85e3"},(0,n.kt)("inlineCode",{parentName:"a"},"1f5262a"))),(0,n.kt)("li",{parentName:"ul"},"change(list,bullet): color is no longer primary instead it's text color css variant ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8c046704871c7202406ff71b280a8a34e195e54d"},(0,n.kt)("inlineCode",{parentName:"a"},"8c04670"))),(0,n.kt)("li",{parentName:"ul"},"change(statistics): use theme colors with css variable for easy color customization ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fb72a012e81eba73fbace58317a52b5cdda31ee5"},(0,n.kt)("inlineCode",{parentName:"a"},"fb72a01"))),(0,n.kt)("li",{parentName:"ul"},"change(Banner): Show label in metadata field ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1acda3c53739b610b501a53baf10226769929d2d"},(0,n.kt)("inlineCode",{parentName:"a"},"1acda3c"))),(0,n.kt)("li",{parentName:"ul"},"change(tags, items): use text color with css variable for content color for easy customization ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6660e2e49c6e732a13283ad7c922c5a5091bffc1"},(0,n.kt)("inlineCode",{parentName:"a"},"6660e2e"))),(0,n.kt)("li",{parentName:"ul"},"change(styling): modified naming of theme css variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a332961e1c4d55cdee3a8bcdf652f53cf03e251b"},(0,n.kt)("inlineCode",{parentName:"a"},"a332961"))),(0,n.kt)("li",{parentName:"ul"},"change(colors): added backgroundColor color variable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b7e68311f77a724c49a3cf858a76239ca5f6876c"},(0,n.kt)("inlineCode",{parentName:"a"},"b7e6831"))),(0,n.kt)("li",{parentName:"ul"},"change(quote): use secondary css var for easier color replacement ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7a3231228c2eb9b420cc7b59a4a07fba96643e5e"},(0,n.kt)("inlineCode",{parentName:"a"},"7a32312"))),(0,n.kt)("li",{parentName:"ul"},"change(statistics): tweaked margin of statistics so that they don't overflow over context boxes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4a8e33dfaa716f38ac9ce5448d400c74ef9ba62"},(0,n.kt)("inlineCode",{parentName:"a"},"b4a8e33"))),(0,n.kt)("li",{parentName:"ul"},"change(accordion): allow customization of accordion title background color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6590baf1716867eabe897e765ae1924122ba2333"},(0,n.kt)("inlineCode",{parentName:"a"},"6590baf"))),(0,n.kt)("li",{parentName:"ul"},"change(colors): introduced css variables for primary colors #247 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac8082590f978ab953ece70082e06b124c292ddf"},(0,n.kt)("inlineCode",{parentName:"a"},"ac80825"))),(0,n.kt)("li",{parentName:"ul"},"change(content-box): override primary text color to white as well ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/28b43c72b9fcfeb153ac7e734bbbca67f2e42111"},(0,n.kt)("inlineCode",{parentName:"a"},"28b43c7")))),(0,n.kt)("h4",{id:"\ufe0f-others-27"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Include changes in the storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4d9fa4c631a6a1ec0d7d525721fd32c5ff01d9c"},(0,n.kt)("inlineCode",{parentName:"a"},"a4d9fa4")))),(0,n.kt)("h3",{id:"093---2022-10-04"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.2...0.9.3"},"0.9.3")," - 2022-10-04"),(0,n.kt)("h4",{id:"-bug-fixes-21"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(card, contentBox): meta font size, removed header override of cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7f94b9ca8c65a887ced5c4812563a2226fca869"},(0,n.kt)("inlineCode",{parentName:"a"},"a7f94b9"))),(0,n.kt)("li",{parentName:"ul"},"fix(List): Ordered list item story - refs #155248 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c70a2bceecf4ce9497cbe0e9cdb30944fff2287d"},(0,n.kt)("inlineCode",{parentName:"a"},"c70a2bc"))),(0,n.kt)("li",{parentName:"ul"},"fix(OrderedList): li third level margin left - refs #155248 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fba5cb9d3897d2827951cd218405b1ae7c8e818a"},(0,n.kt)("inlineCode",{parentName:"a"},"fba5cb9"))),(0,n.kt)("li",{parentName:"ul"},"fix(cards): inherit color of card description ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ceda79971663785c81292b85ae07b7f9f922213c"},(0,n.kt)("inlineCode",{parentName:"a"},"ceda799"))),(0,n.kt)("li",{parentName:"ul"},"fix(accordion): Fix content default padding - refs #153783 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/566adf7a53c48fb24044eeba1d159d5ce715ecc6"},(0,n.kt)("inlineCode",{parentName:"a"},"566adf7")))),(0,n.kt)("h4",{id:"-enhancements-27"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(site): committed fixed from custom into eea design package ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9b9a1fd3648796a502ca4eb3abd08b61b33bdff2"},(0,n.kt)("inlineCode",{parentName:"a"},"9b9a1fd"))),(0,n.kt)("li",{parentName:"ul"},"change(jenkins): added yarn policy for storybook building ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3d1b844efeea40b99c00c9aa97089e0a0be58a57"},(0,n.kt)("inlineCode",{parentName:"a"},"3d1b844"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): typography updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/60a93a4aece4e478ae13c2dfe697fd3703aa178a"},(0,n.kt)("inlineCode",{parentName:"a"},"60a93a4"))),(0,n.kt)("li",{parentName:"ul"},"change(item): added item image coloring when applying theming classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0403fe4974f37a46ec7418d9b8492ad74d7c5688"},(0,n.kt)("inlineCode",{parentName:"a"},"0403fe4"))),(0,n.kt)("li",{parentName:"ul"},"change(accordion, site): change text color to tertiary instead of black ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/464105842508a62216aa0a3f28e9565af1b93232"},(0,n.kt)("inlineCode",{parentName:"a"},"4641058"))),(0,n.kt)("li",{parentName:"ul"},"change(accordion): allow customization of accordion title with css variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/15e7d27f02c640df582f51a51ef36e645723f842"},(0,n.kt)("inlineCode",{parentName:"a"},"15e7d27"))),(0,n.kt)("li",{parentName:"ul"},"change(content-box): added css variables that will set text color and background for children ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/86cac531cc94386b6022e1be80dba826b39f2443"},(0,n.kt)("inlineCode",{parentName:"a"},"86cac53"))),(0,n.kt)("li",{parentName:"ul"},"change(tabs): allow customization of tab active and hover color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4370f4270dcaa29b1193fc2347567b748f6d5d82"},(0,n.kt)("inlineCode",{parentName:"a"},"4370f42"))),(0,n.kt)("li",{parentName:"ul"},"change(tabs): color for tabs-block section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6778c923618e725194120d7f35e2ee7d66e1be8e"},(0,n.kt)("inlineCode",{parentName:"a"},"6778c92"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): by default date is set to appear on the right of the meta section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b7b80e86b69a0179f1e48748bef909bbd2a98d58"},(0,n.kt)("inlineCode",{parentName:"a"},"b7b80e8"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): carousel dots are now relative positioned ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/daa40a4ab6532497830d5f7536bf0a7f20d9cd00"},(0,n.kt)("inlineCode",{parentName:"a"},"daa40a4")))),(0,n.kt)("h4",{id:"-documentation-changes-10"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(typography): update, local fonts ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/39a32d9aa4dec21c0e7df32aa5798432fc6bd403"},(0,n.kt)("inlineCode",{parentName:"a"},"39a32d9"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): token fix to match used values for heightheight and letterspacing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91693ecd2dd367cd83fa2752756557d463e214a7"},(0,n.kt)("inlineCode",{parentName:"a"},"91693ec"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): token fix to match used values for lineheight ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff41b56b4365a3e70ac20e548c7c74671e7c584c"},(0,n.kt)("inlineCode",{parentName:"a"},"ff41b56"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): remove semibold ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6eb3e0856f01aacf6d294f68e7d845f74f752685"},(0,n.kt)("inlineCode",{parentName:"a"},"6eb3e08")))),(0,n.kt)("h4",{id:"\ufe0f-others-28"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"test(cypress): Fix md5 dependency ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/17f618e7c5eef01759494e787a8c9cb96449fbca"},(0,n.kt)("inlineCode",{parentName:"a"},"17f618e")))),(0,n.kt)("h3",{id:"092---2022-09-27"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.1...0.9.2"},"0.9.2")," - 2022-09-27"),(0,n.kt)("h3",{id:"091---2022-09-27"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.0...0.9.1"},"0.9.1")," - 2022-09-27"),(0,n.kt)("h4",{id:"-enhancements-28"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(cards): added ability to change the text alignment using css variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ed532ac20c82a6933c4f12613c80ce92eec78405"},(0,n.kt)("inlineCode",{parentName:"a"},"ed532ac"))),(0,n.kt)("li",{parentName:"ul"},"change(styles): use flex-end values only instead of end to avoid babel warning ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24244b22ea69b9f4dc3006597c7836f814b74cf2"},(0,n.kt)("inlineCode",{parentName:"a"},"24244b2"))),(0,n.kt)("li",{parentName:"ul"},"change(rounded): image size, border radius to ensure more image are turned into rounded options ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51e23c1bb38f277b2bfbad5d814925eb61d17668"},(0,n.kt)("inlineCode",{parentName:"a"},"51e23c1")))),(0,n.kt)("h4",{id:"\ufe0f-others-29"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Merge pull request #243 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/576564ce395ee6ac9e74bcb19d5c4f0b4cd3c33b"},(0,n.kt)("inlineCode",{parentName:"a"},"576564c"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using eea-website-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a5be6eec78dae230626e61ea2c77e7f3c62510d"},(0,n.kt)("inlineCode",{parentName:"a"},"4a5be6e"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b251255a7ed14d8290717726d86eaf54b87aa2d4"},(0,n.kt)("inlineCode",{parentName:"a"},"b251255")))),(0,n.kt)("h3",{id:"090---2022-09-19"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.8.1...0.9.0"},"0.9.0")," - 2022-09-19"),(0,n.kt)("h4",{id:"-new-features-17"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(countUp): intall countup package and import it in statistics ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/10ba7cf2975ffc33cc8e6965998b7ab7ec58b1ab"},(0,n.kt)("inlineCode",{parentName:"a"},"10ba7cf"))),(0,n.kt)("li",{parentName:"ul"},"feat(docusaurus): custom editUrl function for the components usage pages - taskman refs #154076 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93c4240f269d72e4e353665dacd57d079a31afac"},(0,n.kt)("inlineCode",{parentName:"a"},"93c4240"))),(0,n.kt)("li",{parentName:"ul"},"feat(site): Styling scroll-to-text fragments #238 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1883fcf4e80055f68bdff4d66fc6db3ccad4614a"},(0,n.kt)("inlineCode",{parentName:"a"},"1883fcf"))),(0,n.kt)("li",{parentName:"ul"},"feat(docusaurus): added Edit this page link in footer of each page - taskman refs #154076 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2cf8746e42631ea2e214223e208bdbfb76ffafa7"},(0,n.kt)("inlineCode",{parentName:"a"},"2cf8746")))),(0,n.kt)("h4",{id:"-bug-fixes-22"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(header): Prevent dropdown closing when clicking inside content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/838f34006260ce7c331fd933a595e95d78e1a927"},(0,n.kt)("inlineCode",{parentName:"a"},"838f340"))),(0,n.kt)("li",{parentName:"ul"},"fix(cards): position of bullets and arrow clicking on events page 148723 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/22ef8282247401b0f8cf5a44f2e65f0b469cc6fa"},(0,n.kt)("inlineCode",{parentName:"a"},"22ef828"))),(0,n.kt)("li",{parentName:"ul"},"fix(cards): rounded images show up now even when card parent is cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48f5e81a5b76168435537d92aec35ab3a184b4d2"},(0,n.kt)("inlineCode",{parentName:"a"},"48f5e81"))),(0,n.kt)("li",{parentName:"ul"},"fix(statistic): add a min-width to content so unwrapped statistics don't break ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7c5d511c35d50f3afabf77f14b27e5760c49051f"},(0,n.kt)("inlineCode",{parentName:"a"},"7c5d511"))),(0,n.kt)("li",{parentName:"ul"},"fix(sideNavigation): add role list to list item ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/58f322b732c995349ba588db3bac6a1ffea40f89"},(0,n.kt)("inlineCode",{parentName:"a"},"58f322b"))),(0,n.kt)("li",{parentName:"ul"},"fix(sideNavigation): remove unused useState import ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f9ea6779d2c584203b77f11b3127f39aba7799f3"},(0,n.kt)("inlineCode",{parentName:"a"},"f9ea677")))),(0,n.kt)("h4",{id:"-enhancements-29"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(sideNavigation): implement the design to the initial navigation & make component dynamic ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b673d63a45e56e1d05354d8675c01b15ec9543f5"},(0,n.kt)("inlineCode",{parentName:"a"},"b673d63"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update top bar ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/626bdd5805bde1e97b91d83dae7adc1d39c62234"},(0,n.kt)("inlineCode",{parentName:"a"},"626bdd5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): create custom export and add links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f9ed560a68d261e9e6a9b6fa3c44944a252e596"},(0,n.kt)("inlineCode",{parentName:"a"},"9f9ed56"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): update inverted style and add background variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7578dc6a408094fbc215218b3ffe21a878841568"},(0,n.kt)("inlineCode",{parentName:"a"},"7578dc6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): remove horizontal display on mobiles & update columns control ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/58f00e12851c4a1af1bb200d0577d76f6222df3c"},(0,n.kt)("inlineCode",{parentName:"a"},"58f00e1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): minor fixes spotted in testing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0f0f3aba7ea282c4ecc4f602f9ff3144c04e2146"},(0,n.kt)("inlineCode",{parentName:"a"},"0f0f3ab"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update main section heights ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d669f012f1b831952dbb73b7d40134b1243ba7e4"},(0,n.kt)("inlineCode",{parentName:"a"},"d669f01"))),(0,n.kt)("li",{parentName:"ul"},"refactor(sideNavigation): remove green border and divider ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/939cd9bf2a9a7338fd770550a8396586c5f610b3"},(0,n.kt)("inlineCode",{parentName:"a"},"939cd9b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(link): update colors for link states ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e9f59950838f9119131797550945963c2965dcf"},(0,n.kt)("inlineCode",{parentName:"a"},"3e9f599"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): styles img tag outside of .image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee892745a4748da12007ba5cedab16c1810c1dd9"},(0,n.kt)("inlineCode",{parentName:"a"},"ee89274"))),(0,n.kt)("li",{parentName:"ul"},"refactor(sideNavigation): update controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a3e8430d88ee52fd92f4f8c2d6f5e01ea82dd9eb"},(0,n.kt)("inlineCode",{parentName:"a"},"a3e8430"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): fix firefox issue for fit content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87aa113667ea53d83d479cd52347e7298e60e9b0"},(0,n.kt)("inlineCode",{parentName:"a"},"87aa113"))),(0,n.kt)("li",{parentName:"ul"},"change(statistics): rearrange controls order ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b19ae70568f18873732ff62ee82251c9256a214d"},(0,n.kt)("inlineCode",{parentName:"a"},"b19ae70"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): add max width to wrap text for all content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/758f8ce09f78a6343ac0226e5d332c0216dea95b"},(0,n.kt)("inlineCode",{parentName:"a"},"758f8ce"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): add max width to label so it wraps the text ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/824a12702f133485a1c254e267d9e75c1b22048c"},(0,n.kt)("inlineCode",{parentName:"a"},"824a127"))),(0,n.kt)("li",{parentName:"ul"},"change(Side menu & in page navigation): styling according to figma design #221 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b2df858a2dc88f61d686ad0991e711dc763f4cc6"},(0,n.kt)("inlineCode",{parentName:"a"},"b2df858"))),(0,n.kt)("li",{parentName:"ul"},"change(header): align header with latest figma changes #232 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/135cd68307c6ebdc5d48b361d1696457c6f99b4c"},(0,n.kt)("inlineCode",{parentName:"a"},"135cd68"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): integration when cards also contain call to action buttons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f0d876616b211c79dde5b18c1fe862ff019073a1"},(0,n.kt)("inlineCode",{parentName:"a"},"f0d8766"))),(0,n.kt)("li",{parentName:"ul"},"refactor(iconography): icon group headings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b9ccd8031049d6b91c5676930ea3e44d9587435d"},(0,n.kt)("inlineCode",{parentName:"a"},"b9ccd80"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add variables for some sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8eae84ef665d7b3331090a8a8ac6b714ecdacbb3"},(0,n.kt)("inlineCode",{parentName:"a"},"8eae84e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Statisctic): Rename slateVariation to extraVariation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a07c5896c8c4b8f3179622f335e3f02e68dadfbd"},(0,n.kt)("inlineCode",{parentName:"a"},"a07c589"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): started example on how to add headings for iconography ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53cf8431446954eee6c5d27be31e15c075ffe16d"},(0,n.kt)("inlineCode",{parentName:"a"},"53cf843"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): remove center alignment of rounded cards body area, only the image is now centered ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fdfac4876903272b437c7dcf0e65f7cfe66bbf66"},(0,n.kt)("inlineCode",{parentName:"a"},"fdfac48"))),(0,n.kt)("li",{parentName:"ul"},"change(color): updated link colors #234 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/feabfe7a3b6d6b89bfd4065a32bae8148ddc5a4c"},(0,n.kt)("inlineCode",{parentName:"a"},"feabfe7"))),(0,n.kt)("li",{parentName:"ul"},"change(mockup): Access to figma style tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0bb25bec495f9046a15924ee92f4f17152148ba8"},(0,n.kt)("inlineCode",{parentName:"a"},"0bb25be"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): update margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5190f56e134d672ccb9d5d1a8efacac4d41530d3"},(0,n.kt)("inlineCode",{parentName:"a"},"5190f56"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button): adjust vertical margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/db6d44102171738907b4b03fcc5f526463f59389"},(0,n.kt)("inlineCode",{parentName:"a"},"db6d441")))),(0,n.kt)("h4",{id:"-internal-changes-12"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(statistic): update decimal point ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7976aa4cac4c56e70e196eb62791a2b3f2aba749"},(0,n.kt)("inlineCode",{parentName:"a"},"7976aa4"))),(0,n.kt)("li",{parentName:"ul"},"style(link): update visited link color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d3b18b305bb2bd2f20bb2509584a6bc86b0e252c"},(0,n.kt)("inlineCode",{parentName:"a"},"d3b18b3")))),(0,n.kt)("h4",{id:"-documentation-changes-11"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(iconography): added icons, guidelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0073f1d42600be1d14bff406083b112014a2061f"},(0,n.kt)("inlineCode",{parentName:"a"},"0073f1d")))),(0,n.kt)("h4",{id:"\ufe0f-others-30"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Delete 2-test-new-page.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/749eff9b81e1c08068650cff1aba6cd574ea403b"},(0,n.kt)("inlineCode",{parentName:"a"},"749eff9"))),(0,n.kt)("li",{parentName:"ul"},"Create 2-test-new-page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab623ffc27f65e3e5fdcfe627009df1799582325"},(0,n.kt)("inlineCode",{parentName:"a"},"ab623ff"))),(0,n.kt)("li",{parentName:"ul"},"Release 0.9.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/eb7e2e57b5f2778e709b67deee3624f6e9f9e716"},(0,n.kt)("inlineCode",{parentName:"a"},"eb7e2e5"))),(0,n.kt)("li",{parentName:"ul"},"stylelint fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/114e3f97c6209f100aae2d6e24c595b7ba0a6500"},(0,n.kt)("inlineCode",{parentName:"a"},"114e3f9"))),(0,n.kt)("li",{parentName:"ul"},"Move text fragments style to site.overrides ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8368cbe2cecfc296a2fc81dd0bb49cb9e9a9314c"},(0,n.kt)("inlineCode",{parentName:"a"},"8368cbe"))),(0,n.kt)("li",{parentName:"ul"},"Styling scroll-to-text fragments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1bb39148717cdac922c403a0cdbfa3681a65dd9f"},(0,n.kt)("inlineCode",{parentName:"a"},"1bb3914"))),(0,n.kt)("li",{parentName:"ul"},"Update Header.stories.js ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9036c74d54640df2ccfcfdea9ddcdb29787d8ae2"},(0,n.kt)("inlineCode",{parentName:"a"},"9036c74"))),(0,n.kt)("li",{parentName:"ul"},"feature(Docusaurus): Reflect usage of remixicon in iconography page #239 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0802b32c13d978e380960befb78647dadb2d7e53"},(0,n.kt)("inlineCode",{parentName:"a"},"0802b32"))),(0,n.kt)("li",{parentName:"ul"},"Update 1-design.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/146115a13ac7a1943b6878df42f0b8e7f1fcd3f1"},(0,n.kt)("inlineCode",{parentName:"a"},"146115a"))),(0,n.kt)("li",{parentName:"ul"},"Test workflow for contribution - taskman refs #154076 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dcb924f79306ba26bb5168ac0a12d82c0c354caa"},(0,n.kt)("inlineCode",{parentName:"a"},"dcb924f"))),(0,n.kt)("li",{parentName:"ul"},"perf(figma): access to style tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/27d8dbe3c282e187f93bc4d93a0c9aa5c8162b00"},(0,n.kt)("inlineCode",{parentName:"a"},"27d8dbe"))),(0,n.kt)("li",{parentName:"ul"},"Rename 2-test-new-page to 2-test-new-page.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4e3be106cc4739e60ee5038901dbb626cf17f2e7"},(0,n.kt)("inlineCode",{parentName:"a"},"4e3be10")))),(0,n.kt)("h3",{id:"081---2022-08-26"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.8.0...0.8.1"},"0.8.1")," - 2022-08-26"),(0,n.kt)("h4",{id:"-bug-fixes-23"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(message): fix size controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee51e1dca4f84aeb9e39be525016f751acc147de"},(0,n.kt)("inlineCode",{parentName:"a"},"ee51e1d"))),(0,n.kt)("li",{parentName:"ul"},"fix(docusaurus): intro page hero title color now that headers are using tertiary color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/618e3cb7ac5533b1c087aea10452947c8676ab4e"},(0,n.kt)("inlineCode",{parentName:"a"},"618e3cb")))),(0,n.kt)("h4",{id:"-enhancements-30"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(message): restore semantic variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1c16621b4862efc64d82d475798ed40938c65f5e"},(0,n.kt)("inlineCode",{parentName:"a"},"1c16621"))),(0,n.kt)("li",{parentName:"ul"},"refactor(messages): mix semantc and token colors for messages ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/12efa75c30956df9958058242be4b8732819a5a1"},(0,n.kt)("inlineCode",{parentName:"a"},"12efa75"))),(0,n.kt)("li",{parentName:"ul"},"refactor(emotiveColors): temp update for tests ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/61a720c1ddbbad2c5bab17c8b2f890618f2a747c"},(0,n.kt)("inlineCode",{parentName:"a"},"61a720c"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): removed line between sections and moved actions back to the bottom of footer ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d9f33e4cf5a517acfbae497d6cb2fdccb048c281"},(0,n.kt)("inlineCode",{parentName:"a"},"d9f33e4"))),(0,n.kt)("li",{parentName:"ul"},"change(storybook): headings storybook now uses tertiary color by default reflecting site options ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1061e7749de2d4fe1233ccdc7f6f835ad491504a"},(0,n.kt)("inlineCode",{parentName:"a"},"1061e77"))),(0,n.kt)("li",{parentName:"ul"},"refactor(message): add container to story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1259ecead7162d2a46f5e802ba07e7e0dcb72e42"},(0,n.kt)("inlineCode",{parentName:"a"},"1259ece"))),(0,n.kt)("li",{parentName:"ul"},"refactor(message): remove override with custom background color on error ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9b40cd7ef2cca901e65a812585943c2e2d867b5f"},(0,n.kt)("inlineCode",{parentName:"a"},"9b40cd7"))),(0,n.kt)("li",{parentName:"ul"},"refactor(message): add header controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/960c2f7b524b1f049bb2f666e3e8278feca506da"},(0,n.kt)("inlineCode",{parentName:"a"},"960c2f7"))),(0,n.kt)("li",{parentName:"ul"},"change(message): use semantic colors for messages #204 from eea/refactor-message ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/22d2c43cd55a82621f2da3103652677b4b45db1a"},(0,n.kt)("inlineCode",{parentName:"a"},"22d2c43")))),(0,n.kt)("h4",{id:"-documentation-changes-12"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(figma): added figma files to repo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6bd4144ffc9c563ce224a07fe942fc4f2615c53f"},(0,n.kt)("inlineCode",{parentName:"a"},"6bd4144")))),(0,n.kt)("h3",{id:"080---2022-08-20"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.7.6...0.8.0"},"0.8.0")," - 2022-08-20"),(0,n.kt)("h4",{id:"-new-features-18"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(IconCard): card with icon instead of image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a85a1791e3a1245474dcafc4fd833350156dccb4"},(0,n.kt)("inlineCode",{parentName:"a"},"a85a179")))),(0,n.kt)("h4",{id:"-bug-fixes-24"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(docusaurus): typography guideline now has real font values for headings, body, caption and small text ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9508db918687b524c4d464539b9a4667399abb43"},(0,n.kt)("inlineCode",{parentName:"a"},"9508db9"))),(0,n.kt)("li",{parentName:"ul"},"fix(card): fix content gaps, adjust new meta section and update text color for default ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f1a78e14fc9a4b809572bd5d4d45bd10711c6eaa"},(0,n.kt)("inlineCode",{parentName:"a"},"f1a78e1"))),(0,n.kt)("li",{parentName:"ul"},"fix(item): remove duplicate argType ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dde0be5f7fe362143e248f7e53aa1d2e5df1fda0"},(0,n.kt)("inlineCode",{parentName:"a"},"dde0be5"))),(0,n.kt)("li",{parentName:"ul"},"fix(iconCard): add aria-label at links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/44f64c7127c0ccabbbf81eb5a838ee0f63284cea"},(0,n.kt)("inlineCode",{parentName:"a"},"44f64c7"))),(0,n.kt)("li",{parentName:"ul"},"fix(card): merge fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/df440ecd89eeb228f6f28df9109b84460cdfd523"},(0,n.kt)("inlineCode",{parentName:"a"},"df440ec"))),(0,n.kt)("li",{parentName:"ul"},"fix(heroblock): color even on edit page by inheriting color instead of using the tertiary color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac53fb74dedafcce231d1ca72843eff8a589c530"},(0,n.kt)("inlineCode",{parentName:"a"},"ac53fb7"))),(0,n.kt)("li",{parentName:"ul"},"fix(tab): add tabindex for accessibility error ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab512be71b86a3b696a228840e34d297928485ab"},(0,n.kt)("inlineCode",{parentName:"a"},"ab512be"))),(0,n.kt)("li",{parentName:"ul"},"fix(carousel): restore missing variable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1728312162d102aa2812eb3c7a55dac83bca8a04"},(0,n.kt)("inlineCode",{parentName:"a"},"1728312"))),(0,n.kt)("li",{parentName:"ul"},"fix(carousel): restore flex grow for cards and opacity for arrows ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce71305ab3fed5ff5c09b577e970050d3b29a2cb"},(0,n.kt)("inlineCode",{parentName:"a"},"ce71305")))),(0,n.kt)("h4",{id:"-enhancements-31"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(carousel) add links in carousel cards & update structure and variables of less files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f99cb219f3a95f5aab49a180434a4f5e0db14462"},(0,n.kt)("inlineCode",{parentName:"a"},"f99cb21"))),(0,n.kt)("li",{parentName:"ul"},"refactor(iconCard): add control for variations and link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5e1b6a1c7ab9fdce138c5643bc01763a02bed287"},(0,n.kt)("inlineCode",{parentName:"a"},"5e1b6a1"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus, fonts): documented font letter spacing modification ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/522712aeddb55f4ff96fdf4e8bea26f4575504ec"},(0,n.kt)("inlineCode",{parentName:"a"},"522712a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): css updates for card variations and styling updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c8b4a43dd25c50e77e8c71fa8fbc45cd70bde94e"},(0,n.kt)("inlineCode",{parentName:"a"},"c8b4a43"))),(0,n.kt)("li",{parentName:"ul"},"refactor(publicationCard): add links and fix accessibily issue ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/80adf6ce0f01e577c34ddba8b345a1fc562f6711"},(0,n.kt)("inlineCode",{parentName:"a"},"80adf6c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add new section in meta and remove links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bfb82ae9635d26ef478db3d63b39f67b25d11fd5"},(0,n.kt)("inlineCode",{parentName:"a"},"bfb82ae"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): add stackable functionality ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8d714fad0465cc71650dcb41236d5667ccc3e789"},(0,n.kt)("inlineCode",{parentName:"a"},"8d714fa"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): update meta section and controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5e28e12bacec6a226659553b8244aeb0165378c9"},(0,n.kt)("inlineCode",{parentName:"a"},"5e28e12"))),(0,n.kt)("li",{parentName:"ul"},"refactor(roundedCard): remove unnecessary code and controls and add all variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6305c54df14faada4058c602af2e33dbc4fad39d"},(0,n.kt)("inlineCode",{parentName:"a"},"6305c54"))),(0,n.kt)("li",{parentName:"ul"},"refactor(roundedCard): add optional link for image and header ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a6d3bf27031d189c403c4a099b09a9066a1620a2"},(0,n.kt)("inlineCode",{parentName:"a"},"a6d3bf2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add tertiary hover and update css selectors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca069484da914520c92f7d67ac92c476ff2ee4a2"},(0,n.kt)("inlineCode",{parentName:"a"},"ca06948"))),(0,n.kt)("li",{parentName:"ul"},"change(fonts): updated font sizes with values given in figma ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4b0ae48ab140d8bbbf6ccbf46eda8d957195ca50"},(0,n.kt)("inlineCode",{parentName:"a"},"4b0ae48"))),(0,n.kt)("li",{parentName:"ul"},"change(style): color, space and adjust line-height as described in docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3366da262ba2dc1c34f57964accf4d6ef6ed37e1"},(0,n.kt)("inlineCode",{parentName:"a"},"3366da2"))),(0,n.kt)("li",{parentName:"ul"},"change(headings): only h2-h6 get tertiary color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d81308c4c0d52d5610a922146f5b426d9eaf323"},(0,n.kt)("inlineCode",{parentName:"a"},"7d81308"))),(0,n.kt)("li",{parentName:"ul"},"change(site): removed Archivo import as we should only use Roboto font ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a6af0564667075d2012c114acb2ad8e1f39b926f"},(0,n.kt)("inlineCode",{parentName:"a"},"a6af056"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): use tertiary color for headings and body color mirroring the design system styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/145fe7348a19b51784a2879225d1b71a642eed45"},(0,n.kt)("inlineCode",{parentName:"a"},"145fe73"))),(0,n.kt)("li",{parentName:"ul"},"change(fonts): modified headings font size as well as line height ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f0771ea1942b6ef436a03c256491a690a52d7413"},(0,n.kt)("inlineCode",{parentName:"a"},"f0771ea"))),(0,n.kt)("li",{parentName:"ul"},"change(fonts): updated font sizes with values given in figma ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f16eef7128ed4f2e7fe97b1ec77f651dc062b771"},(0,n.kt)("inlineCode",{parentName:"a"},"f16eef7"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): use Roboto font from google fonts also for docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/adca8e911faac2d541eb2b9fecf1d9db5b8f9b4c"},(0,n.kt)("inlineCode",{parentName:"a"},"adca8e9"))),(0,n.kt)("li",{parentName:"ul"},"change(headers): added headerColor variable so that thematic sites can easily choose another heading color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f09d2c5e95e82077cc7dfef43a5c56fc73d435c3"},(0,n.kt)("inlineCode",{parentName:"a"},"f09d2c5"))),(0,n.kt)("li",{parentName:"ul"},"change(fonts): typo fixes for typography section of docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cae4b02b20ff578f5cad7c4238c36baa3cae545a"},(0,n.kt)("inlineCode",{parentName:"a"},"cae4b02"))),(0,n.kt)("li",{parentName:"ul"},"change(fonts): modified footer and header values afer global font size changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f160d354b36dc2bee0707b6d63097d5f08408abe"},(0,n.kt)("inlineCode",{parentName:"a"},"f160d35"))),(0,n.kt)("li",{parentName:"ul"},"refactor(iconCards): run prettier ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fe84e46adbc385098385120d14e7583b890db027"},(0,n.kt)("inlineCode",{parentName:"a"},"fe84e46"))),(0,n.kt)("li",{parentName:"ul"},"change(typography): inherit header colors with @headerColor variable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91d93577772534f67bb74df0c9ed260bbaccdd4c"},(0,n.kt)("inlineCode",{parentName:"a"},"91d9357"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumb): use tertiary color also for breadcrumb ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5cbd44bcabae36bcb99a1e987d701e2ea75434b"},(0,n.kt)("inlineCode",{parentName:"a"},"c5cbd44"))),(0,n.kt)("li",{parentName:"ul"},"change(heading): on homepage on the first hero set font size to h1 and inherit color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5711096e45c57b0c3c871f8dcf870c05405d217d"},(0,n.kt)("inlineCode",{parentName:"a"},"5711096"))),(0,n.kt)("li",{parentName:"ul"},"refactor(carousel): update card titles to display styling fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/edd966b5648be51f2d4056c68489648574506656"},(0,n.kt)("inlineCode",{parentName:"a"},"edd966b"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): use the tertiary color for body and heading colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/11c4ed4683df4527ce79155bc65424789e3864af"},(0,n.kt)("inlineCode",{parentName:"a"},"11c4ed4"))),(0,n.kt)("li",{parentName:"ul"},"change(typography): modified lineheight-0 after headers now use 1.2 instead of 1.25 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/04d78a8b0094d9187548e1e3b16d6fbf2248821c"},(0,n.kt)("inlineCode",{parentName:"a"},"04d78a8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add links to cards and replace description with title in carousel ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0258737d26bbb3015ee6222ec878e0477001f615"},(0,n.kt)("inlineCode",{parentName:"a"},"0258737")))),(0,n.kt)("h4",{id:"\ufe0f-others-31"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feature(heading): and cards refactoring #227 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/334fbda2d5b751858d4cc8cae832ca7f5c1ad6c2"},(0,n.kt)("inlineCode",{parentName:"a"},"334fbda"))),(0,n.kt)("li",{parentName:"ul"},"Update package.json ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3870cf3265f0dab4e181c94a6657b9fa408bf186"},(0,n.kt)("inlineCode",{parentName:"a"},"3870cf3"))),(0,n.kt)("li",{parentName:"ul"},"Header refactor 153536 #226 from eea/header-refactor-153536 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87a6fe73211eb028861e099a67e90d365c5111ea"},(0,n.kt)("inlineCode",{parentName:"a"},"87a6fe7"))),(0,n.kt)("li",{parentName:"ul"},"feature(item): icon is now stackable moving the icon on top #220 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b716acfc850345d666d99840445798cdae201a63"},(0,n.kt)("inlineCode",{parentName:"a"},"b716acf")))),(0,n.kt)("h3",{id:"076---2022-08-15"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.7.5...0.7.6"},"0.7.6")," - 2022-08-15"),(0,n.kt)("h4",{id:"-enhancements-32"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(footer): Footer updates 147837 #225 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fa9ae580c7fd45fb4983672167cb5b0b33cc6279"},(0,n.kt)("inlineCode",{parentName:"a"},"fa9ae58"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): initial redesign of main section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8e85617157cdc31a7470acfcd72b85d8fadd1bce"},(0,n.kt)("inlineCode",{parentName:"a"},"8e85617"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): restructure theme sites logo columns ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dcba45a0bfd832c7d5d1e092db8ea4040eceda57"},(0,n.kt)("inlineCode",{parentName:"a"},"dcba45a"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): set actions before thematic section on mobile ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/db25f966a214c94677192215181453e9d59ca957"},(0,n.kt)("inlineCode",{parentName:"a"},"db25f96"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): fix missing key warning from react dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/77f72d5bdc719805a6314058c741387ee7155d28"},(0,n.kt)("inlineCode",{parentName:"a"},"77f72d5"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): Footer updates 147837 #222 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32fed231f1209caeddb18e0bb75d670f20bafb88"},(0,n.kt)("inlineCode",{parentName:"a"},"32fed23")))),(0,n.kt)("h3",{id:"075---2022-08-11"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.7.3...0.7.5"},"0.7.5")," - 2022-08-11"),(0,n.kt)("h4",{id:"-enhancements-33"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(megamenu): mobile improvements with See all links, active elements and non accordion children #224 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6767b99fea3925b35e9dede0a67ea90242e5e730"},(0,n.kt)("inlineCode",{parentName:"a"},"6767b99"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): render accordion only if children have children ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/be63ce2a8e240eac26eedeff0ca104813afbc6b3"},(0,n.kt)("inlineCode",{parentName:"a"},"be63ce2"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): mobile menu design tweaks as seen in latest figma ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/26d74dc063f0b3f8d541c714a10038d79145047e"},(0,n.kt)("inlineCode",{parentName:"a"},"26d74dc"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): removed icon from at a change menu items and they are no longer bold as requested ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/043e77219979711d2f25845c6811b546e791fbf7"},(0,n.kt)("inlineCode",{parentName:"a"},"043e772"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): reset first level panels after each item pass ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/175351bdc9bab5c2d02b2717c24071ba62d4b924"},(0,n.kt)("inlineCode",{parentName:"a"},"175351b"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): mobile menu improvements #223 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b3cabfe3ddc42c2ea39ae20d01bb6fd0db478ecc"},(0,n.kt)("inlineCode",{parentName:"a"},"b3cabfe"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): fixed key error warnings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/075bf0167554869e9fc2f4938c972112e4afa2f7"},(0,n.kt)("inlineCode",{parentName:"a"},"075bf01"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): handle default active sub accordion ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6192a9938b53522682953cb73d7ccfc6ef9c1aec"},(0,n.kt)("inlineCode",{parentName:"a"},"6192a99"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): enable active border only for items not titles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fb0b8696dd73cbf3083c3006a7cff5a1901a6bac"},(0,n.kt)("inlineCode",{parentName:"a"},"fb0b869")))),(0,n.kt)("h4",{id:"\ufe0f-others-32"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Update package.json ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e21e00dc1e0b54daef2c71311a9da709bc1f7e6d"},(0,n.kt)("inlineCode",{parentName:"a"},"e21e00d")))),(0,n.kt)("h3",{id:"073---2022-08-04"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.7.2...0.7.3"},"0.7.3")," - 2022-08-04"),(0,n.kt)("h4",{id:"-enhancements-34"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(megamenu): added icon on mega menu header section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d0ad4d80fc4941e0cdbd8a2d81415387f86efc1c"},(0,n.kt)("inlineCode",{parentName:"a"},"d0ad4d8")))),(0,n.kt)("h3",{id:"072---2022-08-03"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.7.1...0.7.2"},"0.7.2")," - 2022-08-03"),(0,n.kt)("h4",{id:"-bug-fixes-25"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(contentBox): z-index of content hidden by bg when using content-box-inner ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5a7dac923d648d8fe9c9a9cbb8001969d32aea2"},(0,n.kt)("inlineCode",{parentName:"a"},"c5a7dac")))),(0,n.kt)("h4",{id:"\ufe0f-others-33"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Set focus on search input field in the popup on click ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d12c05106d9b95df1885ffa12cb284a0e50e0dfd"},(0,n.kt)("inlineCode",{parentName:"a"},"d12c051"))),(0,n.kt)("li",{parentName:"ul"},"Make cypress tests work with both slate and draft selectors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4d8e5b1d7719637a46eac8232891fc5ed1f51b6f"},(0,n.kt)("inlineCode",{parentName:"a"},"4d8e5b1")))),(0,n.kt)("h3",{id:"071---2022-08-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.7.0...0.7.1"},"0.7.1")," - 2022-08-01"),(0,n.kt)("h3",{id:"070---2022-08-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.6.5...0.7.0"},"0.7.0")," - 2022-08-01"),(0,n.kt)("h4",{id:"-new-features-19"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(accordion,buttons): primary, secondary and tertiary variations #209 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c34617f7a7d7b6b7568c3127f4ae0f52bd57cf8a"},(0,n.kt)("inlineCode",{parentName:"a"},"c34617f")))),(0,n.kt)("h4",{id:"-bug-fixes-26"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(megamenu): key warning errors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ecd27921546204dfa4aa23d25188876e52cda7a"},(0,n.kt)("inlineCode",{parentName:"a"},"4ecd279"))),(0,n.kt)("li",{parentName:"ul"},"fix(container): add padding also for block editors when we are on the add page not just edit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b857aad7855c30c5059b0f0f7c0f720826a71aa7"},(0,n.kt)("inlineCode",{parentName:"a"},"b857aad"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): bump opacity of gradient class to get rid of green hue of header text ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2011b40d384ae5b54a0525e6d9afc88c02f6ca90"},(0,n.kt)("inlineCode",{parentName:"a"},"2011b40"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): remove console log ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3a200233609bbcea39d8e519dc292a132a98aaa3"},(0,n.kt)("inlineCode",{parentName:"a"},"3a20023")))),(0,n.kt)("h4",{id:"-enhancements-35"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(callToAction): add tertiary variant and restructure exports ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac6695ab3066c41739ec4852f0ec3c3bb6cea346"},(0,n.kt)("inlineCode",{parentName:"a"},"ac6695a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(accordion): add color variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3504c15cc861803dc263fb2ad3b6a478043ced33"},(0,n.kt)("inlineCode",{parentName:"a"},"3504c15"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): WIP bringing back rendering of item with callback and path modification ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e43d4340ea82afde950e5fee44a76119060fc28"},(0,n.kt)("inlineCode",{parentName:"a"},"6e43d43"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): add slide down transition and update targetRefs on close ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/96671574f5f7dd992269c42e509598f62bba516d"},(0,n.kt)("inlineCode",{parentName:"a"},"9667157"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): use renderMenuItem in order to render menu items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9ed5cbdf120ee2c92e5f14c09e5289a5abe3f8b0"},(0,n.kt)("inlineCode",{parentName:"a"},"9ed5cbd"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): replaced eionet logo with an svg variant and tweaked size of eionet to match size of eea logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32ce4623ad454edec864ad6c8b45cbf99465bede"},(0,n.kt)("inlineCode",{parentName:"a"},"32ce462"))),(0,n.kt)("li",{parentName:"ul"},"refactor(callToAction): update tertiary state colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/159668ac526a98032392bcbd2c115dc448193152"},(0,n.kt)("inlineCode",{parentName:"a"},"159668a"))),(0,n.kt)("li",{parentName:"ul"},"change(accordion): style default accordion using the grey from semantic ui ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e24907df397457bd9704905aa29ea5d7e1d396cd"},(0,n.kt)("inlineCode",{parentName:"a"},"e24907d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(accordion): add variations and create a default export ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a9c68ffe933c9d700e46db3e0cbbd9e3820c7c7"},(0,n.kt)("inlineCode",{parentName:"a"},"4a9c68f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(colors): add tertiary shades for element states ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1e24a7e13b50f1ee7bd9bd44f3b2eb8e4460c691"},(0,n.kt)("inlineCode",{parentName:"a"},"1e24a7e"))),(0,n.kt)("li",{parentName:"ul"},"change(tests): try to modify tests to use slate instead of draft ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a2e248593433a7a8bf612008c12a3a20a0049d86"},(0,n.kt)("inlineCode",{parentName:"a"},"a2e2485"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): set active class on storybook list items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/112bff195cd07e789b352ae239a148a168b4d877"},(0,n.kt)("inlineCode",{parentName:"a"},"112bff1"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): add border for active element of menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5e7dfa539dc0d126dfb057ac2d293c94b31561bb"},(0,n.kt)("inlineCode",{parentName:"a"},"5e7dfa5"))),(0,n.kt)("li",{parentName:"ul"},"change(package): condition modification of navDepth settings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dd21dadf34f87f08223be3b98c06e7a2f0714326"},(0,n.kt)("inlineCode",{parentName:"a"},"dd21dad"))),(0,n.kt)("li",{parentName:"ul"},"change(mega menu): use non variable to fix build of volto-kitkat-frontend ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ecd652405ba616c9defc86fd793f8c066c0af1e"},(0,n.kt)("inlineCode",{parentName:"a"},"3ecd652"))),(0,n.kt)("li",{parentName:"ul"},"change(header): prefix mega-menu active class for adding border ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32898cb19c20ee7696c51b99cd9df25a333ae6e9"},(0,n.kt)("inlineCode",{parentName:"a"},"32898cb"))),(0,n.kt)("li",{parentName:"ul"},"change(tests): use data-slate-editor instead of contents that was found in draft js instead of slate ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1e0413cf117c098b188e00249c323f2f718b9299"},(0,n.kt)("inlineCode",{parentName:"a"},"1e0413c"))),(0,n.kt)("li",{parentName:"ul"},"change(stories): hide variant control from button link story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/43f8c412f6762edbed9c60e613736d5b60677cd1"},(0,n.kt)("inlineCode",{parentName:"a"},"43f8c41"))),(0,n.kt)("li",{parentName:"ul"},"change(stories): hide variant control from button link story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aea712668331f5681028d961b42a05655f1113d3"},(0,n.kt)("inlineCode",{parentName:"a"},"aea7126")))),(0,n.kt)("h4",{id:"\ufe0f-others-34"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feature(theme): added context navigation component story and default style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5a6955fe935cf6a07f6593164014ed4c9e77d88f"},(0,n.kt)("inlineCode",{parentName:"a"},"5a6955f"))),(0,n.kt)("li",{parentName:"ul"},"feature(megamenu): open default accordions on mobile navigation based on pathname ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cc299c1047f96aa5f85cdc4bb8bb9b3b4fb9ca5e"},(0,n.kt)("inlineCode",{parentName:"a"},"cc299c1"))),(0,n.kt)("li",{parentName:"ul"},"fix eslint warnings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3b30282ea4df59f2d05644cae5c1d703b4dc48b3"},(0,n.kt)("inlineCode",{parentName:"a"},"3b30282"))),(0,n.kt)("li",{parentName:"ul"},"bump release version to 0.7.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fa82cbd7d50765c322bc5c7c58abb5675e0aadad"},(0,n.kt)("inlineCode",{parentName:"a"},"fa82cbd"))),(0,n.kt)("li",{parentName:"ul"},"Theme fixes, mega menu selected element both in desktop and mobile #211 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4827292a9badb02f178b7431cc63e11070784ea"},(0,n.kt)("inlineCode",{parentName:"a"},"b482729"))),(0,n.kt)("li",{parentName:"ul"},"feature(mega-menu): added menu slide down animation #208 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4360d0ef570fbfcc9989170219f7826e5ed780cf"},(0,n.kt)("inlineCode",{parentName:"a"},"4360d0e")))),(0,n.kt)("h3",{id:"065---2022-07-06"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.6.1...0.6.5"},"0.6.5")," - 2022-07-06"),(0,n.kt)("h4",{id:"-bug-fixes-27"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(header): double click to close dropdown is no longer required ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8a2ed0d1e671d12239ecaf250e68b3187c12a53"},(0,n.kt)("inlineCode",{parentName:"a"},"b8a2ed0"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): menu generation when atAGlance isn't found ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d68b03c05f7671e7ea154efe0199c29a3734fbcf"},(0,n.kt)("inlineCode",{parentName:"a"},"d68b03c"))),(0,n.kt)("li",{parentName:"ul"},"fix(menu): removed minHeight that enlarged the global menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/133be1e43d9b7778fd94388629400c5f2b707ff4"},(0,n.kt)("inlineCode",{parentName:"a"},"133be1e"))),(0,n.kt)("li",{parentName:"ul"},"fix(hero): image dimensions when full width and height isn't enabled ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4114f731cce63dc520bfd00cd487943181cec2ee"},(0,n.kt)("inlineCode",{parentName:"a"},"4114f73"))),(0,n.kt)("li",{parentName:"ul"},"fix(contentBox): removed negative z-index that hid fullwidth bg color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bd60faff53205da95d94930517f2ac830ec523d1"},(0,n.kt)("inlineCode",{parentName:"a"},"bd60faf")))),(0,n.kt)("h4",{id:"-enhancements-36"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(hero): tweaked hero block height and padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/994b6f8943c061657792df8adcbdee5da487ce43"},(0,n.kt)("inlineCode",{parentName:"a"},"994b6f8"))),(0,n.kt)("li",{parentName:"ul"},"change(item): tweak size and padding of icon when used inside item ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dbdef191e70bf59dcfddf63c8f9f9a1343266a59"},(0,n.kt)("inlineCode",{parentName:"a"},"dbdef19"))),(0,n.kt)("li",{parentName:"ul"},"change(typography): updated letterspacing values and clarified values used for certain type tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8a13bf8b3691d288209532842fb2c80962d652c0"},(0,n.kt)("inlineCode",{parentName:"a"},"8a13bf8"))),(0,n.kt)("li",{parentName:"ul"},"change(item): enable theming for icon and text color and added tertiary option ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d4444feedd1cd7e6e8f8da630b4b53a19050d1b"},(0,n.kt)("inlineCode",{parentName:"a"},"6d4444f"))),(0,n.kt)("li",{parentName:"ul"},"change(header): top section chevron sizes and margin as requested in enhancements document ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b307c74a671c10a5a6703dcb2126c3c36679c6f5"},(0,n.kt)("inlineCode",{parentName:"a"},"b307c74"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): add underline to links when applied to headers and use tertiary color by default ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/874f956c61e65ddbb6a240865f3946bb84247712"},(0,n.kt)("inlineCode",{parentName:"a"},"874f956"))),(0,n.kt)("li",{parentName:"ul"},"change(utilities): wrap in quotes h2 and h3 of quoted-wrapper ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8aa471604fb127cfa535373bb90a44b4204dd0f4"},(0,n.kt)("inlineCode",{parentName:"a"},"8aa4716"))),(0,n.kt)("li",{parentName:"ul"},"change(package): bump package version to 0.6.5 denoting bug fixes release ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0585aebaeb9e3483ba230110d99a1a875590ad66"},(0,n.kt)("inlineCode",{parentName:"a"},"0585aeb")))),(0,n.kt)("h3",{id:"061---2022-07-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.6.0...0.6.1"},"0.6.1")," - 2022-07-01"),(0,n.kt)("h4",{id:"-new-features-20"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(UnderlinedTitle): create story and necessary utilities ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8beb56b64ca76fb9f0f6df0f3554e64449a64868"},(0,n.kt)("inlineCode",{parentName:"a"},"8beb56b"))),(0,n.kt)("li",{parentName:"ul"},"feat(headers): added underlined titles with theming support ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af675616f9e002458501cf8b90742514153a298f"},(0,n.kt)("inlineCode",{parentName:"a"},"af67561")))),(0,n.kt)("h4",{id:"-enhancements-37"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(heading): move underline story and update controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2c9bfd279eafc44435d223be326f9496856c2154"},(0,n.kt)("inlineCode",{parentName:"a"},"2c9bfd2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(underlineTitle): add content box for different variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/087891535059d6c2d7d2c2accded20f6ba601bb5"},(0,n.kt)("inlineCode",{parentName:"a"},"0878915"))),(0,n.kt)("li",{parentName:"ul"},"refactor(underlinedTitle): add control for changing heading size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/211f5158bff2b437aac60f26ba63f9adb6be540a"},(0,n.kt)("inlineCode",{parentName:"a"},"211f515"))),(0,n.kt)("li",{parentName:"ul"},"refactor(underlinedTitle): Restore text variation dropdown control ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bd8c61129d2c80475af8d0e9310412d5c3a82169"},(0,n.kt)("inlineCode",{parentName:"a"},"bd8c611"))),(0,n.kt)("li",{parentName:"ul"},"refactor(utilities): add color variation for headings and text ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e3a779ec4fa3b712fcd32124f6f83ab784d2223"},(0,n.kt)("inlineCode",{parentName:"a"},"7e3a779"))),(0,n.kt)("li",{parentName:"ul"},"refactor(utilities): update border bottom utility and restore line height for headings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7fe4a7b9fee579d213fe3945a4e548ff089784bd"},(0,n.kt)("inlineCode",{parentName:"a"},"7fe4a7b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(headings): update the line height of headers according to docusaurus instructions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9da19b3e1ea1fd93431e00edf3dc9a443e94f27a"},(0,n.kt)("inlineCode",{parentName:"a"},"9da19b3")))),(0,n.kt)("h4",{id:"-internal-changes-13"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(countup): package for statistics ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/26fcd09bbd8d44119d5ca957542863be8c64836b"},(0,n.kt)("inlineCode",{parentName:"a"},"26fcd09")))),(0,n.kt)("h3",{id:"060---2022-07-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.5.5...0.6.0"},"0.6.0")," - 2022-07-01"),(0,n.kt)("h4",{id:"-bug-fixes-28"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(item): adjust the container in stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a848c46b5bf3153ec993a21a530e120bae872407"},(0,n.kt)("inlineCode",{parentName:"a"},"a848c46"))),(0,n.kt)("li",{parentName:"ul"},"fix(tag): align start for tags on mobile, update path for Tag List and add containers ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b9de8452c42ed6d16028ce147f2d7a062b895d67"},(0,n.kt)("inlineCode",{parentName:"a"},"b9de845"))),(0,n.kt)("li",{parentName:"ul"},"fix(item): update image width & height on mobiles and add 3 line clamp for description ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0cd2c46c945ff85b55183994990fae9cf450f3d1"},(0,n.kt)("inlineCode",{parentName:"a"},"0cd2c46"))),(0,n.kt)("li",{parentName:"ul"},"fix(pageheader): metadata font size on mobile to be readable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0a9b1fa7db6f0b11265f9eb4d28f25b23bedc79a"},(0,n.kt)("inlineCode",{parentName:"a"},"0a9b1fa"))),(0,n.kt)("li",{parentName:"ul"},"fix(breadcrumb): fixed variable name for breadcrumb item ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2b547eb43e0db4aa9bb63b4e4ba7f541f357fbd0"},(0,n.kt)("inlineCode",{parentName:"a"},"2b547eb")))),(0,n.kt)("h4",{id:"-enhancements-38"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(Item):create item story with custom default class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/069ae02a7cc2b15b7e6732e46f52d07eaa4502b1"},(0,n.kt)("inlineCode",{parentName:"a"},"069ae02"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pagination): add pastanage menu overrides and remove any eea theme css from default story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/508081090baaeb455130c760c6c0e7e23972d84a"},(0,n.kt)("inlineCode",{parentName:"a"},"5080810"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): update variables from px to rem ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/30eed78c170e5719ba4fb85c3a171db3f97d63c8"},(0,n.kt)("inlineCode",{parentName:"a"},"30eed78"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Item):add default item mobile padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/35184655e3225b8ad63626c8e521b5dcf59eaa3b"},(0,n.kt)("inlineCode",{parentName:"a"},"3518465"))),(0,n.kt)("li",{parentName:"ul"},"change(site): added fixes from custom ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0fe4d80586c8877d58905ec40aa7df19c2f4e32f"},(0,n.kt)("inlineCode",{parentName:"a"},"0fe4d80"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Pagination): add default pagination stopry and rename previous as Secondary ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a5e3e13b40d4d1d0c96f1efaa3a0c326d60c6d93"},(0,n.kt)("inlineCode",{parentName:"a"},"a5e3e13"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pagination): comment out secondary pagination and its styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bcf4cff1cff490718751475354b8fb32da174383"},(0,n.kt)("inlineCode",{parentName:"a"},"bcf4cff"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tags): remove content class and add flex wrap ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d6333ca7e61a588d8ffe4d0d2e02005c0aa12379"},(0,n.kt)("inlineCode",{parentName:"a"},"d6333ca"))),(0,n.kt)("li",{parentName:"ul"},"change(logo): use a real svg logo for white eea logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3b80dc7698c3dbab5d3834cc62f5102c2ace0166"},(0,n.kt)("inlineCode",{parentName:"a"},"3b80dc7"))),(0,n.kt)("li",{parentName:"ul"},"change(header): show eea information systems on tablet as well ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce82cebb554eb11a35ea2b3ee0c62bc645716476"},(0,n.kt)("inlineCode",{parentName:"a"},"ce82ceb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): update letter spacing tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f8753b7527b1bf7271102666a8662a74b2b1775"},(0,n.kt)("inlineCode",{parentName:"a"},"5f8753b"))),(0,n.kt)("li",{parentName:"ul"},"change(letterspacing): updated letter spacing positive values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b31818f292ce7ce8711084116a7b4df78cca33f0"},(0,n.kt)("inlineCode",{parentName:"a"},"b31818f"))),(0,n.kt)("li",{parentName:"ul"},"change(pageheader): add bottom margin on mobile for sharing dropdown actions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d3cda4732ec94dac91b36ef10014fbbe08a0a470"},(0,n.kt)("inlineCode",{parentName:"a"},"d3cda47"))),(0,n.kt)("li",{parentName:"ul"},"change(pageheader): removed blogger, reddit and stumbleupon sharing links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e4acc4e83c120cda59d94f04867a53e21bf322ab"},(0,n.kt)("inlineCode",{parentName:"a"},"e4acc4e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Item): add default item background color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c978c8d05355065466a8a661844237a9df103b94"},(0,n.kt)("inlineCode",{parentName:"a"},"c978c8d"))),(0,n.kt)("li",{parentName:"ul"},"change(package): bump package version ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f01f72ba6b09b6aae00c54e446bafddb48c4cd1"},(0,n.kt)("inlineCode",{parentName:"a"},"1f01f72")))),(0,n.kt)("h4",{id:"-internal-changes-14"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(item): update item image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e585e9d8c85a3627696b55c0505e29e8a8c33f7f"},(0,n.kt)("inlineCode",{parentName:"a"},"e585e9d")))),(0,n.kt)("h4",{id:"-documentation-changes-13"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(colors): token usage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c433ec6fcf190f85ab1dd81ea3e63eeb381d0c28"},(0,n.kt)("inlineCode",{parentName:"a"},"c433ec6"))),(0,n.kt)("li",{parentName:"ul"},"docs(Docusaurus): typography and spacing updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48d1269dce396aec26db1d1e2f777851a26eaa81"},(0,n.kt)("inlineCode",{parentName:"a"},"48d1269"))),(0,n.kt)("li",{parentName:"ul"},"docs(Docusaurus): various fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a972a31f7932d29d61a46da251c0c98994516365"},(0,n.kt)("inlineCode",{parentName:"a"},"a972a31"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/66d95e4fee695a20de47f5476712034f9f07f4a8"},(0,n.kt)("inlineCode",{parentName:"a"},"66d95e4")))),(0,n.kt)("h4",{id:"\ufe0f-others-35"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Tabs block custom border left/top ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca4cce05ddb603a26d729dfe31f0f11fda7563fb"},(0,n.kt)("inlineCode",{parentName:"a"},"ca4cce0"))),(0,n.kt)("li",{parentName:"ul"},"Fix sidebar tabs in Volto CSS ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c287db5abbfe068d4b255c41fd58d0433d2640c4"},(0,n.kt)("inlineCode",{parentName:"a"},"c287db5")))),(0,n.kt)("h3",{id:"055---2022-06-23"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.5.4...0.5.5"},"0.5.5")," - 2022-06-23"),(0,n.kt)("h4",{id:"-bug-fixes-29"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(contentBox): color of cards when inside content-boxes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/76a452031473f43928dee1d3ee705d06101e6a21"},(0,n.kt)("inlineCode",{parentName:"a"},"76a4520")))),(0,n.kt)("h4",{id:"-enhancements-39"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(homepage): moved fixes of homepage to custom and colored carousel arrow ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0a226ef3f5d328d45513764bec02d58241417db0"},(0,n.kt)("inlineCode",{parentName:"a"},"0a226ef")))),(0,n.kt)("h3",{id:"054---2022-06-16"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.5.3...0.5.4"},"0.5.4")," - 2022-06-16"),(0,n.kt)("h4",{id:"-bug-fixes-30"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(block-style): Content box preview in sidebar ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6362766f5e8dabf778e3864d2bb08966a55fc078"},(0,n.kt)("inlineCode",{parentName:"a"},"6362766"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): ensure transparency goes as high as the search icon ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4470e132e1e70fba3fdfb33fc63a1cc9d62700e8"},(0,n.kt)("inlineCode",{parentName:"a"},"4470e13")))),(0,n.kt)("h4",{id:"-enhancements-40"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(contentBox): add background as before element instead of using full-width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e0a5962c1b9cb0d3ef9a8d7b7208eded34eb3ce"},(0,n.kt)("inlineCode",{parentName:"a"},"7e0a596"))),(0,n.kt)("li",{parentName:"ul"},"change(content-box): content box links are now underlined ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f7976f50f5807a884522d6dba871a2757a1c5a98"},(0,n.kt)("inlineCode",{parentName:"a"},"f7976f5"))),(0,n.kt)("li",{parentName:"ul"},"change(homepage): added fixes from custom ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c3e03331d328f4fd7c6689f93bc1f1156013b8a9"},(0,n.kt)("inlineCode",{parentName:"a"},"c3e0333"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): add margin top with the height of the top section on edit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fefa6bb0f513e221ddb587f081c0e7d0c3067dfd"},(0,n.kt)("inlineCode",{parentName:"a"},"fefa6bb"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): fix default card color when inside content-boxes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6fdf3aabf9515289b36a5822e21edc5d282c4536"},(0,n.kt)("inlineCode",{parentName:"a"},"6fdf3aa"))),(0,n.kt)("li",{parentName:"ul"},"change(container): removed override of content-box-inner container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/66fe7d45adc631c3ebf0e8dd11de19d7ff60b894"},(0,n.kt)("inlineCode",{parentName:"a"},"66fe7d4")))),(0,n.kt)("h3",{id:"053---2022-06-16"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.5.2...0.5.3"},"0.5.3")," - 2022-06-16"),(0,n.kt)("h4",{id:"-bug-fixes-31"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(homepage): hero and homepage fixes for #151156 #198 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/43d4efc508750e0e9cbb93b9bffc3721be452c5a"},(0,n.kt)("inlineCode",{parentName:"a"},"43d4efc"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): fixed top section width on edit page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce5898b5ee41ea6959a2c454b3fb98216d71feb3"},(0,n.kt)("inlineCode",{parentName:"a"},"ce5898b")))),(0,n.kt)("h4",{id:"-enhancements-41"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(hero): added min height to hero-block-image-wrapper ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3cc37c027597573281710c9db98c687057d261dd"},(0,n.kt)("inlineCode",{parentName:"a"},"3cc37c0"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): spaced hero block has a 3rem margin top and bottom ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c463b033dda601bfd475b282bc0003200a053d45"},(0,n.kt)("inlineCode",{parentName:"a"},"c463b03"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): added extra top margin on hero-block-body from tablet and up within homepage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/64142c3c45f6a8ea6502842055a2341dcf16088c"},(0,n.kt)("inlineCode",{parentName:"a"},"64142c3"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): tweak min height of hero block ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e1271b4b5fdcd8205f0bec8b88ab9ae31f62251f"},(0,n.kt)("inlineCode",{parentName:"a"},"e1271b4"))),(0,n.kt)("li",{parentName:"ul"},"change(card,contentBox): use inherit for text color to inherit black from body ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c1ba3b6ddc16ddc7394aba8d78cad73b5a8c34cb"},(0,n.kt)("inlineCode",{parentName:"a"},"c1ba3b6"))),(0,n.kt)("li",{parentName:"ul"},"change(container): on section-edit modify only left and right padding values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fe6e3ec764643ec01e20ae9dbdde921774ef04cd"},(0,n.kt)("inlineCode",{parentName:"a"},"fe6e3ec"))),(0,n.kt)("li",{parentName:"ul"},"change(utilities): bump z-index of overlay class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ede3209556b620d2252bb03d4c994a92b6708fd2"},(0,n.kt)("inlineCode",{parentName:"a"},"ede3209"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): fixed variable reference for margin of body from homepage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/092b90b2a902b71cc96132ca3c96108edda56342"},(0,n.kt)("inlineCode",{parentName:"a"},"092b90b")))),(0,n.kt)("h3",{id:"052---2022-06-14"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.5.1...0.5.2"},"0.5.2")," - 2022-06-14"),(0,n.kt)("h4",{id:"-new-features-21"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(contentBox) : add new Content Box component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ebbb47fe685f9809aa3572263be376d9688371e"},(0,n.kt)("inlineCode",{parentName:"a"},"2ebbb47"))),(0,n.kt)("li",{parentName:"ul"},"feat(ContentBox): Add primary, secondary, tertiary themes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87cb2fe7e4cd5c2872299756f493e371abcbb05f"},(0,n.kt)("inlineCode",{parentName:"a"},"87cb2fe"))),(0,n.kt)("li",{parentName:"ul"},"feat(ContentBox): Update storybook with available themes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93b26b2f5f1d627aa8049df61257499e4798dd79"},(0,n.kt)("inlineCode",{parentName:"a"},"93b26b2")))),(0,n.kt)("h4",{id:"-enhancements-42"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(contentBox): restructure the component to be more flexible ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f0d2de67e43fafa10052871f99ac841c83cf8157"},(0,n.kt)("inlineCode",{parentName:"a"},"f0d2de6")))),(0,n.kt)("h4",{id:"-internal-changes-15"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(contentBox) : add lint changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5aaf740594f0001b1672bb6dc18d973f55c881f0"},(0,n.kt)("inlineCode",{parentName:"a"},"5aaf740")))),(0,n.kt)("h4",{id:"\ufe0f-others-36"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"perf(eol): change to lf ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/78b2955ff73d9436134d1a6399040b2d7c7f5714"},(0,n.kt)("inlineCode",{parentName:"a"},"78b2955"))),(0,n.kt)("li",{parentName:"ul"},"Cleanup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2b128dface95b560588a343f1ddf7bbaf3efb320"},(0,n.kt)("inlineCode",{parentName:"a"},"2b128df")))),(0,n.kt)("h3",{id:"051---2022-06-13"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.5.0...0.5.1"},"0.5.1")," - 2022-06-13"),(0,n.kt)("h4",{id:"-enhancements-43"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(header): changed homepage text color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/64ce8b61f8f2150513e09bf2926b48aa2ae1071c"},(0,n.kt)("inlineCode",{parentName:"a"},"64ce8b6"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): added styles for adding dark overlay to hero ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bf1d292fecfa8a6b222558f0d93f48e19bf6b8ea"},(0,n.kt)("inlineCode",{parentName:"a"},"bf1d292"))),(0,n.kt)("li",{parentName:"ul"},"change(homepage): hide stagingBanner on homepage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fb6e319dd10f4d148cc8f3b33dafc43280a0254f"},(0,n.kt)("inlineCode",{parentName:"a"},"fb6e319"))),(0,n.kt)("li",{parentName:"ul"},"change(header): use variable for homepage hero-block padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/89ff3441f269281ffb3da32cd3e5c64715b3204b"},(0,n.kt)("inlineCode",{parentName:"a"},"89ff344"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): modified grey-4 color to point to a 10% shade from original color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b406283e61c7356bec9d453567cd1ccde496880d"},(0,n.kt)("inlineCode",{parentName:"a"},"b406283"))),(0,n.kt)("li",{parentName:"ul"},"change(header): added min-height for mega menu needed for 1 items menus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/18814f48fb743c88d05554e9a1773f8d85dec86c"},(0,n.kt)("inlineCode",{parentName:"a"},"18814f4"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): hero section block integration #192 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ea2f40583951016c164c9abdf22d8e809d207fe"},(0,n.kt)("inlineCode",{parentName:"a"},"4ea2f40")))),(0,n.kt)("h4",{id:"\ufe0f-others-37"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Add hero block style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fa39656fd661d8af95f483a6f33a08e4c93c42f1"},(0,n.kt)("inlineCode",{parentName:"a"},"fa39656"))),(0,n.kt)("li",{parentName:"ul"},"Add padding if hero block is not full-width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/808b83957d6a866cc31c928f414fa8fa5da517a1"},(0,n.kt)("inlineCode",{parentName:"a"},"808b839"))),(0,n.kt)("li",{parentName:"ul"},"Cleanup available languages ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0c490512a6a6524efe9a37b4b61ab0061a240abb"},(0,n.kt)("inlineCode",{parentName:"a"},"0c49051"))),(0,n.kt)("li",{parentName:"ul"},"Use 1.5 rem ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1125cd7c65332fc5961ffbbbd2d2ab6bcc8b1b5b"},(0,n.kt)("inlineCode",{parentName:"a"},"1125cd7")))),(0,n.kt)("h3",{id:"050---2022-06-11"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.4.5...0.5.0"},"0.5.0")," - 2022-06-11"),(0,n.kt)("h4",{id:"-new-features-22"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(hero): added storybook implementation of hero component #172 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/17b9d1693e31bf7b3b41ca84be7bd21f07065674"},(0,n.kt)("inlineCode",{parentName:"a"},"17b9d16"))),(0,n.kt)("li",{parentName:"ul"},"feat(hero): add hero block component and stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6019fc843ec14a8afc7558e92c2d4b4bb14ee199"},(0,n.kt)("inlineCode",{parentName:"a"},"6019fc8")))),(0,n.kt)("h4",{id:"-bug-fixes-32"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(header): Internal links in mega menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d8ca13558c3e8c336800791f2fea8a8d33a2b602"},(0,n.kt)("inlineCode",{parentName:"a"},"d8ca135"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): show active menu when clicking on children ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a54fa67a1a92e2ab4216e6d149f66e1ee53aab89"},(0,n.kt)("inlineCode",{parentName:"a"},"a54fa67"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): accessibility and dropdown possition fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/505ac36a27d86e620fb5af515a0b8b5979610f0a"},(0,n.kt)("inlineCode",{parentName:"a"},"505ac36"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): fix accessibility issue by David ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/783dcec0d140e6e6e568d0f82833dcbf8a5c7d3d"},(0,n.kt)("inlineCode",{parentName:"a"},"783dcec"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): dropdowns disappear on resize ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/52338fd3e711f4918612e052dc2034a8d9bd40bd"},(0,n.kt)("inlineCode",{parentName:"a"},"52338fd"))),(0,n.kt)("li",{parentName:"ul"},"fix(header-topdropdown): dedupe html elements for topdropdowns ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cd8a2a7ea091e81b736438f7c2a87c254af1b092"},(0,n.kt)("inlineCode",{parentName:"a"},"cd8a2a7"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): transparency class should apply on the current bg color or image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f9a0033c5538cb19f08f26cf28d47954cc52607d"},(0,n.kt)("inlineCode",{parentName:"a"},"f9a0033"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): mobile dropdown now visible ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/34371b436f2ec100f3920f78de49983ba16679b0"},(0,n.kt)("inlineCode",{parentName:"a"},"34371b4"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): dropdown disappears after window resize #116 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fc7dd8bd7911421fb734a696a2dd5d3ad3b652b0"},(0,n.kt)("inlineCode",{parentName:"a"},"fc7dd8b"))),(0,n.kt)("li",{parentName:"ul"},"fix(header-topdropdown): dedupe html dropdown elements for topdropdowns #115 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f10a7a8743a5fb2cecd0c3374ec9d894e914143f"},(0,n.kt)("inlineCode",{parentName:"a"},"f10a7a8")))),(0,n.kt)("h4",{id:"-enhancements-44"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): update mega menu in header component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2d1ce454553d116efa96288079b8b77649e10abb"},(0,n.kt)("inlineCode",{parentName:"a"},"2d1ce45"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update structure and variables of top bar ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af709094f94f0cc2e2309b1aedb376e45dc7f136"},(0,n.kt)("inlineCode",{parentName:"a"},"af70909"))),(0,n.kt)("li",{parentName:"ul"},"change(header): renamed mega menu items href attribute to url ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ed8144589f87a9ad219c97193863c999a72cb6d"},(0,n.kt)("inlineCode",{parentName:"a"},"3ed8144"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update main section and and add color variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2f0fd1de7c04eff4b2a9b62d03dd13a1b0d69bc"},(0,n.kt)("inlineCode",{parentName:"a"},"f2f0fd1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): minor updates on colors and widths ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a70129fd929fedb344a47e049cca94274e84a3b1"},(0,n.kt)("inlineCode",{parentName:"a"},"a70129f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero): add full-heigh control to adjust height ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a45cb7c599cdc11426207001e67d8f7d727233fe"},(0,n.kt)("inlineCode",{parentName:"a"},"a45cb7c"))),(0,n.kt)("li",{parentName:"ul"},"change(header): disable sticky setting until feature is more stable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1d7af954c85cb6a8a657c1625e4ae863e562346a"},(0,n.kt)("inlineCode",{parentName:"a"},"1d7af95"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero):make button variant and inverted different button controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e182ca9ecdb76507205d84f83cad6a79dd74a03"},(0,n.kt)("inlineCode",{parentName:"a"},"7e182ca"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header):main bar sticky on scroll up ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9c9e7c6f9651c0663a1eab1856d7324a73afb2de"},(0,n.kt)("inlineCode",{parentName:"a"},"9c9e7c6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(headings): update heading sizes for mobile ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19f3ccacaf2c744b5f5c2ec8635773de7ef0016b"},(0,n.kt)("inlineCode",{parentName:"a"},"19f3cca"))),(0,n.kt)("li",{parentName:"ul"},"change(header): hide first link(home) from header menu on site ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ae7f3b9385620eb3d840dd90f512e37cd8556a6d"},(0,n.kt)("inlineCode",{parentName:"a"},"ae7f3b9"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): typo correction and key setting on list.items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/96d2c4fbfa722d22a215e8d27f1400e65fe9476e"},(0,n.kt)("inlineCode",{parentName:"a"},"96d2c4f"))),(0,n.kt)("li",{parentName:"ul"},"change(header): use Link instead of a tag for menu items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9812b3fba7b8305399d6972daf135b8a2d88e876"},(0,n.kt)("inlineCode",{parentName:"a"},"9812b3f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add control for inverted logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/023ca45e6f263166211cbea0d63b1938d11221da"},(0,n.kt)("inlineCode",{parentName:"a"},"023ca45"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero): move quoted utility to h2 tag ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7376676b4875494f16c49945f6b5dac19c6b8009"},(0,n.kt)("inlineCode",{parentName:"a"},"7376676"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add link for menu title inside desktop mega menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24355d000b2bd808b2031cd2b78e60cafb9ad5b1"},(0,n.kt)("inlineCode",{parentName:"a"},"24355d0"))),(0,n.kt)("li",{parentName:"ul"},"refactor(utilities): update hex with color token ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8dc65ef55a62dcb32b6eb8a684524a8dc1fa6ba6"},(0,n.kt)("inlineCode",{parentName:"a"},"8dc65ef"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): and mega menu to latest spec #114 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/44fcf68be242f97ced852b28ac3ab820dc0e1045"},(0,n.kt)("inlineCode",{parentName:"a"},"44fcf68"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update search input and file endings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/afab36f96f245e197eff528cb1d9e6fea45bc7ba"},(0,n.kt)("inlineCode",{parentName:"a"},"afab36f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add control that toggles transparency class on main section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8d4bdb9c527f102ffd3718f32bf1a43309a9bb4"},(0,n.kt)("inlineCode",{parentName:"a"},"b8d4bdb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): restore union dropdown after implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e98bab497ee10ad89d2dfed76c7117b633206fe"},(0,n.kt)("inlineCode",{parentName:"a"},"7e98bab"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): minor responsive fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/16a000634505c9e8f8b310860a30b62798a0fb87"},(0,n.kt)("inlineCode",{parentName:"a"},"16a0006"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero): align hero's text and meta seperately ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4fa958f7c7cc6d331a8eb7aaf25dc44d6cd3632a"},(0,n.kt)("inlineCode",{parentName:"a"},"4fa958f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero):add button variant controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f362a7b2ec273131fa0876f23b74c740c7217b3a"},(0,n.kt)("inlineCode",{parentName:"a"},"f362a7b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update search input ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/368962eabb668e2ec1bdcd18ae81658e7b1d911b"},(0,n.kt)("inlineCode",{parentName:"a"},"368962e"))),(0,n.kt)("li",{parentName:"ul"},"change(header): mark top level active menu item ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/665c449bc2667cc1471a4b97923c897ad3506792"},(0,n.kt)("inlineCode",{parentName:"a"},"665c449"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero):prettier & style changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d84688440417a430afd9fd24f4c8cfeef0121203"},(0,n.kt)("inlineCode",{parentName:"a"},"d846884"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add control for main section stickiness ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2f07572f78074137e7e6a49585273210ed5cedcb"},(0,n.kt)("inlineCode",{parentName:"a"},"2f07572"))),(0,n.kt)("li",{parentName:"ul"},"change(header): use viewport width for changing mobile text in header dropdowns ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b50fa585c0abeedc04a46395f08e50a9e112c430"},(0,n.kt)("inlineCode",{parentName:"a"},"b50fa58"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add fluid font sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f2743e39107fd1bd00a54e03bf92963eb9853f2"},(0,n.kt)("inlineCode",{parentName:"a"},"5f2743e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header) add position sticky & transparent for main section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/29df772edfe23b1752aa3d184659eea90c3c9221"},(0,n.kt)("inlineCode",{parentName:"a"},"29df772"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero): update variables with new design tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1d9792231c50f12fd68364e201054f6ab0926665"},(0,n.kt)("inlineCode",{parentName:"a"},"1d97922"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Language List): render language dropdown as ul and li elements ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3617442da78af07d3f473d0c43c47dd48c9b2ac3"},(0,n.kt)("inlineCode",{parentName:"a"},"3617442"))),(0,n.kt)("li",{parentName:"ul"},"change(header): introduced item class to the mega menu link content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/00ca376ea4cf1de4851e84567b97c374ee7f66e3"},(0,n.kt)("inlineCode",{parentName:"a"},"00ca376"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Language List): add less variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7ccc1ccf57419b6eecbf71d479db72b84428d43a"},(0,n.kt)("inlineCode",{parentName:"a"},"7ccc1cc"))),(0,n.kt)("li",{parentName:"ul"},"change(header): disabled active menu when clicking on globalnav links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3f7b5eedb038b51fbae8a14a683dc6adc919549b"},(0,n.kt)("inlineCode",{parentName:"a"},"3f7b5ee"))),(0,n.kt)("li",{parentName:"ul"},"change(header): target link instead of span directly ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9e865fbb5b256196756c3d84de397296ac0b447a"},(0,n.kt)("inlineCode",{parentName:"a"},"9e865fb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): remove unused imports ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e232db6ce0b2553be79d98d8497fa06f548b772"},(0,n.kt)("inlineCode",{parentName:"a"},"7e232db")))),(0,n.kt)("h4",{id:"\ufe0f-others-38"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Add item themes; override .block .ui.image width based on size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/06010db21398638d46d2e007317d72a7aff7e7d9"},(0,n.kt)("inlineCode",{parentName:"a"},"06010db"))),(0,n.kt)("li",{parentName:"ul"},"Move item icon themes to item.overrides ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/31e8921f4ee4d92ba3a9c58275b41dd3101cffd2"},(0,n.kt)("inlineCode",{parentName:"a"},"31e8921"))),(0,n.kt)("li",{parentName:"ul"},"Override only the width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8d4927084e5daedcb69e6f3a57cab73a9016a55f"},(0,n.kt)("inlineCode",{parentName:"a"},"8d49270"))),(0,n.kt)("li",{parentName:"ul"},"Override tile image in .block parrent ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/005655ddff6f45e211f1ff8156b0b7efa1e47a2e"},(0,n.kt)("inlineCode",{parentName:"a"},"005655d"))),(0,n.kt)("li",{parentName:"ul"},"Update package.json ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9dc38165a95deca1faf2dfccdc03fd6cab3d8c54"},(0,n.kt)("inlineCode",{parentName:"a"},"9dc3816"))),(0,n.kt)("li",{parentName:"ul"},"feature(item): added themes to item icons #190 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a6a2907df09575a18fb6e81dc52e8d6651eff118"},(0,n.kt)("inlineCode",{parentName:"a"},"a6a2907"))),(0,n.kt)("li",{parentName:"ul"},"update storybook header.topdropdown ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e58ac0821af56c06272e3373383647cbbff20978"},(0,n.kt)("inlineCode",{parentName:"a"},"e58ac08"))),(0,n.kt)("li",{parentName:"ul"},"use volto-screen-helper width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea156aad1100166ba78635163cfacdcfb913c1d4"},(0,n.kt)("inlineCode",{parentName:"a"},"ea156aa"))),(0,n.kt)("li",{parentName:"ul"},"Add divider content for metadata field in Banner ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/327ad1c5fdca0d376d04fd36084b940e5dd016ab"},(0,n.kt)("inlineCode",{parentName:"a"},"327ad1c"))),(0,n.kt)("li",{parentName:"ul"},"rename to viewportWidth ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32162e7c695774bbb68ac63a0008e8b148f1e9f5"},(0,n.kt)("inlineCode",{parentName:"a"},"32162e7"))),(0,n.kt)("li",{parentName:"ul"},"don't connect component to store ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/470b8bade5e8f2eaabb20a7bb02c8e82ca42f8a0"},(0,n.kt)("inlineCode",{parentName:"a"},"470b8ba"))),(0,n.kt)("li",{parentName:"ul"},"Add end of line ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51639d804a2b84f66373fb77c569bcc43b22e303"},(0,n.kt)("inlineCode",{parentName:"a"},"51639d8"))),(0,n.kt)("li",{parentName:"ul"},"behave as mobile under 480 only ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/11b99e15cb83245a32bb04f3937f5b95a60b1e95"},(0,n.kt)("inlineCode",{parentName:"a"},"11b99e1"))),(0,n.kt)("li",{parentName:"ul"},"make it account for all mobile-s,m,l ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/69e23ae8d12042f241dc53c9e296c340d5b17089"},(0,n.kt)("inlineCode",{parentName:"a"},"69e23ae")))),(0,n.kt)("h3",{id:"045---2022-06-08"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.4.4...0.4.5"},"0.4.5")," - 2022-06-08"),(0,n.kt)("h4",{id:"-enhancements-45"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(tabs): Add style for tabs accordion template #187 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fb8adbf84ac564a14d45bb6e8f4e1661811672d5"},(0,n.kt)("inlineCode",{parentName:"a"},"fb8adbf"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): avoid react error by providing key prop to grid column ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef0b1937d614a889a0c2117e483a834ed1aec1e3"},(0,n.kt)("inlineCode",{parentName:"a"},"ef0b193")))),(0,n.kt)("h4",{id:"\ufe0f-others-39"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Cleanup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4b9637ebd2d6c015f8d4323551c6cbc4b7506df"},(0,n.kt)("inlineCode",{parentName:"a"},"d4b9637"))),(0,n.kt)("li",{parentName:"ul"},"Add style for tabs accordion template ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a10998372a268b99991f7dda55103149f29d00cb"},(0,n.kt)("inlineCode",{parentName:"a"},"a109983")))),(0,n.kt)("h3",{id:"044---2022-06-08"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.4.3...0.4.4"},"0.4.4")," - 2022-06-08"),(0,n.kt)("h4",{id:"-new-features-23"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(divider): create story for divider ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b10a2e08b14962bed9f13317754f4124ee60d313"},(0,n.kt)("inlineCode",{parentName:"a"},"b10a2e0")))),(0,n.kt)("h4",{id:"-bug-fixes-33"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(divider): restore space between classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c595c152c144463f33757157ed7d6797ae31ceed"},(0,n.kt)("inlineCode",{parentName:"a"},"c595c15"))),(0,n.kt)("li",{parentName:"ul"},"fix(divider): Text colors and transform ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e524e1002bb0700ea69782cf5a95c6073ab383d2"},(0,n.kt)("inlineCode",{parentName:"a"},"e524e10"))),(0,n.kt)("li",{parentName:"ul"},"fix(footer): story aria labels for social media links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/254bdc7ba944943f5d08a71f9d0a3a31bdc06044"},(0,n.kt)("inlineCode",{parentName:"a"},"254bdc7")))),(0,n.kt)("h4",{id:"-enhancements-46"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update logos and less structure ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/66b8e0f12825968d94f7d572f2823d9a8a3a239b"},(0,n.kt)("inlineCode",{parentName:"a"},"66b8e0f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): first footer updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d18a2ee59d0deb143075d8dfeb949898ad1f6399"},(0,n.kt)("inlineCode",{parentName:"a"},"d18a2ee"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): logo updates and adjustments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/101bc9dfe4136240457f335de867a83c28d59339"},(0,n.kt)("inlineCode",{parentName:"a"},"101bc9d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): use tokens and adjust spacing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2cb166949913f725271050e863b38e7630748135"},(0,n.kt)("inlineCode",{parentName:"a"},"2cb1669"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): moved SubFooter logic to SubFooter.jsx from Footer story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/902383a0bb3446dc69237099bd429ead5e30a6c1"},(0,n.kt)("inlineCode",{parentName:"a"},"902383a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Divider):add divider with content inside story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2d66dca901fa189d69b65239dc34b1969097be8"},(0,n.kt)("inlineCode",{parentName:"a"},"e2d66dc"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): added managed by section as properties ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9328fc3084baf22439e1892d256d9a167b911849"},(0,n.kt)("inlineCode",{parentName:"a"},"9328fc3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(divider): remove custom divider ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4870d2252ad216e82213fa1f94cc39609ae676d"},(0,n.kt)("inlineCode",{parentName:"a"},"d4870d2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Divider_:remove green color class & add tertiary ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/95f30186bc1768e08f00ad7d5ffa2a70402ac553"},(0,n.kt)("inlineCode",{parentName:"a"},"95f3018"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): use remix icons for social links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5ef9aa2cebb6f96857a1920cefbf7e367b4d7c28"},(0,n.kt)("inlineCode",{parentName:"a"},"5ef9aa2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Divider):remove clean class and use fitted prop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8d2be350dcc44fd56b5fbfb791fb6b2a45bd8a52"},(0,n.kt)("inlineCode",{parentName:"a"},"8d2be35"))),(0,n.kt)("li",{parentName:"ul"},"change(Divider): Rename color property to theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0deffc823609d23131a85bc180e4a3f5a67a64aa"},(0,n.kt)("inlineCode",{parentName:"a"},"0deffc8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update links and logo align ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7afbab9b37982a557ac8bfa4430205ce912c3b8b"},(0,n.kt)("inlineCode",{parentName:"a"},"7afbab9"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): tweaked column sizes to the values before my changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fdf271868e44bce2904cc28c6fa924ee4c9ba759"},(0,n.kt)("inlineCode",{parentName:"a"},"fdf2718"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): to latest figma design #182 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e0ba2b659db9dc1b140d853840a06bd3ce31cab"},(0,n.kt)("inlineCode",{parentName:"a"},"3e0ba2b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): move subfooter logic to the proper component #185 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/303457719128c9699dd34939bd8db2b647977667"},(0,n.kt)("inlineCode",{parentName:"a"},"3034577"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b0b872b1415c9792a5886f619195f9c0471ea564"},(0,n.kt)("inlineCode",{parentName:"a"},"b0b872b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(testimonial): update divider ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/784450abdf395318fe89d8d3d0a1e398393cc93c"},(0,n.kt)("inlineCode",{parentName:"a"},"784450a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(testimonial): changed divider color to secondary ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/84282f960ab22ccb8403e975c055c61d1023193a"},(0,n.kt)("inlineCode",{parentName:"a"},"84282f9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(divider): remove custom divider from theme config ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a0409e8df3c9ba043717140455369a3630f0da85"},(0,n.kt)("inlineCode",{parentName:"a"},"a0409e8")))),(0,n.kt)("h4",{id:"-documentation-changes-14"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(divider): switch to secondary color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/239844be374a2f6bc4667e7ab3d2f52bfdc181ad"},(0,n.kt)("inlineCode",{parentName:"a"},"239844b"))),(0,n.kt)("li",{parentName:"ul"},"docs(divider): showcase path fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5ea03f60034edc918054aa273e44b84b2537716"},(0,n.kt)("inlineCode",{parentName:"a"},"d5ea03f")))),(0,n.kt)("h4",{id:"\ufe0f-others-40"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Remove unnecessary spaces ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d137981430809345bfb3ad494e7ab981c93c3e51"},(0,n.kt)("inlineCode",{parentName:"a"},"d137981"))),(0,n.kt)("li",{parentName:"ul"},"lint fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/657cf4ed917c4ff992aa033c3d9f4884a949d86d"},(0,n.kt)("inlineCode",{parentName:"a"},"657cf4e"))),(0,n.kt)("li",{parentName:"ul"},"perf(storybook): added storybook favicon ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/38eabc3124c85dd56bf5c68c0fb1e967c39055ec"},(0,n.kt)("inlineCode",{parentName:"a"},"38eabc3")))),(0,n.kt)("h3",{id:"043---2022-06-03"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.4.2...0.4.3"},"0.4.3")," - 2022-06-03"),(0,n.kt)("h4",{id:"-bug-fixes-34"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(edit): Fix columns/accordion inner toolbar padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fafbb525baa60c339906dc6a33d2f9418d050be6"},(0,n.kt)("inlineCode",{parentName:"a"},"fafbb52")))),(0,n.kt)("h4",{id:"-enhancements-47"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): completed removal of description from guides ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/42424b9213ece8d8df84d40f1b73e142cb0ffc6b"},(0,n.kt)("inlineCode",{parentName:"a"},"42424b9")))),(0,n.kt)("h3",{id:"042---2022-06-02"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.4.1...0.4.2"},"0.4.2")," - 2022-06-02"),(0,n.kt)("h4",{id:"-enhancements-48"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): moved color swatches around in the color guide ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8a395fce52a32cf92449a24d3d4cce5abf25a284"},(0,n.kt)("inlineCode",{parentName:"a"},"8a395fc"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): removed description from components and introduced category listing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f220bf0785f5aaede8c25c4164120b09de67b018"},(0,n.kt)("inlineCode",{parentName:"a"},"f220bf0"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): rename gap to space and added em spaces ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f5b042d311518ec3fb32c7f259c39ff62d4547f8"},(0,n.kt)("inlineCode",{parentName:"a"},"f5b042d"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): moved extra docs to webdev section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1ce0797b91418272e4e405467cd1468292620005"},(0,n.kt)("inlineCode",{parentName:"a"},"1ce0797"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): moved md_components files into webdev/md_components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/73c1c08a270d504fa6f2ba2579bcb3e6e25fb112"},(0,n.kt)("inlineCode",{parentName:"a"},"73c1c08"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): added category yml for all sections ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/17405728e3f44828da50890b9fc0f4e8a07f8bf2"},(0,n.kt)("inlineCode",{parentName:"a"},"1740572"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): color guideline updates and spacing tokens documentation #148 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c1154ba172c3b3b40b565c2bcb590f1a5e6b25a4"},(0,n.kt)("inlineCode",{parentName:"a"},"c1154ba"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): modified story links to avoid broken usage tabs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/78dc8d8f4e7cade3ab0e911e6dc002eefc1e7986"},(0,n.kt)("inlineCode",{parentName:"a"},"78dc8d8"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): renamed several file id's so that they match the incremental naming sequence ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/11299c9a4c41ca901926f852227dbca0bc1aee17"},(0,n.kt)("inlineCode",{parentName:"a"},"11299c9")))),(0,n.kt)("h4",{id:"-documentation-changes-15"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(Docusaurus): timeline, testimonial, quote and tags ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aaa54ecbe182872ffc7fff275d5065ebe790d348"},(0,n.kt)("inlineCode",{parentName:"a"},"aaa54ec"))),(0,n.kt)("li",{parentName:"ul"},"docs(spacing): add relative gap tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/92abc8fff2c7006e2c64684048e7783216a230bb"},(0,n.kt)("inlineCode",{parentName:"a"},"92abc8f"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): updated colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a28c99e60867c1eaa1b7b68d4154ccaa8c9ef958"},(0,n.kt)("inlineCode",{parentName:"a"},"a28c99e"))),(0,n.kt)("li",{parentName:"ul"},"docs(tags/content): new page about tags and content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/60be40268a77606c53fc45641bc22166b50b75e7"},(0,n.kt)("inlineCode",{parentName:"a"},"60be402"))),(0,n.kt)("li",{parentName:"ul"},"docs(Docusaurus): labeled icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6a0f61ede3a36c7d66d9b3091b93b0b5ff9a445"},(0,n.kt)("inlineCode",{parentName:"a"},"f6a0f61"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): add font size and line height tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ff65e47cfe56eb3efe976300b764ba13f8685ce"},(0,n.kt)("inlineCode",{parentName:"a"},"2ff65e4"))),(0,n.kt)("li",{parentName:"ul"},"docs(spacing): add spacing gap tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2d53727f8e817588421efea464e849c9f9e16dce"},(0,n.kt)("inlineCode",{parentName:"a"},"2d53727"))),(0,n.kt)("li",{parentName:"ul"},"docs(spacing): add missing gaps ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/442db468830150c8e4ad5f91775fc5b3c47dd655"},(0,n.kt)("inlineCode",{parentName:"a"},"442db46"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): minor fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e66513f08cff598881ce1051b482ddadf8e0593"},(0,n.kt)("inlineCode",{parentName:"a"},"6e66513"))),(0,n.kt)("li",{parentName:"ul"},"docs(spacing): aligned images ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e946fe59457b861a31939e99adf4b380777e01e0"},(0,n.kt)("inlineCode",{parentName:"a"},"e946fe5"))),(0,n.kt)("li",{parentName:"ul"},"docs(spacing): new image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fcd3294d53db76580b8bffc9678a09fd65b33113"},(0,n.kt)("inlineCode",{parentName:"a"},"fcd3294")))),(0,n.kt)("h4",{id:"\ufe0f-others-41"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"merge changes from develop into docusaurus token documentation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a9401384ddf5fcfbf29e50d34f3d7851be85f19a"},(0,n.kt)("inlineCode",{parentName:"a"},"a940138"))),(0,n.kt)("li",{parentName:"ul"},"perf(docs): restructuring order ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f4134d81d1cc59b8ba0d8669415b5eb31c0513d"},(0,n.kt)("inlineCode",{parentName:"a"},"8f4134d")))),(0,n.kt)("h3",{id:"041---2022-06-02"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.4.0...0.4.1"},"0.4.1")," - 2022-06-02"),(0,n.kt)("h4",{id:"-new-features-24"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(languageLabeledIcon) : add new component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/110558eeec37d5b5f616a95298a313ba230dd6f4"},(0,n.kt)("inlineCode",{parentName:"a"},"110558e"))),(0,n.kt)("li",{parentName:"ul"},"feat(LanguageLabeledIcon):add new component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d00200c278e1dab02b449b460a325e0f2e7b8ccd"},(0,n.kt)("inlineCode",{parentName:"a"},"d00200c"))),(0,n.kt)("li",{parentName:"ul"},"feat(newTabLabeledIcon) : add new component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f5cd31257a306a58c1d9cdbf7cb428701412369"},(0,n.kt)("inlineCode",{parentName:"a"},"8f5cd31"))),(0,n.kt)("li",{parentName:"ul"},"feat(labeledIconGroup) : add new component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/787d648342d78c4f9d28fde9d08e83089ef7b08f"},(0,n.kt)("inlineCode",{parentName:"a"},"787d648"))),(0,n.kt)("li",{parentName:"ul"},"feat(DownLoadLabeledIcon) : add new component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6ea2fa1ec17ce235401a8ac741afa8fede920d26"},(0,n.kt)("inlineCode",{parentName:"a"},"6ea2fa1")))),(0,n.kt)("h4",{id:"-bug-fixes-35"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(LabeledIcon) : fix lint errors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91b042f8c16bd3e99659c1c24a5f2a946c72b03f"},(0,n.kt)("inlineCode",{parentName:"a"},"91b042f"))),(0,n.kt)("li",{parentName:"ul"},"fix(LabeledIconGroup) : fix links for tests ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/daa10653ca37f3e83302e2ebcc566b5f5ec4c4d9"},(0,n.kt)("inlineCode",{parentName:"a"},"daa1065"))),(0,n.kt)("li",{parentName:"ul"},"fix(LanguageLabeledIcon):bug fix & languages change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1436e2bc270f8f079f07b7909254bd2e6e087084"},(0,n.kt)("inlineCode",{parentName:"a"},"1436e2b"))),(0,n.kt)("li",{parentName:"ul"},"fix(LabeledIconGroup):fix based on Langauge & Download Labeled icon components changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3015864ce740f534aa204402f85a9f392e342513"},(0,n.kt)("inlineCode",{parentName:"a"},"3015864"))),(0,n.kt)("li",{parentName:"ul"},"fix(newTabLabeledIcon) : add link item ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b1a9ada3dd7dae9e1841cfde5319a6ab37b15de2"},(0,n.kt)("inlineCode",{parentName:"a"},"b1a9ada"))),(0,n.kt)("li",{parentName:"ul"},"fix(Labeled Icons):minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/00f3022cdc2bfad634707f0d6d05768868f599be"},(0,n.kt)("inlineCode",{parentName:"a"},"00f3022")))),(0,n.kt)("h4",{id:"-enhancements-49"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcons): adjust new tab labeled icon to figma and replace px with rems ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/904615d789ea711678f43ce9f9d02a450289031f"},(0,n.kt)("inlineCode",{parentName:"a"},"904615d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(LanguageLabeledIcon):implement with pop up ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0f3dd8f0388484f94351a0ab0798ab53e84c9229"},(0,n.kt)("inlineCode",{parentName:"a"},"0f3dd8f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcon): add group wrapper in labeled icon stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4b7dd314230145b6239fd800d41f546ab5d9eebb"},(0,n.kt)("inlineCode",{parentName:"a"},"4b7dd31"))),(0,n.kt)("li",{parentName:"ul"},"refactor(DownloadLabeledIcon):implement with pop up ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aa61f9b7d449c08c08bc4c004da6a0458598c828"},(0,n.kt)("inlineCode",{parentName:"a"},"aa61f9b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcons): adjust language labeled icon to figma ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5741e3d2e95665ef12670335b12d29cfbf998fdc"},(0,n.kt)("inlineCode",{parentName:"a"},"5741e3d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcons): adjust download icon to figma and replace px with rems ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ae85307a62526fed75ef0b1d37ad59076370b5a"},(0,n.kt)("inlineCode",{parentName:"a"},"4ae8530"))),(0,n.kt)("li",{parentName:"ul"},"refactor(LanguageLabeledIcons):minor storybook change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/78f55442a80cbc2f716ba81274ed08204e3c502a"},(0,n.kt)("inlineCode",{parentName:"a"},"78f5544"))),(0,n.kt)("li",{parentName:"ul"},"refactor(LanguageLabeledIcon): set language code to uppercase and minor storybook change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac286931282c0a69bc6d7803e96cbe302db8994f"},(0,n.kt)("inlineCode",{parentName:"a"},"ac28693"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcon): adjust paddings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9c1ecddc52c81be1d952d0af67862a284eba9eec"},(0,n.kt)("inlineCode",{parentName:"a"},"9c1ecdd"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcons): update margins for group labeled icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5fa5ca9103a5d8ad1510c90cc8c46d0c82abcc63"},(0,n.kt)("inlineCode",{parentName:"a"},"5fa5ca9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcons): add variable for icon color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f9d3cba5115c5c91aaaca49c1f834950400673a"},(0,n.kt)("inlineCode",{parentName:"a"},"9f9d3cb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcons): update colors on download links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c04264229c91bfdea927fd22f4ee1e8ddbcebd5c"},(0,n.kt)("inlineCode",{parentName:"a"},"c042642")))),(0,n.kt)("h4",{id:"-internal-changes-16"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(labeledIconGroup) : lint changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/535cee4795dff75b35856cb4406a9bd33ee07ca4"},(0,n.kt)("inlineCode",{parentName:"a"},"535cee4"))),(0,n.kt)("li",{parentName:"ul"},"style(downloadLabeledIcon) : fix styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d8e3acb3bac1a4174d4bb526d6188cb5e5f8faa"},(0,n.kt)("inlineCode",{parentName:"a"},"6d8e3ac"))),(0,n.kt)("li",{parentName:"ul"},"style(downloadLabeledIcon) : fix alignment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/455801701d2958515885ba2c398312f0c56057b0"},(0,n.kt)("inlineCode",{parentName:"a"},"4558017"))),(0,n.kt)("li",{parentName:"ul"},"chore(LabeledIconGroup) : lint changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab364763bb2526adbbb7fc3c656a16b497568940"},(0,n.kt)("inlineCode",{parentName:"a"},"ab36476")))),(0,n.kt)("h3",{id:"040---2022-06-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.3.1...0.4.0"},"0.4.0")," - 2022-06-01"),(0,n.kt)("h4",{id:"-new-features-25"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(Carousel): create carousel for cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2b0d73798b4fcbf2897d7a8167d9b4d3b3374fb2"},(0,n.kt)("inlineCode",{parentName:"a"},"2b0d737"))),(0,n.kt)("li",{parentName:"ul"},"feat(ItemwithIcons): Initial Item group with icons, new item variation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7f4ea476264856845a07cd24be6ec86ccd21ed8d"},(0,n.kt)("inlineCode",{parentName:"a"},"7f4ea47"))),(0,n.kt)("li",{parentName:"ul"},"feat(utilities): add file and basic utilities ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/05c88b294a49590e3fb355fb6e113f5020442915"},(0,n.kt)("inlineCode",{parentName:"a"},"05c88b2"))),(0,n.kt)("li",{parentName:"ul"},"feat(utilities): add file with basic utilities classes #173 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/855185ff22c77efb75cc5c7850d181254b4c4927"},(0,n.kt)("inlineCode",{parentName:"a"},"855185f")))),(0,n.kt)("h4",{id:"-bug-fixes-36"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(tokens): hsla function for shadows ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8e5d37a6e88321b1e2daf995b407c4ddd6e866e"},(0,n.kt)("inlineCode",{parentName:"a"},"b8e5d37"))),(0,n.kt)("li",{parentName:"ul"},"fix(tokens): remove css var from less file ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a9c422476b412287713a6b475406615c3aed2aca"},(0,n.kt)("inlineCode",{parentName:"a"},"a9c4224"))),(0,n.kt)("li",{parentName:"ul"},"fix(carousel):add storybook controls descriptions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/269a60383ed1e54fc57e26d4eed6b37d1da32236"},(0,n.kt)("inlineCode",{parentName:"a"},"269a603"))),(0,n.kt)("li",{parentName:"ul"},"fix(item): remove image width css from item.less ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7b21cb2d5ddf6a6f72646f47fd268a0bd7af757d"},(0,n.kt)("inlineCode",{parentName:"a"},"7b21cb2"))),(0,n.kt)("li",{parentName:"ul"},"fix(table): Set responsive breakpoint to @tabletBreakpoint ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/067e01842030bfa5639e2a55cb8af5047bb2996f"},(0,n.kt)("inlineCode",{parentName:"a"},"067e018")))),(0,n.kt)("h4",{id:"-enhancements-50"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(item): import item.less in theme definitions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c51637480192dbece828616010174648ac865e2e"},(0,n.kt)("inlineCode",{parentName:"a"},"c516374"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Label):add corner,ribbon & basic label stories and styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2bbbb947113a59127f91b86917ef0edbf36ab16"},(0,n.kt)("inlineCode",{parentName:"a"},"e2bbbb9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Label):style changes based on label importance class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce4d5d1a5bf1b1183242a253e37c509d61f82b8c"},(0,n.kt)("inlineCode",{parentName:"a"},"ce4d5d1"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): rename gap to space and added em spaces ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/719efc44070ef87f049a92e4da96bb111e9fc8ff"},(0,n.kt)("inlineCode",{parentName:"a"},"719efc4"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): add classes for size, set default to tile and add controls for grouped items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5a0405abba4e5f5d36f899dc9e47f43a96d5e49"},(0,n.kt)("inlineCode",{parentName:"a"},"d5a0405"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): add borders, shadows, shapes and z-index tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7069106c2b0ada9cdbad63249b4ada7fde72e05f"},(0,n.kt)("inlineCode",{parentName:"a"},"7069106"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): name spacing tokens gaps and added missing values up to 80px as documented ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9fbd912a6f027150149d82678f88885a939120b0"},(0,n.kt)("inlineCode",{parentName:"a"},"9fbd912"))),(0,n.kt)("li",{parentName:"ul"},"refactor(quote): Rename sourceInfo to extra info ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/76c2b400de4814fe79f303bfd2a82842c848231c"},(0,n.kt)("inlineCode",{parentName:"a"},"76c2b40"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): WIP replacing unstackable with row ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e3a44de4b2dd26667e80e0d131c55b08f3c527d9"},(0,n.kt)("inlineCode",{parentName:"a"},"e3a44de"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tocens): add color design tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/13bb165e103a25aadb9da6414773dc0d35081d88"},(0,n.kt)("inlineCode",{parentName:"a"},"13bb165"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): adjust margins to match figma designs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6334581b336a2f486e85199f371126beea47b92f"},(0,n.kt)("inlineCode",{parentName:"a"},"6334581"))),(0,n.kt)("li",{parentName:"ul"},"refactor(carousel): remove title from story and color on card hover ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/12a1d7c3bd5e7ba6edf4eb20a2d7a6f8f22955f9"},(0,n.kt)("inlineCode",{parentName:"a"},"12a1d7c"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): updated sizes with 4-8-16px increments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f53d655df2b24053a5d331c56dfd14bd3602dfd"},(0,n.kt)("inlineCode",{parentName:"a"},"1f53d65"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): added size tokens to be used for width of elements ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cda5dea1f6ad1ae980c89999d323d7b385894025"},(0,n.kt)("inlineCode",{parentName:"a"},"cda5dea"))),(0,n.kt)("li",{parentName:"ul"},"change(utilities): values need important rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/96150d9a22cb6be6f338f1e9d052cbd65e3602fc"},(0,n.kt)("inlineCode",{parentName:"a"},"96150d9"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): added also rem space values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aedbbddaf7f8be88ed2f8a2b8c21b60752896c53"},(0,n.kt)("inlineCode",{parentName:"a"},"aedbbdd"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): updated z-index tokens with negative values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/404efe4244d67276b435e60a1d7a69aaa90e3d8a"},(0,n.kt)("inlineCode",{parentName:"a"},"404efe4"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): add 14px font size token ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8d8695dce62e7f29af01447308460e4fe3f72b21"},(0,n.kt)("inlineCode",{parentName:"a"},"8d8695d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): restructured and improved sections navigation #174 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b47b0266ffd6baeaf1a5aea1a7ab22c909976de1"},(0,n.kt)("inlineCode",{parentName:"a"},"b47b026"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): add 12 and 14px font size token #176 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/368114729536f03dd85c2d3565b984c3bdfe3a72"},(0,n.kt)("inlineCode",{parentName:"a"},"3681147"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): remove conditional border radius ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f0fe5ada7b74e9c87623dd2b2774283dd89b9a58"},(0,n.kt)("inlineCode",{parentName:"a"},"f0fe5ad")))),(0,n.kt)("h4",{id:"-documentation-changes-16"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(website): created new sections, improved website navigation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/243f0be4d7fa6e988da0ca0f586f5ea478573eef"},(0,n.kt)("inlineCode",{parentName:"a"},"243f0be"))),(0,n.kt)("li",{parentName:"ul"},"docs(homepage): adding design system homepage with links for upcoming sections ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c9a968508acff74d1182e68cf049046dafd564c5"},(0,n.kt)("inlineCode",{parentName:"a"},"c9a9685"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): copyedit, improved navigation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/998762a5bd40d08f619c00743b66d82b43aed653"},(0,n.kt)("inlineCode",{parentName:"a"},"998762a"))),(0,n.kt)("li",{parentName:"ul"},"docs(website): restructuring, moved current DS docs to new folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8bb612f1313dfc739d7912aa2e3252f468e1122f"},(0,n.kt)("inlineCode",{parentName:"a"},"8bb612f"))),(0,n.kt)("li",{parentName:"ul"},"docs(homepage): copy editing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee37d6f1d282b973af744f4305c0eb94c0993113"},(0,n.kt)("inlineCode",{parentName:"a"},"ee37d6f")))),(0,n.kt)("h4",{id:"\ufe0f-others-42"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Release 0.4.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f4bc50928ab877f3670b181dbe6e8cfff7fa2daa"},(0,n.kt)("inlineCode",{parentName:"a"},"f4bc509"))),(0,n.kt)("li",{parentName:"ul"},"feature(homepage): added Item group with icons #167 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ec99f53aeb183b24073be4014a9c2ec30d5235c"},(0,n.kt)("inlineCode",{parentName:"a"},"2ec99f5"))),(0,n.kt)("li",{parentName:"ul"},"feature(tokens): added borders, z-index, shadows tokens #171 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/74c178837cedc7ee9fc55effde1096dc03245574"},(0,n.kt)("inlineCode",{parentName:"a"},"74c1788"))),(0,n.kt)("li",{parentName:"ul"},"feature(tokens): added initial color design tokens #169 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/da3eae05d07783aa5eadaed5d508ee3be8acc47d"},(0,n.kt)("inlineCode",{parentName:"a"},"da3eae0"))),(0,n.kt)("li",{parentName:"ul"},"perf(carousel): added slick library ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca9be5125efa864bc30a0178274d744c5b2bc500"},(0,n.kt)("inlineCode",{parentName:"a"},"ca9be51")))),(0,n.kt)("h3",{id:"031---2022-05-19"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.3.0...0.3.1"},"0.3.1")," - 2022-05-19"),(0,n.kt)("h4",{id:"-bug-fixes-37"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(input,segment): toggle inputs and padding fixes within Volto sidebar forms ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/de030d617325a8f9d028a5c1615faa160fcdd763"},(0,n.kt)("inlineCode",{parentName:"a"},"de030d6")))),(0,n.kt)("h4",{id:"-enhancements-51"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(login): restored width of login container to 376px ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0564293346b2402c3c86009b61066da4200662b8"},(0,n.kt)("inlineCode",{parentName:"a"},"0564293")))),(0,n.kt)("h3",{id:"030---2022-05-17"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.2.4...0.3.0"},"0.3.0")," - 2022-05-17"),(0,n.kt)("h4",{id:"-new-features-26"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(Callout):create Callout component with Blockquote style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3d486b1c2c7f74ee8bc4b3a5e1bf3993ac98f6dd"},(0,n.kt)("inlineCode",{parentName:"a"},"3d486b1"))),(0,n.kt)("li",{parentName:"ul"},"feat(callout): Align the Callout component with Volto slate component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e9343ff7008cd3d60700929e8861c7bdd06df4d3"},(0,n.kt)("inlineCode",{parentName:"a"},"e9343ff")))),(0,n.kt)("h4",{id:"-bug-fixes-38"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(testimonial): fix storybook arg names ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b9df52f7151ef759fd672d365b2d74f6db535ad0"},(0,n.kt)("inlineCode",{parentName:"a"},"b9df52f"))),(0,n.kt)("li",{parentName:"ul"},"fix(table): tweak responsive table for extra long headers ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7f9f9e25f7c57d4bf7edd2546a7579b892867b5c"},(0,n.kt)("inlineCode",{parentName:"a"},"7f9f9e2"))),(0,n.kt)("li",{parentName:"ul"},"fix(quote): fix color and padding issue ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/310d6b37bdf5df3da2d2103eab8f4fa5020c95ab"},(0,n.kt)("inlineCode",{parentName:"a"},"310d6b3"))),(0,n.kt)("li",{parentName:"ul"},"fix(accordion): Fix accordion active title color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/57af1650a0b830e01c79e21b130784190defbcc0"},(0,n.kt)("inlineCode",{parentName:"a"},"57af165"))),(0,n.kt)("li",{parentName:"ul"},"fix(testimonial): remove info arguement ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9593d95f6352fb5aea48c3611b27b4bc6a9ae7e4"},(0,n.kt)("inlineCode",{parentName:"a"},"9593d95")))),(0,n.kt)("h4",{id:"-enhancements-52"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(Table):add responsive mobile table story and styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aed69e698e5b89e33a4c331570755934267492af"},(0,n.kt)("inlineCode",{parentName:"a"},"aed69e6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(testimonial): adjust to volto design | fix avatar image size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/546070e494ad187c50913b5742dab49ce5475a84"},(0,n.kt)("inlineCode",{parentName:"a"},"546070e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Quote):rename Pullquote component to Quote ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9384a0c129b8e4eed637e51a9669c41d8ade69d4"},(0,n.kt)("inlineCode",{parentName:"a"},"9384a0c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Quote):rename Quote.Metadata to Quote.SourceInfo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dfae8b1c147659d24dfd1a13fb4c3098e5865a12"},(0,n.kt)("inlineCode",{parentName:"a"},"dfae8b1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Quote): rename Author to Source ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d400f6a0ec0062f58782b4e170f4a1a9a31c56c"},(0,n.kt)("inlineCode",{parentName:"a"},"6d400f6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Quote):move Testimonial component under Quote folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2467c2089577d67ef5689a2507cb860a837f6a0"},(0,n.kt)("inlineCode",{parentName:"a"},"e2467c2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(testimonial): readjust rounded card ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b41933417a44dabcf829a3346d91c142dd6472d3"},(0,n.kt)("inlineCode",{parentName:"a"},"b419334"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Table):wrap table with semantic ui container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24ac2bb4813df33547f684220e1e12af5ca6df7e"},(0,n.kt)("inlineCode",{parentName:"a"},"24ac2bb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Testimonial):minor storybook bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7b6d128c6be3b2481d4765cebca82af6cafbea05"},(0,n.kt)("inlineCode",{parentName:"a"},"7b6d128"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Callout): wrap story with semantic ui container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ead362d88f43fa1380e8be5481cbc38c055060f8"},(0,n.kt)("inlineCode",{parentName:"a"},"ead362d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(quote): update action name to match the functionality ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/caf2e359cada8056f280d2cd137776d64f82a2af"},(0,n.kt)("inlineCode",{parentName:"a"},"caf2e35"))),(0,n.kt)("li",{parentName:"ul"},"refactor(table): add borders to responsive table with celled attribute ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8a71a670fb34a11fbe4cef7365b91c6be84b5b54"},(0,n.kt)("inlineCode",{parentName:"a"},"8a71a67"))),(0,n.kt)("li",{parentName:"ul"},"change(table): make use of headerSortableWhiteSpace variable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fd836fbe82e92864a628bf4d9d3093674890f722"},(0,n.kt)("inlineCode",{parentName:"a"},"fd836fb"))),(0,n.kt)("li",{parentName:"ul"},"change(table): use the @mobileLandscapeBreakpoint for max 480px media query ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/90880ab324b6a66c7741819dd0d913504751454f"},(0,n.kt)("inlineCode",{parentName:"a"},"90880ab"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Quote):rename pullquote to Quote in Testimonial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f54da192ab3b0823b0d6c77254f8954ab94506c8"},(0,n.kt)("inlineCode",{parentName:"a"},"f54da19"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Testimonial): change card class name ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e995c32bc70780e4315c4dc02d6b6fa9a0c5b29d"},(0,n.kt)("inlineCode",{parentName:"a"},"e995c32"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Testimonial): prettier changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/904594b9814c3d8900656f0e4c8d3a99481efe94"},(0,n.kt)("inlineCode",{parentName:"a"},"904594b")))),(0,n.kt)("h4",{id:"\ufe0f-others-43"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feature(tokens): added tokens folder for design tokens we can use in the system ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a542172cfd84dde0286b4332e66a617a1f3d13bf"},(0,n.kt)("inlineCode",{parentName:"a"},"a542172"))),(0,n.kt)("li",{parentName:"ul"},"perf(lint): fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2ef3abb9daa8fee3dd103adc14246c412951427"},(0,n.kt)("inlineCode",{parentName:"a"},"f2ef3ab"))),(0,n.kt)("li",{parentName:"ul"},"Release 0.3.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8724b2809027b2e359dcd64e418a33cade4ad487"},(0,n.kt)("inlineCode",{parentName:"a"},"8724b28")))),(0,n.kt)("h3",{id:"024---2022-05-13"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.2.3...0.2.4"},"0.2.4")," - 2022-05-13"),(0,n.kt)("h4",{id:"-enhancements-53"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(segment): brought back overrides from pastanaga into our theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/14efd021f81898bb0f2d3f1a2e8677445420591a"},(0,n.kt)("inlineCode",{parentName:"a"},"14efd02"))),(0,n.kt)("li",{parentName:"ul"},"change(container): removed padding from containers restoring thus the defaults ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c2ed813cf2f7ce284e33f2e94e02ff16678c2d05"},(0,n.kt)("inlineCode",{parentName:"a"},"c2ed813"))),(0,n.kt)("li",{parentName:"ul"},"change(grid-story): added container as grid width is influenced by container width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/459f4813ee3c5325a3db22d417ac5f23063bd4d2"},(0,n.kt)("inlineCode",{parentName:"a"},"459f481"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumb): removed padding from breadcrumb added by container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5df5675a519085badc030416e5bb784a9f73321"},(0,n.kt)("inlineCode",{parentName:"a"},"c5df567"))),(0,n.kt)("li",{parentName:"ul"},"change(container): modified all outputted widths to align to grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f29cefa4bfee1fe50844c8450de39ef4b0915d4"},(0,n.kt)("inlineCode",{parentName:"a"},"9f29cef"))),(0,n.kt)("li",{parentName:"ul"},"change(breakpoints): restore Semantic UI breakpoints, adding extra needed values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e7f5b1e4fac6453458078bb02cdc66c328843b59"},(0,n.kt)("inlineCode",{parentName:"a"},"e7f5b1e"))),(0,n.kt)("li",{parentName:"ul"},"change(container): restore maxWidth to 100% now that the last value is 1120px ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8b55c58d3bbc8967b20de19a828aedd2f1473ee5"},(0,n.kt)("inlineCode",{parentName:"a"},"8b55c58"))),(0,n.kt)("li",{parentName:"ul"},"change(header): wrap header globalnav links useful for editing section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/10d4f56624510eb63155ab330dcf0475b0728ed4"},(0,n.kt)("inlineCode",{parentName:"a"},"10d4f56"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumb): added vertical variant to the breadcrumbs like we do in Volto ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f405f8437be6be221b055a41c5d391f4cc94385d"},(0,n.kt)("inlineCode",{parentName:"a"},"f405f84"))),(0,n.kt)("li",{parentName:"ul"},"change(breakpoints): added also contentBreakpoint for backward compatibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b6c9212378a37639e6154d8d8e837169bcbac8b5"},(0,n.kt)("inlineCode",{parentName:"a"},"b6c9212")))),(0,n.kt)("h4",{id:"\ufe0f-others-44"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"[JENKINSFILE]"," Add failure comment, no jenkins fail ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c325bf14f3fb0da150f2a56cda0a9f03d8d8a628"},(0,n.kt)("inlineCode",{parentName:"a"},"c325bf1"))),(0,n.kt)("li",{parentName:"ul"},"prettier changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/134da52549b9d5eac5a12b7ad3005073500ac2c4"},(0,n.kt)("inlineCode",{parentName:"a"},"134da52"))),(0,n.kt)("li",{parentName:"ul"},"[JENKINSFILE]"," format PR comments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/739438c64950c745d630d1998314a2bed595b23a"},(0,n.kt)("inlineCode",{parentName:"a"},"739438c"))),(0,n.kt)("li",{parentName:"ul"},"[JENKINSFILE]"," mention comment author in comment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/39a26aa1ff0f35e93e8df9f442c29c5ab79ff493"},(0,n.kt)("inlineCode",{parentName:"a"},"39a26aa"))),(0,n.kt)("li",{parentName:"ul"},"[JENKINSFILE]"," remove debug, add error per stage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/903eecdb6bcbb8d73cff5e447d80c85e2a2c906d"},(0,n.kt)("inlineCode",{parentName:"a"},"903eecd")))),(0,n.kt)("h3",{id:"023---2022-04-29"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.2.2...0.2.3"},"0.2.3")," - 2022-04-29"),(0,n.kt)("h4",{id:"-new-features-27"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(CallToAction):add feat call to action ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab53642f27c996f929ff871d0794add39bab6c23"},(0,n.kt)("inlineCode",{parentName:"a"},"ab53642")))),(0,n.kt)("h4",{id:"-enhancements-54"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(button): add container to stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6c02c1953e102f2d90ab23023d6b4dfc738ced2e"},(0,n.kt)("inlineCode",{parentName:"a"},"6c02c19"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tab): update vertical tab columns and content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b473fabee196a3ec420e29160448d2be3d1685cc"},(0,n.kt)("inlineCode",{parentName:"a"},"b473fab"))),(0,n.kt)("li",{parentName:"ul"},'refactor(call to action):render call to action with Button as="a" ',(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e7dfabfc2f006505b0f1c802dc6fb48611518bcb"},(0,n.kt)("inlineCode",{parentName:"a"},"e7dfabf"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button): update inverted button colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c822021ab37939632416ce74c0cc88a64b98a3c1"},(0,n.kt)("inlineCode",{parentName:"a"},"c822021"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Tab):scrollbar change in mobile & vertical tab fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0e34cbf459e67b6910217f30a44a1e81f33df622"},(0,n.kt)("inlineCode",{parentName:"a"},"0e34cbf"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): added icon class to share icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48e866e4251dd517c0477cd5a42cec1a98e2f16d"},(0,n.kt)("inlineCode",{parentName:"a"},"48e866e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Button): move button to forms folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/94996fcdf1ea7e55c63dd44e10edf1b44b9bdef5"},(0,n.kt)("inlineCode",{parentName:"a"},"94996fc"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Tab):minor change in secondary pointing menu variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/280b6c41a2107bccb38500f54eb5663ef62c7ae3"},(0,n.kt)("inlineCode",{parentName:"a"},"280b6c4")))),(0,n.kt)("h4",{id:"-documentation-changes-17"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(button): import call to action stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e4eed44e3519ae3dba7d16e252271a964fcb7a4b"},(0,n.kt)("inlineCode",{parentName:"a"},"e4eed44")))),(0,n.kt)("h3",{id:"022---2022-04-22"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.2.1...0.2.2"},"0.2.2")," - 2022-04-22"),(0,n.kt)("h4",{id:"-bug-fixes-39"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(publicationCard): restore line endings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/582859e0ab4fa969662d4cf3e60fe75b160f052a"},(0,n.kt)("inlineCode",{parentName:"a"},"582859e"))),(0,n.kt)("li",{parentName:"ul"},"fix(form): added back overrides from Pastanaga theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a3f7ff810cdeb55b009c2dadc6753d01bbd10d8c"},(0,n.kt)("inlineCode",{parentName:"a"},"a3f7ff8"))),(0,n.kt)("li",{parentName:"ul"},"fix(OrderedList) : add list only if sub list exists ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8acbc8d5a492b411b169b106ab64bb78563f891f"},(0,n.kt)("inlineCode",{parentName:"a"},"8acbc8d"))),(0,n.kt)("li",{parentName:"ul"},"fix(label): update highlight label color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d55bbb03a5d28b2f269c1a1ca447c67dcdc7a748"},(0,n.kt)("inlineCode",{parentName:"a"},"d55bbb0"))),(0,n.kt)("li",{parentName:"ul"},"fix(publication card): run prettier ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/81a5bfc123ce69c44562a5585e41a630fe0bbf5a"},(0,n.kt)("inlineCode",{parentName:"a"},"81a5bfc"))),(0,n.kt)("li",{parentName:"ul"},"fix(avatar) : fix naming convention for arg ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/84fc5fa8faa7887f45cd52e58aa6fa6f8b951d26"},(0,n.kt)("inlineCode",{parentName:"a"},"84fc5fa"))),(0,n.kt)("li",{parentName:"ul"},"fix(tab): restore mobile font sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/58f39be02a45ade92873b86597c33763379e0f44"},(0,n.kt)("inlineCode",{parentName:"a"},"58f39be"))),(0,n.kt)("li",{parentName:"ul"},"fix(addForm): add min height to add form and fixed block chooser overflow ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca4415d49b973378894ec9270501beafbefff776"},(0,n.kt)("inlineCode",{parentName:"a"},"ca4415d"))),(0,n.kt)("li",{parentName:"ul"},"fix(OrderedList): adjust margins to fourth sublists ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/663d384790920f164d51edb304c411275972fbb7"},(0,n.kt)("inlineCode",{parentName:"a"},"663d384"))),(0,n.kt)("li",{parentName:"ul"},"fix(dropdown): being hidden because of third party css ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d353dfd65e93d08a3c8584adeeebea50bf7efe8"},(0,n.kt)("inlineCode",{parentName:"a"},"7d353df"))),(0,n.kt)("li",{parentName:"ul"},"fix(modal): overflow hidden as clearfix of last child from modal ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4923f5165a0a7e8d2dd33ea4c35f9f951372909"},(0,n.kt)("inlineCode",{parentName:"a"},"b4923f5"))),(0,n.kt)("li",{parentName:"ul"},"fix(RelatedContent):fix merge conflict ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/adc34bfdac7d668aa27578eb2a4844c136e0360f"},(0,n.kt)("inlineCode",{parentName:"a"},"adc34bf"))),(0,n.kt)("li",{parentName:"ul"},"fix(button): labeled class needs to be placed after left or right keyword ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53d1204fe52665fe1023747da359d3100d45e58f"},(0,n.kt)("inlineCode",{parentName:"a"},"53d1204")))),(0,n.kt)("h4",{id:"-enhancements-55"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(card): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e10e3d610a313c4e1995676130e2677f0ebab070"},(0,n.kt)("inlineCode",{parentName:"a"},"e10e3d6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add card variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e16d05b4afa678b9089987b42a8257323a78093f"},(0,n.kt)("inlineCode",{parentName:"a"},"e16d05b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): remove stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0deb0cab6d7fd73957b149325960c266c33cdc6f"},(0,n.kt)("inlineCode",{parentName:"a"},"0deb0ca"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):delete primary and secondary card stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f95d227a026ecc34b29cc3e4938c3d13906cfd8"},(0,n.kt)("inlineCode",{parentName:"a"},"1f95d22"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Avatar) : remake avatar as card variant ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea77cdd1acafd2ea288f11074423705e5d6b7412"},(0,n.kt)("inlineCode",{parentName:"a"},"ea77cdd"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add styles for card variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7407bd30e722f2d7b1a9d75a8c7cf155bf1c4996"},(0,n.kt)("inlineCode",{parentName:"a"},"7407bd3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): add story with related content inside of a tab ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dca008a35b27e4a75c13ef965ab8764df0d3b357"},(0,n.kt)("inlineCode",{parentName:"a"},"dca008a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): Rename variables from avatar to rounded ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/be0131631cf8e303f4077fe93b6685fd6b34bf46"},(0,n.kt)("inlineCode",{parentName:"a"},"be01316"))),(0,n.kt)("li",{parentName:"ul"},"refactor(avatar): update less variables and layer structure ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f965db1dd17d90e7165f66d39fdda9016c2eae91"},(0,n.kt)("inlineCode",{parentName:"a"},"f965db1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(PublicationCard):remake publication card to be a semantic card variation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5a0c6ab21c22a53aa6e34fafecfae15a3d435391"},(0,n.kt)("inlineCode",{parentName:"a"},"5a0c6ab"))),(0,n.kt)("li",{parentName:"ul"},"change(button): simplified button styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fe892d6f2f59aecf3f9e8b04f18b55fb0d384021"},(0,n.kt)("inlineCode",{parentName:"a"},"fe892d6"))),(0,n.kt)("li",{parentName:"ul"},"change(button): simplified storybook naming and examples ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9a7df4f46c24a234dd8bb290336ac8e7d5c7422b"},(0,n.kt)("inlineCode",{parentName:"a"},"9a7df4f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Avatar) : convert avatar component to card variation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2004a941c18f8fe21f96f88d3288446fd5e283e8"},(0,n.kt)("inlineCode",{parentName:"a"},"2004a94"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Related Content): change in grid and add see all button ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/955450e974c89aa2297eaa28d278e5098fea7705"},(0,n.kt)("inlineCode",{parentName:"a"},"955450e"))),(0,n.kt)("li",{parentName:"ul"},"change(button): added back button.overrides from pastanaga theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3b55acbf8b8df0e3daa475ab12e4db44693a4053"},(0,n.kt)("inlineCode",{parentName:"a"},"3b55acb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add card class control ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/68c91a9bf7e78874e12e868a0c466f12715a0698"},(0,n.kt)("inlineCode",{parentName:"a"},"68c91a9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):delete publication card variables & overrides files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6be8a037118762cf2280fbe44ba097a0cb7a79e0"},(0,n.kt)("inlineCode",{parentName:"a"},"6be8a03"))),(0,n.kt)("li",{parentName:"ul"},"refactor(OrderedList): rename TOC to Ordered List and add container to the story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e00c4db8e623651eb2ec9ad45de6e3d8c2693b2b"},(0,n.kt)("inlineCode",{parentName:"a"},"e00c4db"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add card grid fluid story with no columns ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f38251ca3fa04a9b586468ead44bbfe8ae110fbb"},(0,n.kt)("inlineCode",{parentName:"a"},"f38251c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(list): remove horizontal control ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f5e576a37452ed368d6f9cf4d55960e737d48ad"},(0,n.kt)("inlineCode",{parentName:"a"},"1f5e576"))),(0,n.kt)("li",{parentName:"ul"},"refactor(avatarGrid): update less variables and layer structure ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/db554a894ca10ba50ff425883000177854ea2455"},(0,n.kt)("inlineCode",{parentName:"a"},"db554a8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Related Content):show button when there are more hidden cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/57ff1c8d485d16c34002da22bd765069e6eb3df0"},(0,n.kt)("inlineCode",{parentName:"a"},"57ff1c8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(RelatedContent):change to use new card variant instead of publication card component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7cf424ae885d9b657a7635fc67a74a8af4c4e905"},(0,n.kt)("inlineCode",{parentName:"a"},"7cf424a"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumb): brought back pastanaga overrides to breadcrumbs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bca1c939c1d49dab1d4b8e72c0999d78383fd643"},(0,n.kt)("inlineCode",{parentName:"a"},"bca1c93"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):delete publication card folder & story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/68bf77306d710651bb2177d429f42b8efc127db2"},(0,n.kt)("inlineCode",{parentName:"a"},"68bf773"))),(0,n.kt)("li",{parentName:"ul"},"change(buttons): modified basic and circular variant behavior ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c06fed9fa74216cf76971b7789dad231a5125ce8"},(0,n.kt)("inlineCode",{parentName:"a"},"c06fed9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):tertiary variation minor story update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87b8dca0b8ef6c6f0fbf1ea6bc71b7b8b6ee9205"},(0,n.kt)("inlineCode",{parentName:"a"},"87b8dca"))),(0,n.kt)("li",{parentName:"ul"},"refactor(DescriptionList): add container to story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d647c1a17097eae9bdfaf8eb8068f6d1d0b13972"},(0,n.kt)("inlineCode",{parentName:"a"},"d647c1a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(List):render ordered list with ol,li tags ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87813c1a942ce498f89b51fe79a59b117afd28b0"},(0,n.kt)("inlineCode",{parentName:"a"},"87813c1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(OrderedList) : change table of contents story to ordered list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb6197c872a97f1b990c675554b1da9b0a8f7959"},(0,n.kt)("inlineCode",{parentName:"a"},"cb6197c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(publicationCard): update tag and name variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c109ad98f257fea233f31d767c4a037a2758be2d"},(0,n.kt)("inlineCode",{parentName:"a"},"c109ad9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(UnorderedList): update list as ul, list items as li and add container to strory ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2c096e117125a7fb943a5d2e665c0077761b271c"},(0,n.kt)("inlineCode",{parentName:"a"},"2c096e1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):organize controls and minor bug fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f3f6e35df077e348ea1e0c2e5c5bd73d4af5aef9"},(0,n.kt)("inlineCode",{parentName:"a"},"f3f6e35"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables): publication card style changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5a84e99ebea6345e45fac3b7ffc077ec42dfb45"},(0,n.kt)("inlineCode",{parentName:"a"},"c5a84e9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables): add less to related content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e1a55438a9fc9dd141a9515c5363d834732a0c4d"},(0,n.kt)("inlineCode",{parentName:"a"},"e1a5543"))),(0,n.kt)("li",{parentName:"ul"},"refactor(RelatedContent):delete publication card component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ed0ed4a1497224b669386f6d0942a79d00555ea"},(0,n.kt)("inlineCode",{parentName:"a"},"2ed0ed4"))),(0,n.kt)("li",{parentName:"ul"},"change(button): basic button is again without padding, border and background ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5a907c721bda1d065153b108d6c9dc0ee20a886d"},(0,n.kt)("inlineCode",{parentName:"a"},"5a907c7"))),(0,n.kt)("li",{parentName:"ul"},"refactor(PublicationCard):remove link wrapper ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5911a0db1967c58311a6776864f92bc0692052fa"},(0,n.kt)("inlineCode",{parentName:"a"},"5911a0d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables): change publication card height per viewport ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d7a525615672f387a2c8a0457bcde5c08aec45dd"},(0,n.kt)("inlineCode",{parentName:"a"},"d7a5256"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Timeline):change timeline icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b2fe0bf9a7a4583f1f10765a9f8c3c989412d472"},(0,n.kt)("inlineCode",{parentName:"a"},"b2fe0bf"))),(0,n.kt)("li",{parentName:"ul"},"refactor(publicationCard): replace px with rems ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53bf8da5e42343de7f7f940c266beb5e530dd63a"},(0,n.kt)("inlineCode",{parentName:"a"},"53bf8da"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Related Content): change in related content grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bf856ce66f9a74cb440cf8a7c93f62cd0d3965e9"},(0,n.kt)("inlineCode",{parentName:"a"},"bf856ce"))),(0,n.kt)("li",{parentName:"ul"},"refactor(List):render description list with dl,dt,dd tags ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ec669a74da08f7a82bb4a1a0a2d752b6ee5ba4bb"},(0,n.kt)("inlineCode",{parentName:"a"},"ec669a7"))),(0,n.kt)("li",{parentName:"ul"},"change(button): show only labeled variant for buttons with icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bf499446dc02e4be8d6452a3e0cba5797b8a005e"},(0,n.kt)("inlineCode",{parentName:"a"},"bf49944"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): import image for rounded card ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca5a47ea2cd713336c7c8ecdebebbdacd681282f"},(0,n.kt)("inlineCode",{parentName:"a"},"ca5a47e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progress): add container to story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dfb33bb8f3560d43e3e7300560bb557591c0a6ba"},(0,n.kt)("inlineCode",{parentName:"a"},"dfb33bb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): add publication card story with different description sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/23af97bc708ac70d70b92efe9a782548c65aabc5"},(0,n.kt)("inlineCode",{parentName:"a"},"23af97b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(List):render default list with dl & dt tags ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ece2280eb06481b3fd42e7a1ffec5c71c08e736f"},(0,n.kt)("inlineCode",{parentName:"a"},"ece2280"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): add publication cards stories with longer description ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/37adefa500c8a85a5b0b86e5b17c687828ea21fc"},(0,n.kt)("inlineCode",{parentName:"a"},"37adefa"))),(0,n.kt)("li",{parentName:"ul"},"change(button): basic icon buttons no longer have box shadows ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c2f3ea38ec3c62dce37612ac1e666a0b064309f7"},(0,n.kt)("inlineCode",{parentName:"a"},"c2f3ea3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): remove story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/afc5f7903a0049563355e3c9292fdd89fa532740"},(0,n.kt)("inlineCode",{parentName:"a"},"afc5f79"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables): change card description line number per device ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6946fdae2a1ede28a0e5971736817b3ae19bf290"},(0,n.kt)("inlineCode",{parentName:"a"},"6946fda"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): update rounded card image path ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8db3a85a45e8e05a3fe86ab824e7550d437222c3"},(0,n.kt)("inlineCode",{parentName:"a"},"8db3a85"))),(0,n.kt)("li",{parentName:"ul"},"refactor(DefaultList): add container to story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f971193369007a45fea7d517cdf0fc2314ebda69"},(0,n.kt)("inlineCode",{parentName:"a"},"f971193"))),(0,n.kt)("li",{parentName:"ul"},"change(button): bumped z-index of sidenav expand button ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/445ed8a8ede4e458814f380bee0600dbb8ff42f6"},(0,n.kt)("inlineCode",{parentName:"a"},"445ed8a"))),(0,n.kt)("li",{parentName:"ul"},"change(progress,label): color accessibility fixes #151 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/09cf6e34ed5a57bfbfc8fe95787591387776df86"},(0,n.kt)("inlineCode",{parentName:"a"},"09cf6e3"))),(0,n.kt)("li",{parentName:"ul"},"change(button): text button now has an underline with a focus border like other buttons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cdd90436bf0c4f8acaca8bf27afef672fb0f3a89"},(0,n.kt)("inlineCode",{parentName:"a"},"cdd9043"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): update card variation grids path ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/756589cff5d3607994d6cf092cb5dd0e36d51903"},(0,n.kt)("inlineCode",{parentName:"a"},"756589c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): minor fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3a880d7d14c89137b2a33342aed1a31c1b2b3939"},(0,n.kt)("inlineCode",{parentName:"a"},"3a880d7"))),(0,n.kt)("li",{parentName:"ul"},"change(button): primary color is blue and secondary is green ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53e0a0c6d32a04c52d089914a224b010b04a8846"},(0,n.kt)("inlineCode",{parentName:"a"},"53e0a0c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(List):change styles to match with the tags lists are rendered ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2673890449579a0421d8ac1c89ad4c5e850322d7"},(0,n.kt)("inlineCode",{parentName:"a"},"2673890"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progress): update colors for accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea2f454f73c859ac21c4fe6e415a2442a6c3d64c"},(0,n.kt)("inlineCode",{parentName:"a"},"ea2f454"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): move avatarGrid & relatedContent to Card folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1959d521de222c95aa13d9b3db249d133f879ccd"},(0,n.kt)("inlineCode",{parentName:"a"},"1959d52"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Timeline): change storybook timeline colors to fix accessibility issues ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/79da8dca48c709fd1df83b858296126f5e5c5753"},(0,n.kt)("inlineCode",{parentName:"a"},"79da8dc"))),(0,n.kt)("li",{parentName:"ul"},"change(segment): restore light grey background color for secondary segments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8716b08a977cacf5dbdab8ab23c714bb03066b0c"},(0,n.kt)("inlineCode",{parentName:"a"},"8716b08"))),(0,n.kt)("li",{parentName:"ul"},"refactor(relatedContent): adjust column paddings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8a1520d1b958b65e968bffdba22c3484916a475e"},(0,n.kt)("inlineCode",{parentName:"a"},"8a1520d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): clear up code ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ada154b5ab562dc7605604de8002a9d3461e594"},(0,n.kt)("inlineCode",{parentName:"a"},"3ada154"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): use the rounded class for avatar grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8c000f3c37103e0068b6d6554783da8188603442"},(0,n.kt)("inlineCode",{parentName:"a"},"8c000f3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card) Update rounded card class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/140b58746673a864d7ea218c4f8a02dc70207af4"},(0,n.kt)("inlineCode",{parentName:"a"},"140b587"))),(0,n.kt)("li",{parentName:"ul"},"refactor(avatar): add variable for image border radius ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c23341c66d34a9dfa572be4df24f1faf4325d58e"},(0,n.kt)("inlineCode",{parentName:"a"},"c23341c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(label): add container to story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/565101fff2c8860deedd599b7b0cff0660c663f6"},(0,n.kt)("inlineCode",{parentName:"a"},"565101f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progress): update value color for accessibility error ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6fc76f8ff3df4bf2b83863687e5ab6bd5e4cd1ef"},(0,n.kt)("inlineCode",{parentName:"a"},"6fc76f8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):use jsx extension ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/413d3284869a35f39f886df7862db6a52e8cc18e"},(0,n.kt)("inlineCode",{parentName:"a"},"413d328")))),(0,n.kt)("h4",{id:"-internal-changes-17"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(Avatar) : add container to stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/41b748cd23002d597d9b6fbb7947a443ef40f9b2"},(0,n.kt)("inlineCode",{parentName:"a"},"41b748c"))),(0,n.kt)("li",{parentName:"ul"},"style(OrderedList): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ed95e4dea2f33d46ca604e1b2c30d63b5596c03d"},(0,n.kt)("inlineCode",{parentName:"a"},"ed95e4d")))),(0,n.kt)("h4",{id:"\ufe0f-others-45"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"perf(eol): change to LF ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c71e42e4a8cf49c4a3b943bfdc8a94c9a9cc4940"},(0,n.kt)("inlineCode",{parentName:"a"},"c71e42e"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): linux eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e0bb30132904f92b9755356f6b5ccbf72075425"},(0,n.kt)("inlineCode",{parentName:"a"},"6e0bb30"))),(0,n.kt)("li",{parentName:"ul"},"lint fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a68866d4058f7412a2635371adebc370b6445281"},(0,n.kt)("inlineCode",{parentName:"a"},"a68866d"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): lf fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7054b2067b0802c5bd04e185cba76e2577ccfdd1"},(0,n.kt)("inlineCode",{parentName:"a"},"7054b20"))),(0,n.kt)("li",{parentName:"ul"},"doco(list): update Ordered List showcase ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/75e40bf4487ea334c9ebc2dd6c2a392d82e662f3"},(0,n.kt)("inlineCode",{parentName:"a"},"75e40bf"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): lf fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19235e585ac50c3669f654a93798b8998894f900"},(0,n.kt)("inlineCode",{parentName:"a"},"19235e5"))),(0,n.kt)("li",{parentName:"ul"},"fixed js syntax error from previous commit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/37dc1f5c1506040c1f155afdea76c4ed739ddda2"},(0,n.kt)("inlineCode",{parentName:"a"},"37dc1f5"))),(0,n.kt)("li",{parentName:"ul"},"Next relese: 0.2.2 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b3fb40ff5e46d7519b6356fdaf7326780bd89d9e"},(0,n.kt)("inlineCode",{parentName:"a"},"b3fb40f")))),(0,n.kt)("h3",{id:"021---2022-04-08"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.2.0...0.2.1"},"0.2.1")," - 2022-04-08"),(0,n.kt)("h4",{id:"-bug-fixes-40"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(version): Switch to 2.0.0.alpha.1 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/83b8b8ebba4f1eb31514b16476ac23a5d2b03ea9"},(0,n.kt)("inlineCode",{parentName:"a"},"83b8b8e")))),(0,n.kt)("h4",{id:"\ufe0f-others-46"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"cleanup(loader): Remove useless HTML ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d1d180c714ea225c1ad269360413a5e5e4b39f22"},(0,n.kt)("inlineCode",{parentName:"a"},"d1d180c")))),(0,n.kt)("h3",{id:"020---2022-04-04"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.9...0.2.0"},"0.2.0")," - 2022-04-04"),(0,n.kt)("h4",{id:"-new-features-28"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(card) : add new default card color-schme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/965adea8eef6d8729790f6d2bd5e71daeee15d75"},(0,n.kt)("inlineCode",{parentName:"a"},"965adea"))),(0,n.kt)("li",{parentName:"ul"},"feat(label): Handle slate links and footnotes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f382431219df29be498fe5063f3d579f0b918068"},(0,n.kt)("inlineCode",{parentName:"a"},"f382431")))),(0,n.kt)("h4",{id:"-bug-fixes-41"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(buttons,toggles): border and background color when active 147629 #139 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea36f31e986110d6c28c104d01666104ac38e2ba"},(0,n.kt)("inlineCode",{parentName:"a"},"ea36f31"))),(0,n.kt)("li",{parentName:"ul"},"fix(checkboxes): background color when they are toggles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4b6ab67085b7514c4f0ab2322e8f45de8bc09449"},(0,n.kt)("inlineCode",{parentName:"a"},"4b6ab67"))),(0,n.kt)("li",{parentName:"ul"},"fix(buttons): border set on basic buttons appearing on svg elements of Volto UI ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/69ca73f33b562b3f87bf11ce43a52ac01f83b951"},(0,n.kt)("inlineCode",{parentName:"a"},"69ca73f"))),(0,n.kt)("li",{parentName:"ul"},"fix(label): Zotero/Footnotes inside label ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0ee4d584f2771b739ed5f2332cb33aad61391786"},(0,n.kt)("inlineCode",{parentName:"a"},"0ee4d58"))),(0,n.kt)("li",{parentName:"ul"},"fix(card) : add control for image url in storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b28e5303ba04c6aee673f1d7f98ce42037c672e1"},(0,n.kt)("inlineCode",{parentName:"a"},"b28e530"))),(0,n.kt)("li",{parentName:"ul"},"fix(less variables):change font family ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e4bca9e0cb7ab9f1fd86e9f4c558382ec129e5a1"},(0,n.kt)("inlineCode",{parentName:"a"},"e4bca9e"))),(0,n.kt)("li",{parentName:"ul"},"fix(storybook):minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9fc53bcad61bbe0561d7a986dbba567d53777a8c"},(0,n.kt)("inlineCode",{parentName:"a"},"9fc53bc"))),(0,n.kt)("li",{parentName:"ul"},"fix(tag): fixes merged theme config ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/eb30363fda8a8a88155ee05268c4d7660fe99df1"},(0,n.kt)("inlineCode",{parentName:"a"},"eb30363"))),(0,n.kt)("li",{parentName:"ul"},"fix(Banner): prop types fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a270e5b4d6e571f219b5da31ca8f883f74da05e3"},(0,n.kt)("inlineCode",{parentName:"a"},"a270e5b")))),(0,n.kt)("h4",{id:"-enhancements-56"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(tag): splits Tags component to TagList and tag, changes default tags style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/78a5f8c245149706a1f7b825ef3e02da5ba86445"},(0,n.kt)("inlineCode",{parentName:"a"},"78a5f8c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner):add banner share pop up in banner story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c9688b2b697c879bbaed3cb3a688a0af7fc71234"},(0,n.kt)("inlineCode",{parentName:"a"},"c9688b2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tag): remove classes and actions that add background color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce9b6f92589618f6cb1e839a2cddc44381ef7406"},(0,n.kt)("inlineCode",{parentName:"a"},"ce9b6f9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner):change banner's image wrapper implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9153dd1073999e67c105b5ba90538bc963e17abc"},(0,n.kt)("inlineCode",{parentName:"a"},"9153dd1"))),(0,n.kt)("li",{parentName:"ul"},"change(package): bump release version to 1.10.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e984c1e1a6ea481a58a5b7a783d077b5769a621"},(0,n.kt)("inlineCode",{parentName:"a"},"7e984c1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): align cards and images, update less variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d47c9780bfbc23d1cba3578f181864074db97e98"},(0,n.kt)("inlineCode",{parentName:"a"},"d47c978"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add class inverted for default card ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/919a56e79c0243fa567144fadd4b842f75f1cf8f"},(0,n.kt)("inlineCode",{parentName:"a"},"919a56e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tag): changes component name ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e1db068bd7ac336a451a4514c61fe44557e14cc2"},(0,n.kt)("inlineCode",{parentName:"a"},"e1db068"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tag): changes color metallicBlue to bottleGreen ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e4b68acf95bb3e192914aab89b2122e0434bf72c"},(0,n.kt)("inlineCode",{parentName:"a"},"e4b68ac"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables): change tag list mobile view ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fcded3dbc67465eec6ef7f72d3fd599ec5cd3c13"},(0,n.kt)("inlineCode",{parentName:"a"},"fcded3d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tagList): update story to not use tag color classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8b5b61bfad9225c0538b713937ed39bbd0bd14e9"},(0,n.kt)("inlineCode",{parentName:"a"},"8b5b61b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner):minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff8c352b899b78528897547df0b20c357fd153cd"},(0,n.kt)("inlineCode",{parentName:"a"},"ff8c352"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner): add metadata field sub component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/327b7e77626c18ae783aea9efae0c7589f63d4f5"},(0,n.kt)("inlineCode",{parentName:"a"},"327b7e7"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): add and adjust remix icon for banner action ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1bf3ffaa16432746c5e5577f0b1643f6659b3f56"},(0,n.kt)("inlineCode",{parentName:"a"},"1bf3ffa"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): replace px with rem and adjust share popup padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a5683294570227d0b25a99e410eb824b2c6d643c"},(0,n.kt)("inlineCode",{parentName:"a"},"a568329"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner):add type class to metadata field and apply styles to it ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/86a286699146c7dda9e288e2183ec8cc86f35a23"},(0,n.kt)("inlineCode",{parentName:"a"},"86a2866"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables):change tag list styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/867008791545769aa003ef7a8a820a7e5a873e4b"},(0,n.kt)("inlineCode",{parentName:"a"},"8670087"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): share items display flex on desktop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ff86840e548f47cd597a0c76b23f996d4a9d74b"},(0,n.kt)("inlineCode",{parentName:"a"},"3ff8684"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): added background gradient, share popup, metadata show and hide #136 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2f5dccacf1e23f45f351b0be58c9bbda04da1518"},(0,n.kt)("inlineCode",{parentName:"a"},"2f5dcca"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): update gradient ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/570ee1e1e9778cb98757804fbd8ad7d9dee9ad13"},(0,n.kt)("inlineCode",{parentName:"a"},"570ee1e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tags): removes hardcoded ':' ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea58e86a79b46b5150d84ff2fbb6a7b8ba47876c"},(0,n.kt)("inlineCode",{parentName:"a"},"ea58e86"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): remove card border ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bc777397026f0efe8e569c8fd0e90d98b585b0eb"},(0,n.kt)("inlineCode",{parentName:"a"},"bc77739")))),(0,n.kt)("h4",{id:"-internal-changes-18"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(card) : add lint and prettier changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9d9a77363f7e4f7ec2ea4db5fa777dc97e086156"},(0,n.kt)("inlineCode",{parentName:"a"},"9d9a773"))),(0,n.kt)("li",{parentName:"ul"},"style(tag): remove comments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/501fcdfb8271f4a3558dadb96c546e71cfdef286"},(0,n.kt)("inlineCode",{parentName:"a"},"501fcdf"))),(0,n.kt)("li",{parentName:"ul"},"style(tag): stylelint and prettier changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/08b63864e8394fd86ada78df0b441cda52cd8063"},(0,n.kt)("inlineCode",{parentName:"a"},"08b6386")))),(0,n.kt)("h4",{id:"\ufe0f-others-47"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"1.10 release #140 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/88d33396845f00830789867663a9cd66ad88920f"},(0,n.kt)("inlineCode",{parentName:"a"},"88d3339"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/328ef2cda2d3470b5cb5ae2ef9854323f6b0f3c7"},(0,n.kt)("inlineCode",{parentName:"a"},"328ef2c"))),(0,n.kt)("li",{parentName:"ul"},"undo changes to Header.jsx committed wrongly in 4b6ab ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bfc4c51d39cf9c5151c39b099071174897de10b0"},(0,n.kt)("inlineCode",{parentName:"a"},"bfc4c51"))),(0,n.kt)("li",{parentName:"ul"},"Update 0-intro.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af75f81a84ddb9b78a77a96450976c6cd1223924"},(0,n.kt)("inlineCode",{parentName:"a"},"af75f81"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): lf fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ecf474ffbaab6796434d49c30fb09deafe9d1125"},(0,n.kt)("inlineCode",{parentName:"a"},"ecf474f"))),(0,n.kt)("li",{parentName:"ul"},"Update 0-intro.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93a073242693fa3c24c39532c2c462f58071e5c4"},(0,n.kt)("inlineCode",{parentName:"a"},"93a0732"))),(0,n.kt)("li",{parentName:"ul"},"modifies tags title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/33c3714660aa6cfbca7e362fd7baa8c396b60a0e"},(0,n.kt)("inlineCode",{parentName:"a"},"33c3714"))),(0,n.kt)("li",{parentName:"ul"},"reafactor(taglist): fixes tags root class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d09959f85d2d21cdc890a71457ed5840b5b2c53"},(0,n.kt)("inlineCode",{parentName:"a"},"7d09959")))),(0,n.kt)("h3",{id:"019---2022-03-25"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.8...0.1.9"},"0.1.9")," - 2022-03-25"),(0,n.kt)("h4",{id:"-new-features-29"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(all): 1.9 release #124 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0d3f6fbf32a4948e00410d9d0943a077863cb869"},(0,n.kt)("inlineCode",{parentName:"a"},"0d3f6fb"))),(0,n.kt)("li",{parentName:"ul"},"feat(callout): Align volto-slate callout with blockquote style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9e0bb49ffe66ebb8b8173af411873ab887b91058"},(0,n.kt)("inlineCode",{parentName:"a"},"9e0bb49")))),(0,n.kt)("h4",{id:"-bug-fixes-42"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(inpageNavigation): restore hidden on top functionality ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c554e6e02e0c82b74653498e2f3fd32a982002a4"},(0,n.kt)("inlineCode",{parentName:"a"},"c554e6e"))),(0,n.kt)("li",{parentName:"ul"},"fix(list): Fix TOC margin on 3rd level ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f17da79394e29baf62bae1247dd954cdd0362108"},(0,n.kt)("inlineCode",{parentName:"a"},"f17da79"))),(0,n.kt)("li",{parentName:"ul"},"fix(inpageNavigation) : add smooth scroll animation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/42f6564276b9214257e2dbc1e2a8f7e501625aee"},(0,n.kt)("inlineCode",{parentName:"a"},"42f6564")))),(0,n.kt)("h4",{id:"-enhancements-57"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update visual and mobile margins ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/64f05af91638d91d2c07217b8edc2fb70a5e7347"},(0,n.kt)("inlineCode",{parentName:"a"},"64f05af"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): restore union dropdown after implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7029c556a9adc1ab9b0269de666e0ed0530f67e"},(0,n.kt)("inlineCode",{parentName:"a"},"a7029c5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pullquote): adjust to the new figma design ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/78e4606ac299938021f9e525898ae7f5cede311f"},(0,n.kt)("inlineCode",{parentName:"a"},"78e4606"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumb): adjust font sizes and import remix divider ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5fcabaf589074716b34fb5d0904e14549d7f4ef2"},(0,n.kt)("inlineCode",{parentName:"a"},"5fcabaf"))),(0,n.kt)("li",{parentName:"ul"},"change(header): use viewport width for changing mobile text in header dropdowns ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5a7868e1725f8766ae1be68d3c27b1313f79196b"},(0,n.kt)("inlineCode",{parentName:"a"},"5a7868e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(inpageNavigation): adjust to the new figma design ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4073acfb87378224d071079467bcfa195b1fc6ac"},(0,n.kt)("inlineCode",{parentName:"a"},"4073acf"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tab): add max width for tab items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/366d279a94d5f388c6167e7afb72d108c77c4085"},(0,n.kt)("inlineCode",{parentName:"a"},"366d279"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables):change pullquote styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9ad94bb424a14713ffa605c7497c95bdefeb6e5f"},(0,n.kt)("inlineCode",{parentName:"a"},"9ad94bb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Pullquote):change quote positions and add Pullquote.Metadata sub component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6bce35fa3cc158d9d18a07d0faf812c5c38bae0b"},(0,n.kt)("inlineCode",{parentName:"a"},"6bce35f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(inpageNavigation): Update to remix icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19a606170b4163cf4f751a419ca36a4c163b566d"},(0,n.kt)("inlineCode",{parentName:"a"},"19a6061"))),(0,n.kt)("li",{parentName:"ul"},"refactor(inpageNavigation) : move icon & text to be in column ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/09539102489ec511cb2b6cd047d316ab8b87ed55"},(0,n.kt)("inlineCode",{parentName:"a"},"0953910"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumbs): modified breadcrumbs template to behave like breadrumb template ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/490a559bc99f3a9d174a344cf0be85086293578e"},(0,n.kt)("inlineCode",{parentName:"a"},"490a559"))),(0,n.kt)("li",{parentName:"ul"},"change(package): bump release version to 1.9.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/43a6e4b92fd05ca272fb140922213834ee426938"},(0,n.kt)("inlineCode",{parentName:"a"},"43a6e4b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumb): adjust font sizes and import remix divider #120 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/09a3a01910ed898b62a9535fe5d2a41cfdb3a91b"},(0,n.kt)("inlineCode",{parentName:"a"},"09a3a01"))),(0,n.kt)("li",{parentName:"ul"},"change(menu): modified secondaryPointingItemMaxWidth to a value that equals to 250 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea138a10257206fae32c4e9a30233a3ddfd424b6"},(0,n.kt)("inlineCode",{parentName:"a"},"ea138a1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pullquote): introduce meta section, use remix icons, integrate slate callouts #119 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fd740c9e72b2defa5cc858ac020f0cb051aa527c"},(0,n.kt)("inlineCode",{parentName:"a"},"fd740c9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): updated visuals and gradients #117 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e5c6d18dc3fb33e5dfa654ecebdc12c6f5f0cf32"},(0,n.kt)("inlineCode",{parentName:"a"},"e5c6d18"))),(0,n.kt)("li",{parentName:"ul"},"change(scrollToTop): feature inpage navigation revamp #121 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3cf20a82b723b8df0b53f16c737e5c8990f891f1"},(0,n.kt)("inlineCode",{parentName:"a"},"3cf20a8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update visual and gradient ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/764ec23a456397b478456f7d628baa4e6c0b4713"},(0,n.kt)("inlineCode",{parentName:"a"},"764ec23"))),(0,n.kt)("li",{parentName:"ul"},"change(header): use 12px font size for mobile resolution dropdowns ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6dad0fab24f37f87696bb50f5a592e88510d053e"},(0,n.kt)("inlineCode",{parentName:"a"},"6dad0fa"))),(0,n.kt)("li",{parentName:"ul"},"change(nav): added navDepth to 3 in order to enable mega menu integration ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4f73fdd0dfadcd63b2f4be7a691bf12dcd9bb76"},(0,n.kt)("inlineCode",{parentName:"a"},"c4f73fd")))),(0,n.kt)("h4",{id:"-internal-changes-19"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(inpageNavigation) : lint changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3641d78374063904c00f1ba19f2f234f7a43892b"},(0,n.kt)("inlineCode",{parentName:"a"},"3641d78"))),(0,n.kt)("li",{parentName:"ul"},"style(inpageNavigation) : add less variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0699c70c66403ff75bf41ba252a74e9f4379671c"},(0,n.kt)("inlineCode",{parentName:"a"},"0699c70"))),(0,n.kt)("li",{parentName:"ul"},"style(pullquote): create variable for icon font size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fea9b0a7c33237ad036522b4dde567718d640210"},(0,n.kt)("inlineCode",{parentName:"a"},"fea9b0a"))),(0,n.kt)("li",{parentName:"ul"},"style(inpageNavigation) : add lint & prettier changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f8dd012a964e0c1f0bc22c36826a4a94bd052759"},(0,n.kt)("inlineCode",{parentName:"a"},"f8dd012"))),(0,n.kt)("li",{parentName:"ul"},"style(inpageNavigation): remove comment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1aee011d032c1a2b7fe564a40688bc39ca457c18"},(0,n.kt)("inlineCode",{parentName:"a"},"1aee011")))),(0,n.kt)("h4",{id:"\ufe0f-others-48"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"perf(eol): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/85a3dc55c7676c0feb8dd5b39fe0cbb9d66a9370"},(0,n.kt)("inlineCode",{parentName:"a"},"85a3dc5"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/00776211ccfa1cb90d9fa0e5269f47f5b3845741"},(0,n.kt)("inlineCode",{parentName:"a"},"0077621"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f1bb1c630edb669b03929a978cc116bae012255"},(0,n.kt)("inlineCode",{parentName:"a"},"9f1bb1c"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2b19fec30d6086f486bdca631a9114d8369fe43"},(0,n.kt)("inlineCode",{parentName:"a"},"e2b19fe"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/03dbc9b027578934f89d9480d981e1bc28f38aa3"},(0,n.kt)("inlineCode",{parentName:"a"},"03dbc9b"))),(0,n.kt)("li",{parentName:"ul"},"Hide breadcrumbs on homepage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e2f609df8d4b6bdb826e539fc0c613406d357a5"},(0,n.kt)("inlineCode",{parentName:"a"},"3e2f609"))),(0,n.kt)("li",{parentName:"ul"},"bug(inpageNavigation): less layers structure fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8d34fbdd5130ed36157db1ff70e8b039faa9f81"},(0,n.kt)("inlineCode",{parentName:"a"},"b8d34fb"))),(0,n.kt)("li",{parentName:"ul"},"prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4b1c572411cbc58dec51d5eeefe9847675c2e41"},(0,n.kt)("inlineCode",{parentName:"a"},"d4b1c57"))),(0,n.kt)("li",{parentName:"ul"},"fefactor(tab): add max width for tab items #118 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/716c408fa4c73f3feb8e36e35fb1f6bb50ac264c"},(0,n.kt)("inlineCode",{parentName:"a"},"716c408"))),(0,n.kt)("li",{parentName:"ul"},"Add reversed option to Timeline grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7c9023245f2fc943380f79743b5f10c6b6f65264"},(0,n.kt)("inlineCode",{parentName:"a"},"7c90232"))),(0,n.kt)("li",{parentName:"ul"},"doc(grid): update grid showcases ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/83671a382e39a2736c2c1353098d5f4fc2a0e67e"},(0,n.kt)("inlineCode",{parentName:"a"},"83671a3"))),(0,n.kt)("li",{parentName:"ul"},"End of line ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7f46fb752ec8918325ebadd386ee88248e02566c"},(0,n.kt)("inlineCode",{parentName:"a"},"7f46fb7")))),(0,n.kt)("h3",{id:"018---2022-03-18"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.7...0.1.8"},"0.1.8")," - 2022-03-18"),(0,n.kt)("h4",{id:"-bug-fixes-43"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(card): avoid long links from spilling outside of card body area ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/95b8951ab87bfab7a68cc20b89b25aa15113aa9d"},(0,n.kt)("inlineCode",{parentName:"a"},"95b8951")))),(0,n.kt)("h4",{id:"-enhancements-58"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(typography): set heading sizes as detailed in docusaurus typography section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/189bf20409581587061ffa30ff2bf04d97f284cf"},(0,n.kt)("inlineCode",{parentName:"a"},"189bf20"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): content tweaks, inpage navigation section #112 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b62d1b1def7c3d8890ffbba30950e8e422e9ed89"},(0,n.kt)("inlineCode",{parentName:"a"},"b62d1b1")))),(0,n.kt)("h4",{id:"-internal-changes-20"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(docusaurus): fixed grid tablet breakpoint value ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c7fbc0912131396e3a1e35803968eda1eff77d40"},(0,n.kt)("inlineCode",{parentName:"a"},"c7fbc09")))),(0,n.kt)("h4",{id:"-documentation-changes-18"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): capitalization remove ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bf8fa4407e7110da1c6a911506d56800bd5c32d7"},(0,n.kt)("inlineCode",{parentName:"a"},"bf8fa44"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1c04976a141324f0dde01b139a77f611e6f51840"},(0,n.kt)("inlineCode",{parentName:"a"},"1c04976"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): comment address on pr 112 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e4fe3bed285eae8b2cff03b1ef558debc0b4edb"},(0,n.kt)("inlineCode",{parentName:"a"},"6e4fe3b"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): color minor update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/13f9fda09287da5b8733d17f9c7567b6b7df750a"},(0,n.kt)("inlineCode",{parentName:"a"},"13f9fda"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): tabs and breadcrump update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d0547e5ad09a8608335b1e77e24c891e49213694"},(0,n.kt)("inlineCode",{parentName:"a"},"d0547e5")))),(0,n.kt)("h4",{id:"\ufe0f-others-49"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"doc(colours): add more content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ec66248f1290369dcf63ee12f7b71a1630df887b"},(0,n.kt)("inlineCode",{parentName:"a"},"ec66248"))),(0,n.kt)("li",{parentName:"ul"},"Add divider content for metadata field in Banner ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f1e34bd6a199f6418fba909e9dfdf50b0100e860"},(0,n.kt)("inlineCode",{parentName:"a"},"f1e34bd"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.8.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fd6ba047e8f8b257c3c75d07a6caefad376f888a"},(0,n.kt)("inlineCode",{parentName:"a"},"fd6ba04")))),(0,n.kt)("h3",{id:"017---2022-03-15"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.6...0.1.7"},"0.1.7")," - 2022-03-15"),(0,n.kt)("h4",{id:"-new-features-30"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(less): add global gap sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c83f20280b8a7ab0b5c78e3df7646beebe08709"},(0,n.kt)("inlineCode",{parentName:"a"},"3c83f20"))),(0,n.kt)("li",{parentName:"ul"},"feat(icons): import remix css ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/29967fb39034910dce286880f347a670f77421b3"},(0,n.kt)("inlineCode",{parentName:"a"},"29967fb")))),(0,n.kt)("h4",{id:"-bug-fixes-44"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(menu): fix border overflow for tabs and pagination ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e88721f916affa2a6d2f03930eb4266f9a2b0fb9"},(0,n.kt)("inlineCode",{parentName:"a"},"e88721f"))),(0,n.kt)("li",{parentName:"ul"},"fix(accordion): responsive and accessibility issues ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c225935ceb9fdba45c6f94086a35e177495fe584"},(0,n.kt)("inlineCode",{parentName:"a"},"c225935")))),(0,n.kt)("h4",{id:"-enhancements-59"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(menu): update paddings for tabs and pagination ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/533a5093e6c306034cb16e0a88e045019677951e"},(0,n.kt)("inlineCode",{parentName:"a"},"533a509"))),(0,n.kt)("li",{parentName:"ul"},"refactor(accordion): import semantic icon for remix arrows ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9aa77d856d1e43f4ec3daaab37f06fa91ebd1eaf"},(0,n.kt)("inlineCode",{parentName:"a"},"9aa77d8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(all) icons, accordion, button and menu itml #108 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/52ed2ca19b5e8dea60f1ee7bfd9c3b6b49a49f7d"},(0,n.kt)("inlineCode",{parentName:"a"},"52ed2ca"))),(0,n.kt)("li",{parentName:"ul"},"change(storybook): segment stories now contain several elements ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/98a7654b0d4a7c30c7a2df35103ddb2740f3ca2d"},(0,n.kt)("inlineCode",{parentName:"a"},"98a7654"))),(0,n.kt)("li",{parentName:"ul"},"change(table): inherit header alignment instead of hard-coding values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ebb5193babfe8b99094db6778afdaf2d91b2c4dd"},(0,n.kt)("inlineCode",{parentName:"a"},"ebb5193"))),(0,n.kt)("li",{parentName:"ul"},"refactor(icons): add remix icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4c1a92b671b52c509386addc02e8919c93391fb"},(0,n.kt)("inlineCode",{parentName:"a"},"c4c1a92"))),(0,n.kt)("li",{parentName:"ul"},"refactor(container): restore mobile width to auto ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2df184c19a8685c69e6b9a55b147a97853cc6b74"},(0,n.kt)("inlineCode",{parentName:"a"},"2df184c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button): update action button hover color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bb09d718433f93091ca1b325471d48741825ca96"},(0,n.kt)("inlineCode",{parentName:"a"},"bb09d71")))),(0,n.kt)("h4",{id:"-internal-changes-21"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(docusaurus): docs delete ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f9d733287902ccb096f5a976a2928e43a43a8e7"},(0,n.kt)("inlineCode",{parentName:"a"},"5f9d733")))),(0,n.kt)("h4",{id:"-documentation-changes-19"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(colors): corrections ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/da64c4c6b58e8840ea98be75d442b90911197e28"},(0,n.kt)("inlineCode",{parentName:"a"},"da64c4c"))),(0,n.kt)("li",{parentName:"ul"},"docs(list): default list showcase ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8ded06231c14d1394f77559aeb2d5a7e3a0c1bf1"},(0,n.kt)("inlineCode",{parentName:"a"},"8ded062")))),(0,n.kt)("h4",{id:"\ufe0f-others-50"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"bug(form): input min-width more specific to not break volto interface ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3f5b5d498ea1a0e3bb6fd62af5930f6579029b11"},(0,n.kt)("inlineCode",{parentName:"a"},"3f5b5d4"))),(0,n.kt)("li",{parentName:"ul"},"Update package.json ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3dba28b5a3d28adbf946a8df3d9cc9b8ef4c68e0"},(0,n.kt)("inlineCode",{parentName:"a"},"3dba28b")))),(0,n.kt)("h3",{id:"016---2022-03-11"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.5...0.1.6"},"0.1.6")," - 2022-03-11"),(0,n.kt)("h4",{id:"-new-features-31"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(cards): add custom display for volto-block-image-cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/645096ac5a0aa3326834191f56ee8a77db0464f5"},(0,n.kt)("inlineCode",{parentName:"a"},"645096a"))),(0,n.kt)("li",{parentName:"ul"},"feat(PublicationCard):create publication card component & styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e5f9b7a9bb301f446b232b99f7db54e6a7470ae"},(0,n.kt)("inlineCode",{parentName:"a"},"3e5f9b7"))),(0,n.kt)("li",{parentName:"ul"},"feat(PublicationCard):create publication card component & styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/12cdd5d50dc4c05f2c2b83586df90c7b91c11a75"},(0,n.kt)("inlineCode",{parentName:"a"},"12cdd5d"))),(0,n.kt)("li",{parentName:"ul"},"feat(Related Content): create Related Content component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/77eda953196f9e686d4ec2c996d6902a614af4a0"},(0,n.kt)("inlineCode",{parentName:"a"},"77eda95"))),(0,n.kt)("li",{parentName:"ul"},"feat(Related Content): create Related Content component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/08d495baeae575a07813056176ac940d7edc91eb"},(0,n.kt)("inlineCode",{parentName:"a"},"08d495b"))),(0,n.kt)("li",{parentName:"ul"},"feat(pagination,related) added several r3 components #105 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/08d47c199286402c31a0ff0de38fd08533d2cd91"},(0,n.kt)("inlineCode",{parentName:"a"},"08d47c1")))),(0,n.kt)("h4",{id:"-bug-fixes-45"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(Related Content): limit publication card number to 4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e7df03214824a85911c26499c8975f88ffa9fe4d"},(0,n.kt)("inlineCode",{parentName:"a"},"e7df032"))),(0,n.kt)("li",{parentName:"ul"},"fix(less variables):rename publication card variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/55c6fb8e5e9660352ce1bf2bd38c4ef8834ce184"},(0,n.kt)("inlineCode",{parentName:"a"},"55c6fb8"))),(0,n.kt)("li",{parentName:"ul"},"fix(Publication Card): add link to card and arg name fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/36a7c961639b2ff07acd455ccf277dd0a93f753c"},(0,n.kt)("inlineCode",{parentName:"a"},"36a7c96"))),(0,n.kt)("li",{parentName:"ul"},"fix(radio): fix bullet scaling issue with firefox ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f02c95f18c77527f949f115471cf24302df4d49"},(0,n.kt)("inlineCode",{parentName:"a"},"5f02c95"))),(0,n.kt)("li",{parentName:"ul"},"fix(radio): fix bullet scaling issue with firefox ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dbb2e27b43e6d267a436a8475107ad01e940ec93"},(0,n.kt)("inlineCode",{parentName:"a"},"dbb2e27")))),(0,n.kt)("h4",{id:"-enhancements-60"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(form): remove custom classes and add container to form items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6b5442a3c56854bf30269f235099d8507ba588f7"},(0,n.kt)("inlineCode",{parentName:"a"},"6b5442a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form): remove custom classes and add container to form items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d1ec083647f854c09d8a64dffa6a5c829321049e"},(0,n.kt)("inlineCode",{parentName:"a"},"d1ec083"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form): update form wrapper component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7195768bbe86121fc82bebca29abfb20b50d77a"},(0,n.kt)("inlineCode",{parentName:"a"},"a719576"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form): update form wrapper component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0736ec7d671d756c13a69bd8bf93488805da27e2"},(0,n.kt)("inlineCode",{parentName:"a"},"0736ec7"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form): adjust form items to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4213cfb79430273e637b06a76af28c9cd660aa74"},(0,n.kt)("inlineCode",{parentName:"a"},"4213cfb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form): adjust form items to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/374ffbc1c380df1b1a5f9939fc658d9ecca4ae1b"},(0,n.kt)("inlineCode",{parentName:"a"},"374ffbc"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumb): remove custom class anf and new variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b3cb83d90e0be7f8a80f619d57bc90cae4f8f207"},(0,n.kt)("inlineCode",{parentName:"a"},"b3cb83d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumb): remove custom class anf and new variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5808ad3576439df010bebfb8fd423858ffc4e66"},(0,n.kt)("inlineCode",{parentName:"a"},"d5808ad"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): clear up unnecessary form elements controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f7e7d5bc285ea5115bc8770c7471729f06da891e"},(0,n.kt)("inlineCode",{parentName:"a"},"f7e7d5b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): small change in unordered list story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ffd87246df9dffcc064683e93d6f3aff35b3931"},(0,n.kt)("inlineCode",{parentName:"a"},"3ffd872"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): small change in unordered list story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6ce16e990f15ef8c61493359815405517756c32c"},(0,n.kt)("inlineCode",{parentName:"a"},"6ce16e9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pagination): fix menu overrides for tabs that affects pagination ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fe8c4ca32072518820ad38f8b334b38f52ef2df5"},(0,n.kt)("inlineCode",{parentName:"a"},"fe8c4ca"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pagination): fix menu overrides for tabs that affects pagination ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3f4b726c2a2047f6f9a65375074dd7ea38717f5c"},(0,n.kt)("inlineCode",{parentName:"a"},"3f4b726"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Loader):remove image & add background image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70fe041e06cfee946bb9557f9fcb5ff49d08c287"},(0,n.kt)("inlineCode",{parentName:"a"},"70fe041"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Loader):remove image & add background image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac3812684ee4377914801cd770890c78bdeecedf"},(0,n.kt)("inlineCode",{parentName:"a"},"ac38126"))),(0,n.kt)("li",{parentName:"ul"},"refactor(list): remove selection control ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a09b1798a62a6e192deb1d217d0c44b4b881ce6a"},(0,n.kt)("inlineCode",{parentName:"a"},"a09b179"))),(0,n.kt)("li",{parentName:"ul"},"refactor(list): remove selection control ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/17bf710d00a91acd35356dbaa9d5093ca80a8987"},(0,n.kt)("inlineCode",{parentName:"a"},"17bf710"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook):unordered list minor change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/df2b72730500aee5d0bbc82185222edacad38b2b"},(0,n.kt)("inlineCode",{parentName:"a"},"df2b727"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook):unordered list minor change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef6db73ce2236d0f653212d2f57c336f1f8d806e"},(0,n.kt)("inlineCode",{parentName:"a"},"ef6db73"))),(0,n.kt)("li",{parentName:"ul"},"refactor(colors): remove metalic blue color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b2f95b6dc3b1d8314827d56e88efa0dfc719aca2"},(0,n.kt)("inlineCode",{parentName:"a"},"b2f95b6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(colors): remove metalic blue color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1eea33f71fdde5834f82d244224c185fde3ab8ba"},(0,n.kt)("inlineCode",{parentName:"a"},"1eea33f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button): update variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b1774d8c7f32ded2eff654b0d16e45d944fe5690"},(0,n.kt)("inlineCode",{parentName:"a"},"b1774d8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button): update variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/061f3e3042f28575dbb1a70f09a62bda728815be"},(0,n.kt)("inlineCode",{parentName:"a"},"061f3e3"))),(0,n.kt)("li",{parentName:"ul"},"change(blockquote): treat slate as a variation of blockquote component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19bd9a5f67e573b71531fe34b29d2e08e0856eae"},(0,n.kt)("inlineCode",{parentName:"a"},"19bd9a5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(container): remove important from rules ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e984771ed59fe849246ae8a01d9d84f3f2f232c5"},(0,n.kt)("inlineCode",{parentName:"a"},"e984771"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook):add textarea control to add/remove fluid class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/475f540efa76d0993c3f7bd72d4c646385f4c909"},(0,n.kt)("inlineCode",{parentName:"a"},"475f540"))),(0,n.kt)("li",{parentName:"ul"},"refactor(container): remove important from rules ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1cc69848705d3d592221bf7fa7d43c8b0eb37f09"},(0,n.kt)("inlineCode",{parentName:"a"},"1cc6984"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): add required attribute to form fields ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fecee278b920c44dd0dd34ace81f9606258c8f7c"},(0,n.kt)("inlineCode",{parentName:"a"},"fecee27"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progressBar): update progress bar colors with vars ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4ef1f0f6eba9792901bc9e0ec5b01877e9da96e"},(0,n.kt)("inlineCode",{parentName:"a"},"c4ef1f0"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progressBar): update progress bar colors with vars ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a44d73c48b6ccc988508fed5c3fb585353fe0958"},(0,n.kt)("inlineCode",{parentName:"a"},"a44d73c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): add required attribute to form fields ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/21da79eafa9f23dcf01cac7e096da7fab2187450"},(0,n.kt)("inlineCode",{parentName:"a"},"21da79e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(list): adjust bullet size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2b29e4e429f939500bc7d7ebd5836b8bc24090ec"},(0,n.kt)("inlineCode",{parentName:"a"},"2b29e4e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(list): adjust bullet size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/61c341cfdad3fccdd7499f6957f91ab99159ea16"},(0,n.kt)("inlineCode",{parentName:"a"},"61c341c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): add inverted background to global variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1427e70f2b208531bbb91ab1a708430f1c03ea3a"},(0,n.kt)("inlineCode",{parentName:"a"},"1427e70"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): add inverted background to global variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea25dfa5589181b7d23bef153bae3ab279e70167"},(0,n.kt)("inlineCode",{parentName:"a"},"ea25dfa"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): remove custom class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/46cc5601e378c7bfcf927b7c25dae2a2d3f795fd"},(0,n.kt)("inlineCode",{parentName:"a"},"46cc560"))),(0,n.kt)("li",{parentName:"ul"},"refactor(container): update mobile width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d548a44d86745270778134028be597f559d7a0b4"},(0,n.kt)("inlineCode",{parentName:"a"},"d548a44"))),(0,n.kt)("li",{parentName:"ul"},"refactor(grid): replace px with rem units ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e792f51e4f41b8f3f53e297b9e5a01d5e2d9bfb1"},(0,n.kt)("inlineCode",{parentName:"a"},"e792f51"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): remove custom class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b5c8e7c2aeb2751d4b981eacc51e3dda58a922dc"},(0,n.kt)("inlineCode",{parentName:"a"},"b5c8e7c"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): updated template to change what's new title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e15f4d3c3e5d4199886bb4cfeda8dce6a4bf041"},(0,n.kt)("inlineCode",{parentName:"a"},"3e15f4d"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): added display variable for footer site logos ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5b3c2f6d85b3a42eefa8521a074a7581bfbd8fb"},(0,n.kt)("inlineCode",{parentName:"a"},"d5b3c2f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(grid): replace px with rem units ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f0331d00f537cf41ca184796386f60a88bfe6c86"},(0,n.kt)("inlineCode",{parentName:"a"},"f0331d0"))),(0,n.kt)("li",{parentName:"ul"},"change(github): auto deploy only on develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/11d6b4e9059674b6dd1fe655995231be03a910fb"},(0,n.kt)("inlineCode",{parentName:"a"},"11d6b4e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): implementation in preparation for Volto integration #20 #89 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/95b136d51ddbc5632c0fa1cc696c2297a8c4695c"},(0,n.kt)("inlineCode",{parentName:"a"},"95b136d"))),(0,n.kt)("li",{parentName:"ul"},"change(github): trigger autobuild when modifying templates contents ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/46094b1427793cd88da6f615b16b70e6cfaee9af"},(0,n.kt)("inlineCode",{parentName:"a"},"46094b1")))),(0,n.kt)("h4",{id:"-internal-changes-22"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(list): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f9e3b05effc0afeddc234b491bc86f2ec82a764f"},(0,n.kt)("inlineCode",{parentName:"a"},"f9e3b05"))),(0,n.kt)("li",{parentName:"ul"},"style(list): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8eb715b05b3bef2795d2485084386c6e910392cf"},(0,n.kt)("inlineCode",{parentName:"a"},"8eb715b"))),(0,n.kt)("li",{parentName:"ul"},"chore(github): merge changes from develop to develop-itml ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/063bd6ecc5e47321854ca4994a91bf0a43ab3e3e"},(0,n.kt)("inlineCode",{parentName:"a"},"063bd6e"))),(0,n.kt)("li",{parentName:"ul"},"chore(github): build deployment only on develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a5a1b0802b46d674d04ae099afc8510e3cb62222"},(0,n.kt)("inlineCode",{parentName:"a"},"a5a1b08"))),(0,n.kt)("li",{parentName:"ul"},"chore(github): build deployment only on develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bb455aa4308e6593c45bcb3a62b8058709d74f83"},(0,n.kt)("inlineCode",{parentName:"a"},"bb455aa"))),(0,n.kt)("li",{parentName:"ul"},"chore(github): merge changes from develop to develop-itml ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/129c12f60025db50bac5b2d3dd36e04a97d49499"},(0,n.kt)("inlineCode",{parentName:"a"},"129c12f")))),(0,n.kt)("h4",{id:"\ufe0f-others-51"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},'Revert "chore(github): merge changes from develop to develop-itml" ',(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca9520fe8d91f8924ea203eb32001e3e6518e472"},(0,n.kt)("inlineCode",{parentName:"a"},"ca9520f"))),(0,n.kt)("li",{parentName:"ul"},"refactor breadcrumbs component, make it functional and customizable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e902d6931060c5676d67842f95391379fcb3cccf"},(0,n.kt)("inlineCode",{parentName:"a"},"e902d69"))),(0,n.kt)("li",{parentName:"ul"},"rollback(cards): move custom display to volto-block-image-cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2564b1ec2cc52670c0f2abc92c49161f5cd1b006"},(0,n.kt)("inlineCode",{parentName:"a"},"2564b1e"))),(0,n.kt)("li",{parentName:"ul"},"bring back segment wrapper and make it attached ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8458f0321f44f22a605e7179485d97f41a0afa38"},(0,n.kt)("inlineCode",{parentName:"a"},"8458f03"))),(0,n.kt)("li",{parentName:"ul"},"no ",(0,n.kt)("inlineCode",{parentName:"li"},"display: flex")," for blockquote added from slate ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5595ce1b8173e6952ab3926dc5f3c988279a42dc"},(0,n.kt)("inlineCode",{parentName:"a"},"5595ce1"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about code length ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a5f36523682dde8d1e16f416a07cd0c8c615a386"},(0,n.kt)("inlineCode",{parentName:"a"},"a5f3652"))),(0,n.kt)("li",{parentName:"ul"},"Add indenting rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/15c44cbcb6a52d0fd0438ff9b5d0e5963a4b53a0"},(0,n.kt)("inlineCode",{parentName:"a"},"15c44cb"))),(0,n.kt)("li",{parentName:"ul"},"fix warning related to proptype ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/946c6c6bc9dece0985ae4b9f9cad6ece2be0ff2c"},(0,n.kt)("inlineCode",{parentName:"a"},"946c6c6"))),(0,n.kt)("li",{parentName:"ul"},"fix profile section css overflow ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/db5126fc902e191d1e18fb7e4c54877c8d8786e6"},(0,n.kt)("inlineCode",{parentName:"a"},"db5126f"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about import sorting ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/804e188eea30427053111310ad2d3edf6a4ec78b"},(0,n.kt)("inlineCode",{parentName:"a"},"804e188"))),(0,n.kt)("li",{parentName:"ul"},"don't use volto-slate ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6a029765d3a59ac65b3b5dd18c1a9624bae1d52a"},(0,n.kt)("inlineCode",{parentName:"a"},"6a02976"))),(0,n.kt)("li",{parentName:"ul"},"remove segment custom width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1d3ea40f98bbdc1eab95b4da739a659b5e29ec16"},(0,n.kt)("inlineCode",{parentName:"a"},"1d3ea40"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about naming vars ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f9020fa3073190681de36cf1dcdf62e69ac2c74"},(0,n.kt)("inlineCode",{parentName:"a"},"8f9020f"))),(0,n.kt)("li",{parentName:"ul"},"update style for accordion title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0b0d678c69d8b0765ff015b0355c01d57c643192"},(0,n.kt)("inlineCode",{parentName:"a"},"0b0d678"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.6.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e771e657e5bedca3630d05cda643c45da5369d4c"},(0,n.kt)("inlineCode",{parentName:"a"},"e771e65"))),(0,n.kt)("li",{parentName:"ul"},"update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bbcab87ef4c8475f347f0daf4ab7e428e69c2316"},(0,n.kt)("inlineCode",{parentName:"a"},"bbcab87"))),(0,n.kt)("li",{parentName:"ul"},"add margin to ","<","br",">"," element to simulate gap as in design ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c6685c11a14febfc9b6c592a9adc9a25a0b80458"},(0,n.kt)("inlineCode",{parentName:"a"},"c6685c1"))),(0,n.kt)("li",{parentName:"ul"},"make breadcrumbs default size as tiny ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/589581fa29a7e249e59393bebe9dfe284090db6f"},(0,n.kt)("inlineCode",{parentName:"a"},"589581f"))),(0,n.kt)("li",{parentName:"ul"},"remove uneeded style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/82a8fb1eb3a359d54bc59234e498eb122d07223c"},(0,n.kt)("inlineCode",{parentName:"a"},"82a8fb1"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about hardcoded values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e04e0df7cd47d575e649d1995ea5c64b2a431b05"},(0,n.kt)("inlineCode",{parentName:"a"},"e04e0df"))),(0,n.kt)("li",{parentName:"ul"},"Add file mode rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/65c9a9357a82a39bf54862eff9231264a6277ab5"},(0,n.kt)("inlineCode",{parentName:"a"},"65c9a93"))),(0,n.kt)("li",{parentName:"ul"},"Add DRY rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/66c9c3a6b05bf3395f5bda1a7c5af26a9962e66c"},(0,n.kt)("inlineCode",{parentName:"a"},"66c9c3a"))),(0,n.kt)("li",{parentName:"ul"},"set profile section overflow to auto ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/71ab47f89a433233c14b394c3824e607dd18a393"},(0,n.kt)("inlineCode",{parentName:"a"},"71ab47f"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using eea-website-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/647a6e3e2093f2c4884c356eb148453551c8f33f"},(0,n.kt)("inlineCode",{parentName:"a"},"647a6e3"))),(0,n.kt)("li",{parentName:"ul"},"removed override already present in card.less ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/50d2ab26f85c8f409da02ec128cc1df34848ca69"},(0,n.kt)("inlineCode",{parentName:"a"},"50d2ab2"))),(0,n.kt)("li",{parentName:"ul"},"update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7a1d482aa875ab2669ed688663228d79ce9b7bea"},(0,n.kt)("inlineCode",{parentName:"a"},"7a1d482"))),(0,n.kt)("li",{parentName:"ul"},"Add functional components rule; add classnames rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91a0b067c7a36002a6d49c5c0238f593b5a6ac6e"},(0,n.kt)("inlineCode",{parentName:"a"},"91a0b06"))),(0,n.kt)("li",{parentName:"ul"},"added comment about need for removal of this fix later ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/65b81665c1cc41991b4903bb44a5eb7fb8ec5f3b"},(0,n.kt)("inlineCode",{parentName:"a"},"65b8166")))),(0,n.kt)("h3",{id:"015---2022-03-08"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.4...0.1.5"},"0.1.5")," - 2022-03-08"),(0,n.kt)("h4",{id:"-new-features-32"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(cards): add custom display for volto-block-image-cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f49ffb65f41c78499f56251c2de267ce5617b4c5"},(0,n.kt)("inlineCode",{parentName:"a"},"f49ffb6"))),(0,n.kt)("li",{parentName:"ul"},"feat(KeyContent): add new component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2534c542c2fd729b31a9064a21dae2bd3cacb2e4"},(0,n.kt)("inlineCode",{parentName:"a"},"2534c54"))),(0,n.kt)("li",{parentName:"ul"},"feat(docusaurus): Updated developer guidelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca146ffd42cb31286a5c49fa09390d0a93270cfa"},(0,n.kt)("inlineCode",{parentName:"a"},"ca146ff"))),(0,n.kt)("li",{parentName:"ul"},"feat(storybook): add testimonial component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/55d97472d82f3819674e78f684e197625c9f854c"},(0,n.kt)("inlineCode",{parentName:"a"},"55d9747"))),(0,n.kt)("li",{parentName:"ul"},"feat(storybook): add AvatarGrid component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b6684456ea6fa17695734b5179b39be77644da93"},(0,n.kt)("inlineCode",{parentName:"a"},"b668445"))),(0,n.kt)("li",{parentName:"ul"},"feat(storybook):add Loader component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6758346a516f7c4be5d66dfdf198dbe2ffe3f01"},(0,n.kt)("inlineCode",{parentName:"a"},"f675834")))),(0,n.kt)("h4",{id:"-bug-fixes-46"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(breakpoints): fix largest screen breakpoint bug on scaling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e4a11c876c20187351fa9454b4fbf0de3e502bff"},(0,n.kt)("inlineCode",{parentName:"a"},"e4a11c8"))),(0,n.kt)("li",{parentName:"ul"},"fix(profile): section css overflow and padding issues #95 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bb9eb0f83307524bda5cf86aa0dfd678c65da653"},(0,n.kt)("inlineCode",{parentName:"a"},"bb9eb0f"))),(0,n.kt)("li",{parentName:"ul"},"fix(storybook): lint auto changes for AvatarGrid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8e74f17df77f8f9f96bf442dc178417bbfc04c6"},(0,n.kt)("inlineCode",{parentName:"a"},"b8e74f1"))),(0,n.kt)("li",{parentName:"ul"},"fix(components): add grid structure to various components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cc33546deda634cee6031bd6cde6eef3eaacb76a"},(0,n.kt)("inlineCode",{parentName:"a"},"cc33546"))),(0,n.kt)("li",{parentName:"ul"},"fix(header) re-added span tags removed in pull request #74 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/00702d7831b84aad52f10368dbef740baf581ab8"},(0,n.kt)("inlineCode",{parentName:"a"},"00702d7")))),(0,n.kt)("h4",{id:"-enhancements-61"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(button): styling updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/37afda5b00797d456e303fb585dad145b575b2ed"},(0,n.kt)("inlineCode",{parentName:"a"},"37afda5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tab): updates on variables and overrides ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/54bf703f9f34f2f945f4635cd4bc4728174c7d47"},(0,n.kt)("inlineCode",{parentName:"a"},"54bf703"))),(0,n.kt)("li",{parentName:"ul"},"change(blockquote): treat slate as a variation of blockquote component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5e8a8b8220c7c25a266f045442aae44303eb8701"},(0,n.kt)("inlineCode",{parentName:"a"},"5e8a8b8"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): added display variable for footer site logos ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2f942b4a80c3ed9eb94e8b71299f4ebf33501eea"},(0,n.kt)("inlineCode",{parentName:"a"},"2f942b4"))),(0,n.kt)("li",{parentName:"ul"},"refactor(checkbox/radio): remove header from message and adjust top position of bullet ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a072b30bb01cf59339960cfd3254584cfae57c6"},(0,n.kt)("inlineCode",{parentName:"a"},"4a072b3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(color): remove secondaryColorDarken variable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/74c8ba073cc92af3987d81d484768235b95fcffb"},(0,n.kt)("inlineCode",{parentName:"a"},"74c8ba0"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): updated template to change what's new title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/58f58c887560e707ced47ccbac6897d8ebcf45d2"},(0,n.kt)("inlineCode",{parentName:"a"},"58f58c8"))),(0,n.kt)("li",{parentName:"ul"},"change(github): auto deploy only on develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bfa35a32bf0fefd4433aec4f7f8ee2cfe53eaae5"},(0,n.kt)("inlineCode",{parentName:"a"},"bfa35a3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): implementation in preparation for Volto integration #20 #97 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cddda2090d3d17c086dfd0cdb8a4dab3f886bfcd"},(0,n.kt)("inlineCode",{parentName:"a"},"cddda20"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumbs): component, make it functional and pluggable #32 #94 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f42e802bdf29d02c76131379b168c8c2119864b"},(0,n.kt)("inlineCode",{parentName:"a"},"9f42e80"))),(0,n.kt)("li",{parentName:"ul"},"change(card): added styles for volto cards integration #92 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a46ac21e6229059fb982174610a733c44000a2b6"},(0,n.kt)("inlineCode",{parentName:"a"},"a46ac21"))),(0,n.kt)("li",{parentName:"ul"},"refactor(grid): remove column count from example ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac0e9cf8e9f6ea99ddf8d5a92e49903999cde262"},(0,n.kt)("inlineCode",{parentName:"a"},"ac0e9cf"))),(0,n.kt)("li",{parentName:"ul"},"change(github): trigger autobuild when modifying templates contents ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f7d1523e92c1c4b3e6285a48d5f8c776aecfa9c"},(0,n.kt)("inlineCode",{parentName:"a"},"5f7d152"))),(0,n.kt)("li",{parentName:"ul"},"refactor(grid): remove custom grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1d978a96a464b3285961d54cb1cbc7c9eaf35faf"},(0,n.kt)("inlineCode",{parentName:"a"},"1d978a9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Form):change form field wrapper implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/73cdd6daba19aefce091552a62a528a42b323228"},(0,n.kt)("inlineCode",{parentName:"a"},"73cdd6d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(message): update colors to match design ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/633ce311dc5a6a141ee514a9108753531aa661e4"},(0,n.kt)("inlineCode",{parentName:"a"},"633ce31"))),(0,n.kt)("li",{parentName:"ul"},"refactor(checkbox/radio): update variables and remove important rules ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ad533b4e3e821c126f62b558523057720d2573c8"},(0,n.kt)("inlineCode",{parentName:"a"},"ad533b4"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables): add variables to less for new components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/47df026655748865bc7af8f44d51e5a9fcf7ee34"},(0,n.kt)("inlineCode",{parentName:"a"},"47df026"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Tab): fix vertical tab alignment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/401bdf2868e8c8305ad2c3cefa3188b730348574"},(0,n.kt)("inlineCode",{parentName:"a"},"401bdf2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(lint changes): add lint changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6f6847fc19db7922c93cb5f52e50db845d053e04"},(0,n.kt)("inlineCode",{parentName:"a"},"6f6847f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(inpageNavigation): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/62f74ea3c08069da8615516a52df8415d50048d5"},(0,n.kt)("inlineCode",{parentName:"a"},"62f74ea"))),(0,n.kt)("li",{parentName:"ul"},"refactor(message): updates on styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4cf8501de961794baf5a8ecec99e4bcddc2d71b"},(0,n.kt)("inlineCode",{parentName:"a"},"b4cf850"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): update class name ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef0969bd873e9fdd0eb32593f7c3f995270ef44c"},(0,n.kt)("inlineCode",{parentName:"a"},"ef0969b"))),(0,n.kt)("li",{parentName:"ul"},"change(github): use develop for auto pushing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a32a723f8126292f62a71cb4c4f94a2c7dec7605"},(0,n.kt)("inlineCode",{parentName:"a"},"a32a723")))),(0,n.kt)("h4",{id:"-internal-changes-23"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(design-system): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/631fa90e2ec5352c01e2ee0824de4a45cc33de34"},(0,n.kt)("inlineCode",{parentName:"a"},"631fa90"))),(0,n.kt)("li",{parentName:"ul"},"style(checkbox/radio): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a04939fdb530ed998a40aeb5b85a748d5dace0cd"},(0,n.kt)("inlineCode",{parentName:"a"},"a04939f"))),(0,n.kt)("li",{parentName:"ul"},"style(design-system): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c753f0b378384150597283c97f657eafbfff296"},(0,n.kt)("inlineCode",{parentName:"a"},"3c753f0"))),(0,n.kt)("li",{parentName:"ul"},"style(message): stylelint fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5b75057cb3a7b366a940ca9d1ba577cd09dc7225"},(0,n.kt)("inlineCode",{parentName:"a"},"5b75057")))),(0,n.kt)("h4",{id:"-documentation-changes-20"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): visuals guidelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/544a9502dc046d7e8bc635c19480a8deb2b31379"},(0,n.kt)("inlineCode",{parentName:"a"},"544a950"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): search guidelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0fb229d8b6a042bd716a093faaf8a1461b70cdb8"},(0,n.kt)("inlineCode",{parentName:"a"},"0fb229d"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): loader page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/892a25dba66f3557af22f8f0f96db695ddf1b402"},(0,n.kt)("inlineCode",{parentName:"a"},"892a25d")))),(0,n.kt)("h4",{id:"\ufe0f-others-52"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Reformat header.less ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f99dfc82c165304ca5600ce5138c1233615ab69"},(0,n.kt)("inlineCode",{parentName:"a"},"1f99dfc"))),(0,n.kt)("li",{parentName:"ul"},"Close menu when changing path ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/65daea9ee34c64bd5e51104077bc745b68169cd2"},(0,n.kt)("inlineCode",{parentName:"a"},"65daea9"))),(0,n.kt)("li",{parentName:"ul"},"refactor breadcrumbs component, make it functional and customizable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ec374e20565eb0a5aed0ff67a02cd6f77eba1f0"},(0,n.kt)("inlineCode",{parentName:"a"},"4ec374e"))),(0,n.kt)("li",{parentName:"ul"},"rollback(cards): move custom display to volto-block-image-cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/79d4c8914b7184d559465135f046b60ee96301e1"},(0,n.kt)("inlineCode",{parentName:"a"},"79d4c89"))),(0,n.kt)("li",{parentName:"ul"},"Open overlay menu on global menu click ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cc749bc4266aae793b85d72c43c8a08b0c2fec48"},(0,n.kt)("inlineCode",{parentName:"a"},"cc749bc"))),(0,n.kt)("li",{parentName:"ul"},"bring back segment wrapper and make it attached ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f413ffaf641c161e8ff0f8010759cffd7e30238"},(0,n.kt)("inlineCode",{parentName:"a"},"9f413ff"))),(0,n.kt)("li",{parentName:"ul"},"Use renderMenuItem also in mobile menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/02de0bb4750062a310109256b6c6d29120287fd4"},(0,n.kt)("inlineCode",{parentName:"a"},"02de0bb"))),(0,n.kt)("li",{parentName:"ul"},"Fix clicking outside closes menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af526646559d1a00ade04dc24def26e5665a5a8c"},(0,n.kt)("inlineCode",{parentName:"a"},"af52664"))),(0,n.kt)("li",{parentName:"ul"},"Cleanup args in header story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2bf6a304b1149ec1204f08f318248ed52ad8fa3d"},(0,n.kt)("inlineCode",{parentName:"a"},"2bf6a30"))),(0,n.kt)("li",{parentName:"ul"},"fix warning related to proptype ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/824b9beff77aae139882cd50a1d670a02ec6f723"},(0,n.kt)("inlineCode",{parentName:"a"},"824b9be"))),(0,n.kt)("li",{parentName:"ul"},"fix profile section css overflow ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8fd265413149f1b5e033dffa0fbcb5ef5ecad15f"},(0,n.kt)("inlineCode",{parentName:"a"},"8fd2654"))),(0,n.kt)("li",{parentName:"ul"},"don't use volto-slate ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70ca3d4ec4e8e4dc633e957b842d94b708af8b82"},(0,n.kt)("inlineCode",{parentName:"a"},"70ca3d4"))),(0,n.kt)("li",{parentName:"ul"},"remove segment custom width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a60d84d5fe76578b7760aa1dad6eef9a20916a7"},(0,n.kt)("inlineCode",{parentName:"a"},"4a60d84"))),(0,n.kt)("li",{parentName:"ul"},"update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/96f4af0fb22605fd294472eb18f7f62e4bd7b0fb"},(0,n.kt)("inlineCode",{parentName:"a"},"96f4af0"))),(0,n.kt)("li",{parentName:"ul"},"Fix TopDropdownMenu component rendering in mobile ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4626def4e1f97f323f3fef130f5d531925ba15b"},(0,n.kt)("inlineCode",{parentName:"a"},"a4626de"))),(0,n.kt)("li",{parentName:"ul"},"Add usePrevious hook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/797faba3cad73288755f6c6e685448d780905189"},(0,n.kt)("inlineCode",{parentName:"a"},"797faba"))),(0,n.kt)("li",{parentName:"ul"},"make breadcrumbs default size as tiny ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c8e1c64f27596421e78927f11616093667b04c6"},(0,n.kt)("inlineCode",{parentName:"a"},"3c8e1c6"))),(0,n.kt)("li",{parentName:"ul"},"Update package.json ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fa020cb5dd85e28d0713b3e8a11aff5b2c1060af"},(0,n.kt)("inlineCode",{parentName:"a"},"fa020cb"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about hardcoded values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0c6912c82625c2e389fd75f0d0a051348781d407"},(0,n.kt)("inlineCode",{parentName:"a"},"0c6912c"))),(0,n.kt)("li",{parentName:"ul"},"set profile section overflow to auto ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8db62bbcd0258fee16411e94888c732a29b1949d"},(0,n.kt)("inlineCode",{parentName:"a"},"8db62bb"))),(0,n.kt)("li",{parentName:"ul"},"added comment about need for removal of this fix later ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6fdbd713dbfe795e7e81cfa37398774fad71c054"},(0,n.kt)("inlineCode",{parentName:"a"},"6fdbd71"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using eea-website-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6051724437a38675e659c797bb5586ef81286ec0"},(0,n.kt)("inlineCode",{parentName:"a"},"6051724"))),(0,n.kt)("li",{parentName:"ul"},"removed override already present in card.less ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93c4e5aac9cc85ff2cc6c04180f6655d5f5616dc"},(0,n.kt)("inlineCode",{parentName:"a"},"93c4e5a"))),(0,n.kt)("li",{parentName:"ul"},"Remove console.log calls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8a3a4cb32bfed2daa86339b15c0301eb01e19f23"},(0,n.kt)("inlineCode",{parentName:"a"},"8a3a4cb"))),(0,n.kt)("li",{parentName:"ul"},"update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/81bb7d4a02576887b80e978c32724580b772d57a"},(0,n.kt)("inlineCode",{parentName:"a"},"81bb7d4"))),(0,n.kt)("li",{parentName:"ul"},"Update comment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ffa24001728f824b8e7154c93c5aad8196bd92ea"},(0,n.kt)("inlineCode",{parentName:"a"},"ffa2400"))),(0,n.kt)("li",{parentName:"ul"},"merge develop into this branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ad5b388957b7d67f1b7ae06f2b80b1c30868d72a"},(0,n.kt)("inlineCode",{parentName:"a"},"ad5b388"))),(0,n.kt)("li",{parentName:"ul"},"WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a8d97f10b9768894a135549e9dc8f938b663f905"},(0,n.kt)("inlineCode",{parentName:"a"},"a8d97f1"))),(0,n.kt)("li",{parentName:"ul"},"Use header.less from develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/99edbc6ccd6023162dcce75b36d6b9451b06f6dc"},(0,n.kt)("inlineCode",{parentName:"a"},"99edbc6"))),(0,n.kt)("li",{parentName:"ul"},"WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/57b5783e2b03859f89c5926951ea232547b455cc"},(0,n.kt)("inlineCode",{parentName:"a"},"57b5783"))),(0,n.kt)("li",{parentName:"ul"},"WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/785da36b725bf14bff28a67da799c51bc5b4f20f"},(0,n.kt)("inlineCode",{parentName:"a"},"785da36"))),(0,n.kt)("li",{parentName:"ul"},"WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5d1eba9a1df2d2bb078f119ee99b0627ac55ae1d"},(0,n.kt)("inlineCode",{parentName:"a"},"5d1eba9"))),(0,n.kt)("li",{parentName:"ul"},"adds Tags ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e37fc1957ed8357bc2190239da4440bb98b0dabe"},(0,n.kt)("inlineCode",{parentName:"a"},"e37fc19"))),(0,n.kt)("li",{parentName:"ul"},"Add useClickOutside hook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70364c88631cbfa6e6854a99dde42ea2ad73221f"},(0,n.kt)("inlineCode",{parentName:"a"},"70364c8"))),(0,n.kt)("li",{parentName:"ul"},"Implement outside click handling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fa6f81823c47ca32209f3f1c8b1810b5447f97ec"},(0,n.kt)("inlineCode",{parentName:"a"},"fa6f818"))),(0,n.kt)("li",{parentName:"ul"},"Simplify overlay menu template ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/28b04784cf32ed4393e452c56680bffda411d526"},(0,n.kt)("inlineCode",{parentName:"a"},"28b0478"))),(0,n.kt)("li",{parentName:"ul"},"fixes less variables, fixes tags positioning ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cc19b9b537b5f21ceaba986bbd0182bb3b867ac7"},(0,n.kt)("inlineCode",{parentName:"a"},"cc19b9b"))),(0,n.kt)("li",{parentName:"ul"},"WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/15bc0f4287b705839f6fd5ac8835f03e2e99f1f1"},(0,n.kt)("inlineCode",{parentName:"a"},"15bc0f4"))),(0,n.kt)("li",{parentName:"ul"},"no ",(0,n.kt)("inlineCode",{parentName:"li"},"display: flex")," for blockquote added from slate ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/312a893e924dea4e7aed182be4a615bc3c4f04f8"},(0,n.kt)("inlineCode",{parentName:"a"},"312a893"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about code length ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/318cd48f8116a49897590137eebe2ce35285b813"},(0,n.kt)("inlineCode",{parentName:"a"},"318cd48"))),(0,n.kt)("li",{parentName:"ul"},"Add indenting rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d58968522ef82a7d5381fc4958ae2049562b7103"},(0,n.kt)("inlineCode",{parentName:"a"},"d589685"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about import sorting ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cd337c16650ae169e4b634b034f40f3cd887ceb8"},(0,n.kt)("inlineCode",{parentName:"a"},"cd337c1"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about naming vars ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b112de0dcaa4209cfe143dcd26ba929b4cbe0a42"},(0,n.kt)("inlineCode",{parentName:"a"},"b112de0"))),(0,n.kt)("li",{parentName:"ul"},"Bring back classNames from header subpopup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e477a5150bee569fadca300a3ccc3586e7d7ef4a"},(0,n.kt)("inlineCode",{parentName:"a"},"e477a51"))),(0,n.kt)("li",{parentName:"ul"},"removes tags hashtag from jsx ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6b8b3e94a6a1060304c1e5b228806985343ef6a0"},(0,n.kt)("inlineCode",{parentName:"a"},"6b8b3e9"))),(0,n.kt)("li",{parentName:"ul"},"WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d481324ff7a63e3cb0847b89fa188cc8781de4dc"},(0,n.kt)("inlineCode",{parentName:"a"},"d481324"))),(0,n.kt)("li",{parentName:"ul"},"fixes undefined on empty classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4b29080d646c44b02a28c4619f5285227fa2bf78"},(0,n.kt)("inlineCode",{parentName:"a"},"4b29080"))),(0,n.kt)("li",{parentName:"ul"},"stylelint changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a5ab83018bccd8fbfcf2160fe9c6c4fc24abe83a"},(0,n.kt)("inlineCode",{parentName:"a"},"a5ab830"))),(0,n.kt)("li",{parentName:"ul"},"Footer link color @white ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/578e4f7bb174cd46d50a8b5c5a97f8bbff510f11"},(0,n.kt)("inlineCode",{parentName:"a"},"578e4f7"))),(0,n.kt)("li",{parentName:"ul"},"add margin to ","<","br",">"," element to simulate gap as in design ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9ab9a97dc231fd3b704fedd99c742f425be4578c"},(0,n.kt)("inlineCode",{parentName:"a"},"9ab9a97"))),(0,n.kt)("li",{parentName:"ul"},"impors colors from site variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6117267716b76b17379ae989911c5d5f00e63259"},(0,n.kt)("inlineCode",{parentName:"a"},"6117267"))),(0,n.kt)("li",{parentName:"ul"},"small fix for the link in footer action ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/72df049aa644ac2a675057bf3a96440144acabfb"},(0,n.kt)("inlineCode",{parentName:"a"},"72df049"))),(0,n.kt)("li",{parentName:"ul"},"remove uneeded style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/66e9064de395b37caef1436aaee3a164b53ae406"},(0,n.kt)("inlineCode",{parentName:"a"},"66e9064"))),(0,n.kt)("li",{parentName:"ul"},"use proper naming conventions for var naming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/596e3143e28f23e60f20becd97276831c89d9684"},(0,n.kt)("inlineCode",{parentName:"a"},"596e314"))),(0,n.kt)("li",{parentName:"ul"},"Add file mode rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/805baa7db5ae1863bc85687f8f872c74a26647c8"},(0,n.kt)("inlineCode",{parentName:"a"},"805baa7"))),(0,n.kt)("li",{parentName:"ul"},"use less variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b43ac8d3bfc0231313f3d8bc719e373a127c6329"},(0,n.kt)("inlineCode",{parentName:"a"},"b43ac8d"))),(0,n.kt)("li",{parentName:"ul"},"Add DRY rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2f1584e769d0462c0385847630e3bbfe48a52339"},(0,n.kt)("inlineCode",{parentName:"a"},"2f1584e"))),(0,n.kt)("li",{parentName:"ul"},"Add functional components rule; add classnames rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1b2915ed3a4a3446e11058ac7de8937cf5755630"},(0,n.kt)("inlineCode",{parentName:"a"},"1b2915e"))),(0,n.kt)("li",{parentName:"ul"},"fix z-index of header ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d2a5d6bb822a298367ce58d867939318171a300"},(0,n.kt)("inlineCode",{parentName:"a"},"7d2a5d6"))),(0,n.kt)("li",{parentName:"ul"},"Remove comment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d120b16491406ea7cc26428dcf13ec2565868d0"},(0,n.kt)("inlineCode",{parentName:"a"},"7d120b1")))),(0,n.kt)("h3",{id:"014---2022-03-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.4-beta.0...0.1.4"},"0.1.4")," - 2022-03-01"),(0,n.kt)("h4",{id:"-enhancements-62"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(pagination): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/06cc3b6db6f56040264e4c70fe2e39ace14499d7"},(0,n.kt)("inlineCode",{parentName:"a"},"06cc3b6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Form):create form field wrapper file ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/95b9934a75ffd6b254b7bb9c119b8087c7565c13"},(0,n.kt)("inlineCode",{parentName:"a"},"95b9934"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): update margins for menu items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/230e476d133b3f7853a73f3f2ee372c6306bd43f"},(0,n.kt)("inlineCode",{parentName:"a"},"230e476"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): update gradient ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/47f2ea40c4f214a41af58ceb90839a05932b0b55"},(0,n.kt)("inlineCode",{parentName:"a"},"47f2ea4")))),(0,n.kt)("h4",{id:"-documentation-changes-21"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): divider page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c6bb2389f819a9ebd8e34db0e825f3e5f62130d4"},(0,n.kt)("inlineCode",{parentName:"a"},"c6bb238")))),(0,n.kt)("h4",{id:"\ufe0f-others-53"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"add footer links,align footer image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b039564e8cd3a0319ebe07f434f20bb7d7827fe1"},(0,n.kt)("inlineCode",{parentName:"a"},"b039564"))),(0,n.kt)("li",{parentName:"ul"},"cosmetics: remove formatting ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e02b08dc2adc8b89a5b9117b5a572c7080248c29"},(0,n.kt)("inlineCode",{parentName:"a"},"e02b08d"))),(0,n.kt)("li",{parentName:"ul"},"refactor Footer component to consume children and prop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/faafcffe07383ba55f5746cb971cdf706d988f78"},(0,n.kt)("inlineCode",{parentName:"a"},"faafcff"))),(0,n.kt)("li",{parentName:"ul"},"update footer stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4e5742872f21d9737f3de443fa0e9d1b6ba02637"},(0,n.kt)("inlineCode",{parentName:"a"},"4e57428"))),(0,n.kt)("li",{parentName:"ul"},"update stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/81973cac96ee48e9b294c45e32c0ec3d2956fe67"},(0,n.kt)("inlineCode",{parentName:"a"},"81973ca"))),(0,n.kt)("li",{parentName:"ul"},"Small improvements to footer ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6d1fdc000ab83932df62244142068f097aeeb85"},(0,n.kt)("inlineCode",{parentName:"a"},"f6d1fdc"))),(0,n.kt)("li",{parentName:"ul"},"fix header urls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e5908916823a1f5771ddbeb51b3e8af026425c49"},(0,n.kt)("inlineCode",{parentName:"a"},"e590891"))),(0,n.kt)("li",{parentName:"ul"},"Rename files in footer story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3de0c19d1ddeb69d8567026e1532fceb9221049a"},(0,n.kt)("inlineCode",{parentName:"a"},"3de0c19"))),(0,n.kt)("li",{parentName:"ul"},"add style for accordion title input on edit mode ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/598aa129f2dff0a2cb2ec57f551fa72481aa911e"},(0,n.kt)("inlineCode",{parentName:"a"},"598aa12"))),(0,n.kt)("li",{parentName:"ul"},"remove comments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2db0d2c2bbebe8bab8cf9801c5ea2650dde96b87"},(0,n.kt)("inlineCode",{parentName:"a"},"2db0d2c"))),(0,n.kt)("li",{parentName:"ul"},"Apply slate customization if volto-slate addon is used ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c066701dc359c6daf01703dac8fa61c2314c11cf"},(0,n.kt)("inlineCode",{parentName:"a"},"c066701"))),(0,n.kt)("li",{parentName:"ul"},"use relative links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af91a203bb30f5c9aa1335bfa8cdaa7857d577e2"},(0,n.kt)("inlineCode",{parentName:"a"},"af91a20"))),(0,n.kt)("li",{parentName:"ul"},"make footer anchor links white ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0c671e1bf52268505a5dc58196c285c04da33b10"},(0,n.kt)("inlineCode",{parentName:"a"},"0c671e1"))),(0,n.kt)("li",{parentName:"ul"},"use custom var for line-height ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f7f6c7ea605014741b9426b19008a4e6eda6704c"},(0,n.kt)("inlineCode",{parentName:"a"},"f7f6c7e"))),(0,n.kt)("li",{parentName:"ul"},"Update semantic.less ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4a90aed030a8927fa2ea949e4f44d23638c751a"},(0,n.kt)("inlineCode",{parentName:"a"},"a4a90ae"))),(0,n.kt)("li",{parentName:"ul"},"Bump release version ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c41a42bc2fd8174a2554e6dce1a1090eff4f3bd1"},(0,n.kt)("inlineCode",{parentName:"a"},"c41a42b"))),(0,n.kt)("li",{parentName:"ul"},"Update style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/89686990b2481f339c9bec7e7f9d35d9caab94c5"},(0,n.kt)("inlineCode",{parentName:"a"},"8968699"))),(0,n.kt)("li",{parentName:"ul"},"remove styling on header popups ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/86c499be61c0d2df46cb3469a47f0afae2e46c49"},(0,n.kt)("inlineCode",{parentName:"a"},"86c499b"))),(0,n.kt)("li",{parentName:"ul"},"remove search icon styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aca80fdc78859461cfee1d902b1d122d4a189b31"},(0,n.kt)("inlineCode",{parentName:"a"},"aca80fd"))),(0,n.kt)("li",{parentName:"ul"},"adjust popup height for computer screens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/47c5edb06c8d8cdb9af8ac64f68be0e0360eccaf"},(0,n.kt)("inlineCode",{parentName:"a"},"47c5edb"))),(0,n.kt)("li",{parentName:"ul"},"fix login container width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9a887e3b15aa63aab9be8738f599febcfe245b81"},(0,n.kt)("inlineCode",{parentName:"a"},"9a887e3"))),(0,n.kt)("li",{parentName:"ul"},"Typo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/90da95c67e965124da7f431e464bcbc15fa67894"},(0,n.kt)("inlineCode",{parentName:"a"},"90da95c"))),(0,n.kt)("li",{parentName:"ul"},"fix search-input icon line-height ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b087ff86d7753f3ee0bf90a9b07c4ee7ef5e336c"},(0,n.kt)("inlineCode",{parentName:"a"},"b087ff8"))),(0,n.kt)("li",{parentName:"ul"},"lint fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e9790ca72b8d3caf114c1b80b9c5837fb6a1a56e"},(0,n.kt)("inlineCode",{parentName:"a"},"e9790ca"))),(0,n.kt)("li",{parentName:"ul"},"Rename, reorganize logos ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1ef8d22df5a757258d8610818f44362046bc828d"},(0,n.kt)("inlineCode",{parentName:"a"},"1ef8d22")))),(0,n.kt)("h3",{id:"014-beta0---2022-02-25"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.3...0.1.4-beta.0"},"0.1.4-beta.0")," - 2022-02-25"),(0,n.kt)("h4",{id:"-new-features-33"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(github): added feature and bug reports templates with our guidelines as checkboxes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/15490937382ced93f5ac69cc1939256c0a468823"},(0,n.kt)("inlineCode",{parentName:"a"},"1549093")))),(0,n.kt)("h3",{id:"013---2022-02-25"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.2...0.1.3"},"0.1.3")," - 2022-02-25"),(0,n.kt)("h4",{id:"-bug-fixes-47"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(all): change eol to unix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/62e72244f78d43ce1c7b1a5ceb8405e4a617c88a"},(0,n.kt)("inlineCode",{parentName:"a"},"62e7224"))),(0,n.kt)("li",{parentName:"ul"},"fix(banner): separate url value ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f9c9140a6f8640bbb83a08f9c5c268f31ff7b6a8"},(0,n.kt)("inlineCode",{parentName:"a"},"f9c9140"))),(0,n.kt)("li",{parentName:"ul"},"fix(all): merge eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c68f6e0e7ab11d7451c8aabf194f62da0b6adb28"},(0,n.kt)("inlineCode",{parentName:"a"},"c68f6e0"))),(0,n.kt)("li",{parentName:"ul"},"fix(blockquote): align self property now uses a valid entry ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ec761634765105694386ce48153fb95c09339273"},(0,n.kt)("inlineCode",{parentName:"a"},"ec76163")))),(0,n.kt)("h4",{id:"-enhancements-63"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): new implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff013afc68fed97d085e3930f6d728b266786dc1"},(0,n.kt)("inlineCode",{parentName:"a"},"ff013af"))),(0,n.kt)("li",{parentName:"ul"},"change(volto): removed customizations made for ims theme from volto-eea-design-system ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bc8d514d82da0811c10eefe6dde16e0846497a4a"},(0,n.kt)("inlineCode",{parentName:"a"},"bc8d514"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Timeline): divide to sub components and change files to .jsx ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e2bd3b6c8dd064e7269819ce465b961a0cee849"},(0,n.kt)("inlineCode",{parentName:"a"},"3e2bd3b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4e5d08d565ef08e4e390ede4a611145a16ca2fa9"},(0,n.kt)("inlineCode",{parentName:"a"},"4e5d08d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): link header's menu to mega menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/08406d84e5bc1c7eb1358baff19ff6731f124b32"},(0,n.kt)("inlineCode",{parentName:"a"},"08406d8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Menu): change mega menu implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/455a51b9a9fbb00c6a89c42de226787c143176f7"},(0,n.kt)("inlineCode",{parentName:"a"},"455a51b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Grid):minor changes and delete extra files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/272585dfed0c0e82b26c1e6843484ad0981ba75f"},(0,n.kt)("inlineCode",{parentName:"a"},"272585d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(timeline): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b98641af00f23302b728094ed00a4563b6813387"},(0,n.kt)("inlineCode",{parentName:"a"},"b98641a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): fix link hover issue for tablet ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/564e9721aea7d4ed998d88764e37454bc3154d3d"},(0,n.kt)("inlineCode",{parentName:"a"},"564e972"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add remix icons and minor updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c9c97dd719187e996efabaee28ccbf23d43f03af"},(0,n.kt)("inlineCode",{parentName:"a"},"c9c97dd"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): change header buttons implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6608b8cfffb75dda90b01728dc4fe657cbd84069"},(0,n.kt)("inlineCode",{parentName:"a"},"6608b8c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): add sub components and change existing Main ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/74c35a3fe462bdad7b9b2a5a6e969043439fdf5b"},(0,n.kt)("inlineCode",{parentName:"a"},"74c35a3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(table): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab7a0e8d9e83edb3035d57285a5f85557bcd7576"},(0,n.kt)("inlineCode",{parentName:"a"},"ab7a0e8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Footer): delete Actions & ThemeSites files and clear imports ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7a78456f55742a1b356070303218342876641e52"},(0,n.kt)("inlineCode",{parentName:"a"},"7a78456"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/326655a48aeac65b32beadb48707d0193c952702"},(0,n.kt)("inlineCode",{parentName:"a"},"326655a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Breadcrumb): add react router link and minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/073a3a36215427dce274a533b10d2d0bb3526de9"},(0,n.kt)("inlineCode",{parentName:"a"},"073a3a3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): show menu on search & minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4d49a8ae6958b84bd2dbaf7bd5f62310037eb288"},(0,n.kt)("inlineCode",{parentName:"a"},"4d49a8a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(List): add extra default list story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/95665cdca945cba104a25d5efcbc56436dffbd7f"},(0,n.kt)("inlineCode",{parentName:"a"},"95665cd"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus) change generation of what's new section and bump package version ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6c35cff4d65bb44755376c85ff4de8c6b39af00b"},(0,n.kt)("inlineCode",{parentName:"a"},"6c35cff"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Footer): minor code changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/67cb4bc5f9d341da78e7816ed89f219d8ac2836e"},(0,n.kt)("inlineCode",{parentName:"a"},"67cb4bc"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Menu): add class to mega menu items for styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19baa342c29322d11371303dc0092f472da1eeee"},(0,n.kt)("inlineCode",{parentName:"a"},"19baa34"))),(0,n.kt)("li",{parentName:"ul"},"change(accordion): modified default accordion stories titles with real accordion names ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cf11cc81d7096d338c565180597822e51fcaa8b7"},(0,n.kt)("inlineCode",{parentName:"a"},"cf11cc8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): accessibility image alt fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7347a688c2f37f08390b189f8bfa990c26c7f75"},(0,n.kt)("inlineCode",{parentName:"a"},"a7347a6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): adjust to volto in progress ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/760becabf40dbbaed36dac6c37275c7e31aa2509"},(0,n.kt)("inlineCode",{parentName:"a"},"760beca"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): header items as storybook arguments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/388c752aa0694e78f5306c2b2efa4a34df4b9ca6"},(0,n.kt)("inlineCode",{parentName:"a"},"388c752"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): update less variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/35b0a98eced49212bb08c3c7d2ac6987a16ec6be"},(0,n.kt)("inlineCode",{parentName:"a"},"35b0a98"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): actions as buttons; don't hardcode url for banner image; subcomponentize Banner, add Banner.Action; add developer guidelines on inline styles and line endings; ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6dd5a41248e8bf4095744bd89217707f3ad820a1"},(0,n.kt)("inlineCode",{parentName:"a"},"6dd5a41"))),(0,n.kt)("li",{parentName:"ul"},"refactor(blockquote): fix responsive margins and sizes rems ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/209f94f5535d83678af5fd650dcc3892a94c8a34"},(0,n.kt)("inlineCode",{parentName:"a"},"209f94f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Input): label position and style change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/970074aacae0c1ffabe88be58779b332993a37fd"},(0,n.kt)("inlineCode",{parentName:"a"},"970074a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update dropdown menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32eb0fa5dbb431c5d8e74e4c3e28b0555dab8aea"},(0,n.kt)("inlineCode",{parentName:"a"},"32eb0fa"))),(0,n.kt)("li",{parentName:"ul"},"refactor(timeline): theming updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c80c9aa5eb08c3b58199c6f6faca06445640f9f8"},(0,n.kt)("inlineCode",{parentName:"a"},"c80c9aa"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Blockquote):remove image stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a6357caa641e18e7a19b834cd907ba8c7117367f"},(0,n.kt)("inlineCode",{parentName:"a"},"a6357ca"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus) proofread blockquote usage section and removed unused api section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0bb29fdb73bce90f842748abd978a388fff93932"},(0,n.kt)("inlineCode",{parentName:"a"},"0bb29fd"))),(0,n.kt)("li",{parentName:"ul"},"change(infrastructure) cherry-pick fix 9639243 skipping jenkins on auto commits ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fc744cda5a4e6d9da0ab6e7f92868d53f28f53c1"},(0,n.kt)("inlineCode",{parentName:"a"},"fc744cd"))),(0,n.kt)("li",{parentName:"ul"},"change(ci) build storybook and docusaurus only when pushing to develop-itml branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4de0cbf9bfc4ecb46605dca1048a38db844880e7"},(0,n.kt)("inlineCode",{parentName:"a"},"4de0cbf"))),(0,n.kt)("li",{parentName:"ul"},"change(infrastructure): modify whats new doc when committing the auto deployment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/39df33ed946a8167e4954cffb676144700e0ec38"},(0,n.kt)("inlineCode",{parentName:"a"},"39df33e"))),(0,n.kt)("li",{parentName:"ul"},"change(blockquote): introduce float argument for blockquote with image storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8fc72906c264b5e96702f8518e81d5724b494a5c"},(0,n.kt)("inlineCode",{parentName:"a"},"8fc7290"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pullquote): add word break ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2245e53dde6dd8abf437afa94e92bbedc60c9f8c"},(0,n.kt)("inlineCode",{parentName:"a"},"2245e53"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner): minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b9073b60e337eab40a992283b5b9e75d5cffe895"},(0,n.kt)("inlineCode",{parentName:"a"},"b9073b6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(table): fix th font weight ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a96a0a7a4cb450b5f947bc397495a2a41c605c87"},(0,n.kt)("inlineCode",{parentName:"a"},"a96a0a7"))),(0,n.kt)("li",{parentName:"ul"},"refactor(comment): remove avatar border radius ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d42c37bb8f71e20e1d0ec438c14e3c7ac00cf0ae"},(0,n.kt)("inlineCode",{parentName:"a"},"d42c37b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): adjust title size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7a24d9c07a5994fa46c39fdf1e827e0d1ae5e504"},(0,n.kt)("inlineCode",{parentName:"a"},"7a24d9c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Image): change image path ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a580da68a45bbe68d314f60e9495fc321489caf5"},(0,n.kt)("inlineCode",{parentName:"a"},"a580da6"))),(0,n.kt)("li",{parentName:"ul"},"change(infrastructure): specify that docs folder contains changes for deployment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a1ca9153b70e3525cd73423d059a8607f63fc2b9"},(0,n.kt)("inlineCode",{parentName:"a"},"a1ca915")))),(0,n.kt)("h4",{id:"-internal-changes-24"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(input) prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e83fa0c3e95e33d89ab668de38e6b0b12d9fb0d9"},(0,n.kt)("inlineCode",{parentName:"a"},"e83fa0c"))),(0,n.kt)("li",{parentName:"ul"},"chore(storybook): prettier fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/354c7b33c92a9f48ca9cbb0b96b6cec213e465c8"},(0,n.kt)("inlineCode",{parentName:"a"},"354c7b3"))),(0,n.kt)("li",{parentName:"ul"},"chore(design system): technical commit for edw integration tests ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f76035122d647e14b5151af3b39f0ab3e199af2"},(0,n.kt)("inlineCode",{parentName:"a"},"9f76035"))),(0,n.kt)("li",{parentName:"ul"},"style(storybook): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c9ad345268335c42e41d13b35c0da93e9770847"},(0,n.kt)("inlineCode",{parentName:"a"},"3c9ad34"))),(0,n.kt)("li",{parentName:"ul"},"chore(infrastructure) updated branch with changes from bitbucket ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/77866f8c7ac203db0645a74b7a7456b5c4de5dd7"},(0,n.kt)("inlineCode",{parentName:"a"},"77866f8")))),(0,n.kt)("h4",{id:"\ufe0f-others-54"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"doc(colours):fix color to better show primary ones ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/705b7899f9d687747d2deb27ac4d8b4429878de0"},(0,n.kt)("inlineCode",{parentName:"a"},"705b789"))),(0,n.kt)("li",{parentName:"ul"},"doc(colours):change font size to fit text in one line ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ad751660ec832e67a0c858e75685259b9ef8d82"},(0,n.kt)("inlineCode",{parentName:"a"},"4ad7516"))),(0,n.kt)("li",{parentName:"ul"},"bump package release to 1.3.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f3cfe4f5232ff96a9845d12da72008cf838c1010"},(0,n.kt)("inlineCode",{parentName:"a"},"f3cfe4f"))),(0,n.kt)("li",{parentName:"ul"},"Refactor banner into content subcomponent ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f8df238b4db90fdb841cdd5436a644e582f73b82"},(0,n.kt)("inlineCode",{parentName:"a"},"f8df238"))),(0,n.kt)("li",{parentName:"ul"},"lint fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cda322d8c013ef303b93b4b8d29594aa3bbd0bc1"},(0,n.kt)("inlineCode",{parentName:"a"},"cda322d"))),(0,n.kt)("li",{parentName:"ul"},"rollback don'ts grammar change and disable unresolved import for Banner.stories.jsx ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a1bd7154fa64451b6a521743955a57405dc7fb67"},(0,n.kt)("inlineCode",{parentName:"a"},"a1bd715"))),(0,n.kt)("li",{parentName:"ul"},"Add space line in component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4d1a5fbe9a9ea53701702d7ce33622795f5ab00"},(0,n.kt)("inlineCode",{parentName:"a"},"d4d1a5f")))),(0,n.kt)("h3",{id:"012---2022-02-17"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.2-beta.2...0.1.2"},"0.1.2")," - 2022-02-17"),(0,n.kt)("h4",{id:"-new-features-34"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(blockquote) added blockquote styles as a custom module ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d30662e23176cf7a5ab64aa322acd5a09a0c4130"},(0,n.kt)("inlineCode",{parentName:"a"},"d30662e")))),(0,n.kt)("h4",{id:"-bug-fixes-48"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(inpageNavigation): hide at the top of the page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/97ef50069cd9b29345fb68ce8b557a47577669a4"},(0,n.kt)("inlineCode",{parentName:"a"},"97ef500"))),(0,n.kt)("li",{parentName:"ul"},"fix(footer):missing image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac91a29a134c97af842c6be4987c60c44c4c96d8"},(0,n.kt)("inlineCode",{parentName:"a"},"ac91a29"))),(0,n.kt)("li",{parentName:"ul"},"fix(comment):fix broken image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8125dc179923f652ecd25003df8ecb4fb0aeffb9"},(0,n.kt)("inlineCode",{parentName:"a"},"8125dc1"))),(0,n.kt)("li",{parentName:"ul"},"fix(message): fix font loading ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fdc498e178a04315c88e005fbc1371ba954ff402"},(0,n.kt)("inlineCode",{parentName:"a"},"fdc498e"))),(0,n.kt)("li",{parentName:"ul"},"fix(logo): logo change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f8c8af4453774386d5d0432a078b049416d034b"},(0,n.kt)("inlineCode",{parentName:"a"},"5f8c8af")))),(0,n.kt)("h4",{id:"-enhancements-64"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): multiple components fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a3ff518323a3eab18edc5057c6f1233e5422a22"},(0,n.kt)("inlineCode",{parentName:"a"},"4a3ff51"))),(0,n.kt)("li",{parentName:"ul"},"change(infrastructure) re-enable integration tests for auto release stack ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce8daf8abc6eb9a6b7fd8579904a3e5642896e3a"},(0,n.kt)("inlineCode",{parentName:"a"},"ce8daf8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): global site files styling update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f3770f1756bca3898e2a67fa532a9d97b0fd1ef2"},(0,n.kt)("inlineCode",{parentName:"a"},"f3770f1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): multiple components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9277aaccb09aa03575b95851d55fc69b1f530e23"},(0,n.kt)("inlineCode",{parentName:"a"},"9277aac"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer) adjust to volto theming update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a59f1c354ceea661c60faabfdb6226c9f4ba1209"},(0,n.kt)("inlineCode",{parentName:"a"},"a59f1c3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): minor styling update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dd6b55c6c5331383a42f6865bd9bd0641feb9a3b"},(0,n.kt)("inlineCode",{parentName:"a"},"dd6b55c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): change header mega menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7559b57a08c2f0e9f3eb95167479ca041b998bc5"},(0,n.kt)("inlineCode",{parentName:"a"},"7559b57"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/451b9493b100dae80bed4b6629da725195dddff1"},(0,n.kt)("inlineCode",{parentName:"a"},"451b949"))),(0,n.kt)("li",{parentName:"ul"},"refactor(accordion): minor styling update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aeaf25f585c1379a2bd40de1c1bf03fee00ef76e"},(0,n.kt)("inlineCode",{parentName:"a"},"aeaf25f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bdff1768096443f2f453d76bf9958adabd309cb7"},(0,n.kt)("inlineCode",{parentName:"a"},"bdff176"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer):mobile responsiveness ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/14822bec78feebc2b06fc26d6992a481be2e3609"},(0,n.kt)("inlineCode",{parentName:"a"},"14822be"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): main and custom less files update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1607760bb1582c63ab1a6b978ac13bb0ca51b0c2"},(0,n.kt)("inlineCode",{parentName:"a"},"1607760"))),(0,n.kt)("li",{parentName:"ul"},"refactor(timeline): update after removing timeline addon ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f54d3806eb0a60379b46b03a04a6602ed465cd15"},(0,n.kt)("inlineCode",{parentName:"a"},"f54d380"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Footer): replace with subcomponents ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/378c652265213bafac9de1d946cb328fa2fe90cb"},(0,n.kt)("inlineCode",{parentName:"a"},"378c652"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): header change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/029e85039bb3f35a6ba4ff2870d98e1faa23661b"},(0,n.kt)("inlineCode",{parentName:"a"},"029e850"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): change header bar ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2b766fd62c86d22f01278c54d3a1dbfb696b095b"},(0,n.kt)("inlineCode",{parentName:"a"},"2b766fd"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus) use itml branch for docusaurus deployment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e286c50056aa6d0d5735cb330789b4e48a1f927"},(0,n.kt)("inlineCode",{parentName:"a"},"6e286c5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(accordion): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/971fcb824f6aa55ac28b4b275927b202d2c08ca6"},(0,n.kt)("inlineCode",{parentName:"a"},"971fcb8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): add sub components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7f955dbafa94c13e71ff587af70aa84d18da8da0"},(0,n.kt)("inlineCode",{parentName:"a"},"7f955db"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus) tweak auto deployment to always commit changes from docs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a2940daef1cf281bac87dec3cec68337053cc52d"},(0,n.kt)("inlineCode",{parentName:"a"},"a2940da"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): less and variables files created ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5b1a8aaf7f678dd60fb88149284058fcab617fd"},(0,n.kt)("inlineCode",{parentName:"a"},"d5b1a8a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(label): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c945e1600b4beb3667b389542adade317d285c6"},(0,n.kt)("inlineCode",{parentName:"a"},"3c945e1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(message): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e950fc56461540be24d9e5b2ff3c0bf8ad53738"},(0,n.kt)("inlineCode",{parentName:"a"},"3e950fc"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Footer): add sub components and props ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c3d14871887a83fb91792fbc8977c0439bcb16f2"},(0,n.kt)("inlineCode",{parentName:"a"},"c3d1487"))),(0,n.kt)("li",{parentName:"ul"},"refactor(modal): modal and confirm adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/83b60e94bdd3203a92a1b9038f9cc45011ba72a5"},(0,n.kt)("inlineCode",{parentName:"a"},"83b60e9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(comment): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/84348c36b5b750c324c89b5e3c462319bb9ebf46"},(0,n.kt)("inlineCode",{parentName:"a"},"84348c3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook):adjust headings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32f64f9b71d1cb8c96c9c37ba1850a2278f95287"},(0,n.kt)("inlineCode",{parentName:"a"},"32f64f9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): add comments to header menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c2c83b202e5117d8e0013101d8e922e9d93d21de"},(0,n.kt)("inlineCode",{parentName:"a"},"c2c83b2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Accordion): clear up accordion stories code ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4e59b8fa961b878591e9806e1ebbfdb841523077"},(0,n.kt)("inlineCode",{parentName:"a"},"4e59b8f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(segmant): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ab211e868296f377fddba203847549f0e5e07df"},(0,n.kt)("inlineCode",{parentName:"a"},"3ab211e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button) minor styling update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8782bb27c789a4aac97b380d718f4de129fdf682"},(0,n.kt)("inlineCode",{parentName:"a"},"8782bb2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): change image position ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cdd76d59ade86f3f989bf7d94e45e4d9b439115f"},(0,n.kt)("inlineCode",{parentName:"a"},"cdd76d5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumbs): update less variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/640817ee904f88a04f0e8f11b258f95b8db97039"},(0,n.kt)("inlineCode",{parentName:"a"},"640817e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(list): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1079c733e6ec634fedaab5b4630888a52b28e482"},(0,n.kt)("inlineCode",{parentName:"a"},"1079c73"))),(0,n.kt)("li",{parentName:"ul"},"refactor(timeline):adjust timeline module ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/213eb11e8e87940c18d81738609b4684329a5ce4"},(0,n.kt)("inlineCode",{parentName:"a"},"213eb11"))),(0,n.kt)("li",{parentName:"ul"},"refactor(blockquote):adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5eec87fc1b3017011266241c20b31217ac27c12d"},(0,n.kt)("inlineCode",{parentName:"a"},"5eec87f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progress): add progress bar colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ccf3c9823b2583fc70183554df7c4588fbf9ca13"},(0,n.kt)("inlineCode",{parentName:"a"},"ccf3c98"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pullquote):adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fee446668a8d65a717b42667af825cb5cec836b2"},(0,n.kt)("inlineCode",{parentName:"a"},"fee4466"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): change mobile mega menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c7ecf18a81024121218d580f201f324cf990829e"},(0,n.kt)("inlineCode",{parentName:"a"},"c7ecf18"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b726e49519914b02766bcd993b94ce9ff164e1df"},(0,n.kt)("inlineCode",{parentName:"a"},"b726e49"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button) adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/eb257f83541871ccc635842664722b914661770c"},(0,n.kt)("inlineCode",{parentName:"a"},"eb257f8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form): minor styling update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/79934b2cde2e806418a6422df2914321181f7a22"},(0,n.kt)("inlineCode",{parentName:"a"},"79934b2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Footer): create Actions & Sites sub components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/446840b99abd6897c1b59a9462d72b1f06f1dd4e"},(0,n.kt)("inlineCode",{parentName:"a"},"446840b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(inpageNavigation): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/85c631a9e9c1454f1f2530e4f1851089663dd610"},(0,n.kt)("inlineCode",{parentName:"a"},"85c631a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Inpage Navigation): changed button's display ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/36e5b4f107ce3535b607f7ed169c723a66ce6ac2"},(0,n.kt)("inlineCode",{parentName:"a"},"36e5b4f"))),(0,n.kt)("li",{parentName:"ul"},"enhancement(docusaurus) modified headings to be within release versions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19ace3038d6b4535b29634209e4d506e7dca2c2c"},(0,n.kt)("inlineCode",{parentName:"a"},"19ace30"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): move components to ui folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb91f88f628580f565eb01ea8627763bc2243dfb"},(0,n.kt)("inlineCode",{parentName:"a"},"cb91f88"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): change mega menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/de0fc6b3862a88ac04058b56020af23c1946ce41"},(0,n.kt)("inlineCode",{parentName:"a"},"de0fc6b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Pullquote): divide Pullquote to sub components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/34413c44ab9e318d67408f7497782b7de693deeb"},(0,n.kt)("inlineCode",{parentName:"a"},"34413c4"))),(0,n.kt)("li",{parentName:"ul"},"enhancement(docusaurus) replace changelog when auto-building docs Refs #145331 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/da25c0e25ffa80131ab4b5503b28e43385d9f827"},(0,n.kt)("inlineCode",{parentName:"a"},"da25c0e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(popup): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d0d192dc2b2a5edd422cf6a7b359c384ec4b1d55"},(0,n.kt)("inlineCode",{parentName:"a"},"d0d192d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ab6f914f487bea0df299de7da0bbd917733ee00"},(0,n.kt)("inlineCode",{parentName:"a"},"2ab6f91"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/89a16af86a165d7798b68b95ff3de215a92f0569"},(0,n.kt)("inlineCode",{parentName:"a"},"89a16af"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pullquotes) remove unnecessary variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e0d20a3febec060ac24c5498846e768d7068e8b9"},(0,n.kt)("inlineCode",{parentName:"a"},"e0d20a3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progress):adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d1ab950ee9cc14bbe95869d4f143fc428aad5a8d"},(0,n.kt)("inlineCode",{parentName:"a"},"d1ab950"))),(0,n.kt)("li",{parentName:"ul"},"refactor(blockquote) change variables names ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/36fd5be9bde1a3ceb8390639414f254fc26b8e76"},(0,n.kt)("inlineCode",{parentName:"a"},"36fd5be"))),(0,n.kt)("li",{parentName:"ul"},"refactor(comment): adjust font sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0311ed14c951eb9cba18a58f6f954c19601d838b"},(0,n.kt)("inlineCode",{parentName:"a"},"0311ed1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(InpageNavigation): clear up code ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1d7afdc8d751e61c3eef75360555807fdbef8619"},(0,n.kt)("inlineCode",{parentName:"a"},"1d7afdc"))),(0,n.kt)("li",{parentName:"ul"},"refactor(container): change variable name for computer padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/26d123f3e7e30a706b09efc10773694af79377f9"},(0,n.kt)("inlineCode",{parentName:"a"},"26d123f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(inpageNavigation): remove imports ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/25c1d1c3016695d92d104a12b22a6a9254f41b20"},(0,n.kt)("inlineCode",{parentName:"a"},"25c1d1c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): update ui index components exports ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce78d47880cab5849f4c01785cdd97a9b26771ec"},(0,n.kt)("inlineCode",{parentName:"a"},"ce78d47"))),(0,n.kt)("li",{parentName:"ul"},"change(infrastructure) auto build storybook when pushing to develop-itml branch of volto-eea-design-system ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e9aa5bc3de9c2e1c5dc55b5d317679bc14dd1cbd"},(0,n.kt)("inlineCode",{parentName:"a"},"e9aa5bc"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): delete demo stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8b58d0245f5bda7e2022a2ef9ace11015f13da01"},(0,n.kt)("inlineCode",{parentName:"a"},"8b58d02"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus) align deployment steps for building docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/37e4ce05d2772ac320a7ad561536189c5ea0a582"},(0,n.kt)("inlineCode",{parentName:"a"},"37e4ce0"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): remove components from customizations folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8930edeaf064ec316f1d086e1301a7e5269bfe4b"},(0,n.kt)("inlineCode",{parentName:"a"},"8930ede"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tab): minor styling update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1252ad0317ecf7e583dbb975b29a4c8e4c75330e"},(0,n.kt)("inlineCode",{parentName:"a"},"1252ad0"))),(0,n.kt)("li",{parentName:"ul"},"refactor(comment): change avatar src ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e5f9c4c02f5de5ae6480eedb45730bb76efbf7b4"},(0,n.kt)("inlineCode",{parentName:"a"},"e5f9c4c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner) : change file type and folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/878742ba0f95440ffbb5aec33f2cc4201dfacd43"},(0,n.kt)("inlineCode",{parentName:"a"},"878742b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form elements):changed text ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/919beea9deccec68ac0cdbbc1249ef4ab4c12230"},(0,n.kt)("inlineCode",{parentName:"a"},"919beea"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Image): change image src ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b9710849adf0cf4f10815186b6293bcc3881d68d"},(0,n.kt)("inlineCode",{parentName:"a"},"b971084"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Pullquote): add component propTypes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d32c5e69e76d7f369a286d29e49d767125550ebc"},(0,n.kt)("inlineCode",{parentName:"a"},"d32c5e6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(blockquote): adjust font sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d71a3cef7bfd4109c56b7fe8c07271c60a4bd19e"},(0,n.kt)("inlineCode",{parentName:"a"},"d71a3ce"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update font sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1c91c357a59669df0da0f4fc70d3aa420db27a14"},(0,n.kt)("inlineCode",{parentName:"a"},"1c91c35"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Blockquote): add component proTypes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea02649f92b0e41b1eb62a771330c2e53b3960e8"},(0,n.kt)("inlineCode",{parentName:"a"},"ea02649"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logo): update image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6113728e248c3e0fd0a467bb34406aa4403399e"},(0,n.kt)("inlineCode",{parentName:"a"},"f611372"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): restore config ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2c5239d92abe6be70b092e7e43f195308800f87"},(0,n.kt)("inlineCode",{parentName:"a"},"f2c5239"))),(0,n.kt)("li",{parentName:"ul"},"refactor(blockquote): update component name ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/572e655c033d93b32a48a61b1bf6383f6c993b26"},(0,n.kt)("inlineCode",{parentName:"a"},"572e655"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): fix story header import ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ceda6c7790964b150b95daf161d10364d6b67427"},(0,n.kt)("inlineCode",{parentName:"a"},"ceda6c7"))),(0,n.kt)("li",{parentName:"ul"},"change(infrastructure) auto build docusaurus when pushing to develop-itml branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7bebdf5e58f37400a8ae3d5f816c64c6b9ca3a5b"},(0,n.kt)("inlineCode",{parentName:"a"},"7bebdf5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): remove components from customization folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a9bb9b34e6961eaf16e54ed6f6ca4942944e8a0"},(0,n.kt)("inlineCode",{parentName:"a"},"4a9bb9b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner):story rename ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/56ff603d6c9cec7c22483a088624f5bd7911f717"},(0,n.kt)("inlineCode",{parentName:"a"},"56ff603"))),(0,n.kt)("li",{parentName:"ul"},"change(testing) removed navigation from cypress tests until component is finished ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5549f4c07cb0ffd725342f365aae07745d7e25f7"},(0,n.kt)("inlineCode",{parentName:"a"},"5549f4c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Segment): change to .jsx extension ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5cb35d81e8628832bab2e6ad50de6892e7e4370e"},(0,n.kt)("inlineCode",{parentName:"a"},"5cb35d8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Pullquote): change to .jsx extension ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/564cf7ea379703315f179ab922b4e0a02df63e47"},(0,n.kt)("inlineCode",{parentName:"a"},"564cf7e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(PopUp):change to .jsx extension ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dcb24ff252665a79fda2fec645e6f2a48ff71fd0"},(0,n.kt)("inlineCode",{parentName:"a"},"dcb24ff"))),(0,n.kt)("li",{parentName:"ul"},"refactor(InpageNavigation): change to .jsx extension ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dfefce3ebe55f8eb6f67974ccc33b0cb0bb13d9f"},(0,n.kt)("inlineCode",{parentName:"a"},"dfefce3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Blockquote): change to .jsx extension ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/44a164532c1ae969e4411e0cfb68b705ff2bfc1e"},(0,n.kt)("inlineCode",{parentName:"a"},"44a1645"))),(0,n.kt)("li",{parentName:"ul"},"refactor(heading): story name update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aa10f3412323321650e20401038d44b9bfdb507a"},(0,n.kt)("inlineCode",{parentName:"a"},"aa10f34")))),(0,n.kt)("h4",{id:"-internal-changes-25"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(footer): prettier fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/902c25712c88330db841240c9f1d6004e3e2674f"},(0,n.kt)("inlineCode",{parentName:"a"},"902c257"))),(0,n.kt)("li",{parentName:"ul"},"style(storybook): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/59f941dea9bf05f31257230f1a871c6eb0e98aae"},(0,n.kt)("inlineCode",{parentName:"a"},"59f941d")))),(0,n.kt)("h4",{id:"-documentation-changes-22"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus):multiple page updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2aba73ea6ff86c5a94789c707d98699fc1397e01"},(0,n.kt)("inlineCode",{parentName:"a"},"2aba73e"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus):update page content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/565697fecb4528cc5b4a6a43ca3ab9b026a2779e"},(0,n.kt)("inlineCode",{parentName:"a"},"565697f"))),(0,n.kt)("li",{parentName:"ul"},"docs(grid):update components grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/60eb083aa5d00840642caf73f6e0bb86b814aed5"},(0,n.kt)("inlineCode",{parentName:"a"},"60eb083"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): page adjustments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0641eacf9f4715acd4baaa651335ff84ac418009"},(0,n.kt)("inlineCode",{parentName:"a"},"0641eac"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus):updated various pages ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f860176a5f755d75d7b9558661e675fc678fe7ac"},(0,n.kt)("inlineCode",{parentName:"a"},"f860176"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): logo change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3af5e5c3acbf7ba4e152ca6944c500dbb0cf10ee"},(0,n.kt)("inlineCode",{parentName:"a"},"3af5e5c")))),(0,n.kt)("h4",{id:"\ufe0f-others-55"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"added sortable table stories and descriptions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d44dd7c651abe46c380b62efd3258c92223e99c"},(0,n.kt)("inlineCode",{parentName:"a"},"6d44dd7"))),(0,n.kt)("li",{parentName:"ul"},"Layout components theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/586101341f713bb072f2753d8df6e8b2ad6e4938"},(0,n.kt)("inlineCode",{parentName:"a"},"5861013"))),(0,n.kt)("li",{parentName:"ul"},"recovered files from origin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4ac04fde9c4297b09c834385f772e955b7f3b4a"},(0,n.kt)("inlineCode",{parentName:"a"},"a4ac04f"))),(0,n.kt)("li",{parentName:"ul"},"grid component & stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a5752e49aac05251905f7355234c3f9bc6b798f"},(0,n.kt)("inlineCode",{parentName:"a"},"4a5752e"))),(0,n.kt)("li",{parentName:"ul"},"Updated what's new section with actual commits from volto-eea-design-system repo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fc5e3c385d82ff7eccbd5841736f3ce292b2b7fd"},(0,n.kt)("inlineCode",{parentName:"a"},"fc5e3c3"))),(0,n.kt)("li",{parentName:"ul"},"Docusaurus title possible fix. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/db699e771b13bbd7e75c3bd84bb91ecf5d0459d8"},(0,n.kt)("inlineCode",{parentName:"a"},"db699e7"))),(0,n.kt)("li",{parentName:"ul"},"form elements stories added description & default values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6b4f6ebeed275a86f5ef6dafb13219db0c0fbbc6"},(0,n.kt)("inlineCode",{parentName:"a"},"6b4f6eb"))),(0,n.kt)("li",{parentName:"ul"},"removed API tabs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/58aa9286eb5d8cc520239aa6ee424ee5cd5446c3"},(0,n.kt)("inlineCode",{parentName:"a"},"58aa928"))),(0,n.kt)("li",{parentName:"ul"},"Layout updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/854f388c5b049e41217ddb444bc7bd0f2c61cdf6"},(0,n.kt)("inlineCode",{parentName:"a"},"854f388"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142123 removed extra customization of semantic.less: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab9de811b20b20a9f91ddc8b45b4de2eb9c47f6c"},(0,n.kt)("inlineCode",{parentName:"a"},"ab9de81"))),(0,n.kt)("li",{parentName:"ul"},"added page-header,footer and grid in docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/660c8e382068c179ca66831ae23588a4fb67cde6"},(0,n.kt)("inlineCode",{parentName:"a"},"660c8e3"))),(0,n.kt)("li",{parentName:"ul"},"Manual docs build and commit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/666eb6aff8535bb586a49579152fcf8a88961f35"},(0,n.kt)("inlineCode",{parentName:"a"},"666eb6a"))),(0,n.kt)("li",{parentName:"ul"},"added svg & png files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f1338d5bb02e17e402cea4b1584c7d01896097f9"},(0,n.kt)("inlineCode",{parentName:"a"},"f1338d5"))),(0,n.kt)("li",{parentName:"ul"},"added missing components to docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/934dfd8a98942c247deb2b5b8693604ad77cafa3"},(0,n.kt)("inlineCode",{parentName:"a"},"934dfd8"))),(0,n.kt)("li",{parentName:"ul"},"Control descriptions updated ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/56581ebc86a91fd012a98984b20f6daad25900fe"},(0,n.kt)("inlineCode",{parentName:"a"},"56581eb"))),(0,n.kt)("li",{parentName:"ul"},"Grid updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/700332d354aea84526ff22acf3bc2f8903c0f584"},(0,n.kt)("inlineCode",{parentName:"a"},"700332d"))),(0,n.kt)("li",{parentName:"ul"},"Button theming update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0ec68b6bd1ab060ac224a859180b9f750834c0b8"},(0,n.kt)("inlineCode",{parentName:"a"},"0ec68b6"))),(0,n.kt)("li",{parentName:"ul"},"site variebales & overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7251162f182f1528d72070aae8a5a14e9ec5ee93"},(0,n.kt)("inlineCode",{parentName:"a"},"7251162"))),(0,n.kt)("li",{parentName:"ul"},"Table and Tabs theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/49f08608e8be8475d561e1ce5c1bfbcfd21001f9"},(0,n.kt)("inlineCode",{parentName:"a"},"49f0860"))),(0,n.kt)("li",{parentName:"ul"},"Responsiveness updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48e1351104249fea610941793ff8ec3bf35d0699"},(0,n.kt)("inlineCode",{parentName:"a"},"48e1351"))),(0,n.kt)("li",{parentName:"ul"},"added various components to docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/550d71963b0957b1c5597bbdb2c699c411c649bd"},(0,n.kt)("inlineCode",{parentName:"a"},"550d719"))),(0,n.kt)("li",{parentName:"ul"},"Checkbox and radio updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24652a238f2c98fe5d8e8032e3320e0b3b4753e5"},(0,n.kt)("inlineCode",{parentName:"a"},"24652a2"))),(0,n.kt)("li",{parentName:"ul"},"remove images from typography and colour docs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8493e924f5af4ba7c2ed478d7bae6992b4ef6ed6"},(0,n.kt)("inlineCode",{parentName:"a"},"8493e92"))),(0,n.kt)("li",{parentName:"ul"},"added guidelines' text and finished all components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/02d75fcdc5a98633e4d563c7ec2863a9588b5506"},(0,n.kt)("inlineCode",{parentName:"a"},"02d75fc"))),(0,n.kt)("li",{parentName:"ul"},"added more missing components in docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8be82634c681a073b13a5a90ee2b699bd25b422a"},(0,n.kt)("inlineCode",{parentName:"a"},"8be8263"))),(0,n.kt)("li",{parentName:"ul"},"Prettier changes on docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f1e5eb796f2072e3b816a39a35cf48523405167"},(0,n.kt)("inlineCode",{parentName:"a"},"5f1e5eb"))),(0,n.kt)("li",{parentName:"ul"},"Grid updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ae099453e280de800a5a06c6fcbe074acc1f7bfd"},(0,n.kt)("inlineCode",{parentName:"a"},"ae09945"))),(0,n.kt)("li",{parentName:"ul"},"Minor fixes for tests ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3bdf3063d9bbc101f4b83c6aa4fc5fef5e87c776"},(0,n.kt)("inlineCode",{parentName:"a"},"3bdf306"))),(0,n.kt)("li",{parentName:"ul"},"Layout updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8b7a4dc8731cb02946e604a0dd73d2a45f61cd8b"},(0,n.kt)("inlineCode",{parentName:"a"},"8b7a4dc"))),(0,n.kt)("li",{parentName:"ul"},"Footer and TOC theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bb3d3c486f64e123b9009a76c6f054a8e2973230"},(0,n.kt)("inlineCode",{parentName:"a"},"bb3d3c4"))),(0,n.kt)("li",{parentName:"ul"},"Refs #145331 manually commit changelog until autobuild is stabilized ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93168b096b60fc6a208b20d1cbe610384be62f42"},(0,n.kt)("inlineCode",{parentName:"a"},"93168b0"))),(0,n.kt)("li",{parentName:"ul"},"label component changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/df8c0ff2d9646e4dcc7ed1a25a80712ca9ea2c9b"},(0,n.kt)("inlineCode",{parentName:"a"},"df8c0ff"))),(0,n.kt)("li",{parentName:"ul"},"added several sections to the theming guidelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff1a649d9c83794024e2db4f6349b3cac4fe79a0"},(0,n.kt)("inlineCode",{parentName:"a"},"ff1a649"))),(0,n.kt)("li",{parentName:"ul"},"Updated removed files. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/84f9b8cf7c469525367764909fa0d322532a13be"},(0,n.kt)("inlineCode",{parentName:"a"},"84f9b8c"))),(0,n.kt)("li",{parentName:"ul"},"added more docusaurus components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/52a3b9edd4c751225609dcaf2d16f08688e9cfeb"},(0,n.kt)("inlineCode",{parentName:"a"},"52a3b9e"))),(0,n.kt)("li",{parentName:"ul"},"Progress Bar ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f2efc9ded5a766df0c611a15f6a93f27bd14a37"},(0,n.kt)("inlineCode",{parentName:"a"},"9f2efc9"))),(0,n.kt)("li",{parentName:"ul"},"Modal and Confirm updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3b306c6fa5631e1e4e37456d483a69bc8cc3b234"},(0,n.kt)("inlineCode",{parentName:"a"},"3b306c6"))),(0,n.kt)("li",{parentName:"ul"},"Add proper changes to whatsnew meant in previous commit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/40f78e362ca607ef3893fff3d03c8ed1b4447c11"},(0,n.kt)("inlineCode",{parentName:"a"},"40f78e3"))),(0,n.kt)("li",{parentName:"ul"},"Form Descriptions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/de0dfbcb3a0a9610f1cbf7337f598b0c5338f2a3"},(0,n.kt)("inlineCode",{parentName:"a"},"de0dfbc"))),(0,n.kt)("li",{parentName:"ul"},"Prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1337e6fffb13fa8447488129d5dcd5af9e35e46a"},(0,n.kt)("inlineCode",{parentName:"a"},"1337e6f"))),(0,n.kt)("li",{parentName:"ul"},"Deleted files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b82f982fbfbaff4e74e35424c6122410e3830faf"},(0,n.kt)("inlineCode",{parentName:"a"},"b82f982"))),(0,n.kt)("li",{parentName:"ul"},"add new images for spacing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7b7b2c48317c45e3ff89162d703434f615c840e9"},(0,n.kt)("inlineCode",{parentName:"a"},"7b7b2c4"))),(0,n.kt)("li",{parentName:"ul"},"Messages Theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ad621a38c121f585125d5934c1939ba6a7198b33"},(0,n.kt)("inlineCode",{parentName:"a"},"ad621a3"))),(0,n.kt)("li",{parentName:"ul"},"added new content to docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1c83452be983d46f4128c33c25e69afef333f82a"},(0,n.kt)("inlineCode",{parentName:"a"},"1c83452"))),(0,n.kt)("li",{parentName:"ul"},"Minor less updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a36a8bbfeb201049fa13987894a5ec2ec167ed03"},(0,n.kt)("inlineCode",{parentName:"a"},"a36a8bb"))),(0,n.kt)("li",{parentName:"ul"},"Tabs and lists updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e37eef19e67c3c5720d5a9565e9884dc5c19f127"},(0,n.kt)("inlineCode",{parentName:"a"},"e37eef1"))),(0,n.kt)("li",{parentName:"ul"},"Inpage nav and timeline components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/76f0f82dc3a8f683268a4df7580b8f73a0cc1cb4"},(0,n.kt)("inlineCode",{parentName:"a"},"76f0f82"))),(0,n.kt)("li",{parentName:"ul"},"Prettier updated files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/679b9d2026091685d6982ab68e5088544ea0941e"},(0,n.kt)("inlineCode",{parentName:"a"},"679b9d2"))),(0,n.kt)("li",{parentName:"ul"},"dropdown initial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d8aef26dc905adbb0fb72c73d6188b50944931c9"},(0,n.kt)("inlineCode",{parentName:"a"},"d8aef26"))),(0,n.kt)("li",{parentName:"ul"},"Prettier changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f068af0b307d85146e1d8a529947c98988c506f7"},(0,n.kt)("inlineCode",{parentName:"a"},"f068af0"))),(0,n.kt)("li",{parentName:"ul"},"List initial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d3b96974bc35ad958b8cfc7921c1fbe345e5ebf"},(0,n.kt)("inlineCode",{parentName:"a"},"6d3b969"))),(0,n.kt)("li",{parentName:"ul"},"List story updated ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e96a6f6cff9a4db994df7cbf584842b18ca1c432"},(0,n.kt)("inlineCode",{parentName:"a"},"e96a6f6"))),(0,n.kt)("li",{parentName:"ul"},"Statistics updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/74bf63999cfeb0791b9475d3895a49a245be2cd3"},(0,n.kt)("inlineCode",{parentName:"a"},"74bf639"))),(0,n.kt)("li",{parentName:"ul"},"styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c169cc026189ca71e6e9cad17bde9d65d93ffbde"},(0,n.kt)("inlineCode",{parentName:"a"},"c169cc0"))),(0,n.kt)("li",{parentName:"ul"},"timeline comp storybook changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f42686ae19b619fa659730567bdceb369ecd4b0"},(0,n.kt)("inlineCode",{parentName:"a"},"1f42686"))),(0,n.kt)("li",{parentName:"ul"},"feature(docusaurus) added theming guidelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ded1f04a3197ac34640f98bcfe363c75a0a3745f"},(0,n.kt)("inlineCode",{parentName:"a"},"ded1f04"))),(0,n.kt)("li",{parentName:"ul"},"Properly commented out integration tests. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48b3a15f426db52b9fa27f6d7792c424b4939867"},(0,n.kt)("inlineCode",{parentName:"a"},"48b3a15"))),(0,n.kt)("li",{parentName:"ul"},"Reattempting commented out integrations tests. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3dd8211ecfca6c7891ef6851d0dc82899ab50f05"},(0,n.kt)("inlineCode",{parentName:"a"},"3dd8211"))),(0,n.kt)("li",{parentName:"ul"},"Button theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4231e1c264165ef6f7e2f2cd6fbd7c51159330b6"},(0,n.kt)("inlineCode",{parentName:"a"},"4231e1c"))),(0,n.kt)("li",{parentName:"ul"},"Card initial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/06dace5c4aa54d90ec4bcdc0b3fbc0883f825947"},(0,n.kt)("inlineCode",{parentName:"a"},"06dace5"))),(0,n.kt)("li",{parentName:"ul"},"form element storybook changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4b06aabddedbc281f23fc75a1e56476c4d1c1af"},(0,n.kt)("inlineCode",{parentName:"a"},"c4b06aa"))),(0,n.kt)("li",{parentName:"ul"},"Pagination theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2a80175762fbab23691d52f89cd38eb6f7740c4e"},(0,n.kt)("inlineCode",{parentName:"a"},"2a80175"))),(0,n.kt)("li",{parentName:"ul"},"Accordion theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8061bf90823a9172cfccb0ea1ed544ceda1c3fe9"},(0,n.kt)("inlineCode",{parentName:"a"},"8061bf9"))),(0,n.kt)("li",{parentName:"ul"},"global var updates and radio story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9526ee2fc8269db60ce912bfd4edfadbb55fed3a"},(0,n.kt)("inlineCode",{parentName:"a"},"9526ee2"))),(0,n.kt)("li",{parentName:"ul"},"created pullquote component & stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/df35563fb7ba2be403461c120b32ebffaa391736"},(0,n.kt)("inlineCode",{parentName:"a"},"df35563"))),(0,n.kt)("li",{parentName:"ul"},"Item stories added description & default values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9d459f2cd92e419813e7edf0f28dec4c750a5940"},(0,n.kt)("inlineCode",{parentName:"a"},"9d459f2"))),(0,n.kt)("li",{parentName:"ul"},"storybook clean up code ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bffd32603a70cf6cafa4874937f3fe218ba5de9d"},(0,n.kt)("inlineCode",{parentName:"a"},"bffd326"))),(0,n.kt)("li",{parentName:"ul"},"List updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/28f1b5352d83e144acdaae694cf20755a3b04106"},(0,n.kt)("inlineCode",{parentName:"a"},"28f1b53"))),(0,n.kt)("li",{parentName:"ul"},"Button classes updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/788c289549490d9ac5f1c40f1e39124349e1dbcd"},(0,n.kt)("inlineCode",{parentName:"a"},"788c289"))),(0,n.kt)("li",{parentName:"ul"},"Prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/678c9be717468fd2c8c425bec5999e81a66dabf6"},(0,n.kt)("inlineCode",{parentName:"a"},"678c9be"))),(0,n.kt)("li",{parentName:"ul"},"Removed header title from partial docusaurus components. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ed7c45e458504fa76ad500ab26f59a442b3c6952"},(0,n.kt)("inlineCode",{parentName:"a"},"ed7c45e"))),(0,n.kt)("li",{parentName:"ul"},"created banner component and stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9be170f2ccb20218a7bdae48c85f77acd69427ff"},(0,n.kt)("inlineCode",{parentName:"a"},"9be170f"))),(0,n.kt)("li",{parentName:"ul"},"Breadcrumb stories description & defaultValue -- clean up code ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/186ab65ca8635c853c919fc645c1ef0486e22a43"},(0,n.kt)("inlineCode",{parentName:"a"},"186ab65"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142123 added customization of semantic.less: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1e02356722fcb7528883b6dc3bf71279343fd1f7"},(0,n.kt)("inlineCode",{parentName:"a"},"1e02356"))),(0,n.kt)("li",{parentName:"ul"},"Card stories added description & default values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6b408f1ed24ee69ad8faacc6b36cf06e9917478"},(0,n.kt)("inlineCode",{parentName:"a"},"f6b408f"))),(0,n.kt)("li",{parentName:"ul"},"Statistic and accordion updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/16064ceeb6e1a7f097979365473c6a86ced4056f"},(0,n.kt)("inlineCode",{parentName:"a"},"16064ce"))),(0,n.kt)("li",{parentName:"ul"},"breadcrumb component & stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5bceb980502828c182a3998943ab086159c3fcb6"},(0,n.kt)("inlineCode",{parentName:"a"},"5bceb98"))),(0,n.kt)("li",{parentName:"ul"},"Container initial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3eb7155332f83bb8896a831e24cbae028413aba2"},(0,n.kt)("inlineCode",{parentName:"a"},"3eb7155"))),(0,n.kt)("li",{parentName:"ul"},"doc(docusaurus):Fix text for various parts ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bfd3fa2584a6e7aa2c26f3502b1ede912682905e"},(0,n.kt)("inlineCode",{parentName:"a"},"bfd3fa2"))),(0,n.kt)("li",{parentName:"ul"},"blockquote component & stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/879b6402f08112fedfffe6d66e72c37750593bb8"},(0,n.kt)("inlineCode",{parentName:"a"},"879b640"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 removed doc comments breaking doc building ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e6a6756b0533e6dbfdb636f9a9e6485e30187cad"},(0,n.kt)("inlineCode",{parentName:"a"},"e6a6756"))),(0,n.kt)("li",{parentName:"ul"},"Popup updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce2d641d8f5d940cbb93deefdabbbfb85ad20ad7"},(0,n.kt)("inlineCode",{parentName:"a"},"ce2d641"))),(0,n.kt)("li",{parentName:"ul"},"Global variables for colors and borders added ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e5fbd619d163acae03d3d1bb26e082390f90c21"},(0,n.kt)("inlineCode",{parentName:"a"},"6e5fbd6"))),(0,n.kt)("li",{parentName:"ul"},"Tab stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5429cfb7751d6ad31231f9cc19d8bd7e8d24d0b8"},(0,n.kt)("inlineCode",{parentName:"a"},"5429cfb"))),(0,n.kt)("li",{parentName:"ul"},"Confirm stories added description & default value ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/85cda14b1338dc986bbab5aa7846b4ef3ec8d0bd"},(0,n.kt)("inlineCode",{parentName:"a"},"85cda14"))),(0,n.kt)("li",{parentName:"ul"},"Kebab case class names ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b41cd078ab5b349dc1d15769832913dcc8e6786f"},(0,n.kt)("inlineCode",{parentName:"a"},"b41cd07"))),(0,n.kt)("li",{parentName:"ul"},"Card and Comment class updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/389946540d3def2ea81c5c7c489e79dc24d4efb3"},(0,n.kt)("inlineCode",{parentName:"a"},"3899465"))),(0,n.kt)("li",{parentName:"ul"},"Accordion updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c97ba39cc7823cb72180a858c0b8a69cc9434927"},(0,n.kt)("inlineCode",{parentName:"a"},"c97ba39"))),(0,n.kt)("li",{parentName:"ul"},"item stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/772e41f3d90034827afcb118c38ab075d3bb7bb9"},(0,n.kt)("inlineCode",{parentName:"a"},"772e41f"))),(0,n.kt)("li",{parentName:"ul"},"Accordion class updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9cdde86f14a17701d66b3d2850980251094934b5"},(0,n.kt)("inlineCode",{parentName:"a"},"9cdde86"))),(0,n.kt)("li",{parentName:"ul"},"Comment stories added description & default value ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb6f25bc1452330f4155ccf6a64df491740ed8da"},(0,n.kt)("inlineCode",{parentName:"a"},"cb6f25b"))),(0,n.kt)("li",{parentName:"ul"},"Accrodion stories description & default value ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab8fb883c3cbfeea1807bf1aaf72f5d8424933f4"},(0,n.kt)("inlineCode",{parentName:"a"},"ab8fb88"))),(0,n.kt)("li",{parentName:"ul"},"Pullquotes updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5984213ba9397ddb4c1932394a5cc368336cf0a"},(0,n.kt)("inlineCode",{parentName:"a"},"c598421"))),(0,n.kt)("li",{parentName:"ul"},"Modal and confirm class updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0ae47e6f55645c0d6318123a5783648326c16852"},(0,n.kt)("inlineCode",{parentName:"a"},"0ae47e6"))),(0,n.kt)("li",{parentName:"ul"},"Tab and paggination updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/96796fffb189d2fa3628423280f3622dcacb449f"},(0,n.kt)("inlineCode",{parentName:"a"},"96796ff"))),(0,n.kt)("li",{parentName:"ul"},"Form Updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e986a9f0fc48ddcbc17488a8bbbaec82cee92232"},(0,n.kt)("inlineCode",{parentName:"a"},"e986a9f"))),(0,n.kt)("li",{parentName:"ul"},"Classes renamed ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/73c8c3d622bb3b9c0b5cf09e340de4df6606a14c"},(0,n.kt)("inlineCode",{parentName:"a"},"73c8c3d"))),(0,n.kt)("li",{parentName:"ul"},"List and item less updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce0de1708ca410c7839f3ce9b5b3cfbdb6979939"},(0,n.kt)("inlineCode",{parentName:"a"},"ce0de17"))),(0,n.kt)("li",{parentName:"ul"},"Confirm theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/36e20ce0dd6cd159e9f8e519d22ab696a622efd9"},(0,n.kt)("inlineCode",{parentName:"a"},"36e20ce"))),(0,n.kt)("li",{parentName:"ul"},"container overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4b3970bd28df5939fd438f7fc58b5d1dfbe33719"},(0,n.kt)("inlineCode",{parentName:"a"},"4b3970b"))),(0,n.kt)("li",{parentName:"ul"},"Docusaurus theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fc4a8c5534b6eb85192a687890846b3a4bed9401"},(0,n.kt)("inlineCode",{parentName:"a"},"fc4a8c5"))),(0,n.kt)("li",{parentName:"ul"},"refacto(headings): update mobile headings sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b2e9f838766ffd73095ecf7eccc71629c09d6bc0"},(0,n.kt)("inlineCode",{parentName:"a"},"b2e9f83"))),(0,n.kt)("li",{parentName:"ul"},"list stories and style changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c61db53b153f8f0e51eddd6a6c82dd38e6278c82"},(0,n.kt)("inlineCode",{parentName:"a"},"c61db53"))),(0,n.kt)("li",{parentName:"ul"},"Tab theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e31e6c3b1f0d6b4dbd63425a1846914d8dfa318d"},(0,n.kt)("inlineCode",{parentName:"a"},"e31e6c3"))),(0,n.kt)("li",{parentName:"ul"},"Message and pagination classes updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c230687c48953208461aa92376588246d49dadaa"},(0,n.kt)("inlineCode",{parentName:"a"},"c230687"))),(0,n.kt)("li",{parentName:"ul"},"Segment initial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5724fe639e0f2aecbb1c633fe7e69b742ddfaf5"},(0,n.kt)("inlineCode",{parentName:"a"},"d5724fe"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 removed doc comments from api_markdown breaking doc building ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/efeacba82875c6b36ee1ef76792e86ca03ee6f35"},(0,n.kt)("inlineCode",{parentName:"a"},"efeacba"))),(0,n.kt)("li",{parentName:"ul"},"Timeline and responsiveness updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1ed152476e33bc41fdf9d89a6bc80f83af538373"},(0,n.kt)("inlineCode",{parentName:"a"},"1ed1524"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142123 use swap font-display for performance reasons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/083738f0834982b5684d67d75c080dc50b1c74ef"},(0,n.kt)("inlineCode",{parentName:"a"},"083738f"))),(0,n.kt)("li",{parentName:"ul"},"Breadcrumb stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3d0d17ca4f04123d55fda64c516b8f867ee1bd13"},(0,n.kt)("inlineCode",{parentName:"a"},"3d0d17c"))),(0,n.kt)("li",{parentName:"ul"},"Table component stories minor change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0bf40835204f57ab300e2c325309fddf5279d76b"},(0,n.kt)("inlineCode",{parentName:"a"},"0bf4083"))),(0,n.kt)("li",{parentName:"ul"},"List stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a64b304a3aa025873643d592de03cbfbc0d02d81"},(0,n.kt)("inlineCode",{parentName:"a"},"a64b304"))),(0,n.kt)("li",{parentName:"ul"},"blockquote component minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cdf71a883d3778e1bde25ec0b4a2f3e370b98b09"},(0,n.kt)("inlineCode",{parentName:"a"},"cdf71a8"))),(0,n.kt)("li",{parentName:"ul"},"ckeckbox stories minor change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d6e508f73a18d7ce9fcdb779026113659ce8950"},(0,n.kt)("inlineCode",{parentName:"a"},"6d6e508"))),(0,n.kt)("li",{parentName:"ul"},"image component storybook changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91290ec540ae913fff76f0dbed6c310668a2eeb3"},(0,n.kt)("inlineCode",{parentName:"a"},"91290ec"))),(0,n.kt)("li",{parentName:"ul"},"button overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5b78dd7b794e2e0ece2d5af9eb171e73b77ee93"},(0,n.kt)("inlineCode",{parentName:"a"},"d5b78dd"))),(0,n.kt)("li",{parentName:"ul"},"accordion overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fdcf7d58eea3ce9e68c49649fb4a788c8a801b49"},(0,n.kt)("inlineCode",{parentName:"a"},"fdcf7d5"))),(0,n.kt)("li",{parentName:"ul"},"Accordion component and stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5079247b2d4b96b2a7252692ea538ca620cbec38"},(0,n.kt)("inlineCode",{parentName:"a"},"5079247"))),(0,n.kt)("li",{parentName:"ul"},"Card theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/23bbb9d1b5751bc4877d02ae1c676ea28463ec39"},(0,n.kt)("inlineCode",{parentName:"a"},"23bbb9d"))),(0,n.kt)("li",{parentName:"ul"},"statistic overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2b11cb5ffb9c907563b37a3db8fea3b1ef3584bc"},(0,n.kt)("inlineCode",{parentName:"a"},"2b11cb5"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 build docs only on pull request like we do with storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/473bb87be53610a654d35c9b399de14824301385"},(0,n.kt)("inlineCode",{parentName:"a"},"473bb87"))),(0,n.kt)("li",{parentName:"ul"},"Card component stories minor change | added link icon ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/deb423af02643697c3781212b177487174d341f7"},(0,n.kt)("inlineCode",{parentName:"a"},"deb423a"))),(0,n.kt)("li",{parentName:"ul"},"comment component stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f1c5e75f1af24c5b39a2e61cf07c773abfa96f66"},(0,n.kt)("inlineCode",{parentName:"a"},"f1c5e75"))),(0,n.kt)("li",{parentName:"ul"},"Accordion component bug fixed ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/815e91df66ed738f3d91cadc8df151782829f545"},(0,n.kt)("inlineCode",{parentName:"a"},"815e91d"))),(0,n.kt)("li",{parentName:"ul"},"Refs #145331 use iso date to release so that we see also time ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ceedf08937ab683c3e624cd3c909bf4a4788f883"},(0,n.kt)("inlineCode",{parentName:"a"},"ceedf08"))),(0,n.kt)("li",{parentName:"ul"},"correct connfig for doco ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93e13135e7f00fe32f4db2d720db4159970da021"},(0,n.kt)("inlineCode",{parentName:"a"},"93e1313"))),(0,n.kt)("li",{parentName:"ul"},"Item updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fae93d43a0ad56c4c9b8ce7bf436ad4f47421744"},(0,n.kt)("inlineCode",{parentName:"a"},"fae93d4"))),(0,n.kt)("li",{parentName:"ul"},"added layout grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2e6be557bcd3bef836338380ef68acade1c6b3e3"},(0,n.kt)("inlineCode",{parentName:"a"},"2e6be55"))),(0,n.kt)("li",{parentName:"ul"},"tab overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87aaf32cac5a0dee0da5833217de68da62327f5a"},(0,n.kt)("inlineCode",{parentName:"a"},"87aaf32"))),(0,n.kt)("li",{parentName:"ul"},"message overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6dccfca52d9673f394d81bd40da0af1b1504af0c"},(0,n.kt)("inlineCode",{parentName:"a"},"6dccfca"))),(0,n.kt)("li",{parentName:"ul"},"segment storie changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/296371fa71e43c2341bee8069f66d5cd1f7aa5f8"},(0,n.kt)("inlineCode",{parentName:"a"},"296371f"))),(0,n.kt)("li",{parentName:"ul"},"progress component stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/df10c2ed1289ae770008c71e1545c1ac0a223fc5"},(0,n.kt)("inlineCode",{parentName:"a"},"df10c2e"))),(0,n.kt)("li",{parentName:"ul"},"message comp storybook changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c86b40563f655fd5833dd05119f04d0e4256e75f"},(0,n.kt)("inlineCode",{parentName:"a"},"c86b405"))),(0,n.kt)("li",{parentName:"ul"},"Accordion cmponent stories | minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6de0d816287a9beeb9e8a5a890a2e14f3457a792"},(0,n.kt)("inlineCode",{parentName:"a"},"6de0d81"))),(0,n.kt)("li",{parentName:"ul"},"Refs #145331 add all changes when auto building docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce11cce4fe3dadc16a0da56c36bc5db480e4ff91"},(0,n.kt)("inlineCode",{parentName:"a"},"ce11cce"))),(0,n.kt)("li",{parentName:"ul"},"perf(timeline):removed semantic timeline package ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0aeb34a189eb53a5fc0fc45d716da515b7ed0301"},(0,n.kt)("inlineCode",{parentName:"a"},"0aeb34a"))),(0,n.kt)("li",{parentName:"ul"},"Tablet Breakpoint update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b229c2739e75a00e403dd07c31eb0dac7700baac"},(0,n.kt)("inlineCode",{parentName:"a"},"b229c27"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 set storyBook Url to eea.github.io ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b7fdecbb5e9e6e7db0b128ab7fd3a98dd1dbbc74"},(0,n.kt)("inlineCode",{parentName:"a"},"b7fdecb"))),(0,n.kt)("li",{parentName:"ul"},"bump package version to signaling of a major release ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c835f1d8193685153b8a9b54edbc2e8d3d095321"},(0,n.kt)("inlineCode",{parentName:"a"},"c835f1d"))),(0,n.kt)("li",{parentName:"ul"},"small commit to trigger deployment of storybook and docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/be46ea3b581cccc82369c9cf6d4e29b02822cd71"},(0,n.kt)("inlineCode",{parentName:"a"},"be46ea3"))),(0,n.kt)("li",{parentName:"ul"},"doc(accordion):revert previous change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3de02da26472c17389366d933f3293f658fd783a"},(0,n.kt)("inlineCode",{parentName:"a"},"3de02da"))),(0,n.kt)("li",{parentName:"ul"},"fix typo for caption @desktop line-height pixel number ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/167155234a897334a03a4f3eadc71701185bb924"},(0,n.kt)("inlineCode",{parentName:"a"},"1671552"))),(0,n.kt)("li",{parentName:"ul"},"Commented out integration tests. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/574cfec852f39bdd30430d2ca3a466aec417180d"},(0,n.kt)("inlineCode",{parentName:"a"},"574cfec"))),(0,n.kt)("li",{parentName:"ul"},"popup overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a9555e3128bd0c92691410c202d9b26dd5a5e0c5"},(0,n.kt)("inlineCode",{parentName:"a"},"a9555e3"))),(0,n.kt)("li",{parentName:"ul"},"container component stories fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/692cfce5e795ac718855349424e7e8eb9c7518ec"},(0,n.kt)("inlineCode",{parentName:"a"},"692cfce"))),(0,n.kt)("li",{parentName:"ul"},"Added timeline to package json fixed ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2e93e0478a1502cccb8d7f866cef337a2546b6c"},(0,n.kt)("inlineCode",{parentName:"a"},"f2e93e0"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142123 modified import of volto-eea-design-system icon.less: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7fab7d2871f153c2db139e3258da071ace7c09d"},(0,n.kt)("inlineCode",{parentName:"a"},"a7fab7d"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142123 reference icon.less from this package: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5616e6d730f1a8cbc04784230c35f3490fd0f921"},(0,n.kt)("inlineCode",{parentName:"a"},"5616e6d"))),(0,n.kt)("li",{parentName:"ul"},"Menu component stories change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2797716aa050a8f70d2b6f0f19b7d01e5cd035be"},(0,n.kt)("inlineCode",{parentName:"a"},"2797716"))),(0,n.kt)("li",{parentName:"ul"},"Image stories minor change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ddb9f1dd56fe42e17df1eac5bfd93ee6eaac3179"},(0,n.kt)("inlineCode",{parentName:"a"},"ddb9f1d"))),(0,n.kt)("li",{parentName:"ul"},"card component stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6ccba1ec4a388ced5a3671bf88d4f18aefc8cff3"},(0,n.kt)("inlineCode",{parentName:"a"},"6ccba1e"))),(0,n.kt)("li",{parentName:"ul"},"Added timeline to package json ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93031d6b6b3215e98074700554d7546f9f17f320"},(0,n.kt)("inlineCode",{parentName:"a"},"93031d6"))),(0,n.kt)("li",{parentName:"ul"},"table stories code clean up ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b7b2a56e37b847a3a3fc3d78f2099aba052826c3"},(0,n.kt)("inlineCode",{parentName:"a"},"b7b2a56"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 removed extra baseUrl from docusaurus config ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/79f36da6a38866765025cedd4f5eeb63e273785c"},(0,n.kt)("inlineCode",{parentName:"a"},"79f36da"))),(0,n.kt)("li",{parentName:"ul"},"Accordion stories minor change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ffe808aabc77c6cb324e8fe097a97bb82c291c29"},(0,n.kt)("inlineCode",{parentName:"a"},"ffe808a"))),(0,n.kt)("li",{parentName:"ul"},"Theme assets ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3f4bea4b53e393bc3d926b63683265c0b5df32c2"},(0,n.kt)("inlineCode",{parentName:"a"},"3f4bea4"))),(0,n.kt)("li",{parentName:"ul"},"Merged with develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/167ec9f7847162965ad045259989cc31abaad7f1"},(0,n.kt)("inlineCode",{parentName:"a"},"167ec9f")))),(0,n.kt)("h3",{id:"012-beta2---2022-01-03"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.2-beta.1...0.1.2-beta.2"},"0.1.2-beta.2")," - 2022-01-03"),(0,n.kt)("h3",{id:"012-beta1---2021-12-22"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.2-beta.0...0.1.2-beta.1"},"0.1.2-beta.1")," - 2021-12-22"),(0,n.kt)("h4",{id:"\ufe0f-others-56"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Tab component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4690a6fc1e739eeeeaa3dc90ee35e05a22875bf8"},(0,n.kt)("inlineCode",{parentName:"a"},"4690a6f"))),(0,n.kt)("li",{parentName:"ul"},"Comment component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a87cb6ad7959ce939c9decbfaa08026d4f00a10e"},(0,n.kt)("inlineCode",{parentName:"a"},"a87cb6a"))),(0,n.kt)("li",{parentName:"ul"},"Form stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fc30c900e5adf5a27930aa64a79a632e2b7d84ae"},(0,n.kt)("inlineCode",{parentName:"a"},"fc30c90"))),(0,n.kt)("li",{parentName:"ul"},"Grid component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/798fdd0d0fecb7980308c831fc9dc111a36c5d9f"},(0,n.kt)("inlineCode",{parentName:"a"},"798fdd0"))),(0,n.kt)("li",{parentName:"ul"},"Image component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/be93385f1ea29846512eb7762d69bb98f33be7f2"},(0,n.kt)("inlineCode",{parentName:"a"},"be93385"))),(0,n.kt)("li",{parentName:"ul"},"Menu component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb1f9a82843bb4e3011be9813ae692c94d986495"},(0,n.kt)("inlineCode",{parentName:"a"},"cb1f9a8"))),(0,n.kt)("li",{parentName:"ul"},"Dropdown component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/57cf954599292e6a2f8a1644c6b6d61706ecaf60"},(0,n.kt)("inlineCode",{parentName:"a"},"57cf954"))),(0,n.kt)("li",{parentName:"ul"},"Header component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/264fd463734c9587e3a820f4d14527af89274e12"},(0,n.kt)("inlineCode",{parentName:"a"},"264fd46"))),(0,n.kt)("li",{parentName:"ul"},"Confirn component minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9a00bc174fb676e626d6cc93fac225e8a6165790"},(0,n.kt)("inlineCode",{parentName:"a"},"9a00bc1"))),(0,n.kt)("li",{parentName:"ul"},"Item component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6994fa00c0f91550f64d7345503df7f562480d32"},(0,n.kt)("inlineCode",{parentName:"a"},"6994fa0"))),(0,n.kt)("li",{parentName:"ul"},"Label component stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5cc5843327deeaa5ae2cedc03e6f0c314be6586a"},(0,n.kt)("inlineCode",{parentName:"a"},"5cc5843"))),(0,n.kt)("li",{parentName:"ul"},"Container component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e6e40b3a505c2e2fe88a36d74ea4e9728e3491f6"},(0,n.kt)("inlineCode",{parentName:"a"},"e6e40b3"))),(0,n.kt)("li",{parentName:"ul"},"Message component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ba9d377fd5b04274f1d42065eafa2401a1b0bbca"},(0,n.kt)("inlineCode",{parentName:"a"},"ba9d377"))),(0,n.kt)("li",{parentName:"ul"},"Breadcrumb component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff7a176141c3a59d71df98a0ed0b23b8c08787df"},(0,n.kt)("inlineCode",{parentName:"a"},"ff7a176"))),(0,n.kt)("li",{parentName:"ul"},"Modal component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af1fe6a84d058fb937b555f4dc3e0efceebefa04"},(0,n.kt)("inlineCode",{parentName:"a"},"af1fe6a"))),(0,n.kt)("li",{parentName:"ul"},"List stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0016042856fa2275aed373eebd6f996b837619a2"},(0,n.kt)("inlineCode",{parentName:"a"},"0016042"))),(0,n.kt)("li",{parentName:"ul"},"Button component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/690dfd234bee017c1f1cda7077265e6cf4a870e9"},(0,n.kt)("inlineCode",{parentName:"a"},"690dfd2"))),(0,n.kt)("li",{parentName:"ul"},"Radio component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/84eac30ab5b523ed09c56b9cca41b058cee3e5d2"},(0,n.kt)("inlineCode",{parentName:"a"},"84eac30"))),(0,n.kt)("li",{parentName:"ul"},"Progress component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e6763571afe637375e8260babd9f2219f29b432a"},(0,n.kt)("inlineCode",{parentName:"a"},"e676357"))),(0,n.kt)("li",{parentName:"ul"},"Pagination component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b1af226b9bd42097dc3c74be3d9ca3fab29b80f6"},(0,n.kt)("inlineCode",{parentName:"a"},"b1af226"))),(0,n.kt)("li",{parentName:"ul"},"Segment component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f8c7efcb9b1de209ff146dd315ea9d43b16f4db"},(0,n.kt)("inlineCode",{parentName:"a"},"5f8c7ef"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 eslint fixes for component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/badcb9158cb4a847380f66592b22c78b5117626a"},(0,n.kt)("inlineCode",{parentName:"a"},"badcb91"))),(0,n.kt)("li",{parentName:"ul"},"Table component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7c104b8e89272b0e2505d165184093ee2680c6f3"},(0,n.kt)("inlineCode",{parentName:"a"},"7c104b8"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 more eslint fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a88c091723af0b87cfa85c83307d9510d2bae65c"},(0,n.kt)("inlineCode",{parentName:"a"},"a88c091"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 warn for broken links instead of throwing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bd5821cb78e030aaf69de73dc4d3bdadbe320195"},(0,n.kt)("inlineCode",{parentName:"a"},"bd5821c"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 merge changes from develop-itml to develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bca28b968bc88720aff9e29e1a94a597a7375666"},(0,n.kt)("inlineCode",{parentName:"a"},"bca28b9"))),(0,n.kt)("li",{parentName:"ul"},"made tabs dynamic for api tab ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea37ecb3ec9fe0ace41d7650d59e209929d8e95f"},(0,n.kt)("inlineCode",{parentName:"a"},"ea37ecb"))),(0,n.kt)("li",{parentName:"ul"},"Basic storybook/Docusaurus components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/840ab60f22f7b73d8742fa7452f198d486c6ec5b"},(0,n.kt)("inlineCode",{parentName:"a"},"840ab60"))),(0,n.kt)("li",{parentName:"ul"},"created List directory & srories based on semantic-ui List component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51f19016b27228a4d391c88b7eee27357d6fdc0d"},(0,n.kt)("inlineCode",{parentName:"a"},"51f1901"))),(0,n.kt)("li",{parentName:"ul"},"made tabs as component easy to call for other components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/07bae4900a4076f3429d3a26978b92aabf6b23ba"},(0,n.kt)("inlineCode",{parentName:"a"},"07bae49"))),(0,n.kt)("li",{parentName:"ul"},"Popup Component | minor fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ff9908a9374f93b9eaf4d8ee8de24acdf5be3ec"},(0,n.kt)("inlineCode",{parentName:"a"},"2ff9908"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Tab component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/95e3a733921b42fbe2540fa39548284abff9fdc0"},(0,n.kt)("inlineCode",{parentName:"a"},"95e3a73"))),(0,n.kt)("li",{parentName:"ul"},"created Table directory and stories based on semantic-ui Table component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e16115daa000962ccd8d141e3c11fd099446a388"},(0,n.kt)("inlineCode",{parentName:"a"},"e16115d"))),(0,n.kt)("li",{parentName:"ul"},"List component stories - minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/de113430b487297417c4697178f9ee37412a5389"},(0,n.kt)("inlineCode",{parentName:"a"},"de11343"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Comment component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a20f8842e8cb5c937dfc450030ac9afcf78ffe11"},(0,n.kt)("inlineCode",{parentName:"a"},"a20f884"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Grid component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/360d2a897f36e86c58b0ba6ac3d4fc852d10287d"},(0,n.kt)("inlineCode",{parentName:"a"},"360d2a8"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Image component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c1d2bcaf886c96052af45fcce98243ea56c98a5"},(0,n.kt)("inlineCode",{parentName:"a"},"3c1d2bc"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Menu component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/17e3b37ae447d8cc86228fa6c0c48a8fd8be9d03"},(0,n.kt)("inlineCode",{parentName:"a"},"17e3b37"))),(0,n.kt)("li",{parentName:"ul"},"Added untracked files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/75f0afda10114e70348e23d480f8f74528531674"},(0,n.kt)("inlineCode",{parentName:"a"},"75f0afd"))),(0,n.kt)("li",{parentName:"ul"},"created Dropdown stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d6a25381078e0b3cabdb9270d5224b3886ab6af9"},(0,n.kt)("inlineCode",{parentName:"a"},"d6a2538"))),(0,n.kt)("li",{parentName:"ul"},"created Header component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8339798f3e7d40f1b5a033bf4d7303c756c38d3"},(0,n.kt)("inlineCode",{parentName:"a"},"b833979"))),(0,n.kt)("li",{parentName:"ul"},"created stories for semantic-ui Confirm component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6fddccc6cf97f9929da52064ceb379f9fc427b42"},(0,n.kt)("inlineCode",{parentName:"a"},"6fddccc"))),(0,n.kt)("li",{parentName:"ul"},"created Statistic directory and stories with semantic-ui Statistic component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cd62498dbd75d5dff0adf849ff95d22bb9dc3b34"},(0,n.kt)("inlineCode",{parentName:"a"},"cd62498"))),(0,n.kt)("li",{parentName:"ul"},"created Item component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/90ec2be7eede347352e318c70615c30e7d422073"},(0,n.kt)("inlineCode",{parentName:"a"},"90ec2be"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Container component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/41934f6c5961ae0ac034a496ac169a191c7a5288"},(0,n.kt)("inlineCode",{parentName:"a"},"41934f6"))),(0,n.kt)("li",{parentName:"ul"},"created Label component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/71732f68b3153320710fbf7fb78dac460b8a084f"},(0,n.kt)("inlineCode",{parentName:"a"},"71732f6"))),(0,n.kt)("li",{parentName:"ul"},"created Message component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/adcbeabe6d4e8c1bbd7bd925c5f7fd3109fb407c"},(0,n.kt)("inlineCode",{parentName:"a"},"adcbeab"))),(0,n.kt)("li",{parentName:"ul"},"created Modal component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c25409d8901ad4eba66fa66a9f5c34b0353569b9"},(0,n.kt)("inlineCode",{parentName:"a"},"c25409d"))),(0,n.kt)("li",{parentName:"ul"},"Breadcrumb component stories and minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6264d92bcf6565e284ae9dc0c7a918652bb3959e"},(0,n.kt)("inlineCode",{parentName:"a"},"6264d92"))),(0,n.kt)("li",{parentName:"ul"},"created Pagination component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/57cdad35e21fdacf303e407abcb8988e97e87242"},(0,n.kt)("inlineCode",{parentName:"a"},"57cdad3"))),(0,n.kt)("li",{parentName:"ul"},"created Segment component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d8d01d70dab9359be46eb1629b3198f871091c7a"},(0,n.kt)("inlineCode",{parentName:"a"},"d8d01d7"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Radio component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1fd062d8a08cbe8507f5154201632ea96f765a2c"},(0,n.kt)("inlineCode",{parentName:"a"},"1fd062d"))),(0,n.kt)("li",{parentName:"ul"},"Menu stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6ba5e0d00a26ffd4625fb51f759af3764cef28de"},(0,n.kt)("inlineCode",{parentName:"a"},"6ba5e0d"))),(0,n.kt)("li",{parentName:"ul"},"Statistic component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c874a520c9959b7673b5c86f63e53e90f006f22"},(0,n.kt)("inlineCode",{parentName:"a"},"3c874a5"))),(0,n.kt)("li",{parentName:"ul"},"Card component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/290bda8dac4c9bb4476108c2e4969fa283f935e2"},(0,n.kt)("inlineCode",{parentName:"a"},"290bda8"))),(0,n.kt)("li",{parentName:"ul"},"Accrordion stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ee3f592fbfaead01506fb6a4dbfb36d06269564"},(0,n.kt)("inlineCode",{parentName:"a"},"2ee3f59"))),(0,n.kt)("li",{parentName:"ul"},"renamed Demo folder to Layout ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b9f6d05708310889dd018961bf5df9d5edd66e12"},(0,n.kt)("inlineCode",{parentName:"a"},"b9f6d05"))),(0,n.kt)("li",{parentName:"ul"},"remove test exclusion ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/94dba3eaa864e25d34bcc33ab19494f83ecabb25"},(0,n.kt)("inlineCode",{parentName:"a"},"94dba3e"))),(0,n.kt)("li",{parentName:"ul"},"Accordion component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e672d59f86a79e69f15b5212e2953aa7c5fea1d1"},(0,n.kt)("inlineCode",{parentName:"a"},"e672d59"))),(0,n.kt)("li",{parentName:"ul"},"fix docusaurus url (removed trailing /) ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b6c59fc7733b3df47dca797906e8f7e40a2f4ada"},(0,n.kt)("inlineCode",{parentName:"a"},"b6c59fc"))),(0,n.kt)("li",{parentName:"ul"},"Item component stories - minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f0a99025b9093ecf2eb25fd4b4e401b5b532a481"},(0,n.kt)("inlineCode",{parentName:"a"},"f0a9902"))),(0,n.kt)("li",{parentName:"ul"},"eea logos and assets ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b435b511d64b0ca99bfd310d66bdbfd5985390cc"},(0,n.kt)("inlineCode",{parentName:"a"},"b435b51")))),(0,n.kt)("h3",{id:"012-beta0---2021-12-18"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.1...0.1.2-beta.0"},"0.1.2-beta.0")," - 2021-12-18"),(0,n.kt)("h4",{id:"\ufe0f-others-57"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Refs #140454 added github action to build docusaurus to the develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/abe6a72882a41c9bca3649a3a6697619038e1677"},(0,n.kt)("inlineCode",{parentName:"a"},"abe6a72")))),(0,n.kt)("h3",{id:"011---2021-12-16"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.1-beta.0...0.1.1"},"0.1.1")," - 2021-12-16"),(0,n.kt)("h4",{id:"\ufe0f-others-58"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Refs #140454 changed the following to volto-eea-design-system: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6791d413cf1b9e434970564d9e59ed56b41907f0"},(0,n.kt)("inlineCode",{parentName:"a"},"6791d41"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 corrected base url for docusaurus website build ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/98271b3d39e2e21dfb4a0e31c334dc9e87811e4a"},(0,n.kt)("inlineCode",{parentName:"a"},"98271b3"))),(0,n.kt)("li",{parentName:"ul"},"Initial test changes on design system/docusaurus. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9dad612f385cc9fde712809f07dbe2b7111432cf"},(0,n.kt)("inlineCode",{parentName:"a"},"9dad612"))),(0,n.kt)("li",{parentName:"ul"},"After prettier check ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9ec40b4fe9d8a18e99f774e1a96a55b286a9733a"},(0,n.kt)("inlineCode",{parentName:"a"},"9ec40b4"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 restore SearchWidget.jsx content and removed dummy text from docs intro page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7505df89d93ac99156834a0c50a8e2b174c506f8"},(0,n.kt)("inlineCode",{parentName:"a"},"7505df8"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 added references to eea and the storybook in the docusaurus footer ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/42bbfcdd67888c3a7a55875d67acae9f7eb753bb"},(0,n.kt)("inlineCode",{parentName:"a"},"42bbfcd"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 lint fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9502f2bdbd45262b38926def5b7b55efabf4c32c"},(0,n.kt)("inlineCode",{parentName:"a"},"9502f2b"))),(0,n.kt)("li",{parentName:"ul"},"Add SonarQube badges ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4e0a4053ff2313fc3939caab80d874470aca062"},(0,n.kt)("inlineCode",{parentName:"a"},"a4e0a40"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 brought changes from develop-itml and upgrades docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/207c873532e38fb7909cdc32a02bf50e575b66fa"},(0,n.kt)("inlineCode",{parentName:"a"},"207c873"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 removed extra content not needed by the docusaurus site ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bc68ebe8259c9b8ed6bc73df8102885554bbc4ed"},(0,n.kt)("inlineCode",{parentName:"a"},"bc68ebe"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 updated docusaurus to latest beta ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d68ed8a1660910067a09550626a5f0e8fbbeeac9"},(0,n.kt)("inlineCode",{parentName:"a"},"d68ed8a")))),(0,n.kt)("h3",{id:"011-beta0---2021-12-09"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.0...0.1.1-beta.0"},"0.1.1-beta.0")," - 2021-12-09"),(0,n.kt)("h4",{id:"\ufe0f-others-59"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Refs #140454 moved header and footer templates from volto-ims-theme: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2d5e56045c0b7d917153d95492dd340668b6222"},(0,n.kt)("inlineCode",{parentName:"a"},"e2d5e56"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 added website folder with docusaurus site skeleton ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6fd15f4365a207308c068fe7eb197c0717e93954"},(0,n.kt)("inlineCode",{parentName:"a"},"6fd15f4"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142794 added commented implementation of the header and footer area: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/773ad8784f4a03e4b600406999d3a274a3984d39"},(0,n.kt)("inlineCode",{parentName:"a"},"773ad87"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 changed the following: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4137ec42270c28cbe036ba11e9475f00a7a5cba3"},(0,n.kt)("inlineCode",{parentName:"a"},"4137ec4"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 removed storybook from volto-eea-design-system: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a129ffb485c4c55f19129a209d920da8f8f52418"},(0,n.kt)("inlineCode",{parentName:"a"},"a129ffb"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 added storybook as a dev dependency: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e04ae4e0294fbb4a09f367d1693a158d5a1e8f2f"},(0,n.kt)("inlineCode",{parentName:"a"},"e04ae4e"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 updated Breadcrumbs.jsx to latest version: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/63fe5076781f3cf2ce5c79641a5f1b45f298b476"},(0,n.kt)("inlineCode",{parentName:"a"},"63fe507"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 we should use jsx and not mdx for storybook tests ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3668e667f857cb3052b9d63cf27ec629fe1c8394"},(0,n.kt)("inlineCode",{parentName:"a"},"3668e66"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 updated eea-design-system readme with extra info on package contents ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d2efc3ddae7b91efc82cf3bce8fb8e42d696a780"},(0,n.kt)("inlineCode",{parentName:"a"},"d2efc3d"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142010 - Optimize Volto-addons gitflow pipelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3af46d2b14fa0b1ef44736f25b0f9ac93b23d18d"},(0,n.kt)("inlineCode",{parentName:"a"},"3af46d2"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 Renamed folders of docusaurus website: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/15bca7462ba1b3c626e2bf76597f6436aa5e9092"},(0,n.kt)("inlineCode",{parentName:"a"},"15bca74"))),(0,n.kt)("li",{parentName:"ul"},"Add demo story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/757c409271eb70baa54bff8bd7c71ba29aaa4f66"},(0,n.kt)("inlineCode",{parentName:"a"},"757c409"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142794 enabled minimum css so that header looks decent ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/adbe2335bacf5ae09541c3679a246a5ec28376a4"},(0,n.kt)("inlineCode",{parentName:"a"},"adbe233"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 use the develop branch for the readme linking, it's always more up to date ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/23dcf166d5d633df2a63ab6fa5bac4be086e99a3"},(0,n.kt)("inlineCode",{parentName:"a"},"23dcf16"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 added missing themes reference for the eea theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e9ca244fcedf0be420748b3e5347e98309b5d996"},(0,n.kt)("inlineCode",{parentName:"a"},"e9ca244"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 modified assets imports after move to volto-eea-design-system ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2250cc7ba4155c328837cea09e2e7d94afc984f8"},(0,n.kt)("inlineCode",{parentName:"a"},"2250cc7"))),(0,n.kt)("li",{parentName:"ul"},"Load footer in segment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/80d38a96284e7fa9416ba327a43e29eb94bebe55"},(0,n.kt)("inlineCode",{parentName:"a"},"80d38a9"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 bump package version to 1.1.0 from 0.1.1 from develop branch: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1314039ceb45d405af6bc4698b489bbd6562c6ae"},(0,n.kt)("inlineCode",{parentName:"a"},"1314039"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142794 keep toolbalWidth variables in case design system runs in an older version of Volto ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1a8b30562e4167fe36b095877db0b215d10cb620"},(0,n.kt)("inlineCode",{parentName:"a"},"1a8b305"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142794 changed the following: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fbb80b1dbd0e3078777b8b3496d4b207ba25639a"},(0,n.kt)("inlineCode",{parentName:"a"},"fbb80b1"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 moved storybook scripts to the scripts section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/705c4c365d26152d917c62991f3f8202bc75287d"},(0,n.kt)("inlineCode",{parentName:"a"},"705c4c3"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 removed dangling comma ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/514f24d503a1f05497696c22c7fdbf7bc19d4e54"},(0,n.kt)("inlineCode",{parentName:"a"},"514f24d"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 changed link to the start of the docs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0e16fdfc77e119da4e1f15183d9cb95ef9b4b6cf"},(0,n.kt)("inlineCode",{parentName:"a"},"0e16fdf"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 add h1 to the list of elements that are max 800px and centered ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d3c30f409aa4cb43810839f8960589456cc1b2e"},(0,n.kt)("inlineCode",{parentName:"a"},"7d3c30f"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using ims-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8d657d056cde5163cfe90ac66bc973f55d82e5e9"},(0,n.kt)("inlineCode",{parentName:"a"},"8d657d0")))),(0,n.kt)("h3",{id:"010---2021-11-17"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.0.1...0.1.0"},"0.1.0")," - 2021-11-17"),(0,n.kt)("h4",{id:"\ufe0f-others-60"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Refs #140454 changed the following to volto-eea-design-system: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/40d2af693e35abdda3ededc7aabcb17e9a12e781"},(0,n.kt)("inlineCode",{parentName:"a"},"40d2af6"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 elements folder now has the variables and overrides from pastanaga theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/595b4e60816d3e24950ede3afea6e5f2aa2d7008"},(0,n.kt)("inlineCode",{parentName:"a"},"595b4e6"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 use font awesome from SemanticUI instead of Pastanaga: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4e273ca1b9a2be1f169d12258ac2335c3ebeefff"},(0,n.kt)("inlineCode",{parentName:"a"},"4e273ca"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 removed the components customizations from volto-eea-design-system: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c98c260b549cd1db48bfe556e994692a4855b95d"},(0,n.kt)("inlineCode",{parentName:"a"},"c98c260"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 added customizations folder from volto-ims-theme to volto-eea-design-system: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff4bf44bd648ff179bd7c82d0cf80da968b291b0"},(0,n.kt)("inlineCode",{parentName:"a"},"ff4bf44"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 modules folder now has the variables and overrides from pastanaga theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2841b62c87e3242423bca1117c7e1793baa7974"},(0,n.kt)("inlineCode",{parentName:"a"},"f2841b6"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 customized Comments.jsx to remove unnecessary container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b2e95d7ae875a7fc85366c76ef35ce215dd7b5ff"},(0,n.kt)("inlineCode",{parentName:"a"},"b2e95d7"))),(0,n.kt)("li",{parentName:"ul"},"Refs #132149 added initial commit for volto-eea-design-system: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2934b911d589fde126f70363a61cbdd2e3dcf7c9"},(0,n.kt)("inlineCode",{parentName:"a"},"2934b91"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 collection folder now has the variables and overrides from pastanaga: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/213d4968e4efa380a389fb7ab40ec3196f030050"},(0,n.kt)("inlineCode",{parentName:"a"},"213d496"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 removed search widget customization, we can use volto-ims-theme for that file ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b7e8b0c4821584a84f940d8f780057122321aae7"},(0,n.kt)("inlineCode",{parentName:"a"},"b7e8b0c"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 stylelint quick fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5595925f68871135a07d703c8ba009b0172c7ccd"},(0,n.kt)("inlineCode",{parentName:"a"},"5595925"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 changed the following: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/769f4f9eca0ed9fffe0c8c49c56bcb123a203f3c"},(0,n.kt)("inlineCode",{parentName:"a"},"769f4f9"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 changed the following to the eea theme: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/06d8d86a7be81fd3feadf034eacfa61eb69743ab"},(0,n.kt)("inlineCode",{parentName:"a"},"06d8d86"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 eea site.variables now use all values from pastanaga's site.variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6535c0f4e1968822a232b017a55babd280716d88"},(0,n.kt)("inlineCode",{parentName:"a"},"6535c0f"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 simplified container overrides: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51250038527f2e4b1135a2b5bfc6adccc3f77a06"},(0,n.kt)("inlineCode",{parentName:"a"},"5125003"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/177d0ce854a8a963faa2aae9481cbcc7e340e0fa"},(0,n.kt)("inlineCode",{parentName:"a"},"177d0ce"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 globals folder now has the variables and overrides from pastanaga theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/116a0c338bd92dd14636a649476b4f00951e3734"},(0,n.kt)("inlineCode",{parentName:"a"},"116a0c3"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 changed the following: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2e7f42381b63e65bafac3b754d49b65daca9663d"},(0,n.kt)("inlineCode",{parentName:"a"},"2e7f423"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 modules folder now has the variables and overrides from pastanaga theme: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/27a201d57024a7c621f4943b8eb59a3247b6c89d"},(0,n.kt)("inlineCode",{parentName:"a"},"27a201d"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 text elements are now with a max width and centered within content-area: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bbed7bbfb3e79a371b7bf7dea2206cdbdcdfe76d"},(0,n.kt)("inlineCode",{parentName:"a"},"bbed7bb"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 added main.variables entries from pastanaga to eea theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1cbbc550436c889d1b297ae9e6880167fce28fe1"},(0,n.kt)("inlineCode",{parentName:"a"},"1cbbc55"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 modified theme image imports for component customizations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef3238a4d615fa1b496e83f4e6c4c0d27f3d68f4"},(0,n.kt)("inlineCode",{parentName:"a"},"ef3238a"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 modified container width to be auto: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2e8d2e0ebb3e4a55b7cf1b66c3dff222ef12aa18"},(0,n.kt)("inlineCode",{parentName:"a"},"2e8d2e0"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 modified several icons to use the \\f values instead of \\e: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c397145bc1e76916ae72a94faaf33f49bd9ca5a6"},(0,n.kt)("inlineCode",{parentName:"a"},"c397145"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 changed the following: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c518edacad9b8bed61ea50d318d8d43bf7f483a0"},(0,n.kt)("inlineCode",{parentName:"a"},"c518eda"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 ensure that main column isn't enlarged over the sidebar section on edit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f7a28684223494933bcd8ec1f6d86b1b3da17e10"},(0,n.kt)("inlineCode",{parentName:"a"},"f7a2868"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 changed the following to the form styling: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/eb92e054fe330730c1a44737cbbdf33985216cbb"},(0,n.kt)("inlineCode",{parentName:"a"},"eb92e05"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 modified path of theme folder location for image selection ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f8cca4594857ab4afd654f35e4ec97e4d3e04be4"},(0,n.kt)("inlineCode",{parentName:"a"},"f8cca45"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 added missing mobileScrollbarWidth variables introduced as part of the mobile navigation pull request ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/444c78d998199e703d7ecde01b3feb0d44c60977"},(0,n.kt)("inlineCode",{parentName:"a"},"444c78d"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 reference font and image path from ~volto-themes instead of relative ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ec93ed3a496673eed7d7ec07a2f76aaa6a29d7ca"},(0,n.kt)("inlineCode",{parentName:"a"},"ec93ed3"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 ensure that Volto doesn't crash when site module is set to eea: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51f2f27f5ba947b49b4b69fcf9b8890676cd1d7e"},(0,n.kt)("inlineCode",{parentName:"a"},"51f2f27"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 added tiny size prop to Breadcrumbs in order to have it as 12px ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/56a12e200c27c3a1826fa3088c34f762ed74dff7"},(0,n.kt)("inlineCode",{parentName:"a"},"56a12e2")))),(0,n.kt)("h3",{id:"001---2021-11-17"},"0.0.1 - 2021-11-17"),(0,n.kt)("h4",{id:"\ufe0f-others-61"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Initial commit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b0bdd445c95a20d088e00469f81028c16482640a"},(0,n.kt)("inlineCode",{parentName:"a"},"b0bdd44")))))}s.isMDXComponent=!0}}]); \ No newline at end of file +"use strict";(self.webpackChunkwebsite=self.webpackChunkwebsite||[]).push([[6245],{3905:(e,a,t)=>{t.d(a,{Zo:()=>c,kt:()=>h});var i=t(7294);function n(e,a,t){return a in e?Object.defineProperty(e,a,{value:t,enumerable:!0,configurable:!0,writable:!0}):e[a]=t,e}function o(e,a){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);a&&(i=i.filter((function(a){return Object.getOwnPropertyDescriptor(e,a).enumerable}))),t.push.apply(t,i)}return t}function m(e){for(var a=1;a=0||(n[t]=e[t]);return n}(e,a);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(i=0;i=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(n[t]=e[t])}return n}var d=i.createContext({}),r=function(e){var a=i.useContext(d),t=a;return e&&(t="function"==typeof e?e(a):m(m({},a),e)),t},c=function(e){var a=r(e.components);return i.createElement(d.Provider,{value:a},e.children)},s="mdxType",f={inlineCode:"code",wrapper:function(e){var a=e.children;return i.createElement(i.Fragment,{},a)}},p=i.forwardRef((function(e,a){var t=e.components,n=e.mdxType,o=e.originalType,d=e.parentName,c=l(e,["components","mdxType","originalType","parentName"]),s=r(t),p=n,h=s["".concat(d,".").concat(p)]||s[p]||f[p]||o;return t?i.createElement(h,m(m({ref:a},c),{},{components:t})):i.createElement(h,m({ref:a},c))}));function h(e,a){var t=arguments,n=a&&a.mdxType;if("string"==typeof e||n){var o=t.length,m=new Array(o);m[0]=p;var l={};for(var d in a)hasOwnProperty.call(a,d)&&(l[d]=a[d]);l.originalType=e,l[s]="string"==typeof e?e:n,m[1]=l;for(var r=2;r{t.r(a),t.d(a,{contentTitle:()=>m,default:()=>s,frontMatter:()=>o,metadata:()=>l,toc:()=>d});var i=t(7462),n=(t(7294),t(3905));const o={title:"What's new"},m=void 0,l={unversionedId:"whatsnew",id:"whatsnew",title:"What's new",description:"EEA Design System (1.0)",source:"@site/docs/2-whatsnew.md",sourceDirName:".",slug:"/whatsnew",permalink:"/volto-eea-design-system/docs/whatsnew",editUrl:"https://github.com/eea/volto-eea-design-system/edit/contribute-documentation/website/docs/2-whatsnew.md",tags:[],version:"current",sidebarPosition:2,frontMatter:{title:"What's new"},sidebar:"sidebar",previous:{title:"Introduction",permalink:"/volto-eea-design-system/docs/intro"},next:{title:"Web development",permalink:"/volto-eea-design-system/docs/category/web-development"}},d=[{value:"EEA Design System (1.0)",id:"eea-design-system-10",children:[{value:"Components ready to be used",id:"components-ready-to-be-used",children:[],level:4},{value:"Future releases",id:"future-releases",children:[],level:4}],level:3},{value:"Unreleased - 2023-04-10T10:02:30.133Z",id:"unreleased---2023-04-10t100230133z",children:[{value:"\ud83d\ude80 New Features",id:"-new-features",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes",children:[],level:4}],level:3},{value:"1.0.6 - 2023-03-29",id:"106---2023-03-29",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-1",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-1",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-1",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others",children:[],level:4}],level:3},{value:"1.0.5 - 2023-03-28",id:"105---2023-03-28",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-2",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-1",children:[],level:4}],level:3},{value:"1.0.4 - 2023-03-27",id:"104---2023-03-27",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-3",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-2",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-1",children:[],level:4}],level:3},{value:"1.0.3 - 2023-03-24",id:"103---2023-03-24",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-2",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-2",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-2",children:[],level:4}],level:3},{value:"1.0.2 - 2023-03-14",id:"102---2023-03-14",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-3",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-3",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-1",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-3",children:[],level:4}],level:3},{value:"1.0.1 - 2023-03-13",id:"101---2023-03-13",children:[],level:3},{value:"1.0.0 - 2023-03-13",id:"100---2023-03-13",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-4",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-4",children:[],level:4}],level:3},{value:"1.0.0-beta.6 - 2023-03-10",id:"100-beta6---2023-03-10",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-4",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-5",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-5",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-3",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-2",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-4",children:[],level:4}],level:3},{value:"1.0.0-beta.5 - 2023-03-07",id:"100-beta5---2023-03-07",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-6",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-4",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-5",children:[],level:4}],level:3},{value:"1.0.0-beta.4 - 2023-03-01",id:"100-beta4---2023-03-01",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-5",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-6",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-7",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-6",children:[],level:4}],level:3},{value:"1.0.0-beta.3 - 2023-02-21",id:"100-beta3---2023-02-21",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-6",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-7",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-8",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-5",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-3",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-7",children:[],level:4}],level:3},{value:"1.0.0-beta.2 - 2023-02-13",id:"100-beta2---2023-02-13",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-8",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-9",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-6",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-8",children:[],level:4}],level:3},{value:"1.0.0-beta.1 - 2023-02-09",id:"100-beta1---2023-02-09",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-7",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-10",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-9",children:[],level:4}],level:3},{value:"1.0.0-alpha.15 - 2023-02-08",id:"100-alpha15---2023-02-08",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-8",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-9",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-11",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-10",children:[],level:4}],level:3},{value:"1.0.0-alpha.14 - 2023-01-30",id:"100-alpha14---2023-01-30",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-12",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-11",children:[],level:4}],level:3},{value:"1.0.0-alpha.13.1 - 2023-01-30",id:"100-alpha131---2023-01-30",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-13",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-12",children:[],level:4}],level:3},{value:"1.0.0-alpha.13 - 2023-01-27",id:"100-alpha13---2023-01-27",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-9",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-10",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-14",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-13",children:[],level:4}],level:3},{value:"1.0.0-alpha.12 - 2023-01-24",id:"100-alpha12---2023-01-24",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-10",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-11",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-15",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-4",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-14",children:[],level:4}],level:3},{value:"1.0.0-alpha.11 - 2023-01-17",id:"100-alpha11---2023-01-17",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-11",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-12",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-16",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-5",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-15",children:[],level:4}],level:3},{value:"1.0.0-alpha.10 - 2023-01-13",id:"100-alpha10---2023-01-13",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-13",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-16",children:[],level:4}],level:3},{value:"1.0.0-alpha.9 - 2022-12-28",id:"100-alpha9---2022-12-28",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-17",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-17",children:[],level:4}],level:3},{value:"1.0.0-alpha.8 - 2022-12-23",id:"100-alpha8---2022-12-23",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-12",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-18",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-7",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-6",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-18",children:[],level:4}],level:3},{value:"1.0.0-alpha.7 - 2022-12-16",id:"100-alpha7---2022-12-16",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-13",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-14",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-19",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-19",children:[],level:4}],level:3},{value:"1.0.0-alpha.6 - 2022-12-07",id:"100-alpha6---2022-12-07",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-14",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-15",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-20",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-7",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-20",children:[],level:4}],level:3},{value:"1.0.0-alpha.5 - 2022-11-29",id:"100-alpha5---2022-11-29",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-15",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-16",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-21",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-8",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-8",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-21",children:[],level:4}],level:3},{value:"1.0.0-alpha.4 - 2022-11-22",id:"100-alpha4---2022-11-22",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-17",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-22",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-22",children:[],level:4}],level:3},{value:"1.0.0-alpha.3 - 2022-11-16",id:"100-alpha3---2022-11-16",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-16",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-18",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-23",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-9",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-23",children:[],level:4}],level:3},{value:"1.0.0-alpha.2 - 2022-10-28",id:"100-alpha2---2022-10-28",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-24",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-10",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-24",children:[],level:4}],level:3},{value:"1.0.0-alpha.1 - 2022-10-20",id:"100-alpha1---2022-10-20",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-25",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-11",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-9",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-25",children:[],level:4}],level:3},{value:"0.9.6 - 2022-12-16",id:"096---2022-12-16",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-26",children:[],level:4}],level:3},{value:"0.9.5 - 2022-10-20",id:"095---2022-10-20",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-19",children:[],level:4}],level:3},{value:"0.9.4 - 2022-10-19",id:"094---2022-10-19",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-20",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-26",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-27",children:[],level:4}],level:3},{value:"0.9.3 - 2022-10-04",id:"093---2022-10-04",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-21",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-27",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-10",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-28",children:[],level:4}],level:3},{value:"0.9.2 - 2022-09-27",id:"092---2022-09-27",children:[],level:3},{value:"0.9.1 - 2022-09-27",id:"091---2022-09-27",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-28",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-29",children:[],level:4}],level:3},{value:"0.9.0 - 2022-09-19",id:"090---2022-09-19",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-17",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-22",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-29",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-12",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-11",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-30",children:[],level:4}],level:3},{value:"0.8.1 - 2022-08-26",id:"081---2022-08-26",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-23",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-30",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-12",children:[],level:4}],level:3},{value:"0.8.0 - 2022-08-20",id:"080---2022-08-20",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-18",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-24",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-31",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-31",children:[],level:4}],level:3},{value:"0.7.6 - 2022-08-15",id:"076---2022-08-15",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-32",children:[],level:4}],level:3},{value:"0.7.5 - 2022-08-11",id:"075---2022-08-11",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-33",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-32",children:[],level:4}],level:3},{value:"0.7.3 - 2022-08-04",id:"073---2022-08-04",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-34",children:[],level:4}],level:3},{value:"0.7.2 - 2022-08-03",id:"072---2022-08-03",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-25",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-33",children:[],level:4}],level:3},{value:"0.7.1 - 2022-08-01",id:"071---2022-08-01",children:[],level:3},{value:"0.7.0 - 2022-08-01",id:"070---2022-08-01",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-19",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-26",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-35",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-34",children:[],level:4}],level:3},{value:"0.6.5 - 2022-07-06",id:"065---2022-07-06",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-27",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-36",children:[],level:4}],level:3},{value:"0.6.1 - 2022-07-01",id:"061---2022-07-01",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-20",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-37",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-13",children:[],level:4}],level:3},{value:"0.6.0 - 2022-07-01",id:"060---2022-07-01",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-28",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-38",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-14",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-13",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-35",children:[],level:4}],level:3},{value:"0.5.5 - 2022-06-23",id:"055---2022-06-23",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-29",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-39",children:[],level:4}],level:3},{value:"0.5.4 - 2022-06-16",id:"054---2022-06-16",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-30",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-40",children:[],level:4}],level:3},{value:"0.5.3 - 2022-06-16",id:"053---2022-06-16",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-31",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-41",children:[],level:4}],level:3},{value:"0.5.2 - 2022-06-14",id:"052---2022-06-14",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-21",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-42",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-15",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-36",children:[],level:4}],level:3},{value:"0.5.1 - 2022-06-13",id:"051---2022-06-13",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-43",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-37",children:[],level:4}],level:3},{value:"0.5.0 - 2022-06-11",id:"050---2022-06-11",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-22",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-32",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-44",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-38",children:[],level:4}],level:3},{value:"0.4.5 - 2022-06-08",id:"045---2022-06-08",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-45",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-39",children:[],level:4}],level:3},{value:"0.4.4 - 2022-06-08",id:"044---2022-06-08",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-23",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-33",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-46",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-14",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-40",children:[],level:4}],level:3},{value:"0.4.3 - 2022-06-03",id:"043---2022-06-03",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-34",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-47",children:[],level:4}],level:3},{value:"0.4.2 - 2022-06-02",id:"042---2022-06-02",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-48",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-15",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-41",children:[],level:4}],level:3},{value:"0.4.1 - 2022-06-02",id:"041---2022-06-02",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-24",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-35",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-49",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-16",children:[],level:4}],level:3},{value:"0.4.0 - 2022-06-01",id:"040---2022-06-01",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-25",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-36",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-50",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-16",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-42",children:[],level:4}],level:3},{value:"0.3.1 - 2022-05-19",id:"031---2022-05-19",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-37",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-51",children:[],level:4}],level:3},{value:"0.3.0 - 2022-05-17",id:"030---2022-05-17",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-26",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-38",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-52",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-43",children:[],level:4}],level:3},{value:"0.2.4 - 2022-05-13",id:"024---2022-05-13",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-53",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-44",children:[],level:4}],level:3},{value:"0.2.3 - 2022-04-29",id:"023---2022-04-29",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-27",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-54",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-17",children:[],level:4}],level:3},{value:"0.2.2 - 2022-04-22",id:"022---2022-04-22",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-39",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-55",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-17",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-45",children:[],level:4}],level:3},{value:"0.2.1 - 2022-04-08",id:"021---2022-04-08",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-40",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-46",children:[],level:4}],level:3},{value:"0.2.0 - 2022-04-04",id:"020---2022-04-04",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-28",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-41",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-56",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-18",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-47",children:[],level:4}],level:3},{value:"0.1.9 - 2022-03-25",id:"019---2022-03-25",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-29",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-42",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-57",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-19",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-48",children:[],level:4}],level:3},{value:"0.1.8 - 2022-03-18",id:"018---2022-03-18",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-43",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-58",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-20",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-18",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-49",children:[],level:4}],level:3},{value:"0.1.7 - 2022-03-15",id:"017---2022-03-15",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-30",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-44",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-59",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-21",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-19",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-50",children:[],level:4}],level:3},{value:"0.1.6 - 2022-03-11",id:"016---2022-03-11",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-31",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-45",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-60",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-22",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-51",children:[],level:4}],level:3},{value:"0.1.5 - 2022-03-08",id:"015---2022-03-08",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-32",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-46",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-61",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-23",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-20",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-52",children:[],level:4}],level:3},{value:"0.1.4 - 2022-03-01",id:"014---2022-03-01",children:[{value:"\ud83d\udc85 Enhancements",id:"-enhancements-62",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-21",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-53",children:[],level:4}],level:3},{value:"0.1.4-beta.0 - 2022-02-25",id:"014-beta0---2022-02-25",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-33",children:[],level:4}],level:3},{value:"0.1.3 - 2022-02-25",id:"013---2022-02-25",children:[{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-47",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-63",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-24",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-54",children:[],level:4}],level:3},{value:"0.1.2 - 2022-02-17",id:"012---2022-02-17",children:[{value:"\ud83d\ude80 New Features",id:"-new-features-34",children:[],level:4},{value:"\ud83d\udc1b Bug Fixes",id:"-bug-fixes-48",children:[],level:4},{value:"\ud83d\udc85 Enhancements",id:"-enhancements-64",children:[],level:4},{value:"\ud83c\udfe0 Internal changes",id:"-internal-changes-25",children:[],level:4},{value:"\ud83c\udfe0 Documentation changes",id:"-documentation-changes-22",children:[],level:4},{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-55",children:[],level:4}],level:3},{value:"0.1.2-beta.2 - 2022-01-03",id:"012-beta2---2022-01-03",children:[],level:3},{value:"0.1.2-beta.1 - 2021-12-22",id:"012-beta1---2021-12-22",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-56",children:[],level:4}],level:3},{value:"0.1.2-beta.0 - 2021-12-18",id:"012-beta0---2021-12-18",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-57",children:[],level:4}],level:3},{value:"0.1.1 - 2021-12-16",id:"011---2021-12-16",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-58",children:[],level:4}],level:3},{value:"0.1.1-beta.0 - 2021-12-09",id:"011-beta0---2021-12-09",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-59",children:[],level:4}],level:3},{value:"0.1.0 - 2021-11-17",id:"010---2021-11-17",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-60",children:[],level:4}],level:3},{value:"0.0.1 - 2021-11-17",id:"001---2021-11-17",children:[{value:"\ud83d\udee0\ufe0f Others",id:"\ufe0f-others-61",children:[],level:4}],level:3}],r={toc:d},c="wrapper";function s(e){let{components:a,...t}=e;return(0,n.kt)(c,(0,i.Z)({},r,t,{components:a,mdxType:"MDXLayout"}),(0,n.kt)("h3",{id:"eea-design-system-10"},"EEA Design System (1.0)"),(0,n.kt)("h4",{id:"components-ready-to-be-used"},"Components ready to be used"),(0,n.kt)("p",null,"The following components are ready to be used as Volto ",(0,n.kt)("inlineCode",{parentName:"p"},"blocks"),", ",(0,n.kt)("inlineCode",{parentName:"p"},"slate")," integration, or via the advanced ",(0,n.kt)("inlineCode",{parentName:"p"},"block styler"),":"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Accordion ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Call to Action ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Callout - part of the Description ",(0,n.kt)("inlineCode",{parentName:"li"},"block"),", ",(0,n.kt)("inlineCode",{parentName:"li"},"slate")),(0,n.kt)("li",{parentName:"ul"},"Card - part of the Teaser ",(0,n.kt)("inlineCode",{parentName:"li"},"block")," and Listing ",(0,n.kt)("inlineCode",{parentName:"li"},"block"),", it includes several variations like round card e.g., used for Avatar"),(0,n.kt)("li",{parentName:"ul"},"Divider ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Headings ",(0,n.kt)("inlineCode",{parentName:"li"},"slate")),(0,n.kt)("li",{parentName:"ul"},"Hero ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Item ",(0,n.kt)("inlineCode",{parentName:"li"},"block")," - used for text with an icon (remixicon or custom SVG/image) on the left/right"),(0,n.kt)("li",{parentName:"ul"},"List ",(0,n.kt)("inlineCode",{parentName:"li"},"slate")," - ordered and unordered"),(0,n.kt)("li",{parentName:"ul"},"Quote ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Statistic ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Tag ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Table ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Tabs ",(0,n.kt)("inlineCode",{parentName:"li"},"block")),(0,n.kt)("li",{parentName:"ul"},"Timeline ",(0,n.kt)("inlineCode",{parentName:"li"},"block"))),(0,n.kt)("h4",{id:"future-releases"},"Future releases"),(0,n.kt)("p",null,"Below is a non-exhaustive list of the work-in-progress which is planned for future releases:"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Navigation Portlet (used on the left/right hand of content)"),(0,n.kt)("li",{parentName:"ul"},"Spacing/padding system. We want to add the ability for editors to consistently apply various spacing/padding on certain components in order to allow a better alignment when components are used together."),(0,n.kt)("li",{parentName:"ul"},"Improve docusaurus and storybook with more components, controls, and variations in order to better reflect what is possible in Volto.")),(0,n.kt)("p",null,"Generated by ",(0,n.kt)("a",{parentName:"p",href:"https://github.com/CookPete/auto-changelog"},(0,n.kt)("inlineCode",{parentName:"a"},"auto-changelog")),"."),(0,n.kt)("h3",{id:"unreleased---2023-04-10t100230133z"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.6...HEAD"},"Unreleased")," - 2023-04-10T10:02:30.133Z"),(0,n.kt)("h4",{id:"-new-features"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(storybook): components keyboard and screen reader optimization #324 from eea/design-system-accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/85faff73025442a012f079b6734ef868862cc44f"},(0,n.kt)("inlineCode",{parentName:"a"},"85faff7")))),(0,n.kt)("h4",{id:"-bug-fixes"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix: dont run isInternalURL twice ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a48984e0cb224944aed3846447c416511d080779"},(0,n.kt)("inlineCode",{parentName:"a"},"a48984e"))),(0,n.kt)("li",{parentName:"ul"},"fix: github autoformat ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/be9774981032759b3284a6fb93490a204a817c7a"},(0,n.kt)("inlineCode",{parentName:"a"},"be97749"))),(0,n.kt)("li",{parentName:"ul"},"fix(cards): focus outline for header needed for the overflow hidden solution with max title lines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/849a7a8e3cf801bf0a4d7e9189b603ea15219fcc"},(0,n.kt)("inlineCode",{parentName:"a"},"849a7a8"))),(0,n.kt)("li",{parentName:"ul"},"fix: external url in header ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9e3aea649ca6f9446324d5d351cdfcde08332f84"},(0,n.kt)("inlineCode",{parentName:"a"},"9e3aea6"))),(0,n.kt)("li",{parentName:"ul"},"fix: check if client method change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7c53b83a54e4e7d3c5329c46de03cdf7aabedf13"},(0,n.kt)("inlineCode",{parentName:"a"},"7c53b83"))),(0,n.kt)("li",{parentName:"ul"},"fix(item): use child selector instead of descendent as it interferes with blockchooser refs #157040 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ad4ca3725c595c8dbeaff69f730928313c1779ec"},(0,n.kt)("inlineCode",{parentName:"a"},"ad4ca37"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): external url in header now takes you to the correct url #330 from eea/header-external-url-fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/086c61d683a7ac67dea221aa39ffe4cef05a9a68"},(0,n.kt)("inlineCode",{parentName:"a"},"086c61d"))),(0,n.kt)("li",{parentName:"ul"},"fix(item): flex variant on edit when inside blockchooser #333 from eea/fix-item-csss ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/65b9099779180feeb7d10384928bb0a3224b947d"},(0,n.kt)("inlineCode",{parentName:"a"},"65b9099"))),(0,n.kt)("li",{parentName:"ul"},"fix(tag): fix in args ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/18eaaf41fa80a3e175341a2ddd7376b8281fee7d"},(0,n.kt)("inlineCode",{parentName:"a"},"18eaaf4")))),(0,n.kt)("h4",{id:"-enhancements"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): align menu items with demo site for better testing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/82a5c84cfde81dd8243f3f9a2d1fcaa8ac4b1463"},(0,n.kt)("inlineCode",{parentName:"a"},"82a5c84"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumbs): updates on structure and story for accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/770c8c0bce88c5d9301ab0293a8e4865849bfeb2"},(0,n.kt)("inlineCode",{parentName:"a"},"770c8c0"))),(0,n.kt)("li",{parentName:"ul"},"change(logo): update eionet svg ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c87fc750a3dc376205a643eefced410a41b22c6"},(0,n.kt)("inlineCode",{parentName:"a"},"3c87fc7"))),(0,n.kt)("li",{parentName:"ul"},"refactor(downloadLabeledIcon): accessibility fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/df3935dc5836298768316399ba36927325541fef"},(0,n.kt)("inlineCode",{parentName:"a"},"df3935d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(languageLabeledIcon): accessibility fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/61edd9e1022a8954930db30c262290680974d880"},(0,n.kt)("inlineCode",{parentName:"a"},"61edd9e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): Restructure Topics and Countries lists ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d816e7ab9cdf2f202ab994201c16241cfb26c33a"},(0,n.kt)("inlineCode",{parentName:"a"},"d816e7a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(newTabLabeledIcon): accessibility fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/211e40aa47d1f0de91b1d949770c452336b80248"},(0,n.kt)("inlineCode",{parentName:"a"},"211e40a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(comment): accessibility fixes and text button update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dad8cb67a0092b01b50197c94691ed8a5d00a128"},(0,n.kt)("inlineCode",{parentName:"a"},"dad8cb6"))),(0,n.kt)("li",{parentName:"ul"},"change(mega-menu): use lists for navigation, enhance voice over support for better accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d13137f024d6357514b85f184d219eb81dd585f2"},(0,n.kt)("inlineCode",{parentName:"a"},"d13137f"))),(0,n.kt)("li",{parentName:"ul"},"change(storybook): removed links for Label and Comment that we implement without a link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee0bfdf3aee3e4b6b6eba6dabd7817a37ace48ae"},(0,n.kt)("inlineCode",{parentName:"a"},"ee0bfdf"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): fix header outline not showing issue ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48fc2e2328ff184402e15edbaf1ed2507e771a14"},(0,n.kt)("inlineCode",{parentName:"a"},"48fc2e2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): firefox accessibility errors fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c7d35b92b90940b466ea016dbbb3f1c6dfa0c3ab"},(0,n.kt)("inlineCode",{parentName:"a"},"c7d35b9"))),(0,n.kt)("li",{parentName:"ul"},"change(ContextNavigation): accessibility updates, not restructuring of the volto component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/03fe83dce70c6931c543b93c71e3cd8e16f99ec8"},(0,n.kt)("inlineCode",{parentName:"a"},"03fe83d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(modal): restructure close icon as button ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f1b836e3071c220235eb327ee7ef67edac4d467d"},(0,n.kt)("inlineCode",{parentName:"a"},"f1b836e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(label): add href attribute to links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/05f664dde27f1e0580ab7f32a7934e4d8e85c918"},(0,n.kt)("inlineCode",{parentName:"a"},"05f664d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(inpageNavigation): restructure as a button ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48e22ac0ee521f87497822a0ec9d627829d849d5"},(0,n.kt)("inlineCode",{parentName:"a"},"48e22ac"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIconGroup): group updates for all labeled icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a679d9d05b804f516fdeed449eba1e74e227818c"},(0,n.kt)("inlineCode",{parentName:"a"},"a679d9d"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumbs): label modification for better screen reader output ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c967bef63ac6f622f5936235dd5590831a674d15"},(0,n.kt)("inlineCode",{parentName:"a"},"c967bef"))),(0,n.kt)("li",{parentName:"ul"},"refactor(checkbox): accessibility fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3b3047f6a6bdd9e9ad858e6a7ca0c6f6b404e605"},(0,n.kt)("inlineCode",{parentName:"a"},"3b3047f"))),(0,n.kt)("li",{parentName:"ul"},"change(card): simplified headerLineHeightOffset used as margin top for cards header ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca61105f2f39e6880ce545ba4d54f3568e7b87e2"},(0,n.kt)("inlineCode",{parentName:"a"},"ca61105"))),(0,n.kt)("li",{parentName:"ul"},"change(logos): updated eionet logo used in the site footer #318 from eea/footer-logo-update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70671d03bbc228e3013e382cb51e6764a83b01a8"},(0,n.kt)("inlineCode",{parentName:"a"},"70671d0"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): clean up function after test ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/883eb73cbc3db6a1fadd0200118eafdce91b7aab"},(0,n.kt)("inlineCode",{parentName:"a"},"883eb73"))),(0,n.kt)("li",{parentName:"ul"},"change(mega-menu): added code to align countries left column subtitle with the right column ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1aa33dd7ac7154a91515eef688f276d664d5d7f3"},(0,n.kt)("inlineCode",{parentName:"a"},"1aa33dd"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumbs): fixed sizing of breadcrumbs list items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1761e984a6ffebbcca0c7b88128a01235fc6b903"},(0,n.kt)("inlineCode",{parentName:"a"},"1761e98"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumbs,mega-menu): better screen readers support, see links instead of groups #309 from eea/firefox-accessibility-tab-issues ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d6b0b4adba8f04799491025fb41ac97e875bcce0"},(0,n.kt)("inlineCode",{parentName:"a"},"d6b0b4a"))),(0,n.kt)("li",{parentName:"ul"},"change(mega-menu): sub-title padding tweaks for better spacing normalization ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e08668dd9fd948e57628e5582e7a4a7f08d96451"},(0,n.kt)("inlineCode",{parentName:"a"},"e08668d"))),(0,n.kt)("li",{parentName:"ul"},"change(checkbox): toggle hover color correction ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4f4d0df7292fdccb89f83feface51639bd5d6559"},(0,n.kt)("inlineCode",{parentName:"a"},"4f4d0df"))),(0,n.kt)("li",{parentName:"ul"},"change(card): add links to teaser titles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cc64c74a69539af287f424abdf96226635284303"},(0,n.kt)("inlineCode",{parentName:"a"},"cc64c74"))),(0,n.kt)("li",{parentName:"ul"},"change(inpageNavigation): story improvements ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ade63c6f0b08c62318d31c54568cca29d0f106bc"},(0,n.kt)("inlineCode",{parentName:"a"},"ade63c6")))),(0,n.kt)("h4",{id:"-internal-changes"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(megaMenu): remove comments and unused properties ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fa5f8f878421d879026aacd86e5390112b8852a1"},(0,n.kt)("inlineCode",{parentName:"a"},"fa5f8f8")))),(0,n.kt)("h4",{id:"-documentation-changes"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(footer): logo update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ad982d63423442bc292cd7553ad3163b33b337bb"},(0,n.kt)("inlineCode",{parentName:"a"},"ad982d6")))),(0,n.kt)("h3",{id:"106---2023-03-29"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.5...1.0.6"},"1.0.6")," - 2023-03-29"),(0,n.kt)("h4",{id:"-new-features-1"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat: add viewport-(width/height) less functions and fixed banner image url #329 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e8e70bdc81f4f301a9dce370867a873e55563048"},(0,n.kt)("inlineCode",{parentName:"a"},"e8e70bd"))),(0,n.kt)("li",{parentName:"ul"},"feat: add viewport-(width/height) less functions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/68300a3c34e66954c7ef3a6e52baa37431fbfa9e"},(0,n.kt)("inlineCode",{parentName:"a"},"68300a3")))),(0,n.kt)("h4",{id:"-enhancements-1"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): set full class name for remix icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f435e10034b04cab4aeb301d8521559f98be299e"},(0,n.kt)("inlineCode",{parentName:"a"},"f435e10"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner.jsx): use flattenToAppURL helper function to get image source URL ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24b13d7c09a498ca889d413135c9abc4e6cab9ad"},(0,n.kt)("inlineCode",{parentName:"a"},"24b13d7")))),(0,n.kt)("h4",{id:"-internal-changes-1"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(theme): update container width and margins in eea theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e4446a3af641ddca03f1f2833dd6e79535feb98"},(0,n.kt)("inlineCode",{parentName:"a"},"3e4446a")))),(0,n.kt)("h4",{id:"\ufe0f-others"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"horizontal overflow hidden in view mode ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f395f276df003480a219bae639f87bebcf35799f"},(0,n.kt)("inlineCode",{parentName:"a"},"f395f27")))),(0,n.kt)("h3",{id:"105---2023-03-28"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.4...1.0.5"},"1.0.5")," - 2023-03-28"),(0,n.kt)("h4",{id:"-new-features-2"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat: improve full-width class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70bba7e295dd237e7c579ef0446ff05e0c8529d8"},(0,n.kt)("inlineCode",{parentName:"a"},"70bba7e")))),(0,n.kt)("h4",{id:"-bug-fixes-1"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(banner): Add missing divider for time tag #327 from eea/banner-metadata ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c46a58336ec9eb2ce75d2637f3197f417e8ca326"},(0,n.kt)("inlineCode",{parentName:"a"},"c46a583"))),(0,n.kt)("li",{parentName:"ul"},"fix(banner): Add missing divider for time tag ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d68c395d368a267baef4422df6e72f63d099b75"},(0,n.kt)("inlineCode",{parentName:"a"},"7d68c39")))),(0,n.kt)("h3",{id:"104---2023-03-27"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.3...1.0.4"},"1.0.4")," - 2023-03-27"),(0,n.kt)("h4",{id:"-new-features-3"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(copyright): Add copyright prefix - Image - refs #250724 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6a727723c15aee499ed7cedc9f364c5e2c8014bb"},(0,n.kt)("inlineCode",{parentName:"a"},"6a72772")))),(0,n.kt)("h4",{id:"-internal-changes-2"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(copyright): Cleanup useless min-height - refs #250724 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2457df6376ac1a4d00f87eee90e61f66f7ffebb"},(0,n.kt)("inlineCode",{parentName:"a"},"f2457df")))),(0,n.kt)("h4",{id:"\ufe0f-others-1"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cfd6eba8b01eceff4e28ab7ab51b2457672ac172"},(0,n.kt)("inlineCode",{parentName:"a"},"cfd6eba")))),(0,n.kt)("h3",{id:"103---2023-03-24"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.2...1.0.3"},"1.0.3")," - 2023-03-24"),(0,n.kt)("h4",{id:"-bug-fixes-2"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix: improve full-width class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93222590a630b27f3dfccb7df0a50070c9c9901c"},(0,n.kt)("inlineCode",{parentName:"a"},"9322259"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): Remove z-index from subsite logo #320 from eea/subsite-logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/50911009918faf7d3064d97ea7b685ad71970521"},(0,n.kt)("inlineCode",{parentName:"a"},"5091100"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): Remove z-index from subsite logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d433a9788d76db0f1c08ef6bb2313f479c2bb19b"},(0,n.kt)("inlineCode",{parentName:"a"},"d433a97")))),(0,n.kt)("h4",{id:"-enhancements-2"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(header): Add search popup customizations from eea-website-theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/43e5a78be8efa1098ea0fc87f43f40f2b5d482c1"},(0,n.kt)("inlineCode",{parentName:"a"},"43e5a78"))),(0,n.kt)("li",{parentName:"ul"},"change(popup): create custom popup for better accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/036aac95509b6d78b2d3b251578a7de878e28371"},(0,n.kt)("inlineCode",{parentName:"a"},"036aac9"))),(0,n.kt)("li",{parentName:"ul"},"change(popup): added most important popup properties from Semantic ui implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/61f65bc0e5806aaac33b54db36d5360fd05a48cc"},(0,n.kt)("inlineCode",{parentName:"a"},"61f65bc"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): use custom-made Popup for better accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/10d0fcfb28ca97efe9fa5c0f6c9c350b76a73140"},(0,n.kt)("inlineCode",{parentName:"a"},"10d0fcf"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): use custom-made Popup for better accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9108bee5f671505be5199e72a4749bb0af0c0cb9"},(0,n.kt)("inlineCode",{parentName:"a"},"9108bee"))),(0,n.kt)("li",{parentName:"ul"},"change(popup): added also the basic property ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4497acddde258ed31cda09f4d905e003a1e4611"},(0,n.kt)("inlineCode",{parentName:"a"},"a4497ac"))),(0,n.kt)("li",{parentName:"ul"},"change(colors): update gray-4 color value #321 from eea/update-gray-4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f458ff0965debd3629cdd78362244836d0d42687"},(0,n.kt)("inlineCode",{parentName:"a"},"f458ff0"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): MetadataField now uses proper time tag when value is datetime ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4c4d34d5905a6771a281fc3db1174b4998c8fa8"},(0,n.kt)("inlineCode",{parentName:"a"},"b4c4d34"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): updated gray-4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b890df7693880fb965e41752eda64df992a1cdc4"},(0,n.kt)("inlineCode",{parentName:"a"},"b890df7"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): Fix error and empty div if no social links are present #319 from eea/footer-social ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/89222466b76a4720af73c0d516074efec0757c34"},(0,n.kt)("inlineCode",{parentName:"a"},"8922246"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): Fix error and empty div if no social links are present ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5d934a6545ae783ff41dc9e3eda389c571d1369b"},(0,n.kt)("inlineCode",{parentName:"a"},"5d934a6")))),(0,n.kt)("h4",{id:"\ufe0f-others-2"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"lint ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca41def7a3743a8328f26cec868bd20395b62446"},(0,n.kt)("inlineCode",{parentName:"a"},"ca41def"))),(0,n.kt)("li",{parentName:"ul"},"refactor ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9789201c7966cd711bfa85fe448f6f6df2583eaf"},(0,n.kt)("inlineCode",{parentName:"a"},"9789201"))),(0,n.kt)("li",{parentName:"ul"},"lint ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/646dfaa729b51367ce7545ea928837a481a5485a"},(0,n.kt)("inlineCode",{parentName:"a"},"646dfaa"))),(0,n.kt)("li",{parentName:"ul"},"(feat):Page Header Banner accessibility #316 from eea/accesibility-banner ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e587f4657de137273053480a3536a066ab032a29"},(0,n.kt)("inlineCode",{parentName:"a"},"e587f46"))),(0,n.kt)("li",{parentName:"ul"},"storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c8c77de372060328d535b190f30747797db0d23a"},(0,n.kt)("inlineCode",{parentName:"a"},"c8c77de"))),(0,n.kt)("li",{parentName:"ul"},"banner accesibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5e2f23bae30b5bb14d3f607e0cfeb85d0cfe4a9f"},(0,n.kt)("inlineCode",{parentName:"a"},"5e2f23b"))),(0,n.kt)("li",{parentName:"ul"},"prettier ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6ed78e50ee68accca10b06b0790c231ddeb1a1fa"},(0,n.kt)("inlineCode",{parentName:"a"},"6ed78e5"))),(0,n.kt)("li",{parentName:"ul"},"cleaning ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4391aa6c6611d1a15f5977eb150416909ad83bc1"},(0,n.kt)("inlineCode",{parentName:"a"},"4391aa6"))),(0,n.kt)("li",{parentName:"ul"},"lint 3 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2e0bed19a24d8abfa230212cd8c09f8313dc00f2"},(0,n.kt)("inlineCode",{parentName:"a"},"2e0bed1"))),(0,n.kt)("li",{parentName:"ul"},"lint 1 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4c958034870a9861c542359144e3c56f9157994"},(0,n.kt)("inlineCode",{parentName:"a"},"b4c9580")))),(0,n.kt)("h3",{id:"102---2023-03-14"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.1...1.0.2"},"1.0.2")," - 2023-03-14"),(0,n.kt)("h4",{id:"-bug-fixes-3"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(megamenu): topic menu title is now placed before content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6004bcb2683dedf6d6e18e61f33fde84a54c38d5"},(0,n.kt)("inlineCode",{parentName:"a"},"6004bcb"))),(0,n.kt)("li",{parentName:"ul"},"fix(megamenu): removed in depth nav_title renaming that set title wrongly to a-z topics ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/899ca0e2ba5f8f9eb61e4280d786f74a17c186b7"},(0,n.kt)("inlineCode",{parentName:"a"},"899ca0e")))),(0,n.kt)("h4",{id:"-enhancements-3"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(megamenu): removed special styling from at a glance mega menu section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fd0c4c8a06bb4c4aa26f57c453132d13d30bc691"},(0,n.kt)("inlineCode",{parentName:"a"},"fd0c4c8"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): renamed thematic information platforms to environmental information systems ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e7004a7ea39451dbf97e1faed222b0cc5a12d6ce"},(0,n.kt)("inlineCode",{parentName:"a"},"e7004a7"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): updated static image of footer sections ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ff3185edf9257c790d2a124d3f937f61d84e147"},(0,n.kt)("inlineCode",{parentName:"a"},"4ff3185")))),(0,n.kt)("h4",{id:"-documentation-changes-1"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(What's new): Update 'What's new' ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d7ed9d619aa60d087c3821a972ebe5bf5766521a"},(0,n.kt)("inlineCode",{parentName:"a"},"d7ed9d6")))),(0,n.kt)("h4",{id:"\ufe0f-others-3"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fixed accordion selector typo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f4cabc8f2222cf587af9e04b0ea196799b84202f"},(0,n.kt)("inlineCode",{parentName:"a"},"f4cabc8")))),(0,n.kt)("h3",{id:"101---2023-03-13"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0...1.0.1"},"1.0.1")," - 2023-03-13"),(0,n.kt)("h3",{id:"100---2023-03-13"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-beta.6...1.0.0"},"1.0.0")," - 2023-03-13"),(0,n.kt)("h4",{id:"-bug-fixes-4"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(Footer): Open internal links within the same page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5b3e409c71281800bb0fd137a1bac256efaca2b5"},(0,n.kt)("inlineCode",{parentName:"a"},"5b3e409")))),(0,n.kt)("h4",{id:"-enhancements-4"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(banner): use huge scale instead of full image for better performance ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/381c58e3521436f562d9e1727428a18435e2c0f3"},(0,n.kt)("inlineCode",{parentName:"a"},"381c58e")))),(0,n.kt)("h3",{id:"100-beta6---2023-03-10"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-beta.5...1.0.0-beta.6"},"1.0.0-beta.6")," - 2023-03-10"),(0,n.kt)("h4",{id:"-new-features-4"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(site): serve Roboto fonts from eea design system package instead of google fonts #311 from eea/roboto-library ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6a1b3e3864a0bc8602e9c434ff70746bba59f44"},(0,n.kt)("inlineCode",{parentName:"a"},"f6a1b3e")))),(0,n.kt)("h4",{id:"-bug-fixes-5"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix: full-width is now properly sized ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e2e3482d658febbd692112608df14279bed05e7"},(0,n.kt)("inlineCode",{parentName:"a"},"6e2e348"))),(0,n.kt)("li",{parentName:"ul"},"fix(storybook): add fontDisplay ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/078966a6a5c7277d36fcd31bb4c0704bcc43e523"},(0,n.kt)("inlineCode",{parentName:"a"},"078966a")))),(0,n.kt)("h4",{id:"-enhancements-5"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(image): copyright position fixes, moved image floating to image-block-container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53422e0ea345a7cb6e8cb07bf9006b48d86ded58"},(0,n.kt)("inlineCode",{parentName:"a"},"53422e0"))),(0,n.kt)("li",{parentName:"ul"},"change(colors:) update the design system colour palette #312 from eea/update-color-palette ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a5fb69465717dbdc0fe8091640a0e46f66199b65"},(0,n.kt)("inlineCode",{parentName:"a"},"a5fb694"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): added roboto library ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19de7b19fe795870102000bfebbf452d88b3a7b1"},(0,n.kt)("inlineCode",{parentName:"a"},"19de7b1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): added roboto library ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e9916215728dda0ff423f8196e7442588058042e"},(0,n.kt)("inlineCode",{parentName:"a"},"e991621"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): update colours ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3a2c1e1da8f0224e08f9f8afac3f0a74f7ce91d3"},(0,n.kt)("inlineCode",{parentName:"a"},"3a2c1e1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): restored site variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a48478bae9bdf1d9275be999e1ec8382f10a2fec"},(0,n.kt)("inlineCode",{parentName:"a"},"a48478b"))),(0,n.kt)("li",{parentName:"ul"},"change(copyright): implemented copyright hover design ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6b1244163de7ff58d1529fdd791502c862ee48ec"},(0,n.kt)("inlineCode",{parentName:"a"},"6b12441")))),(0,n.kt)("h4",{id:"-internal-changes-3"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(storybook): switched google fonts to true ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a8cae46582356cc24ec3cd7ec47e692bc67a6a5"},(0,n.kt)("inlineCode",{parentName:"a"},"4a8cae4"))),(0,n.kt)("li",{parentName:"ul"},"chore(colours): changed back yellow 6 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87c9bbc0ec9a2a0f4bf8eeb03525d43ce6f502be"},(0,n.kt)("inlineCode",{parentName:"a"},"87c9bbc"))),(0,n.kt)("li",{parentName:"ul"},"chore(lint): lint ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9b0f1256a8b0a583ac7724a8d88259c615d7e0c7"},(0,n.kt)("inlineCode",{parentName:"a"},"9b0f125"))),(0,n.kt)("li",{parentName:"ul"},"chore(storybook): lint ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/29bc809ab2e9fa4207b8b067785e6b17e91db3b4"},(0,n.kt)("inlineCode",{parentName:"a"},"29bc809")))),(0,n.kt)("h4",{id:"-documentation-changes-2"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(colours): colours update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/161007e2480aa79517c4ca772364a12a0756f1af"},(0,n.kt)("inlineCode",{parentName:"a"},"161007e"))),(0,n.kt)("li",{parentName:"ul"},"docs(colours): accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee342aa6af3863d243222eaa89709be2ba61f988"},(0,n.kt)("inlineCode",{parentName:"a"},"ee342aa")))),(0,n.kt)("h4",{id:"\ufe0f-others-4"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"test(cypress): Use latest stable Volto for testing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/20516617ae045f48c37a7ac7ad05c3d1090339b3"},(0,n.kt)("inlineCode",{parentName:"a"},"2051661"))),(0,n.kt)("li",{parentName:"ul"},"Update What's new section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/caa4b5d93affa7b63a332eaed9e73ea161a508cf"},(0,n.kt)("inlineCode",{parentName:"a"},"caa4b5d"))),(0,n.kt)("li",{parentName:"ul"},"Prepare final release 1.0.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef4383d05b295cbbb377f877522b9f83cd0873ef"},(0,n.kt)("inlineCode",{parentName:"a"},"ef4383d"))),(0,n.kt)("li",{parentName:"ul"},"lint fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/599f5098904f607bd694dd5d2e642c8820f11b3c"},(0,n.kt)("inlineCode",{parentName:"a"},"599f509"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/80cd3df3534e46e52ba246256c3d990a52753bbd"},(0,n.kt)("inlineCode",{parentName:"a"},"80cd3df")))),(0,n.kt)("h3",{id:"100-beta5---2023-03-07"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-beta.4...1.0.0-beta.5"},"1.0.0-beta.5")," - 2023-03-07"),(0,n.kt)("h4",{id:"-enhancements-6"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(carousel): tweak size of carousel dots for better touch interaction ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e1fb8230806de2e157a9a5ea87e63765769565b4"},(0,n.kt)("inlineCode",{parentName:"a"},"e1fb823"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): removed min width and height from links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac33219fb77f23bb5148355551a7aad9f453d2e7"},(0,n.kt)("inlineCode",{parentName:"a"},"ac33219")))),(0,n.kt)("h4",{id:"-internal-changes-4"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(hiddenStructure): Add hiddenStructure utility to be used with h1 heading on frontpage - refs #158717 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/672cca2401003f56e5ea104f18103ea090e38fd7"},(0,n.kt)("inlineCode",{parentName:"a"},"672cca2")))),(0,n.kt)("h4",{id:"\ufe0f-others-5"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fixed less build failure due to changes in footer.less ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/190bc8cfa88191b45808f1e27c6e2737ee3d15b1"},(0,n.kt)("inlineCode",{parentName:"a"},"190bc8c"))),(0,n.kt)("li",{parentName:"ul"},"lazyload bg img on footer also ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ae07162ba1b27bff58fed70eaabc28c78c5f45a3"},(0,n.kt)("inlineCode",{parentName:"a"},"ae07162"))),(0,n.kt)("li",{parentName:"ul"},"lazyload footer images ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a0633c9ec4ccfb63a48eb4e4c4a63c90daac1a37"},(0,n.kt)("inlineCode",{parentName:"a"},"a0633c9"))),(0,n.kt)("li",{parentName:"ul"},"Increase performance - mobile friendly ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/07d86c8e77568f91d50b3a45248de9427140a295"},(0,n.kt)("inlineCode",{parentName:"a"},"07d86c8"))),(0,n.kt)("li",{parentName:"ul"},"better useOnScreen hook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c214b6b76443f81c795ce2f3aa457562ec088b30"},(0,n.kt)("inlineCode",{parentName:"a"},"c214b6b"))),(0,n.kt)("li",{parentName:"ul"},"role change for accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5e758e0a7fa8c56ba688d0a43de5890686f14ea3"},(0,n.kt)("inlineCode",{parentName:"a"},"5e758e0"))),(0,n.kt)("li",{parentName:"ul"},"minimum tap dimension for mobile ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a25e9a8ba8a8a0f24d287ed7513e549ae2caab0f"},(0,n.kt)("inlineCode",{parentName:"a"},"a25e9a8"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-beta.5 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e4417e121477511c350ae3fbe4e70aadb445ed86"},(0,n.kt)("inlineCode",{parentName:"a"},"e4417e1"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using eea-website-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b227cf8a8c44b9d91e9fda8a7999fb0a42bacdca"},(0,n.kt)("inlineCode",{parentName:"a"},"b227cf8"))),(0,n.kt)("li",{parentName:"ul"},"feature(mobile): increased performance by lazy loading footer images #303 from eea/increase_performance ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/80d1df1c459680331d486f9e8e6a95c9db0adbf6"},(0,n.kt)("inlineCode",{parentName:"a"},"80d1df1"))),(0,n.kt)("li",{parentName:"ul"},"useOnScreen default export ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e6cfdd4dcb814aad328f97be7af41af071ccba6"},(0,n.kt)("inlineCode",{parentName:"a"},"3e6cfdd"))),(0,n.kt)("li",{parentName:"ul"},"use aria-labels on dropdown ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/27e144315416ceace0f01def03b5b24640f5c7da"},(0,n.kt)("inlineCode",{parentName:"a"},"27e1443"))),(0,n.kt)("li",{parentName:"ul"},"prettier ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7f838470c1bcc4e2be115d514d92a1b686a5e9b"},(0,n.kt)("inlineCode",{parentName:"a"},"a7f8384")))),(0,n.kt)("h3",{id:"100-beta4---2023-03-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-beta.3...1.0.0-beta.4"},"1.0.0-beta.4")," - 2023-03-01"),(0,n.kt)("h4",{id:"-new-features-5"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(footer): Add footer description ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ad0f714556c5b8c2fd95a2caea5c3a1e82c75d1"},(0,n.kt)("inlineCode",{parentName:"a"},"2ad0f71"))),(0,n.kt)("li",{parentName:"ul"},"feat(footer): Add footer description #306 from eea/footer-description ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bf655d133dd75b217c34b3d4303ad450a59f2c51"},(0,n.kt)("inlineCode",{parentName:"a"},"bf655d1")))),(0,n.kt)("h4",{id:"-bug-fixes-6"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(footer): Don't show empty row if description is not present ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ca7f7d3247668ae8583b8cd629856aac82eb07d"},(0,n.kt)("inlineCode",{parentName:"a"},"2ca7f7d"))),(0,n.kt)("li",{parentName:"ul"},"fix(footer): Add class for children ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c50d15cd6ed46d78ef10d48fd851ed7c4b5ddea"},(0,n.kt)("inlineCode",{parentName:"a"},"3c50d15"))),(0,n.kt)("li",{parentName:"ul"},"fix(search): Fix search links color #307 from eea/search-accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a76f48bab3a7d3f6b748eaa85b33266401372e40"},(0,n.kt)("inlineCode",{parentName:"a"},"a76f48b"))),(0,n.kt)("li",{parentName:"ul"},"fix(search): Fix search links color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/69c42effc5bdc3d31f18de74d77a3b7cc0018dc5"},(0,n.kt)("inlineCode",{parentName:"a"},"69c42ef")))),(0,n.kt)("h4",{id:"-enhancements-7"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(carousel): tweak card width and padding for better arrow alignment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e184f70062d622e1ec53e8e1e2b012c080e62d77"},(0,n.kt)("inlineCode",{parentName:"a"},"e184f70"))),(0,n.kt)("li",{parentName:"ul"},"change(storybook): include footer description in storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e904aa0850e101d736e8d045e822d9a58b75ff6a"},(0,n.kt)("inlineCode",{parentName:"a"},"e904aa0")))),(0,n.kt)("h4",{id:"\ufe0f-others-6"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-beta.4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8c335c56c5a2a76ea87f9da318055770f904e649"},(0,n.kt)("inlineCode",{parentName:"a"},"8c335c5"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/38b03333066416915b056f8ac45da4de87ed7184"},(0,n.kt)("inlineCode",{parentName:"a"},"38b0333")))),(0,n.kt)("h3",{id:"100-beta3---2023-02-21"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-beta.2...1.0.0-beta.3"},"1.0.0-beta.3")," - 2023-02-21"),(0,n.kt)("h4",{id:"-new-features-6"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(accordion): storybook accessibility by using buttons for titles #297 from eea/accessibility-accordion ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/809d52b203ef40fab735006b3b8358d68682f7cf"},(0,n.kt)("inlineCode",{parentName:"a"},"809d52b")))),(0,n.kt)("h4",{id:"-bug-fixes-7"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(dropdown): remove close on blur so that we can navigate links using keyboard ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5442715e022b3eb2eeb709ff597f815947ac45bd"},(0,n.kt)("inlineCode",{parentName:"a"},"5442715")))),(0,n.kt)("h4",{id:"-enhancements-8"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(language): dropdown to use links for proper keyboard navigation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6a7de30d9d229443d6d2070d9649129e6d35badf"},(0,n.kt)("inlineCode",{parentName:"a"},"6a7de30"))),(0,n.kt)("li",{parentName:"ul"},"refactor(images): cleared unused/renamed images assets ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/821f5c1da5c1e2350818cd9b8b82bc0b1893370d"},(0,n.kt)("inlineCode",{parentName:"a"},"821f5c1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Accessibility): add box-shadow on focus-visible components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b1adcc315a89c7d3431e542e8d1b6ec479a346e2"},(0,n.kt)("inlineCode",{parentName:"a"},"b1adcc3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(images): remove unused docusaurus svgs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5ef14cdb1923d803feb673559d41b3064211653"},(0,n.kt)("inlineCode",{parentName:"a"},"c5ef14c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add escape key functionality, actions from div to button to have proper focus state ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8081aa4e3b77f8a3dc89aa358408d75e3dca5579"},(0,n.kt)("inlineCode",{parentName:"a"},"8081aa4"))),(0,n.kt)("li",{parentName:"ul"},"change(language): restore dropdown duplication in order to properly show and hide language dropdown ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb28888ff19bd9894b58403e674f69de42ad8d09"},(0,n.kt)("inlineCode",{parentName:"a"},"cb28888"))),(0,n.kt)("li",{parentName:"ul"},"change(search): to reflect changes from eea-website-theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2cc35e0da6e6eac1473724293fcf6cd6b0a914b5"},(0,n.kt)("inlineCode",{parentName:"a"},"2cc35e0"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update p with h3 heading tag for header ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca1477b554f56423d40a33d8ee788c3f3bd3e341"},(0,n.kt)("inlineCode",{parentName:"a"},"ca1477b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer images): removed unused/renamed ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/186de6b23906e05ec700c3db5180a4d7f7e5ed68"},(0,n.kt)("inlineCode",{parentName:"a"},"186de6b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Accordion): div titles to buttons, test in mobile mega menu accordions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/eaad4b479e37ebf5ac004cfc5759e0be603000a7"},(0,n.kt)("inlineCode",{parentName:"a"},"eaad4b4"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): cleanup decorative images ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fedc4d4dc156f9c1394fcedcebece4fb87dc70b6"},(0,n.kt)("inlineCode",{parentName:"a"},"fedc4d4"))),(0,n.kt)("li",{parentName:"ul"},"change(accessibility): style outline instead of box-shadow ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53209f3b28c9a1dd54a8a86ab418b8bc2a8e01b3"},(0,n.kt)("inlineCode",{parentName:"a"},"53209f3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Footer): update mobile header size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/01ab7f0d9abe688b3d96aaec018838e1abefec73"},(0,n.kt)("inlineCode",{parentName:"a"},"01ab7f0"))),(0,n.kt)("li",{parentName:"ul"},"change(header): set the logo class directly on the link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f8fba508f925d9e6b86720fcb2c7dcfffee4ab5e"},(0,n.kt)("inlineCode",{parentName:"a"},"f8fba50"))),(0,n.kt)("li",{parentName:"ul"},"refactor(images): clear docusaurus unused pngs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/db5c61124182e3030f753f6baa294fbdecaa3798"},(0,n.kt)("inlineCode",{parentName:"a"},"db5c611"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header-images): removed unused ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8250d94421d9d1ee13144e71bc0938af2b7309f5"},(0,n.kt)("inlineCode",{parentName:"a"},"8250d94"))),(0,n.kt)("li",{parentName:"ul"},"change(language): hide language dropdown by default ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cc6064f72dcb4dbf96e9b05205cc796775d75205"},(0,n.kt)("inlineCode",{parentName:"a"},"cc6064f"))),(0,n.kt)("li",{parentName:"ul"},"change(header): top dropdown menu keyboard navigation #293 from eea/accessibility-megamenu-searchbox ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1e6fa658e52b9d5e6cc38f065b5707b592005241"},(0,n.kt)("inlineCode",{parentName:"a"},"1e6fa65"))),(0,n.kt)("li",{parentName:"ul"},"change(button): set focus styling for buttons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/33ebfcacb014fca365ae58079bfa5429d9007e54"},(0,n.kt)("inlineCode",{parentName:"a"},"33ebfca"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): Avoid devtools warning in FooterActions #304 from eea/avoid_warning ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d774824c5d3d0998b3440ac83152428cfa821087"},(0,n.kt)("inlineCode",{parentName:"a"},"d774824"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): Accessibility update p with h3 heading tag for theme sites title #302 from eea/footer-accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5bf70de97aee216a0b88f5843a290c6bcb5da6f2"},(0,n.kt)("inlineCode",{parentName:"a"},"5bf70de"))),(0,n.kt)("li",{parentName:"ul"},"change(documentation): Rename all image files to follow the agreed convention #301 from eea/refactor-image-filenames ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cfe44ef79943af9b9179df1b8ec5f8c743e8bb39"},(0,n.kt)("inlineCode",{parentName:"a"},"cfe44ef")))),(0,n.kt)("h4",{id:"-internal-changes-5"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(header): react syntax fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3add1271c785a92bea0ef925d7bc562cef1e0d92"},(0,n.kt)("inlineCode",{parentName:"a"},"3add127"))),(0,n.kt)("li",{parentName:"ul"},"chore(docusaurus): ignore website/.yarn ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0b33ffd1dda61b126e3cc5ff48888124d6aee41b"},(0,n.kt)("inlineCode",{parentName:"a"},"0b33ffd")))),(0,n.kt)("h4",{id:"-documentation-changes-3"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(guidelines): add image name convention ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/290747c8df6919199577bc7fce6a0e337cb57853"},(0,n.kt)("inlineCode",{parentName:"a"},"290747c")))),(0,n.kt)("h4",{id:"\ufe0f-others-7"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Avoid warning in FooterActions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0fe73d70e44e32be73049f3b5cf826de42115942"},(0,n.kt)("inlineCode",{parentName:"a"},"0fe73d7"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-beta.3 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/386c9032d39317b0bb95191bd59e3b7a99bded69"},(0,n.kt)("inlineCode",{parentName:"a"},"386c903")))),(0,n.kt)("h3",{id:"100-beta2---2023-02-13"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-beta.1...1.0.0-beta.2"},"1.0.0-beta.2")," - 2023-02-13"),(0,n.kt)("h4",{id:"-bug-fixes-8"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(footer): action and copyright #300 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/579f3e436e9608b38a2407a16c070345462bfccc"},(0,n.kt)("inlineCode",{parentName:"a"},"579f3e4"))),(0,n.kt)("li",{parentName:"ul"},"fix(footer): action or copyright links are simple a tags for external link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9af5070187ec975e58387f133afedcf1bbc47a50"},(0,n.kt)("inlineCode",{parentName:"a"},"9af5070"))),(0,n.kt)("li",{parentName:"ul"},"fix(accessibility): added navigation and footer id's for skip link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48354b908e7d1a87b4e1a965d225e8f1b3e0ac59"},(0,n.kt)("inlineCode",{parentName:"a"},"48354b9")))),(0,n.kt)("h4",{id:"-enhancements-9"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(footer): typos and modified footer links to be center aligned ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac23f046bcac06525985dff7520bb2766dec44ec"},(0,n.kt)("inlineCode",{parentName:"a"},"ac23f04"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): added gap for actions and copyright ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d32ddd3c28a48c6c2fb73dea373bb5873b6f76b"},(0,n.kt)("inlineCode",{parentName:"a"},"7d32ddd"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): modified footer gap ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8a820ac90c7d6664e4d4655c2c06edfa976c64e"},(0,n.kt)("inlineCode",{parentName:"a"},"b8a820a"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): removed extra text and date from copyright section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af47bbec298678fece6f879fbc18fe2e01ab0894"},(0,n.kt)("inlineCode",{parentName:"a"},"af47bbe"))),(0,n.kt)("li",{parentName:"ul"},"change(navigation): raise z-index of go to top link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/485ca7291da7a156b6b580c42e46d4f3602211bb"},(0,n.kt)("inlineCode",{parentName:"a"},"485ca72")))),(0,n.kt)("h4",{id:"-internal-changes-6"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(docs): Update eea.hbs template to beta - refs #158717 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/196538ed7bb9dab36a0efb4cef84e96dd3038ff8"},(0,n.kt)("inlineCode",{parentName:"a"},"196538e")))),(0,n.kt)("h4",{id:"\ufe0f-others-8"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change version to beta 2 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cbb07981454b28de840561eca281888e8bc29f9e"},(0,n.kt)("inlineCode",{parentName:"a"},"cbb0798"))),(0,n.kt)("li",{parentName:"ul"},"Beta release ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ad51b3c2bbb75f19af14fa56afdbddf57b6c95e"},(0,n.kt)("inlineCode",{parentName:"a"},"4ad51b3")))),(0,n.kt)("h3",{id:"100-beta1---2023-02-09"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.15...1.0.0-beta.1"},"1.0.0-beta.1")," - 2023-02-09"),(0,n.kt)("h4",{id:"-new-features-7"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(search): Add search suggestions style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6b2b77bbaba11541606ae2bc1f4e8ffc823f470d"},(0,n.kt)("inlineCode",{parentName:"a"},"6b2b77b"))),(0,n.kt)("li",{parentName:"ul"},"feat(search): Add search suggestions style #296 from eea/search-suggestions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3b0c956f569ebdc8400b88249c45067a1f881264"},(0,n.kt)("inlineCode",{parentName:"a"},"3b0c956")))),(0,n.kt)("h4",{id:"-enhancements-10"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(search): Add proper margin for search popup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/190c9f5be570215586086f42aebc7e36d6a26ea2"},(0,n.kt)("inlineCode",{parentName:"a"},"190c9f5")))),(0,n.kt)("h4",{id:"\ufe0f-others-9"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Extra bottom padding for header menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4f38c7a96d93fbcd47de4ec60176de2a667c5643"},(0,n.kt)("inlineCode",{parentName:"a"},"4f38c7a"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-beta.1 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4384ae28597c725f66ab0f1361ffd5167ee5e3a1"},(0,n.kt)("inlineCode",{parentName:"a"},"4384ae2"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c2ee90c1754f17a304897839adf482bc2a111212"},(0,n.kt)("inlineCode",{parentName:"a"},"c2ee90c")))),(0,n.kt)("h3",{id:"100-alpha15---2023-02-08"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.14...1.0.0-alpha.15"},"1.0.0-alpha.15")," - 2023-02-08"),(0,n.kt)("h4",{id:"-new-features-8"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(Card): add teaser card grid story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53cac0b0d1c40ad6ad8c9dc91c5d24bfb160f98e"},(0,n.kt)("inlineCode",{parentName:"a"},"53cac0b"))),(0,n.kt)("li",{parentName:"ul"},"feat(utilities): Complete list of text-align utilities - refs #160747 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/224fab602184b8974f588c91a7412e3d03e4e2f7"},(0,n.kt)("inlineCode",{parentName:"a"},"224fab6"))),(0,n.kt)("li",{parentName:"ul"},"feat(small): CSS for small HTML tag - refs #160747 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ad3c0adec4efa7cead69153d399c6452131c94cc"},(0,n.kt)("inlineCode",{parentName:"a"},"ad3c0ad"))),(0,n.kt)("li",{parentName:"ul"},"feat(fw-light): Add font weight light utility - refs #160747 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c44cf57db5845fbb9c07233aeedab79e1438f80f"},(0,n.kt)("inlineCode",{parentName:"a"},"c44cf57")))),(0,n.kt)("h4",{id:"-bug-fixes-9"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(card): teaser card dimensions on tablet size #290 from eea/teaser-card-grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/013fdf5cad347aee14bdc51553dbd95d972a7c66"},(0,n.kt)("inlineCode",{parentName:"a"},"013fdf5")))),(0,n.kt)("h4",{id:"-enhancements-11"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(card): added extra content for teaser card story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/30690ae6c499682853cb19db10b0cdc13c6f9508"},(0,n.kt)("inlineCode",{parentName:"a"},"30690ae"))),(0,n.kt)("li",{parentName:"ul"},"refactor(style-menu): add text-color to paragraphs styles #291 from eea/stylemenu-theme-colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2d783075b8089184e50b1763226af0d60ed11786"},(0,n.kt)("inlineCode",{parentName:"a"},"2d78307"))),(0,n.kt)("li",{parentName:"ul"},"change(header): Small fix in search popup #292 from eea/search-popup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/86c130539455b9a00b4b088b1871a98b9756df79"},(0,n.kt)("inlineCode",{parentName:"a"},"86c1305"))),(0,n.kt)("li",{parentName:"ul"},"refactor(style-menu): add text-color to paragraphs styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3446bc2704603bbfead7ff6c72d4e3a1ce81c7d4"},(0,n.kt)("inlineCode",{parentName:"a"},"3446bc2"))),(0,n.kt)("li",{parentName:"ul"},"change(color): darkCyan is now replaced everywhere by the new green ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef3791de6e2ea23487791c717eefc575e21fd283"},(0,n.kt)("inlineCode",{parentName:"a"},"ef3791d"))),(0,n.kt)("li",{parentName:"ul"},"change(header): Small fix in search popup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3d622ea99df5a1f1088f70998e38fd5bf43997cf"},(0,n.kt)("inlineCode",{parentName:"a"},"3d622ea")))),(0,n.kt)("h4",{id:"\ufe0f-others-10"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Release alpha 15 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3b72b29aaf9b3e1bfb7015808aafbd73a7167895"},(0,n.kt)("inlineCode",{parentName:"a"},"3b72b29")))),(0,n.kt)("h3",{id:"100-alpha14---2023-01-30"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.13.1...1.0.0-alpha.14"},"1.0.0-alpha.14")," - 2023-01-30"),(0,n.kt)("h4",{id:"-enhancements-12"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(mobile menu): integrate a-z topic with menu rendering logic #287 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/05d4c04603e6572cd6f9b255faa03c4636d8efdb"},(0,n.kt)("inlineCode",{parentName:"a"},"05d4c04"))),(0,n.kt)("li",{parentName:"ul"},"change(mobile menu): integrate a-z topic with menu rendering logic ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/246d3d839b773e2f6e1fff7fed5f9aa7a4968daa"},(0,n.kt)("inlineCode",{parentName:"a"},"246d3d8")))),(0,n.kt)("h4",{id:"\ufe0f-others-11"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"bump release to alpha 14 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/92f01975a809553ed122824c8407c74da9132c23"},(0,n.kt)("inlineCode",{parentName:"a"},"92f0197"))),(0,n.kt)("li",{parentName:"ul"},"link fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e1c12a132a1a99d773af359ebce071fb37c7e661"},(0,n.kt)("inlineCode",{parentName:"a"},"e1c12a1")))),(0,n.kt)("h3",{id:"100-alpha131---2023-01-30"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.13...1.0.0-alpha.13.1"},"1.0.0-alpha.13.1")," - 2023-01-30"),(0,n.kt)("h4",{id:"-enhancements-13"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(mobile menu): hardcode a-z topics to '/en/topics-in-depth' #286 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6436224e1922fb5d4b4053c874cebe5c57b2a6b9"},(0,n.kt)("inlineCode",{parentName:"a"},"6436224"))),(0,n.kt)("li",{parentName:"ul"},"change(mobile menu): hardcode a-z topics to '/en/topics-in-depth' ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5235b52047a80a8b626aa5ef3ef304c4d9a82003"},(0,n.kt)("inlineCode",{parentName:"a"},"5235b52")))),(0,n.kt)("h4",{id:"\ufe0f-others-12"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change release to 13.1 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70aa5648e7d9e14796445323b6ebaf7733cc7fd8"},(0,n.kt)("inlineCode",{parentName:"a"},"70aa564")))),(0,n.kt)("h3",{id:"100-alpha13---2023-01-27"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.12...1.0.0-alpha.13"},"1.0.0-alpha.13")," - 2023-01-27"),(0,n.kt)("h4",{id:"-new-features-9"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(utilities): added has--bg--top center and bottom utility classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/051e6d7c33aca7947802ddaa9fe68ac41ed7fe11"},(0,n.kt)("inlineCode",{parentName:"a"},"051e6d7")))),(0,n.kt)("h4",{id:"-bug-fixes-10"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(header): update green color used in page header #284 from eea/fix-banner-background ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/29d54db06487d18a367202725e525ac26e5b7c58"},(0,n.kt)("inlineCode",{parentName:"a"},"29d54db")))),(0,n.kt)("h4",{id:"-enhancements-14"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(site): added fixes from customVolto.css to design package ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51ba9b5df0186bdf075d803dea6032bac52e540f"},(0,n.kt)("inlineCode",{parentName:"a"},"51ba9b5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner): update banner background green color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fd4a552d9ff7a2973ebd6d18b6fbfd9bba5d98c6"},(0,n.kt)("inlineCode",{parentName:"a"},"fd4a552"))),(0,n.kt)("li",{parentName:"ul"},"change(mobile menu): changed link for a-z topics to point to in depth ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/721bf237d23d2a8e47fc2132912646c4ce182c9d"},(0,n.kt)("inlineCode",{parentName:"a"},"721bf23")))),(0,n.kt)("h4",{id:"\ufe0f-others-13"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"1.0.0-alpha.13 release #285 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c96694005e2d4160876f6a900db13940d42266d5"},(0,n.kt)("inlineCode",{parentName:"a"},"c966940"))),(0,n.kt)("li",{parentName:"ul"},"bump next version to alpha 13 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/897e9069062282f1b5cd8d86a02b8e54c40a4690"},(0,n.kt)("inlineCode",{parentName:"a"},"897e906"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5780dc7abeb24da5e77b043a34593ff7a44f350d"},(0,n.kt)("inlineCode",{parentName:"a"},"5780dc7")))),(0,n.kt)("h3",{id:"100-alpha12---2023-01-24"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.11...1.0.0-alpha.12"},"1.0.0-alpha.12")," - 2023-01-24"),(0,n.kt)("h4",{id:"-new-features-10"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(card, colors): visited color change and title on image option for cards #283 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e638ee6b77885fd5989179aa9e6532e46e475247"},(0,n.kt)("inlineCode",{parentName:"a"},"e638ee6")))),(0,n.kt)("h4",{id:"-bug-fixes-11"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(mobile menu): sub links when an accordion section is active ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bb3be81416340ad0e3e992cd4e75642fc50f8ad3"},(0,n.kt)("inlineCode",{parentName:"a"},"bb3be81")))),(0,n.kt)("h4",{id:"-enhancements-15"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(Card): create card template for stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2fa77f3f93935dd01cd5e3d77437fe8dc03721da"},(0,n.kt)("inlineCode",{parentName:"a"},"2fa77f3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Card): add image with title css ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e6e63e2362a27b0bbf4b8dd968f11a0dc87da2a"},(0,n.kt)("inlineCode",{parentName:"a"},"6e6e63e"))),(0,n.kt)("li",{parentName:"ul"},"change(card): implement title on image within image section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff6cc600978355e04dde704d014d2cbe27df1298"},(0,n.kt)("inlineCode",{parentName:"a"},"ff6cc60"))),(0,n.kt)("li",{parentName:"ul"},"change(card): added image card section, tweaked mobile heading size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0f879e15d22ae066f020d8188ef3e355c27d016c"},(0,n.kt)("inlineCode",{parentName:"a"},"0f879e1"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): moved image gradient overlay to a mixin.less file ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8b4928a87bfe5fae6f64c93d7c8f1f7a3045816c"},(0,n.kt)("inlineCode",{parentName:"a"},"8b4928a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): Update titles value and size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c35ad5c76caa00556f8a501d2e7d516464790dc4"},(0,n.kt)("inlineCode",{parentName:"a"},"c35ad5c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): applied image naming convention ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee7bc290084e198f9f94e40fbf44c6d9cb19d1ba"},(0,n.kt)("inlineCode",{parentName:"a"},"ee7bc29"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): added image for all storybook card examples ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3f194130bb6fb7b9ab04a7e1305f26fa135c23d2"},(0,n.kt)("inlineCode",{parentName:"a"},"3f19413"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): restored label value of metadata field when type isn't date ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/571a4f27fe73d0465b6482f70dd70b2dc47dffe8"},(0,n.kt)("inlineCode",{parentName:"a"},"571a4f2"))),(0,n.kt)("li",{parentName:"ul"},"change(card): title padding value for a more balance look ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/74b65563d973eb9c6afc534935e253f2705fe9ee"},(0,n.kt)("inlineCode",{parentName:"a"},"74b6556"))),(0,n.kt)("li",{parentName:"ul"},"change(card): removed uppercase transform from title on image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2948ae16f748911929910ac53d1e0acf96952317"},(0,n.kt)("inlineCode",{parentName:"a"},"2948ae1"))),(0,n.kt)("li",{parentName:"ul"},"change(colors, Docusaurus): Visited link colour change and thematic logo replacement #278 from eea/refactor-visited-link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f82d9781cc3b34443f181565c2ec1892d534f8e2"},(0,n.kt)("inlineCode",{parentName:"a"},"f82d978"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): visited link variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b209b2f7703641926c6d4b1f7162eef39b2a1ad8"},(0,n.kt)("inlineCode",{parentName:"a"},"b209b2f")))),(0,n.kt)("h4",{id:"-documentation-changes-4"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(colors): visited link update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ece77fec130de1d9d8014d40e7da975bf57061ee"},(0,n.kt)("inlineCode",{parentName:"a"},"ece77fe")))),(0,n.kt)("h4",{id:"\ufe0f-others-14"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix typos in footer gradient variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/40066405d97af838e986370101371a8162029e02"},(0,n.kt)("inlineCode",{parentName:"a"},"4006640"))),(0,n.kt)("li",{parentName:"ul"},"change version to alpha 12 instead of 1 final ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32250253f5d7fe9f01126136ad86b8a4f2f5c700"},(0,n.kt)("inlineCode",{parentName:"a"},"3225025"))),(0,n.kt)("li",{parentName:"ul"},"feature(card): new card variation with title on top of image #267 from eea/title-on-image-card ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2c0ca95700bb162bc1273c83f2fc4f591de8dcf0"},(0,n.kt)("inlineCode",{parentName:"a"},"2c0ca95"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/477d997513ef5152ab98e080ad07f927b5869705"},(0,n.kt)("inlineCode",{parentName:"a"},"477d997")))),(0,n.kt)("h3",{id:"100-alpha11---2023-01-17"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.10...1.0.0-alpha.11"},"1.0.0-alpha.11")," - 2023-01-17"),(0,n.kt)("h4",{id:"-new-features-11"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(docusaurus): Header and footer elements section #277 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0df271c4c79bd8a24750cfe44d69f32cb04a1b63"},(0,n.kt)("inlineCode",{parentName:"a"},"0df271c")))),(0,n.kt)("h4",{id:"-bug-fixes-12"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(banner): storybook date input and simplified gradient opacity ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7674d767bb770342828d6bea6953ce45b823943f"},(0,n.kt)("inlineCode",{parentName:"a"},"7674d76"))),(0,n.kt)("li",{parentName:"ul"},"fix(banner): re-added title class on banner title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d157994934c3da9af4e3dd37844f910bddf8377"},(0,n.kt)("inlineCode",{parentName:"a"},"6d15799")))),(0,n.kt)("h4",{id:"-enhancements-16"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(banner): sync storybook and Volto component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c9087cc8edc3fb27e0b96b509354861ec306f22a"},(0,n.kt)("inlineCode",{parentName:"a"},"c9087cc"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): removed margin from title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/17e592c4f3fd16a78069af50574e2ac608166a0f"},(0,n.kt)("inlineCode",{parentName:"a"},"17e592c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): sync storybook and Volto component #275 from eea/sync-page-banner-theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4331fb4a6d5744e7d7d6a001bca91265a22587fd"},(0,n.kt)("inlineCode",{parentName:"a"},"4331fb4")))),(0,n.kt)("h4",{id:"-documentation-changes-5"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(footer): updates on header elements ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b41c550475dc5a2eefcad5d75439601d079613e2"},(0,n.kt)("inlineCode",{parentName:"a"},"b41c550"))),(0,n.kt)("li",{parentName:"ul"},"docs(footer): add elements anatomy ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d9f0872f93a6f7572f798b2c001d3af00eb282e3"},(0,n.kt)("inlineCode",{parentName:"a"},"d9f0872")))),(0,n.kt)("h4",{id:"\ufe0f-others-15"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"add(banner): banner title css ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d0032474d2b57eb63a4b50a882ced2ee743a48e6"},(0,n.kt)("inlineCode",{parentName:"a"},"d003247"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-alpha.11 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/07e8f858b0bdeaa6a348c0bfc2b785f26017e1ea"},(0,n.kt)("inlineCode",{parentName:"a"},"07e8f85"))),(0,n.kt)("li",{parentName:"ul"},"renamed image elements as requested in review ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8541fb6739d3c935ed8d44a220114546b2aef682"},(0,n.kt)("inlineCode",{parentName:"a"},"8541fb6"))),(0,n.kt)("li",{parentName:"ul"},"remove(banner-gradiant): image gradiant in favour of text ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1b58520490be5e17ea4ce6fc98329d467dad3960"},(0,n.kt)("inlineCode",{parentName:"a"},"1b58520"))),(0,n.kt)("li",{parentName:"ul"},"update(gradient): use 8deg angle ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6fd597d8d7a83fdf8a27939e4c69dfc3975b6a81"},(0,n.kt)("inlineCode",{parentName:"a"},"6fd597d"))),(0,n.kt)("li",{parentName:"ul"},"update(gradiant): make it 0deg ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1bb2696375eef233b509e27d9d464b8343421430"},(0,n.kt)("inlineCode",{parentName:"a"},"1bb2696"))),(0,n.kt)("li",{parentName:"ul"},"remove(comment) referencing old verison of title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4226d42e34b119e057cf4e9878b6a99172cb976a"},(0,n.kt)("inlineCode",{parentName:"a"},"4226d42")))),(0,n.kt)("h3",{id:"100-alpha10---2023-01-13"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.9...1.0.0-alpha.10"},"1.0.0-alpha.10")," - 2023-01-13"),(0,n.kt)("h4",{id:"-bug-fixes-13"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(subsite): Fix logo size on subsite section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/65fff54503a9ace573dc7198f6bedb372e65d211"},(0,n.kt)("inlineCode",{parentName:"a"},"65fff54"))),(0,n.kt)("li",{parentName:"ul"},"fix(subsite): Fix logo size on subsite section #279 from eea/subsite-fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f6cf94811dbebc2081c0ca812570a72dd977b06"},(0,n.kt)("inlineCode",{parentName:"a"},"8f6cf94"))),(0,n.kt)("li",{parentName:"ul"},"fix(mega-menu): show sub grid only if there are children ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ddfbd82aab2be723ae230d703f72a8cd489f17d8"},(0,n.kt)("inlineCode",{parentName:"a"},"ddfbd82")))),(0,n.kt)("h4",{id:"\ufe0f-others-16"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Add variable definitions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/293fe65e2f24e6290e1286229169a77f9be4750e"},(0,n.kt)("inlineCode",{parentName:"a"},"293fe65"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-alpha.10 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7014d080ce114bd0bc039abeecbd7229333b0971"},(0,n.kt)("inlineCode",{parentName:"a"},"7014d08"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using advisory-board-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef58a6f5ad8deea26b1395a86778fe1159b7617b"},(0,n.kt)("inlineCode",{parentName:"a"},"ef58a6f"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/31d461662b9184a7bbe190e86f3c47fab39229fe"},(0,n.kt)("inlineCode",{parentName:"a"},"31d4616")))),(0,n.kt)("h3",{id:"100-alpha9---2022-12-28"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.8...1.0.0-alpha.9"},"1.0.0-alpha.9")," - 2022-12-28"),(0,n.kt)("h4",{id:"-enhancements-17"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(contextnav): Default title is text, custom title is link #273 from eea/context-nav-link-title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef7bdb7c40cd12c3d7e059074aa5797b8cb3378c"},(0,n.kt)("inlineCode",{parentName:"a"},"ef7bdb7")))),(0,n.kt)("h4",{id:"\ufe0f-others-17"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Show document and folder content-type in Navigation listing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8471db3b3d555e8602f1076d0f96a2ba38a12247"},(0,n.kt)("inlineCode",{parentName:"a"},"8471db3"))),(0,n.kt)("li",{parentName:"ul"},"Default title is text, custom title is link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1ae95b05b67423121566448c6b0cededca4b2b1d"},(0,n.kt)("inlineCode",{parentName:"a"},"1ae95b0"))),(0,n.kt)("li",{parentName:"ul"},"Context nav title link to # ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a27a6b78bcda0eb6037f73f1d36b06e00e3ffc52"},(0,n.kt)("inlineCode",{parentName:"a"},"a27a6b7")))),(0,n.kt)("h3",{id:"100-alpha8---2022-12-23"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.7...1.0.0-alpha.8"},"1.0.0-alpha.8")," - 2022-12-23"),(0,n.kt)("h4",{id:"-new-features-12"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(copyright): Align copyright options with Volto integration - refs #158210 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6bac7f6a9ad969af4be1c8c08a18a1144d5bad63"},(0,n.kt)("inlineCode",{parentName:"a"},"6bac7f6")))),(0,n.kt)("h4",{id:"-enhancements-18"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(logo): import theme site logos to the story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2f29136ca457f2419ca25a5292a036b2cd0fc402"},(0,n.kt)("inlineCode",{parentName:"a"},"2f29136"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logo): update logo and mega search gradient ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e11f44d59334fc02e3833a133b20e7b2240a2022"},(0,n.kt)("inlineCode",{parentName:"a"},"e11f44d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logos): convert logo names to lowercase ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/07b822864490b4cc63bef94f3306466ba5933e16"},(0,n.kt)("inlineCode",{parentName:"a"},"07b8228"))),(0,n.kt)("li",{parentName:"ul"},"change(item): use default logic of setting align class on content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6b5b47c10ce5a6d3710bedd492aa3d362d62d225"},(0,n.kt)("inlineCode",{parentName:"a"},"6b5b47c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logo): update logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/170efe5bfc7fd4988f4a4d4aac18ace32c360cd6"},(0,n.kt)("inlineCode",{parentName:"a"},"170efe5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logos): convert storybook logo names to lowercase ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4b24ec8796f8fffd87158a55f4ac19624ebe04c"},(0,n.kt)("inlineCode",{parentName:"a"},"c4b24ec"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logo): add eea roboto font logo variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/de1224a97568c0b48b509c65170a6080d8a058d4"},(0,n.kt)("inlineCode",{parentName:"a"},"de1224a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logo): add container and segment to logo story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/61eff16fcd080194fe1187656d67ef73a7dd4d6c"},(0,n.kt)("inlineCode",{parentName:"a"},"61eff16"))),(0,n.kt)("li",{parentName:"ul"},"change(item): removed requirement for aligned classes to be on content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/30c0d5d2de7ac05172cfb726b60a8bd763de7b31"},(0,n.kt)("inlineCode",{parentName:"a"},"30c0d5d"))),(0,n.kt)("li",{parentName:"ul"},"change(logos): cleanup eea logo reference to only eea-logo and eea-logo-white.svg ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2796e054a21a9025036c8b2882afe23a6984cd37"},(0,n.kt)("inlineCode",{parentName:"a"},"2796e05")))),(0,n.kt)("h4",{id:"-internal-changes-7"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(npmignore): Reduce npmjs package size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/164c8a5ad0f7241eb8e30c53eccfdff9cec1fb93"},(0,n.kt)("inlineCode",{parentName:"a"},"164c8a5"))),(0,n.kt)("li",{parentName:"ul"},"chore(npmignore): Reduce npmjs package size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ade9d5ba3411efc47cdd3b461fd60b2b7389f9be"},(0,n.kt)("inlineCode",{parentName:"a"},"ade9d5b"))),(0,n.kt)("li",{parentName:"ul"},"chore(docs): renamed logo mdx to md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/52e9d46bb2decabdc935eeee84dacc3e063e3616"},(0,n.kt)("inlineCode",{parentName:"a"},"52e9d46")))),(0,n.kt)("h4",{id:"-documentation-changes-6"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(logos): svgs without classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/28a58336ac57deb3eec7287b6fbf5cd58ada8a7e"},(0,n.kt)("inlineCode",{parentName:"a"},"28a5833"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): add dark mode logos ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ccc1609643cff5f851942ab95198d44252ddb22e"},(0,n.kt)("inlineCode",{parentName:"a"},"ccc1609"))),(0,n.kt)("li",{parentName:"ul"},"docs(logo): update eea logos and add logo wrapper ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91cdd6636dfb102e4712177ad5fa7e952eb6ea45"},(0,n.kt)("inlineCode",{parentName:"a"},"91cdd66"))),(0,n.kt)("li",{parentName:"ul"},"docs(logo): update logos on docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/760e1012892ab28b25e8d9b0de50cfa0ba07addf"},(0,n.kt)("inlineCode",{parentName:"a"},"760e101"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): updated svgs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dc224e1dbcf46a29b0639afde694d44221affe27"},(0,n.kt)("inlineCode",{parentName:"a"},"dc224e1"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): add thematic logos ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5a21a3076e506e6bd7f82fa97697f81825e87255"},(0,n.kt)("inlineCode",{parentName:"a"},"5a21a30"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): add zipped svgs for download ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5855bf83b471a9849ee71370d7eee4f6a1d12a44"},(0,n.kt)("inlineCode",{parentName:"a"},"5855bf8"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): wisef logo update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f90b59d03c1c4eaa760dd981e082f237c09e96f"},(0,n.kt)("inlineCode",{parentName:"a"},"8f90b59"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): move to static, add download ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8c1fd5f9a64bd8fb976687fe5ed96bc515b95393"},(0,n.kt)("inlineCode",{parentName:"a"},"8c1fd5f"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): improve eea logo visibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/82188abb99aa080d7bea15975497e03c653d311c"},(0,n.kt)("inlineCode",{parentName:"a"},"82188ab"))),(0,n.kt)("li",{parentName:"ul"},"docs(logos): change eea logo to svg ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f57b846ca9d635f5af4d1adeee280a5adcaf7b5f"},(0,n.kt)("inlineCode",{parentName:"a"},"f57b846")))),(0,n.kt)("h4",{id:"\ufe0f-others-18"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"logo update or docusaurus thematic logo listing #274 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dde90beb68ac129e476ece22e7ced4640786f094"},(0,n.kt)("inlineCode",{parentName:"a"},"dde90be"))),(0,n.kt)("li",{parentName:"ul"},"(feat): Add ability to disable the language select from website top menu - refs #158616 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/411c8e4afaf0b2b9edfdeeecdca22aa4cc41f329"},(0,n.kt)("inlineCode",{parentName:"a"},"411c8e4"))),(0,n.kt)("li",{parentName:"ul"},"Proof reading page header section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/230239e1b22734fb8606656985bc5e513731e244"},(0,n.kt)("inlineCode",{parentName:"a"},"230239e"))),(0,n.kt)("li",{parentName:"ul"},"bump package version ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4628bed134abc76e38a243d4e98143e19cef989"},(0,n.kt)("inlineCode",{parentName:"a"},"b4628be"))),(0,n.kt)("li",{parentName:"ul"},"feature(docusaurus, storybook): logos selection for sites plus inverted options #253 from eea/doc-logo-page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dbfc90d035dc40e9d4054347f00fde4de486d63d"},(0,n.kt)("inlineCode",{parentName:"a"},"dbfc90d"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using advisory-board-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4769e987d525f5dcafac8e6cf8a89fd8111667d"},(0,n.kt)("inlineCode",{parentName:"a"},"c4769e9"))),(0,n.kt)("li",{parentName:"ul"},"test(Jenkins): Run tests and cypress with latest canary @plone/volto ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/92feea09796c9ef0530f65fa1d34139905133215"},(0,n.kt)("inlineCode",{parentName:"a"},"92feea0")))),(0,n.kt)("h3",{id:"100-alpha7---2022-12-16"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.6...1.0.0-alpha.7"},"1.0.0-alpha.7")," - 2022-12-16"),(0,n.kt)("h4",{id:"-new-features-13"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(item): normalized size for image or icon items #258 from eea/refactor-items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/945170f1503be68aa3fc1bd950a97eeebfd81037"},(0,n.kt)("inlineCode",{parentName:"a"},"945170f")))),(0,n.kt)("h4",{id:"-bug-fixes-14"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(card): rounded after removal of has--rounded--true style class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4727afdecf3d25e3e5bc98d472b976d60154183"},(0,n.kt)("inlineCode",{parentName:"a"},"d4727af"))),(0,n.kt)("li",{parentName:"ul"},"fix(item): removed margin set for description which pushed the text from icon ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d9d40310fcfb1bd214bd901b79dcbac41e9a8518"},(0,n.kt)("inlineCode",{parentName:"a"},"d9d4031"))),(0,n.kt)("li",{parentName:"ul"},"fix(project): Proper paths if volto-eea-design-system package is not installed, but in development #270 from eea/correct_paths ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0f8ee8d770f1b26d4315be8f615d58a61acbafc8"},(0,n.kt)("inlineCode",{parentName:"a"},"0f8ee8d")))),(0,n.kt)("h4",{id:"-enhancements-19"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(item): update icon variations and paddings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6a407b3e7f743eb7b73247bcc5d489685d567bc6"},(0,n.kt)("inlineCode",{parentName:"a"},"6a407b3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): update spacing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2fd91c4aa1a76dd2f7099d3f24f94067e95e06a1"},(0,n.kt)("inlineCode",{parentName:"a"},"2fd91c4"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): initial values for new sizes & add description class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3546296f0cacb96411c8c67b98e9763e2b843b05"},(0,n.kt)("inlineCode",{parentName:"a"},"3546296"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): add icon and more size options ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1120bb62d9ab908c5c97a4871a66e3c08c5c7ece"},(0,n.kt)("inlineCode",{parentName:"a"},"1120bb6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): update image and icon sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8025735121aaa0024a5783afbde0f6be3715618"},(0,n.kt)("inlineCode",{parentName:"a"},"b802573"))),(0,n.kt)("li",{parentName:"ul"},"change(item): set same height as width on item images ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/69cbd23ca53dd68ae9f7c00a69ed2d8820746305"},(0,n.kt)("inlineCode",{parentName:"a"},"69cbd23"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): update item part 2 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9812ae2e41ac86cfd4c56e13af8af570b752966f"},(0,n.kt)("inlineCode",{parentName:"a"},"9812ae2"))),(0,n.kt)("li",{parentName:"ul"},"change(item): rename large to big class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24ff1275b9a0556b85ab86757bc0c84f50357e7d"},(0,n.kt)("inlineCode",{parentName:"a"},"24ff127"))),(0,n.kt)("li",{parentName:"ul"},"change(item): added tiny size that outputs 24px icon sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ea96363a957f9033cb5bfe2d7fd311e92377493"},(0,n.kt)("inlineCode",{parentName:"a"},"2ea9636"))),(0,n.kt)("li",{parentName:"ul"},"change(image): added preview image size default to 400px ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a0aa867e932d1b3c0bf449553726d6feb645853e"},(0,n.kt)("inlineCode",{parentName:"a"},"a0aa867"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): update operator for condition controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/149ccb2f1e498c27e5550214cdee25eb808ab27e"},(0,n.kt)("inlineCode",{parentName:"a"},"149ccb2")))),(0,n.kt)("h4",{id:"\ufe0f-others-19"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Proper paths if the package is not installed, but in development ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7a2655f7cf9d3c687f172eefcf2b4cff4b12f832"},(0,n.kt)("inlineCode",{parentName:"a"},"7a2655f"))),(0,n.kt)("li",{parentName:"ul"},"Update .project.eslintrc.js ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a2fd3f23473325976c2b146e066eeb538d140dce"},(0,n.kt)("inlineCode",{parentName:"a"},"a2fd3f2"))),(0,n.kt)("li",{parentName:"ul"},"added back descriptionDistance variable until package release ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3af811a8d86a132e16de118697ba5a4302a8a4da"},(0,n.kt)("inlineCode",{parentName:"a"},"3af811a"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-alpha.7 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e66bcc296b389bc55073e7f99681534977dce3a"},(0,n.kt)("inlineCode",{parentName:"a"},"7e66bcc"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using cca-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce47e9b163bcb4eda988e3a87718b54ffbd3f99f"},(0,n.kt)("inlineCode",{parentName:"a"},"ce47e9b"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb531c933c907bdbb88c9de0f1df2eb7ce899a4c"},(0,n.kt)("inlineCode",{parentName:"a"},"cb531c9")))),(0,n.kt)("h3",{id:"100-alpha6---2022-12-07"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.5...1.0.0-alpha.6"},"1.0.0-alpha.6")," - 2022-12-07"),(0,n.kt)("h4",{id:"-new-features-14"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(copyright): create copyright component and import it in banner ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8fcde9df2915585e2336024436cef76642820d75"},(0,n.kt)("inlineCode",{parentName:"a"},"8fcde9d"))),(0,n.kt)("li",{parentName:"ul"},"feat(Header): add hideSearch prop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/13ddfe59a6bd7fe2050b70ac4524a6f6c5c169ea"},(0,n.kt)("inlineCode",{parentName:"a"},"13ddfe5"))),(0,n.kt)("li",{parentName:"ul"},"feat(Docusaurus): Image copyright information #257 from eea/image-copyright-info ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/21195153240da052acb7171f7904449ed7854cb3"},(0,n.kt)("inlineCode",{parentName:"a"},"2119515")))),(0,n.kt)("h4",{id:"-bug-fixes-15"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(tags): content gap when using tags-content wrapper ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4eb9b89d4ea09f936b7fcdc22a84105fd8639af"},(0,n.kt)("inlineCode",{parentName:"a"},"c4eb9b8")))),(0,n.kt)("h4",{id:"-enhancements-20"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(hero): add copyright component to hero ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0fa88fad3e7b48789dc6d0462b9f78dd359b8949"},(0,n.kt)("inlineCode",{parentName:"a"},"0fa88fa"))),(0,n.kt)("li",{parentName:"ul"},"change(copyright): implementation to add classes on content sections ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e10bde674f2b1f722ec6c70734e4a72c018f4afe"},(0,n.kt)("inlineCode",{parentName:"a"},"e10bde6"))),(0,n.kt)("li",{parentName:"ul"},"change(copyright): removed color variant ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/747b8a27155569247d4975837587e3320327fce9"},(0,n.kt)("inlineCode",{parentName:"a"},"747b8a2"))),(0,n.kt)("li",{parentName:"ul"},"change(copyright): removed copyrightVariant from Banner and Hero stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac62e079d4eafb818f9cae25880a04d9e069d107"},(0,n.kt)("inlineCode",{parentName:"a"},"ac62e07"))),(0,n.kt)("li",{parentName:"ul"},"change(tagList): modified implementation to align to volto-tags-block ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7a57a3d4bf7ede4b5ab5f3ef045d664aaaf67f2c"},(0,n.kt)("inlineCode",{parentName:"a"},"7a57a3d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(copyright): remove data section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/52cb09dc363bb0a2e363ec86dcefb4c57e07a14d"},(0,n.kt)("inlineCode",{parentName:"a"},"52cb09d"))),(0,n.kt)("li",{parentName:"ul"},"change(copyright): line height to match page header implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a56254e7588cfc6aca999f550084d79dca6e9a6c"},(0,n.kt)("inlineCode",{parentName:"a"},"a56254e"))),(0,n.kt)("li",{parentName:"ul"},"change(copyright): now uses text color css variable with fallback to white ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee7268ba359f079dfce45fd0fe91f75ae5c37e94"},(0,n.kt)("inlineCode",{parentName:"a"},"ee7268b")))),(0,n.kt)("h4",{id:"-documentation-changes-7"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(copyright): copyright documentation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a90ed766e60b5eb5b027beb36d2b1967d2c41fa3"},(0,n.kt)("inlineCode",{parentName:"a"},"a90ed76")))),(0,n.kt)("h4",{id:"\ufe0f-others-20"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Update usage_markdown.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f76d4a242f795451d64ef2d192d0006a0ed5eac1"},(0,n.kt)("inlineCode",{parentName:"a"},"f76d4a2"))),(0,n.kt)("li",{parentName:"ul"},"grammar fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb2a5a5fd9dfc01eccc179721b06988742f5b2e2"},(0,n.kt)("inlineCode",{parentName:"a"},"cb2a5a5"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-alpha.6 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6ca32f03c1860781d3c1c4ff9558713ad8acac95"},(0,n.kt)("inlineCode",{parentName:"a"},"6ca32f0"))),(0,n.kt)("li",{parentName:"ul"},"feature(copyright): image information #250 from eea/feature-copyright ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a8618c7f0230a19b6c973aa2c9646463de9eeffb"},(0,n.kt)("inlineCode",{parentName:"a"},"a8618c7"))),(0,n.kt)("li",{parentName:"ul"},"lint fix by introducing local variable tagsGap ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7b6c0ae2ebfed06221700faf9a0d0c2bdeb60d99"},(0,n.kt)("inlineCode",{parentName:"a"},"7b6c0ae"))),(0,n.kt)("li",{parentName:"ul"},"Update 3-images.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1b0ef033f9c8a36aaa739f268263f24a6d0fb473"},(0,n.kt)("inlineCode",{parentName:"a"},"1b0ef03")))),(0,n.kt)("h3",{id:"100-alpha5---2022-11-29"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.4...1.0.0-alpha.5"},"1.0.0-alpha.5")," - 2022-11-29"),(0,n.kt)("h4",{id:"-new-features-15"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(Iconography): import and showcase remix icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/777112f7e77ce8c74c3fd4384bff6ec9694aba04"},(0,n.kt)("inlineCode",{parentName:"a"},"777112f")))),(0,n.kt)("h4",{id:"-bug-fixes-16"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(docusaurus): right bar overflow fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/197c763624f70556c62379bc0751763725d0fed3"},(0,n.kt)("inlineCode",{parentName:"a"},"197c763"))),(0,n.kt)("li",{parentName:"ul"},"fix(lists): bullet position by using padding instead of margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0ecae2e7fe61b98d8795f876a525fbbc873bf799"},(0,n.kt)("inlineCode",{parentName:"a"},"0ecae2e"))),(0,n.kt)("li",{parentName:"ul"},"fix(label): color for yellow variant as white isn't accessible on yellow color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91d8880a829d2728c49a1953f6d2d8c2c812990c"},(0,n.kt)("inlineCode",{parentName:"a"},"91d8880"))),(0,n.kt)("li",{parentName:"ul"},"fix(contentBox): avoid text decoration for header-link added on cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ccb592db6f465cec59124b94fb6918b513bb761"},(0,n.kt)("inlineCode",{parentName:"a"},"3ccb592"))),(0,n.kt)("li",{parentName:"ul"},"fix(label): margin value for ribbon image left and right margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f8e1129734709d6034539a6522105af9d43fef20"},(0,n.kt)("inlineCode",{parentName:"a"},"f8e1129")))),(0,n.kt)("h4",{id:"-enhancements-21"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): eea color palette in separate file ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6c855df9c2238f8d21860ade4578aa969b68448e"},(0,n.kt)("inlineCode",{parentName:"a"},"6c855df"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): classes for color boxes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/80219d52bc63842d8e6382dbbe7d43cdc8a29b9c"},(0,n.kt)("inlineCode",{parentName:"a"},"80219d5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): move supplementary, state and link colors to partials ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2776be32615d7a6bdd8561a523fb9cfb1a85e38b"},(0,n.kt)("inlineCode",{parentName:"a"},"2776be3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): fix side menu / moved more content in palette partial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f5b70775471369ca8f3193784b9bc66caa8fb76f"},(0,n.kt)("inlineCode",{parentName:"a"},"f5b7077"))),(0,n.kt)("li",{parentName:"ul"},"change(tag): set gap on tags element for margin between tag elements ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/726bc6da821a366a5afa03659e614cc73ed02c0b"},(0,n.kt)("inlineCode",{parentName:"a"},"726bc6d")))),(0,n.kt)("h4",{id:"-internal-changes-8"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(colours): fix wrong class name ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51ad0a8232f7f35cae05f5861d7822db852b3f8d"},(0,n.kt)("inlineCode",{parentName:"a"},"51ad0a8")))),(0,n.kt)("h4",{id:"-documentation-changes-8"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): Iconography updates, thematic platforms ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2a0e596bd002290e0759d8c5e568da4d318f7d59"},(0,n.kt)("inlineCode",{parentName:"a"},"2a0e596"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): thematic pages integration ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea7a4220a93d3fd2f437b51462f7f19d99f52595"},(0,n.kt)("inlineCode",{parentName:"a"},"ea7a422"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): color updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cc13b5499a9ae13bb45925a057f8ff4d6a2e4643"},(0,n.kt)("inlineCode",{parentName:"a"},"cc13b54"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): fix swatches accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/306cb74d3e06390a9c15da9b8b29c9d3c8f0f6c5"},(0,n.kt)("inlineCode",{parentName:"a"},"306cb74"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): typography and colors fixes according to comments on PR ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ae20a7258cc88465fa0937895c2999952736f456"},(0,n.kt)("inlineCode",{parentName:"a"},"ae20a72"))),(0,n.kt)("li",{parentName:"ul"},"docs(colours): adjust logos heights ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/854d4fb761be7307e83e5dd2eb0fe5a0117727c5"},(0,n.kt)("inlineCode",{parentName:"a"},"854d4fb"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): merge designer and dev units ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/65c240eddbf20b3fc870d301b96837f49ad9caca"},(0,n.kt)("inlineCode",{parentName:"a"},"65c240e"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): readded extra font sizes, fixed fluid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4a5d892538a9713d14ac718b1bf2c771be09810"},(0,n.kt)("inlineCode",{parentName:"a"},"a4a5d89"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): changed em to percentages ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4176007ff4b421bc988b618488e0ba6b550f9fe"},(0,n.kt)("inlineCode",{parentName:"a"},"d417600"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): minors updates and instructions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/84ac8828e430b4af2b461534b4e2f81189080145"},(0,n.kt)("inlineCode",{parentName:"a"},"84ac882"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): blue-grey-6 adjustment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e7ab2d15d3a617bc5b3713897f3e3521d9e2720a"},(0,n.kt)("inlineCode",{parentName:"a"},"e7ab2d1"))),(0,n.kt)("li",{parentName:"ul"},"docs(colours): added active colour ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/574f7a95ea8a9510d03a104ad72fafafcae5d738"},(0,n.kt)("inlineCode",{parentName:"a"},"574f7a9"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): switch FISE logo to png ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/335471fd95bbd78cd7bd80b960272baa0a32e1c5"},(0,n.kt)("inlineCode",{parentName:"a"},"335471f"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): updated visited ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0248fd164cbf85168945797244977c305c67608d"},(0,n.kt)("inlineCode",{parentName:"a"},"0248fd1"))),(0,n.kt)("li",{parentName:"ul"},"docs(FISE): replaced logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f7d833127f769d79f099618b98789c6929b4ba08"},(0,n.kt)("inlineCode",{parentName:"a"},"f7d8331")))),(0,n.kt)("h4",{id:"\ufe0f-others-21"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"perf(docusaurus): added remixicon and roboto locally ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b67b1a72bc9cdc7c62a25967e81b430f8b62d558"},(0,n.kt)("inlineCode",{parentName:"a"},"b67b1a7"))),(0,n.kt)("li",{parentName:"ul"},"feature(Docusaurus): Updates on color palette information including thematic websites #231 from eea/refactor-docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ec7843dea07f626dc1c71ae1baa8bb5b0caa52f3"},(0,n.kt)("inlineCode",{parentName:"a"},"ec7843d"))),(0,n.kt)("li",{parentName:"ul"},"Upgrade Jenkinsfile storybook to yarn 3 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d20de8d6e21a14660b7b5125a80218a8a6f19e62"},(0,n.kt)("inlineCode",{parentName:"a"},"d20de8d"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/563fbc5fac0d4b0295690d0a3a4e04271753f18a"},(0,n.kt)("inlineCode",{parentName:"a"},"563fbc5")))),(0,n.kt)("h3",{id:"100-alpha4---2022-11-22"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.3...1.0.0-alpha.4"},"1.0.0-alpha.4")," - 2022-11-22"),(0,n.kt)("h4",{id:"-bug-fixes-17"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(cards-storybook): load slick carousel css for arrow and pagination styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1159b1beea0d7f7e026f1f1181fea91b7ac38ffa"},(0,n.kt)("inlineCode",{parentName:"a"},"1159b1b")))),(0,n.kt)("h4",{id:"-enhancements-22"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(cards): refactor cards theming implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4e454238d540ef306f4c1a4f8e9a94c7aa10189"},(0,n.kt)("inlineCode",{parentName:"a"},"d4e4542"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): allow rounded, inverted and theme parameter to be set by has classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4b4ad893fc5d39629b4e8d874327f31ea2e7d885"},(0,n.kt)("inlineCode",{parentName:"a"},"4b4ad89"))),(0,n.kt)("li",{parentName:"ul"},"change(card): expect has classes on the card directly ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6a9e38bcae0656685a99b47800d556813663d2ee"},(0,n.kt)("inlineCode",{parentName:"a"},"6a9e38b"))),(0,n.kt)("li",{parentName:"ul"},"change(utilities): added has text classes to the text alignment utilities ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e6974c634551fe0d19a9c9da269f5c6fbaefab7a"},(0,n.kt)("inlineCode",{parentName:"a"},"e6974c6"))),(0,n.kt)("li",{parentName:"ul"},"change(utilities): modified class name for text align using has naming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/579a0cbe0f704eb9305119fdd162f4f29c8086d5"},(0,n.kt)("inlineCode",{parentName:"a"},"579a0cb"))),(0,n.kt)("li",{parentName:"ul"},"change(theme): ensure that only direct children of container have a default top and bottom margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7f8b8dcc72827004d366e1c531311cf8734053fc"},(0,n.kt)("inlineCode",{parentName:"a"},"7f8b8dc"))),(0,n.kt)("li",{parentName:"ul"},"change(build): upgrade action to trigger workflow and wait to latest version ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c63ad3fdae7972bb2c722dea3d046861fa0ac086"},(0,n.kt)("inlineCode",{parentName:"a"},"c63ad3f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): theming implementation to allow has theming classes #265 from eea/card-refactoring ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24edc99d85c0c619fc763a8774a96f7208f529a5"},(0,n.kt)("inlineCode",{parentName:"a"},"24edc99"))),(0,n.kt)("li",{parentName:"ul"},"change(theme): add slick-carousel dependency ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2eec7d7233adf86b9c4f61670eb87d9754ff94c"},(0,n.kt)("inlineCode",{parentName:"a"},"f2eec7d")))),(0,n.kt)("h4",{id:"\ufe0f-others-22"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Update eea.github.io on all commits in develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3d0b8d745138bd2e0219560c8c895ce2c56dbf04"},(0,n.kt)("inlineCode",{parentName:"a"},"3d0b8d7"))),(0,n.kt)("li",{parentName:"ul"},"Exclude mockups from npm package ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/634af8e3ddabec36a18597d8d7638888269875fc"},(0,n.kt)("inlineCode",{parentName:"a"},"634af8e"))),(0,n.kt)("li",{parentName:"ul"},"fix rounded selector ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1fa15442f03d3f3d9ef59afa14075b061483cf3a"},(0,n.kt)("inlineCode",{parentName:"a"},"1fa1544"))),(0,n.kt)("li",{parentName:"ul"},"Trigger re-build ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3566dd2b4d2cd12496e05b792c85a78de550dd50"},(0,n.kt)("inlineCode",{parentName:"a"},"3566dd2"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea47f6f10097f23f635d98f0c5483bebf8378fc4"},(0,n.kt)("inlineCode",{parentName:"a"},"ea47f6f")))),(0,n.kt)("h3",{id:"100-alpha3---2022-11-16"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.2...1.0.0-alpha.3"},"1.0.0-alpha.3")," - 2022-11-16"),(0,n.kt)("h4",{id:"-new-features-16"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(Header): Add subsite section styling #263 from eea/subsite ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/00398b8a6c5d83241c30d0ba85d95c115edf2480"},(0,n.kt)("inlineCode",{parentName:"a"},"00398b8")))),(0,n.kt)("h4",{id:"-bug-fixes-18"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(search): position now changed by default to absolute from relative ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51b08fc217e25c1391a2bac0b42a8c3f7ae091c7"},(0,n.kt)("inlineCode",{parentName:"a"},"51b08fc"))),(0,n.kt)("li",{parentName:"ul"},"fix(megaMenu): remove paddings for buttons added by active class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ec33ebfe23a6064c88383ab465bd45edee2dba9b"},(0,n.kt)("inlineCode",{parentName:"a"},"ec33ebf")))),(0,n.kt)("h4",{id:"-enhancements-23"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(components): load overrides files for our defined semantic files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/adde7a9519f38fa779d8d038f3b6817281f0b4a2"},(0,n.kt)("inlineCode",{parentName:"a"},"adde7a9"))),(0,n.kt)("li",{parentName:"ul"},"change(container): fullwidth now take into account devices without hover ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5a35a65ce4928972027325bd01265db3f046f0e8"},(0,n.kt)("inlineCode",{parentName:"a"},"5a35a65"))),(0,n.kt)("li",{parentName:"ul"},"change(container): ensure only the top level elements behave like containers ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/98b85d1fb285919a8851454fa3007131b2a0ffc3"},(0,n.kt)("inlineCode",{parentName:"a"},"98b85d1"))),(0,n.kt)("li",{parentName:"ul"},"change(container): modified column-block grid to remove margin and padding when using full width class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/35c1cee7b3b35e7c361562ab7a430240f0117cc3"},(0,n.kt)("inlineCode",{parentName:"a"},"35c1cee"))),(0,n.kt)("li",{parentName:"ul"},"change(mega-menu): hide home link and accordion content from mobile menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1a691729b6d61c0daf46c5de035c1c55b0fda0d9"},(0,n.kt)("inlineCode",{parentName:"a"},"1a69172"))),(0,n.kt)("li",{parentName:"ul"},"change(container): width from min width 1280px to 1365px max width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/66e551e532da2cc5e9716e5179f943f172663be4"},(0,n.kt)("inlineCode",{parentName:"a"},"66e551e"))),(0,n.kt)("li",{parentName:"ul"},"change(container): removed app extras and view setting of layout sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6dc1ee602634df85140f6db75e41293b72eacf1"},(0,n.kt)("inlineCode",{parentName:"a"},"f6dc1ee"))),(0,n.kt)("li",{parentName:"ul"},"change(views): customized DefaultView to pass class into page-document area ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91123aad429f4bb086110b4997e43e9809a97581"},(0,n.kt)("inlineCode",{parentName:"a"},"91123aa"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): desktop - use buttons for menu section titles and readjust content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb9315f2b999193b7b64cec27c49fc8dda306899"},(0,n.kt)("inlineCode",{parentName:"a"},"cb9315f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): add nav_title and nav_description attributes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0d7a5686daab2ecec87d78728437d8f994606448"},(0,n.kt)("inlineCode",{parentName:"a"},"0d7a568"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): style sub-title and nav-description ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b2a48fd3588ffdc75f61f0b8d52284d13edf2d92"},(0,n.kt)("inlineCode",{parentName:"a"},"b2a48fd"))),(0,n.kt)("li",{parentName:"ul"},"refactor(sidemenu): add third level list and items & update active indication ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2d87da9fddca2b867f3d065a007c0b921587a61"},(0,n.kt)("inlineCode",{parentName:"a"},"e2d87da"))),(0,n.kt)("li",{parentName:"ul"},"change(columns): implement narrow, container and wide width classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9696b5457e50ba3186406a584da16f5248c14439"},(0,n.kt)("inlineCode",{parentName:"a"},"9696b54"))),(0,n.kt)("li",{parentName:"ul"},"change(container): story to add classes that modify the max width of the containers ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/37948f89ee797738bd8bbb0023bc5dca018d7331"},(0,n.kt)("inlineCode",{parentName:"a"},"37948f8"))),(0,n.kt)("li",{parentName:"ul"},"change(container): affect only left and right margin of containers ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/183265b7dd8d20359b6c3956ea05b62df6e70f75"},(0,n.kt)("inlineCode",{parentName:"a"},"183265b"))),(0,n.kt)("li",{parentName:"ul"},"change(containers): modified class names after layout checks ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1dc3689509001031f0afd30422f517de5316e47a"},(0,n.kt)("inlineCode",{parentName:"a"},"1dc3689"))),(0,n.kt)("li",{parentName:"ul"},"refactor(sidemenu): add is_in_path and is_current attributes for an active example ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a3fe7fd8da93db0a065d4408ce154c9d8c26b568"},(0,n.kt)("inlineCode",{parentName:"a"},"a3fe7fd"))),(0,n.kt)("li",{parentName:"ul"},"change(container): story to avoid adding containerwidth property to container div ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c13d83cdbc8741bf4075cdfcd884f39f3f71d73c"},(0,n.kt)("inlineCode",{parentName:"a"},"c13d83c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): mobile - use buttons for menu section titles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7b632fd29a8ac815d2e590509baa51f1279e659"},(0,n.kt)("inlineCode",{parentName:"a"},"a7b632f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): update padding variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5f25838ba9ec367a58c98c929921ebf09cd8ad8"},(0,n.kt)("inlineCode",{parentName:"a"},"c5f2583"))),(0,n.kt)("li",{parentName:"ul"},"change(views): moved narrow style bellow the default container width styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/72fa58dce9ea03a1e4f409a9f9aab21b01efbfc8"},(0,n.kt)("inlineCode",{parentName:"a"},"72fa58d"))),(0,n.kt)("li",{parentName:"ul"},"change(listing): removed container from default view page-document area ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/69f3d8f422e3cb95e89937929aaef48b5569bcdf"},(0,n.kt)("inlineCode",{parentName:"a"},"69f3d8f"))),(0,n.kt)("li",{parentName:"ul"},"change(views): rename classes names to width_view and added app extras layout component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/745b7720839754d1e248795cb1263f8c02f5f3c2"},(0,n.kt)("inlineCode",{parentName:"a"},"745b772"))),(0,n.kt)("li",{parentName:"ul"},"change(container): use important flag for left and right margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a49c83abe9a045d28118a680558de5416a0516a3"},(0,n.kt)("inlineCode",{parentName:"a"},"a49c83a"))),(0,n.kt)("li",{parentName:"ul"},"change(container): add variables for edit and add section of containers ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2e2c335dc82c120d15d4c536c400ae742f68fe7"},(0,n.kt)("inlineCode",{parentName:"a"},"f2e2c33"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): update sub-title paddings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/992f919bb5155c8e6fc169e43adf00dcae41f400"},(0,n.kt)("inlineCode",{parentName:"a"},"992f919"))),(0,n.kt)("li",{parentName:"ul"},"change(site): add a 1rem margin top and bottom on all styled classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dabf6c1162fe23cef61a2053eefd7e687f649a56"},(0,n.kt)("inlineCode",{parentName:"a"},"dabf6c1"))),(0,n.kt)("li",{parentName:"ul"},"change(homepage): removed hiding of staging banner from homepage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ba2cd7fc17cdf1bf58381aa58e05acad0ac77ba"},(0,n.kt)("inlineCode",{parentName:"a"},"4ba2cd7"))),(0,n.kt)("li",{parentName:"ul"},"change(container): unset values of page-document on 1200+ browser width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dd5bea37d414e2a8689eaf6cc99c7b3a3d4b0e08"},(0,n.kt)("inlineCode",{parentName:"a"},"dd5bea3"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): set children to be appended to the right of the menu title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b69c23a20ef2ded1f0382650ff8e85d1bead6941"},(0,n.kt)("inlineCode",{parentName:"a"},"b69c23a"))),(0,n.kt)("li",{parentName:"ul"},"change(theme): modified wide width to point to 1320px as it's perfectly divisible by 4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f825737d6dafd595024bb4537eab624a47a9ad0"},(0,n.kt)("inlineCode",{parentName:"a"},"8f82573"))),(0,n.kt)("li",{parentName:"ul"},"change(theme): modified wide width to point to 1368px as it's perfectly divisible by 4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2349fee36ee72783665a0b101d684389f1fdf834"},(0,n.kt)("inlineCode",{parentName:"a"},"2349fee"))),(0,n.kt)("li",{parentName:"ul"},"change(container): renamed content-text-width to container-text-width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6f788c282348292dd4b5deb47ffe83ca4573e5c8"},(0,n.kt)("inlineCode",{parentName:"a"},"6f788c2"))),(0,n.kt)("li",{parentName:"ul"},"change(listing): provide ui container fallback if no class is passed to default view ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af9e94ded1e301f4c811749badbcc1f59e6d0de5"},(0,n.kt)("inlineCode",{parentName:"a"},"af9e94d"))),(0,n.kt)("li",{parentName:"ul"},"change(narrow-view): re-added container class to page-document ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/56b44a6e09d45f96c106dc471bb2e1cde58ef10f"},(0,n.kt)("inlineCode",{parentName:"a"},"56b44a6"))),(0,n.kt)("li",{parentName:"ul"},"change(view): set container width for view-viewview class as well ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/29dc324319d6dc2450dd0e906c1b4c93fd65ed56"},(0,n.kt)("inlineCode",{parentName:"a"},"29dc324")))),(0,n.kt)("h4",{id:"-internal-changes-9"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style: load header/footer overrides ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e5b5e0fc00c61d81f45c12f119bd2f06a91b1b5c"},(0,n.kt)("inlineCode",{parentName:"a"},"e5b5e0f"))),(0,n.kt)("li",{parentName:"ul"},"style(megaMenu): restore item description color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8a19bbb4866cdeb31d87b782587c499e621055b7"},(0,n.kt)("inlineCode",{parentName:"a"},"8a19bbb"))),(0,n.kt)("li",{parentName:"ul"},"style(megaMenu): restore accordion content bottom padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8e0c5a79f06247d353511b412b0122c6f614f5ec"},(0,n.kt)("inlineCode",{parentName:"a"},"8e0c5a7")))),(0,n.kt)("h4",{id:"\ufe0f-others-23"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Add subsite styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e79c0ed7931d6287dbeb3bab1e9155b8707481a3"},(0,n.kt)("inlineCode",{parentName:"a"},"e79c0ed"))),(0,n.kt)("li",{parentName:"ul"},"WIP settings column grid width when using full size class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/affc7ac99527aa92d5a192d90dc8c9ec46a66404"},(0,n.kt)("inlineCode",{parentName:"a"},"affc7ac"))),(0,n.kt)("li",{parentName:"ul"},"code cleanup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2cdc3e590b6d36865f16890c45ce56d32963e1d0"},(0,n.kt)("inlineCode",{parentName:"a"},"2cdc3e5"))),(0,n.kt)("li",{parentName:"ul"},"fix eslint ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/30c52e4eb443555ca44c1b35df064e73d52c0a8b"},(0,n.kt)("inlineCode",{parentName:"a"},"30c52e4"))),(0,n.kt)("li",{parentName:"ul"},"test(estlint): Fix .project.eslintrc.js ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aaeaa07b27491551daba29bbfdd7cab4a54b6bec"},(0,n.kt)("inlineCode",{parentName:"a"},"aaeaa07"))),(0,n.kt)("li",{parentName:"ul"},"modified left value of full width classes with toolbars ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70d82d47fbc2c00a3a709de0d5c087c8443a1eae"},(0,n.kt)("inlineCode",{parentName:"a"},"70d82d4"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-alpha.3 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8fc86a7d0bf4ad06ab339b3066ff56ea61d48878"},(0,n.kt)("inlineCode",{parentName:"a"},"8fc86a7"))),(0,n.kt)("li",{parentName:"ul"},"feature(content): added NarrowView useful for modifying the containers from content-area ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d937df7c262e8d8cc6e78eebec736e28263fc657"},(0,n.kt)("inlineCode",{parentName:"a"},"d937df7"))),(0,n.kt)("li",{parentName:"ul"},"jslint fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/98461593605344d0b6d8cba81f91d1cafc2653cd"},(0,n.kt)("inlineCode",{parentName:"a"},"9846159"))),(0,n.kt)("li",{parentName:"ul"},"Feature(container): flexible container size #260 from eea/feature-flexible-container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f84c5b67afe9cbe01b2a44a8f92a9a554e1036a"},(0,n.kt)("inlineCode",{parentName:"a"},"8f84c5b"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using circularity-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/76a41c786995fd54afe4d1c345de939f683ffa70"},(0,n.kt)("inlineCode",{parentName:"a"},"76a41c7"))),(0,n.kt)("li",{parentName:"ul"},"fix broken variable call for contentBox.variables introduced in previous commit by mistake ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d249c1160d19bedb174a2fde3fdab48d9ce297d4"},(0,n.kt)("inlineCode",{parentName:"a"},"d249c11"))),(0,n.kt)("li",{parentName:"ul"},"clean up ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/89f3cb33d70a14806a953f0acd1807e94169ee5c"},(0,n.kt)("inlineCode",{parentName:"a"},"89f3cb3"))),(0,n.kt)("li",{parentName:"ul"},"removed console log from code ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fad86ae581dd81d0c29fc03d8528e57cadadd3fb"},(0,n.kt)("inlineCode",{parentName:"a"},"fad86ae")))),(0,n.kt)("h3",{id:"100-alpha2---2022-10-28"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.1...1.0.0-alpha.2"},"1.0.0-alpha.2")," - 2022-10-28"),(0,n.kt)("h4",{id:"-enhancements-24"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(documentation): grammarly proof-read suggestions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f609be3758673b0d479d99baee69e7238a5b7f9"},(0,n.kt)("inlineCode",{parentName:"a"},"9f609be"))),(0,n.kt)("li",{parentName:"ul"},"refactor(volto-slate): Upgrade to @plone/volto-slate - refs #153447 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/853d9d189dd17859e3999fbf53507df7083eefb4"},(0,n.kt)("inlineCode",{parentName:"a"},"853d9d1")))),(0,n.kt)("h4",{id:"-internal-changes-10"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(docs): Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e33113a0541d082d93f61c7494bcce2ac5f79a8c"},(0,n.kt)("inlineCode",{parentName:"a"},"e33113a")))),(0,n.kt)("h4",{id:"\ufe0f-others-24"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"test(cypress): Upgrade to Cypress 10 / Razzle 4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c1c1f4b280945a9f0b77eb0b59de003c1360bac9"},(0,n.kt)("inlineCode",{parentName:"a"},"c1c1f4b"))),(0,n.kt)("li",{parentName:"ul"},"more explanations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a8b22728659125ba6ea6fb41f29571a8f1b9953b"},(0,n.kt)("inlineCode",{parentName:"a"},"a8b2272"))),(0,n.kt)("li",{parentName:"ul"},"add announcement bar, showing that EEA DS is WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e14aeac02cf922493aff4f83c8d80af95cc63eb9"},(0,n.kt)("inlineCode",{parentName:"a"},"e14aeac"))),(0,n.kt)("li",{parentName:"ul"},"Update dependencies ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee30a2bad3769163d3ab4d996c0a7be8fcb4bc6e"},(0,n.kt)("inlineCode",{parentName:"a"},"ee30a2b")))),(0,n.kt)("h3",{id:"100-alpha1---2022-10-20"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.6...1.0.0-alpha.1"},"1.0.0-alpha.1")," - 2022-10-20"),(0,n.kt)("h4",{id:"-enhancements-25"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update svg and tablet contact link sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6aba061a5d37e84da706e94a2ce1140ffca81d43"},(0,n.kt)("inlineCode",{parentName:"a"},"6aba061"))),(0,n.kt)("li",{parentName:"ul"},"change(blockquote): renamed to Callout reflecting the correct naming from Storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/61a518c84f08b03d29b99aafce3d9108ae56b3a7"},(0,n.kt)("inlineCode",{parentName:"a"},"61a518c"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): Shadow removed from logo & tablet updates #252 from eea/fix-footer ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6df783d6571cb1b477202bf1d503763d98db66bf"},(0,n.kt)("inlineCode",{parentName:"a"},"6df783d"))),(0,n.kt)("li",{parentName:"ul"},"change(colors): updated theme classes for text to use css variable colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb089fd9a40b67430e0d4efaa2cb51902a46de4f"},(0,n.kt)("inlineCode",{parentName:"a"},"cb089fd")))),(0,n.kt)("h4",{id:"-internal-changes-11"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(footer): reduce social icons margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6a9cf7a6da4a46d9b85a63fbdfc8d421ae4c0d8"},(0,n.kt)("inlineCode",{parentName:"a"},"f6a9cf7")))),(0,n.kt)("h4",{id:"-documentation-changes-9"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(alpha): Update included components in 1.0 alpha version - refs #154387 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fcc5af9bb9163d158ccd6ce452d7f80ac26f7ac0"},(0,n.kt)("inlineCode",{parentName:"a"},"fcc5af9"))),(0,n.kt)("li",{parentName:"ul"},"docs(callout): Rename Blockqoute to Callout in docusaurus - refs #154387 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8d733ac7b00273581575ceddd1a4480ba67fa498"},(0,n.kt)("inlineCode",{parentName:"a"},"8d733ac")))),(0,n.kt)("h4",{id:"\ufe0f-others-25"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0-alpha.1 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70e4d97c6a2b13f3b98efe1e2ba93174be2df476"},(0,n.kt)("inlineCode",{parentName:"a"},"70e4d97")))),(0,n.kt)("h3",{id:"096---2022-12-16"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.5...0.9.6"},"0.9.6")," - 2022-12-16"),(0,n.kt)("h4",{id:"\ufe0f-others-26"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Release 0.9.6 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ae19b837678ef5a6a26ebe7c69577e446b13ed50"},(0,n.kt)("inlineCode",{parentName:"a"},"ae19b83"))),(0,n.kt)("li",{parentName:"ul"},"feature(copyright): image information #250 from eea/feature-copyright ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7b323ed27e15f9b4265618099089526c97aa89a1"},(0,n.kt)("inlineCode",{parentName:"a"},"7b323ed"))),(0,n.kt)("li",{parentName:"ul"},"Release-it ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f5671de5a36a721f86a2f8ae4077fd2e0ffafb5"},(0,n.kt)("inlineCode",{parentName:"a"},"1f5671d")))),(0,n.kt)("h3",{id:"095---2022-10-20"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.4...0.9.5"},"0.9.5")," - 2022-10-20"),(0,n.kt)("h4",{id:"-bug-fixes-19"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(statistic): margin and slate colors when using the inverted options ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f263dea1940594ad00b3548c8640ca378fee5563"},(0,n.kt)("inlineCode",{parentName:"a"},"f263dea")))),(0,n.kt)("h3",{id:"094---2022-10-19"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.3...0.9.4"},"0.9.4")," - 2022-10-19"),(0,n.kt)("h4",{id:"-bug-fixes-20"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(edit-interface): block chooser and power user menu item colors when inside content-box ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7aee4f1619a0d798b5fd8d90844a780c25aca019"},(0,n.kt)("inlineCode",{parentName:"a"},"7aee4f1"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): hero text going over the logo and menu on mobile resolutions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1434508f5995d4316dfb2fd18fdc7926a4ece6ee"},(0,n.kt)("inlineCode",{parentName:"a"},"1434508"))),(0,n.kt)("li",{parentName:"ul"},"fix(content-box): z-index of box-inner and added underline to slate links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c8b7c7e41df39e1bf6377401a7aad4220287d454"},(0,n.kt)("inlineCode",{parentName:"a"},"c8b7c7e"))),(0,n.kt)("li",{parentName:"ul"},"fix(content-box): adding of underline to links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c2f5f0f45963e48342edb0046d84b945ffe4b6a8"},(0,n.kt)("inlineCode",{parentName:"a"},"c2f5f0f")))),(0,n.kt)("h4",{id:"-enhancements-26"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(banner,colors): content box theme aware colors banner changes#254 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bcb9a8cde0cb0f927a68c0872e590e5ab853f824"},(0,n.kt)("inlineCode",{parentName:"a"},"bcb9a8c"))),(0,n.kt)("li",{parentName:"ul"},"change(Banner): Add subtitle subcomponent ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bb67f4c83a2ff0e17958116fc4a52a426ba64a70"},(0,n.kt)("inlineCode",{parentName:"a"},"bb67f4c"))),(0,n.kt)("li",{parentName:"ul"},"change(item): moved svg filter definitions to item.overrides ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/de703661065648968903bb6b46efc13d19c51d2b"},(0,n.kt)("inlineCode",{parentName:"a"},"de70366"))),(0,n.kt)("li",{parentName:"ul"},"change(accordion): accordion titles with themes colors can now be modified by css variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2ac13ea56a74b2f7a22abc274bc94c770fbe3a2"},(0,n.kt)("inlineCode",{parentName:"a"},"e2ac13e"))),(0,n.kt)("li",{parentName:"ul"},"change(colors): in lists and callouts to allow color changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/940d1b8ed815b1a38f78d7602f0b221b48fe21f9"},(0,n.kt)("inlineCode",{parentName:"a"},"940d1b8"))),(0,n.kt)("li",{parentName:"ul"},"change(colors): added backgroundColorSupplementary color variable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f5262af2b90d2ffd9dd5560232f3bf47bcc85e3"},(0,n.kt)("inlineCode",{parentName:"a"},"1f5262a"))),(0,n.kt)("li",{parentName:"ul"},"change(list,bullet): color is no longer primary instead it's text color css variant ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8c046704871c7202406ff71b280a8a34e195e54d"},(0,n.kt)("inlineCode",{parentName:"a"},"8c04670"))),(0,n.kt)("li",{parentName:"ul"},"change(statistics): use theme colors with css variable for easy color customization ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fb72a012e81eba73fbace58317a52b5cdda31ee5"},(0,n.kt)("inlineCode",{parentName:"a"},"fb72a01"))),(0,n.kt)("li",{parentName:"ul"},"change(Banner): Show label in metadata field ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1acda3c53739b610b501a53baf10226769929d2d"},(0,n.kt)("inlineCode",{parentName:"a"},"1acda3c"))),(0,n.kt)("li",{parentName:"ul"},"change(tags, items): use text color with css variable for content color for easy customization ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6660e2e49c6e732a13283ad7c922c5a5091bffc1"},(0,n.kt)("inlineCode",{parentName:"a"},"6660e2e"))),(0,n.kt)("li",{parentName:"ul"},"change(styling): modified naming of theme css variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a332961e1c4d55cdee3a8bcdf652f53cf03e251b"},(0,n.kt)("inlineCode",{parentName:"a"},"a332961"))),(0,n.kt)("li",{parentName:"ul"},"change(colors): added backgroundColor color variable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b7e68311f77a724c49a3cf858a76239ca5f6876c"},(0,n.kt)("inlineCode",{parentName:"a"},"b7e6831"))),(0,n.kt)("li",{parentName:"ul"},"change(quote): use secondary css var for easier color replacement ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7a3231228c2eb9b420cc7b59a4a07fba96643e5e"},(0,n.kt)("inlineCode",{parentName:"a"},"7a32312"))),(0,n.kt)("li",{parentName:"ul"},"change(statistics): tweaked margin of statistics so that they don't overflow over context boxes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4a8e33dfaa716f38ac9ce5448d400c74ef9ba62"},(0,n.kt)("inlineCode",{parentName:"a"},"b4a8e33"))),(0,n.kt)("li",{parentName:"ul"},"change(accordion): allow customization of accordion title background color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6590baf1716867eabe897e765ae1924122ba2333"},(0,n.kt)("inlineCode",{parentName:"a"},"6590baf"))),(0,n.kt)("li",{parentName:"ul"},"change(colors): introduced css variables for primary colors #247 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac8082590f978ab953ece70082e06b124c292ddf"},(0,n.kt)("inlineCode",{parentName:"a"},"ac80825"))),(0,n.kt)("li",{parentName:"ul"},"change(content-box): override primary text color to white as well ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/28b43c72b9fcfeb153ac7e734bbbca67f2e42111"},(0,n.kt)("inlineCode",{parentName:"a"},"28b43c7")))),(0,n.kt)("h4",{id:"\ufe0f-others-27"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Include changes in the storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4d9fa4c631a6a1ec0d7d525721fd32c5ff01d9c"},(0,n.kt)("inlineCode",{parentName:"a"},"a4d9fa4")))),(0,n.kt)("h3",{id:"093---2022-10-04"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.2...0.9.3"},"0.9.3")," - 2022-10-04"),(0,n.kt)("h4",{id:"-bug-fixes-21"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(card, contentBox): meta font size, removed header override of cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7f94b9ca8c65a887ced5c4812563a2226fca869"},(0,n.kt)("inlineCode",{parentName:"a"},"a7f94b9"))),(0,n.kt)("li",{parentName:"ul"},"fix(List): Ordered list item story - refs #155248 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c70a2bceecf4ce9497cbe0e9cdb30944fff2287d"},(0,n.kt)("inlineCode",{parentName:"a"},"c70a2bc"))),(0,n.kt)("li",{parentName:"ul"},"fix(OrderedList): li third level margin left - refs #155248 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fba5cb9d3897d2827951cd218405b1ae7c8e818a"},(0,n.kt)("inlineCode",{parentName:"a"},"fba5cb9"))),(0,n.kt)("li",{parentName:"ul"},"fix(cards): inherit color of card description ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ceda79971663785c81292b85ae07b7f9f922213c"},(0,n.kt)("inlineCode",{parentName:"a"},"ceda799"))),(0,n.kt)("li",{parentName:"ul"},"fix(accordion): Fix content default padding - refs #153783 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/566adf7a53c48fb24044eeba1d159d5ce715ecc6"},(0,n.kt)("inlineCode",{parentName:"a"},"566adf7")))),(0,n.kt)("h4",{id:"-enhancements-27"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(site): committed fixed from custom into eea design package ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9b9a1fd3648796a502ca4eb3abd08b61b33bdff2"},(0,n.kt)("inlineCode",{parentName:"a"},"9b9a1fd"))),(0,n.kt)("li",{parentName:"ul"},"change(jenkins): added yarn policy for storybook building ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3d1b844efeea40b99c00c9aa97089e0a0be58a57"},(0,n.kt)("inlineCode",{parentName:"a"},"3d1b844"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): typography updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/60a93a4aece4e478ae13c2dfe697fd3703aa178a"},(0,n.kt)("inlineCode",{parentName:"a"},"60a93a4"))),(0,n.kt)("li",{parentName:"ul"},"change(item): added item image coloring when applying theming classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0403fe4974f37a46ec7418d9b8492ad74d7c5688"},(0,n.kt)("inlineCode",{parentName:"a"},"0403fe4"))),(0,n.kt)("li",{parentName:"ul"},"change(accordion, site): change text color to tertiary instead of black ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/464105842508a62216aa0a3f28e9565af1b93232"},(0,n.kt)("inlineCode",{parentName:"a"},"4641058"))),(0,n.kt)("li",{parentName:"ul"},"change(accordion): allow customization of accordion title with css variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/15e7d27f02c640df582f51a51ef36e645723f842"},(0,n.kt)("inlineCode",{parentName:"a"},"15e7d27"))),(0,n.kt)("li",{parentName:"ul"},"change(content-box): added css variables that will set text color and background for children ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/86cac531cc94386b6022e1be80dba826b39f2443"},(0,n.kt)("inlineCode",{parentName:"a"},"86cac53"))),(0,n.kt)("li",{parentName:"ul"},"change(tabs): allow customization of tab active and hover color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4370f4270dcaa29b1193fc2347567b748f6d5d82"},(0,n.kt)("inlineCode",{parentName:"a"},"4370f42"))),(0,n.kt)("li",{parentName:"ul"},"change(tabs): color for tabs-block section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6778c923618e725194120d7f35e2ee7d66e1be8e"},(0,n.kt)("inlineCode",{parentName:"a"},"6778c92"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): by default date is set to appear on the right of the meta section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b7b80e86b69a0179f1e48748bef909bbd2a98d58"},(0,n.kt)("inlineCode",{parentName:"a"},"b7b80e8"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): carousel dots are now relative positioned ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/daa40a4ab6532497830d5f7536bf0a7f20d9cd00"},(0,n.kt)("inlineCode",{parentName:"a"},"daa40a4")))),(0,n.kt)("h4",{id:"-documentation-changes-10"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(typography): update, local fonts ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/39a32d9aa4dec21c0e7df32aa5798432fc6bd403"},(0,n.kt)("inlineCode",{parentName:"a"},"39a32d9"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): token fix to match used values for heightheight and letterspacing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91693ecd2dd367cd83fa2752756557d463e214a7"},(0,n.kt)("inlineCode",{parentName:"a"},"91693ec"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): token fix to match used values for lineheight ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff41b56b4365a3e70ac20e548c7c74671e7c584c"},(0,n.kt)("inlineCode",{parentName:"a"},"ff41b56"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): remove semibold ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6eb3e0856f01aacf6d294f68e7d845f74f752685"},(0,n.kt)("inlineCode",{parentName:"a"},"6eb3e08")))),(0,n.kt)("h4",{id:"\ufe0f-others-28"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"test(cypress): Fix md5 dependency ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/17f618e7c5eef01759494e787a8c9cb96449fbca"},(0,n.kt)("inlineCode",{parentName:"a"},"17f618e")))),(0,n.kt)("h3",{id:"092---2022-09-27"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.1...0.9.2"},"0.9.2")," - 2022-09-27"),(0,n.kt)("h3",{id:"091---2022-09-27"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.9.0...0.9.1"},"0.9.1")," - 2022-09-27"),(0,n.kt)("h4",{id:"-enhancements-28"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(cards): added ability to change the text alignment using css variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ed532ac20c82a6933c4f12613c80ce92eec78405"},(0,n.kt)("inlineCode",{parentName:"a"},"ed532ac"))),(0,n.kt)("li",{parentName:"ul"},"change(styles): use flex-end values only instead of end to avoid babel warning ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24244b22ea69b9f4dc3006597c7836f814b74cf2"},(0,n.kt)("inlineCode",{parentName:"a"},"24244b2"))),(0,n.kt)("li",{parentName:"ul"},"change(rounded): image size, border radius to ensure more image are turned into rounded options ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51e23c1bb38f277b2bfbad5d814925eb61d17668"},(0,n.kt)("inlineCode",{parentName:"a"},"51e23c1")))),(0,n.kt)("h4",{id:"\ufe0f-others-29"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Merge pull request #243 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/576564ce395ee6ac9e74bcb19d5c4f0b4cd3c33b"},(0,n.kt)("inlineCode",{parentName:"a"},"576564c"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using eea-website-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a5be6eec78dae230626e61ea2c77e7f3c62510d"},(0,n.kt)("inlineCode",{parentName:"a"},"4a5be6e"))),(0,n.kt)("li",{parentName:"ul"},"Back to dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b251255a7ed14d8290717726d86eaf54b87aa2d4"},(0,n.kt)("inlineCode",{parentName:"a"},"b251255")))),(0,n.kt)("h3",{id:"090---2022-09-19"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.8.1...0.9.0"},"0.9.0")," - 2022-09-19"),(0,n.kt)("h4",{id:"-new-features-17"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(countUp): intall countup package and import it in statistics ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/10ba7cf2975ffc33cc8e6965998b7ab7ec58b1ab"},(0,n.kt)("inlineCode",{parentName:"a"},"10ba7cf"))),(0,n.kt)("li",{parentName:"ul"},"feat(docusaurus): custom editUrl function for the components usage pages - taskman refs #154076 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93c4240f269d72e4e353665dacd57d079a31afac"},(0,n.kt)("inlineCode",{parentName:"a"},"93c4240"))),(0,n.kt)("li",{parentName:"ul"},"feat(site): Styling scroll-to-text fragments #238 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1883fcf4e80055f68bdff4d66fc6db3ccad4614a"},(0,n.kt)("inlineCode",{parentName:"a"},"1883fcf"))),(0,n.kt)("li",{parentName:"ul"},"feat(docusaurus): added Edit this page link in footer of each page - taskman refs #154076 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2cf8746e42631ea2e214223e208bdbfb76ffafa7"},(0,n.kt)("inlineCode",{parentName:"a"},"2cf8746")))),(0,n.kt)("h4",{id:"-bug-fixes-22"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(header): Prevent dropdown closing when clicking inside content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/838f34006260ce7c331fd933a595e95d78e1a927"},(0,n.kt)("inlineCode",{parentName:"a"},"838f340"))),(0,n.kt)("li",{parentName:"ul"},"fix(cards): position of bullets and arrow clicking on events page 148723 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/22ef8282247401b0f8cf5a44f2e65f0b469cc6fa"},(0,n.kt)("inlineCode",{parentName:"a"},"22ef828"))),(0,n.kt)("li",{parentName:"ul"},"fix(cards): rounded images show up now even when card parent is cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48f5e81a5b76168435537d92aec35ab3a184b4d2"},(0,n.kt)("inlineCode",{parentName:"a"},"48f5e81"))),(0,n.kt)("li",{parentName:"ul"},"fix(statistic): add a min-width to content so unwrapped statistics don't break ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7c5d511c35d50f3afabf77f14b27e5760c49051f"},(0,n.kt)("inlineCode",{parentName:"a"},"7c5d511"))),(0,n.kt)("li",{parentName:"ul"},"fix(sideNavigation): add role list to list item ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/58f322b732c995349ba588db3bac6a1ffea40f89"},(0,n.kt)("inlineCode",{parentName:"a"},"58f322b"))),(0,n.kt)("li",{parentName:"ul"},"fix(sideNavigation): remove unused useState import ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f9ea6779d2c584203b77f11b3127f39aba7799f3"},(0,n.kt)("inlineCode",{parentName:"a"},"f9ea677")))),(0,n.kt)("h4",{id:"-enhancements-29"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(sideNavigation): implement the design to the initial navigation & make component dynamic ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b673d63a45e56e1d05354d8675c01b15ec9543f5"},(0,n.kt)("inlineCode",{parentName:"a"},"b673d63"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update top bar ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/626bdd5805bde1e97b91d83dae7adc1d39c62234"},(0,n.kt)("inlineCode",{parentName:"a"},"626bdd5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): create custom export and add links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f9ed560a68d261e9e6a9b6fa3c44944a252e596"},(0,n.kt)("inlineCode",{parentName:"a"},"9f9ed56"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): update inverted style and add background variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7578dc6a408094fbc215218b3ffe21a878841568"},(0,n.kt)("inlineCode",{parentName:"a"},"7578dc6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): remove horizontal display on mobiles & update columns control ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/58f00e12851c4a1af1bb200d0577d76f6222df3c"},(0,n.kt)("inlineCode",{parentName:"a"},"58f00e1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): minor fixes spotted in testing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0f0f3aba7ea282c4ecc4f602f9ff3144c04e2146"},(0,n.kt)("inlineCode",{parentName:"a"},"0f0f3ab"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update main section heights ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d669f012f1b831952dbb73b7d40134b1243ba7e4"},(0,n.kt)("inlineCode",{parentName:"a"},"d669f01"))),(0,n.kt)("li",{parentName:"ul"},"refactor(sideNavigation): remove green border and divider ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/939cd9bf2a9a7338fd770550a8396586c5f610b3"},(0,n.kt)("inlineCode",{parentName:"a"},"939cd9b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(link): update colors for link states ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e9f59950838f9119131797550945963c2965dcf"},(0,n.kt)("inlineCode",{parentName:"a"},"3e9f599"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): styles img tag outside of .image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee892745a4748da12007ba5cedab16c1810c1dd9"},(0,n.kt)("inlineCode",{parentName:"a"},"ee89274"))),(0,n.kt)("li",{parentName:"ul"},"refactor(sideNavigation): update controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a3e8430d88ee52fd92f4f8c2d6f5e01ea82dd9eb"},(0,n.kt)("inlineCode",{parentName:"a"},"a3e8430"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): fix firefox issue for fit content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87aa113667ea53d83d479cd52347e7298e60e9b0"},(0,n.kt)("inlineCode",{parentName:"a"},"87aa113"))),(0,n.kt)("li",{parentName:"ul"},"change(statistics): rearrange controls order ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b19ae70568f18873732ff62ee82251c9256a214d"},(0,n.kt)("inlineCode",{parentName:"a"},"b19ae70"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): add max width to wrap text for all content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/758f8ce09f78a6343ac0226e5d332c0216dea95b"},(0,n.kt)("inlineCode",{parentName:"a"},"758f8ce"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): add max width to label so it wraps the text ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/824a12702f133485a1c254e267d9e75c1b22048c"},(0,n.kt)("inlineCode",{parentName:"a"},"824a127"))),(0,n.kt)("li",{parentName:"ul"},"change(Side menu & in page navigation): styling according to figma design #221 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b2df858a2dc88f61d686ad0991e711dc763f4cc6"},(0,n.kt)("inlineCode",{parentName:"a"},"b2df858"))),(0,n.kt)("li",{parentName:"ul"},"change(header): align header with latest figma changes #232 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/135cd68307c6ebdc5d48b361d1696457c6f99b4c"},(0,n.kt)("inlineCode",{parentName:"a"},"135cd68"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): integration when cards also contain call to action buttons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f0d876616b211c79dde5b18c1fe862ff019073a1"},(0,n.kt)("inlineCode",{parentName:"a"},"f0d8766"))),(0,n.kt)("li",{parentName:"ul"},"refactor(iconography): icon group headings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b9ccd8031049d6b91c5676930ea3e44d9587435d"},(0,n.kt)("inlineCode",{parentName:"a"},"b9ccd80"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add variables for some sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8eae84ef665d7b3331090a8a8ac6b714ecdacbb3"},(0,n.kt)("inlineCode",{parentName:"a"},"8eae84e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Statisctic): Rename slateVariation to extraVariation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a07c5896c8c4b8f3179622f335e3f02e68dadfbd"},(0,n.kt)("inlineCode",{parentName:"a"},"a07c589"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): started example on how to add headings for iconography ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53cf8431446954eee6c5d27be31e15c075ffe16d"},(0,n.kt)("inlineCode",{parentName:"a"},"53cf843"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): remove center alignment of rounded cards body area, only the image is now centered ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fdfac4876903272b437c7dcf0e65f7cfe66bbf66"},(0,n.kt)("inlineCode",{parentName:"a"},"fdfac48"))),(0,n.kt)("li",{parentName:"ul"},"change(color): updated link colors #234 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/feabfe7a3b6d6b89bfd4065a32bae8148ddc5a4c"},(0,n.kt)("inlineCode",{parentName:"a"},"feabfe7"))),(0,n.kt)("li",{parentName:"ul"},"change(mockup): Access to figma style tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0bb25bec495f9046a15924ee92f4f17152148ba8"},(0,n.kt)("inlineCode",{parentName:"a"},"0bb25be"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): update margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5190f56e134d672ccb9d5d1a8efacac4d41530d3"},(0,n.kt)("inlineCode",{parentName:"a"},"5190f56"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button): adjust vertical margin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/db6d44102171738907b4b03fcc5f526463f59389"},(0,n.kt)("inlineCode",{parentName:"a"},"db6d441")))),(0,n.kt)("h4",{id:"-internal-changes-12"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(statistic): update decimal point ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7976aa4cac4c56e70e196eb62791a2b3f2aba749"},(0,n.kt)("inlineCode",{parentName:"a"},"7976aa4"))),(0,n.kt)("li",{parentName:"ul"},"style(link): update visited link color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d3b18b305bb2bd2f20bb2509584a6bc86b0e252c"},(0,n.kt)("inlineCode",{parentName:"a"},"d3b18b3")))),(0,n.kt)("h4",{id:"-documentation-changes-11"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(iconography): added icons, guidelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0073f1d42600be1d14bff406083b112014a2061f"},(0,n.kt)("inlineCode",{parentName:"a"},"0073f1d")))),(0,n.kt)("h4",{id:"\ufe0f-others-30"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Delete 2-test-new-page.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/749eff9b81e1c08068650cff1aba6cd574ea403b"},(0,n.kt)("inlineCode",{parentName:"a"},"749eff9"))),(0,n.kt)("li",{parentName:"ul"},"Create 2-test-new-page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab623ffc27f65e3e5fdcfe627009df1799582325"},(0,n.kt)("inlineCode",{parentName:"a"},"ab623ff"))),(0,n.kt)("li",{parentName:"ul"},"Release 0.9.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/eb7e2e57b5f2778e709b67deee3624f6e9f9e716"},(0,n.kt)("inlineCode",{parentName:"a"},"eb7e2e5"))),(0,n.kt)("li",{parentName:"ul"},"stylelint fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/114e3f97c6209f100aae2d6e24c595b7ba0a6500"},(0,n.kt)("inlineCode",{parentName:"a"},"114e3f9"))),(0,n.kt)("li",{parentName:"ul"},"Move text fragments style to site.overrides ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8368cbe2cecfc296a2fc81dd0bb49cb9e9a9314c"},(0,n.kt)("inlineCode",{parentName:"a"},"8368cbe"))),(0,n.kt)("li",{parentName:"ul"},"Styling scroll-to-text fragments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1bb39148717cdac922c403a0cdbfa3681a65dd9f"},(0,n.kt)("inlineCode",{parentName:"a"},"1bb3914"))),(0,n.kt)("li",{parentName:"ul"},"Update Header.stories.js ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9036c74d54640df2ccfcfdea9ddcdb29787d8ae2"},(0,n.kt)("inlineCode",{parentName:"a"},"9036c74"))),(0,n.kt)("li",{parentName:"ul"},"feature(Docusaurus): Reflect usage of remixicon in iconography page #239 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0802b32c13d978e380960befb78647dadb2d7e53"},(0,n.kt)("inlineCode",{parentName:"a"},"0802b32"))),(0,n.kt)("li",{parentName:"ul"},"Update 1-design.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/146115a13ac7a1943b6878df42f0b8e7f1fcd3f1"},(0,n.kt)("inlineCode",{parentName:"a"},"146115a"))),(0,n.kt)("li",{parentName:"ul"},"Test workflow for contribution - taskman refs #154076 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dcb924f79306ba26bb5168ac0a12d82c0c354caa"},(0,n.kt)("inlineCode",{parentName:"a"},"dcb924f"))),(0,n.kt)("li",{parentName:"ul"},"perf(figma): access to style tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/27d8dbe3c282e187f93bc4d93a0c9aa5c8162b00"},(0,n.kt)("inlineCode",{parentName:"a"},"27d8dbe"))),(0,n.kt)("li",{parentName:"ul"},"Rename 2-test-new-page to 2-test-new-page.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4e3be106cc4739e60ee5038901dbb626cf17f2e7"},(0,n.kt)("inlineCode",{parentName:"a"},"4e3be10")))),(0,n.kt)("h3",{id:"081---2022-08-26"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.8.0...0.8.1"},"0.8.1")," - 2022-08-26"),(0,n.kt)("h4",{id:"-bug-fixes-23"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(message): fix size controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee51e1dca4f84aeb9e39be525016f751acc147de"},(0,n.kt)("inlineCode",{parentName:"a"},"ee51e1d"))),(0,n.kt)("li",{parentName:"ul"},"fix(docusaurus): intro page hero title color now that headers are using tertiary color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/618e3cb7ac5533b1c087aea10452947c8676ab4e"},(0,n.kt)("inlineCode",{parentName:"a"},"618e3cb")))),(0,n.kt)("h4",{id:"-enhancements-30"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(message): restore semantic variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1c16621b4862efc64d82d475798ed40938c65f5e"},(0,n.kt)("inlineCode",{parentName:"a"},"1c16621"))),(0,n.kt)("li",{parentName:"ul"},"refactor(messages): mix semantc and token colors for messages ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/12efa75c30956df9958058242be4b8732819a5a1"},(0,n.kt)("inlineCode",{parentName:"a"},"12efa75"))),(0,n.kt)("li",{parentName:"ul"},"refactor(emotiveColors): temp update for tests ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/61a720c1ddbbad2c5bab17c8b2f890618f2a747c"},(0,n.kt)("inlineCode",{parentName:"a"},"61a720c"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): removed line between sections and moved actions back to the bottom of footer ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d9f33e4cf5a517acfbae497d6cb2fdccb048c281"},(0,n.kt)("inlineCode",{parentName:"a"},"d9f33e4"))),(0,n.kt)("li",{parentName:"ul"},"change(storybook): headings storybook now uses tertiary color by default reflecting site options ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1061e7749de2d4fe1233ccdc7f6f835ad491504a"},(0,n.kt)("inlineCode",{parentName:"a"},"1061e77"))),(0,n.kt)("li",{parentName:"ul"},"refactor(message): add container to story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1259ecead7162d2a46f5e802ba07e7e0dcb72e42"},(0,n.kt)("inlineCode",{parentName:"a"},"1259ece"))),(0,n.kt)("li",{parentName:"ul"},"refactor(message): remove override with custom background color on error ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9b40cd7ef2cca901e65a812585943c2e2d867b5f"},(0,n.kt)("inlineCode",{parentName:"a"},"9b40cd7"))),(0,n.kt)("li",{parentName:"ul"},"refactor(message): add header controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/960c2f7b524b1f049bb2f666e3e8278feca506da"},(0,n.kt)("inlineCode",{parentName:"a"},"960c2f7"))),(0,n.kt)("li",{parentName:"ul"},"change(message): use semantic colors for messages #204 from eea/refactor-message ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/22d2c43cd55a82621f2da3103652677b4b45db1a"},(0,n.kt)("inlineCode",{parentName:"a"},"22d2c43")))),(0,n.kt)("h4",{id:"-documentation-changes-12"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(figma): added figma files to repo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6bd4144ffc9c563ce224a07fe942fc4f2615c53f"},(0,n.kt)("inlineCode",{parentName:"a"},"6bd4144")))),(0,n.kt)("h3",{id:"080---2022-08-20"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.7.6...0.8.0"},"0.8.0")," - 2022-08-20"),(0,n.kt)("h4",{id:"-new-features-18"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(IconCard): card with icon instead of image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a85a1791e3a1245474dcafc4fd833350156dccb4"},(0,n.kt)("inlineCode",{parentName:"a"},"a85a179")))),(0,n.kt)("h4",{id:"-bug-fixes-24"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(docusaurus): typography guideline now has real font values for headings, body, caption and small text ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9508db918687b524c4d464539b9a4667399abb43"},(0,n.kt)("inlineCode",{parentName:"a"},"9508db9"))),(0,n.kt)("li",{parentName:"ul"},"fix(card): fix content gaps, adjust new meta section and update text color for default ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f1a78e14fc9a4b809572bd5d4d45bd10711c6eaa"},(0,n.kt)("inlineCode",{parentName:"a"},"f1a78e1"))),(0,n.kt)("li",{parentName:"ul"},"fix(item): remove duplicate argType ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dde0be5f7fe362143e248f7e53aa1d2e5df1fda0"},(0,n.kt)("inlineCode",{parentName:"a"},"dde0be5"))),(0,n.kt)("li",{parentName:"ul"},"fix(iconCard): add aria-label at links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/44f64c7127c0ccabbbf81eb5a838ee0f63284cea"},(0,n.kt)("inlineCode",{parentName:"a"},"44f64c7"))),(0,n.kt)("li",{parentName:"ul"},"fix(card): merge fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/df440ecd89eeb228f6f28df9109b84460cdfd523"},(0,n.kt)("inlineCode",{parentName:"a"},"df440ec"))),(0,n.kt)("li",{parentName:"ul"},"fix(heroblock): color even on edit page by inheriting color instead of using the tertiary color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac53fb74dedafcce231d1ca72843eff8a589c530"},(0,n.kt)("inlineCode",{parentName:"a"},"ac53fb7"))),(0,n.kt)("li",{parentName:"ul"},"fix(tab): add tabindex for accessibility error ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab512be71b86a3b696a228840e34d297928485ab"},(0,n.kt)("inlineCode",{parentName:"a"},"ab512be"))),(0,n.kt)("li",{parentName:"ul"},"fix(carousel): restore missing variable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1728312162d102aa2812eb3c7a55dac83bca8a04"},(0,n.kt)("inlineCode",{parentName:"a"},"1728312"))),(0,n.kt)("li",{parentName:"ul"},"fix(carousel): restore flex grow for cards and opacity for arrows ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce71305ab3fed5ff5c09b577e970050d3b29a2cb"},(0,n.kt)("inlineCode",{parentName:"a"},"ce71305")))),(0,n.kt)("h4",{id:"-enhancements-31"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(carousel) add links in carousel cards & update structure and variables of less files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f99cb219f3a95f5aab49a180434a4f5e0db14462"},(0,n.kt)("inlineCode",{parentName:"a"},"f99cb21"))),(0,n.kt)("li",{parentName:"ul"},"refactor(iconCard): add control for variations and link ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5e1b6a1c7ab9fdce138c5643bc01763a02bed287"},(0,n.kt)("inlineCode",{parentName:"a"},"5e1b6a1"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus, fonts): documented font letter spacing modification ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/522712aeddb55f4ff96fdf4e8bea26f4575504ec"},(0,n.kt)("inlineCode",{parentName:"a"},"522712a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): css updates for card variations and styling updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c8b4a43dd25c50e77e8c71fa8fbc45cd70bde94e"},(0,n.kt)("inlineCode",{parentName:"a"},"c8b4a43"))),(0,n.kt)("li",{parentName:"ul"},"refactor(publicationCard): add links and fix accessibily issue ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/80adf6ce0f01e577c34ddba8b345a1fc562f6711"},(0,n.kt)("inlineCode",{parentName:"a"},"80adf6c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add new section in meta and remove links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bfb82ae9635d26ef478db3d63b39f67b25d11fd5"},(0,n.kt)("inlineCode",{parentName:"a"},"bfb82ae"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): add stackable functionality ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8d714fad0465cc71650dcb41236d5667ccc3e789"},(0,n.kt)("inlineCode",{parentName:"a"},"8d714fa"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): update meta section and controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5e28e12bacec6a226659553b8244aeb0165378c9"},(0,n.kt)("inlineCode",{parentName:"a"},"5e28e12"))),(0,n.kt)("li",{parentName:"ul"},"refactor(roundedCard): remove unnecessary code and controls and add all variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6305c54df14faada4058c602af2e33dbc4fad39d"},(0,n.kt)("inlineCode",{parentName:"a"},"6305c54"))),(0,n.kt)("li",{parentName:"ul"},"refactor(roundedCard): add optional link for image and header ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a6d3bf27031d189c403c4a099b09a9066a1620a2"},(0,n.kt)("inlineCode",{parentName:"a"},"a6d3bf2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add tertiary hover and update css selectors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca069484da914520c92f7d67ac92c476ff2ee4a2"},(0,n.kt)("inlineCode",{parentName:"a"},"ca06948"))),(0,n.kt)("li",{parentName:"ul"},"change(fonts): updated font sizes with values given in figma ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4b0ae48ab140d8bbbf6ccbf46eda8d957195ca50"},(0,n.kt)("inlineCode",{parentName:"a"},"4b0ae48"))),(0,n.kt)("li",{parentName:"ul"},"change(style): color, space and adjust line-height as described in docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3366da262ba2dc1c34f57964accf4d6ef6ed37e1"},(0,n.kt)("inlineCode",{parentName:"a"},"3366da2"))),(0,n.kt)("li",{parentName:"ul"},"change(headings): only h2-h6 get tertiary color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d81308c4c0d52d5610a922146f5b426d9eaf323"},(0,n.kt)("inlineCode",{parentName:"a"},"7d81308"))),(0,n.kt)("li",{parentName:"ul"},"change(site): removed Archivo import as we should only use Roboto font ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a6af0564667075d2012c114acb2ad8e1f39b926f"},(0,n.kt)("inlineCode",{parentName:"a"},"a6af056"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): use tertiary color for headings and body color mirroring the design system styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/145fe7348a19b51784a2879225d1b71a642eed45"},(0,n.kt)("inlineCode",{parentName:"a"},"145fe73"))),(0,n.kt)("li",{parentName:"ul"},"change(fonts): modified headings font size as well as line height ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f0771ea1942b6ef436a03c256491a690a52d7413"},(0,n.kt)("inlineCode",{parentName:"a"},"f0771ea"))),(0,n.kt)("li",{parentName:"ul"},"change(fonts): updated font sizes with values given in figma ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f16eef7128ed4f2e7fe97b1ec77f651dc062b771"},(0,n.kt)("inlineCode",{parentName:"a"},"f16eef7"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): use Roboto font from google fonts also for docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/adca8e911faac2d541eb2b9fecf1d9db5b8f9b4c"},(0,n.kt)("inlineCode",{parentName:"a"},"adca8e9"))),(0,n.kt)("li",{parentName:"ul"},"change(headers): added headerColor variable so that thematic sites can easily choose another heading color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f09d2c5e95e82077cc7dfef43a5c56fc73d435c3"},(0,n.kt)("inlineCode",{parentName:"a"},"f09d2c5"))),(0,n.kt)("li",{parentName:"ul"},"change(fonts): typo fixes for typography section of docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cae4b02b20ff578f5cad7c4238c36baa3cae545a"},(0,n.kt)("inlineCode",{parentName:"a"},"cae4b02"))),(0,n.kt)("li",{parentName:"ul"},"change(fonts): modified footer and header values afer global font size changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f160d354b36dc2bee0707b6d63097d5f08408abe"},(0,n.kt)("inlineCode",{parentName:"a"},"f160d35"))),(0,n.kt)("li",{parentName:"ul"},"refactor(iconCards): run prettier ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fe84e46adbc385098385120d14e7583b890db027"},(0,n.kt)("inlineCode",{parentName:"a"},"fe84e46"))),(0,n.kt)("li",{parentName:"ul"},"change(typography): inherit header colors with @headerColor variable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91d93577772534f67bb74df0c9ed260bbaccdd4c"},(0,n.kt)("inlineCode",{parentName:"a"},"91d9357"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumb): use tertiary color also for breadcrumb ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5cbd44bcabae36bcb99a1e987d701e2ea75434b"},(0,n.kt)("inlineCode",{parentName:"a"},"c5cbd44"))),(0,n.kt)("li",{parentName:"ul"},"change(heading): on homepage on the first hero set font size to h1 and inherit color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5711096e45c57b0c3c871f8dcf870c05405d217d"},(0,n.kt)("inlineCode",{parentName:"a"},"5711096"))),(0,n.kt)("li",{parentName:"ul"},"refactor(carousel): update card titles to display styling fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/edd966b5648be51f2d4056c68489648574506656"},(0,n.kt)("inlineCode",{parentName:"a"},"edd966b"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): use the tertiary color for body and heading colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/11c4ed4683df4527ce79155bc65424789e3864af"},(0,n.kt)("inlineCode",{parentName:"a"},"11c4ed4"))),(0,n.kt)("li",{parentName:"ul"},"change(typography): modified lineheight-0 after headers now use 1.2 instead of 1.25 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/04d78a8b0094d9187548e1e3b16d6fbf2248821c"},(0,n.kt)("inlineCode",{parentName:"a"},"04d78a8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add links to cards and replace description with title in carousel ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0258737d26bbb3015ee6222ec878e0477001f615"},(0,n.kt)("inlineCode",{parentName:"a"},"0258737")))),(0,n.kt)("h4",{id:"\ufe0f-others-31"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feature(heading): and cards refactoring #227 from eea/develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/334fbda2d5b751858d4cc8cae832ca7f5c1ad6c2"},(0,n.kt)("inlineCode",{parentName:"a"},"334fbda"))),(0,n.kt)("li",{parentName:"ul"},"Update package.json ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3870cf3265f0dab4e181c94a6657b9fa408bf186"},(0,n.kt)("inlineCode",{parentName:"a"},"3870cf3"))),(0,n.kt)("li",{parentName:"ul"},"Header refactor 153536 #226 from eea/header-refactor-153536 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87a6fe73211eb028861e099a67e90d365c5111ea"},(0,n.kt)("inlineCode",{parentName:"a"},"87a6fe7"))),(0,n.kt)("li",{parentName:"ul"},"feature(item): icon is now stackable moving the icon on top #220 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b716acfc850345d666d99840445798cdae201a63"},(0,n.kt)("inlineCode",{parentName:"a"},"b716acf")))),(0,n.kt)("h3",{id:"076---2022-08-15"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.7.5...0.7.6"},"0.7.6")," - 2022-08-15"),(0,n.kt)("h4",{id:"-enhancements-32"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(footer): Footer updates 147837 #225 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fa9ae580c7fd45fb4983672167cb5b0b33cc6279"},(0,n.kt)("inlineCode",{parentName:"a"},"fa9ae58"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): initial redesign of main section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8e85617157cdc31a7470acfcd72b85d8fadd1bce"},(0,n.kt)("inlineCode",{parentName:"a"},"8e85617"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): restructure theme sites logo columns ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dcba45a0bfd832c7d5d1e092db8ea4040eceda57"},(0,n.kt)("inlineCode",{parentName:"a"},"dcba45a"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): set actions before thematic section on mobile ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/db25f966a214c94677192215181453e9d59ca957"},(0,n.kt)("inlineCode",{parentName:"a"},"db25f96"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): fix missing key warning from react dev ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/77f72d5bdc719805a6314058c741387ee7155d28"},(0,n.kt)("inlineCode",{parentName:"a"},"77f72d5"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): Footer updates 147837 #222 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32fed231f1209caeddb18e0bb75d670f20bafb88"},(0,n.kt)("inlineCode",{parentName:"a"},"32fed23")))),(0,n.kt)("h3",{id:"075---2022-08-11"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.7.3...0.7.5"},"0.7.5")," - 2022-08-11"),(0,n.kt)("h4",{id:"-enhancements-33"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(megamenu): mobile improvements with See all links, active elements and non accordion children #224 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6767b99fea3925b35e9dede0a67ea90242e5e730"},(0,n.kt)("inlineCode",{parentName:"a"},"6767b99"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): render accordion only if children have children ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/be63ce2a8e240eac26eedeff0ca104813afbc6b3"},(0,n.kt)("inlineCode",{parentName:"a"},"be63ce2"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): mobile menu design tweaks as seen in latest figma ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/26d74dc063f0b3f8d541c714a10038d79145047e"},(0,n.kt)("inlineCode",{parentName:"a"},"26d74dc"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): removed icon from at a change menu items and they are no longer bold as requested ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/043e77219979711d2f25845c6811b546e791fbf7"},(0,n.kt)("inlineCode",{parentName:"a"},"043e772"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): reset first level panels after each item pass ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/175351bdc9bab5c2d02b2717c24071ba62d4b924"},(0,n.kt)("inlineCode",{parentName:"a"},"175351b"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): mobile menu improvements #223 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b3cabfe3ddc42c2ea39ae20d01bb6fd0db478ecc"},(0,n.kt)("inlineCode",{parentName:"a"},"b3cabfe"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): fixed key error warnings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/075bf0167554869e9fc2f4938c972112e4afa2f7"},(0,n.kt)("inlineCode",{parentName:"a"},"075bf01"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): handle default active sub accordion ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6192a9938b53522682953cb73d7ccfc6ef9c1aec"},(0,n.kt)("inlineCode",{parentName:"a"},"6192a99"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): enable active border only for items not titles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fb0b8696dd73cbf3083c3006a7cff5a1901a6bac"},(0,n.kt)("inlineCode",{parentName:"a"},"fb0b869")))),(0,n.kt)("h4",{id:"\ufe0f-others-32"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Update package.json ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e21e00dc1e0b54daef2c71311a9da709bc1f7e6d"},(0,n.kt)("inlineCode",{parentName:"a"},"e21e00d")))),(0,n.kt)("h3",{id:"073---2022-08-04"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.7.2...0.7.3"},"0.7.3")," - 2022-08-04"),(0,n.kt)("h4",{id:"-enhancements-34"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(megamenu): added icon on mega menu header section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d0ad4d80fc4941e0cdbd8a2d81415387f86efc1c"},(0,n.kt)("inlineCode",{parentName:"a"},"d0ad4d8")))),(0,n.kt)("h3",{id:"072---2022-08-03"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.7.1...0.7.2"},"0.7.2")," - 2022-08-03"),(0,n.kt)("h4",{id:"-bug-fixes-25"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(contentBox): z-index of content hidden by bg when using content-box-inner ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5a7dac923d648d8fe9c9a9cbb8001969d32aea2"},(0,n.kt)("inlineCode",{parentName:"a"},"c5a7dac")))),(0,n.kt)("h4",{id:"\ufe0f-others-33"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Set focus on search input field in the popup on click ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d12c05106d9b95df1885ffa12cb284a0e50e0dfd"},(0,n.kt)("inlineCode",{parentName:"a"},"d12c051"))),(0,n.kt)("li",{parentName:"ul"},"Make cypress tests work with both slate and draft selectors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4d8e5b1d7719637a46eac8232891fc5ed1f51b6f"},(0,n.kt)("inlineCode",{parentName:"a"},"4d8e5b1")))),(0,n.kt)("h3",{id:"071---2022-08-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.7.0...0.7.1"},"0.7.1")," - 2022-08-01"),(0,n.kt)("h3",{id:"070---2022-08-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.6.5...0.7.0"},"0.7.0")," - 2022-08-01"),(0,n.kt)("h4",{id:"-new-features-19"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(accordion,buttons): primary, secondary and tertiary variations #209 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c34617f7a7d7b6b7568c3127f4ae0f52bd57cf8a"},(0,n.kt)("inlineCode",{parentName:"a"},"c34617f")))),(0,n.kt)("h4",{id:"-bug-fixes-26"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(megamenu): key warning errors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ecd27921546204dfa4aa23d25188876e52cda7a"},(0,n.kt)("inlineCode",{parentName:"a"},"4ecd279"))),(0,n.kt)("li",{parentName:"ul"},"fix(container): add padding also for block editors when we are on the add page not just edit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b857aad7855c30c5059b0f0f7c0f720826a71aa7"},(0,n.kt)("inlineCode",{parentName:"a"},"b857aad"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): bump opacity of gradient class to get rid of green hue of header text ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2011b40d384ae5b54a0525e6d9afc88c02f6ca90"},(0,n.kt)("inlineCode",{parentName:"a"},"2011b40"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): remove console log ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3a200233609bbcea39d8e519dc292a132a98aaa3"},(0,n.kt)("inlineCode",{parentName:"a"},"3a20023")))),(0,n.kt)("h4",{id:"-enhancements-35"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(callToAction): add tertiary variant and restructure exports ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac6695ab3066c41739ec4852f0ec3c3bb6cea346"},(0,n.kt)("inlineCode",{parentName:"a"},"ac6695a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(accordion): add color variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3504c15cc861803dc263fb2ad3b6a478043ced33"},(0,n.kt)("inlineCode",{parentName:"a"},"3504c15"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): WIP bringing back rendering of item with callback and path modification ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e43d4340ea82afde950e5fee44a76119060fc28"},(0,n.kt)("inlineCode",{parentName:"a"},"6e43d43"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): add slide down transition and update targetRefs on close ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/96671574f5f7dd992269c42e509598f62bba516d"},(0,n.kt)("inlineCode",{parentName:"a"},"9667157"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): use renderMenuItem in order to render menu items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9ed5cbdf120ee2c92e5f14c09e5289a5abe3f8b0"},(0,n.kt)("inlineCode",{parentName:"a"},"9ed5cbd"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): replaced eionet logo with an svg variant and tweaked size of eionet to match size of eea logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32ce4623ad454edec864ad6c8b45cbf99465bede"},(0,n.kt)("inlineCode",{parentName:"a"},"32ce462"))),(0,n.kt)("li",{parentName:"ul"},"refactor(callToAction): update tertiary state colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/159668ac526a98032392bcbd2c115dc448193152"},(0,n.kt)("inlineCode",{parentName:"a"},"159668a"))),(0,n.kt)("li",{parentName:"ul"},"change(accordion): style default accordion using the grey from semantic ui ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e24907df397457bd9704905aa29ea5d7e1d396cd"},(0,n.kt)("inlineCode",{parentName:"a"},"e24907d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(accordion): add variations and create a default export ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a9c68ffe933c9d700e46db3e0cbbd9e3820c7c7"},(0,n.kt)("inlineCode",{parentName:"a"},"4a9c68f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(colors): add tertiary shades for element states ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1e24a7e13b50f1ee7bd9bd44f3b2eb8e4460c691"},(0,n.kt)("inlineCode",{parentName:"a"},"1e24a7e"))),(0,n.kt)("li",{parentName:"ul"},"change(tests): try to modify tests to use slate instead of draft ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a2e248593433a7a8bf612008c12a3a20a0049d86"},(0,n.kt)("inlineCode",{parentName:"a"},"a2e2485"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): set active class on storybook list items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/112bff195cd07e789b352ae239a148a168b4d877"},(0,n.kt)("inlineCode",{parentName:"a"},"112bff1"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): add border for active element of menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5e7dfa539dc0d126dfb057ac2d293c94b31561bb"},(0,n.kt)("inlineCode",{parentName:"a"},"5e7dfa5"))),(0,n.kt)("li",{parentName:"ul"},"change(package): condition modification of navDepth settings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dd21dadf34f87f08223be3b98c06e7a2f0714326"},(0,n.kt)("inlineCode",{parentName:"a"},"dd21dad"))),(0,n.kt)("li",{parentName:"ul"},"change(mega menu): use non variable to fix build of volto-kitkat-frontend ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ecd652405ba616c9defc86fd793f8c066c0af1e"},(0,n.kt)("inlineCode",{parentName:"a"},"3ecd652"))),(0,n.kt)("li",{parentName:"ul"},"change(header): prefix mega-menu active class for adding border ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32898cb19c20ee7696c51b99cd9df25a333ae6e9"},(0,n.kt)("inlineCode",{parentName:"a"},"32898cb"))),(0,n.kt)("li",{parentName:"ul"},"change(tests): use data-slate-editor instead of contents that was found in draft js instead of slate ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1e0413cf117c098b188e00249c323f2f718b9299"},(0,n.kt)("inlineCode",{parentName:"a"},"1e0413c"))),(0,n.kt)("li",{parentName:"ul"},"change(stories): hide variant control from button link story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/43f8c412f6762edbed9c60e613736d5b60677cd1"},(0,n.kt)("inlineCode",{parentName:"a"},"43f8c41"))),(0,n.kt)("li",{parentName:"ul"},"change(stories): hide variant control from button link story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aea712668331f5681028d961b42a05655f1113d3"},(0,n.kt)("inlineCode",{parentName:"a"},"aea7126")))),(0,n.kt)("h4",{id:"\ufe0f-others-34"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feature(theme): added context navigation component story and default style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5a6955fe935cf6a07f6593164014ed4c9e77d88f"},(0,n.kt)("inlineCode",{parentName:"a"},"5a6955f"))),(0,n.kt)("li",{parentName:"ul"},"feature(megamenu): open default accordions on mobile navigation based on pathname ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cc299c1047f96aa5f85cdc4bb8bb9b3b4fb9ca5e"},(0,n.kt)("inlineCode",{parentName:"a"},"cc299c1"))),(0,n.kt)("li",{parentName:"ul"},"fix eslint warnings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3b30282ea4df59f2d05644cae5c1d703b4dc48b3"},(0,n.kt)("inlineCode",{parentName:"a"},"3b30282"))),(0,n.kt)("li",{parentName:"ul"},"bump release version to 0.7.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fa82cbd7d50765c322bc5c7c58abb5675e0aadad"},(0,n.kt)("inlineCode",{parentName:"a"},"fa82cbd"))),(0,n.kt)("li",{parentName:"ul"},"Theme fixes, mega menu selected element both in desktop and mobile #211 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4827292a9badb02f178b7431cc63e11070784ea"},(0,n.kt)("inlineCode",{parentName:"a"},"b482729"))),(0,n.kt)("li",{parentName:"ul"},"feature(mega-menu): added menu slide down animation #208 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4360d0ef570fbfcc9989170219f7826e5ed780cf"},(0,n.kt)("inlineCode",{parentName:"a"},"4360d0e")))),(0,n.kt)("h3",{id:"065---2022-07-06"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.6.1...0.6.5"},"0.6.5")," - 2022-07-06"),(0,n.kt)("h4",{id:"-bug-fixes-27"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(header): double click to close dropdown is no longer required ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8a2ed0d1e671d12239ecaf250e68b3187c12a53"},(0,n.kt)("inlineCode",{parentName:"a"},"b8a2ed0"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): menu generation when atAGlance isn't found ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d68b03c05f7671e7ea154efe0199c29a3734fbcf"},(0,n.kt)("inlineCode",{parentName:"a"},"d68b03c"))),(0,n.kt)("li",{parentName:"ul"},"fix(menu): removed minHeight that enlarged the global menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/133be1e43d9b7778fd94388629400c5f2b707ff4"},(0,n.kt)("inlineCode",{parentName:"a"},"133be1e"))),(0,n.kt)("li",{parentName:"ul"},"fix(hero): image dimensions when full width and height isn't enabled ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4114f731cce63dc520bfd00cd487943181cec2ee"},(0,n.kt)("inlineCode",{parentName:"a"},"4114f73"))),(0,n.kt)("li",{parentName:"ul"},"fix(contentBox): removed negative z-index that hid fullwidth bg color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bd60faff53205da95d94930517f2ac830ec523d1"},(0,n.kt)("inlineCode",{parentName:"a"},"bd60faf")))),(0,n.kt)("h4",{id:"-enhancements-36"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(hero): tweaked hero block height and padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/994b6f8943c061657792df8adcbdee5da487ce43"},(0,n.kt)("inlineCode",{parentName:"a"},"994b6f8"))),(0,n.kt)("li",{parentName:"ul"},"change(item): tweak size and padding of icon when used inside item ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dbdef191e70bf59dcfddf63c8f9f9a1343266a59"},(0,n.kt)("inlineCode",{parentName:"a"},"dbdef19"))),(0,n.kt)("li",{parentName:"ul"},"change(typography): updated letterspacing values and clarified values used for certain type tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8a13bf8b3691d288209532842fb2c80962d652c0"},(0,n.kt)("inlineCode",{parentName:"a"},"8a13bf8"))),(0,n.kt)("li",{parentName:"ul"},"change(item): enable theming for icon and text color and added tertiary option ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d4444feedd1cd7e6e8f8da630b4b53a19050d1b"},(0,n.kt)("inlineCode",{parentName:"a"},"6d4444f"))),(0,n.kt)("li",{parentName:"ul"},"change(header): top section chevron sizes and margin as requested in enhancements document ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b307c74a671c10a5a6703dcb2126c3c36679c6f5"},(0,n.kt)("inlineCode",{parentName:"a"},"b307c74"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): add underline to links when applied to headers and use tertiary color by default ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/874f956c61e65ddbb6a240865f3946bb84247712"},(0,n.kt)("inlineCode",{parentName:"a"},"874f956"))),(0,n.kt)("li",{parentName:"ul"},"change(utilities): wrap in quotes h2 and h3 of quoted-wrapper ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8aa471604fb127cfa535373bb90a44b4204dd0f4"},(0,n.kt)("inlineCode",{parentName:"a"},"8aa4716"))),(0,n.kt)("li",{parentName:"ul"},"change(package): bump package version to 0.6.5 denoting bug fixes release ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0585aebaeb9e3483ba230110d99a1a875590ad66"},(0,n.kt)("inlineCode",{parentName:"a"},"0585aeb")))),(0,n.kt)("h3",{id:"061---2022-07-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.6.0...0.6.1"},"0.6.1")," - 2022-07-01"),(0,n.kt)("h4",{id:"-new-features-20"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(UnderlinedTitle): create story and necessary utilities ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8beb56b64ca76fb9f0f6df0f3554e64449a64868"},(0,n.kt)("inlineCode",{parentName:"a"},"8beb56b"))),(0,n.kt)("li",{parentName:"ul"},"feat(headers): added underlined titles with theming support ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af675616f9e002458501cf8b90742514153a298f"},(0,n.kt)("inlineCode",{parentName:"a"},"af67561")))),(0,n.kt)("h4",{id:"-enhancements-37"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(heading): move underline story and update controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2c9bfd279eafc44435d223be326f9496856c2154"},(0,n.kt)("inlineCode",{parentName:"a"},"2c9bfd2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(underlineTitle): add content box for different variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/087891535059d6c2d7d2c2accded20f6ba601bb5"},(0,n.kt)("inlineCode",{parentName:"a"},"0878915"))),(0,n.kt)("li",{parentName:"ul"},"refactor(underlinedTitle): add control for changing heading size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/211f5158bff2b437aac60f26ba63f9adb6be540a"},(0,n.kt)("inlineCode",{parentName:"a"},"211f515"))),(0,n.kt)("li",{parentName:"ul"},"refactor(underlinedTitle): Restore text variation dropdown control ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bd8c61129d2c80475af8d0e9310412d5c3a82169"},(0,n.kt)("inlineCode",{parentName:"a"},"bd8c611"))),(0,n.kt)("li",{parentName:"ul"},"refactor(utilities): add color variation for headings and text ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e3a779ec4fa3b712fcd32124f6f83ab784d2223"},(0,n.kt)("inlineCode",{parentName:"a"},"7e3a779"))),(0,n.kt)("li",{parentName:"ul"},"refactor(utilities): update border bottom utility and restore line height for headings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7fe4a7b9fee579d213fe3945a4e548ff089784bd"},(0,n.kt)("inlineCode",{parentName:"a"},"7fe4a7b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(headings): update the line height of headers according to docusaurus instructions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9da19b3e1ea1fd93431e00edf3dc9a443e94f27a"},(0,n.kt)("inlineCode",{parentName:"a"},"9da19b3")))),(0,n.kt)("h4",{id:"-internal-changes-13"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(countup): package for statistics ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/26fcd09bbd8d44119d5ca957542863be8c64836b"},(0,n.kt)("inlineCode",{parentName:"a"},"26fcd09")))),(0,n.kt)("h3",{id:"060---2022-07-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.5.5...0.6.0"},"0.6.0")," - 2022-07-01"),(0,n.kt)("h4",{id:"-bug-fixes-28"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(item): adjust the container in stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a848c46b5bf3153ec993a21a530e120bae872407"},(0,n.kt)("inlineCode",{parentName:"a"},"a848c46"))),(0,n.kt)("li",{parentName:"ul"},"fix(tag): align start for tags on mobile, update path for Tag List and add containers ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b9de8452c42ed6d16028ce147f2d7a062b895d67"},(0,n.kt)("inlineCode",{parentName:"a"},"b9de845"))),(0,n.kt)("li",{parentName:"ul"},"fix(item): update image width & height on mobiles and add 3 line clamp for description ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0cd2c46c945ff85b55183994990fae9cf450f3d1"},(0,n.kt)("inlineCode",{parentName:"a"},"0cd2c46"))),(0,n.kt)("li",{parentName:"ul"},"fix(pageheader): metadata font size on mobile to be readable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0a9b1fa7db6f0b11265f9eb4d28f25b23bedc79a"},(0,n.kt)("inlineCode",{parentName:"a"},"0a9b1fa"))),(0,n.kt)("li",{parentName:"ul"},"fix(breadcrumb): fixed variable name for breadcrumb item ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2b547eb43e0db4aa9bb63b4e4ba7f541f357fbd0"},(0,n.kt)("inlineCode",{parentName:"a"},"2b547eb")))),(0,n.kt)("h4",{id:"-enhancements-38"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(Item):create item story with custom default class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/069ae02a7cc2b15b7e6732e46f52d07eaa4502b1"},(0,n.kt)("inlineCode",{parentName:"a"},"069ae02"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pagination): add pastanage menu overrides and remove any eea theme css from default story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/508081090baaeb455130c760c6c0e7e23972d84a"},(0,n.kt)("inlineCode",{parentName:"a"},"5080810"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): update variables from px to rem ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/30eed78c170e5719ba4fb85c3a171db3f97d63c8"},(0,n.kt)("inlineCode",{parentName:"a"},"30eed78"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Item):add default item mobile padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/35184655e3225b8ad63626c8e521b5dcf59eaa3b"},(0,n.kt)("inlineCode",{parentName:"a"},"3518465"))),(0,n.kt)("li",{parentName:"ul"},"change(site): added fixes from custom ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0fe4d80586c8877d58905ec40aa7df19c2f4e32f"},(0,n.kt)("inlineCode",{parentName:"a"},"0fe4d80"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Pagination): add default pagination stopry and rename previous as Secondary ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a5e3e13b40d4d1d0c96f1efaa3a0c326d60c6d93"},(0,n.kt)("inlineCode",{parentName:"a"},"a5e3e13"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pagination): comment out secondary pagination and its styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bcf4cff1cff490718751475354b8fb32da174383"},(0,n.kt)("inlineCode",{parentName:"a"},"bcf4cff"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tags): remove content class and add flex wrap ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d6333ca7e61a588d8ffe4d0d2e02005c0aa12379"},(0,n.kt)("inlineCode",{parentName:"a"},"d6333ca"))),(0,n.kt)("li",{parentName:"ul"},"change(logo): use a real svg logo for white eea logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3b80dc7698c3dbab5d3834cc62f5102c2ace0166"},(0,n.kt)("inlineCode",{parentName:"a"},"3b80dc7"))),(0,n.kt)("li",{parentName:"ul"},"change(header): show eea information systems on tablet as well ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce82cebb554eb11a35ea2b3ee0c62bc645716476"},(0,n.kt)("inlineCode",{parentName:"a"},"ce82ceb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): update letter spacing tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f8753b7527b1bf7271102666a8662a74b2b1775"},(0,n.kt)("inlineCode",{parentName:"a"},"5f8753b"))),(0,n.kt)("li",{parentName:"ul"},"change(letterspacing): updated letter spacing positive values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b31818f292ce7ce8711084116a7b4df78cca33f0"},(0,n.kt)("inlineCode",{parentName:"a"},"b31818f"))),(0,n.kt)("li",{parentName:"ul"},"change(pageheader): add bottom margin on mobile for sharing dropdown actions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d3cda4732ec94dac91b36ef10014fbbe08a0a470"},(0,n.kt)("inlineCode",{parentName:"a"},"d3cda47"))),(0,n.kt)("li",{parentName:"ul"},"change(pageheader): removed blogger, reddit and stumbleupon sharing links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e4acc4e83c120cda59d94f04867a53e21bf322ab"},(0,n.kt)("inlineCode",{parentName:"a"},"e4acc4e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Item): add default item background color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c978c8d05355065466a8a661844237a9df103b94"},(0,n.kt)("inlineCode",{parentName:"a"},"c978c8d"))),(0,n.kt)("li",{parentName:"ul"},"change(package): bump package version ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f01f72ba6b09b6aae00c54e446bafddb48c4cd1"},(0,n.kt)("inlineCode",{parentName:"a"},"1f01f72")))),(0,n.kt)("h4",{id:"-internal-changes-14"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(item): update item image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e585e9d8c85a3627696b55c0505e29e8a8c33f7f"},(0,n.kt)("inlineCode",{parentName:"a"},"e585e9d")))),(0,n.kt)("h4",{id:"-documentation-changes-13"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(colors): token usage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c433ec6fcf190f85ab1dd81ea3e63eeb381d0c28"},(0,n.kt)("inlineCode",{parentName:"a"},"c433ec6"))),(0,n.kt)("li",{parentName:"ul"},"docs(Docusaurus): typography and spacing updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48d1269dce396aec26db1d1e2f777851a26eaa81"},(0,n.kt)("inlineCode",{parentName:"a"},"48d1269"))),(0,n.kt)("li",{parentName:"ul"},"docs(Docusaurus): various fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a972a31f7932d29d61a46da251c0c98994516365"},(0,n.kt)("inlineCode",{parentName:"a"},"a972a31"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/66d95e4fee695a20de47f5476712034f9f07f4a8"},(0,n.kt)("inlineCode",{parentName:"a"},"66d95e4")))),(0,n.kt)("h4",{id:"\ufe0f-others-35"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Tabs block custom border left/top ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca4cce05ddb603a26d729dfe31f0f11fda7563fb"},(0,n.kt)("inlineCode",{parentName:"a"},"ca4cce0"))),(0,n.kt)("li",{parentName:"ul"},"Fix sidebar tabs in Volto CSS ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c287db5abbfe068d4b255c41fd58d0433d2640c4"},(0,n.kt)("inlineCode",{parentName:"a"},"c287db5")))),(0,n.kt)("h3",{id:"055---2022-06-23"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.5.4...0.5.5"},"0.5.5")," - 2022-06-23"),(0,n.kt)("h4",{id:"-bug-fixes-29"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(contentBox): color of cards when inside content-boxes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/76a452031473f43928dee1d3ee705d06101e6a21"},(0,n.kt)("inlineCode",{parentName:"a"},"76a4520")))),(0,n.kt)("h4",{id:"-enhancements-39"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(homepage): moved fixes of homepage to custom and colored carousel arrow ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0a226ef3f5d328d45513764bec02d58241417db0"},(0,n.kt)("inlineCode",{parentName:"a"},"0a226ef")))),(0,n.kt)("h3",{id:"054---2022-06-16"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.5.3...0.5.4"},"0.5.4")," - 2022-06-16"),(0,n.kt)("h4",{id:"-bug-fixes-30"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(block-style): Content box preview in sidebar ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6362766f5e8dabf778e3864d2bb08966a55fc078"},(0,n.kt)("inlineCode",{parentName:"a"},"6362766"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): ensure transparency goes as high as the search icon ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4470e132e1e70fba3fdfb33fc63a1cc9d62700e8"},(0,n.kt)("inlineCode",{parentName:"a"},"4470e13")))),(0,n.kt)("h4",{id:"-enhancements-40"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(contentBox): add background as before element instead of using full-width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e0a5962c1b9cb0d3ef9a8d7b7208eded34eb3ce"},(0,n.kt)("inlineCode",{parentName:"a"},"7e0a596"))),(0,n.kt)("li",{parentName:"ul"},"change(content-box): content box links are now underlined ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f7976f50f5807a884522d6dba871a2757a1c5a98"},(0,n.kt)("inlineCode",{parentName:"a"},"f7976f5"))),(0,n.kt)("li",{parentName:"ul"},"change(homepage): added fixes from custom ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c3e03331d328f4fd7c6689f93bc1f1156013b8a9"},(0,n.kt)("inlineCode",{parentName:"a"},"c3e0333"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): add margin top with the height of the top section on edit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fefa6bb0f513e221ddb587f081c0e7d0c3067dfd"},(0,n.kt)("inlineCode",{parentName:"a"},"fefa6bb"))),(0,n.kt)("li",{parentName:"ul"},"change(cards): fix default card color when inside content-boxes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6fdf3aabf9515289b36a5822e21edc5d282c4536"},(0,n.kt)("inlineCode",{parentName:"a"},"6fdf3aa"))),(0,n.kt)("li",{parentName:"ul"},"change(container): removed override of content-box-inner container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/66fe7d45adc631c3ebf0e8dd11de19d7ff60b894"},(0,n.kt)("inlineCode",{parentName:"a"},"66fe7d4")))),(0,n.kt)("h3",{id:"053---2022-06-16"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.5.2...0.5.3"},"0.5.3")," - 2022-06-16"),(0,n.kt)("h4",{id:"-bug-fixes-31"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(homepage): hero and homepage fixes for #151156 #198 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/43d4efc508750e0e9cbb93b9bffc3721be452c5a"},(0,n.kt)("inlineCode",{parentName:"a"},"43d4efc"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): fixed top section width on edit page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce5898b5ee41ea6959a2c454b3fb98216d71feb3"},(0,n.kt)("inlineCode",{parentName:"a"},"ce5898b")))),(0,n.kt)("h4",{id:"-enhancements-41"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(hero): added min height to hero-block-image-wrapper ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3cc37c027597573281710c9db98c687057d261dd"},(0,n.kt)("inlineCode",{parentName:"a"},"3cc37c0"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): spaced hero block has a 3rem margin top and bottom ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c463b033dda601bfd475b282bc0003200a053d45"},(0,n.kt)("inlineCode",{parentName:"a"},"c463b03"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): added extra top margin on hero-block-body from tablet and up within homepage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/64142c3c45f6a8ea6502842055a2341dcf16088c"},(0,n.kt)("inlineCode",{parentName:"a"},"64142c3"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): tweak min height of hero block ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e1271b4b5fdcd8205f0bec8b88ab9ae31f62251f"},(0,n.kt)("inlineCode",{parentName:"a"},"e1271b4"))),(0,n.kt)("li",{parentName:"ul"},"change(card,contentBox): use inherit for text color to inherit black from body ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c1ba3b6ddc16ddc7394aba8d78cad73b5a8c34cb"},(0,n.kt)("inlineCode",{parentName:"a"},"c1ba3b6"))),(0,n.kt)("li",{parentName:"ul"},"change(container): on section-edit modify only left and right padding values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fe6e3ec764643ec01e20ae9dbdde921774ef04cd"},(0,n.kt)("inlineCode",{parentName:"a"},"fe6e3ec"))),(0,n.kt)("li",{parentName:"ul"},"change(utilities): bump z-index of overlay class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ede3209556b620d2252bb03d4c994a92b6708fd2"},(0,n.kt)("inlineCode",{parentName:"a"},"ede3209"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): fixed variable reference for margin of body from homepage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/092b90b2a902b71cc96132ca3c96108edda56342"},(0,n.kt)("inlineCode",{parentName:"a"},"092b90b")))),(0,n.kt)("h3",{id:"052---2022-06-14"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.5.1...0.5.2"},"0.5.2")," - 2022-06-14"),(0,n.kt)("h4",{id:"-new-features-21"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(contentBox) : add new Content Box component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ebbb47fe685f9809aa3572263be376d9688371e"},(0,n.kt)("inlineCode",{parentName:"a"},"2ebbb47"))),(0,n.kt)("li",{parentName:"ul"},"feat(ContentBox): Add primary, secondary, tertiary themes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87cb2fe7e4cd5c2872299756f493e371abcbb05f"},(0,n.kt)("inlineCode",{parentName:"a"},"87cb2fe"))),(0,n.kt)("li",{parentName:"ul"},"feat(ContentBox): Update storybook with available themes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93b26b2f5f1d627aa8049df61257499e4798dd79"},(0,n.kt)("inlineCode",{parentName:"a"},"93b26b2")))),(0,n.kt)("h4",{id:"-enhancements-42"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(contentBox): restructure the component to be more flexible ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f0d2de67e43fafa10052871f99ac841c83cf8157"},(0,n.kt)("inlineCode",{parentName:"a"},"f0d2de6")))),(0,n.kt)("h4",{id:"-internal-changes-15"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(contentBox) : add lint changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5aaf740594f0001b1672bb6dc18d973f55c881f0"},(0,n.kt)("inlineCode",{parentName:"a"},"5aaf740")))),(0,n.kt)("h4",{id:"\ufe0f-others-36"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"perf(eol): change to lf ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/78b2955ff73d9436134d1a6399040b2d7c7f5714"},(0,n.kt)("inlineCode",{parentName:"a"},"78b2955"))),(0,n.kt)("li",{parentName:"ul"},"Cleanup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2b128dface95b560588a343f1ddf7bbaf3efb320"},(0,n.kt)("inlineCode",{parentName:"a"},"2b128df")))),(0,n.kt)("h3",{id:"051---2022-06-13"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.5.0...0.5.1"},"0.5.1")," - 2022-06-13"),(0,n.kt)("h4",{id:"-enhancements-43"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(header): changed homepage text color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/64ce8b61f8f2150513e09bf2926b48aa2ae1071c"},(0,n.kt)("inlineCode",{parentName:"a"},"64ce8b6"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): added styles for adding dark overlay to hero ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bf1d292fecfa8a6b222558f0d93f48e19bf6b8ea"},(0,n.kt)("inlineCode",{parentName:"a"},"bf1d292"))),(0,n.kt)("li",{parentName:"ul"},"change(homepage): hide stagingBanner on homepage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fb6e319dd10f4d148cc8f3b33dafc43280a0254f"},(0,n.kt)("inlineCode",{parentName:"a"},"fb6e319"))),(0,n.kt)("li",{parentName:"ul"},"change(header): use variable for homepage hero-block padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/89ff3441f269281ffb3da32cd3e5c64715b3204b"},(0,n.kt)("inlineCode",{parentName:"a"},"89ff344"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): modified grey-4 color to point to a 10% shade from original color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b406283e61c7356bec9d453567cd1ccde496880d"},(0,n.kt)("inlineCode",{parentName:"a"},"b406283"))),(0,n.kt)("li",{parentName:"ul"},"change(header): added min-height for mega menu needed for 1 items menus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/18814f48fb743c88d05554e9a1773f8d85dec86c"},(0,n.kt)("inlineCode",{parentName:"a"},"18814f4"))),(0,n.kt)("li",{parentName:"ul"},"change(hero): hero section block integration #192 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ea2f40583951016c164c9abdf22d8e809d207fe"},(0,n.kt)("inlineCode",{parentName:"a"},"4ea2f40")))),(0,n.kt)("h4",{id:"\ufe0f-others-37"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Add hero block style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fa39656fd661d8af95f483a6f33a08e4c93c42f1"},(0,n.kt)("inlineCode",{parentName:"a"},"fa39656"))),(0,n.kt)("li",{parentName:"ul"},"Add padding if hero block is not full-width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/808b83957d6a866cc31c928f414fa8fa5da517a1"},(0,n.kt)("inlineCode",{parentName:"a"},"808b839"))),(0,n.kt)("li",{parentName:"ul"},"Cleanup available languages ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0c490512a6a6524efe9a37b4b61ab0061a240abb"},(0,n.kt)("inlineCode",{parentName:"a"},"0c49051"))),(0,n.kt)("li",{parentName:"ul"},"Use 1.5 rem ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1125cd7c65332fc5961ffbbbd2d2ab6bcc8b1b5b"},(0,n.kt)("inlineCode",{parentName:"a"},"1125cd7")))),(0,n.kt)("h3",{id:"050---2022-06-11"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.4.5...0.5.0"},"0.5.0")," - 2022-06-11"),(0,n.kt)("h4",{id:"-new-features-22"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(hero): added storybook implementation of hero component #172 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/17b9d1693e31bf7b3b41ca84be7bd21f07065674"},(0,n.kt)("inlineCode",{parentName:"a"},"17b9d16"))),(0,n.kt)("li",{parentName:"ul"},"feat(hero): add hero block component and stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6019fc843ec14a8afc7558e92c2d4b4bb14ee199"},(0,n.kt)("inlineCode",{parentName:"a"},"6019fc8")))),(0,n.kt)("h4",{id:"-bug-fixes-32"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(header): Internal links in mega menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d8ca13558c3e8c336800791f2fea8a8d33a2b602"},(0,n.kt)("inlineCode",{parentName:"a"},"d8ca135"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): show active menu when clicking on children ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a54fa67a1a92e2ab4216e6d149f66e1ee53aab89"},(0,n.kt)("inlineCode",{parentName:"a"},"a54fa67"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): accessibility and dropdown possition fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/505ac36a27d86e620fb5af515a0b8b5979610f0a"},(0,n.kt)("inlineCode",{parentName:"a"},"505ac36"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): fix accessibility issue by David ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/783dcec0d140e6e6e568d0f82833dcbf8a5c7d3d"},(0,n.kt)("inlineCode",{parentName:"a"},"783dcec"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): dropdowns disappear on resize ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/52338fd3e711f4918612e052dc2034a8d9bd40bd"},(0,n.kt)("inlineCode",{parentName:"a"},"52338fd"))),(0,n.kt)("li",{parentName:"ul"},"fix(header-topdropdown): dedupe html elements for topdropdowns ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cd8a2a7ea091e81b736438f7c2a87c254af1b092"},(0,n.kt)("inlineCode",{parentName:"a"},"cd8a2a7"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): transparency class should apply on the current bg color or image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f9a0033c5538cb19f08f26cf28d47954cc52607d"},(0,n.kt)("inlineCode",{parentName:"a"},"f9a0033"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): mobile dropdown now visible ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/34371b436f2ec100f3920f78de49983ba16679b0"},(0,n.kt)("inlineCode",{parentName:"a"},"34371b4"))),(0,n.kt)("li",{parentName:"ul"},"fix(header): dropdown disappears after window resize #116 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fc7dd8bd7911421fb734a696a2dd5d3ad3b652b0"},(0,n.kt)("inlineCode",{parentName:"a"},"fc7dd8b"))),(0,n.kt)("li",{parentName:"ul"},"fix(header-topdropdown): dedupe html dropdown elements for topdropdowns #115 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f10a7a8743a5fb2cecd0c3374ec9d894e914143f"},(0,n.kt)("inlineCode",{parentName:"a"},"f10a7a8")))),(0,n.kt)("h4",{id:"-enhancements-44"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): update mega menu in header component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2d1ce454553d116efa96288079b8b77649e10abb"},(0,n.kt)("inlineCode",{parentName:"a"},"2d1ce45"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update structure and variables of top bar ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af709094f94f0cc2e2309b1aedb376e45dc7f136"},(0,n.kt)("inlineCode",{parentName:"a"},"af70909"))),(0,n.kt)("li",{parentName:"ul"},"change(header): renamed mega menu items href attribute to url ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ed8144589f87a9ad219c97193863c999a72cb6d"},(0,n.kt)("inlineCode",{parentName:"a"},"3ed8144"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update main section and and add color variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2f0fd1de7c04eff4b2a9b62d03dd13a1b0d69bc"},(0,n.kt)("inlineCode",{parentName:"a"},"f2f0fd1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): minor updates on colors and widths ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a70129fd929fedb344a47e049cca94274e84a3b1"},(0,n.kt)("inlineCode",{parentName:"a"},"a70129f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero): add full-heigh control to adjust height ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a45cb7c599cdc11426207001e67d8f7d727233fe"},(0,n.kt)("inlineCode",{parentName:"a"},"a45cb7c"))),(0,n.kt)("li",{parentName:"ul"},"change(header): disable sticky setting until feature is more stable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1d7af954c85cb6a8a657c1625e4ae863e562346a"},(0,n.kt)("inlineCode",{parentName:"a"},"1d7af95"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero):make button variant and inverted different button controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e182ca9ecdb76507205d84f83cad6a79dd74a03"},(0,n.kt)("inlineCode",{parentName:"a"},"7e182ca"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header):main bar sticky on scroll up ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9c9e7c6f9651c0663a1eab1856d7324a73afb2de"},(0,n.kt)("inlineCode",{parentName:"a"},"9c9e7c6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(headings): update heading sizes for mobile ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19f3ccacaf2c744b5f5c2ec8635773de7ef0016b"},(0,n.kt)("inlineCode",{parentName:"a"},"19f3cca"))),(0,n.kt)("li",{parentName:"ul"},"change(header): hide first link(home) from header menu on site ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ae7f3b9385620eb3d840dd90f512e37cd8556a6d"},(0,n.kt)("inlineCode",{parentName:"a"},"ae7f3b9"))),(0,n.kt)("li",{parentName:"ul"},"change(megamenu): typo correction and key setting on list.items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/96d2c4fbfa722d22a215e8d27f1400e65fe9476e"},(0,n.kt)("inlineCode",{parentName:"a"},"96d2c4f"))),(0,n.kt)("li",{parentName:"ul"},"change(header): use Link instead of a tag for menu items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9812b3fba7b8305399d6972daf135b8a2d88e876"},(0,n.kt)("inlineCode",{parentName:"a"},"9812b3f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add control for inverted logo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/023ca45e6f263166211cbea0d63b1938d11221da"},(0,n.kt)("inlineCode",{parentName:"a"},"023ca45"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero): move quoted utility to h2 tag ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7376676b4875494f16c49945f6b5dac19c6b8009"},(0,n.kt)("inlineCode",{parentName:"a"},"7376676"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add link for menu title inside desktop mega menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24355d000b2bd808b2031cd2b78e60cafb9ad5b1"},(0,n.kt)("inlineCode",{parentName:"a"},"24355d0"))),(0,n.kt)("li",{parentName:"ul"},"refactor(utilities): update hex with color token ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8dc65ef55a62dcb32b6eb8a684524a8dc1fa6ba6"},(0,n.kt)("inlineCode",{parentName:"a"},"8dc65ef"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): and mega menu to latest spec #114 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/44fcf68be242f97ced852b28ac3ab820dc0e1045"},(0,n.kt)("inlineCode",{parentName:"a"},"44fcf68"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update search input and file endings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/afab36f96f245e197eff528cb1d9e6fea45bc7ba"},(0,n.kt)("inlineCode",{parentName:"a"},"afab36f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add control that toggles transparency class on main section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8d4bdb9c527f102ffd3718f32bf1a43309a9bb4"},(0,n.kt)("inlineCode",{parentName:"a"},"b8d4bdb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): restore union dropdown after implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e98bab497ee10ad89d2dfed76c7117b633206fe"},(0,n.kt)("inlineCode",{parentName:"a"},"7e98bab"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): minor responsive fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/16a000634505c9e8f8b310860a30b62798a0fb87"},(0,n.kt)("inlineCode",{parentName:"a"},"16a0006"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero): align hero's text and meta seperately ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4fa958f7c7cc6d331a8eb7aaf25dc44d6cd3632a"},(0,n.kt)("inlineCode",{parentName:"a"},"4fa958f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero):add button variant controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f362a7b2ec273131fa0876f23b74c740c7217b3a"},(0,n.kt)("inlineCode",{parentName:"a"},"f362a7b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update search input ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/368962eabb668e2ec1bdcd18ae81658e7b1d911b"},(0,n.kt)("inlineCode",{parentName:"a"},"368962e"))),(0,n.kt)("li",{parentName:"ul"},"change(header): mark top level active menu item ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/665c449bc2667cc1471a4b97923c897ad3506792"},(0,n.kt)("inlineCode",{parentName:"a"},"665c449"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero):prettier & style changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d84688440417a430afd9fd24f4c8cfeef0121203"},(0,n.kt)("inlineCode",{parentName:"a"},"d846884"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add control for main section stickiness ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2f07572f78074137e7e6a49585273210ed5cedcb"},(0,n.kt)("inlineCode",{parentName:"a"},"2f07572"))),(0,n.kt)("li",{parentName:"ul"},"change(header): use viewport width for changing mobile text in header dropdowns ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b50fa585c0abeedc04a46395f08e50a9e112c430"},(0,n.kt)("inlineCode",{parentName:"a"},"b50fa58"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add fluid font sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f2743e39107fd1bd00a54e03bf92963eb9853f2"},(0,n.kt)("inlineCode",{parentName:"a"},"5f2743e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header) add position sticky & transparent for main section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/29df772edfe23b1752aa3d184659eea90c3c9221"},(0,n.kt)("inlineCode",{parentName:"a"},"29df772"))),(0,n.kt)("li",{parentName:"ul"},"refactor(hero): update variables with new design tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1d9792231c50f12fd68364e201054f6ab0926665"},(0,n.kt)("inlineCode",{parentName:"a"},"1d97922"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Language List): render language dropdown as ul and li elements ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3617442da78af07d3f473d0c43c47dd48c9b2ac3"},(0,n.kt)("inlineCode",{parentName:"a"},"3617442"))),(0,n.kt)("li",{parentName:"ul"},"change(header): introduced item class to the mega menu link content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/00ca376ea4cf1de4851e84567b97c374ee7f66e3"},(0,n.kt)("inlineCode",{parentName:"a"},"00ca376"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Language List): add less variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7ccc1ccf57419b6eecbf71d479db72b84428d43a"},(0,n.kt)("inlineCode",{parentName:"a"},"7ccc1cc"))),(0,n.kt)("li",{parentName:"ul"},"change(header): disabled active menu when clicking on globalnav links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3f7b5eedb038b51fbae8a14a683dc6adc919549b"},(0,n.kt)("inlineCode",{parentName:"a"},"3f7b5ee"))),(0,n.kt)("li",{parentName:"ul"},"change(header): target link instead of span directly ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9e865fbb5b256196756c3d84de397296ac0b447a"},(0,n.kt)("inlineCode",{parentName:"a"},"9e865fb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): remove unused imports ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e232db6ce0b2553be79d98d8497fa06f548b772"},(0,n.kt)("inlineCode",{parentName:"a"},"7e232db")))),(0,n.kt)("h4",{id:"\ufe0f-others-38"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Add item themes; override .block .ui.image width based on size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/06010db21398638d46d2e007317d72a7aff7e7d9"},(0,n.kt)("inlineCode",{parentName:"a"},"06010db"))),(0,n.kt)("li",{parentName:"ul"},"Move item icon themes to item.overrides ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/31e8921f4ee4d92ba3a9c58275b41dd3101cffd2"},(0,n.kt)("inlineCode",{parentName:"a"},"31e8921"))),(0,n.kt)("li",{parentName:"ul"},"Override only the width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8d4927084e5daedcb69e6f3a57cab73a9016a55f"},(0,n.kt)("inlineCode",{parentName:"a"},"8d49270"))),(0,n.kt)("li",{parentName:"ul"},"Override tile image in .block parrent ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/005655ddff6f45e211f1ff8156b0b7efa1e47a2e"},(0,n.kt)("inlineCode",{parentName:"a"},"005655d"))),(0,n.kt)("li",{parentName:"ul"},"Update package.json ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9dc38165a95deca1faf2dfccdc03fd6cab3d8c54"},(0,n.kt)("inlineCode",{parentName:"a"},"9dc3816"))),(0,n.kt)("li",{parentName:"ul"},"feature(item): added themes to item icons #190 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a6a2907df09575a18fb6e81dc52e8d6651eff118"},(0,n.kt)("inlineCode",{parentName:"a"},"a6a2907"))),(0,n.kt)("li",{parentName:"ul"},"update storybook header.topdropdown ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e58ac0821af56c06272e3373383647cbbff20978"},(0,n.kt)("inlineCode",{parentName:"a"},"e58ac08"))),(0,n.kt)("li",{parentName:"ul"},"use volto-screen-helper width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea156aad1100166ba78635163cfacdcfb913c1d4"},(0,n.kt)("inlineCode",{parentName:"a"},"ea156aa"))),(0,n.kt)("li",{parentName:"ul"},"Add divider content for metadata field in Banner ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/327ad1c5fdca0d376d04fd36084b940e5dd016ab"},(0,n.kt)("inlineCode",{parentName:"a"},"327ad1c"))),(0,n.kt)("li",{parentName:"ul"},"rename to viewportWidth ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32162e7c695774bbb68ac63a0008e8b148f1e9f5"},(0,n.kt)("inlineCode",{parentName:"a"},"32162e7"))),(0,n.kt)("li",{parentName:"ul"},"don't connect component to store ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/470b8bade5e8f2eaabb20a7bb02c8e82ca42f8a0"},(0,n.kt)("inlineCode",{parentName:"a"},"470b8ba"))),(0,n.kt)("li",{parentName:"ul"},"Add end of line ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51639d804a2b84f66373fb77c569bcc43b22e303"},(0,n.kt)("inlineCode",{parentName:"a"},"51639d8"))),(0,n.kt)("li",{parentName:"ul"},"behave as mobile under 480 only ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/11b99e15cb83245a32bb04f3937f5b95a60b1e95"},(0,n.kt)("inlineCode",{parentName:"a"},"11b99e1"))),(0,n.kt)("li",{parentName:"ul"},"make it account for all mobile-s,m,l ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/69e23ae8d12042f241dc53c9e296c340d5b17089"},(0,n.kt)("inlineCode",{parentName:"a"},"69e23ae")))),(0,n.kt)("h3",{id:"045---2022-06-08"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.4.4...0.4.5"},"0.4.5")," - 2022-06-08"),(0,n.kt)("h4",{id:"-enhancements-45"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(tabs): Add style for tabs accordion template #187 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fb8adbf84ac564a14d45bb6e8f4e1661811672d5"},(0,n.kt)("inlineCode",{parentName:"a"},"fb8adbf"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): avoid react error by providing key prop to grid column ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef0b1937d614a889a0c2117e483a834ed1aec1e3"},(0,n.kt)("inlineCode",{parentName:"a"},"ef0b193")))),(0,n.kt)("h4",{id:"\ufe0f-others-39"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Cleanup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4b9637ebd2d6c015f8d4323551c6cbc4b7506df"},(0,n.kt)("inlineCode",{parentName:"a"},"d4b9637"))),(0,n.kt)("li",{parentName:"ul"},"Add style for tabs accordion template ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a10998372a268b99991f7dda55103149f29d00cb"},(0,n.kt)("inlineCode",{parentName:"a"},"a109983")))),(0,n.kt)("h3",{id:"044---2022-06-08"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.4.3...0.4.4"},"0.4.4")," - 2022-06-08"),(0,n.kt)("h4",{id:"-new-features-23"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(divider): create story for divider ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b10a2e08b14962bed9f13317754f4124ee60d313"},(0,n.kt)("inlineCode",{parentName:"a"},"b10a2e0")))),(0,n.kt)("h4",{id:"-bug-fixes-33"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(divider): restore space between classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c595c152c144463f33757157ed7d6797ae31ceed"},(0,n.kt)("inlineCode",{parentName:"a"},"c595c15"))),(0,n.kt)("li",{parentName:"ul"},"fix(divider): Text colors and transform ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e524e1002bb0700ea69782cf5a95c6073ab383d2"},(0,n.kt)("inlineCode",{parentName:"a"},"e524e10"))),(0,n.kt)("li",{parentName:"ul"},"fix(footer): story aria labels for social media links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/254bdc7ba944943f5d08a71f9d0a3a31bdc06044"},(0,n.kt)("inlineCode",{parentName:"a"},"254bdc7")))),(0,n.kt)("h4",{id:"-enhancements-46"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update logos and less structure ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/66b8e0f12825968d94f7d572f2823d9a8a3a239b"},(0,n.kt)("inlineCode",{parentName:"a"},"66b8e0f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): first footer updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d18a2ee59d0deb143075d8dfeb949898ad1f6399"},(0,n.kt)("inlineCode",{parentName:"a"},"d18a2ee"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): logo updates and adjustments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/101bc9dfe4136240457f335de867a83c28d59339"},(0,n.kt)("inlineCode",{parentName:"a"},"101bc9d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): use tokens and adjust spacing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2cb166949913f725271050e863b38e7630748135"},(0,n.kt)("inlineCode",{parentName:"a"},"2cb1669"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): moved SubFooter logic to SubFooter.jsx from Footer story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/902383a0bb3446dc69237099bd429ead5e30a6c1"},(0,n.kt)("inlineCode",{parentName:"a"},"902383a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Divider):add divider with content inside story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2d66dca901fa189d69b65239dc34b1969097be8"},(0,n.kt)("inlineCode",{parentName:"a"},"e2d66dc"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): added managed by section as properties ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9328fc3084baf22439e1892d256d9a167b911849"},(0,n.kt)("inlineCode",{parentName:"a"},"9328fc3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(divider): remove custom divider ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4870d2252ad216e82213fa1f94cc39609ae676d"},(0,n.kt)("inlineCode",{parentName:"a"},"d4870d2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Divider_:remove green color class & add tertiary ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/95f30186bc1768e08f00ad7d5ffa2a70402ac553"},(0,n.kt)("inlineCode",{parentName:"a"},"95f3018"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): use remix icons for social links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5ef9aa2cebb6f96857a1920cefbf7e367b4d7c28"},(0,n.kt)("inlineCode",{parentName:"a"},"5ef9aa2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Divider):remove clean class and use fitted prop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8d2be350dcc44fd56b5fbfb791fb6b2a45bd8a52"},(0,n.kt)("inlineCode",{parentName:"a"},"8d2be35"))),(0,n.kt)("li",{parentName:"ul"},"change(Divider): Rename color property to theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0deffc823609d23131a85bc180e4a3f5a67a64aa"},(0,n.kt)("inlineCode",{parentName:"a"},"0deffc8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update links and logo align ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7afbab9b37982a557ac8bfa4430205ce912c3b8b"},(0,n.kt)("inlineCode",{parentName:"a"},"7afbab9"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): tweaked column sizes to the values before my changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fdf271868e44bce2904cc28c6fa924ee4c9ba759"},(0,n.kt)("inlineCode",{parentName:"a"},"fdf2718"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): to latest figma design #182 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e0ba2b659db9dc1b140d853840a06bd3ce31cab"},(0,n.kt)("inlineCode",{parentName:"a"},"3e0ba2b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): move subfooter logic to the proper component #185 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/303457719128c9699dd34939bd8db2b647977667"},(0,n.kt)("inlineCode",{parentName:"a"},"3034577"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b0b872b1415c9792a5886f619195f9c0471ea564"},(0,n.kt)("inlineCode",{parentName:"a"},"b0b872b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(testimonial): update divider ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/784450abdf395318fe89d8d3d0a1e398393cc93c"},(0,n.kt)("inlineCode",{parentName:"a"},"784450a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(testimonial): changed divider color to secondary ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/84282f960ab22ccb8403e975c055c61d1023193a"},(0,n.kt)("inlineCode",{parentName:"a"},"84282f9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(divider): remove custom divider from theme config ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a0409e8df3c9ba043717140455369a3630f0da85"},(0,n.kt)("inlineCode",{parentName:"a"},"a0409e8")))),(0,n.kt)("h4",{id:"-documentation-changes-14"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(divider): switch to secondary color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/239844be374a2f6bc4667e7ab3d2f52bfdc181ad"},(0,n.kt)("inlineCode",{parentName:"a"},"239844b"))),(0,n.kt)("li",{parentName:"ul"},"docs(divider): showcase path fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5ea03f60034edc918054aa273e44b84b2537716"},(0,n.kt)("inlineCode",{parentName:"a"},"d5ea03f")))),(0,n.kt)("h4",{id:"\ufe0f-others-40"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Remove unnecessary spaces ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d137981430809345bfb3ad494e7ab981c93c3e51"},(0,n.kt)("inlineCode",{parentName:"a"},"d137981"))),(0,n.kt)("li",{parentName:"ul"},"lint fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/657cf4ed917c4ff992aa033c3d9f4884a949d86d"},(0,n.kt)("inlineCode",{parentName:"a"},"657cf4e"))),(0,n.kt)("li",{parentName:"ul"},"perf(storybook): added storybook favicon ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/38eabc3124c85dd56bf5c68c0fb1e967c39055ec"},(0,n.kt)("inlineCode",{parentName:"a"},"38eabc3")))),(0,n.kt)("h3",{id:"043---2022-06-03"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.4.2...0.4.3"},"0.4.3")," - 2022-06-03"),(0,n.kt)("h4",{id:"-bug-fixes-34"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(edit): Fix columns/accordion inner toolbar padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fafbb525baa60c339906dc6a33d2f9418d050be6"},(0,n.kt)("inlineCode",{parentName:"a"},"fafbb52")))),(0,n.kt)("h4",{id:"-enhancements-47"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): completed removal of description from guides ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/42424b9213ece8d8df84d40f1b73e142cb0ffc6b"},(0,n.kt)("inlineCode",{parentName:"a"},"42424b9")))),(0,n.kt)("h3",{id:"042---2022-06-02"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.4.1...0.4.2"},"0.4.2")," - 2022-06-02"),(0,n.kt)("h4",{id:"-enhancements-48"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): moved color swatches around in the color guide ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8a395fce52a32cf92449a24d3d4cce5abf25a284"},(0,n.kt)("inlineCode",{parentName:"a"},"8a395fc"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): removed description from components and introduced category listing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f220bf0785f5aaede8c25c4164120b09de67b018"},(0,n.kt)("inlineCode",{parentName:"a"},"f220bf0"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): rename gap to space and added em spaces ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f5b042d311518ec3fb32c7f259c39ff62d4547f8"},(0,n.kt)("inlineCode",{parentName:"a"},"f5b042d"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): moved extra docs to webdev section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1ce0797b91418272e4e405467cd1468292620005"},(0,n.kt)("inlineCode",{parentName:"a"},"1ce0797"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): moved md_components files into webdev/md_components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/73c1c08a270d504fa6f2ba2579bcb3e6e25fb112"},(0,n.kt)("inlineCode",{parentName:"a"},"73c1c08"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): added category yml for all sections ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/17405728e3f44828da50890b9fc0f4e8a07f8bf2"},(0,n.kt)("inlineCode",{parentName:"a"},"1740572"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): color guideline updates and spacing tokens documentation #148 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c1154ba172c3b3b40b565c2bcb590f1a5e6b25a4"},(0,n.kt)("inlineCode",{parentName:"a"},"c1154ba"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): modified story links to avoid broken usage tabs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/78dc8d8f4e7cade3ab0e911e6dc002eefc1e7986"},(0,n.kt)("inlineCode",{parentName:"a"},"78dc8d8"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): renamed several file id's so that they match the incremental naming sequence ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/11299c9a4c41ca901926f852227dbca0bc1aee17"},(0,n.kt)("inlineCode",{parentName:"a"},"11299c9")))),(0,n.kt)("h4",{id:"-documentation-changes-15"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(Docusaurus): timeline, testimonial, quote and tags ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aaa54ecbe182872ffc7fff275d5065ebe790d348"},(0,n.kt)("inlineCode",{parentName:"a"},"aaa54ec"))),(0,n.kt)("li",{parentName:"ul"},"docs(spacing): add relative gap tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/92abc8fff2c7006e2c64684048e7783216a230bb"},(0,n.kt)("inlineCode",{parentName:"a"},"92abc8f"))),(0,n.kt)("li",{parentName:"ul"},"docs(colors): updated colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a28c99e60867c1eaa1b7b68d4154ccaa8c9ef958"},(0,n.kt)("inlineCode",{parentName:"a"},"a28c99e"))),(0,n.kt)("li",{parentName:"ul"},"docs(tags/content): new page about tags and content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/60be40268a77606c53fc45641bc22166b50b75e7"},(0,n.kt)("inlineCode",{parentName:"a"},"60be402"))),(0,n.kt)("li",{parentName:"ul"},"docs(Docusaurus): labeled icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6a0f61ede3a36c7d66d9b3091b93b0b5ff9a445"},(0,n.kt)("inlineCode",{parentName:"a"},"f6a0f61"))),(0,n.kt)("li",{parentName:"ul"},"docs(typography): add font size and line height tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ff65e47cfe56eb3efe976300b764ba13f8685ce"},(0,n.kt)("inlineCode",{parentName:"a"},"2ff65e4"))),(0,n.kt)("li",{parentName:"ul"},"docs(spacing): add spacing gap tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2d53727f8e817588421efea464e849c9f9e16dce"},(0,n.kt)("inlineCode",{parentName:"a"},"2d53727"))),(0,n.kt)("li",{parentName:"ul"},"docs(spacing): add missing gaps ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/442db468830150c8e4ad5f91775fc5b3c47dd655"},(0,n.kt)("inlineCode",{parentName:"a"},"442db46"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): minor fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e66513f08cff598881ce1051b482ddadf8e0593"},(0,n.kt)("inlineCode",{parentName:"a"},"6e66513"))),(0,n.kt)("li",{parentName:"ul"},"docs(spacing): aligned images ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e946fe59457b861a31939e99adf4b380777e01e0"},(0,n.kt)("inlineCode",{parentName:"a"},"e946fe5"))),(0,n.kt)("li",{parentName:"ul"},"docs(spacing): new image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fcd3294d53db76580b8bffc9678a09fd65b33113"},(0,n.kt)("inlineCode",{parentName:"a"},"fcd3294")))),(0,n.kt)("h4",{id:"\ufe0f-others-41"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"merge changes from develop into docusaurus token documentation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a9401384ddf5fcfbf29e50d34f3d7851be85f19a"},(0,n.kt)("inlineCode",{parentName:"a"},"a940138"))),(0,n.kt)("li",{parentName:"ul"},"perf(docs): restructuring order ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f4134d81d1cc59b8ba0d8669415b5eb31c0513d"},(0,n.kt)("inlineCode",{parentName:"a"},"8f4134d")))),(0,n.kt)("h3",{id:"041---2022-06-02"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.4.0...0.4.1"},"0.4.1")," - 2022-06-02"),(0,n.kt)("h4",{id:"-new-features-24"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(languageLabeledIcon) : add new component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/110558eeec37d5b5f616a95298a313ba230dd6f4"},(0,n.kt)("inlineCode",{parentName:"a"},"110558e"))),(0,n.kt)("li",{parentName:"ul"},"feat(LanguageLabeledIcon):add new component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d00200c278e1dab02b449b460a325e0f2e7b8ccd"},(0,n.kt)("inlineCode",{parentName:"a"},"d00200c"))),(0,n.kt)("li",{parentName:"ul"},"feat(newTabLabeledIcon) : add new component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f5cd31257a306a58c1d9cdbf7cb428701412369"},(0,n.kt)("inlineCode",{parentName:"a"},"8f5cd31"))),(0,n.kt)("li",{parentName:"ul"},"feat(labeledIconGroup) : add new component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/787d648342d78c4f9d28fde9d08e83089ef7b08f"},(0,n.kt)("inlineCode",{parentName:"a"},"787d648"))),(0,n.kt)("li",{parentName:"ul"},"feat(DownLoadLabeledIcon) : add new component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6ea2fa1ec17ce235401a8ac741afa8fede920d26"},(0,n.kt)("inlineCode",{parentName:"a"},"6ea2fa1")))),(0,n.kt)("h4",{id:"-bug-fixes-35"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(LabeledIcon) : fix lint errors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91b042f8c16bd3e99659c1c24a5f2a946c72b03f"},(0,n.kt)("inlineCode",{parentName:"a"},"91b042f"))),(0,n.kt)("li",{parentName:"ul"},"fix(LabeledIconGroup) : fix links for tests ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/daa10653ca37f3e83302e2ebcc566b5f5ec4c4d9"},(0,n.kt)("inlineCode",{parentName:"a"},"daa1065"))),(0,n.kt)("li",{parentName:"ul"},"fix(LanguageLabeledIcon):bug fix & languages change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1436e2bc270f8f079f07b7909254bd2e6e087084"},(0,n.kt)("inlineCode",{parentName:"a"},"1436e2b"))),(0,n.kt)("li",{parentName:"ul"},"fix(LabeledIconGroup):fix based on Langauge & Download Labeled icon components changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3015864ce740f534aa204402f85a9f392e342513"},(0,n.kt)("inlineCode",{parentName:"a"},"3015864"))),(0,n.kt)("li",{parentName:"ul"},"fix(newTabLabeledIcon) : add link item ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b1a9ada3dd7dae9e1841cfde5319a6ab37b15de2"},(0,n.kt)("inlineCode",{parentName:"a"},"b1a9ada"))),(0,n.kt)("li",{parentName:"ul"},"fix(Labeled Icons):minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/00f3022cdc2bfad634707f0d6d05768868f599be"},(0,n.kt)("inlineCode",{parentName:"a"},"00f3022")))),(0,n.kt)("h4",{id:"-enhancements-49"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcons): adjust new tab labeled icon to figma and replace px with rems ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/904615d789ea711678f43ce9f9d02a450289031f"},(0,n.kt)("inlineCode",{parentName:"a"},"904615d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(LanguageLabeledIcon):implement with pop up ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0f3dd8f0388484f94351a0ab0798ab53e84c9229"},(0,n.kt)("inlineCode",{parentName:"a"},"0f3dd8f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcon): add group wrapper in labeled icon stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4b7dd314230145b6239fd800d41f546ab5d9eebb"},(0,n.kt)("inlineCode",{parentName:"a"},"4b7dd31"))),(0,n.kt)("li",{parentName:"ul"},"refactor(DownloadLabeledIcon):implement with pop up ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aa61f9b7d449c08c08bc4c004da6a0458598c828"},(0,n.kt)("inlineCode",{parentName:"a"},"aa61f9b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcons): adjust language labeled icon to figma ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5741e3d2e95665ef12670335b12d29cfbf998fdc"},(0,n.kt)("inlineCode",{parentName:"a"},"5741e3d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcons): adjust download icon to figma and replace px with rems ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ae85307a62526fed75ef0b1d37ad59076370b5a"},(0,n.kt)("inlineCode",{parentName:"a"},"4ae8530"))),(0,n.kt)("li",{parentName:"ul"},"refactor(LanguageLabeledIcons):minor storybook change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/78f55442a80cbc2f716ba81274ed08204e3c502a"},(0,n.kt)("inlineCode",{parentName:"a"},"78f5544"))),(0,n.kt)("li",{parentName:"ul"},"refactor(LanguageLabeledIcon): set language code to uppercase and minor storybook change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac286931282c0a69bc6d7803e96cbe302db8994f"},(0,n.kt)("inlineCode",{parentName:"a"},"ac28693"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcon): adjust paddings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9c1ecddc52c81be1d952d0af67862a284eba9eec"},(0,n.kt)("inlineCode",{parentName:"a"},"9c1ecdd"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcons): update margins for group labeled icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5fa5ca9103a5d8ad1510c90cc8c46d0c82abcc63"},(0,n.kt)("inlineCode",{parentName:"a"},"5fa5ca9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcons): add variable for icon color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f9d3cba5115c5c91aaaca49c1f834950400673a"},(0,n.kt)("inlineCode",{parentName:"a"},"9f9d3cb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(labeledIcons): update colors on download links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c04264229c91bfdea927fd22f4ee1e8ddbcebd5c"},(0,n.kt)("inlineCode",{parentName:"a"},"c042642")))),(0,n.kt)("h4",{id:"-internal-changes-16"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(labeledIconGroup) : lint changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/535cee4795dff75b35856cb4406a9bd33ee07ca4"},(0,n.kt)("inlineCode",{parentName:"a"},"535cee4"))),(0,n.kt)("li",{parentName:"ul"},"style(downloadLabeledIcon) : fix styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d8e3acb3bac1a4174d4bb526d6188cb5e5f8faa"},(0,n.kt)("inlineCode",{parentName:"a"},"6d8e3ac"))),(0,n.kt)("li",{parentName:"ul"},"style(downloadLabeledIcon) : fix alignment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/455801701d2958515885ba2c398312f0c56057b0"},(0,n.kt)("inlineCode",{parentName:"a"},"4558017"))),(0,n.kt)("li",{parentName:"ul"},"chore(LabeledIconGroup) : lint changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab364763bb2526adbbb7fc3c656a16b497568940"},(0,n.kt)("inlineCode",{parentName:"a"},"ab36476")))),(0,n.kt)("h3",{id:"040---2022-06-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.3.1...0.4.0"},"0.4.0")," - 2022-06-01"),(0,n.kt)("h4",{id:"-new-features-25"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(Carousel): create carousel for cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2b0d73798b4fcbf2897d7a8167d9b4d3b3374fb2"},(0,n.kt)("inlineCode",{parentName:"a"},"2b0d737"))),(0,n.kt)("li",{parentName:"ul"},"feat(ItemwithIcons): Initial Item group with icons, new item variation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7f4ea476264856845a07cd24be6ec86ccd21ed8d"},(0,n.kt)("inlineCode",{parentName:"a"},"7f4ea47"))),(0,n.kt)("li",{parentName:"ul"},"feat(utilities): add file and basic utilities ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/05c88b294a49590e3fb355fb6e113f5020442915"},(0,n.kt)("inlineCode",{parentName:"a"},"05c88b2"))),(0,n.kt)("li",{parentName:"ul"},"feat(utilities): add file with basic utilities classes #173 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/855185ff22c77efb75cc5c7850d181254b4c4927"},(0,n.kt)("inlineCode",{parentName:"a"},"855185f")))),(0,n.kt)("h4",{id:"-bug-fixes-36"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(tokens): hsla function for shadows ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8e5d37a6e88321b1e2daf995b407c4ddd6e866e"},(0,n.kt)("inlineCode",{parentName:"a"},"b8e5d37"))),(0,n.kt)("li",{parentName:"ul"},"fix(tokens): remove css var from less file ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a9c422476b412287713a6b475406615c3aed2aca"},(0,n.kt)("inlineCode",{parentName:"a"},"a9c4224"))),(0,n.kt)("li",{parentName:"ul"},"fix(carousel):add storybook controls descriptions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/269a60383ed1e54fc57e26d4eed6b37d1da32236"},(0,n.kt)("inlineCode",{parentName:"a"},"269a603"))),(0,n.kt)("li",{parentName:"ul"},"fix(item): remove image width css from item.less ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7b21cb2d5ddf6a6f72646f47fd268a0bd7af757d"},(0,n.kt)("inlineCode",{parentName:"a"},"7b21cb2"))),(0,n.kt)("li",{parentName:"ul"},"fix(table): Set responsive breakpoint to @tabletBreakpoint ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/067e01842030bfa5639e2a55cb8af5047bb2996f"},(0,n.kt)("inlineCode",{parentName:"a"},"067e018")))),(0,n.kt)("h4",{id:"-enhancements-50"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(item): import item.less in theme definitions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c51637480192dbece828616010174648ac865e2e"},(0,n.kt)("inlineCode",{parentName:"a"},"c516374"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Label):add corner,ribbon & basic label stories and styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2bbbb947113a59127f91b86917ef0edbf36ab16"},(0,n.kt)("inlineCode",{parentName:"a"},"e2bbbb9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Label):style changes based on label importance class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce4d5d1a5bf1b1183242a253e37c509d61f82b8c"},(0,n.kt)("inlineCode",{parentName:"a"},"ce4d5d1"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): rename gap to space and added em spaces ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/719efc44070ef87f049a92e4da96bb111e9fc8ff"},(0,n.kt)("inlineCode",{parentName:"a"},"719efc4"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): add classes for size, set default to tile and add controls for grouped items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5a0405abba4e5f5d36f899dc9e47f43a96d5e49"},(0,n.kt)("inlineCode",{parentName:"a"},"d5a0405"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): add borders, shadows, shapes and z-index tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7069106c2b0ada9cdbad63249b4ada7fde72e05f"},(0,n.kt)("inlineCode",{parentName:"a"},"7069106"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): name spacing tokens gaps and added missing values up to 80px as documented ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9fbd912a6f027150149d82678f88885a939120b0"},(0,n.kt)("inlineCode",{parentName:"a"},"9fbd912"))),(0,n.kt)("li",{parentName:"ul"},"refactor(quote): Rename sourceInfo to extra info ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/76c2b400de4814fe79f303bfd2a82842c848231c"},(0,n.kt)("inlineCode",{parentName:"a"},"76c2b40"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): WIP replacing unstackable with row ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e3a44de4b2dd26667e80e0d131c55b08f3c527d9"},(0,n.kt)("inlineCode",{parentName:"a"},"e3a44de"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tocens): add color design tokens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/13bb165e103a25aadb9da6414773dc0d35081d88"},(0,n.kt)("inlineCode",{parentName:"a"},"13bb165"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): adjust margins to match figma designs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6334581b336a2f486e85199f371126beea47b92f"},(0,n.kt)("inlineCode",{parentName:"a"},"6334581"))),(0,n.kt)("li",{parentName:"ul"},"refactor(carousel): remove title from story and color on card hover ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/12a1d7c3bd5e7ba6edf4eb20a2d7a6f8f22955f9"},(0,n.kt)("inlineCode",{parentName:"a"},"12a1d7c"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): updated sizes with 4-8-16px increments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f53d655df2b24053a5d331c56dfd14bd3602dfd"},(0,n.kt)("inlineCode",{parentName:"a"},"1f53d65"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): added size tokens to be used for width of elements ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cda5dea1f6ad1ae980c89999d323d7b385894025"},(0,n.kt)("inlineCode",{parentName:"a"},"cda5dea"))),(0,n.kt)("li",{parentName:"ul"},"change(utilities): values need important rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/96150d9a22cb6be6f338f1e9d052cbd65e3602fc"},(0,n.kt)("inlineCode",{parentName:"a"},"96150d9"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): added also rem space values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aedbbddaf7f8be88ed2f8a2b8c21b60752896c53"},(0,n.kt)("inlineCode",{parentName:"a"},"aedbbdd"))),(0,n.kt)("li",{parentName:"ul"},"change(tokens): updated z-index tokens with negative values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/404efe4244d67276b435e60a1d7a69aaa90e3d8a"},(0,n.kt)("inlineCode",{parentName:"a"},"404efe4"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): add 14px font size token ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8d8695dce62e7f29af01447308460e4fe3f72b21"},(0,n.kt)("inlineCode",{parentName:"a"},"8d8695d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): restructured and improved sections navigation #174 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b47b0266ffd6baeaf1a5aea1a7ab22c909976de1"},(0,n.kt)("inlineCode",{parentName:"a"},"b47b026"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): add 12 and 14px font size token #176 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/368114729536f03dd85c2d3565b984c3bdfe3a72"},(0,n.kt)("inlineCode",{parentName:"a"},"3681147"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tokens): remove conditional border radius ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f0fe5ada7b74e9c87623dd2b2774283dd89b9a58"},(0,n.kt)("inlineCode",{parentName:"a"},"f0fe5ad")))),(0,n.kt)("h4",{id:"-documentation-changes-16"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(website): created new sections, improved website navigation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/243f0be4d7fa6e988da0ca0f586f5ea478573eef"},(0,n.kt)("inlineCode",{parentName:"a"},"243f0be"))),(0,n.kt)("li",{parentName:"ul"},"docs(homepage): adding design system homepage with links for upcoming sections ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c9a968508acff74d1182e68cf049046dafd564c5"},(0,n.kt)("inlineCode",{parentName:"a"},"c9a9685"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): copyedit, improved navigation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/998762a5bd40d08f619c00743b66d82b43aed653"},(0,n.kt)("inlineCode",{parentName:"a"},"998762a"))),(0,n.kt)("li",{parentName:"ul"},"docs(website): restructuring, moved current DS docs to new folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8bb612f1313dfc739d7912aa2e3252f468e1122f"},(0,n.kt)("inlineCode",{parentName:"a"},"8bb612f"))),(0,n.kt)("li",{parentName:"ul"},"docs(homepage): copy editing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ee37d6f1d282b973af744f4305c0eb94c0993113"},(0,n.kt)("inlineCode",{parentName:"a"},"ee37d6f")))),(0,n.kt)("h4",{id:"\ufe0f-others-42"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Release 0.4.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f4bc50928ab877f3670b181dbe6e8cfff7fa2daa"},(0,n.kt)("inlineCode",{parentName:"a"},"f4bc509"))),(0,n.kt)("li",{parentName:"ul"},"feature(homepage): added Item group with icons #167 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ec99f53aeb183b24073be4014a9c2ec30d5235c"},(0,n.kt)("inlineCode",{parentName:"a"},"2ec99f5"))),(0,n.kt)("li",{parentName:"ul"},"feature(tokens): added borders, z-index, shadows tokens #171 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/74c178837cedc7ee9fc55effde1096dc03245574"},(0,n.kt)("inlineCode",{parentName:"a"},"74c1788"))),(0,n.kt)("li",{parentName:"ul"},"feature(tokens): added initial color design tokens #169 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/da3eae05d07783aa5eadaed5d508ee3be8acc47d"},(0,n.kt)("inlineCode",{parentName:"a"},"da3eae0"))),(0,n.kt)("li",{parentName:"ul"},"perf(carousel): added slick library ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca9be5125efa864bc30a0178274d744c5b2bc500"},(0,n.kt)("inlineCode",{parentName:"a"},"ca9be51")))),(0,n.kt)("h3",{id:"031---2022-05-19"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.3.0...0.3.1"},"0.3.1")," - 2022-05-19"),(0,n.kt)("h4",{id:"-bug-fixes-37"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(input,segment): toggle inputs and padding fixes within Volto sidebar forms ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/de030d617325a8f9d028a5c1615faa160fcdd763"},(0,n.kt)("inlineCode",{parentName:"a"},"de030d6")))),(0,n.kt)("h4",{id:"-enhancements-51"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(login): restored width of login container to 376px ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0564293346b2402c3c86009b61066da4200662b8"},(0,n.kt)("inlineCode",{parentName:"a"},"0564293")))),(0,n.kt)("h3",{id:"030---2022-05-17"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.2.4...0.3.0"},"0.3.0")," - 2022-05-17"),(0,n.kt)("h4",{id:"-new-features-26"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(Callout):create Callout component with Blockquote style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3d486b1c2c7f74ee8bc4b3a5e1bf3993ac98f6dd"},(0,n.kt)("inlineCode",{parentName:"a"},"3d486b1"))),(0,n.kt)("li",{parentName:"ul"},"feat(callout): Align the Callout component with Volto slate component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e9343ff7008cd3d60700929e8861c7bdd06df4d3"},(0,n.kt)("inlineCode",{parentName:"a"},"e9343ff")))),(0,n.kt)("h4",{id:"-bug-fixes-38"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(testimonial): fix storybook arg names ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b9df52f7151ef759fd672d365b2d74f6db535ad0"},(0,n.kt)("inlineCode",{parentName:"a"},"b9df52f"))),(0,n.kt)("li",{parentName:"ul"},"fix(table): tweak responsive table for extra long headers ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7f9f9e25f7c57d4bf7edd2546a7579b892867b5c"},(0,n.kt)("inlineCode",{parentName:"a"},"7f9f9e2"))),(0,n.kt)("li",{parentName:"ul"},"fix(quote): fix color and padding issue ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/310d6b37bdf5df3da2d2103eab8f4fa5020c95ab"},(0,n.kt)("inlineCode",{parentName:"a"},"310d6b3"))),(0,n.kt)("li",{parentName:"ul"},"fix(accordion): Fix accordion active title color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/57af1650a0b830e01c79e21b130784190defbcc0"},(0,n.kt)("inlineCode",{parentName:"a"},"57af165"))),(0,n.kt)("li",{parentName:"ul"},"fix(testimonial): remove info arguement ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9593d95f6352fb5aea48c3611b27b4bc6a9ae7e4"},(0,n.kt)("inlineCode",{parentName:"a"},"9593d95")))),(0,n.kt)("h4",{id:"-enhancements-52"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(Table):add responsive mobile table story and styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aed69e698e5b89e33a4c331570755934267492af"},(0,n.kt)("inlineCode",{parentName:"a"},"aed69e6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(testimonial): adjust to volto design | fix avatar image size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/546070e494ad187c50913b5742dab49ce5475a84"},(0,n.kt)("inlineCode",{parentName:"a"},"546070e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Quote):rename Pullquote component to Quote ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9384a0c129b8e4eed637e51a9669c41d8ade69d4"},(0,n.kt)("inlineCode",{parentName:"a"},"9384a0c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Quote):rename Quote.Metadata to Quote.SourceInfo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dfae8b1c147659d24dfd1a13fb4c3098e5865a12"},(0,n.kt)("inlineCode",{parentName:"a"},"dfae8b1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Quote): rename Author to Source ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d400f6a0ec0062f58782b4e170f4a1a9a31c56c"},(0,n.kt)("inlineCode",{parentName:"a"},"6d400f6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Quote):move Testimonial component under Quote folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2467c2089577d67ef5689a2507cb860a837f6a0"},(0,n.kt)("inlineCode",{parentName:"a"},"e2467c2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(testimonial): readjust rounded card ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b41933417a44dabcf829a3346d91c142dd6472d3"},(0,n.kt)("inlineCode",{parentName:"a"},"b419334"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Table):wrap table with semantic ui container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24ac2bb4813df33547f684220e1e12af5ca6df7e"},(0,n.kt)("inlineCode",{parentName:"a"},"24ac2bb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Testimonial):minor storybook bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7b6d128c6be3b2481d4765cebca82af6cafbea05"},(0,n.kt)("inlineCode",{parentName:"a"},"7b6d128"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Callout): wrap story with semantic ui container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ead362d88f43fa1380e8be5481cbc38c055060f8"},(0,n.kt)("inlineCode",{parentName:"a"},"ead362d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(quote): update action name to match the functionality ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/caf2e359cada8056f280d2cd137776d64f82a2af"},(0,n.kt)("inlineCode",{parentName:"a"},"caf2e35"))),(0,n.kt)("li",{parentName:"ul"},"refactor(table): add borders to responsive table with celled attribute ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8a71a670fb34a11fbe4cef7365b91c6be84b5b54"},(0,n.kt)("inlineCode",{parentName:"a"},"8a71a67"))),(0,n.kt)("li",{parentName:"ul"},"change(table): make use of headerSortableWhiteSpace variable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fd836fbe82e92864a628bf4d9d3093674890f722"},(0,n.kt)("inlineCode",{parentName:"a"},"fd836fb"))),(0,n.kt)("li",{parentName:"ul"},"change(table): use the @mobileLandscapeBreakpoint for max 480px media query ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/90880ab324b6a66c7741819dd0d913504751454f"},(0,n.kt)("inlineCode",{parentName:"a"},"90880ab"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Quote):rename pullquote to Quote in Testimonial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f54da192ab3b0823b0d6c77254f8954ab94506c8"},(0,n.kt)("inlineCode",{parentName:"a"},"f54da19"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Testimonial): change card class name ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e995c32bc70780e4315c4dc02d6b6fa9a0c5b29d"},(0,n.kt)("inlineCode",{parentName:"a"},"e995c32"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Testimonial): prettier changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/904594b9814c3d8900656f0e4c8d3a99481efe94"},(0,n.kt)("inlineCode",{parentName:"a"},"904594b")))),(0,n.kt)("h4",{id:"\ufe0f-others-43"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feature(tokens): added tokens folder for design tokens we can use in the system ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a542172cfd84dde0286b4332e66a617a1f3d13bf"},(0,n.kt)("inlineCode",{parentName:"a"},"a542172"))),(0,n.kt)("li",{parentName:"ul"},"perf(lint): fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2ef3abb9daa8fee3dd103adc14246c412951427"},(0,n.kt)("inlineCode",{parentName:"a"},"f2ef3ab"))),(0,n.kt)("li",{parentName:"ul"},"Release 0.3.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8724b2809027b2e359dcd64e418a33cade4ad487"},(0,n.kt)("inlineCode",{parentName:"a"},"8724b28")))),(0,n.kt)("h3",{id:"024---2022-05-13"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.2.3...0.2.4"},"0.2.4")," - 2022-05-13"),(0,n.kt)("h4",{id:"-enhancements-53"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(segment): brought back overrides from pastanaga into our theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/14efd021f81898bb0f2d3f1a2e8677445420591a"},(0,n.kt)("inlineCode",{parentName:"a"},"14efd02"))),(0,n.kt)("li",{parentName:"ul"},"change(container): removed padding from containers restoring thus the defaults ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c2ed813cf2f7ce284e33f2e94e02ff16678c2d05"},(0,n.kt)("inlineCode",{parentName:"a"},"c2ed813"))),(0,n.kt)("li",{parentName:"ul"},"change(grid-story): added container as grid width is influenced by container width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/459f4813ee3c5325a3db22d417ac5f23063bd4d2"},(0,n.kt)("inlineCode",{parentName:"a"},"459f481"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumb): removed padding from breadcrumb added by container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5df5675a519085badc030416e5bb784a9f73321"},(0,n.kt)("inlineCode",{parentName:"a"},"c5df567"))),(0,n.kt)("li",{parentName:"ul"},"change(container): modified all outputted widths to align to grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f29cefa4bfee1fe50844c8450de39ef4b0915d4"},(0,n.kt)("inlineCode",{parentName:"a"},"9f29cef"))),(0,n.kt)("li",{parentName:"ul"},"change(breakpoints): restore Semantic UI breakpoints, adding extra needed values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e7f5b1e4fac6453458078bb02cdc66c328843b59"},(0,n.kt)("inlineCode",{parentName:"a"},"e7f5b1e"))),(0,n.kt)("li",{parentName:"ul"},"change(container): restore maxWidth to 100% now that the last value is 1120px ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8b55c58d3bbc8967b20de19a828aedd2f1473ee5"},(0,n.kt)("inlineCode",{parentName:"a"},"8b55c58"))),(0,n.kt)("li",{parentName:"ul"},"change(header): wrap header globalnav links useful for editing section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/10d4f56624510eb63155ab330dcf0475b0728ed4"},(0,n.kt)("inlineCode",{parentName:"a"},"10d4f56"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumb): added vertical variant to the breadcrumbs like we do in Volto ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f405f8437be6be221b055a41c5d391f4cc94385d"},(0,n.kt)("inlineCode",{parentName:"a"},"f405f84"))),(0,n.kt)("li",{parentName:"ul"},"change(breakpoints): added also contentBreakpoint for backward compatibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b6c9212378a37639e6154d8d8e837169bcbac8b5"},(0,n.kt)("inlineCode",{parentName:"a"},"b6c9212")))),(0,n.kt)("h4",{id:"\ufe0f-others-44"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"[JENKINSFILE]"," Add failure comment, no jenkins fail ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c325bf14f3fb0da150f2a56cda0a9f03d8d8a628"},(0,n.kt)("inlineCode",{parentName:"a"},"c325bf1"))),(0,n.kt)("li",{parentName:"ul"},"prettier changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/134da52549b9d5eac5a12b7ad3005073500ac2c4"},(0,n.kt)("inlineCode",{parentName:"a"},"134da52"))),(0,n.kt)("li",{parentName:"ul"},"[JENKINSFILE]"," format PR comments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/739438c64950c745d630d1998314a2bed595b23a"},(0,n.kt)("inlineCode",{parentName:"a"},"739438c"))),(0,n.kt)("li",{parentName:"ul"},"[JENKINSFILE]"," mention comment author in comment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/39a26aa1ff0f35e93e8df9f442c29c5ab79ff493"},(0,n.kt)("inlineCode",{parentName:"a"},"39a26aa"))),(0,n.kt)("li",{parentName:"ul"},"[JENKINSFILE]"," remove debug, add error per stage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/903eecdb6bcbb8d73cff5e447d80c85e2a2c906d"},(0,n.kt)("inlineCode",{parentName:"a"},"903eecd")))),(0,n.kt)("h3",{id:"023---2022-04-29"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.2.2...0.2.3"},"0.2.3")," - 2022-04-29"),(0,n.kt)("h4",{id:"-new-features-27"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(CallToAction):add feat call to action ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab53642f27c996f929ff871d0794add39bab6c23"},(0,n.kt)("inlineCode",{parentName:"a"},"ab53642")))),(0,n.kt)("h4",{id:"-enhancements-54"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(button): add container to stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6c02c1953e102f2d90ab23023d6b4dfc738ced2e"},(0,n.kt)("inlineCode",{parentName:"a"},"6c02c19"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tab): update vertical tab columns and content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b473fabee196a3ec420e29160448d2be3d1685cc"},(0,n.kt)("inlineCode",{parentName:"a"},"b473fab"))),(0,n.kt)("li",{parentName:"ul"},'refactor(call to action):render call to action with Button as="a" ',(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e7dfabfc2f006505b0f1c802dc6fb48611518bcb"},(0,n.kt)("inlineCode",{parentName:"a"},"e7dfabf"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button): update inverted button colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c822021ab37939632416ce74c0cc88a64b98a3c1"},(0,n.kt)("inlineCode",{parentName:"a"},"c822021"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Tab):scrollbar change in mobile & vertical tab fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0e34cbf459e67b6910217f30a44a1e81f33df622"},(0,n.kt)("inlineCode",{parentName:"a"},"0e34cbf"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): added icon class to share icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48e866e4251dd517c0477cd5a42cec1a98e2f16d"},(0,n.kt)("inlineCode",{parentName:"a"},"48e866e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Button): move button to forms folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/94996fcdf1ea7e55c63dd44e10edf1b44b9bdef5"},(0,n.kt)("inlineCode",{parentName:"a"},"94996fc"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Tab):minor change in secondary pointing menu variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/280b6c41a2107bccb38500f54eb5663ef62c7ae3"},(0,n.kt)("inlineCode",{parentName:"a"},"280b6c4")))),(0,n.kt)("h4",{id:"-documentation-changes-17"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(button): import call to action stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e4eed44e3519ae3dba7d16e252271a964fcb7a4b"},(0,n.kt)("inlineCode",{parentName:"a"},"e4eed44")))),(0,n.kt)("h3",{id:"022---2022-04-22"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.2.1...0.2.2"},"0.2.2")," - 2022-04-22"),(0,n.kt)("h4",{id:"-bug-fixes-39"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(publicationCard): restore line endings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/582859e0ab4fa969662d4cf3e60fe75b160f052a"},(0,n.kt)("inlineCode",{parentName:"a"},"582859e"))),(0,n.kt)("li",{parentName:"ul"},"fix(form): added back overrides from Pastanaga theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a3f7ff810cdeb55b009c2dadc6753d01bbd10d8c"},(0,n.kt)("inlineCode",{parentName:"a"},"a3f7ff8"))),(0,n.kt)("li",{parentName:"ul"},"fix(OrderedList) : add list only if sub list exists ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8acbc8d5a492b411b169b106ab64bb78563f891f"},(0,n.kt)("inlineCode",{parentName:"a"},"8acbc8d"))),(0,n.kt)("li",{parentName:"ul"},"fix(label): update highlight label color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d55bbb03a5d28b2f269c1a1ca447c67dcdc7a748"},(0,n.kt)("inlineCode",{parentName:"a"},"d55bbb0"))),(0,n.kt)("li",{parentName:"ul"},"fix(publication card): run prettier ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/81a5bfc123ce69c44562a5585e41a630fe0bbf5a"},(0,n.kt)("inlineCode",{parentName:"a"},"81a5bfc"))),(0,n.kt)("li",{parentName:"ul"},"fix(avatar) : fix naming convention for arg ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/84fc5fa8faa7887f45cd52e58aa6fa6f8b951d26"},(0,n.kt)("inlineCode",{parentName:"a"},"84fc5fa"))),(0,n.kt)("li",{parentName:"ul"},"fix(tab): restore mobile font sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/58f39be02a45ade92873b86597c33763379e0f44"},(0,n.kt)("inlineCode",{parentName:"a"},"58f39be"))),(0,n.kt)("li",{parentName:"ul"},"fix(addForm): add min height to add form and fixed block chooser overflow ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca4415d49b973378894ec9270501beafbefff776"},(0,n.kt)("inlineCode",{parentName:"a"},"ca4415d"))),(0,n.kt)("li",{parentName:"ul"},"fix(OrderedList): adjust margins to fourth sublists ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/663d384790920f164d51edb304c411275972fbb7"},(0,n.kt)("inlineCode",{parentName:"a"},"663d384"))),(0,n.kt)("li",{parentName:"ul"},"fix(dropdown): being hidden because of third party css ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d353dfd65e93d08a3c8584adeeebea50bf7efe8"},(0,n.kt)("inlineCode",{parentName:"a"},"7d353df"))),(0,n.kt)("li",{parentName:"ul"},"fix(modal): overflow hidden as clearfix of last child from modal ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4923f5165a0a7e8d2dd33ea4c35f9f951372909"},(0,n.kt)("inlineCode",{parentName:"a"},"b4923f5"))),(0,n.kt)("li",{parentName:"ul"},"fix(RelatedContent):fix merge conflict ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/adc34bfdac7d668aa27578eb2a4844c136e0360f"},(0,n.kt)("inlineCode",{parentName:"a"},"adc34bf"))),(0,n.kt)("li",{parentName:"ul"},"fix(button): labeled class needs to be placed after left or right keyword ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53d1204fe52665fe1023747da359d3100d45e58f"},(0,n.kt)("inlineCode",{parentName:"a"},"53d1204")))),(0,n.kt)("h4",{id:"-enhancements-55"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(card): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e10e3d610a313c4e1995676130e2677f0ebab070"},(0,n.kt)("inlineCode",{parentName:"a"},"e10e3d6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add card variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e16d05b4afa678b9089987b42a8257323a78093f"},(0,n.kt)("inlineCode",{parentName:"a"},"e16d05b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): remove stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0deb0cab6d7fd73957b149325960c266c33cdc6f"},(0,n.kt)("inlineCode",{parentName:"a"},"0deb0ca"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):delete primary and secondary card stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f95d227a026ecc34b29cc3e4938c3d13906cfd8"},(0,n.kt)("inlineCode",{parentName:"a"},"1f95d22"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Avatar) : remake avatar as card variant ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea77cdd1acafd2ea288f11074423705e5d6b7412"},(0,n.kt)("inlineCode",{parentName:"a"},"ea77cdd"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add styles for card variations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7407bd30e722f2d7b1a9d75a8c7cf155bf1c4996"},(0,n.kt)("inlineCode",{parentName:"a"},"7407bd3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): add story with related content inside of a tab ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dca008a35b27e4a75c13ef965ab8764df0d3b357"},(0,n.kt)("inlineCode",{parentName:"a"},"dca008a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): Rename variables from avatar to rounded ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/be0131631cf8e303f4077fe93b6685fd6b34bf46"},(0,n.kt)("inlineCode",{parentName:"a"},"be01316"))),(0,n.kt)("li",{parentName:"ul"},"refactor(avatar): update less variables and layer structure ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f965db1dd17d90e7165f66d39fdda9016c2eae91"},(0,n.kt)("inlineCode",{parentName:"a"},"f965db1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(PublicationCard):remake publication card to be a semantic card variation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5a0c6ab21c22a53aa6e34fafecfae15a3d435391"},(0,n.kt)("inlineCode",{parentName:"a"},"5a0c6ab"))),(0,n.kt)("li",{parentName:"ul"},"change(button): simplified button styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fe892d6f2f59aecf3f9e8b04f18b55fb0d384021"},(0,n.kt)("inlineCode",{parentName:"a"},"fe892d6"))),(0,n.kt)("li",{parentName:"ul"},"change(button): simplified storybook naming and examples ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9a7df4f46c24a234dd8bb290336ac8e7d5c7422b"},(0,n.kt)("inlineCode",{parentName:"a"},"9a7df4f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Avatar) : convert avatar component to card variation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2004a941c18f8fe21f96f88d3288446fd5e283e8"},(0,n.kt)("inlineCode",{parentName:"a"},"2004a94"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Related Content): change in grid and add see all button ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/955450e974c89aa2297eaa28d278e5098fea7705"},(0,n.kt)("inlineCode",{parentName:"a"},"955450e"))),(0,n.kt)("li",{parentName:"ul"},"change(button): added back button.overrides from pastanaga theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3b55acbf8b8df0e3daa475ab12e4db44693a4053"},(0,n.kt)("inlineCode",{parentName:"a"},"3b55acb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add card class control ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/68c91a9bf7e78874e12e868a0c466f12715a0698"},(0,n.kt)("inlineCode",{parentName:"a"},"68c91a9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):delete publication card variables & overrides files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6be8a037118762cf2280fbe44ba097a0cb7a79e0"},(0,n.kt)("inlineCode",{parentName:"a"},"6be8a03"))),(0,n.kt)("li",{parentName:"ul"},"refactor(OrderedList): rename TOC to Ordered List and add container to the story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e00c4db8e623651eb2ec9ad45de6e3d8c2693b2b"},(0,n.kt)("inlineCode",{parentName:"a"},"e00c4db"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add card grid fluid story with no columns ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f38251ca3fa04a9b586468ead44bbfe8ae110fbb"},(0,n.kt)("inlineCode",{parentName:"a"},"f38251c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(list): remove horizontal control ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f5e576a37452ed368d6f9cf4d55960e737d48ad"},(0,n.kt)("inlineCode",{parentName:"a"},"1f5e576"))),(0,n.kt)("li",{parentName:"ul"},"refactor(avatarGrid): update less variables and layer structure ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/db554a894ca10ba50ff425883000177854ea2455"},(0,n.kt)("inlineCode",{parentName:"a"},"db554a8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Related Content):show button when there are more hidden cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/57ff1c8d485d16c34002da22bd765069e6eb3df0"},(0,n.kt)("inlineCode",{parentName:"a"},"57ff1c8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(RelatedContent):change to use new card variant instead of publication card component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7cf424ae885d9b657a7635fc67a74a8af4c4e905"},(0,n.kt)("inlineCode",{parentName:"a"},"7cf424a"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumb): brought back pastanaga overrides to breadcrumbs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bca1c939c1d49dab1d4b8e72c0999d78383fd643"},(0,n.kt)("inlineCode",{parentName:"a"},"bca1c93"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):delete publication card folder & story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/68bf77306d710651bb2177d429f42b8efc127db2"},(0,n.kt)("inlineCode",{parentName:"a"},"68bf773"))),(0,n.kt)("li",{parentName:"ul"},"change(buttons): modified basic and circular variant behavior ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c06fed9fa74216cf76971b7789dad231a5125ce8"},(0,n.kt)("inlineCode",{parentName:"a"},"c06fed9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):tertiary variation minor story update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87b8dca0b8ef6c6f0fbf1ea6bc71b7b8b6ee9205"},(0,n.kt)("inlineCode",{parentName:"a"},"87b8dca"))),(0,n.kt)("li",{parentName:"ul"},"refactor(DescriptionList): add container to story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d647c1a17097eae9bdfaf8eb8068f6d1d0b13972"},(0,n.kt)("inlineCode",{parentName:"a"},"d647c1a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(List):render ordered list with ol,li tags ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87813c1a942ce498f89b51fe79a59b117afd28b0"},(0,n.kt)("inlineCode",{parentName:"a"},"87813c1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(OrderedList) : change table of contents story to ordered list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb6197c872a97f1b990c675554b1da9b0a8f7959"},(0,n.kt)("inlineCode",{parentName:"a"},"cb6197c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(publicationCard): update tag and name variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c109ad98f257fea233f31d767c4a037a2758be2d"},(0,n.kt)("inlineCode",{parentName:"a"},"c109ad9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(UnorderedList): update list as ul, list items as li and add container to strory ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2c096e117125a7fb943a5d2e665c0077761b271c"},(0,n.kt)("inlineCode",{parentName:"a"},"2c096e1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):organize controls and minor bug fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f3f6e35df077e348ea1e0c2e5c5bd73d4af5aef9"},(0,n.kt)("inlineCode",{parentName:"a"},"f3f6e35"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables): publication card style changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5a84e99ebea6345e45fac3b7ffc077ec42dfb45"},(0,n.kt)("inlineCode",{parentName:"a"},"c5a84e9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables): add less to related content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e1a55438a9fc9dd141a9515c5363d834732a0c4d"},(0,n.kt)("inlineCode",{parentName:"a"},"e1a5543"))),(0,n.kt)("li",{parentName:"ul"},"refactor(RelatedContent):delete publication card component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ed0ed4a1497224b669386f6d0942a79d00555ea"},(0,n.kt)("inlineCode",{parentName:"a"},"2ed0ed4"))),(0,n.kt)("li",{parentName:"ul"},"change(button): basic button is again without padding, border and background ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5a907c721bda1d065153b108d6c9dc0ee20a886d"},(0,n.kt)("inlineCode",{parentName:"a"},"5a907c7"))),(0,n.kt)("li",{parentName:"ul"},"refactor(PublicationCard):remove link wrapper ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5911a0db1967c58311a6776864f92bc0692052fa"},(0,n.kt)("inlineCode",{parentName:"a"},"5911a0d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables): change publication card height per viewport ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d7a525615672f387a2c8a0457bcde5c08aec45dd"},(0,n.kt)("inlineCode",{parentName:"a"},"d7a5256"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Timeline):change timeline icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b2fe0bf9a7a4583f1f10765a9f8c3c989412d472"},(0,n.kt)("inlineCode",{parentName:"a"},"b2fe0bf"))),(0,n.kt)("li",{parentName:"ul"},"refactor(publicationCard): replace px with rems ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53bf8da5e42343de7f7f940c266beb5e530dd63a"},(0,n.kt)("inlineCode",{parentName:"a"},"53bf8da"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Related Content): change in related content grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bf856ce66f9a74cb440cf8a7c93f62cd0d3965e9"},(0,n.kt)("inlineCode",{parentName:"a"},"bf856ce"))),(0,n.kt)("li",{parentName:"ul"},"refactor(List):render description list with dl,dt,dd tags ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ec669a74da08f7a82bb4a1a0a2d752b6ee5ba4bb"},(0,n.kt)("inlineCode",{parentName:"a"},"ec669a7"))),(0,n.kt)("li",{parentName:"ul"},"change(button): show only labeled variant for buttons with icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bf499446dc02e4be8d6452a3e0cba5797b8a005e"},(0,n.kt)("inlineCode",{parentName:"a"},"bf49944"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): import image for rounded card ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca5a47ea2cd713336c7c8ecdebebbdacd681282f"},(0,n.kt)("inlineCode",{parentName:"a"},"ca5a47e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progress): add container to story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dfb33bb8f3560d43e3e7300560bb557591c0a6ba"},(0,n.kt)("inlineCode",{parentName:"a"},"dfb33bb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): add publication card story with different description sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/23af97bc708ac70d70b92efe9a782548c65aabc5"},(0,n.kt)("inlineCode",{parentName:"a"},"23af97b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(List):render default list with dl & dt tags ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ece2280eb06481b3fd42e7a1ffec5c71c08e736f"},(0,n.kt)("inlineCode",{parentName:"a"},"ece2280"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): add publication cards stories with longer description ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/37adefa500c8a85a5b0b86e5b17c687828ea21fc"},(0,n.kt)("inlineCode",{parentName:"a"},"37adefa"))),(0,n.kt)("li",{parentName:"ul"},"change(button): basic icon buttons no longer have box shadows ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c2f3ea38ec3c62dce37612ac1e666a0b064309f7"},(0,n.kt)("inlineCode",{parentName:"a"},"c2f3ea3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): remove story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/afc5f7903a0049563355e3c9292fdd89fa532740"},(0,n.kt)("inlineCode",{parentName:"a"},"afc5f79"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables): change card description line number per device ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6946fdae2a1ede28a0e5971736817b3ae19bf290"},(0,n.kt)("inlineCode",{parentName:"a"},"6946fda"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): update rounded card image path ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8db3a85a45e8e05a3fe86ab824e7550d437222c3"},(0,n.kt)("inlineCode",{parentName:"a"},"8db3a85"))),(0,n.kt)("li",{parentName:"ul"},"refactor(DefaultList): add container to story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f971193369007a45fea7d517cdf0fc2314ebda69"},(0,n.kt)("inlineCode",{parentName:"a"},"f971193"))),(0,n.kt)("li",{parentName:"ul"},"change(button): bumped z-index of sidenav expand button ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/445ed8a8ede4e458814f380bee0600dbb8ff42f6"},(0,n.kt)("inlineCode",{parentName:"a"},"445ed8a"))),(0,n.kt)("li",{parentName:"ul"},"change(progress,label): color accessibility fixes #151 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/09cf6e34ed5a57bfbfc8fe95787591387776df86"},(0,n.kt)("inlineCode",{parentName:"a"},"09cf6e3"))),(0,n.kt)("li",{parentName:"ul"},"change(button): text button now has an underline with a focus border like other buttons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cdd90436bf0c4f8acaca8bf27afef672fb0f3a89"},(0,n.kt)("inlineCode",{parentName:"a"},"cdd9043"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): update card variation grids path ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/756589cff5d3607994d6cf092cb5dd0e36d51903"},(0,n.kt)("inlineCode",{parentName:"a"},"756589c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): minor fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3a880d7d14c89137b2a33342aed1a31c1b2b3939"},(0,n.kt)("inlineCode",{parentName:"a"},"3a880d7"))),(0,n.kt)("li",{parentName:"ul"},"change(button): primary color is blue and secondary is green ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/53e0a0c6d32a04c52d089914a224b010b04a8846"},(0,n.kt)("inlineCode",{parentName:"a"},"53e0a0c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(List):change styles to match with the tags lists are rendered ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2673890449579a0421d8ac1c89ad4c5e850322d7"},(0,n.kt)("inlineCode",{parentName:"a"},"2673890"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progress): update colors for accessibility ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea2f454f73c859ac21c4fe6e415a2442a6c3d64c"},(0,n.kt)("inlineCode",{parentName:"a"},"ea2f454"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): move avatarGrid & relatedContent to Card folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1959d521de222c95aa13d9b3db249d133f879ccd"},(0,n.kt)("inlineCode",{parentName:"a"},"1959d52"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Timeline): change storybook timeline colors to fix accessibility issues ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/79da8dca48c709fd1df83b858296126f5e5c5753"},(0,n.kt)("inlineCode",{parentName:"a"},"79da8dc"))),(0,n.kt)("li",{parentName:"ul"},"change(segment): restore light grey background color for secondary segments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8716b08a977cacf5dbdab8ab23c714bb03066b0c"},(0,n.kt)("inlineCode",{parentName:"a"},"8716b08"))),(0,n.kt)("li",{parentName:"ul"},"refactor(relatedContent): adjust column paddings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8a1520d1b958b65e968bffdba22c3484916a475e"},(0,n.kt)("inlineCode",{parentName:"a"},"8a1520d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): clear up code ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ada154b5ab562dc7605604de8002a9d3461e594"},(0,n.kt)("inlineCode",{parentName:"a"},"3ada154"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): use the rounded class for avatar grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8c000f3c37103e0068b6d6554783da8188603442"},(0,n.kt)("inlineCode",{parentName:"a"},"8c000f3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card) Update rounded card class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/140b58746673a864d7ea218c4f8a02dc70207af4"},(0,n.kt)("inlineCode",{parentName:"a"},"140b587"))),(0,n.kt)("li",{parentName:"ul"},"refactor(avatar): add variable for image border radius ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c23341c66d34a9dfa572be4df24f1faf4325d58e"},(0,n.kt)("inlineCode",{parentName:"a"},"c23341c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(label): add container to story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/565101fff2c8860deedd599b7b0cff0660c663f6"},(0,n.kt)("inlineCode",{parentName:"a"},"565101f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progress): update value color for accessibility error ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6fc76f8ff3df4bf2b83863687e5ab6bd5e4cd1ef"},(0,n.kt)("inlineCode",{parentName:"a"},"6fc76f8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):use jsx extension ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/413d3284869a35f39f886df7862db6a52e8cc18e"},(0,n.kt)("inlineCode",{parentName:"a"},"413d328")))),(0,n.kt)("h4",{id:"-internal-changes-17"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(Avatar) : add container to stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/41b748cd23002d597d9b6fbb7947a443ef40f9b2"},(0,n.kt)("inlineCode",{parentName:"a"},"41b748c"))),(0,n.kt)("li",{parentName:"ul"},"style(OrderedList): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ed95e4dea2f33d46ca604e1b2c30d63b5596c03d"},(0,n.kt)("inlineCode",{parentName:"a"},"ed95e4d")))),(0,n.kt)("h4",{id:"\ufe0f-others-45"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"perf(eol): change to LF ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c71e42e4a8cf49c4a3b943bfdc8a94c9a9cc4940"},(0,n.kt)("inlineCode",{parentName:"a"},"c71e42e"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): linux eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e0bb30132904f92b9755356f6b5ccbf72075425"},(0,n.kt)("inlineCode",{parentName:"a"},"6e0bb30"))),(0,n.kt)("li",{parentName:"ul"},"lint fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a68866d4058f7412a2635371adebc370b6445281"},(0,n.kt)("inlineCode",{parentName:"a"},"a68866d"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): lf fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7054b2067b0802c5bd04e185cba76e2577ccfdd1"},(0,n.kt)("inlineCode",{parentName:"a"},"7054b20"))),(0,n.kt)("li",{parentName:"ul"},"doco(list): update Ordered List showcase ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/75e40bf4487ea334c9ebc2dd6c2a392d82e662f3"},(0,n.kt)("inlineCode",{parentName:"a"},"75e40bf"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): lf fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19235e585ac50c3669f654a93798b8998894f900"},(0,n.kt)("inlineCode",{parentName:"a"},"19235e5"))),(0,n.kt)("li",{parentName:"ul"},"fixed js syntax error from previous commit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/37dc1f5c1506040c1f155afdea76c4ed739ddda2"},(0,n.kt)("inlineCode",{parentName:"a"},"37dc1f5"))),(0,n.kt)("li",{parentName:"ul"},"Next relese: 0.2.2 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b3fb40ff5e46d7519b6356fdaf7326780bd89d9e"},(0,n.kt)("inlineCode",{parentName:"a"},"b3fb40f")))),(0,n.kt)("h3",{id:"021---2022-04-08"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.2.0...0.2.1"},"0.2.1")," - 2022-04-08"),(0,n.kt)("h4",{id:"-bug-fixes-40"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(version): Switch to 2.0.0.alpha.1 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/83b8b8ebba4f1eb31514b16476ac23a5d2b03ea9"},(0,n.kt)("inlineCode",{parentName:"a"},"83b8b8e")))),(0,n.kt)("h4",{id:"\ufe0f-others-46"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"cleanup(loader): Remove useless HTML ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d1d180c714ea225c1ad269360413a5e5e4b39f22"},(0,n.kt)("inlineCode",{parentName:"a"},"d1d180c")))),(0,n.kt)("h3",{id:"020---2022-04-04"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.9...0.2.0"},"0.2.0")," - 2022-04-04"),(0,n.kt)("h4",{id:"-new-features-28"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(card) : add new default card color-schme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/965adea8eef6d8729790f6d2bd5e71daeee15d75"},(0,n.kt)("inlineCode",{parentName:"a"},"965adea"))),(0,n.kt)("li",{parentName:"ul"},"feat(label): Handle slate links and footnotes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f382431219df29be498fe5063f3d579f0b918068"},(0,n.kt)("inlineCode",{parentName:"a"},"f382431")))),(0,n.kt)("h4",{id:"-bug-fixes-41"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(buttons,toggles): border and background color when active 147629 #139 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea36f31e986110d6c28c104d01666104ac38e2ba"},(0,n.kt)("inlineCode",{parentName:"a"},"ea36f31"))),(0,n.kt)("li",{parentName:"ul"},"fix(checkboxes): background color when they are toggles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4b6ab67085b7514c4f0ab2322e8f45de8bc09449"},(0,n.kt)("inlineCode",{parentName:"a"},"4b6ab67"))),(0,n.kt)("li",{parentName:"ul"},"fix(buttons): border set on basic buttons appearing on svg elements of Volto UI ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/69ca73f33b562b3f87bf11ce43a52ac01f83b951"},(0,n.kt)("inlineCode",{parentName:"a"},"69ca73f"))),(0,n.kt)("li",{parentName:"ul"},"fix(label): Zotero/Footnotes inside label ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0ee4d584f2771b739ed5f2332cb33aad61391786"},(0,n.kt)("inlineCode",{parentName:"a"},"0ee4d58"))),(0,n.kt)("li",{parentName:"ul"},"fix(card) : add control for image url in storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b28e5303ba04c6aee673f1d7f98ce42037c672e1"},(0,n.kt)("inlineCode",{parentName:"a"},"b28e530"))),(0,n.kt)("li",{parentName:"ul"},"fix(less variables):change font family ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e4bca9e0cb7ab9f1fd86e9f4c558382ec129e5a1"},(0,n.kt)("inlineCode",{parentName:"a"},"e4bca9e"))),(0,n.kt)("li",{parentName:"ul"},"fix(storybook):minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9fc53bcad61bbe0561d7a986dbba567d53777a8c"},(0,n.kt)("inlineCode",{parentName:"a"},"9fc53bc"))),(0,n.kt)("li",{parentName:"ul"},"fix(tag): fixes merged theme config ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/eb30363fda8a8a88155ee05268c4d7660fe99df1"},(0,n.kt)("inlineCode",{parentName:"a"},"eb30363"))),(0,n.kt)("li",{parentName:"ul"},"fix(Banner): prop types fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a270e5b4d6e571f219b5da31ca8f883f74da05e3"},(0,n.kt)("inlineCode",{parentName:"a"},"a270e5b")))),(0,n.kt)("h4",{id:"-enhancements-56"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(tag): splits Tags component to TagList and tag, changes default tags style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/78a5f8c245149706a1f7b825ef3e02da5ba86445"},(0,n.kt)("inlineCode",{parentName:"a"},"78a5f8c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner):add banner share pop up in banner story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c9688b2b697c879bbaed3cb3a688a0af7fc71234"},(0,n.kt)("inlineCode",{parentName:"a"},"c9688b2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tag): remove classes and actions that add background color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce9b6f92589618f6cb1e839a2cddc44381ef7406"},(0,n.kt)("inlineCode",{parentName:"a"},"ce9b6f9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner):change banner's image wrapper implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9153dd1073999e67c105b5ba90538bc963e17abc"},(0,n.kt)("inlineCode",{parentName:"a"},"9153dd1"))),(0,n.kt)("li",{parentName:"ul"},"change(package): bump release version to 1.10.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7e984c1e1a6ea481a58a5b7a783d077b5769a621"},(0,n.kt)("inlineCode",{parentName:"a"},"7e984c1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): align cards and images, update less variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d47c9780bfbc23d1cba3578f181864074db97e98"},(0,n.kt)("inlineCode",{parentName:"a"},"d47c978"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): add class inverted for default card ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/919a56e79c0243fa567144fadd4b842f75f1cf8f"},(0,n.kt)("inlineCode",{parentName:"a"},"919a56e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tag): changes component name ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e1db068bd7ac336a451a4514c61fe44557e14cc2"},(0,n.kt)("inlineCode",{parentName:"a"},"e1db068"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tag): changes color metallicBlue to bottleGreen ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e4b68acf95bb3e192914aab89b2122e0434bf72c"},(0,n.kt)("inlineCode",{parentName:"a"},"e4b68ac"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables): change tag list mobile view ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fcded3dbc67465eec6ef7f72d3fd599ec5cd3c13"},(0,n.kt)("inlineCode",{parentName:"a"},"fcded3d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tagList): update story to not use tag color classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8b5b61bfad9225c0538b713937ed39bbd0bd14e9"},(0,n.kt)("inlineCode",{parentName:"a"},"8b5b61b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner):minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff8c352b899b78528897547df0b20c357fd153cd"},(0,n.kt)("inlineCode",{parentName:"a"},"ff8c352"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner): add metadata field sub component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/327b7e77626c18ae783aea9efae0c7589f63d4f5"},(0,n.kt)("inlineCode",{parentName:"a"},"327b7e7"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): add and adjust remix icon for banner action ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1bf3ffaa16432746c5e5577f0b1643f6659b3f56"},(0,n.kt)("inlineCode",{parentName:"a"},"1bf3ffa"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): replace px with rem and adjust share popup padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a5683294570227d0b25a99e410eb824b2c6d643c"},(0,n.kt)("inlineCode",{parentName:"a"},"a568329"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner):add type class to metadata field and apply styles to it ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/86a286699146c7dda9e288e2183ec8cc86f35a23"},(0,n.kt)("inlineCode",{parentName:"a"},"86a2866"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables):change tag list styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/867008791545769aa003ef7a8a820a7e5a873e4b"},(0,n.kt)("inlineCode",{parentName:"a"},"8670087"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): share items display flex on desktop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ff86840e548f47cd597a0c76b23f996d4a9d74b"},(0,n.kt)("inlineCode",{parentName:"a"},"3ff8684"))),(0,n.kt)("li",{parentName:"ul"},"change(banner): added background gradient, share popup, metadata show and hide #136 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2f5dccacf1e23f45f351b0be58c9bbda04da1518"},(0,n.kt)("inlineCode",{parentName:"a"},"2f5dcca"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): update gradient ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/570ee1e1e9778cb98757804fbd8ad7d9dee9ad13"},(0,n.kt)("inlineCode",{parentName:"a"},"570ee1e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tags): removes hardcoded ':' ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea58e86a79b46b5150d84ff2fbb6a7b8ba47876c"},(0,n.kt)("inlineCode",{parentName:"a"},"ea58e86"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card): remove card border ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bc777397026f0efe8e569c8fd0e90d98b585b0eb"},(0,n.kt)("inlineCode",{parentName:"a"},"bc77739")))),(0,n.kt)("h4",{id:"-internal-changes-18"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(card) : add lint and prettier changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9d9a77363f7e4f7ec2ea4db5fa777dc97e086156"},(0,n.kt)("inlineCode",{parentName:"a"},"9d9a773"))),(0,n.kt)("li",{parentName:"ul"},"style(tag): remove comments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/501fcdfb8271f4a3558dadb96c546e71cfdef286"},(0,n.kt)("inlineCode",{parentName:"a"},"501fcdf"))),(0,n.kt)("li",{parentName:"ul"},"style(tag): stylelint and prettier changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/08b63864e8394fd86ada78df0b441cda52cd8063"},(0,n.kt)("inlineCode",{parentName:"a"},"08b6386")))),(0,n.kt)("h4",{id:"\ufe0f-others-47"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"1.10 release #140 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/88d33396845f00830789867663a9cd66ad88920f"},(0,n.kt)("inlineCode",{parentName:"a"},"88d3339"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/328ef2cda2d3470b5cb5ae2ef9854323f6b0f3c7"},(0,n.kt)("inlineCode",{parentName:"a"},"328ef2c"))),(0,n.kt)("li",{parentName:"ul"},"undo changes to Header.jsx committed wrongly in 4b6ab ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bfc4c51d39cf9c5151c39b099071174897de10b0"},(0,n.kt)("inlineCode",{parentName:"a"},"bfc4c51"))),(0,n.kt)("li",{parentName:"ul"},"Update 0-intro.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af75f81a84ddb9b78a77a96450976c6cd1223924"},(0,n.kt)("inlineCode",{parentName:"a"},"af75f81"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): lf fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ecf474ffbaab6796434d49c30fb09deafe9d1125"},(0,n.kt)("inlineCode",{parentName:"a"},"ecf474f"))),(0,n.kt)("li",{parentName:"ul"},"Update 0-intro.md ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93a073242693fa3c24c39532c2c462f58071e5c4"},(0,n.kt)("inlineCode",{parentName:"a"},"93a0732"))),(0,n.kt)("li",{parentName:"ul"},"modifies tags title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/33c3714660aa6cfbca7e362fd7baa8c396b60a0e"},(0,n.kt)("inlineCode",{parentName:"a"},"33c3714"))),(0,n.kt)("li",{parentName:"ul"},"reafactor(taglist): fixes tags root class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d09959f85d2d21cdc890a71457ed5840b5b2c53"},(0,n.kt)("inlineCode",{parentName:"a"},"7d09959")))),(0,n.kt)("h3",{id:"019---2022-03-25"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.8...0.1.9"},"0.1.9")," - 2022-03-25"),(0,n.kt)("h4",{id:"-new-features-29"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(all): 1.9 release #124 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0d3f6fbf32a4948e00410d9d0943a077863cb869"},(0,n.kt)("inlineCode",{parentName:"a"},"0d3f6fb"))),(0,n.kt)("li",{parentName:"ul"},"feat(callout): Align volto-slate callout with blockquote style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9e0bb49ffe66ebb8b8173af411873ab887b91058"},(0,n.kt)("inlineCode",{parentName:"a"},"9e0bb49")))),(0,n.kt)("h4",{id:"-bug-fixes-42"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(inpageNavigation): restore hidden on top functionality ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c554e6e02e0c82b74653498e2f3fd32a982002a4"},(0,n.kt)("inlineCode",{parentName:"a"},"c554e6e"))),(0,n.kt)("li",{parentName:"ul"},"fix(list): Fix TOC margin on 3rd level ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f17da79394e29baf62bae1247dd954cdd0362108"},(0,n.kt)("inlineCode",{parentName:"a"},"f17da79"))),(0,n.kt)("li",{parentName:"ul"},"fix(inpageNavigation) : add smooth scroll animation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/42f6564276b9214257e2dbc1e2a8f7e501625aee"},(0,n.kt)("inlineCode",{parentName:"a"},"42f6564")))),(0,n.kt)("h4",{id:"-enhancements-57"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update visual and mobile margins ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/64f05af91638d91d2c07217b8edc2fb70a5e7347"},(0,n.kt)("inlineCode",{parentName:"a"},"64f05af"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): restore union dropdown after implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7029c556a9adc1ab9b0269de666e0ed0530f67e"},(0,n.kt)("inlineCode",{parentName:"a"},"a7029c5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pullquote): adjust to the new figma design ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/78e4606ac299938021f9e525898ae7f5cede311f"},(0,n.kt)("inlineCode",{parentName:"a"},"78e4606"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumb): adjust font sizes and import remix divider ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5fcabaf589074716b34fb5d0904e14549d7f4ef2"},(0,n.kt)("inlineCode",{parentName:"a"},"5fcabaf"))),(0,n.kt)("li",{parentName:"ul"},"change(header): use viewport width for changing mobile text in header dropdowns ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5a7868e1725f8766ae1be68d3c27b1313f79196b"},(0,n.kt)("inlineCode",{parentName:"a"},"5a7868e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(inpageNavigation): adjust to the new figma design ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4073acfb87378224d071079467bcfa195b1fc6ac"},(0,n.kt)("inlineCode",{parentName:"a"},"4073acf"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tab): add max width for tab items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/366d279a94d5f388c6167e7afb72d108c77c4085"},(0,n.kt)("inlineCode",{parentName:"a"},"366d279"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables):change pullquote styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9ad94bb424a14713ffa605c7497c95bdefeb6e5f"},(0,n.kt)("inlineCode",{parentName:"a"},"9ad94bb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Pullquote):change quote positions and add Pullquote.Metadata sub component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6bce35fa3cc158d9d18a07d0faf812c5c38bae0b"},(0,n.kt)("inlineCode",{parentName:"a"},"6bce35f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(inpageNavigation): Update to remix icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19a606170b4163cf4f751a419ca36a4c163b566d"},(0,n.kt)("inlineCode",{parentName:"a"},"19a6061"))),(0,n.kt)("li",{parentName:"ul"},"refactor(inpageNavigation) : move icon & text to be in column ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/09539102489ec511cb2b6cd047d316ab8b87ed55"},(0,n.kt)("inlineCode",{parentName:"a"},"0953910"))),(0,n.kt)("li",{parentName:"ul"},"change(breadcrumbs): modified breadcrumbs template to behave like breadrumb template ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/490a559bc99f3a9d174a344cf0be85086293578e"},(0,n.kt)("inlineCode",{parentName:"a"},"490a559"))),(0,n.kt)("li",{parentName:"ul"},"change(package): bump release version to 1.9.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/43a6e4b92fd05ca272fb140922213834ee426938"},(0,n.kt)("inlineCode",{parentName:"a"},"43a6e4b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumb): adjust font sizes and import remix divider #120 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/09a3a01910ed898b62a9535fe5d2a41cfdb3a91b"},(0,n.kt)("inlineCode",{parentName:"a"},"09a3a01"))),(0,n.kt)("li",{parentName:"ul"},"change(menu): modified secondaryPointingItemMaxWidth to a value that equals to 250 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea138a10257206fae32c4e9a30233a3ddfd424b6"},(0,n.kt)("inlineCode",{parentName:"a"},"ea138a1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pullquote): introduce meta section, use remix icons, integrate slate callouts #119 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fd740c9e72b2defa5cc858ac020f0cb051aa527c"},(0,n.kt)("inlineCode",{parentName:"a"},"fd740c9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): updated visuals and gradients #117 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e5c6d18dc3fb33e5dfa654ecebdc12c6f5f0cf32"},(0,n.kt)("inlineCode",{parentName:"a"},"e5c6d18"))),(0,n.kt)("li",{parentName:"ul"},"change(scrollToTop): feature inpage navigation revamp #121 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3cf20a82b723b8df0b53f16c737e5c8990f891f1"},(0,n.kt)("inlineCode",{parentName:"a"},"3cf20a8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update visual and gradient ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/764ec23a456397b478456f7d628baa4e6c0b4713"},(0,n.kt)("inlineCode",{parentName:"a"},"764ec23"))),(0,n.kt)("li",{parentName:"ul"},"change(header): use 12px font size for mobile resolution dropdowns ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6dad0fab24f37f87696bb50f5a592e88510d053e"},(0,n.kt)("inlineCode",{parentName:"a"},"6dad0fa"))),(0,n.kt)("li",{parentName:"ul"},"change(nav): added navDepth to 3 in order to enable mega menu integration ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4f73fdd0dfadcd63b2f4be7a691bf12dcd9bb76"},(0,n.kt)("inlineCode",{parentName:"a"},"c4f73fd")))),(0,n.kt)("h4",{id:"-internal-changes-19"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(inpageNavigation) : lint changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3641d78374063904c00f1ba19f2f234f7a43892b"},(0,n.kt)("inlineCode",{parentName:"a"},"3641d78"))),(0,n.kt)("li",{parentName:"ul"},"style(inpageNavigation) : add less variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0699c70c66403ff75bf41ba252a74e9f4379671c"},(0,n.kt)("inlineCode",{parentName:"a"},"0699c70"))),(0,n.kt)("li",{parentName:"ul"},"style(pullquote): create variable for icon font size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fea9b0a7c33237ad036522b4dde567718d640210"},(0,n.kt)("inlineCode",{parentName:"a"},"fea9b0a"))),(0,n.kt)("li",{parentName:"ul"},"style(inpageNavigation) : add lint & prettier changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f8dd012a964e0c1f0bc22c36826a4a94bd052759"},(0,n.kt)("inlineCode",{parentName:"a"},"f8dd012"))),(0,n.kt)("li",{parentName:"ul"},"style(inpageNavigation): remove comment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1aee011d032c1a2b7fe564a40688bc39ca457c18"},(0,n.kt)("inlineCode",{parentName:"a"},"1aee011")))),(0,n.kt)("h4",{id:"\ufe0f-others-48"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"perf(eol): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/85a3dc55c7676c0feb8dd5b39fe0cbb9d66a9370"},(0,n.kt)("inlineCode",{parentName:"a"},"85a3dc5"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/00776211ccfa1cb90d9fa0e5269f47f5b3845741"},(0,n.kt)("inlineCode",{parentName:"a"},"0077621"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f1bb1c630edb669b03929a978cc116bae012255"},(0,n.kt)("inlineCode",{parentName:"a"},"9f1bb1c"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2b19fec30d6086f486bdca631a9114d8369fe43"},(0,n.kt)("inlineCode",{parentName:"a"},"e2b19fe"))),(0,n.kt)("li",{parentName:"ul"},"perf(eol): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/03dbc9b027578934f89d9480d981e1bc28f38aa3"},(0,n.kt)("inlineCode",{parentName:"a"},"03dbc9b"))),(0,n.kt)("li",{parentName:"ul"},"Hide breadcrumbs on homepage ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e2f609df8d4b6bdb826e539fc0c613406d357a5"},(0,n.kt)("inlineCode",{parentName:"a"},"3e2f609"))),(0,n.kt)("li",{parentName:"ul"},"bug(inpageNavigation): less layers structure fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8d34fbdd5130ed36157db1ff70e8b039faa9f81"},(0,n.kt)("inlineCode",{parentName:"a"},"b8d34fb"))),(0,n.kt)("li",{parentName:"ul"},"prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4b1c572411cbc58dec51d5eeefe9847675c2e41"},(0,n.kt)("inlineCode",{parentName:"a"},"d4b1c57"))),(0,n.kt)("li",{parentName:"ul"},"fefactor(tab): add max width for tab items #118 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/716c408fa4c73f3feb8e36e35fb1f6bb50ac264c"},(0,n.kt)("inlineCode",{parentName:"a"},"716c408"))),(0,n.kt)("li",{parentName:"ul"},"Add reversed option to Timeline grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7c9023245f2fc943380f79743b5f10c6b6f65264"},(0,n.kt)("inlineCode",{parentName:"a"},"7c90232"))),(0,n.kt)("li",{parentName:"ul"},"doc(grid): update grid showcases ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/83671a382e39a2736c2c1353098d5f4fc2a0e67e"},(0,n.kt)("inlineCode",{parentName:"a"},"83671a3"))),(0,n.kt)("li",{parentName:"ul"},"End of line ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7f46fb752ec8918325ebadd386ee88248e02566c"},(0,n.kt)("inlineCode",{parentName:"a"},"7f46fb7")))),(0,n.kt)("h3",{id:"018---2022-03-18"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.7...0.1.8"},"0.1.8")," - 2022-03-18"),(0,n.kt)("h4",{id:"-bug-fixes-43"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(card): avoid long links from spilling outside of card body area ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/95b8951ab87bfab7a68cc20b89b25aa15113aa9d"},(0,n.kt)("inlineCode",{parentName:"a"},"95b8951")))),(0,n.kt)("h4",{id:"-enhancements-58"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"change(typography): set heading sizes as detailed in docusaurus typography section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/189bf20409581587061ffa30ff2bf04d97f284cf"},(0,n.kt)("inlineCode",{parentName:"a"},"189bf20"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): content tweaks, inpage navigation section #112 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b62d1b1def7c3d8890ffbba30950e8e422e9ed89"},(0,n.kt)("inlineCode",{parentName:"a"},"b62d1b1")))),(0,n.kt)("h4",{id:"-internal-changes-20"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(docusaurus): fixed grid tablet breakpoint value ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c7fbc0912131396e3a1e35803968eda1eff77d40"},(0,n.kt)("inlineCode",{parentName:"a"},"c7fbc09")))),(0,n.kt)("h4",{id:"-documentation-changes-18"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): capitalization remove ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bf8fa4407e7110da1c6a911506d56800bd5c32d7"},(0,n.kt)("inlineCode",{parentName:"a"},"bf8fa44"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1c04976a141324f0dde01b139a77f611e6f51840"},(0,n.kt)("inlineCode",{parentName:"a"},"1c04976"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): comment address on pr 112 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e4fe3bed285eae8b2cff03b1ef558debc0b4edb"},(0,n.kt)("inlineCode",{parentName:"a"},"6e4fe3b"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): color minor update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/13f9fda09287da5b8733d17f9c7567b6b7df750a"},(0,n.kt)("inlineCode",{parentName:"a"},"13f9fda"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): tabs and breadcrump update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d0547e5ad09a8608335b1e77e24c891e49213694"},(0,n.kt)("inlineCode",{parentName:"a"},"d0547e5")))),(0,n.kt)("h4",{id:"\ufe0f-others-49"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"doc(colours): add more content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ec66248f1290369dcf63ee12f7b71a1630df887b"},(0,n.kt)("inlineCode",{parentName:"a"},"ec66248"))),(0,n.kt)("li",{parentName:"ul"},"Add divider content for metadata field in Banner ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f1e34bd6a199f6418fba909e9dfdf50b0100e860"},(0,n.kt)("inlineCode",{parentName:"a"},"f1e34bd"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.8.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fd6ba047e8f8b257c3c75d07a6caefad376f888a"},(0,n.kt)("inlineCode",{parentName:"a"},"fd6ba04")))),(0,n.kt)("h3",{id:"017---2022-03-15"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.6...0.1.7"},"0.1.7")," - 2022-03-15"),(0,n.kt)("h4",{id:"-new-features-30"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(less): add global gap sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c83f20280b8a7ab0b5c78e3df7646beebe08709"},(0,n.kt)("inlineCode",{parentName:"a"},"3c83f20"))),(0,n.kt)("li",{parentName:"ul"},"feat(icons): import remix css ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/29967fb39034910dce286880f347a670f77421b3"},(0,n.kt)("inlineCode",{parentName:"a"},"29967fb")))),(0,n.kt)("h4",{id:"-bug-fixes-44"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(menu): fix border overflow for tabs and pagination ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e88721f916affa2a6d2f03930eb4266f9a2b0fb9"},(0,n.kt)("inlineCode",{parentName:"a"},"e88721f"))),(0,n.kt)("li",{parentName:"ul"},"fix(accordion): responsive and accessibility issues ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c225935ceb9fdba45c6f94086a35e177495fe584"},(0,n.kt)("inlineCode",{parentName:"a"},"c225935")))),(0,n.kt)("h4",{id:"-enhancements-59"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(menu): update paddings for tabs and pagination ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/533a5093e6c306034cb16e0a88e045019677951e"},(0,n.kt)("inlineCode",{parentName:"a"},"533a509"))),(0,n.kt)("li",{parentName:"ul"},"refactor(accordion): import semantic icon for remix arrows ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9aa77d856d1e43f4ec3daaab37f06fa91ebd1eaf"},(0,n.kt)("inlineCode",{parentName:"a"},"9aa77d8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(all) icons, accordion, button and menu itml #108 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/52ed2ca19b5e8dea60f1ee7bfd9c3b6b49a49f7d"},(0,n.kt)("inlineCode",{parentName:"a"},"52ed2ca"))),(0,n.kt)("li",{parentName:"ul"},"change(storybook): segment stories now contain several elements ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/98a7654b0d4a7c30c7a2df35103ddb2740f3ca2d"},(0,n.kt)("inlineCode",{parentName:"a"},"98a7654"))),(0,n.kt)("li",{parentName:"ul"},"change(table): inherit header alignment instead of hard-coding values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ebb5193babfe8b99094db6778afdaf2d91b2c4dd"},(0,n.kt)("inlineCode",{parentName:"a"},"ebb5193"))),(0,n.kt)("li",{parentName:"ul"},"refactor(icons): add remix icons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4c1a92b671b52c509386addc02e8919c93391fb"},(0,n.kt)("inlineCode",{parentName:"a"},"c4c1a92"))),(0,n.kt)("li",{parentName:"ul"},"refactor(container): restore mobile width to auto ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2df184c19a8685c69e6b9a55b147a97853cc6b74"},(0,n.kt)("inlineCode",{parentName:"a"},"2df184c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button): update action button hover color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bb09d718433f93091ca1b325471d48741825ca96"},(0,n.kt)("inlineCode",{parentName:"a"},"bb09d71")))),(0,n.kt)("h4",{id:"-internal-changes-21"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"chore(docusaurus): docs delete ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f9d733287902ccb096f5a976a2928e43a43a8e7"},(0,n.kt)("inlineCode",{parentName:"a"},"5f9d733")))),(0,n.kt)("h4",{id:"-documentation-changes-19"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(colors): corrections ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/da64c4c6b58e8840ea98be75d442b90911197e28"},(0,n.kt)("inlineCode",{parentName:"a"},"da64c4c"))),(0,n.kt)("li",{parentName:"ul"},"docs(list): default list showcase ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8ded06231c14d1394f77559aeb2d5a7e3a0c1bf1"},(0,n.kt)("inlineCode",{parentName:"a"},"8ded062")))),(0,n.kt)("h4",{id:"\ufe0f-others-50"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"bug(form): input min-width more specific to not break volto interface ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3f5b5d498ea1a0e3bb6fd62af5930f6579029b11"},(0,n.kt)("inlineCode",{parentName:"a"},"3f5b5d4"))),(0,n.kt)("li",{parentName:"ul"},"Update package.json ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3dba28b5a3d28adbf946a8df3d9cc9b8ef4c68e0"},(0,n.kt)("inlineCode",{parentName:"a"},"3dba28b")))),(0,n.kt)("h3",{id:"016---2022-03-11"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.5...0.1.6"},"0.1.6")," - 2022-03-11"),(0,n.kt)("h4",{id:"-new-features-31"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(cards): add custom display for volto-block-image-cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/645096ac5a0aa3326834191f56ee8a77db0464f5"},(0,n.kt)("inlineCode",{parentName:"a"},"645096a"))),(0,n.kt)("li",{parentName:"ul"},"feat(PublicationCard):create publication card component & styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e5f9b7a9bb301f446b232b99f7db54e6a7470ae"},(0,n.kt)("inlineCode",{parentName:"a"},"3e5f9b7"))),(0,n.kt)("li",{parentName:"ul"},"feat(PublicationCard):create publication card component & styles ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/12cdd5d50dc4c05f2c2b83586df90c7b91c11a75"},(0,n.kt)("inlineCode",{parentName:"a"},"12cdd5d"))),(0,n.kt)("li",{parentName:"ul"},"feat(Related Content): create Related Content component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/77eda953196f9e686d4ec2c996d6902a614af4a0"},(0,n.kt)("inlineCode",{parentName:"a"},"77eda95"))),(0,n.kt)("li",{parentName:"ul"},"feat(Related Content): create Related Content component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/08d495baeae575a07813056176ac940d7edc91eb"},(0,n.kt)("inlineCode",{parentName:"a"},"08d495b"))),(0,n.kt)("li",{parentName:"ul"},"feat(pagination,related) added several r3 components #105 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/08d47c199286402c31a0ff0de38fd08533d2cd91"},(0,n.kt)("inlineCode",{parentName:"a"},"08d47c1")))),(0,n.kt)("h4",{id:"-bug-fixes-45"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(Related Content): limit publication card number to 4 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e7df03214824a85911c26499c8975f88ffa9fe4d"},(0,n.kt)("inlineCode",{parentName:"a"},"e7df032"))),(0,n.kt)("li",{parentName:"ul"},"fix(less variables):rename publication card variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/55c6fb8e5e9660352ce1bf2bd38c4ef8834ce184"},(0,n.kt)("inlineCode",{parentName:"a"},"55c6fb8"))),(0,n.kt)("li",{parentName:"ul"},"fix(Publication Card): add link to card and arg name fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/36a7c961639b2ff07acd455ccf277dd0a93f753c"},(0,n.kt)("inlineCode",{parentName:"a"},"36a7c96"))),(0,n.kt)("li",{parentName:"ul"},"fix(radio): fix bullet scaling issue with firefox ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f02c95f18c77527f949f115471cf24302df4d49"},(0,n.kt)("inlineCode",{parentName:"a"},"5f02c95"))),(0,n.kt)("li",{parentName:"ul"},"fix(radio): fix bullet scaling issue with firefox ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dbb2e27b43e6d267a436a8475107ad01e940ec93"},(0,n.kt)("inlineCode",{parentName:"a"},"dbb2e27")))),(0,n.kt)("h4",{id:"-enhancements-60"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(form): remove custom classes and add container to form items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6b5442a3c56854bf30269f235099d8507ba588f7"},(0,n.kt)("inlineCode",{parentName:"a"},"6b5442a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form): remove custom classes and add container to form items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d1ec083647f854c09d8a64dffa6a5c829321049e"},(0,n.kt)("inlineCode",{parentName:"a"},"d1ec083"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form): update form wrapper component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7195768bbe86121fc82bebca29abfb20b50d77a"},(0,n.kt)("inlineCode",{parentName:"a"},"a719576"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form): update form wrapper component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0736ec7d671d756c13a69bd8bf93488805da27e2"},(0,n.kt)("inlineCode",{parentName:"a"},"0736ec7"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form): adjust form items to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4213cfb79430273e637b06a76af28c9cd660aa74"},(0,n.kt)("inlineCode",{parentName:"a"},"4213cfb"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form): adjust form items to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/374ffbc1c380df1b1a5f9939fc658d9ecca4ae1b"},(0,n.kt)("inlineCode",{parentName:"a"},"374ffbc"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumb): remove custom class anf and new variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b3cb83d90e0be7f8a80f619d57bc90cae4f8f207"},(0,n.kt)("inlineCode",{parentName:"a"},"b3cb83d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumb): remove custom class anf and new variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5808ad3576439df010bebfb8fd423858ffc4e66"},(0,n.kt)("inlineCode",{parentName:"a"},"d5808ad"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): clear up unnecessary form elements controls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f7e7d5bc285ea5115bc8770c7471729f06da891e"},(0,n.kt)("inlineCode",{parentName:"a"},"f7e7d5b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): small change in unordered list story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ffd87246df9dffcc064683e93d6f3aff35b3931"},(0,n.kt)("inlineCode",{parentName:"a"},"3ffd872"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): small change in unordered list story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6ce16e990f15ef8c61493359815405517756c32c"},(0,n.kt)("inlineCode",{parentName:"a"},"6ce16e9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pagination): fix menu overrides for tabs that affects pagination ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fe8c4ca32072518820ad38f8b334b38f52ef2df5"},(0,n.kt)("inlineCode",{parentName:"a"},"fe8c4ca"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pagination): fix menu overrides for tabs that affects pagination ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3f4b726c2a2047f6f9a65375074dd7ea38717f5c"},(0,n.kt)("inlineCode",{parentName:"a"},"3f4b726"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Loader):remove image & add background image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70fe041e06cfee946bb9557f9fcb5ff49d08c287"},(0,n.kt)("inlineCode",{parentName:"a"},"70fe041"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Loader):remove image & add background image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac3812684ee4377914801cd770890c78bdeecedf"},(0,n.kt)("inlineCode",{parentName:"a"},"ac38126"))),(0,n.kt)("li",{parentName:"ul"},"refactor(list): remove selection control ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a09b1798a62a6e192deb1d217d0c44b4b881ce6a"},(0,n.kt)("inlineCode",{parentName:"a"},"a09b179"))),(0,n.kt)("li",{parentName:"ul"},"refactor(list): remove selection control ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/17bf710d00a91acd35356dbaa9d5093ca80a8987"},(0,n.kt)("inlineCode",{parentName:"a"},"17bf710"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook):unordered list minor change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/df2b72730500aee5d0bbc82185222edacad38b2b"},(0,n.kt)("inlineCode",{parentName:"a"},"df2b727"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook):unordered list minor change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef6db73ce2236d0f653212d2f57c336f1f8d806e"},(0,n.kt)("inlineCode",{parentName:"a"},"ef6db73"))),(0,n.kt)("li",{parentName:"ul"},"refactor(colors): remove metalic blue color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b2f95b6dc3b1d8314827d56e88efa0dfc719aca2"},(0,n.kt)("inlineCode",{parentName:"a"},"b2f95b6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(colors): remove metalic blue color ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1eea33f71fdde5834f82d244224c185fde3ab8ba"},(0,n.kt)("inlineCode",{parentName:"a"},"1eea33f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button): update variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b1774d8c7f32ded2eff654b0d16e45d944fe5690"},(0,n.kt)("inlineCode",{parentName:"a"},"b1774d8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button): update variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/061f3e3042f28575dbb1a70f09a62bda728815be"},(0,n.kt)("inlineCode",{parentName:"a"},"061f3e3"))),(0,n.kt)("li",{parentName:"ul"},"change(blockquote): treat slate as a variation of blockquote component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19bd9a5f67e573b71531fe34b29d2e08e0856eae"},(0,n.kt)("inlineCode",{parentName:"a"},"19bd9a5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(container): remove important from rules ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e984771ed59fe849246ae8a01d9d84f3f2f232c5"},(0,n.kt)("inlineCode",{parentName:"a"},"e984771"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook):add textarea control to add/remove fluid class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/475f540efa76d0993c3f7bd72d4c646385f4c909"},(0,n.kt)("inlineCode",{parentName:"a"},"475f540"))),(0,n.kt)("li",{parentName:"ul"},"refactor(container): remove important from rules ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1cc69848705d3d592221bf7fa7d43c8b0eb37f09"},(0,n.kt)("inlineCode",{parentName:"a"},"1cc6984"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): add required attribute to form fields ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fecee278b920c44dd0dd34ace81f9606258c8f7c"},(0,n.kt)("inlineCode",{parentName:"a"},"fecee27"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progressBar): update progress bar colors with vars ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4ef1f0f6eba9792901bc9e0ec5b01877e9da96e"},(0,n.kt)("inlineCode",{parentName:"a"},"c4ef1f0"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progressBar): update progress bar colors with vars ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a44d73c48b6ccc988508fed5c3fb585353fe0958"},(0,n.kt)("inlineCode",{parentName:"a"},"a44d73c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): add required attribute to form fields ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/21da79eafa9f23dcf01cac7e096da7fab2187450"},(0,n.kt)("inlineCode",{parentName:"a"},"21da79e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(list): adjust bullet size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2b29e4e429f939500bc7d7ebd5836b8bc24090ec"},(0,n.kt)("inlineCode",{parentName:"a"},"2b29e4e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(list): adjust bullet size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/61c341cfdad3fccdd7499f6957f91ab99159ea16"},(0,n.kt)("inlineCode",{parentName:"a"},"61c341c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): add inverted background to global variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1427e70f2b208531bbb91ab1a708430f1c03ea3a"},(0,n.kt)("inlineCode",{parentName:"a"},"1427e70"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): add inverted background to global variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea25dfa5589181b7d23bef153bae3ab279e70167"},(0,n.kt)("inlineCode",{parentName:"a"},"ea25dfa"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): remove custom class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/46cc5601e378c7bfcf927b7c25dae2a2d3f795fd"},(0,n.kt)("inlineCode",{parentName:"a"},"46cc560"))),(0,n.kt)("li",{parentName:"ul"},"refactor(container): update mobile width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d548a44d86745270778134028be597f559d7a0b4"},(0,n.kt)("inlineCode",{parentName:"a"},"d548a44"))),(0,n.kt)("li",{parentName:"ul"},"refactor(grid): replace px with rem units ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e792f51e4f41b8f3f53e297b9e5a01d5e2d9bfb1"},(0,n.kt)("inlineCode",{parentName:"a"},"e792f51"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): remove custom class ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b5c8e7c2aeb2751d4b981eacc51e3dda58a922dc"},(0,n.kt)("inlineCode",{parentName:"a"},"b5c8e7c"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): updated template to change what's new title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e15f4d3c3e5d4199886bb4cfeda8dce6a4bf041"},(0,n.kt)("inlineCode",{parentName:"a"},"3e15f4d"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): added display variable for footer site logos ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5b3c2f6d85b3a42eefa8521a074a7581bfbd8fb"},(0,n.kt)("inlineCode",{parentName:"a"},"d5b3c2f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(grid): replace px with rem units ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f0331d00f537cf41ca184796386f60a88bfe6c86"},(0,n.kt)("inlineCode",{parentName:"a"},"f0331d0"))),(0,n.kt)("li",{parentName:"ul"},"change(github): auto deploy only on develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/11d6b4e9059674b6dd1fe655995231be03a910fb"},(0,n.kt)("inlineCode",{parentName:"a"},"11d6b4e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): implementation in preparation for Volto integration #20 #89 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/95b136d51ddbc5632c0fa1cc696c2297a8c4695c"},(0,n.kt)("inlineCode",{parentName:"a"},"95b136d"))),(0,n.kt)("li",{parentName:"ul"},"change(github): trigger autobuild when modifying templates contents ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/46094b1427793cd88da6f615b16b70e6cfaee9af"},(0,n.kt)("inlineCode",{parentName:"a"},"46094b1")))),(0,n.kt)("h4",{id:"-internal-changes-22"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(list): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f9e3b05effc0afeddc234b491bc86f2ec82a764f"},(0,n.kt)("inlineCode",{parentName:"a"},"f9e3b05"))),(0,n.kt)("li",{parentName:"ul"},"style(list): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8eb715b05b3bef2795d2485084386c6e910392cf"},(0,n.kt)("inlineCode",{parentName:"a"},"8eb715b"))),(0,n.kt)("li",{parentName:"ul"},"chore(github): merge changes from develop to develop-itml ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/063bd6ecc5e47321854ca4994a91bf0a43ab3e3e"},(0,n.kt)("inlineCode",{parentName:"a"},"063bd6e"))),(0,n.kt)("li",{parentName:"ul"},"chore(github): build deployment only on develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a5a1b0802b46d674d04ae099afc8510e3cb62222"},(0,n.kt)("inlineCode",{parentName:"a"},"a5a1b08"))),(0,n.kt)("li",{parentName:"ul"},"chore(github): build deployment only on develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bb455aa4308e6593c45bcb3a62b8058709d74f83"},(0,n.kt)("inlineCode",{parentName:"a"},"bb455aa"))),(0,n.kt)("li",{parentName:"ul"},"chore(github): merge changes from develop to develop-itml ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/129c12f60025db50bac5b2d3dd36e04a97d49499"},(0,n.kt)("inlineCode",{parentName:"a"},"129c12f")))),(0,n.kt)("h4",{id:"\ufe0f-others-51"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},'Revert "chore(github): merge changes from develop to develop-itml" ',(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca9520fe8d91f8924ea203eb32001e3e6518e472"},(0,n.kt)("inlineCode",{parentName:"a"},"ca9520f"))),(0,n.kt)("li",{parentName:"ul"},"refactor breadcrumbs component, make it functional and customizable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e902d6931060c5676d67842f95391379fcb3cccf"},(0,n.kt)("inlineCode",{parentName:"a"},"e902d69"))),(0,n.kt)("li",{parentName:"ul"},"rollback(cards): move custom display to volto-block-image-cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2564b1ec2cc52670c0f2abc92c49161f5cd1b006"},(0,n.kt)("inlineCode",{parentName:"a"},"2564b1e"))),(0,n.kt)("li",{parentName:"ul"},"bring back segment wrapper and make it attached ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8458f0321f44f22a605e7179485d97f41a0afa38"},(0,n.kt)("inlineCode",{parentName:"a"},"8458f03"))),(0,n.kt)("li",{parentName:"ul"},"no ",(0,n.kt)("inlineCode",{parentName:"li"},"display: flex")," for blockquote added from slate ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5595ce1b8173e6952ab3926dc5f3c988279a42dc"},(0,n.kt)("inlineCode",{parentName:"a"},"5595ce1"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about code length ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a5f36523682dde8d1e16f416a07cd0c8c615a386"},(0,n.kt)("inlineCode",{parentName:"a"},"a5f3652"))),(0,n.kt)("li",{parentName:"ul"},"Add indenting rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/15c44cbcb6a52d0fd0438ff9b5d0e5963a4b53a0"},(0,n.kt)("inlineCode",{parentName:"a"},"15c44cb"))),(0,n.kt)("li",{parentName:"ul"},"fix warning related to proptype ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/946c6c6bc9dece0985ae4b9f9cad6ece2be0ff2c"},(0,n.kt)("inlineCode",{parentName:"a"},"946c6c6"))),(0,n.kt)("li",{parentName:"ul"},"fix profile section css overflow ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/db5126fc902e191d1e18fb7e4c54877c8d8786e6"},(0,n.kt)("inlineCode",{parentName:"a"},"db5126f"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about import sorting ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/804e188eea30427053111310ad2d3edf6a4ec78b"},(0,n.kt)("inlineCode",{parentName:"a"},"804e188"))),(0,n.kt)("li",{parentName:"ul"},"don't use volto-slate ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6a029765d3a59ac65b3b5dd18c1a9624bae1d52a"},(0,n.kt)("inlineCode",{parentName:"a"},"6a02976"))),(0,n.kt)("li",{parentName:"ul"},"remove segment custom width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1d3ea40f98bbdc1eab95b4da739a659b5e29ec16"},(0,n.kt)("inlineCode",{parentName:"a"},"1d3ea40"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about naming vars ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8f9020fa3073190681de36cf1dcdf62e69ac2c74"},(0,n.kt)("inlineCode",{parentName:"a"},"8f9020f"))),(0,n.kt)("li",{parentName:"ul"},"update style for accordion title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0b0d678c69d8b0765ff015b0355c01d57c643192"},(0,n.kt)("inlineCode",{parentName:"a"},"0b0d678"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.6.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e771e657e5bedca3630d05cda643c45da5369d4c"},(0,n.kt)("inlineCode",{parentName:"a"},"e771e65"))),(0,n.kt)("li",{parentName:"ul"},"update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bbcab87ef4c8475f347f0daf4ab7e428e69c2316"},(0,n.kt)("inlineCode",{parentName:"a"},"bbcab87"))),(0,n.kt)("li",{parentName:"ul"},"add margin to ","<","br",">"," element to simulate gap as in design ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c6685c11a14febfc9b6c592a9adc9a25a0b80458"},(0,n.kt)("inlineCode",{parentName:"a"},"c6685c1"))),(0,n.kt)("li",{parentName:"ul"},"make breadcrumbs default size as tiny ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/589581fa29a7e249e59393bebe9dfe284090db6f"},(0,n.kt)("inlineCode",{parentName:"a"},"589581f"))),(0,n.kt)("li",{parentName:"ul"},"remove uneeded style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/82a8fb1eb3a359d54bc59234e498eb122d07223c"},(0,n.kt)("inlineCode",{parentName:"a"},"82a8fb1"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about hardcoded values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e04e0df7cd47d575e649d1995ea5c64b2a431b05"},(0,n.kt)("inlineCode",{parentName:"a"},"e04e0df"))),(0,n.kt)("li",{parentName:"ul"},"Add file mode rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/65c9a9357a82a39bf54862eff9231264a6277ab5"},(0,n.kt)("inlineCode",{parentName:"a"},"65c9a93"))),(0,n.kt)("li",{parentName:"ul"},"Add DRY rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/66c9c3a6b05bf3395f5bda1a7c5af26a9962e66c"},(0,n.kt)("inlineCode",{parentName:"a"},"66c9c3a"))),(0,n.kt)("li",{parentName:"ul"},"set profile section overflow to auto ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/71ab47f89a433233c14b394c3824e607dd18a393"},(0,n.kt)("inlineCode",{parentName:"a"},"71ab47f"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using eea-website-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/647a6e3e2093f2c4884c356eb148453551c8f33f"},(0,n.kt)("inlineCode",{parentName:"a"},"647a6e3"))),(0,n.kt)("li",{parentName:"ul"},"removed override already present in card.less ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/50d2ab26f85c8f409da02ec128cc1df34848ca69"},(0,n.kt)("inlineCode",{parentName:"a"},"50d2ab2"))),(0,n.kt)("li",{parentName:"ul"},"update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7a1d482aa875ab2669ed688663228d79ce9b7bea"},(0,n.kt)("inlineCode",{parentName:"a"},"7a1d482"))),(0,n.kt)("li",{parentName:"ul"},"Add functional components rule; add classnames rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91a0b067c7a36002a6d49c5c0238f593b5a6ac6e"},(0,n.kt)("inlineCode",{parentName:"a"},"91a0b06"))),(0,n.kt)("li",{parentName:"ul"},"added comment about need for removal of this fix later ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/65b81665c1cc41991b4903bb44a5eb7fb8ec5f3b"},(0,n.kt)("inlineCode",{parentName:"a"},"65b8166")))),(0,n.kt)("h3",{id:"015---2022-03-08"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.4...0.1.5"},"0.1.5")," - 2022-03-08"),(0,n.kt)("h4",{id:"-new-features-32"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(cards): add custom display for volto-block-image-cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f49ffb65f41c78499f56251c2de267ce5617b4c5"},(0,n.kt)("inlineCode",{parentName:"a"},"f49ffb6"))),(0,n.kt)("li",{parentName:"ul"},"feat(KeyContent): add new component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2534c542c2fd729b31a9064a21dae2bd3cacb2e4"},(0,n.kt)("inlineCode",{parentName:"a"},"2534c54"))),(0,n.kt)("li",{parentName:"ul"},"feat(docusaurus): Updated developer guidelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ca146ffd42cb31286a5c49fa09390d0a93270cfa"},(0,n.kt)("inlineCode",{parentName:"a"},"ca146ff"))),(0,n.kt)("li",{parentName:"ul"},"feat(storybook): add testimonial component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/55d97472d82f3819674e78f684e197625c9f854c"},(0,n.kt)("inlineCode",{parentName:"a"},"55d9747"))),(0,n.kt)("li",{parentName:"ul"},"feat(storybook): add AvatarGrid component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b6684456ea6fa17695734b5179b39be77644da93"},(0,n.kt)("inlineCode",{parentName:"a"},"b668445"))),(0,n.kt)("li",{parentName:"ul"},"feat(storybook):add Loader component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6758346a516f7c4be5d66dfdf198dbe2ffe3f01"},(0,n.kt)("inlineCode",{parentName:"a"},"f675834")))),(0,n.kt)("h4",{id:"-bug-fixes-46"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(breakpoints): fix largest screen breakpoint bug on scaling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e4a11c876c20187351fa9454b4fbf0de3e502bff"},(0,n.kt)("inlineCode",{parentName:"a"},"e4a11c8"))),(0,n.kt)("li",{parentName:"ul"},"fix(profile): section css overflow and padding issues #95 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bb9eb0f83307524bda5cf86aa0dfd678c65da653"},(0,n.kt)("inlineCode",{parentName:"a"},"bb9eb0f"))),(0,n.kt)("li",{parentName:"ul"},"fix(storybook): lint auto changes for AvatarGrid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8e74f17df77f8f9f96bf442dc178417bbfc04c6"},(0,n.kt)("inlineCode",{parentName:"a"},"b8e74f1"))),(0,n.kt)("li",{parentName:"ul"},"fix(components): add grid structure to various components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cc33546deda634cee6031bd6cde6eef3eaacb76a"},(0,n.kt)("inlineCode",{parentName:"a"},"cc33546"))),(0,n.kt)("li",{parentName:"ul"},"fix(header) re-added span tags removed in pull request #74 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/00702d7831b84aad52f10368dbef740baf581ab8"},(0,n.kt)("inlineCode",{parentName:"a"},"00702d7")))),(0,n.kt)("h4",{id:"-enhancements-61"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(button): styling updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/37afda5b00797d456e303fb585dad145b575b2ed"},(0,n.kt)("inlineCode",{parentName:"a"},"37afda5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tab): updates on variables and overrides ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/54bf703f9f34f2f945f4635cd4bc4728174c7d47"},(0,n.kt)("inlineCode",{parentName:"a"},"54bf703"))),(0,n.kt)("li",{parentName:"ul"},"change(blockquote): treat slate as a variation of blockquote component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5e8a8b8220c7c25a266f045442aae44303eb8701"},(0,n.kt)("inlineCode",{parentName:"a"},"5e8a8b8"))),(0,n.kt)("li",{parentName:"ul"},"change(footer): added display variable for footer site logos ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2f942b4a80c3ed9eb94e8b71299f4ebf33501eea"},(0,n.kt)("inlineCode",{parentName:"a"},"2f942b4"))),(0,n.kt)("li",{parentName:"ul"},"refactor(checkbox/radio): remove header from message and adjust top position of bullet ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a072b30bb01cf59339960cfd3254584cfae57c6"},(0,n.kt)("inlineCode",{parentName:"a"},"4a072b3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(color): remove secondaryColorDarken variable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/74c8ba073cc92af3987d81d484768235b95fcffb"},(0,n.kt)("inlineCode",{parentName:"a"},"74c8ba0"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus): updated template to change what's new title ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/58f58c887560e707ced47ccbac6897d8ebcf45d2"},(0,n.kt)("inlineCode",{parentName:"a"},"58f58c8"))),(0,n.kt)("li",{parentName:"ul"},"change(github): auto deploy only on develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bfa35a32bf0fefd4433aec4f7f8ee2cfe53eaae5"},(0,n.kt)("inlineCode",{parentName:"a"},"bfa35a3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): implementation in preparation for Volto integration #20 #97 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cddda2090d3d17c086dfd0cdb8a4dab3f886bfcd"},(0,n.kt)("inlineCode",{parentName:"a"},"cddda20"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumbs): component, make it functional and pluggable #32 #94 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f42e802bdf29d02c76131379b168c8c2119864b"},(0,n.kt)("inlineCode",{parentName:"a"},"9f42e80"))),(0,n.kt)("li",{parentName:"ul"},"change(card): added styles for volto cards integration #92 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a46ac21e6229059fb982174610a733c44000a2b6"},(0,n.kt)("inlineCode",{parentName:"a"},"a46ac21"))),(0,n.kt)("li",{parentName:"ul"},"refactor(grid): remove column count from example ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac0e9cf8e9f6ea99ddf8d5a92e49903999cde262"},(0,n.kt)("inlineCode",{parentName:"a"},"ac0e9cf"))),(0,n.kt)("li",{parentName:"ul"},"change(github): trigger autobuild when modifying templates contents ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f7d1523e92c1c4b3e6285a48d5f8c776aecfa9c"},(0,n.kt)("inlineCode",{parentName:"a"},"5f7d152"))),(0,n.kt)("li",{parentName:"ul"},"refactor(grid): remove custom grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1d978a96a464b3285961d54cb1cbc7c9eaf35faf"},(0,n.kt)("inlineCode",{parentName:"a"},"1d978a9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Form):change form field wrapper implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/73cdd6daba19aefce091552a62a528a42b323228"},(0,n.kt)("inlineCode",{parentName:"a"},"73cdd6d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(message): update colors to match design ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/633ce311dc5a6a141ee514a9108753531aa661e4"},(0,n.kt)("inlineCode",{parentName:"a"},"633ce31"))),(0,n.kt)("li",{parentName:"ul"},"refactor(checkbox/radio): update variables and remove important rules ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ad533b4e3e821c126f62b558523057720d2573c8"},(0,n.kt)("inlineCode",{parentName:"a"},"ad533b4"))),(0,n.kt)("li",{parentName:"ul"},"refactor(less variables): add variables to less for new components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/47df026655748865bc7af8f44d51e5a9fcf7ee34"},(0,n.kt)("inlineCode",{parentName:"a"},"47df026"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Tab): fix vertical tab alignment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/401bdf2868e8c8305ad2c3cefa3188b730348574"},(0,n.kt)("inlineCode",{parentName:"a"},"401bdf2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(lint changes): add lint changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6f6847fc19db7922c93cb5f52e50db845d053e04"},(0,n.kt)("inlineCode",{parentName:"a"},"6f6847f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(inpageNavigation): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/62f74ea3c08069da8615516a52df8415d50048d5"},(0,n.kt)("inlineCode",{parentName:"a"},"62f74ea"))),(0,n.kt)("li",{parentName:"ul"},"refactor(message): updates on styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b4cf8501de961794baf5a8ecec99e4bcddc2d71b"},(0,n.kt)("inlineCode",{parentName:"a"},"b4cf850"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): update class name ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef0969bd873e9fdd0eb32593f7c3f995270ef44c"},(0,n.kt)("inlineCode",{parentName:"a"},"ef0969b"))),(0,n.kt)("li",{parentName:"ul"},"change(github): use develop for auto pushing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a32a723f8126292f62a71cb4c4f94a2c7dec7605"},(0,n.kt)("inlineCode",{parentName:"a"},"a32a723")))),(0,n.kt)("h4",{id:"-internal-changes-23"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(design-system): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/631fa90e2ec5352c01e2ee0824de4a45cc33de34"},(0,n.kt)("inlineCode",{parentName:"a"},"631fa90"))),(0,n.kt)("li",{parentName:"ul"},"style(checkbox/radio): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a04939fdb530ed998a40aeb5b85a748d5dace0cd"},(0,n.kt)("inlineCode",{parentName:"a"},"a04939f"))),(0,n.kt)("li",{parentName:"ul"},"style(design-system): unix eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c753f0b378384150597283c97f657eafbfff296"},(0,n.kt)("inlineCode",{parentName:"a"},"3c753f0"))),(0,n.kt)("li",{parentName:"ul"},"style(message): stylelint fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5b75057cb3a7b366a940ca9d1ba577cd09dc7225"},(0,n.kt)("inlineCode",{parentName:"a"},"5b75057")))),(0,n.kt)("h4",{id:"-documentation-changes-20"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): visuals guidelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/544a9502dc046d7e8bc635c19480a8deb2b31379"},(0,n.kt)("inlineCode",{parentName:"a"},"544a950"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): search guidelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0fb229d8b6a042bd716a093faaf8a1461b70cdb8"},(0,n.kt)("inlineCode",{parentName:"a"},"0fb229d"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): loader page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/892a25dba66f3557af22f8f0f96db695ddf1b402"},(0,n.kt)("inlineCode",{parentName:"a"},"892a25d")))),(0,n.kt)("h4",{id:"\ufe0f-others-52"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Reformat header.less ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f99dfc82c165304ca5600ce5138c1233615ab69"},(0,n.kt)("inlineCode",{parentName:"a"},"1f99dfc"))),(0,n.kt)("li",{parentName:"ul"},"Close menu when changing path ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/65daea9ee34c64bd5e51104077bc745b68169cd2"},(0,n.kt)("inlineCode",{parentName:"a"},"65daea9"))),(0,n.kt)("li",{parentName:"ul"},"refactor breadcrumbs component, make it functional and customizable ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ec374e20565eb0a5aed0ff67a02cd6f77eba1f0"},(0,n.kt)("inlineCode",{parentName:"a"},"4ec374e"))),(0,n.kt)("li",{parentName:"ul"},"rollback(cards): move custom display to volto-block-image-cards ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/79d4c8914b7184d559465135f046b60ee96301e1"},(0,n.kt)("inlineCode",{parentName:"a"},"79d4c89"))),(0,n.kt)("li",{parentName:"ul"},"Open overlay menu on global menu click ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cc749bc4266aae793b85d72c43c8a08b0c2fec48"},(0,n.kt)("inlineCode",{parentName:"a"},"cc749bc"))),(0,n.kt)("li",{parentName:"ul"},"bring back segment wrapper and make it attached ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f413ffaf641c161e8ff0f8010759cffd7e30238"},(0,n.kt)("inlineCode",{parentName:"a"},"9f413ff"))),(0,n.kt)("li",{parentName:"ul"},"Use renderMenuItem also in mobile menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/02de0bb4750062a310109256b6c6d29120287fd4"},(0,n.kt)("inlineCode",{parentName:"a"},"02de0bb"))),(0,n.kt)("li",{parentName:"ul"},"Fix clicking outside closes menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af526646559d1a00ade04dc24def26e5665a5a8c"},(0,n.kt)("inlineCode",{parentName:"a"},"af52664"))),(0,n.kt)("li",{parentName:"ul"},"Cleanup args in header story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2bf6a304b1149ec1204f08f318248ed52ad8fa3d"},(0,n.kt)("inlineCode",{parentName:"a"},"2bf6a30"))),(0,n.kt)("li",{parentName:"ul"},"fix warning related to proptype ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/824b9beff77aae139882cd50a1d670a02ec6f723"},(0,n.kt)("inlineCode",{parentName:"a"},"824b9be"))),(0,n.kt)("li",{parentName:"ul"},"fix profile section css overflow ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8fd265413149f1b5e033dffa0fbcb5ef5ecad15f"},(0,n.kt)("inlineCode",{parentName:"a"},"8fd2654"))),(0,n.kt)("li",{parentName:"ul"},"don't use volto-slate ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70ca3d4ec4e8e4dc633e957b842d94b708af8b82"},(0,n.kt)("inlineCode",{parentName:"a"},"70ca3d4"))),(0,n.kt)("li",{parentName:"ul"},"remove segment custom width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a60d84d5fe76578b7760aa1dad6eef9a20916a7"},(0,n.kt)("inlineCode",{parentName:"a"},"4a60d84"))),(0,n.kt)("li",{parentName:"ul"},"update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/96f4af0fb22605fd294472eb18f7f62e4bd7b0fb"},(0,n.kt)("inlineCode",{parentName:"a"},"96f4af0"))),(0,n.kt)("li",{parentName:"ul"},"Fix TopDropdownMenu component rendering in mobile ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4626def4e1f97f323f3fef130f5d531925ba15b"},(0,n.kt)("inlineCode",{parentName:"a"},"a4626de"))),(0,n.kt)("li",{parentName:"ul"},"Add usePrevious hook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/797faba3cad73288755f6c6e685448d780905189"},(0,n.kt)("inlineCode",{parentName:"a"},"797faba"))),(0,n.kt)("li",{parentName:"ul"},"make breadcrumbs default size as tiny ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c8e1c64f27596421e78927f11616093667b04c6"},(0,n.kt)("inlineCode",{parentName:"a"},"3c8e1c6"))),(0,n.kt)("li",{parentName:"ul"},"Update package.json ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fa020cb5dd85e28d0713b3e8a11aff5b2c1060af"},(0,n.kt)("inlineCode",{parentName:"a"},"fa020cb"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about hardcoded values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0c6912c82625c2e389fd75f0d0a051348781d407"},(0,n.kt)("inlineCode",{parentName:"a"},"0c6912c"))),(0,n.kt)("li",{parentName:"ul"},"set profile section overflow to auto ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8db62bbcd0258fee16411e94888c732a29b1949d"},(0,n.kt)("inlineCode",{parentName:"a"},"8db62bb"))),(0,n.kt)("li",{parentName:"ul"},"added comment about need for removal of this fix later ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6fdbd713dbfe795e7e81cfa37398774fad71c054"},(0,n.kt)("inlineCode",{parentName:"a"},"6fdbd71"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using eea-website-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6051724437a38675e659c797bb5586ef81286ec0"},(0,n.kt)("inlineCode",{parentName:"a"},"6051724"))),(0,n.kt)("li",{parentName:"ul"},"removed override already present in card.less ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93c4e5aac9cc85ff2cc6c04180f6655d5f5616dc"},(0,n.kt)("inlineCode",{parentName:"a"},"93c4e5a"))),(0,n.kt)("li",{parentName:"ul"},"Remove console.log calls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8a3a4cb32bfed2daa86339b15c0301eb01e19f23"},(0,n.kt)("inlineCode",{parentName:"a"},"8a3a4cb"))),(0,n.kt)("li",{parentName:"ul"},"update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/81bb7d4a02576887b80e978c32724580b772d57a"},(0,n.kt)("inlineCode",{parentName:"a"},"81bb7d4"))),(0,n.kt)("li",{parentName:"ul"},"Update comment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ffa24001728f824b8e7154c93c5aad8196bd92ea"},(0,n.kt)("inlineCode",{parentName:"a"},"ffa2400"))),(0,n.kt)("li",{parentName:"ul"},"merge develop into this branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ad5b388957b7d67f1b7ae06f2b80b1c30868d72a"},(0,n.kt)("inlineCode",{parentName:"a"},"ad5b388"))),(0,n.kt)("li",{parentName:"ul"},"WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a8d97f10b9768894a135549e9dc8f938b663f905"},(0,n.kt)("inlineCode",{parentName:"a"},"a8d97f1"))),(0,n.kt)("li",{parentName:"ul"},"Use header.less from develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/99edbc6ccd6023162dcce75b36d6b9451b06f6dc"},(0,n.kt)("inlineCode",{parentName:"a"},"99edbc6"))),(0,n.kt)("li",{parentName:"ul"},"WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/57b5783e2b03859f89c5926951ea232547b455cc"},(0,n.kt)("inlineCode",{parentName:"a"},"57b5783"))),(0,n.kt)("li",{parentName:"ul"},"WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/785da36b725bf14bff28a67da799c51bc5b4f20f"},(0,n.kt)("inlineCode",{parentName:"a"},"785da36"))),(0,n.kt)("li",{parentName:"ul"},"WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5d1eba9a1df2d2bb078f119ee99b0627ac55ae1d"},(0,n.kt)("inlineCode",{parentName:"a"},"5d1eba9"))),(0,n.kt)("li",{parentName:"ul"},"adds Tags ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e37fc1957ed8357bc2190239da4440bb98b0dabe"},(0,n.kt)("inlineCode",{parentName:"a"},"e37fc19"))),(0,n.kt)("li",{parentName:"ul"},"Add useClickOutside hook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/70364c88631cbfa6e6854a99dde42ea2ad73221f"},(0,n.kt)("inlineCode",{parentName:"a"},"70364c8"))),(0,n.kt)("li",{parentName:"ul"},"Implement outside click handling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fa6f81823c47ca32209f3f1c8b1810b5447f97ec"},(0,n.kt)("inlineCode",{parentName:"a"},"fa6f818"))),(0,n.kt)("li",{parentName:"ul"},"Simplify overlay menu template ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/28b04784cf32ed4393e452c56680bffda411d526"},(0,n.kt)("inlineCode",{parentName:"a"},"28b0478"))),(0,n.kt)("li",{parentName:"ul"},"fixes less variables, fixes tags positioning ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cc19b9b537b5f21ceaba986bbd0182bb3b867ac7"},(0,n.kt)("inlineCode",{parentName:"a"},"cc19b9b"))),(0,n.kt)("li",{parentName:"ul"},"WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/15bc0f4287b705839f6fd5ac8835f03e2e99f1f1"},(0,n.kt)("inlineCode",{parentName:"a"},"15bc0f4"))),(0,n.kt)("li",{parentName:"ul"},"no ",(0,n.kt)("inlineCode",{parentName:"li"},"display: flex")," for blockquote added from slate ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/312a893e924dea4e7aed182be4a615bc3c4f04f8"},(0,n.kt)("inlineCode",{parentName:"a"},"312a893"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about code length ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/318cd48f8116a49897590137eebe2ce35285b813"},(0,n.kt)("inlineCode",{parentName:"a"},"318cd48"))),(0,n.kt)("li",{parentName:"ul"},"Add indenting rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d58968522ef82a7d5381fc4958ae2049562b7103"},(0,n.kt)("inlineCode",{parentName:"a"},"d589685"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about import sorting ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cd337c16650ae169e4b634b034f40f3cd887ceb8"},(0,n.kt)("inlineCode",{parentName:"a"},"cd337c1"))),(0,n.kt)("li",{parentName:"ul"},"Add rule about naming vars ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b112de0dcaa4209cfe143dcd26ba929b4cbe0a42"},(0,n.kt)("inlineCode",{parentName:"a"},"b112de0"))),(0,n.kt)("li",{parentName:"ul"},"Bring back classNames from header subpopup ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e477a5150bee569fadca300a3ccc3586e7d7ef4a"},(0,n.kt)("inlineCode",{parentName:"a"},"e477a51"))),(0,n.kt)("li",{parentName:"ul"},"removes tags hashtag from jsx ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6b8b3e94a6a1060304c1e5b228806985343ef6a0"},(0,n.kt)("inlineCode",{parentName:"a"},"6b8b3e9"))),(0,n.kt)("li",{parentName:"ul"},"WIP ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d481324ff7a63e3cb0847b89fa188cc8781de4dc"},(0,n.kt)("inlineCode",{parentName:"a"},"d481324"))),(0,n.kt)("li",{parentName:"ul"},"fixes undefined on empty classes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4b29080d646c44b02a28c4619f5285227fa2bf78"},(0,n.kt)("inlineCode",{parentName:"a"},"4b29080"))),(0,n.kt)("li",{parentName:"ul"},"stylelint changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a5ab83018bccd8fbfcf2160fe9c6c4fc24abe83a"},(0,n.kt)("inlineCode",{parentName:"a"},"a5ab830"))),(0,n.kt)("li",{parentName:"ul"},"Footer link color @white ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/578e4f7bb174cd46d50a8b5c5a97f8bbff510f11"},(0,n.kt)("inlineCode",{parentName:"a"},"578e4f7"))),(0,n.kt)("li",{parentName:"ul"},"add margin to ","<","br",">"," element to simulate gap as in design ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9ab9a97dc231fd3b704fedd99c742f425be4578c"},(0,n.kt)("inlineCode",{parentName:"a"},"9ab9a97"))),(0,n.kt)("li",{parentName:"ul"},"impors colors from site variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6117267716b76b17379ae989911c5d5f00e63259"},(0,n.kt)("inlineCode",{parentName:"a"},"6117267"))),(0,n.kt)("li",{parentName:"ul"},"small fix for the link in footer action ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/72df049aa644ac2a675057bf3a96440144acabfb"},(0,n.kt)("inlineCode",{parentName:"a"},"72df049"))),(0,n.kt)("li",{parentName:"ul"},"remove uneeded style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/66e9064de395b37caef1436aaee3a164b53ae406"},(0,n.kt)("inlineCode",{parentName:"a"},"66e9064"))),(0,n.kt)("li",{parentName:"ul"},"use proper naming conventions for var naming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/596e3143e28f23e60f20becd97276831c89d9684"},(0,n.kt)("inlineCode",{parentName:"a"},"596e314"))),(0,n.kt)("li",{parentName:"ul"},"Add file mode rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/805baa7db5ae1863bc85687f8f872c74a26647c8"},(0,n.kt)("inlineCode",{parentName:"a"},"805baa7"))),(0,n.kt)("li",{parentName:"ul"},"use less variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b43ac8d3bfc0231313f3d8bc719e373a127c6329"},(0,n.kt)("inlineCode",{parentName:"a"},"b43ac8d"))),(0,n.kt)("li",{parentName:"ul"},"Add DRY rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2f1584e769d0462c0385847630e3bbfe48a52339"},(0,n.kt)("inlineCode",{parentName:"a"},"2f1584e"))),(0,n.kt)("li",{parentName:"ul"},"Add functional components rule; add classnames rule ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1b2915ed3a4a3446e11058ac7de8937cf5755630"},(0,n.kt)("inlineCode",{parentName:"a"},"1b2915e"))),(0,n.kt)("li",{parentName:"ul"},"fix z-index of header ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d2a5d6bb822a298367ce58d867939318171a300"},(0,n.kt)("inlineCode",{parentName:"a"},"7d2a5d6"))),(0,n.kt)("li",{parentName:"ul"},"Remove comment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d120b16491406ea7cc26428dcf13ec2565868d0"},(0,n.kt)("inlineCode",{parentName:"a"},"7d120b1")))),(0,n.kt)("h3",{id:"014---2022-03-01"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.4-beta.0...0.1.4"},"0.1.4")," - 2022-03-01"),(0,n.kt)("h4",{id:"-enhancements-62"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(pagination): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/06cc3b6db6f56040264e4c70fe2e39ace14499d7"},(0,n.kt)("inlineCode",{parentName:"a"},"06cc3b6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Form):create form field wrapper file ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/95b9934a75ffd6b254b7bb9c119b8087c7565c13"},(0,n.kt)("inlineCode",{parentName:"a"},"95b9934"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): update margins for menu items ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/230e476d133b3f7853a73f3f2ee372c6306bd43f"},(0,n.kt)("inlineCode",{parentName:"a"},"230e476"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): update gradient ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/47f2ea40c4f214a41af58ceb90839a05932b0b55"},(0,n.kt)("inlineCode",{parentName:"a"},"47f2ea4")))),(0,n.kt)("h4",{id:"-documentation-changes-21"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): divider page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c6bb2389f819a9ebd8e34db0e825f3e5f62130d4"},(0,n.kt)("inlineCode",{parentName:"a"},"c6bb238")))),(0,n.kt)("h4",{id:"\ufe0f-others-53"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"add footer links,align footer image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b039564e8cd3a0319ebe07f434f20bb7d7827fe1"},(0,n.kt)("inlineCode",{parentName:"a"},"b039564"))),(0,n.kt)("li",{parentName:"ul"},"cosmetics: remove formatting ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e02b08dc2adc8b89a5b9117b5a572c7080248c29"},(0,n.kt)("inlineCode",{parentName:"a"},"e02b08d"))),(0,n.kt)("li",{parentName:"ul"},"refactor Footer component to consume children and prop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/faafcffe07383ba55f5746cb971cdf706d988f78"},(0,n.kt)("inlineCode",{parentName:"a"},"faafcff"))),(0,n.kt)("li",{parentName:"ul"},"update footer stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4e5742872f21d9737f3de443fa0e9d1b6ba02637"},(0,n.kt)("inlineCode",{parentName:"a"},"4e57428"))),(0,n.kt)("li",{parentName:"ul"},"update stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/81973cac96ee48e9b294c45e32c0ec3d2956fe67"},(0,n.kt)("inlineCode",{parentName:"a"},"81973ca"))),(0,n.kt)("li",{parentName:"ul"},"Small improvements to footer ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6d1fdc000ab83932df62244142068f097aeeb85"},(0,n.kt)("inlineCode",{parentName:"a"},"f6d1fdc"))),(0,n.kt)("li",{parentName:"ul"},"fix header urls ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e5908916823a1f5771ddbeb51b3e8af026425c49"},(0,n.kt)("inlineCode",{parentName:"a"},"e590891"))),(0,n.kt)("li",{parentName:"ul"},"Rename files in footer story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3de0c19d1ddeb69d8567026e1532fceb9221049a"},(0,n.kt)("inlineCode",{parentName:"a"},"3de0c19"))),(0,n.kt)("li",{parentName:"ul"},"add style for accordion title input on edit mode ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/598aa129f2dff0a2cb2ec57f551fa72481aa911e"},(0,n.kt)("inlineCode",{parentName:"a"},"598aa12"))),(0,n.kt)("li",{parentName:"ul"},"remove comments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2db0d2c2bbebe8bab8cf9801c5ea2650dde96b87"},(0,n.kt)("inlineCode",{parentName:"a"},"2db0d2c"))),(0,n.kt)("li",{parentName:"ul"},"Apply slate customization if volto-slate addon is used ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c066701dc359c6daf01703dac8fa61c2314c11cf"},(0,n.kt)("inlineCode",{parentName:"a"},"c066701"))),(0,n.kt)("li",{parentName:"ul"},"use relative links ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af91a203bb30f5c9aa1335bfa8cdaa7857d577e2"},(0,n.kt)("inlineCode",{parentName:"a"},"af91a20"))),(0,n.kt)("li",{parentName:"ul"},"make footer anchor links white ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0c671e1bf52268505a5dc58196c285c04da33b10"},(0,n.kt)("inlineCode",{parentName:"a"},"0c671e1"))),(0,n.kt)("li",{parentName:"ul"},"use custom var for line-height ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f7f6c7ea605014741b9426b19008a4e6eda6704c"},(0,n.kt)("inlineCode",{parentName:"a"},"f7f6c7e"))),(0,n.kt)("li",{parentName:"ul"},"Update semantic.less ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4a90aed030a8927fa2ea949e4f44d23638c751a"},(0,n.kt)("inlineCode",{parentName:"a"},"a4a90ae"))),(0,n.kt)("li",{parentName:"ul"},"Bump release version ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c41a42bc2fd8174a2554e6dce1a1090eff4f3bd1"},(0,n.kt)("inlineCode",{parentName:"a"},"c41a42b"))),(0,n.kt)("li",{parentName:"ul"},"Update style ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/89686990b2481f339c9bec7e7f9d35d9caab94c5"},(0,n.kt)("inlineCode",{parentName:"a"},"8968699"))),(0,n.kt)("li",{parentName:"ul"},"remove styling on header popups ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/86c499be61c0d2df46cb3469a47f0afae2e46c49"},(0,n.kt)("inlineCode",{parentName:"a"},"86c499b"))),(0,n.kt)("li",{parentName:"ul"},"remove search icon styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aca80fdc78859461cfee1d902b1d122d4a189b31"},(0,n.kt)("inlineCode",{parentName:"a"},"aca80fd"))),(0,n.kt)("li",{parentName:"ul"},"adjust popup height for computer screens ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/47c5edb06c8d8cdb9af8ac64f68be0e0360eccaf"},(0,n.kt)("inlineCode",{parentName:"a"},"47c5edb"))),(0,n.kt)("li",{parentName:"ul"},"fix login container width ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9a887e3b15aa63aab9be8738f599febcfe245b81"},(0,n.kt)("inlineCode",{parentName:"a"},"9a887e3"))),(0,n.kt)("li",{parentName:"ul"},"Typo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/90da95c67e965124da7f431e464bcbc15fa67894"},(0,n.kt)("inlineCode",{parentName:"a"},"90da95c"))),(0,n.kt)("li",{parentName:"ul"},"fix search-input icon line-height ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b087ff86d7753f3ee0bf90a9b07c4ee7ef5e336c"},(0,n.kt)("inlineCode",{parentName:"a"},"b087ff8"))),(0,n.kt)("li",{parentName:"ul"},"lint fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e9790ca72b8d3caf114c1b80b9c5837fb6a1a56e"},(0,n.kt)("inlineCode",{parentName:"a"},"e9790ca"))),(0,n.kt)("li",{parentName:"ul"},"Rename, reorganize logos ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1ef8d22df5a757258d8610818f44362046bc828d"},(0,n.kt)("inlineCode",{parentName:"a"},"1ef8d22")))),(0,n.kt)("h3",{id:"014-beta0---2022-02-25"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.3...0.1.4-beta.0"},"0.1.4-beta.0")," - 2022-02-25"),(0,n.kt)("h4",{id:"-new-features-33"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(github): added feature and bug reports templates with our guidelines as checkboxes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/15490937382ced93f5ac69cc1939256c0a468823"},(0,n.kt)("inlineCode",{parentName:"a"},"1549093")))),(0,n.kt)("h3",{id:"013---2022-02-25"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.2...0.1.3"},"0.1.3")," - 2022-02-25"),(0,n.kt)("h4",{id:"-bug-fixes-47"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(all): change eol to unix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/62e72244f78d43ce1c7b1a5ceb8405e4a617c88a"},(0,n.kt)("inlineCode",{parentName:"a"},"62e7224"))),(0,n.kt)("li",{parentName:"ul"},"fix(banner): separate url value ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f9c9140a6f8640bbb83a08f9c5c268f31ff7b6a8"},(0,n.kt)("inlineCode",{parentName:"a"},"f9c9140"))),(0,n.kt)("li",{parentName:"ul"},"fix(all): merge eol ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c68f6e0e7ab11d7451c8aabf194f62da0b6adb28"},(0,n.kt)("inlineCode",{parentName:"a"},"c68f6e0"))),(0,n.kt)("li",{parentName:"ul"},"fix(blockquote): align self property now uses a valid entry ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ec761634765105694386ce48153fb95c09339273"},(0,n.kt)("inlineCode",{parentName:"a"},"ec76163")))),(0,n.kt)("h4",{id:"-enhancements-63"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): new implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff013afc68fed97d085e3930f6d728b266786dc1"},(0,n.kt)("inlineCode",{parentName:"a"},"ff013af"))),(0,n.kt)("li",{parentName:"ul"},"change(volto): removed customizations made for ims theme from volto-eea-design-system ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bc8d514d82da0811c10eefe6dde16e0846497a4a"},(0,n.kt)("inlineCode",{parentName:"a"},"bc8d514"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Timeline): divide to sub components and change files to .jsx ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e2bd3b6c8dd064e7269819ce465b961a0cee849"},(0,n.kt)("inlineCode",{parentName:"a"},"3e2bd3b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4e5d08d565ef08e4e390ede4a611145a16ca2fa9"},(0,n.kt)("inlineCode",{parentName:"a"},"4e5d08d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): link header's menu to mega menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/08406d84e5bc1c7eb1358baff19ff6731f124b32"},(0,n.kt)("inlineCode",{parentName:"a"},"08406d8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Menu): change mega menu implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/455a51b9a9fbb00c6a89c42de226787c143176f7"},(0,n.kt)("inlineCode",{parentName:"a"},"455a51b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Grid):minor changes and delete extra files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/272585dfed0c0e82b26c1e6843484ad0981ba75f"},(0,n.kt)("inlineCode",{parentName:"a"},"272585d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(timeline): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b98641af00f23302b728094ed00a4563b6813387"},(0,n.kt)("inlineCode",{parentName:"a"},"b98641a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(megaMenu): fix link hover issue for tablet ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/564e9721aea7d4ed998d88764e37454bc3154d3d"},(0,n.kt)("inlineCode",{parentName:"a"},"564e972"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): add remix icons and minor updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c9c97dd719187e996efabaee28ccbf23d43f03af"},(0,n.kt)("inlineCode",{parentName:"a"},"c9c97dd"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): change header buttons implementation ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6608b8cfffb75dda90b01728dc4fe657cbd84069"},(0,n.kt)("inlineCode",{parentName:"a"},"6608b8c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): add sub components and change existing Main ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/74c35a3fe462bdad7b9b2a5a6e969043439fdf5b"},(0,n.kt)("inlineCode",{parentName:"a"},"74c35a3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(table): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab7a0e8d9e83edb3035d57285a5f85557bcd7576"},(0,n.kt)("inlineCode",{parentName:"a"},"ab7a0e8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Footer): delete Actions & ThemeSites files and clear imports ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7a78456f55742a1b356070303218342876641e52"},(0,n.kt)("inlineCode",{parentName:"a"},"7a78456"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/326655a48aeac65b32beadb48707d0193c952702"},(0,n.kt)("inlineCode",{parentName:"a"},"326655a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Breadcrumb): add react router link and minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/073a3a36215427dce274a533b10d2d0bb3526de9"},(0,n.kt)("inlineCode",{parentName:"a"},"073a3a3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): show menu on search & minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4d49a8ae6958b84bd2dbaf7bd5f62310037eb288"},(0,n.kt)("inlineCode",{parentName:"a"},"4d49a8a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(List): add extra default list story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/95665cdca945cba104a25d5efcbc56436dffbd7f"},(0,n.kt)("inlineCode",{parentName:"a"},"95665cd"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus) change generation of what's new section and bump package version ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6c35cff4d65bb44755376c85ff4de8c6b39af00b"},(0,n.kt)("inlineCode",{parentName:"a"},"6c35cff"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Footer): minor code changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/67cb4bc5f9d341da78e7816ed89f219d8ac2836e"},(0,n.kt)("inlineCode",{parentName:"a"},"67cb4bc"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Menu): add class to mega menu items for styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19baa342c29322d11371303dc0092f472da1eeee"},(0,n.kt)("inlineCode",{parentName:"a"},"19baa34"))),(0,n.kt)("li",{parentName:"ul"},"change(accordion): modified default accordion stories titles with real accordion names ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cf11cc81d7096d338c565180597822e51fcaa8b7"},(0,n.kt)("inlineCode",{parentName:"a"},"cf11cc8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): accessibility image alt fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7347a688c2f37f08390b189f8bfa990c26c7f75"},(0,n.kt)("inlineCode",{parentName:"a"},"a7347a6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): adjust to volto in progress ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/760becabf40dbbaed36dac6c37275c7e31aa2509"},(0,n.kt)("inlineCode",{parentName:"a"},"760beca"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): header items as storybook arguments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/388c752aa0694e78f5306c2b2efa4a34df4b9ca6"},(0,n.kt)("inlineCode",{parentName:"a"},"388c752"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): update less variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/35b0a98eced49212bb08c3c7d2ac6987a16ec6be"},(0,n.kt)("inlineCode",{parentName:"a"},"35b0a98"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): actions as buttons; don't hardcode url for banner image; subcomponentize Banner, add Banner.Action; add developer guidelines on inline styles and line endings; ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6dd5a41248e8bf4095744bd89217707f3ad820a1"},(0,n.kt)("inlineCode",{parentName:"a"},"6dd5a41"))),(0,n.kt)("li",{parentName:"ul"},"refactor(blockquote): fix responsive margins and sizes rems ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/209f94f5535d83678af5fd650dcc3892a94c8a34"},(0,n.kt)("inlineCode",{parentName:"a"},"209f94f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Input): label position and style change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/970074aacae0c1ffabe88be58779b332993a37fd"},(0,n.kt)("inlineCode",{parentName:"a"},"970074a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): update dropdown menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32eb0fa5dbb431c5d8e74e4c3e28b0555dab8aea"},(0,n.kt)("inlineCode",{parentName:"a"},"32eb0fa"))),(0,n.kt)("li",{parentName:"ul"},"refactor(timeline): theming updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c80c9aa5eb08c3b58199c6f6faca06445640f9f8"},(0,n.kt)("inlineCode",{parentName:"a"},"c80c9aa"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Blockquote):remove image stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a6357caa641e18e7a19b834cd907ba8c7117367f"},(0,n.kt)("inlineCode",{parentName:"a"},"a6357ca"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus) proofread blockquote usage section and removed unused api section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0bb29fdb73bce90f842748abd978a388fff93932"},(0,n.kt)("inlineCode",{parentName:"a"},"0bb29fd"))),(0,n.kt)("li",{parentName:"ul"},"change(infrastructure) cherry-pick fix 9639243 skipping jenkins on auto commits ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fc744cda5a4e6d9da0ab6e7f92868d53f28f53c1"},(0,n.kt)("inlineCode",{parentName:"a"},"fc744cd"))),(0,n.kt)("li",{parentName:"ul"},"change(ci) build storybook and docusaurus only when pushing to develop-itml branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4de0cbf9bfc4ecb46605dca1048a38db844880e7"},(0,n.kt)("inlineCode",{parentName:"a"},"4de0cbf"))),(0,n.kt)("li",{parentName:"ul"},"change(infrastructure): modify whats new doc when committing the auto deployment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/39df33ed946a8167e4954cffb676144700e0ec38"},(0,n.kt)("inlineCode",{parentName:"a"},"39df33e"))),(0,n.kt)("li",{parentName:"ul"},"change(blockquote): introduce float argument for blockquote with image storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8fc72906c264b5e96702f8518e81d5724b494a5c"},(0,n.kt)("inlineCode",{parentName:"a"},"8fc7290"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pullquote): add word break ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2245e53dde6dd8abf437afa94e92bbedc60c9f8c"},(0,n.kt)("inlineCode",{parentName:"a"},"2245e53"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Banner): minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b9073b60e337eab40a992283b5b9e75d5cffe895"},(0,n.kt)("inlineCode",{parentName:"a"},"b9073b6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(table): fix th font weight ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a96a0a7a4cb450b5f947bc397495a2a41c605c87"},(0,n.kt)("inlineCode",{parentName:"a"},"a96a0a7"))),(0,n.kt)("li",{parentName:"ul"},"refactor(comment): remove avatar border radius ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d42c37bb8f71e20e1d0ec438c14e3c7ac00cf0ae"},(0,n.kt)("inlineCode",{parentName:"a"},"d42c37b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): adjust title size ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7a24d9c07a5994fa46c39fdf1e827e0d1ae5e504"},(0,n.kt)("inlineCode",{parentName:"a"},"7a24d9c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Image): change image path ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a580da68a45bbe68d314f60e9495fc321489caf5"},(0,n.kt)("inlineCode",{parentName:"a"},"a580da6"))),(0,n.kt)("li",{parentName:"ul"},"change(infrastructure): specify that docs folder contains changes for deployment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a1ca9153b70e3525cd73423d059a8607f63fc2b9"},(0,n.kt)("inlineCode",{parentName:"a"},"a1ca915")))),(0,n.kt)("h4",{id:"-internal-changes-24"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(input) prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e83fa0c3e95e33d89ab668de38e6b0b12d9fb0d9"},(0,n.kt)("inlineCode",{parentName:"a"},"e83fa0c"))),(0,n.kt)("li",{parentName:"ul"},"chore(storybook): prettier fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/354c7b33c92a9f48ca9cbb0b96b6cec213e465c8"},(0,n.kt)("inlineCode",{parentName:"a"},"354c7b3"))),(0,n.kt)("li",{parentName:"ul"},"chore(design system): technical commit for edw integration tests ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f76035122d647e14b5151af3b39f0ab3e199af2"},(0,n.kt)("inlineCode",{parentName:"a"},"9f76035"))),(0,n.kt)("li",{parentName:"ul"},"style(storybook): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c9ad345268335c42e41d13b35c0da93e9770847"},(0,n.kt)("inlineCode",{parentName:"a"},"3c9ad34"))),(0,n.kt)("li",{parentName:"ul"},"chore(infrastructure) updated branch with changes from bitbucket ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/77866f8c7ac203db0645a74b7a7456b5c4de5dd7"},(0,n.kt)("inlineCode",{parentName:"a"},"77866f8")))),(0,n.kt)("h4",{id:"\ufe0f-others-54"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"doc(colours):fix color to better show primary ones ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/705b7899f9d687747d2deb27ac4d8b4429878de0"},(0,n.kt)("inlineCode",{parentName:"a"},"705b789"))),(0,n.kt)("li",{parentName:"ul"},"doc(colours):change font size to fit text in one line ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4ad751660ec832e67a0c858e75685259b9ef8d82"},(0,n.kt)("inlineCode",{parentName:"a"},"4ad7516"))),(0,n.kt)("li",{parentName:"ul"},"bump package release to 1.3.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f3cfe4f5232ff96a9845d12da72008cf838c1010"},(0,n.kt)("inlineCode",{parentName:"a"},"f3cfe4f"))),(0,n.kt)("li",{parentName:"ul"},"Refactor banner into content subcomponent ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f8df238b4db90fdb841cdd5436a644e582f73b82"},(0,n.kt)("inlineCode",{parentName:"a"},"f8df238"))),(0,n.kt)("li",{parentName:"ul"},"lint fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cda322d8c013ef303b93b4b8d29594aa3bbd0bc1"},(0,n.kt)("inlineCode",{parentName:"a"},"cda322d"))),(0,n.kt)("li",{parentName:"ul"},"rollback don'ts grammar change and disable unresolved import for Banner.stories.jsx ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a1bd7154fa64451b6a521743955a57405dc7fb67"},(0,n.kt)("inlineCode",{parentName:"a"},"a1bd715"))),(0,n.kt)("li",{parentName:"ul"},"Add space line in component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d4d1a5fbe9a9ea53701702d7ce33622795f5ab00"},(0,n.kt)("inlineCode",{parentName:"a"},"d4d1a5f")))),(0,n.kt)("h3",{id:"012---2022-02-17"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.2-beta.2...0.1.2"},"0.1.2")," - 2022-02-17"),(0,n.kt)("h4",{id:"-new-features-34"},"\ud83d\ude80 New Features"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"feat(blockquote) added blockquote styles as a custom module ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d30662e23176cf7a5ab64aa322acd5a09a0c4130"},(0,n.kt)("inlineCode",{parentName:"a"},"d30662e")))),(0,n.kt)("h4",{id:"-bug-fixes-48"},"\ud83d\udc1b Bug Fixes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"fix(inpageNavigation): hide at the top of the page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/97ef50069cd9b29345fb68ce8b557a47577669a4"},(0,n.kt)("inlineCode",{parentName:"a"},"97ef500"))),(0,n.kt)("li",{parentName:"ul"},"fix(footer):missing image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ac91a29a134c97af842c6be4987c60c44c4c96d8"},(0,n.kt)("inlineCode",{parentName:"a"},"ac91a29"))),(0,n.kt)("li",{parentName:"ul"},"fix(comment):fix broken image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8125dc179923f652ecd25003df8ecb4fb0aeffb9"},(0,n.kt)("inlineCode",{parentName:"a"},"8125dc1"))),(0,n.kt)("li",{parentName:"ul"},"fix(message): fix font loading ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fdc498e178a04315c88e005fbc1371ba954ff402"},(0,n.kt)("inlineCode",{parentName:"a"},"fdc498e"))),(0,n.kt)("li",{parentName:"ul"},"fix(logo): logo change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f8c8af4453774386d5d0432a078b049416d034b"},(0,n.kt)("inlineCode",{parentName:"a"},"5f8c8af")))),(0,n.kt)("h4",{id:"-enhancements-64"},"\ud83d\udc85 Enhancements"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): multiple components fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a3ff518323a3eab18edc5057c6f1233e5422a22"},(0,n.kt)("inlineCode",{parentName:"a"},"4a3ff51"))),(0,n.kt)("li",{parentName:"ul"},"change(infrastructure) re-enable integration tests for auto release stack ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce8daf8abc6eb9a6b7fd8579904a3e5642896e3a"},(0,n.kt)("inlineCode",{parentName:"a"},"ce8daf8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): global site files styling update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f3770f1756bca3898e2a67fa532a9d97b0fd1ef2"},(0,n.kt)("inlineCode",{parentName:"a"},"f3770f1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): multiple components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9277aaccb09aa03575b95851d55fc69b1f530e23"},(0,n.kt)("inlineCode",{parentName:"a"},"9277aac"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer) adjust to volto theming update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a59f1c354ceea661c60faabfdb6226c9f4ba1209"},(0,n.kt)("inlineCode",{parentName:"a"},"a59f1c3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): minor styling update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dd6b55c6c5331383a42f6865bd9bd0641feb9a3b"},(0,n.kt)("inlineCode",{parentName:"a"},"dd6b55c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): change header mega menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7559b57a08c2f0e9f3eb95167479ca041b998bc5"},(0,n.kt)("inlineCode",{parentName:"a"},"7559b57"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/451b9493b100dae80bed4b6629da725195dddff1"},(0,n.kt)("inlineCode",{parentName:"a"},"451b949"))),(0,n.kt)("li",{parentName:"ul"},"refactor(accordion): minor styling update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aeaf25f585c1379a2bd40de1c1bf03fee00ef76e"},(0,n.kt)("inlineCode",{parentName:"a"},"aeaf25f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bdff1768096443f2f453d76bf9958adabd309cb7"},(0,n.kt)("inlineCode",{parentName:"a"},"bdff176"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer):mobile responsiveness ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/14822bec78feebc2b06fc26d6992a481be2e3609"},(0,n.kt)("inlineCode",{parentName:"a"},"14822be"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): main and custom less files update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1607760bb1582c63ab1a6b978ac13bb0ca51b0c2"},(0,n.kt)("inlineCode",{parentName:"a"},"1607760"))),(0,n.kt)("li",{parentName:"ul"},"refactor(timeline): update after removing timeline addon ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f54d3806eb0a60379b46b03a04a6602ed465cd15"},(0,n.kt)("inlineCode",{parentName:"a"},"f54d380"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Footer): replace with subcomponents ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/378c652265213bafac9de1d946cb328fa2fe90cb"},(0,n.kt)("inlineCode",{parentName:"a"},"378c652"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): header change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/029e85039bb3f35a6ba4ff2870d98e1faa23661b"},(0,n.kt)("inlineCode",{parentName:"a"},"029e850"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): change header bar ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2b766fd62c86d22f01278c54d3a1dbfb696b095b"},(0,n.kt)("inlineCode",{parentName:"a"},"2b766fd"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus) use itml branch for docusaurus deployment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e286c50056aa6d0d5735cb330789b4e48a1f927"},(0,n.kt)("inlineCode",{parentName:"a"},"6e286c5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(accordion): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/971fcb824f6aa55ac28b4b275927b202d2c08ca6"},(0,n.kt)("inlineCode",{parentName:"a"},"971fcb8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): add sub components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7f955dbafa94c13e71ff587af70aa84d18da8da0"},(0,n.kt)("inlineCode",{parentName:"a"},"7f955db"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus) tweak auto deployment to always commit changes from docs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a2940daef1cf281bac87dec3cec68337053cc52d"},(0,n.kt)("inlineCode",{parentName:"a"},"a2940da"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): less and variables files created ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5b1a8aaf7f678dd60fb88149284058fcab617fd"},(0,n.kt)("inlineCode",{parentName:"a"},"d5b1a8a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(label): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c945e1600b4beb3667b389542adade317d285c6"},(0,n.kt)("inlineCode",{parentName:"a"},"3c945e1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(message): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3e950fc56461540be24d9e5b2ff3c0bf8ad53738"},(0,n.kt)("inlineCode",{parentName:"a"},"3e950fc"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Footer): add sub components and props ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c3d14871887a83fb91792fbc8977c0439bcb16f2"},(0,n.kt)("inlineCode",{parentName:"a"},"c3d1487"))),(0,n.kt)("li",{parentName:"ul"},"refactor(modal): modal and confirm adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/83b60e94bdd3203a92a1b9038f9cc45011ba72a5"},(0,n.kt)("inlineCode",{parentName:"a"},"83b60e9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(comment): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/84348c36b5b750c324c89b5e3c462319bb9ebf46"},(0,n.kt)("inlineCode",{parentName:"a"},"84348c3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook):adjust headings ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/32f64f9b71d1cb8c96c9c37ba1850a2278f95287"},(0,n.kt)("inlineCode",{parentName:"a"},"32f64f9"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): add comments to header menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c2c83b202e5117d8e0013101d8e922e9d93d21de"},(0,n.kt)("inlineCode",{parentName:"a"},"c2c83b2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Accordion): clear up accordion stories code ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4e59b8fa961b878591e9806e1ebbfdb841523077"},(0,n.kt)("inlineCode",{parentName:"a"},"4e59b8f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(segmant): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3ab211e868296f377fddba203847549f0e5e07df"},(0,n.kt)("inlineCode",{parentName:"a"},"3ab211e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button) minor styling update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8782bb27c789a4aac97b380d718f4de129fdf682"},(0,n.kt)("inlineCode",{parentName:"a"},"8782bb2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner): change image position ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cdd76d59ade86f3f989bf7d94e45e4d9b439115f"},(0,n.kt)("inlineCode",{parentName:"a"},"cdd76d5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(breadcrumbs): update less variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/640817ee904f88a04f0e8f11b258f95b8db97039"},(0,n.kt)("inlineCode",{parentName:"a"},"640817e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(list): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1079c733e6ec634fedaab5b4630888a52b28e482"},(0,n.kt)("inlineCode",{parentName:"a"},"1079c73"))),(0,n.kt)("li",{parentName:"ul"},"refactor(timeline):adjust timeline module ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/213eb11e8e87940c18d81738609b4684329a5ce4"},(0,n.kt)("inlineCode",{parentName:"a"},"213eb11"))),(0,n.kt)("li",{parentName:"ul"},"refactor(blockquote):adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5eec87fc1b3017011266241c20b31217ac27c12d"},(0,n.kt)("inlineCode",{parentName:"a"},"5eec87f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progress): add progress bar colors ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ccf3c9823b2583fc70183554df7c4588fbf9ca13"},(0,n.kt)("inlineCode",{parentName:"a"},"ccf3c98"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pullquote):adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fee446668a8d65a717b42667af825cb5cec836b2"},(0,n.kt)("inlineCode",{parentName:"a"},"fee4466"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): change mobile mega menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c7ecf18a81024121218d580f201f324cf990829e"},(0,n.kt)("inlineCode",{parentName:"a"},"c7ecf18"))),(0,n.kt)("li",{parentName:"ul"},"refactor(statistic): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b726e49519914b02766bcd993b94ce9ff164e1df"},(0,n.kt)("inlineCode",{parentName:"a"},"b726e49"))),(0,n.kt)("li",{parentName:"ul"},"refactor(button) adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/eb257f83541871ccc635842664722b914661770c"},(0,n.kt)("inlineCode",{parentName:"a"},"eb257f8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form): minor styling update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/79934b2cde2e806418a6422df2914321181f7a22"},(0,n.kt)("inlineCode",{parentName:"a"},"79934b2"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Footer): create Actions & Sites sub components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/446840b99abd6897c1b59a9462d72b1f06f1dd4e"},(0,n.kt)("inlineCode",{parentName:"a"},"446840b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(inpageNavigation): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/85c631a9e9c1454f1f2530e4f1851089663dd610"},(0,n.kt)("inlineCode",{parentName:"a"},"85c631a"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Inpage Navigation): changed button's display ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/36e5b4f107ce3535b607f7ed169c723a66ce6ac2"},(0,n.kt)("inlineCode",{parentName:"a"},"36e5b4f"))),(0,n.kt)("li",{parentName:"ul"},"enhancement(docusaurus) modified headings to be within release versions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/19ace3038d6b4535b29634209e4d506e7dca2c2c"},(0,n.kt)("inlineCode",{parentName:"a"},"19ace30"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): move components to ui folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb91f88f628580f565eb01ea8627763bc2243dfb"},(0,n.kt)("inlineCode",{parentName:"a"},"cb91f88"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Header): change mega menu ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/de0fc6b3862a88ac04058b56020af23c1946ce41"},(0,n.kt)("inlineCode",{parentName:"a"},"de0fc6b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Pullquote): divide Pullquote to sub components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/34413c44ab9e318d67408f7497782b7de693deeb"},(0,n.kt)("inlineCode",{parentName:"a"},"34413c4"))),(0,n.kt)("li",{parentName:"ul"},"enhancement(docusaurus) replace changelog when auto-building docs Refs #145331 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/da25c0e25ffa80131ab4b5503b28e43385d9f827"},(0,n.kt)("inlineCode",{parentName:"a"},"da25c0e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(popup): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d0d192dc2b2a5edd422cf6a7b359c384ec4b1d55"},(0,n.kt)("inlineCode",{parentName:"a"},"d0d192d"))),(0,n.kt)("li",{parentName:"ul"},"refactor(card):adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ab6f914f487bea0df299de7da0bbd917733ee00"},(0,n.kt)("inlineCode",{parentName:"a"},"2ab6f91"))),(0,n.kt)("li",{parentName:"ul"},"refactor(item): adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/89a16af86a165d7798b68b95ff3de215a92f0569"},(0,n.kt)("inlineCode",{parentName:"a"},"89a16af"))),(0,n.kt)("li",{parentName:"ul"},"refactor(pullquotes) remove unnecessary variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e0d20a3febec060ac24c5498846e768d7068e8b9"},(0,n.kt)("inlineCode",{parentName:"a"},"e0d20a3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(progress):adjust to volto theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d1ab950ee9cc14bbe95869d4f143fc428aad5a8d"},(0,n.kt)("inlineCode",{parentName:"a"},"d1ab950"))),(0,n.kt)("li",{parentName:"ul"},"refactor(blockquote) change variables names ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/36fd5be9bde1a3ceb8390639414f254fc26b8e76"},(0,n.kt)("inlineCode",{parentName:"a"},"36fd5be"))),(0,n.kt)("li",{parentName:"ul"},"refactor(comment): adjust font sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0311ed14c951eb9cba18a58f6f954c19601d838b"},(0,n.kt)("inlineCode",{parentName:"a"},"0311ed1"))),(0,n.kt)("li",{parentName:"ul"},"refactor(InpageNavigation): clear up code ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1d7afdc8d751e61c3eef75360555807fdbef8619"},(0,n.kt)("inlineCode",{parentName:"a"},"1d7afdc"))),(0,n.kt)("li",{parentName:"ul"},"refactor(container): change variable name for computer padding ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/26d123f3e7e30a706b09efc10773694af79377f9"},(0,n.kt)("inlineCode",{parentName:"a"},"26d123f"))),(0,n.kt)("li",{parentName:"ul"},"refactor(inpageNavigation): remove imports ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/25c1d1c3016695d92d104a12b22a6a9254f41b20"},(0,n.kt)("inlineCode",{parentName:"a"},"25c1d1c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): update ui index components exports ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce78d47880cab5849f4c01785cdd97a9b26771ec"},(0,n.kt)("inlineCode",{parentName:"a"},"ce78d47"))),(0,n.kt)("li",{parentName:"ul"},"change(infrastructure) auto build storybook when pushing to develop-itml branch of volto-eea-design-system ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e9aa5bc3de9c2e1c5dc55b5d317679bc14dd1cbd"},(0,n.kt)("inlineCode",{parentName:"a"},"e9aa5bc"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): delete demo stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8b58d0245f5bda7e2022a2ef9ace11015f13da01"},(0,n.kt)("inlineCode",{parentName:"a"},"8b58d02"))),(0,n.kt)("li",{parentName:"ul"},"change(docusaurus) align deployment steps for building docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/37e4ce05d2772ac320a7ad561536189c5ea0a582"},(0,n.kt)("inlineCode",{parentName:"a"},"37e4ce0"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): remove components from customizations folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8930edeaf064ec316f1d086e1301a7e5269bfe4b"},(0,n.kt)("inlineCode",{parentName:"a"},"8930ede"))),(0,n.kt)("li",{parentName:"ul"},"refactor(tab): minor styling update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1252ad0317ecf7e583dbb975b29a4c8e4c75330e"},(0,n.kt)("inlineCode",{parentName:"a"},"1252ad0"))),(0,n.kt)("li",{parentName:"ul"},"refactor(comment): change avatar src ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e5f9c4c02f5de5ae6480eedb45730bb76efbf7b4"},(0,n.kt)("inlineCode",{parentName:"a"},"e5f9c4c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner) : change file type and folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/878742ba0f95440ffbb5aec33f2cc4201dfacd43"},(0,n.kt)("inlineCode",{parentName:"a"},"878742b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(form elements):changed text ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/919beea9deccec68ac0cdbbc1249ef4ab4c12230"},(0,n.kt)("inlineCode",{parentName:"a"},"919beea"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Image): change image src ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b9710849adf0cf4f10815186b6293bcc3881d68d"},(0,n.kt)("inlineCode",{parentName:"a"},"b971084"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Pullquote): add component propTypes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d32c5e69e76d7f369a286d29e49d767125550ebc"},(0,n.kt)("inlineCode",{parentName:"a"},"d32c5e6"))),(0,n.kt)("li",{parentName:"ul"},"refactor(blockquote): adjust font sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d71a3cef7bfd4109c56b7fe8c07271c60a4bd19e"},(0,n.kt)("inlineCode",{parentName:"a"},"d71a3ce"))),(0,n.kt)("li",{parentName:"ul"},"refactor(footer): update font sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1c91c357a59669df0da0f4fc70d3aa420db27a14"},(0,n.kt)("inlineCode",{parentName:"a"},"1c91c35"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Blockquote): add component proTypes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea02649f92b0e41b1eb62a771330c2e53b3960e8"},(0,n.kt)("inlineCode",{parentName:"a"},"ea02649"))),(0,n.kt)("li",{parentName:"ul"},"refactor(logo): update image ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6113728e248c3e0fd0a467bb34406aa4403399e"},(0,n.kt)("inlineCode",{parentName:"a"},"f611372"))),(0,n.kt)("li",{parentName:"ul"},"refactor(docusaurus): restore config ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2c5239d92abe6be70b092e7e43f195308800f87"},(0,n.kt)("inlineCode",{parentName:"a"},"f2c5239"))),(0,n.kt)("li",{parentName:"ul"},"refactor(blockquote): update component name ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/572e655c033d93b32a48a61b1bf6383f6c993b26"},(0,n.kt)("inlineCode",{parentName:"a"},"572e655"))),(0,n.kt)("li",{parentName:"ul"},"refactor(header): fix story header import ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ceda6c7790964b150b95daf161d10364d6b67427"},(0,n.kt)("inlineCode",{parentName:"a"},"ceda6c7"))),(0,n.kt)("li",{parentName:"ul"},"change(infrastructure) auto build docusaurus when pushing to develop-itml branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7bebdf5e58f37400a8ae3d5f816c64c6b9ca3a5b"},(0,n.kt)("inlineCode",{parentName:"a"},"7bebdf5"))),(0,n.kt)("li",{parentName:"ul"},"refactor(storybook): remove components from customization folder ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a9bb9b34e6961eaf16e54ed6f6ca4942944e8a0"},(0,n.kt)("inlineCode",{parentName:"a"},"4a9bb9b"))),(0,n.kt)("li",{parentName:"ul"},"refactor(banner):story rename ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/56ff603d6c9cec7c22483a088624f5bd7911f717"},(0,n.kt)("inlineCode",{parentName:"a"},"56ff603"))),(0,n.kt)("li",{parentName:"ul"},"change(testing) removed navigation from cypress tests until component is finished ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5549f4c07cb0ffd725342f365aae07745d7e25f7"},(0,n.kt)("inlineCode",{parentName:"a"},"5549f4c"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Segment): change to .jsx extension ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5cb35d81e8628832bab2e6ad50de6892e7e4370e"},(0,n.kt)("inlineCode",{parentName:"a"},"5cb35d8"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Pullquote): change to .jsx extension ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/564cf7ea379703315f179ab922b4e0a02df63e47"},(0,n.kt)("inlineCode",{parentName:"a"},"564cf7e"))),(0,n.kt)("li",{parentName:"ul"},"refactor(PopUp):change to .jsx extension ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dcb24ff252665a79fda2fec645e6f2a48ff71fd0"},(0,n.kt)("inlineCode",{parentName:"a"},"dcb24ff"))),(0,n.kt)("li",{parentName:"ul"},"refactor(InpageNavigation): change to .jsx extension ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/dfefce3ebe55f8eb6f67974ccc33b0cb0bb13d9f"},(0,n.kt)("inlineCode",{parentName:"a"},"dfefce3"))),(0,n.kt)("li",{parentName:"ul"},"refactor(Blockquote): change to .jsx extension ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/44a164532c1ae969e4411e0cfb68b705ff2bfc1e"},(0,n.kt)("inlineCode",{parentName:"a"},"44a1645"))),(0,n.kt)("li",{parentName:"ul"},"refactor(heading): story name update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/aa10f3412323321650e20401038d44b9bfdb507a"},(0,n.kt)("inlineCode",{parentName:"a"},"aa10f34")))),(0,n.kt)("h4",{id:"-internal-changes-25"},"\ud83c\udfe0 Internal changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"style(footer): prettier fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/902c25712c88330db841240c9f1d6004e3e2674f"},(0,n.kt)("inlineCode",{parentName:"a"},"902c257"))),(0,n.kt)("li",{parentName:"ul"},"style(storybook): prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/59f941dea9bf05f31257230f1a871c6eb0e98aae"},(0,n.kt)("inlineCode",{parentName:"a"},"59f941d")))),(0,n.kt)("h4",{id:"-documentation-changes-22"},"\ud83c\udfe0 Documentation changes"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus):multiple page updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2aba73ea6ff86c5a94789c707d98699fc1397e01"},(0,n.kt)("inlineCode",{parentName:"a"},"2aba73e"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus):update page content ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/565697fecb4528cc5b4a6a43ca3ab9b026a2779e"},(0,n.kt)("inlineCode",{parentName:"a"},"565697f"))),(0,n.kt)("li",{parentName:"ul"},"docs(grid):update components grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/60eb083aa5d00840642caf73f6e0bb86b814aed5"},(0,n.kt)("inlineCode",{parentName:"a"},"60eb083"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): page adjustments ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0641eacf9f4715acd4baaa651335ff84ac418009"},(0,n.kt)("inlineCode",{parentName:"a"},"0641eac"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus):updated various pages ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f860176a5f755d75d7b9558661e675fc678fe7ac"},(0,n.kt)("inlineCode",{parentName:"a"},"f860176"))),(0,n.kt)("li",{parentName:"ul"},"docs(docusaurus): logo change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3af5e5c3acbf7ba4e152ca6944c500dbb0cf10ee"},(0,n.kt)("inlineCode",{parentName:"a"},"3af5e5c")))),(0,n.kt)("h4",{id:"\ufe0f-others-55"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"added sortable table stories and descriptions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d44dd7c651abe46c380b62efd3258c92223e99c"},(0,n.kt)("inlineCode",{parentName:"a"},"6d44dd7"))),(0,n.kt)("li",{parentName:"ul"},"Layout components theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/586101341f713bb072f2753d8df6e8b2ad6e4938"},(0,n.kt)("inlineCode",{parentName:"a"},"5861013"))),(0,n.kt)("li",{parentName:"ul"},"recovered files from origin ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4ac04fde9c4297b09c834385f772e955b7f3b4a"},(0,n.kt)("inlineCode",{parentName:"a"},"a4ac04f"))),(0,n.kt)("li",{parentName:"ul"},"grid component & stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4a5752e49aac05251905f7355234c3f9bc6b798f"},(0,n.kt)("inlineCode",{parentName:"a"},"4a5752e"))),(0,n.kt)("li",{parentName:"ul"},"Updated what's new section with actual commits from volto-eea-design-system repo ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fc5e3c385d82ff7eccbd5841736f3ce292b2b7fd"},(0,n.kt)("inlineCode",{parentName:"a"},"fc5e3c3"))),(0,n.kt)("li",{parentName:"ul"},"Docusaurus title possible fix. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/db699e771b13bbd7e75c3bd84bb91ecf5d0459d8"},(0,n.kt)("inlineCode",{parentName:"a"},"db699e7"))),(0,n.kt)("li",{parentName:"ul"},"form elements stories added description & default values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6b4f6ebeed275a86f5ef6dafb13219db0c0fbbc6"},(0,n.kt)("inlineCode",{parentName:"a"},"6b4f6eb"))),(0,n.kt)("li",{parentName:"ul"},"removed API tabs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/58aa9286eb5d8cc520239aa6ee424ee5cd5446c3"},(0,n.kt)("inlineCode",{parentName:"a"},"58aa928"))),(0,n.kt)("li",{parentName:"ul"},"Layout updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/854f388c5b049e41217ddb444bc7bd0f2c61cdf6"},(0,n.kt)("inlineCode",{parentName:"a"},"854f388"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142123 removed extra customization of semantic.less: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab9de811b20b20a9f91ddc8b45b4de2eb9c47f6c"},(0,n.kt)("inlineCode",{parentName:"a"},"ab9de81"))),(0,n.kt)("li",{parentName:"ul"},"added page-header,footer and grid in docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/660c8e382068c179ca66831ae23588a4fb67cde6"},(0,n.kt)("inlineCode",{parentName:"a"},"660c8e3"))),(0,n.kt)("li",{parentName:"ul"},"Manual docs build and commit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/666eb6aff8535bb586a49579152fcf8a88961f35"},(0,n.kt)("inlineCode",{parentName:"a"},"666eb6a"))),(0,n.kt)("li",{parentName:"ul"},"added svg & png files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f1338d5bb02e17e402cea4b1584c7d01896097f9"},(0,n.kt)("inlineCode",{parentName:"a"},"f1338d5"))),(0,n.kt)("li",{parentName:"ul"},"added missing components to docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/934dfd8a98942c247deb2b5b8693604ad77cafa3"},(0,n.kt)("inlineCode",{parentName:"a"},"934dfd8"))),(0,n.kt)("li",{parentName:"ul"},"Control descriptions updated ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/56581ebc86a91fd012a98984b20f6daad25900fe"},(0,n.kt)("inlineCode",{parentName:"a"},"56581eb"))),(0,n.kt)("li",{parentName:"ul"},"Grid updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/700332d354aea84526ff22acf3bc2f8903c0f584"},(0,n.kt)("inlineCode",{parentName:"a"},"700332d"))),(0,n.kt)("li",{parentName:"ul"},"Button theming update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0ec68b6bd1ab060ac224a859180b9f750834c0b8"},(0,n.kt)("inlineCode",{parentName:"a"},"0ec68b6"))),(0,n.kt)("li",{parentName:"ul"},"site variebales & overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7251162f182f1528d72070aae8a5a14e9ec5ee93"},(0,n.kt)("inlineCode",{parentName:"a"},"7251162"))),(0,n.kt)("li",{parentName:"ul"},"Table and Tabs theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/49f08608e8be8475d561e1ce5c1bfbcfd21001f9"},(0,n.kt)("inlineCode",{parentName:"a"},"49f0860"))),(0,n.kt)("li",{parentName:"ul"},"Responsiveness updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48e1351104249fea610941793ff8ec3bf35d0699"},(0,n.kt)("inlineCode",{parentName:"a"},"48e1351"))),(0,n.kt)("li",{parentName:"ul"},"added various components to docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/550d71963b0957b1c5597bbdb2c699c411c649bd"},(0,n.kt)("inlineCode",{parentName:"a"},"550d719"))),(0,n.kt)("li",{parentName:"ul"},"Checkbox and radio updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/24652a238f2c98fe5d8e8032e3320e0b3b4753e5"},(0,n.kt)("inlineCode",{parentName:"a"},"24652a2"))),(0,n.kt)("li",{parentName:"ul"},"remove images from typography and colour docs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8493e924f5af4ba7c2ed478d7bae6992b4ef6ed6"},(0,n.kt)("inlineCode",{parentName:"a"},"8493e92"))),(0,n.kt)("li",{parentName:"ul"},"added guidelines' text and finished all components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/02d75fcdc5a98633e4d563c7ec2863a9588b5506"},(0,n.kt)("inlineCode",{parentName:"a"},"02d75fc"))),(0,n.kt)("li",{parentName:"ul"},"added more missing components in docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8be82634c681a073b13a5a90ee2b699bd25b422a"},(0,n.kt)("inlineCode",{parentName:"a"},"8be8263"))),(0,n.kt)("li",{parentName:"ul"},"Prettier changes on docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f1e5eb796f2072e3b816a39a35cf48523405167"},(0,n.kt)("inlineCode",{parentName:"a"},"5f1e5eb"))),(0,n.kt)("li",{parentName:"ul"},"Grid updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ae099453e280de800a5a06c6fcbe074acc1f7bfd"},(0,n.kt)("inlineCode",{parentName:"a"},"ae09945"))),(0,n.kt)("li",{parentName:"ul"},"Minor fixes for tests ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3bdf3063d9bbc101f4b83c6aa4fc5fef5e87c776"},(0,n.kt)("inlineCode",{parentName:"a"},"3bdf306"))),(0,n.kt)("li",{parentName:"ul"},"Layout updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8b7a4dc8731cb02946e604a0dd73d2a45f61cd8b"},(0,n.kt)("inlineCode",{parentName:"a"},"8b7a4dc"))),(0,n.kt)("li",{parentName:"ul"},"Footer and TOC theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bb3d3c486f64e123b9009a76c6f054a8e2973230"},(0,n.kt)("inlineCode",{parentName:"a"},"bb3d3c4"))),(0,n.kt)("li",{parentName:"ul"},"Refs #145331 manually commit changelog until autobuild is stabilized ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93168b096b60fc6a208b20d1cbe610384be62f42"},(0,n.kt)("inlineCode",{parentName:"a"},"93168b0"))),(0,n.kt)("li",{parentName:"ul"},"label component changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/df8c0ff2d9646e4dcc7ed1a25a80712ca9ea2c9b"},(0,n.kt)("inlineCode",{parentName:"a"},"df8c0ff"))),(0,n.kt)("li",{parentName:"ul"},"added several sections to the theming guidelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff1a649d9c83794024e2db4f6349b3cac4fe79a0"},(0,n.kt)("inlineCode",{parentName:"a"},"ff1a649"))),(0,n.kt)("li",{parentName:"ul"},"Updated removed files. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/84f9b8cf7c469525367764909fa0d322532a13be"},(0,n.kt)("inlineCode",{parentName:"a"},"84f9b8c"))),(0,n.kt)("li",{parentName:"ul"},"added more docusaurus components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/52a3b9edd4c751225609dcaf2d16f08688e9cfeb"},(0,n.kt)("inlineCode",{parentName:"a"},"52a3b9e"))),(0,n.kt)("li",{parentName:"ul"},"Progress Bar ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9f2efc9ded5a766df0c611a15f6a93f27bd14a37"},(0,n.kt)("inlineCode",{parentName:"a"},"9f2efc9"))),(0,n.kt)("li",{parentName:"ul"},"Modal and Confirm updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3b306c6fa5631e1e4e37456d483a69bc8cc3b234"},(0,n.kt)("inlineCode",{parentName:"a"},"3b306c6"))),(0,n.kt)("li",{parentName:"ul"},"Add proper changes to whatsnew meant in previous commit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/40f78e362ca607ef3893fff3d03c8ed1b4447c11"},(0,n.kt)("inlineCode",{parentName:"a"},"40f78e3"))),(0,n.kt)("li",{parentName:"ul"},"Form Descriptions ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/de0dfbcb3a0a9610f1cbf7337f598b0c5338f2a3"},(0,n.kt)("inlineCode",{parentName:"a"},"de0dfbc"))),(0,n.kt)("li",{parentName:"ul"},"Prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1337e6fffb13fa8447488129d5dcd5af9e35e46a"},(0,n.kt)("inlineCode",{parentName:"a"},"1337e6f"))),(0,n.kt)("li",{parentName:"ul"},"Deleted files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b82f982fbfbaff4e74e35424c6122410e3830faf"},(0,n.kt)("inlineCode",{parentName:"a"},"b82f982"))),(0,n.kt)("li",{parentName:"ul"},"add new images for spacing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7b7b2c48317c45e3ff89162d703434f615c840e9"},(0,n.kt)("inlineCode",{parentName:"a"},"7b7b2c4"))),(0,n.kt)("li",{parentName:"ul"},"Messages Theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ad621a38c121f585125d5934c1939ba6a7198b33"},(0,n.kt)("inlineCode",{parentName:"a"},"ad621a3"))),(0,n.kt)("li",{parentName:"ul"},"added new content to docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1c83452be983d46f4128c33c25e69afef333f82a"},(0,n.kt)("inlineCode",{parentName:"a"},"1c83452"))),(0,n.kt)("li",{parentName:"ul"},"Minor less updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a36a8bbfeb201049fa13987894a5ec2ec167ed03"},(0,n.kt)("inlineCode",{parentName:"a"},"a36a8bb"))),(0,n.kt)("li",{parentName:"ul"},"Tabs and lists updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e37eef19e67c3c5720d5a9565e9884dc5c19f127"},(0,n.kt)("inlineCode",{parentName:"a"},"e37eef1"))),(0,n.kt)("li",{parentName:"ul"},"Inpage nav and timeline components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/76f0f82dc3a8f683268a4df7580b8f73a0cc1cb4"},(0,n.kt)("inlineCode",{parentName:"a"},"76f0f82"))),(0,n.kt)("li",{parentName:"ul"},"Prettier updated files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/679b9d2026091685d6982ab68e5088544ea0941e"},(0,n.kt)("inlineCode",{parentName:"a"},"679b9d2"))),(0,n.kt)("li",{parentName:"ul"},"dropdown initial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d8aef26dc905adbb0fb72c73d6188b50944931c9"},(0,n.kt)("inlineCode",{parentName:"a"},"d8aef26"))),(0,n.kt)("li",{parentName:"ul"},"Prettier changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f068af0b307d85146e1d8a529947c98988c506f7"},(0,n.kt)("inlineCode",{parentName:"a"},"f068af0"))),(0,n.kt)("li",{parentName:"ul"},"List initial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d3b96974bc35ad958b8cfc7921c1fbe345e5ebf"},(0,n.kt)("inlineCode",{parentName:"a"},"6d3b969"))),(0,n.kt)("li",{parentName:"ul"},"List story updated ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e96a6f6cff9a4db994df7cbf584842b18ca1c432"},(0,n.kt)("inlineCode",{parentName:"a"},"e96a6f6"))),(0,n.kt)("li",{parentName:"ul"},"Statistics updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/74bf63999cfeb0791b9475d3895a49a245be2cd3"},(0,n.kt)("inlineCode",{parentName:"a"},"74bf639"))),(0,n.kt)("li",{parentName:"ul"},"styling ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c169cc026189ca71e6e9cad17bde9d65d93ffbde"},(0,n.kt)("inlineCode",{parentName:"a"},"c169cc0"))),(0,n.kt)("li",{parentName:"ul"},"timeline comp storybook changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1f42686ae19b619fa659730567bdceb369ecd4b0"},(0,n.kt)("inlineCode",{parentName:"a"},"1f42686"))),(0,n.kt)("li",{parentName:"ul"},"feature(docusaurus) added theming guidelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ded1f04a3197ac34640f98bcfe363c75a0a3745f"},(0,n.kt)("inlineCode",{parentName:"a"},"ded1f04"))),(0,n.kt)("li",{parentName:"ul"},"Properly commented out integration tests. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/48b3a15f426db52b9fa27f6d7792c424b4939867"},(0,n.kt)("inlineCode",{parentName:"a"},"48b3a15"))),(0,n.kt)("li",{parentName:"ul"},"Reattempting commented out integrations tests. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3dd8211ecfca6c7891ef6851d0dc82899ab50f05"},(0,n.kt)("inlineCode",{parentName:"a"},"3dd8211"))),(0,n.kt)("li",{parentName:"ul"},"Button theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4231e1c264165ef6f7e2f2cd6fbd7c51159330b6"},(0,n.kt)("inlineCode",{parentName:"a"},"4231e1c"))),(0,n.kt)("li",{parentName:"ul"},"Card initial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/06dace5c4aa54d90ec4bcdc0b3fbc0883f825947"},(0,n.kt)("inlineCode",{parentName:"a"},"06dace5"))),(0,n.kt)("li",{parentName:"ul"},"form element storybook changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c4b06aabddedbc281f23fc75a1e56476c4d1c1af"},(0,n.kt)("inlineCode",{parentName:"a"},"c4b06aa"))),(0,n.kt)("li",{parentName:"ul"},"Pagination theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2a80175762fbab23691d52f89cd38eb6f7740c4e"},(0,n.kt)("inlineCode",{parentName:"a"},"2a80175"))),(0,n.kt)("li",{parentName:"ul"},"Accordion theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8061bf90823a9172cfccb0ea1ed544ceda1c3fe9"},(0,n.kt)("inlineCode",{parentName:"a"},"8061bf9"))),(0,n.kt)("li",{parentName:"ul"},"global var updates and radio story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9526ee2fc8269db60ce912bfd4edfadbb55fed3a"},(0,n.kt)("inlineCode",{parentName:"a"},"9526ee2"))),(0,n.kt)("li",{parentName:"ul"},"created pullquote component & stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/df35563fb7ba2be403461c120b32ebffaa391736"},(0,n.kt)("inlineCode",{parentName:"a"},"df35563"))),(0,n.kt)("li",{parentName:"ul"},"Item stories added description & default values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9d459f2cd92e419813e7edf0f28dec4c750a5940"},(0,n.kt)("inlineCode",{parentName:"a"},"9d459f2"))),(0,n.kt)("li",{parentName:"ul"},"storybook clean up code ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bffd32603a70cf6cafa4874937f3fe218ba5de9d"},(0,n.kt)("inlineCode",{parentName:"a"},"bffd326"))),(0,n.kt)("li",{parentName:"ul"},"List updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/28f1b5352d83e144acdaae694cf20755a3b04106"},(0,n.kt)("inlineCode",{parentName:"a"},"28f1b53"))),(0,n.kt)("li",{parentName:"ul"},"Button classes updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/788c289549490d9ac5f1c40f1e39124349e1dbcd"},(0,n.kt)("inlineCode",{parentName:"a"},"788c289"))),(0,n.kt)("li",{parentName:"ul"},"Prettier fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/678c9be717468fd2c8c425bec5999e81a66dabf6"},(0,n.kt)("inlineCode",{parentName:"a"},"678c9be"))),(0,n.kt)("li",{parentName:"ul"},"Removed header title from partial docusaurus components. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ed7c45e458504fa76ad500ab26f59a442b3c6952"},(0,n.kt)("inlineCode",{parentName:"a"},"ed7c45e"))),(0,n.kt)("li",{parentName:"ul"},"created banner component and stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9be170f2ccb20218a7bdae48c85f77acd69427ff"},(0,n.kt)("inlineCode",{parentName:"a"},"9be170f"))),(0,n.kt)("li",{parentName:"ul"},"Breadcrumb stories description & defaultValue -- clean up code ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/186ab65ca8635c853c919fc645c1ef0486e22a43"},(0,n.kt)("inlineCode",{parentName:"a"},"186ab65"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142123 added customization of semantic.less: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1e02356722fcb7528883b6dc3bf71279343fd1f7"},(0,n.kt)("inlineCode",{parentName:"a"},"1e02356"))),(0,n.kt)("li",{parentName:"ul"},"Card stories added description & default values ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f6b408f1ed24ee69ad8faacc6b36cf06e9917478"},(0,n.kt)("inlineCode",{parentName:"a"},"f6b408f"))),(0,n.kt)("li",{parentName:"ul"},"Statistic and accordion updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/16064ceeb6e1a7f097979365473c6a86ced4056f"},(0,n.kt)("inlineCode",{parentName:"a"},"16064ce"))),(0,n.kt)("li",{parentName:"ul"},"breadcrumb component & stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5bceb980502828c182a3998943ab086159c3fcb6"},(0,n.kt)("inlineCode",{parentName:"a"},"5bceb98"))),(0,n.kt)("li",{parentName:"ul"},"Container initial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3eb7155332f83bb8896a831e24cbae028413aba2"},(0,n.kt)("inlineCode",{parentName:"a"},"3eb7155"))),(0,n.kt)("li",{parentName:"ul"},"doc(docusaurus):Fix text for various parts ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bfd3fa2584a6e7aa2c26f3502b1ede912682905e"},(0,n.kt)("inlineCode",{parentName:"a"},"bfd3fa2"))),(0,n.kt)("li",{parentName:"ul"},"blockquote component & stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/879b6402f08112fedfffe6d66e72c37750593bb8"},(0,n.kt)("inlineCode",{parentName:"a"},"879b640"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 removed doc comments breaking doc building ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e6a6756b0533e6dbfdb636f9a9e6485e30187cad"},(0,n.kt)("inlineCode",{parentName:"a"},"e6a6756"))),(0,n.kt)("li",{parentName:"ul"},"Popup updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce2d641d8f5d940cbb93deefdabbbfb85ad20ad7"},(0,n.kt)("inlineCode",{parentName:"a"},"ce2d641"))),(0,n.kt)("li",{parentName:"ul"},"Global variables for colors and borders added ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6e5fbd619d163acae03d3d1bb26e082390f90c21"},(0,n.kt)("inlineCode",{parentName:"a"},"6e5fbd6"))),(0,n.kt)("li",{parentName:"ul"},"Tab stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5429cfb7751d6ad31231f9cc19d8bd7e8d24d0b8"},(0,n.kt)("inlineCode",{parentName:"a"},"5429cfb"))),(0,n.kt)("li",{parentName:"ul"},"Confirm stories added description & default value ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/85cda14b1338dc986bbab5aa7846b4ef3ec8d0bd"},(0,n.kt)("inlineCode",{parentName:"a"},"85cda14"))),(0,n.kt)("li",{parentName:"ul"},"Kebab case class names ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b41cd078ab5b349dc1d15769832913dcc8e6786f"},(0,n.kt)("inlineCode",{parentName:"a"},"b41cd07"))),(0,n.kt)("li",{parentName:"ul"},"Card and Comment class updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/389946540d3def2ea81c5c7c489e79dc24d4efb3"},(0,n.kt)("inlineCode",{parentName:"a"},"3899465"))),(0,n.kt)("li",{parentName:"ul"},"Accordion updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c97ba39cc7823cb72180a858c0b8a69cc9434927"},(0,n.kt)("inlineCode",{parentName:"a"},"c97ba39"))),(0,n.kt)("li",{parentName:"ul"},"item stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/772e41f3d90034827afcb118c38ab075d3bb7bb9"},(0,n.kt)("inlineCode",{parentName:"a"},"772e41f"))),(0,n.kt)("li",{parentName:"ul"},"Accordion class updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9cdde86f14a17701d66b3d2850980251094934b5"},(0,n.kt)("inlineCode",{parentName:"a"},"9cdde86"))),(0,n.kt)("li",{parentName:"ul"},"Comment stories added description & default value ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb6f25bc1452330f4155ccf6a64df491740ed8da"},(0,n.kt)("inlineCode",{parentName:"a"},"cb6f25b"))),(0,n.kt)("li",{parentName:"ul"},"Accrodion stories description & default value ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ab8fb883c3cbfeea1807bf1aaf72f5d8424933f4"},(0,n.kt)("inlineCode",{parentName:"a"},"ab8fb88"))),(0,n.kt)("li",{parentName:"ul"},"Pullquotes updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c5984213ba9397ddb4c1932394a5cc368336cf0a"},(0,n.kt)("inlineCode",{parentName:"a"},"c598421"))),(0,n.kt)("li",{parentName:"ul"},"Modal and confirm class updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0ae47e6f55645c0d6318123a5783648326c16852"},(0,n.kt)("inlineCode",{parentName:"a"},"0ae47e6"))),(0,n.kt)("li",{parentName:"ul"},"Tab and paggination updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/96796fffb189d2fa3628423280f3622dcacb449f"},(0,n.kt)("inlineCode",{parentName:"a"},"96796ff"))),(0,n.kt)("li",{parentName:"ul"},"Form Updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e986a9f0fc48ddcbc17488a8bbbaec82cee92232"},(0,n.kt)("inlineCode",{parentName:"a"},"e986a9f"))),(0,n.kt)("li",{parentName:"ul"},"Classes renamed ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/73c8c3d622bb3b9c0b5cf09e340de4df6606a14c"},(0,n.kt)("inlineCode",{parentName:"a"},"73c8c3d"))),(0,n.kt)("li",{parentName:"ul"},"List and item less updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce0de1708ca410c7839f3ce9b5b3cfbdb6979939"},(0,n.kt)("inlineCode",{parentName:"a"},"ce0de17"))),(0,n.kt)("li",{parentName:"ul"},"Confirm theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/36e20ce0dd6cd159e9f8e519d22ab696a622efd9"},(0,n.kt)("inlineCode",{parentName:"a"},"36e20ce"))),(0,n.kt)("li",{parentName:"ul"},"container overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4b3970bd28df5939fd438f7fc58b5d1dfbe33719"},(0,n.kt)("inlineCode",{parentName:"a"},"4b3970b"))),(0,n.kt)("li",{parentName:"ul"},"Docusaurus theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fc4a8c5534b6eb85192a687890846b3a4bed9401"},(0,n.kt)("inlineCode",{parentName:"a"},"fc4a8c5"))),(0,n.kt)("li",{parentName:"ul"},"refacto(headings): update mobile headings sizes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b2e9f838766ffd73095ecf7eccc71629c09d6bc0"},(0,n.kt)("inlineCode",{parentName:"a"},"b2e9f83"))),(0,n.kt)("li",{parentName:"ul"},"list stories and style changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c61db53b153f8f0e51eddd6a6c82dd38e6278c82"},(0,n.kt)("inlineCode",{parentName:"a"},"c61db53"))),(0,n.kt)("li",{parentName:"ul"},"Tab theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e31e6c3b1f0d6b4dbd63425a1846914d8dfa318d"},(0,n.kt)("inlineCode",{parentName:"a"},"e31e6c3"))),(0,n.kt)("li",{parentName:"ul"},"Message and pagination classes updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c230687c48953208461aa92376588246d49dadaa"},(0,n.kt)("inlineCode",{parentName:"a"},"c230687"))),(0,n.kt)("li",{parentName:"ul"},"Segment initial ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5724fe639e0f2aecbb1c633fe7e69b742ddfaf5"},(0,n.kt)("inlineCode",{parentName:"a"},"d5724fe"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 removed doc comments from api_markdown breaking doc building ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/efeacba82875c6b36ee1ef76792e86ca03ee6f35"},(0,n.kt)("inlineCode",{parentName:"a"},"efeacba"))),(0,n.kt)("li",{parentName:"ul"},"Timeline and responsiveness updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1ed152476e33bc41fdf9d89a6bc80f83af538373"},(0,n.kt)("inlineCode",{parentName:"a"},"1ed1524"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142123 use swap font-display for performance reasons ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/083738f0834982b5684d67d75c080dc50b1c74ef"},(0,n.kt)("inlineCode",{parentName:"a"},"083738f"))),(0,n.kt)("li",{parentName:"ul"},"Breadcrumb stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3d0d17ca4f04123d55fda64c516b8f867ee1bd13"},(0,n.kt)("inlineCode",{parentName:"a"},"3d0d17c"))),(0,n.kt)("li",{parentName:"ul"},"Table component stories minor change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0bf40835204f57ab300e2c325309fddf5279d76b"},(0,n.kt)("inlineCode",{parentName:"a"},"0bf4083"))),(0,n.kt)("li",{parentName:"ul"},"List stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a64b304a3aa025873643d592de03cbfbc0d02d81"},(0,n.kt)("inlineCode",{parentName:"a"},"a64b304"))),(0,n.kt)("li",{parentName:"ul"},"blockquote component minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cdf71a883d3778e1bde25ec0b4a2f3e370b98b09"},(0,n.kt)("inlineCode",{parentName:"a"},"cdf71a8"))),(0,n.kt)("li",{parentName:"ul"},"ckeckbox stories minor change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6d6e508f73a18d7ce9fcdb779026113659ce8950"},(0,n.kt)("inlineCode",{parentName:"a"},"6d6e508"))),(0,n.kt)("li",{parentName:"ul"},"image component storybook changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/91290ec540ae913fff76f0dbed6c310668a2eeb3"},(0,n.kt)("inlineCode",{parentName:"a"},"91290ec"))),(0,n.kt)("li",{parentName:"ul"},"button overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d5b78dd7b794e2e0ece2d5af9eb171e73b77ee93"},(0,n.kt)("inlineCode",{parentName:"a"},"d5b78dd"))),(0,n.kt)("li",{parentName:"ul"},"accordion overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fdcf7d58eea3ce9e68c49649fb4a788c8a801b49"},(0,n.kt)("inlineCode",{parentName:"a"},"fdcf7d5"))),(0,n.kt)("li",{parentName:"ul"},"Accordion component and stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5079247b2d4b96b2a7252692ea538ca620cbec38"},(0,n.kt)("inlineCode",{parentName:"a"},"5079247"))),(0,n.kt)("li",{parentName:"ul"},"Card theming ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/23bbb9d1b5751bc4877d02ae1c676ea28463ec39"},(0,n.kt)("inlineCode",{parentName:"a"},"23bbb9d"))),(0,n.kt)("li",{parentName:"ul"},"statistic overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2b11cb5ffb9c907563b37a3db8fea3b1ef3584bc"},(0,n.kt)("inlineCode",{parentName:"a"},"2b11cb5"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 build docs only on pull request like we do with storybook ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/473bb87be53610a654d35c9b399de14824301385"},(0,n.kt)("inlineCode",{parentName:"a"},"473bb87"))),(0,n.kt)("li",{parentName:"ul"},"Card component stories minor change | added link icon ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/deb423af02643697c3781212b177487174d341f7"},(0,n.kt)("inlineCode",{parentName:"a"},"deb423a"))),(0,n.kt)("li",{parentName:"ul"},"comment component stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f1c5e75f1af24c5b39a2e61cf07c773abfa96f66"},(0,n.kt)("inlineCode",{parentName:"a"},"f1c5e75"))),(0,n.kt)("li",{parentName:"ul"},"Accordion component bug fixed ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/815e91df66ed738f3d91cadc8df151782829f545"},(0,n.kt)("inlineCode",{parentName:"a"},"815e91d"))),(0,n.kt)("li",{parentName:"ul"},"Refs #145331 use iso date to release so that we see also time ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ceedf08937ab683c3e624cd3c909bf4a4788f883"},(0,n.kt)("inlineCode",{parentName:"a"},"ceedf08"))),(0,n.kt)("li",{parentName:"ul"},"correct connfig for doco ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93e13135e7f00fe32f4db2d720db4159970da021"},(0,n.kt)("inlineCode",{parentName:"a"},"93e1313"))),(0,n.kt)("li",{parentName:"ul"},"Item updates ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fae93d43a0ad56c4c9b8ce7bf436ad4f47421744"},(0,n.kt)("inlineCode",{parentName:"a"},"fae93d4"))),(0,n.kt)("li",{parentName:"ul"},"added layout grid ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2e6be557bcd3bef836338380ef68acade1c6b3e3"},(0,n.kt)("inlineCode",{parentName:"a"},"2e6be55"))),(0,n.kt)("li",{parentName:"ul"},"tab overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/87aaf32cac5a0dee0da5833217de68da62327f5a"},(0,n.kt)("inlineCode",{parentName:"a"},"87aaf32"))),(0,n.kt)("li",{parentName:"ul"},"message overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6dccfca52d9673f394d81bd40da0af1b1504af0c"},(0,n.kt)("inlineCode",{parentName:"a"},"6dccfca"))),(0,n.kt)("li",{parentName:"ul"},"segment storie changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/296371fa71e43c2341bee8069f66d5cd1f7aa5f8"},(0,n.kt)("inlineCode",{parentName:"a"},"296371f"))),(0,n.kt)("li",{parentName:"ul"},"progress component stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/df10c2ed1289ae770008c71e1545c1ac0a223fc5"},(0,n.kt)("inlineCode",{parentName:"a"},"df10c2e"))),(0,n.kt)("li",{parentName:"ul"},"message comp storybook changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c86b40563f655fd5833dd05119f04d0e4256e75f"},(0,n.kt)("inlineCode",{parentName:"a"},"c86b405"))),(0,n.kt)("li",{parentName:"ul"},"Accordion cmponent stories | minor bug fix ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6de0d816287a9beeb9e8a5a890a2e14f3457a792"},(0,n.kt)("inlineCode",{parentName:"a"},"6de0d81"))),(0,n.kt)("li",{parentName:"ul"},"Refs #145331 add all changes when auto building docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ce11cce4fe3dadc16a0da56c36bc5db480e4ff91"},(0,n.kt)("inlineCode",{parentName:"a"},"ce11cce"))),(0,n.kt)("li",{parentName:"ul"},"perf(timeline):removed semantic timeline package ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0aeb34a189eb53a5fc0fc45d716da515b7ed0301"},(0,n.kt)("inlineCode",{parentName:"a"},"0aeb34a"))),(0,n.kt)("li",{parentName:"ul"},"Tablet Breakpoint update ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b229c2739e75a00e403dd07c31eb0dac7700baac"},(0,n.kt)("inlineCode",{parentName:"a"},"b229c27"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 set storyBook Url to eea.github.io ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b7fdecbb5e9e6e7db0b128ab7fd3a98dd1dbbc74"},(0,n.kt)("inlineCode",{parentName:"a"},"b7fdecb"))),(0,n.kt)("li",{parentName:"ul"},"bump package version to signaling of a major release ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c835f1d8193685153b8a9b54edbc2e8d3d095321"},(0,n.kt)("inlineCode",{parentName:"a"},"c835f1d"))),(0,n.kt)("li",{parentName:"ul"},"small commit to trigger deployment of storybook and docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/be46ea3b581cccc82369c9cf6d4e29b02822cd71"},(0,n.kt)("inlineCode",{parentName:"a"},"be46ea3"))),(0,n.kt)("li",{parentName:"ul"},"doc(accordion):revert previous change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3de02da26472c17389366d933f3293f658fd783a"},(0,n.kt)("inlineCode",{parentName:"a"},"3de02da"))),(0,n.kt)("li",{parentName:"ul"},"fix typo for caption @desktop line-height pixel number ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/167155234a897334a03a4f3eadc71701185bb924"},(0,n.kt)("inlineCode",{parentName:"a"},"1671552"))),(0,n.kt)("li",{parentName:"ul"},"Commented out integration tests. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/574cfec852f39bdd30430d2ca3a466aec417180d"},(0,n.kt)("inlineCode",{parentName:"a"},"574cfec"))),(0,n.kt)("li",{parentName:"ul"},"popup overrides changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a9555e3128bd0c92691410c202d9b26dd5a5e0c5"},(0,n.kt)("inlineCode",{parentName:"a"},"a9555e3"))),(0,n.kt)("li",{parentName:"ul"},"container component stories fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/692cfce5e795ac718855349424e7e8eb9c7518ec"},(0,n.kt)("inlineCode",{parentName:"a"},"692cfce"))),(0,n.kt)("li",{parentName:"ul"},"Added timeline to package json fixed ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2e93e0478a1502cccb8d7f866cef337a2546b6c"},(0,n.kt)("inlineCode",{parentName:"a"},"f2e93e0"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142123 modified import of volto-eea-design-system icon.less: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a7fab7d2871f153c2db139e3258da071ace7c09d"},(0,n.kt)("inlineCode",{parentName:"a"},"a7fab7d"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142123 reference icon.less from this package: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5616e6d730f1a8cbc04784230c35f3490fd0f921"},(0,n.kt)("inlineCode",{parentName:"a"},"5616e6d"))),(0,n.kt)("li",{parentName:"ul"},"Menu component stories change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2797716aa050a8f70d2b6f0f19b7d01e5cd035be"},(0,n.kt)("inlineCode",{parentName:"a"},"2797716"))),(0,n.kt)("li",{parentName:"ul"},"Image stories minor change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ddb9f1dd56fe42e17df1eac5bfd93ee6eaac3179"},(0,n.kt)("inlineCode",{parentName:"a"},"ddb9f1d"))),(0,n.kt)("li",{parentName:"ul"},"card component stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6ccba1ec4a388ced5a3671bf88d4f18aefc8cff3"},(0,n.kt)("inlineCode",{parentName:"a"},"6ccba1e"))),(0,n.kt)("li",{parentName:"ul"},"Added timeline to package json ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/93031d6b6b3215e98074700554d7546f9f17f320"},(0,n.kt)("inlineCode",{parentName:"a"},"93031d6"))),(0,n.kt)("li",{parentName:"ul"},"table stories code clean up ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b7b2a56e37b847a3a3fc3d78f2099aba052826c3"},(0,n.kt)("inlineCode",{parentName:"a"},"b7b2a56"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 removed extra baseUrl from docusaurus config ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/79f36da6a38866765025cedd4f5eeb63e273785c"},(0,n.kt)("inlineCode",{parentName:"a"},"79f36da"))),(0,n.kt)("li",{parentName:"ul"},"Accordion stories minor change ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ffe808aabc77c6cb324e8fe097a97bb82c291c29"},(0,n.kt)("inlineCode",{parentName:"a"},"ffe808a"))),(0,n.kt)("li",{parentName:"ul"},"Theme assets ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3f4bea4b53e393bc3d926b63683265c0b5df32c2"},(0,n.kt)("inlineCode",{parentName:"a"},"3f4bea4"))),(0,n.kt)("li",{parentName:"ul"},"Merged with develop ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/167ec9f7847162965ad045259989cc31abaad7f1"},(0,n.kt)("inlineCode",{parentName:"a"},"167ec9f")))),(0,n.kt)("h3",{id:"012-beta2---2022-01-03"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.2-beta.1...0.1.2-beta.2"},"0.1.2-beta.2")," - 2022-01-03"),(0,n.kt)("h3",{id:"012-beta1---2021-12-22"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.2-beta.0...0.1.2-beta.1"},"0.1.2-beta.1")," - 2021-12-22"),(0,n.kt)("h4",{id:"\ufe0f-others-56"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Tab component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4690a6fc1e739eeeeaa3dc90ee35e05a22875bf8"},(0,n.kt)("inlineCode",{parentName:"a"},"4690a6f"))),(0,n.kt)("li",{parentName:"ul"},"Comment component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a87cb6ad7959ce939c9decbfaa08026d4f00a10e"},(0,n.kt)("inlineCode",{parentName:"a"},"a87cb6a"))),(0,n.kt)("li",{parentName:"ul"},"Form stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fc30c900e5adf5a27930aa64a79a632e2b7d84ae"},(0,n.kt)("inlineCode",{parentName:"a"},"fc30c90"))),(0,n.kt)("li",{parentName:"ul"},"Grid component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/798fdd0d0fecb7980308c831fc9dc111a36c5d9f"},(0,n.kt)("inlineCode",{parentName:"a"},"798fdd0"))),(0,n.kt)("li",{parentName:"ul"},"Image component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/be93385f1ea29846512eb7762d69bb98f33be7f2"},(0,n.kt)("inlineCode",{parentName:"a"},"be93385"))),(0,n.kt)("li",{parentName:"ul"},"Menu component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cb1f9a82843bb4e3011be9813ae692c94d986495"},(0,n.kt)("inlineCode",{parentName:"a"},"cb1f9a8"))),(0,n.kt)("li",{parentName:"ul"},"Dropdown component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/57cf954599292e6a2f8a1644c6b6d61706ecaf60"},(0,n.kt)("inlineCode",{parentName:"a"},"57cf954"))),(0,n.kt)("li",{parentName:"ul"},"Header component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/264fd463734c9587e3a820f4d14527af89274e12"},(0,n.kt)("inlineCode",{parentName:"a"},"264fd46"))),(0,n.kt)("li",{parentName:"ul"},"Confirn component minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9a00bc174fb676e626d6cc93fac225e8a6165790"},(0,n.kt)("inlineCode",{parentName:"a"},"9a00bc1"))),(0,n.kt)("li",{parentName:"ul"},"Item component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6994fa00c0f91550f64d7345503df7f562480d32"},(0,n.kt)("inlineCode",{parentName:"a"},"6994fa0"))),(0,n.kt)("li",{parentName:"ul"},"Label component stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5cc5843327deeaa5ae2cedc03e6f0c314be6586a"},(0,n.kt)("inlineCode",{parentName:"a"},"5cc5843"))),(0,n.kt)("li",{parentName:"ul"},"Container component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e6e40b3a505c2e2fe88a36d74ea4e9728e3491f6"},(0,n.kt)("inlineCode",{parentName:"a"},"e6e40b3"))),(0,n.kt)("li",{parentName:"ul"},"Message component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ba9d377fd5b04274f1d42065eafa2401a1b0bbca"},(0,n.kt)("inlineCode",{parentName:"a"},"ba9d377"))),(0,n.kt)("li",{parentName:"ul"},"Breadcrumb component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff7a176141c3a59d71df98a0ed0b23b8c08787df"},(0,n.kt)("inlineCode",{parentName:"a"},"ff7a176"))),(0,n.kt)("li",{parentName:"ul"},"Modal component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/af1fe6a84d058fb937b555f4dc3e0efceebefa04"},(0,n.kt)("inlineCode",{parentName:"a"},"af1fe6a"))),(0,n.kt)("li",{parentName:"ul"},"List stories changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0016042856fa2275aed373eebd6f996b837619a2"},(0,n.kt)("inlineCode",{parentName:"a"},"0016042"))),(0,n.kt)("li",{parentName:"ul"},"Button component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/690dfd234bee017c1f1cda7077265e6cf4a870e9"},(0,n.kt)("inlineCode",{parentName:"a"},"690dfd2"))),(0,n.kt)("li",{parentName:"ul"},"Radio component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/84eac30ab5b523ed09c56b9cca41b058cee3e5d2"},(0,n.kt)("inlineCode",{parentName:"a"},"84eac30"))),(0,n.kt)("li",{parentName:"ul"},"Progress component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e6763571afe637375e8260babd9f2219f29b432a"},(0,n.kt)("inlineCode",{parentName:"a"},"e676357"))),(0,n.kt)("li",{parentName:"ul"},"Pagination component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b1af226b9bd42097dc3c74be3d9ca3fab29b80f6"},(0,n.kt)("inlineCode",{parentName:"a"},"b1af226"))),(0,n.kt)("li",{parentName:"ul"},"Segment component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5f8c7efcb9b1de209ff146dd315ea9d43b16f4db"},(0,n.kt)("inlineCode",{parentName:"a"},"5f8c7ef"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 eslint fixes for component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/badcb9158cb4a847380f66592b22c78b5117626a"},(0,n.kt)("inlineCode",{parentName:"a"},"badcb91"))),(0,n.kt)("li",{parentName:"ul"},"Table component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7c104b8e89272b0e2505d165184093ee2680c6f3"},(0,n.kt)("inlineCode",{parentName:"a"},"7c104b8"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 more eslint fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a88c091723af0b87cfa85c83307d9510d2bae65c"},(0,n.kt)("inlineCode",{parentName:"a"},"a88c091"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 warn for broken links instead of throwing ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bd5821cb78e030aaf69de73dc4d3bdadbe320195"},(0,n.kt)("inlineCode",{parentName:"a"},"bd5821c"))),(0,n.kt)("li",{parentName:"ul"},"Refs #143412 merge changes from develop-itml to develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bca28b968bc88720aff9e29e1a94a597a7375666"},(0,n.kt)("inlineCode",{parentName:"a"},"bca28b9"))),(0,n.kt)("li",{parentName:"ul"},"made tabs dynamic for api tab ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ea37ecb3ec9fe0ace41d7650d59e209929d8e95f"},(0,n.kt)("inlineCode",{parentName:"a"},"ea37ecb"))),(0,n.kt)("li",{parentName:"ul"},"Basic storybook/Docusaurus components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/840ab60f22f7b73d8742fa7452f198d486c6ec5b"},(0,n.kt)("inlineCode",{parentName:"a"},"840ab60"))),(0,n.kt)("li",{parentName:"ul"},"created List directory & srories based on semantic-ui List component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51f19016b27228a4d391c88b7eee27357d6fdc0d"},(0,n.kt)("inlineCode",{parentName:"a"},"51f1901"))),(0,n.kt)("li",{parentName:"ul"},"made tabs as component easy to call for other components ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/07bae4900a4076f3429d3a26978b92aabf6b23ba"},(0,n.kt)("inlineCode",{parentName:"a"},"07bae49"))),(0,n.kt)("li",{parentName:"ul"},"Popup Component | minor fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ff9908a9374f93b9eaf4d8ee8de24acdf5be3ec"},(0,n.kt)("inlineCode",{parentName:"a"},"2ff9908"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Tab component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/95e3a733921b42fbe2540fa39548284abff9fdc0"},(0,n.kt)("inlineCode",{parentName:"a"},"95e3a73"))),(0,n.kt)("li",{parentName:"ul"},"created Table directory and stories based on semantic-ui Table component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e16115daa000962ccd8d141e3c11fd099446a388"},(0,n.kt)("inlineCode",{parentName:"a"},"e16115d"))),(0,n.kt)("li",{parentName:"ul"},"List component stories - minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/de113430b487297417c4697178f9ee37412a5389"},(0,n.kt)("inlineCode",{parentName:"a"},"de11343"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Comment component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a20f8842e8cb5c937dfc450030ac9afcf78ffe11"},(0,n.kt)("inlineCode",{parentName:"a"},"a20f884"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Grid component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/360d2a897f36e86c58b0ba6ac3d4fc852d10287d"},(0,n.kt)("inlineCode",{parentName:"a"},"360d2a8"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Image component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c1d2bcaf886c96052af45fcce98243ea56c98a5"},(0,n.kt)("inlineCode",{parentName:"a"},"3c1d2bc"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Menu component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/17e3b37ae447d8cc86228fa6c0c48a8fd8be9d03"},(0,n.kt)("inlineCode",{parentName:"a"},"17e3b37"))),(0,n.kt)("li",{parentName:"ul"},"Added untracked files ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/75f0afda10114e70348e23d480f8f74528531674"},(0,n.kt)("inlineCode",{parentName:"a"},"75f0afd"))),(0,n.kt)("li",{parentName:"ul"},"created Dropdown stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d6a25381078e0b3cabdb9270d5224b3886ab6af9"},(0,n.kt)("inlineCode",{parentName:"a"},"d6a2538"))),(0,n.kt)("li",{parentName:"ul"},"created Header component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b8339798f3e7d40f1b5a033bf4d7303c756c38d3"},(0,n.kt)("inlineCode",{parentName:"a"},"b833979"))),(0,n.kt)("li",{parentName:"ul"},"created stories for semantic-ui Confirm component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6fddccc6cf97f9929da52064ceb379f9fc427b42"},(0,n.kt)("inlineCode",{parentName:"a"},"6fddccc"))),(0,n.kt)("li",{parentName:"ul"},"created Statistic directory and stories with semantic-ui Statistic component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/cd62498dbd75d5dff0adf849ff95d22bb9dc3b34"},(0,n.kt)("inlineCode",{parentName:"a"},"cd62498"))),(0,n.kt)("li",{parentName:"ul"},"created Item component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/90ec2be7eede347352e318c70615c30e7d422073"},(0,n.kt)("inlineCode",{parentName:"a"},"90ec2be"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Container component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/41934f6c5961ae0ac034a496ac169a191c7a5288"},(0,n.kt)("inlineCode",{parentName:"a"},"41934f6"))),(0,n.kt)("li",{parentName:"ul"},"created Label component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/71732f68b3153320710fbf7fb78dac460b8a084f"},(0,n.kt)("inlineCode",{parentName:"a"},"71732f6"))),(0,n.kt)("li",{parentName:"ul"},"created Message component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/adcbeabe6d4e8c1bbd7bd925c5f7fd3109fb407c"},(0,n.kt)("inlineCode",{parentName:"a"},"adcbeab"))),(0,n.kt)("li",{parentName:"ul"},"created Modal component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c25409d8901ad4eba66fa66a9f5c34b0353569b9"},(0,n.kt)("inlineCode",{parentName:"a"},"c25409d"))),(0,n.kt)("li",{parentName:"ul"},"Breadcrumb component stories and minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6264d92bcf6565e284ae9dc0c7a918652bb3959e"},(0,n.kt)("inlineCode",{parentName:"a"},"6264d92"))),(0,n.kt)("li",{parentName:"ul"},"created Pagination component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/57cdad35e21fdacf303e407abcb8988e97e87242"},(0,n.kt)("inlineCode",{parentName:"a"},"57cdad3"))),(0,n.kt)("li",{parentName:"ul"},"created Segment component stories ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d8d01d70dab9359be46eb1629b3198f871091c7a"},(0,n.kt)("inlineCode",{parentName:"a"},"d8d01d7"))),(0,n.kt)("li",{parentName:"ul"},"created stories for Radio component ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1fd062d8a08cbe8507f5154201632ea96f765a2c"},(0,n.kt)("inlineCode",{parentName:"a"},"1fd062d"))),(0,n.kt)("li",{parentName:"ul"},"Menu stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6ba5e0d00a26ffd4625fb51f759af3764cef28de"},(0,n.kt)("inlineCode",{parentName:"a"},"6ba5e0d"))),(0,n.kt)("li",{parentName:"ul"},"Statistic component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3c874a520c9959b7673b5c86f63e53e90f006f22"},(0,n.kt)("inlineCode",{parentName:"a"},"3c874a5"))),(0,n.kt)("li",{parentName:"ul"},"Card component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/290bda8dac4c9bb4476108c2e4969fa283f935e2"},(0,n.kt)("inlineCode",{parentName:"a"},"290bda8"))),(0,n.kt)("li",{parentName:"ul"},"Accrordion stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2ee3f592fbfaead01506fb6a4dbfb36d06269564"},(0,n.kt)("inlineCode",{parentName:"a"},"2ee3f59"))),(0,n.kt)("li",{parentName:"ul"},"renamed Demo folder to Layout ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b9f6d05708310889dd018961bf5df9d5edd66e12"},(0,n.kt)("inlineCode",{parentName:"a"},"b9f6d05"))),(0,n.kt)("li",{parentName:"ul"},"remove test exclusion ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/94dba3eaa864e25d34bcc33ab19494f83ecabb25"},(0,n.kt)("inlineCode",{parentName:"a"},"94dba3e"))),(0,n.kt)("li",{parentName:"ul"},"Accordion component stories minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e672d59f86a79e69f15b5212e2953aa7c5fea1d1"},(0,n.kt)("inlineCode",{parentName:"a"},"e672d59"))),(0,n.kt)("li",{parentName:"ul"},"fix docusaurus url (removed trailing /) ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b6c59fc7733b3df47dca797906e8f7e40a2f4ada"},(0,n.kt)("inlineCode",{parentName:"a"},"b6c59fc"))),(0,n.kt)("li",{parentName:"ul"},"Item component stories - minor changes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f0a99025b9093ecf2eb25fd4b4e401b5b532a481"},(0,n.kt)("inlineCode",{parentName:"a"},"f0a9902"))),(0,n.kt)("li",{parentName:"ul"},"eea logos and assets ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b435b511d64b0ca99bfd310d66bdbfd5985390cc"},(0,n.kt)("inlineCode",{parentName:"a"},"b435b51")))),(0,n.kt)("h3",{id:"012-beta0---2021-12-18"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.1...0.1.2-beta.0"},"0.1.2-beta.0")," - 2021-12-18"),(0,n.kt)("h4",{id:"\ufe0f-others-57"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Refs #140454 added github action to build docusaurus to the develop branch ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/abe6a72882a41c9bca3649a3a6697619038e1677"},(0,n.kt)("inlineCode",{parentName:"a"},"abe6a72")))),(0,n.kt)("h3",{id:"011---2021-12-16"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.1-beta.0...0.1.1"},"0.1.1")," - 2021-12-16"),(0,n.kt)("h4",{id:"\ufe0f-others-58"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Refs #140454 changed the following to volto-eea-design-system: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6791d413cf1b9e434970564d9e59ed56b41907f0"},(0,n.kt)("inlineCode",{parentName:"a"},"6791d41"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 corrected base url for docusaurus website build ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/98271b3d39e2e21dfb4a0e31c334dc9e87811e4a"},(0,n.kt)("inlineCode",{parentName:"a"},"98271b3"))),(0,n.kt)("li",{parentName:"ul"},"Initial test changes on design system/docusaurus. ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9dad612f385cc9fde712809f07dbe2b7111432cf"},(0,n.kt)("inlineCode",{parentName:"a"},"9dad612"))),(0,n.kt)("li",{parentName:"ul"},"After prettier check ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9ec40b4fe9d8a18e99f774e1a96a55b286a9733a"},(0,n.kt)("inlineCode",{parentName:"a"},"9ec40b4"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 restore SearchWidget.jsx content and removed dummy text from docs intro page ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7505df89d93ac99156834a0c50a8e2b174c506f8"},(0,n.kt)("inlineCode",{parentName:"a"},"7505df8"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 added references to eea and the storybook in the docusaurus footer ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/42bbfcdd67888c3a7a55875d67acae9f7eb753bb"},(0,n.kt)("inlineCode",{parentName:"a"},"42bbfcd"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 lint fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/9502f2bdbd45262b38926def5b7b55efabf4c32c"},(0,n.kt)("inlineCode",{parentName:"a"},"9502f2b"))),(0,n.kt)("li",{parentName:"ul"},"Add SonarQube badges ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a4e0a4053ff2313fc3939caab80d874470aca062"},(0,n.kt)("inlineCode",{parentName:"a"},"a4e0a40"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 brought changes from develop-itml and upgrades docusaurus ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/207c873532e38fb7909cdc32a02bf50e575b66fa"},(0,n.kt)("inlineCode",{parentName:"a"},"207c873"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 removed extra content not needed by the docusaurus site ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bc68ebe8259c9b8ed6bc73df8102885554bbc4ed"},(0,n.kt)("inlineCode",{parentName:"a"},"bc68ebe"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 updated docusaurus to latest beta ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d68ed8a1660910067a09550626a5f0e8fbbeeac9"},(0,n.kt)("inlineCode",{parentName:"a"},"d68ed8a")))),(0,n.kt)("h3",{id:"011-beta0---2021-12-09"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.1.0...0.1.1-beta.0"},"0.1.1-beta.0")," - 2021-12-09"),(0,n.kt)("h4",{id:"\ufe0f-others-59"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Refs #140454 moved header and footer templates from volto-ims-theme: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e2d5e56045c0b7d917153d95492dd340668b6222"},(0,n.kt)("inlineCode",{parentName:"a"},"e2d5e56"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 added website folder with docusaurus site skeleton ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6fd15f4365a207308c068fe7eb197c0717e93954"},(0,n.kt)("inlineCode",{parentName:"a"},"6fd15f4"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142794 added commented implementation of the header and footer area: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/773ad8784f4a03e4b600406999d3a274a3984d39"},(0,n.kt)("inlineCode",{parentName:"a"},"773ad87"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 changed the following: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4137ec42270c28cbe036ba11e9475f00a7a5cba3"},(0,n.kt)("inlineCode",{parentName:"a"},"4137ec4"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 removed storybook from volto-eea-design-system: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/a129ffb485c4c55f19129a209d920da8f8f52418"},(0,n.kt)("inlineCode",{parentName:"a"},"a129ffb"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 added storybook as a dev dependency: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e04ae4e0294fbb4a09f367d1693a158d5a1e8f2f"},(0,n.kt)("inlineCode",{parentName:"a"},"e04ae4e"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 updated Breadcrumbs.jsx to latest version: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/63fe5076781f3cf2ce5c79641a5f1b45f298b476"},(0,n.kt)("inlineCode",{parentName:"a"},"63fe507"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 we should use jsx and not mdx for storybook tests ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3668e667f857cb3052b9d63cf27ec629fe1c8394"},(0,n.kt)("inlineCode",{parentName:"a"},"3668e66"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 updated eea-design-system readme with extra info on package contents ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/d2efc3ddae7b91efc82cf3bce8fb8e42d696a780"},(0,n.kt)("inlineCode",{parentName:"a"},"d2efc3d"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142010 - Optimize Volto-addons gitflow pipelines ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/3af46d2b14fa0b1ef44736f25b0f9ac93b23d18d"},(0,n.kt)("inlineCode",{parentName:"a"},"3af46d2"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 Renamed folders of docusaurus website: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/15bca7462ba1b3c626e2bf76597f6436aa5e9092"},(0,n.kt)("inlineCode",{parentName:"a"},"15bca74"))),(0,n.kt)("li",{parentName:"ul"},"Add demo story ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/757c409271eb70baa54bff8bd7c71ba29aaa4f66"},(0,n.kt)("inlineCode",{parentName:"a"},"757c409"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142794 enabled minimum css so that header looks decent ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/adbe2335bacf5ae09541c3679a246a5ec28376a4"},(0,n.kt)("inlineCode",{parentName:"a"},"adbe233"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 use the develop branch for the readme linking, it's always more up to date ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/23dcf166d5d633df2a63ab6fa5bac4be086e99a3"},(0,n.kt)("inlineCode",{parentName:"a"},"23dcf16"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 added missing themes reference for the eea theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/e9ca244fcedf0be420748b3e5347e98309b5d996"},(0,n.kt)("inlineCode",{parentName:"a"},"e9ca244"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 modified assets imports after move to volto-eea-design-system ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2250cc7ba4155c328837cea09e2e7d94afc984f8"},(0,n.kt)("inlineCode",{parentName:"a"},"2250cc7"))),(0,n.kt)("li",{parentName:"ul"},"Load footer in segment ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/80d38a96284e7fa9416ba327a43e29eb94bebe55"},(0,n.kt)("inlineCode",{parentName:"a"},"80d38a9"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 bump package version to 1.1.0 from 0.1.1 from develop branch: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1314039ceb45d405af6bc4698b489bbd6562c6ae"},(0,n.kt)("inlineCode",{parentName:"a"},"1314039"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142794 keep toolbalWidth variables in case design system runs in an older version of Volto ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1a8b30562e4167fe36b095877db0b215d10cb620"},(0,n.kt)("inlineCode",{parentName:"a"},"1a8b305"))),(0,n.kt)("li",{parentName:"ul"},"Refs #142794 changed the following: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/fbb80b1dbd0e3078777b8b3496d4b207ba25639a"},(0,n.kt)("inlineCode",{parentName:"a"},"fbb80b1"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 moved storybook scripts to the scripts section ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/705c4c365d26152d917c62991f3f8202bc75287d"},(0,n.kt)("inlineCode",{parentName:"a"},"705c4c3"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 removed dangling comma ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/514f24d503a1f05497696c22c7fdbf7bc19d4e54"},(0,n.kt)("inlineCode",{parentName:"a"},"514f24d"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 changed link to the start of the docs ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/0e16fdfc77e119da4e1f15183d9cb95ef9b4b6cf"},(0,n.kt)("inlineCode",{parentName:"a"},"0e16fdf"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 add h1 to the list of elements that are max 800px and centered ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/7d3c30f409aa4cb43810839f8960589456cc1b2e"},(0,n.kt)("inlineCode",{parentName:"a"},"7d3c30f"))),(0,n.kt)("li",{parentName:"ul"},"Add Sonarqube tag using ims-frontend addons list ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/8d657d056cde5163cfe90ac66bc973f55d82e5e9"},(0,n.kt)("inlineCode",{parentName:"a"},"8d657d0")))),(0,n.kt)("h3",{id:"010---2021-11-17"},(0,n.kt)("a",{parentName:"h3",href:"https://github.com/eea/volto-eea-design-system/compare/0.0.1...0.1.0"},"0.1.0")," - 2021-11-17"),(0,n.kt)("h4",{id:"\ufe0f-others-60"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Refs #140454 changed the following to volto-eea-design-system: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/40d2af693e35abdda3ededc7aabcb17e9a12e781"},(0,n.kt)("inlineCode",{parentName:"a"},"40d2af6"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 elements folder now has the variables and overrides from pastanaga theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/595b4e60816d3e24950ede3afea6e5f2aa2d7008"},(0,n.kt)("inlineCode",{parentName:"a"},"595b4e6"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 use font awesome from SemanticUI instead of Pastanaga: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/4e273ca1b9a2be1f169d12258ac2335c3ebeefff"},(0,n.kt)("inlineCode",{parentName:"a"},"4e273ca"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 removed the components customizations from volto-eea-design-system: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c98c260b549cd1db48bfe556e994692a4855b95d"},(0,n.kt)("inlineCode",{parentName:"a"},"c98c260"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 added customizations folder from volto-ims-theme to volto-eea-design-system: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ff4bf44bd648ff179bd7c82d0cf80da968b291b0"},(0,n.kt)("inlineCode",{parentName:"a"},"ff4bf44"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 modules folder now has the variables and overrides from pastanaga theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f2841b62c87e3242423bca1117c7e1793baa7974"},(0,n.kt)("inlineCode",{parentName:"a"},"f2841b6"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 customized Comments.jsx to remove unnecessary container ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b2e95d7ae875a7fc85366c76ef35ce215dd7b5ff"},(0,n.kt)("inlineCode",{parentName:"a"},"b2e95d7"))),(0,n.kt)("li",{parentName:"ul"},"Refs #132149 added initial commit for volto-eea-design-system: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2934b911d589fde126f70363a61cbdd2e3dcf7c9"},(0,n.kt)("inlineCode",{parentName:"a"},"2934b91"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 collection folder now has the variables and overrides from pastanaga: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/213d4968e4efa380a389fb7ab40ec3196f030050"},(0,n.kt)("inlineCode",{parentName:"a"},"213d496"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 removed search widget customization, we can use volto-ims-theme for that file ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b7e8b0c4821584a84f940d8f780057122321aae7"},(0,n.kt)("inlineCode",{parentName:"a"},"b7e8b0c"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 stylelint quick fixes ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/5595925f68871135a07d703c8ba009b0172c7ccd"},(0,n.kt)("inlineCode",{parentName:"a"},"5595925"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 changed the following: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/769f4f9eca0ed9fffe0c8c49c56bcb123a203f3c"},(0,n.kt)("inlineCode",{parentName:"a"},"769f4f9"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 changed the following to the eea theme: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/06d8d86a7be81fd3feadf034eacfa61eb69743ab"},(0,n.kt)("inlineCode",{parentName:"a"},"06d8d86"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 eea site.variables now use all values from pastanaga's site.variables ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/6535c0f4e1968822a232b017a55babd280716d88"},(0,n.kt)("inlineCode",{parentName:"a"},"6535c0f"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 simplified container overrides: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51250038527f2e4b1135a2b5bfc6adccc3f77a06"},(0,n.kt)("inlineCode",{parentName:"a"},"5125003"))),(0,n.kt)("li",{parentName:"ul"},"Release 1.0.0 ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/177d0ce854a8a963faa2aae9481cbcc7e340e0fa"},(0,n.kt)("inlineCode",{parentName:"a"},"177d0ce"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 globals folder now has the variables and overrides from pastanaga theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/116a0c338bd92dd14636a649476b4f00951e3734"},(0,n.kt)("inlineCode",{parentName:"a"},"116a0c3"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 changed the following: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2e7f42381b63e65bafac3b754d49b65daca9663d"},(0,n.kt)("inlineCode",{parentName:"a"},"2e7f423"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 modules folder now has the variables and overrides from pastanaga theme: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/27a201d57024a7c621f4943b8eb59a3247b6c89d"},(0,n.kt)("inlineCode",{parentName:"a"},"27a201d"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 text elements are now with a max width and centered within content-area: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/bbed7bbfb3e79a371b7bf7dea2206cdbdcdfe76d"},(0,n.kt)("inlineCode",{parentName:"a"},"bbed7bb"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 added main.variables entries from pastanaga to eea theme ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/1cbbc550436c889d1b297ae9e6880167fce28fe1"},(0,n.kt)("inlineCode",{parentName:"a"},"1cbbc55"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 modified theme image imports for component customizations ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ef3238a4d615fa1b496e83f4e6c4c0d27f3d68f4"},(0,n.kt)("inlineCode",{parentName:"a"},"ef3238a"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 modified container width to be auto: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/2e8d2e0ebb3e4a55b7cf1b66c3dff222ef12aa18"},(0,n.kt)("inlineCode",{parentName:"a"},"2e8d2e0"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 modified several icons to use the \\f values instead of \\e: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c397145bc1e76916ae72a94faaf33f49bd9ca5a6"},(0,n.kt)("inlineCode",{parentName:"a"},"c397145"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 changed the following: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/c518edacad9b8bed61ea50d318d8d43bf7f483a0"},(0,n.kt)("inlineCode",{parentName:"a"},"c518eda"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 ensure that main column isn't enlarged over the sidebar section on edit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f7a28684223494933bcd8ec1f6d86b1b3da17e10"},(0,n.kt)("inlineCode",{parentName:"a"},"f7a2868"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 changed the following to the form styling: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/eb92e054fe330730c1a44737cbbdf33985216cbb"},(0,n.kt)("inlineCode",{parentName:"a"},"eb92e05"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 modified path of theme folder location for image selection ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/f8cca4594857ab4afd654f35e4ec97e4d3e04be4"},(0,n.kt)("inlineCode",{parentName:"a"},"f8cca45"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 added missing mobileScrollbarWidth variables introduced as part of the mobile navigation pull request ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/444c78d998199e703d7ecde01b3feb0d44c60977"},(0,n.kt)("inlineCode",{parentName:"a"},"444c78d"))),(0,n.kt)("li",{parentName:"ul"},"Refs #140454 reference font and image path from ~volto-themes instead of relative ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/ec93ed3a496673eed7d7ec07a2f76aaa6a29d7ca"},(0,n.kt)("inlineCode",{parentName:"a"},"ec93ed3"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 ensure that Volto doesn't crash when site module is set to eea: ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/51f2f27f5ba947b49b4b69fcf9b8890676cd1d7e"},(0,n.kt)("inlineCode",{parentName:"a"},"51f2f27"))),(0,n.kt)("li",{parentName:"ul"},"Refs #141204 added tiny size prop to Breadcrumbs in order to have it as 12px ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/56a12e200c27c3a1826fa3088c34f762ed74dff7"},(0,n.kt)("inlineCode",{parentName:"a"},"56a12e2")))),(0,n.kt)("h3",{id:"001---2021-11-17"},"0.0.1 - 2021-11-17"),(0,n.kt)("h4",{id:"\ufe0f-others-61"},"\ud83d\udee0\ufe0f Others"),(0,n.kt)("ul",null,(0,n.kt)("li",{parentName:"ul"},"Initial commit ",(0,n.kt)("a",{parentName:"li",href:"https://github.com/eea/volto-eea-design-system/commit/b0bdd445c95a20d088e00469f81028c16482640a"},(0,n.kt)("inlineCode",{parentName:"a"},"b0bdd44")))))}s.isMDXComponent=!0}}]); \ No newline at end of file diff --git a/docs/assets/js/runtime~main.c8c186fa.js b/docs/assets/js/runtime~main.8afffea3.js similarity index 99% rename from docs/assets/js/runtime~main.c8c186fa.js rename to docs/assets/js/runtime~main.8afffea3.js index e18c35fdf6..0b31c3b435 100644 --- a/docs/assets/js/runtime~main.c8c186fa.js +++ b/docs/assets/js/runtime~main.8afffea3.js @@ -1 +1 @@ -(()=>{"use strict";var e,d,a,f,c,b={},t={};function r(e){var d=t[e];if(void 0!==d)return d.exports;var a=t[e]={id:e,loaded:!1,exports:{}};return b[e].call(a.exports,a,a.exports,r),a.loaded=!0,a.exports}r.m=b,r.c=t,e=[],r.O=(d,a,f,c)=>{if(!a){var b=1/0;for(i=0;i=c)&&Object.keys(r.O).every((e=>r.O[e](a[o])))?a.splice(o--,1):(t=!1,c0&&e[i-1][2]>c;i--)e[i]=e[i-1];e[i]=[a,f,c]},r.n=e=>{var d=e&&e.__esModule?()=>e.default:()=>e;return r.d(d,{a:d}),d},a=Object.getPrototypeOf?e=>Object.getPrototypeOf(e):e=>e.__proto__,r.t=function(e,f){if(1&f&&(e=this(e)),8&f)return e;if("object"==typeof e&&e){if(4&f&&e.__esModule)return e;if(16&f&&"function"==typeof e.then)return e}var c=Object.create(null);r.r(c);var b={};d=d||[null,a({}),a([]),a(a)];for(var t=2&f&&e;"object"==typeof t&&!~d.indexOf(t);t=a(t))Object.getOwnPropertyNames(t).forEach((d=>b[d]=()=>e[d]));return b.default=()=>e,r.d(c,b),c},r.d=(e,d)=>{for(var a in d)r.o(d,a)&&!r.o(e,a)&&Object.defineProperty(e,a,{enumerable:!0,get:d[a]})},r.f={},r.e=e=>Promise.all(Object.keys(r.f).reduce(((d,a)=>(r.f[a](e,d),d)),[])),r.u=e=>"assets/js/"+({53:"935f2afb",123:"3fc91083",296:"a64f9232",432:"323ff172",554:"8fd6869d",585:"c74413f4",596:"ca221c65",698:"56bbe726",918:"1e6d2369",952:"4442ee2e",1129:"30e35848",1327:"9c235974",1356:"7ca1ae16",1500:"3508f21e",1704:"6c6ad4cd",2099:"f4f5dc73",2163:"0bef62f9",2263:"e9a55e4f",2282:"9a6dc4ea",2305:"686ae6d4",2359:"d61699b0",2438:"d9dbb717",2453:"a5822498",2463:"42e0342b",2543:"86298114",2582:"63791757",2672:"bdd5fc8f",2678:"9b6f4efd",2853:"06df40a2",2873:"398224d0",3018:"2d344845",3166:"f9ee06b1",3293:"b78356b1",3305:"1f485700",3412:"792760cc",3436:"860b2a9d",3608:"9e4087bc",3661:"39f50359",3808:"fe8a233d",3822:"77dd8181",3902:"a8b15fb1",3934:"aa38dcb9",4009:"8050142d",4195:"c4f5d8e4",4419:"f601d3af",4521:"1a10606c",5294:"76fe1567",5386:"54e4468f",5435:"24202412",5437:"a186f965",5886:"7e4403b7",6061:"046f8cb9",6196:"c3faf33a",6245:"41d5c757",6304:"1c178b4f",6515:"f8c0402f",6570:"23d147e2",6671:"8effdd7e",6966:"c7d85666",7098:"d727d0d1",7426:"671d942a",7492:"b0f56568",7578:"3aee128f",7918:"17896441",8027:"2d39cd59",8150:"85201c01",8362:"0b225811",8518:"627750f7",8635:"0a8b14be",9003:"072ed0e5",9053:"75066279",9110:"7810a5ba",9173:"6d890e16",9184:"b3c62368",9213:"6dda7ddb",9221:"797402ac",9340:"d6e43592",9456:"aed7c9bd",9514:"1be78505",9744:"224603d4",9817:"14eb3368"}[e]||e)+"."+{53:"af8c3126",123:"1fc5f8a1",296:"a3fe1499",432:"8e77499f",554:"9012c388",585:"88e2ed16",596:"c934dcb0",698:"02ecf8a0",918:"74ff9fcc",952:"51f99e28",1129:"07372634",1327:"37d0ed39",1356:"02804555",1500:"929876a1",1704:"6511d866",2099:"2a653be0",2163:"096fabb0",2263:"3980a0d4",2282:"f1d8d943",2305:"600335dc",2359:"e041662b",2438:"e1067b46",2453:"7f593cf2",2463:"6d5f3ad4",2543:"52def2ee",2582:"b5f68b7e",2672:"25d9da0a",2678:"b0273f83",2853:"23875b5f",2873:"b722ee28",3018:"1383b54d",3166:"136c147f",3293:"655674df",3305:"1237957a",3412:"08f0edc4",3436:"cba9bde3",3608:"6e912446",3661:"593bba5c",3808:"a7fce259",3822:"dbb98ec9",3902:"73af5b7e",3934:"a4f5c736",4009:"1e9f60f9",4195:"684c270e",4419:"4a574066",4521:"216f709e",4608:"46768f56",5294:"86227180",5386:"f96775e6",5435:"67d0c84c",5437:"e2c081c8",5886:"f539fb56",6061:"24207895",6196:"aa89e306",6245:"b162b801",6304:"6abca704",6515:"6a8c6376",6570:"dd09dcfc",6671:"78438c01",6966:"3b2a23c4",7098:"451ca2c2",7426:"361333e3",7492:"01af3d6a",7578:"465c5637",7918:"6d7b2f82",8027:"c3e1229f",8150:"e3153012",8362:"69f9ed96",8518:"6f79a50b",8635:"9eacda40",9003:"b1cc3b3e",9053:"90332cf0",9110:"cbdafccc",9173:"3ab4f8fe",9184:"9ae02f15",9213:"3a3aae20",9221:"261f0d22",9340:"c521528a",9456:"3112a237",9514:"a4a3adad",9744:"bcc78ee9",9817:"d6f1bb65"}[e]+".js",r.miniCssF=e=>"assets/css/styles.6aa5c4cf.css",r.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),r.o=(e,d)=>Object.prototype.hasOwnProperty.call(e,d),f={},c="website:",r.l=(e,d,a,b)=>{if(f[e])f[e].push(d);else{var t,o;if(void 0!==a)for(var n=document.getElementsByTagName("script"),i=0;i{t.onerror=t.onload=null,clearTimeout(u);var c=f[e];if(delete f[e],t.parentNode&&t.parentNode.removeChild(t),c&&c.forEach((e=>e(a))),d)return d(a)},u=setTimeout(l.bind(null,void 0,{type:"timeout",target:t}),12e4);t.onerror=l.bind(null,t.onerror),t.onload=l.bind(null,t.onload),o&&document.head.appendChild(t)}},r.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r.p="/volto-eea-design-system/",r.gca=function(e){return e={17896441:"7918",24202412:"5435",63791757:"2582",75066279:"9053",86298114:"2543","935f2afb":"53","3fc91083":"123",a64f9232:"296","323ff172":"432","8fd6869d":"554",c74413f4:"585",ca221c65:"596","56bbe726":"698","1e6d2369":"918","4442ee2e":"952","30e35848":"1129","9c235974":"1327","7ca1ae16":"1356","3508f21e":"1500","6c6ad4cd":"1704",f4f5dc73:"2099","0bef62f9":"2163",e9a55e4f:"2263","9a6dc4ea":"2282","686ae6d4":"2305",d61699b0:"2359",d9dbb717:"2438",a5822498:"2453","42e0342b":"2463",bdd5fc8f:"2672","9b6f4efd":"2678","06df40a2":"2853","398224d0":"2873","2d344845":"3018",f9ee06b1:"3166",b78356b1:"3293","1f485700":"3305","792760cc":"3412","860b2a9d":"3436","9e4087bc":"3608","39f50359":"3661",fe8a233d:"3808","77dd8181":"3822",a8b15fb1:"3902",aa38dcb9:"3934","8050142d":"4009",c4f5d8e4:"4195",f601d3af:"4419","1a10606c":"4521","76fe1567":"5294","54e4468f":"5386",a186f965:"5437","7e4403b7":"5886","046f8cb9":"6061",c3faf33a:"6196","41d5c757":"6245","1c178b4f":"6304",f8c0402f:"6515","23d147e2":"6570","8effdd7e":"6671",c7d85666:"6966",d727d0d1:"7098","671d942a":"7426",b0f56568:"7492","3aee128f":"7578","2d39cd59":"8027","85201c01":"8150","0b225811":"8362","627750f7":"8518","0a8b14be":"8635","072ed0e5":"9003","7810a5ba":"9110","6d890e16":"9173",b3c62368:"9184","6dda7ddb":"9213","797402ac":"9221",d6e43592:"9340",aed7c9bd:"9456","1be78505":"9514","224603d4":"9744","14eb3368":"9817"}[e]||e,r.p+r.u(e)},(()=>{var e={1303:0,532:0};r.f.j=(d,a)=>{var f=r.o(e,d)?e[d]:void 0;if(0!==f)if(f)a.push(f[2]);else if(/^(1303|532)$/.test(d))e[d]=0;else{var c=new Promise(((a,c)=>f=e[d]=[a,c]));a.push(f[2]=c);var b=r.p+r.u(d),t=new Error;r.l(b,(a=>{if(r.o(e,d)&&(0!==(f=e[d])&&(e[d]=void 0),f)){var c=a&&("load"===a.type?"missing":a.type),b=a&&a.target&&a.target.src;t.message="Loading chunk "+d+" failed.\n("+c+": "+b+")",t.name="ChunkLoadError",t.type=c,t.request=b,f[1](t)}}),"chunk-"+d,d)}},r.O.j=d=>0===e[d];var d=(d,a)=>{var f,c,b=a[0],t=a[1],o=a[2],n=0;if(b.some((d=>0!==e[d]))){for(f in t)r.o(t,f)&&(r.m[f]=t[f]);if(o)var i=o(r)}for(d&&d(a);n{"use strict";var e,d,a,f,c,b={},t={};function r(e){var d=t[e];if(void 0!==d)return d.exports;var a=t[e]={id:e,loaded:!1,exports:{}};return b[e].call(a.exports,a,a.exports,r),a.loaded=!0,a.exports}r.m=b,r.c=t,e=[],r.O=(d,a,f,c)=>{if(!a){var b=1/0;for(i=0;i=c)&&Object.keys(r.O).every((e=>r.O[e](a[o])))?a.splice(o--,1):(t=!1,c0&&e[i-1][2]>c;i--)e[i]=e[i-1];e[i]=[a,f,c]},r.n=e=>{var d=e&&e.__esModule?()=>e.default:()=>e;return r.d(d,{a:d}),d},a=Object.getPrototypeOf?e=>Object.getPrototypeOf(e):e=>e.__proto__,r.t=function(e,f){if(1&f&&(e=this(e)),8&f)return e;if("object"==typeof e&&e){if(4&f&&e.__esModule)return e;if(16&f&&"function"==typeof e.then)return e}var c=Object.create(null);r.r(c);var b={};d=d||[null,a({}),a([]),a(a)];for(var t=2&f&&e;"object"==typeof t&&!~d.indexOf(t);t=a(t))Object.getOwnPropertyNames(t).forEach((d=>b[d]=()=>e[d]));return b.default=()=>e,r.d(c,b),c},r.d=(e,d)=>{for(var a in d)r.o(d,a)&&!r.o(e,a)&&Object.defineProperty(e,a,{enumerable:!0,get:d[a]})},r.f={},r.e=e=>Promise.all(Object.keys(r.f).reduce(((d,a)=>(r.f[a](e,d),d)),[])),r.u=e=>"assets/js/"+({53:"935f2afb",123:"3fc91083",296:"a64f9232",432:"323ff172",554:"8fd6869d",585:"c74413f4",596:"ca221c65",698:"56bbe726",918:"1e6d2369",952:"4442ee2e",1129:"30e35848",1327:"9c235974",1356:"7ca1ae16",1500:"3508f21e",1704:"6c6ad4cd",2099:"f4f5dc73",2163:"0bef62f9",2263:"e9a55e4f",2282:"9a6dc4ea",2305:"686ae6d4",2359:"d61699b0",2438:"d9dbb717",2453:"a5822498",2463:"42e0342b",2543:"86298114",2582:"63791757",2672:"bdd5fc8f",2678:"9b6f4efd",2853:"06df40a2",2873:"398224d0",3018:"2d344845",3166:"f9ee06b1",3293:"b78356b1",3305:"1f485700",3412:"792760cc",3436:"860b2a9d",3608:"9e4087bc",3661:"39f50359",3808:"fe8a233d",3822:"77dd8181",3902:"a8b15fb1",3934:"aa38dcb9",4009:"8050142d",4195:"c4f5d8e4",4419:"f601d3af",4521:"1a10606c",5294:"76fe1567",5386:"54e4468f",5435:"24202412",5437:"a186f965",5886:"7e4403b7",6061:"046f8cb9",6196:"c3faf33a",6245:"41d5c757",6304:"1c178b4f",6515:"f8c0402f",6570:"23d147e2",6671:"8effdd7e",6966:"c7d85666",7098:"d727d0d1",7426:"671d942a",7492:"b0f56568",7578:"3aee128f",7918:"17896441",8027:"2d39cd59",8150:"85201c01",8362:"0b225811",8518:"627750f7",8635:"0a8b14be",9003:"072ed0e5",9053:"75066279",9110:"7810a5ba",9173:"6d890e16",9184:"b3c62368",9213:"6dda7ddb",9221:"797402ac",9340:"d6e43592",9456:"aed7c9bd",9514:"1be78505",9744:"224603d4",9817:"14eb3368"}[e]||e)+"."+{53:"af8c3126",123:"1fc5f8a1",296:"a3fe1499",432:"8e77499f",554:"9012c388",585:"88e2ed16",596:"c934dcb0",698:"02ecf8a0",918:"74ff9fcc",952:"51f99e28",1129:"07372634",1327:"37d0ed39",1356:"02804555",1500:"929876a1",1704:"6511d866",2099:"2a653be0",2163:"096fabb0",2263:"3980a0d4",2282:"f1d8d943",2305:"600335dc",2359:"e041662b",2438:"e1067b46",2453:"7f593cf2",2463:"6d5f3ad4",2543:"52def2ee",2582:"b5f68b7e",2672:"25d9da0a",2678:"b0273f83",2853:"23875b5f",2873:"b722ee28",3018:"1383b54d",3166:"136c147f",3293:"655674df",3305:"1237957a",3412:"08f0edc4",3436:"cba9bde3",3608:"6e912446",3661:"593bba5c",3808:"a7fce259",3822:"dbb98ec9",3902:"73af5b7e",3934:"a4f5c736",4009:"1e9f60f9",4195:"684c270e",4419:"4a574066",4521:"216f709e",4608:"46768f56",5294:"86227180",5386:"f96775e6",5435:"67d0c84c",5437:"e2c081c8",5886:"f539fb56",6061:"24207895",6196:"aa89e306",6245:"205be74d",6304:"6abca704",6515:"6a8c6376",6570:"dd09dcfc",6671:"78438c01",6966:"3b2a23c4",7098:"451ca2c2",7426:"361333e3",7492:"01af3d6a",7578:"465c5637",7918:"6d7b2f82",8027:"c3e1229f",8150:"e3153012",8362:"69f9ed96",8518:"6f79a50b",8635:"9eacda40",9003:"b1cc3b3e",9053:"90332cf0",9110:"cbdafccc",9173:"3ab4f8fe",9184:"9ae02f15",9213:"3a3aae20",9221:"261f0d22",9340:"c521528a",9456:"3112a237",9514:"a4a3adad",9744:"bcc78ee9",9817:"d6f1bb65"}[e]+".js",r.miniCssF=e=>"assets/css/styles.6aa5c4cf.css",r.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),r.o=(e,d)=>Object.prototype.hasOwnProperty.call(e,d),f={},c="website:",r.l=(e,d,a,b)=>{if(f[e])f[e].push(d);else{var t,o;if(void 0!==a)for(var n=document.getElementsByTagName("script"),i=0;i{t.onerror=t.onload=null,clearTimeout(u);var c=f[e];if(delete f[e],t.parentNode&&t.parentNode.removeChild(t),c&&c.forEach((e=>e(a))),d)return d(a)},u=setTimeout(l.bind(null,void 0,{type:"timeout",target:t}),12e4);t.onerror=l.bind(null,t.onerror),t.onload=l.bind(null,t.onload),o&&document.head.appendChild(t)}},r.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r.p="/volto-eea-design-system/",r.gca=function(e){return e={17896441:"7918",24202412:"5435",63791757:"2582",75066279:"9053",86298114:"2543","935f2afb":"53","3fc91083":"123",a64f9232:"296","323ff172":"432","8fd6869d":"554",c74413f4:"585",ca221c65:"596","56bbe726":"698","1e6d2369":"918","4442ee2e":"952","30e35848":"1129","9c235974":"1327","7ca1ae16":"1356","3508f21e":"1500","6c6ad4cd":"1704",f4f5dc73:"2099","0bef62f9":"2163",e9a55e4f:"2263","9a6dc4ea":"2282","686ae6d4":"2305",d61699b0:"2359",d9dbb717:"2438",a5822498:"2453","42e0342b":"2463",bdd5fc8f:"2672","9b6f4efd":"2678","06df40a2":"2853","398224d0":"2873","2d344845":"3018",f9ee06b1:"3166",b78356b1:"3293","1f485700":"3305","792760cc":"3412","860b2a9d":"3436","9e4087bc":"3608","39f50359":"3661",fe8a233d:"3808","77dd8181":"3822",a8b15fb1:"3902",aa38dcb9:"3934","8050142d":"4009",c4f5d8e4:"4195",f601d3af:"4419","1a10606c":"4521","76fe1567":"5294","54e4468f":"5386",a186f965:"5437","7e4403b7":"5886","046f8cb9":"6061",c3faf33a:"6196","41d5c757":"6245","1c178b4f":"6304",f8c0402f:"6515","23d147e2":"6570","8effdd7e":"6671",c7d85666:"6966",d727d0d1:"7098","671d942a":"7426",b0f56568:"7492","3aee128f":"7578","2d39cd59":"8027","85201c01":"8150","0b225811":"8362","627750f7":"8518","0a8b14be":"8635","072ed0e5":"9003","7810a5ba":"9110","6d890e16":"9173",b3c62368:"9184","6dda7ddb":"9213","797402ac":"9221",d6e43592:"9340",aed7c9bd:"9456","1be78505":"9514","224603d4":"9744","14eb3368":"9817"}[e]||e,r.p+r.u(e)},(()=>{var e={1303:0,532:0};r.f.j=(d,a)=>{var f=r.o(e,d)?e[d]:void 0;if(0!==f)if(f)a.push(f[2]);else if(/^(1303|532)$/.test(d))e[d]=0;else{var c=new Promise(((a,c)=>f=e[d]=[a,c]));a.push(f[2]=c);var b=r.p+r.u(d),t=new Error;r.l(b,(a=>{if(r.o(e,d)&&(0!==(f=e[d])&&(e[d]=void 0),f)){var c=a&&("load"===a.type?"missing":a.type),b=a&&a.target&&a.target.src;t.message="Loading chunk "+d+" failed.\n("+c+": "+b+")",t.name="ChunkLoadError",t.type=c,t.request=b,f[1](t)}}),"chunk-"+d,d)}},r.O.j=d=>0===e[d];var d=(d,a)=>{var f,c,b=a[0],t=a[1],o=a[2],n=0;if(b.some((d=>0!==e[d]))){for(f in t)r.o(t,f)&&(r.m[f]=t[f]);if(o)var i=o(r)}for(d&&d(a);n Archive | EEA Design System - +

Archive

Archive

- + \ No newline at end of file diff --git a/docs/docs/category/components/index.html b/docs/docs/category/components/index.html index da04695b18..23f06a9c80 100644 --- a/docs/docs/category/components/index.html +++ b/docs/docs/category/components/index.html @@ -5,13 +5,13 @@ Components | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/category/forms/index.html b/docs/docs/category/forms/index.html index 87084b5f88..dd27b50fac 100644 --- a/docs/docs/category/forms/index.html +++ b/docs/docs/category/forms/index.html @@ -5,13 +5,13 @@ Forms | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/category/guidelines/index.html b/docs/docs/category/guidelines/index.html index 7bcda56082..fe7b25b378 100644 --- a/docs/docs/category/guidelines/index.html +++ b/docs/docs/category/guidelines/index.html @@ -5,13 +5,13 @@ Guidelines | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/category/maps-and-charts/index.html b/docs/docs/category/maps-and-charts/index.html index f693141678..651b7ae8bb 100644 --- a/docs/docs/category/maps-and-charts/index.html +++ b/docs/docs/category/maps-and-charts/index.html @@ -5,13 +5,13 @@ Maps and charts | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/category/publications/index.html b/docs/docs/category/publications/index.html index f3a9f1a203..b009a91787 100644 --- a/docs/docs/category/publications/index.html +++ b/docs/docs/category/publications/index.html @@ -5,13 +5,13 @@ Publications | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/category/quotes/index.html b/docs/docs/category/quotes/index.html index 6361f29e7e..e5f4697519 100644 --- a/docs/docs/category/quotes/index.html +++ b/docs/docs/category/quotes/index.html @@ -5,13 +5,13 @@ Quotes | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/category/resources/index.html b/docs/docs/category/resources/index.html index 6c2e29d9d9..70860fba35 100644 --- a/docs/docs/category/resources/index.html +++ b/docs/docs/category/resources/index.html @@ -5,13 +5,13 @@ Resources | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/category/search/index.html b/docs/docs/category/search/index.html index 111b21cdf7..af66f97f1c 100644 --- a/docs/docs/category/search/index.html +++ b/docs/docs/category/search/index.html @@ -5,13 +5,13 @@ Search | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/category/templates/index.html b/docs/docs/category/templates/index.html index f38721b4a5..5b7b9dbbb7 100644 --- a/docs/docs/category/templates/index.html +++ b/docs/docs/category/templates/index.html @@ -5,13 +5,13 @@ Templates | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/category/utilities/index.html b/docs/docs/category/utilities/index.html index 2a4b880c8b..4caa65b1f8 100644 --- a/docs/docs/category/utilities/index.html +++ b/docs/docs/category/utilities/index.html @@ -5,13 +5,13 @@ Utilities | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/category/visuals/index.html b/docs/docs/category/visuals/index.html index 77b780f0c1..06068a52d3 100644 --- a/docs/docs/category/visuals/index.html +++ b/docs/docs/category/visuals/index.html @@ -5,13 +5,13 @@ Visuals | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/category/web-content/index.html b/docs/docs/category/web-content/index.html index 0f89c658d8..9a35ddf935 100644 --- a/docs/docs/category/web-content/index.html +++ b/docs/docs/category/web-content/index.html @@ -5,13 +5,13 @@ Web content | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/category/web-development/index.html b/docs/docs/category/web-development/index.html index e65905fc93..ffe6a4192c 100644 --- a/docs/docs/category/web-development/index.html +++ b/docs/docs/category/web-development/index.html @@ -5,13 +5,13 @@ Web development | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/dataguide/intro/index.html b/docs/docs/dataguide/intro/index.html index e0e27ea713..2097e43100 100644 --- a/docs/docs/dataguide/intro/index.html +++ b/docs/docs/dataguide/intro/index.html @@ -5,13 +5,13 @@ Dos and don'ts | EEA Design System - +
- + \ No newline at end of file diff --git a/docs/docs/intro/index.html b/docs/docs/intro/index.html index 5b12e7a067..e219b0e9b6 100644 --- a/docs/docs/intro/index.html +++ b/docs/docs/intro/index.html @@ -5,13 +5,13 @@ Introduction | EEA Design System - +

Introduction

We created the EEA Design System (EEA-DS) to standardize the visual language and user experience of the EEA’s online applications.

This also allows us to be more effecient when creating online applications instead of reinventing the wheel over and over.

EEA-DS was built by a multi-disciplinary team of developers, designers, UX researchers, writers and data scientists. Combining the expertise of all of these roles allowed us to create a design system with a wide range of elements and for various target users (Web Designer, Web Writer/Content manager, Web Developer and Data scientist).

What is a design system?

A design system is a catalogue of everything that makes up your digital product including user interface elements, writing style, guiding principles, coding standards, visual design, etc. using reusable components for easy development.

All library elements are accompanied by:

  • documentation explaining what a component is and how it should be used
  • a visual demonstration
  • HTML/CSS code for implementation
- + \ No newline at end of file diff --git a/docs/docs/pubguide/design/index.html b/docs/docs/pubguide/design/index.html index 0275d8c493..a7ec8d6a64 100644 --- a/docs/docs/pubguide/design/index.html +++ b/docs/docs/pubguide/design/index.html @@ -5,14 +5,14 @@ Design guidelines | EEA Design System - +
- + \ No newline at end of file diff --git a/docs/docs/pubguide/writing/index.html b/docs/docs/pubguide/writing/index.html index c7d692327a..ffe38bbc3e 100644 --- a/docs/docs/pubguide/writing/index.html +++ b/docs/docs/pubguide/writing/index.html @@ -5,13 +5,13 @@ Writing guidelines | EEA Design System - +
- + \ No newline at end of file diff --git a/docs/docs/webcontent/intro/index.html b/docs/docs/webcontent/intro/index.html index b153c37fe6..c61feaae79 100644 --- a/docs/docs/webcontent/intro/index.html +++ b/docs/docs/webcontent/intro/index.html @@ -5,13 +5,13 @@ Guidelines | EEA Design System - +
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Accordion/index.html b/docs/docs/webdev/Components/Accordion/index.html index dcfd991e53..6a1cbd4af4 100644 --- a/docs/docs/webdev/Components/Accordion/index.html +++ b/docs/docs/webdev/Components/Accordion/index.html @@ -5,13 +5,13 @@ Accordion | EEA Design System - +

Accordion

The accordion component is used to generate vertically stacked content in a page. It is intended to save vertical space by hiding content, reducing scrolling.

Accordions contain labels with the relevant information. Users can click on the accordion to read additional information. For this reason, accordion labels (collapsed state) should be as descriptive and concise as possible.

Do's

  • use labels that are representative of the content inside the (initially hidden) container
  • order logically (such as 1st quarter, 2nd quarter, 3rd quarter, 4th quarter)
  • make sure this component is required in order to shorten the page

Don'ts

  • don't use unless users will benefit from hidden information
  • don't use actionable items (i.e. forms, accordions, buttons, CTAs, etc.) or pictures in the content container as they will have decreased visibility
  • don't hide important information that should be present at all times
  • don't use long labels, ideally keep it to one line, maximum 2

When to use

  • when you need to present multiple sections of content in a simple way on one page, without overwhelming the user (especially applicable to mobile)
  • when it’s not critical for every user to read every section of content, adding value
  • when you can make extensive and complex content easier to digest through descriptive labels

When not to use

  • don't use when pages are short (reading time: under 3 minutes)
  • don't use when information would be better structured horizontally (does not need comparison between sections) - use tabs instead
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Breadcrumb/index.html b/docs/docs/webdev/Components/Breadcrumb/index.html index 7ca9ec70b7..682d2c723b 100644 --- a/docs/docs/webdev/Components/Breadcrumb/index.html +++ b/docs/docs/webdev/Components/Breadcrumb/index.html @@ -5,13 +5,13 @@ Breadcrumb | EEA Design System - +

Breadcrumb

The Breadcrumb informs the users on their current location relative to the homepage of the website and allows them to navigate to higher levels. It is a series links except the last item in the group, which is the current page.

Do's

  • the first element of the breadcrumb must always be labelled "Home" and must link to the homepage of the actual site where the current user page is located

Don'ts

  • use long labels which creates visual clutter
  • breadcrumb links cannot exceed 220px in length else they will be truncated

When to use

  • if your website's navigational structure is a tree of more than 2 levels

When not to use

  • if your website's navigational structure has less than 3 levels of depth
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Buttons/index.html b/docs/docs/webdev/Components/Buttons/index.html index bd563128f3..14f4aab80d 100644 --- a/docs/docs/webdev/Components/Buttons/index.html +++ b/docs/docs/webdev/Components/Buttons/index.html @@ -5,13 +5,13 @@ Buttons | EEA Design System - +

Buttons

Buttons trigger an action in a web page. There are 4 variants of the button component with different levels of importance and usages.

Primary Button

Use for basic and successful actions. They direct the user’s attention to the primary action the application is suggesting that the user take.

Do's

  • make sure the button‘s microcopy represents the action such as “Submit“ or “Register“
  • use an icon only when it is necessary
  • use to perform a new action, task, move to next step

Don'ts

  • don't assign an action that should be assigned for a CTA (Call To Action) or other variations of buttons
  • don't use an icon when it is not relevant or necessary to the action

When not to use

  • don't use for navigation
  • don't use for downloads
  • don't use when the primary action is negative - use secondary button
  • don't use when the action can't be undone, such as delete

Secondary Button

Use for medium-emphasis actions. They contain actions that are important but aren’t the primary action. They are used to indicate a secondary action that compliments a primary action or to reduce visual noise when there are many actions of equal importance on the page.

Do's

  • ensure the button performs an action, such as "Cancel", "Delete," "Remove" or "Replace" as the secondary action next to the primary button
  • use an icon only when it is necessary

Don'ts

  • don't use for primary positive actions – such as Submit, Send, Accept, Apply or navigation
  • don't use on its own
  • don't use for navigation
  • don't use an icon when it is not relevant or necessary to the action

Inverted Button

When to use

  • use inverted and inverted-green only on white or light color background
  • use inverted-dark only on dark background

Use for low-emphasis actions or for buttons that could have a long length text. It can be grouped with other buttons or placed independently.

When to use

  • use with low emphasis in a button group
  • use on pages/cards when the main focus should be the content and not the button
  • when there is a single action intended

When not to use

  • do not use for navigation purpose
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Callout/index.html b/docs/docs/webdev/Components/Callout/index.html index 2e82c6b9e5..3c42f2b0b6 100644 --- a/docs/docs/webdev/Components/Callout/index.html +++ b/docs/docs/webdev/Components/Callout/index.html @@ -5,13 +5,13 @@ Callout | EEA Design System - +

Callout

The callout component is used to capture users' attention of an excerpt, testimonial, or a quote cited from the article or other sources. The design style makes the quoted section more distinguishable than the rest of the content in the web page.

Do's

  • always name the source of the quoted content
  • limit the quote to no longer than 80 characters
  • use the image variant to add a portrait of the quoted person

Don'ts

  • do not apply more than two callout components on the webpage
  • for the image variant, do not use a photoshopped composition of images

When to use

  • quoting something important

When not to use

  • to emphasize text style
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Cards/index.html b/docs/docs/webdev/Components/Cards/index.html index 7a0c1a5f77..56f2e38475 100644 --- a/docs/docs/webdev/Components/Cards/index.html +++ b/docs/docs/webdev/Components/Cards/index.html @@ -5,14 +5,14 @@ Card | EEA Design System - +

Card

Cards component is used as an entry point to more detailed information. The component can include various sets of elements to serve users' specific needs.

Do's

  • use cards to emphasize on contents
  • only display the most relevant information on each card illustration: card with a thumbnail, title, description
  • keep the amount of links on the cards as low as possible

Don'ts

  • overuse cards
  • limit the amount of cards to small groups of items
  • limit to 3-4 cards within a row
  • display too many links on a cards, the main and ideally only action on card should remain to navigate to the content it represent

When to use

  • browsing for information (as opposed to searching)

  • grouping heterogeneous types of content

  • allowing users to scan through content in small portions

    • to display structured content
    • to make information discoverable
  • the user goals that the card-based web design best responds to:

    • scrolling through
    • scanning through
    • browsing through

When not to use

  • searching for information (as opposed to browsing)
  • on small screen display avoid using too many cards as they force users to scroll down and rely on their short-term memory. This creates a cognitive overload, a negative user experience
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Comment/index.html b/docs/docs/webdev/Components/Comment/index.html index 6caf698ae0..7b00572802 100644 --- a/docs/docs/webdev/Components/Comment/index.html +++ b/docs/docs/webdev/Components/Comment/index.html @@ -5,13 +5,13 @@ Comment | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Confirm/index.html b/docs/docs/webdev/Components/Confirm/index.html index fdffdecc8a..cdbdf95009 100644 --- a/docs/docs/webdev/Components/Confirm/index.html +++ b/docs/docs/webdev/Components/Confirm/index.html @@ -5,13 +5,13 @@ Confirm | EEA Design System - +

Confirm

A confirmation dialog asks users whether they are sure that they want to proceed with an action.

Do’s

  • use a confirmation dialog before actions that cannot be undone
  • be specific and inform users about the consequence of their actions.

Don’ts

  • do not use confirmation dialogs for routine actions
  • avoid giving confirmation dialogs a default Yes answer
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Content/index.html b/docs/docs/webdev/Components/Content/index.html index 409152046f..1faf8ea097 100644 --- a/docs/docs/webdev/Components/Content/index.html +++ b/docs/docs/webdev/Components/Content/index.html @@ -5,7 +5,7 @@ Content | EEA Design System - + @@ -18,7 +18,7 @@ Don’t indent paragraphs, use whitespace before. While most longform print design uses indented lines to distinguish paragraphs, it’s more conventional on the web to use unindented paragraphs separated by whitespace. Use at least 1em of whitespace between paragraphs. To properly separate paragraphs from one another, use the equivalent of one blank line of whitespace between them. Using more than 1.5em disturbs the flow of the text, and using less than 0.5em doesn’t provide enough separation. Headings should be closer to the text they introduce than the text that preceeds them. It’s important that headings are more visually connected to the text for which they’re the heading than the text of the previous section to reduce ambiguity and cognitive dissonance. Use at least 1.5 times the amount of whitespace above the heading as below it.

- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Divider/index.html b/docs/docs/webdev/Components/Divider/index.html index 5b596da946..a35b2118bf 100644 --- a/docs/docs/webdev/Components/Divider/index.html +++ b/docs/docs/webdev/Components/Divider/index.html @@ -5,13 +5,13 @@ Divider | EEA Design System - +

Divider

Dividers are used throughout all types of design to establish content hierarchy and separate themes. Deceptively simple, they are one of the main contributors to our visual style.

Kinds of Visual Dividers

Talking about dividers, we can analyze them in two aspects: their appearance and their functions. Starting with the visual part, there are 4 basic and broadly used methods of dividing content in our user interfaces:

  • Lines

  • Color contrast

  • Negative space

  • Images

Lines have belonged to the top methods of separating the pieces of content since time immemorial, both in print production and in digital interfaces. They are recognized easily in this role, so users won’t need to think twice.

Don’ts

Too many lines can overload the screen with visual noise and create unnecessary visual tension. Use lines only if the content cannot be effectively divided in another way.

When to use

  • when whitespace is not enough of a separator

  • in lists, separate items to show they are individual and unrelated items when each item is long and otherwise difficult to scan

  • in layouts, when background color changes (e.g. from Gray 100 to White)

When not to use

  • for surrounding an item, use a border instead

  • for grouping content, use a card or table

Color Contrast is another effective type of visual divider. Contrast is one of the key factors influencing scannability and visual hierarchy of the page or screen. With all that, color contrast can effective separate different option, items, or interactive zones, that means work as a visual divider.

Negative space (aka white space) means empty space on the screen around and often inside the elements. Yet, empty does not mean passive or wasted: as well as any other element of the screen, it works supporting a positive user experience. Negative space is one of the most popular kinds of visual dividers, especially in interfaces built on the idea of minimalism and simplicity. Negative space turns into an effective and elegant visual divider that also let the interface to breathe and avoid clutter.

Images of all kinds present one more effective visual divider. In this role, they are especially popular in the interfaces with lots of text content pages. Photos, illustrations, 3D graphics, as well as animated images, help to balance the text content, increase scannability and readability levels, effectively divide the visual blocks, as well as add fun and emotional appeal.

- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Forms/Checkbox/index.html b/docs/docs/webdev/Components/Forms/Checkbox/index.html index 0c010abf05..6508147bce 100644 --- a/docs/docs/webdev/Components/Forms/Checkbox/index.html +++ b/docs/docs/webdev/Components/Forms/Checkbox/index.html @@ -5,13 +5,13 @@ Checkbox | EEA Design System - +

Checkbox

The checkbox is a form input for users to choose one or more options from the list of selections.

Dos

  • always make sure each checkbox has a short, distinct and indicative checkbox label
  • use checkbox labels as click targets (clicking the label will select that option)
  • arrange them vertically, in a single column layout
  • group related fields
  • order logically
  • indicate whether the input group is optional or mandatory
  • make use of helper text if there are further directions or hints the users may need in completing their goal
  • write specific and clear error messages, so users understand how to properly address and recover from the error

Don'ts

  • don't add them without grouping first, in a logical order
  • don't restrict the number of checkboxes that can be ticked at any time
  • don't nest elements under the checkbox - keep all the options on the same level

When to use

  • use in any situation where the input information is known to the organisation
  • when users need to select options or toggle settings
  • in forms with multiple non-exclusive options
  • in search filters
  • to turn a setting option on or off

When not to use

  • do not use it when you have mutually exclusive items
  • do not use it if the checkbox selection will perform an action
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Forms/Dropdown/index.html b/docs/docs/webdev/Components/Forms/Dropdown/index.html index e2f190468e..21237efcc1 100644 --- a/docs/docs/webdev/Components/Forms/Dropdown/index.html +++ b/docs/docs/webdev/Components/Forms/Dropdown/index.html @@ -5,13 +5,13 @@ Dropdown | EEA Design System - +

Dropdown

Default single select

The select component, is a widget which displays a list of selectable items from which the user can select one values.

Do's

  • write short, distinct and indicative headings for the items listed inside the dropdown
  • use dropdown select menu labels as click targets (clicking the label will trigger the action)
  • indicate whether the input is optional
  • make use of helper text if there are further directions or hints the users may need in completing their goal (example: you must be a current resident of this country)
  • write specific and clear error message texts, so users understand how to address the error

Don'ts

  • don't use as navigation
  • don't use it for multi-select

When to use

  • when there are more than 5 options to select from

When not to use

  • when you want users to read all options
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Forms/Radio/index.html b/docs/docs/webdev/Components/Forms/Radio/index.html index ecc0393c78..6965579cad 100644 --- a/docs/docs/webdev/Components/Forms/Radio/index.html +++ b/docs/docs/webdev/Components/Forms/Radio/index.html @@ -5,13 +5,13 @@ Radio | EEA Design System - +

Radio

Radio buttons provides a selection with two or more options. Only one option can be selected.

Do's

  • use labels as click targets (clicking the label will select that option)
  • group related fields
  • order logically (e.g. ages 18-25, ages 25-35, ages, 35-50, over 65)
  • indicate whether the input group is optional - if it's mandatory, have a neutral option (e.g. other, n/a) selected by default
  • make use of helper text if there are further directions or hints the users may need in completing their goal
  • write specific and clear error messages, so users understand how to address the error

Don'ts

  • don't add them without grouping first
  • don't nest elements under radio buttons - keep all the options on the same level

When to use

  • when you have under 10 items
  • when users need to select options or toggle settings, for example
  • in forms with multiple non-exclusive options (e.g. search filters)
  • only one selection can be made

When not to use

  • avoid when more than one option can be selected - use checkboxes instead
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Forms/TextArea/index.html b/docs/docs/webdev/Components/Forms/TextArea/index.html index 38b24980be..3ea55e249d 100644 --- a/docs/docs/webdev/Components/Forms/TextArea/index.html +++ b/docs/docs/webdev/Components/Forms/TextArea/index.html @@ -5,13 +5,13 @@ Text Area | EEA Design System - +

Text Area

A text area is an input field allowing users to enter multiple lines of text. Use in any situation where the user needs to input a large, or unknown, amount of data.

Do's

  • allow copy/paste for ease of use
  • match the text field to the expected size of the input - make it wide enough for the user to see their entire entry
  • write specific and clear error message texts, so users understand how to address the error

Don'ts

  • don't use placeholder text in the text field - this may not be read by screen reading software, leading to accessibility issues
  • don't have a mandatory minimum input of characters
  • don't restrict the use of uncommon or special characters
  • don't disable copy and paste functions
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Forms/TextInput/index.html b/docs/docs/webdev/Components/Forms/TextInput/index.html index 56ef88e4b5..18cd998638 100644 --- a/docs/docs/webdev/Components/Forms/TextInput/index.html +++ b/docs/docs/webdev/Components/Forms/TextInput/index.html @@ -5,13 +5,13 @@ Text Input | EEA Design System - +

Text Input

A text field is an input that can be used on a form, sign-in or any place where data is requested from the user.

Do's

  • minimise the number of input fields - only ask for necessary information
  • arrange them vertically for better layout and readability
  • group related fields together
  • order input fields logically, matching real-world task succession and interactions
  • always label each text area with a short, descriptive title, placed above the text area
  • indicate whether the input field is optional or mandatory
  • make use of helper text if there are further directions or hints the users may need in completing their goal (example: Must be at least 6 characters and contain a number and a special character)
  • allow copy/paste for ease of use
  • if a character counter is necessary, place it below the text area
  • match the text field area to the expected size of the input - make it wide enough for the user to see their entire entry
  • write specific and descriptive error message for easy comprehension

Don'ts

  • don't use placeholder text in the text area - this may not be read by screen reading software, leading to accessibility issues
  • don't have a mandatory minimum input of characters
  • don't restrict the use of uncommon or special characters
  • don't disable copyand paste functions

When to use

  • use in any situation where the user needs to input limited amount of data (name, email address, age, etc)

When not to use

  • do not use where the user needs to input a large, or unknown amount of data
  • do not use when the user must respond with specific options which are known to the organisation
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Headings/index.html b/docs/docs/webdev/Components/Headings/index.html index d7bc336bf7..57148183e2 100644 --- a/docs/docs/webdev/Components/Headings/index.html +++ b/docs/docs/webdev/Components/Headings/index.html @@ -5,13 +5,13 @@ Headings | EEA Design System - +

Headings

Effective headings are recognizable immediately, and help readers understand the flow of content on the page.

How to Use

  • employ visual contrast to make headings stand out. Headings need to appear separate from the rest of the content on the page
  • size matters: Headings should be big
  • use headings as titles. If we’re labeling a section of a website, the heading serves as the title for the section
  • be concise. Keep headings short. In some cases, it’s even okay to drop articles like “the” and “a,” as they can be assumed
  • not all headings should be bold
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Image/index.html b/docs/docs/webdev/Components/Image/index.html index 56b3fcdb3c..1a1e91f1ae 100644 --- a/docs/docs/webdev/Components/Image/index.html +++ b/docs/docs/webdev/Components/Image/index.html @@ -5,13 +5,13 @@ Image | EEA Design System - +

Image

Images must have natural snapshots that show unique situations.

Do’s

  • use stylistic tools such as light, perspective, color, focus and composition to tell stories that are authentic and believable.
  • the content of the photographs should be positive, optimistic, natural, realistic, warm, and welcoming. Framing should be playful and feel spontaneous
  • use image copyrights to be respectful of the author’s ownership rights

Don’ts

  • do not use images that are too dark or do not have enough contrast
  • do not use overlaying gradients
  • images that are too static or that appear too symmetrical should not be used
  • do not use images that are over exposed or over saturated
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Inpage-Navigation/index.html b/docs/docs/webdev/Components/Inpage-Navigation/index.html index fb0b6087a4..0dce1c741a 100644 --- a/docs/docs/webdev/Components/Inpage-Navigation/index.html +++ b/docs/docs/webdev/Components/Inpage-Navigation/index.html @@ -5,13 +5,13 @@ Inpage Navigation | EEA Design System - +

Inpage Navigation

A Back to Top button, which is a shortcut that allows users to quickly navigate to the top of the page.

When users get at the bottom of a really long page, they often will need to get back to the top to:

  • see the navigation menu and choose a new destination
  • access filtering and sorting features
  • enter or edit a query in the search box

When the page is really long (for example, because of infinite scrolling), it becomes too tedious to scroll back up through screens and screens of content. Hence the role of the Back to Top button.

Do's

  • use a 'Back to Top button' for pages that are longer than 4 screens. For relatively short page lengths, 'Back to Top links' are overkill
  • place a persistent 'Back to Top button' in the lower right side of the page. This is where people expect to see it. This position is out of the way, but noticeable. When the button is placed in a different place on the screen, it is often ignored
  • label the button 'Back to Top'. This phrase is most descriptive. An icon only (.e.g., an arrow pointing up) can be ambiguous and, depending on the graphical realization, may not convey the right meaning
  • keep the button small so it doesn’t cover important page elements. But, if you are on a touch screen, make it big enough so people can tap it
  • make the button stand out visually on the page rather than blend in. When Back to Top blends too much with the background content, users are less likely to notice and use it
  • consider delaying the appearance of a 'Back to Top' option until after users scroll a few pages and indicate that they want to scroll up (e.g., move the scroll bar up, flick up on the page). Thus, the button appears only when it is most likely needed, without covering up important parts of the screen the rest of the time
  • make the button stationary. Once it appears, don’t allow it to move. Moving elements cause major distractions, since the eye is automatically attracted to any movement on the screen
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Item/index.html b/docs/docs/webdev/Components/Item/index.html index acd0ac57ad..34707176ab 100644 --- a/docs/docs/webdev/Components/Item/index.html +++ b/docs/docs/webdev/Components/Item/index.html @@ -5,13 +5,13 @@ Item | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Labeled-icons/index.html b/docs/docs/webdev/Components/Labeled-icons/index.html index 11c1f6bad5..12beaefb3d 100644 --- a/docs/docs/webdev/Components/Labeled-icons/index.html +++ b/docs/docs/webdev/Components/Labeled-icons/index.html @@ -5,13 +5,13 @@ Labeled icons | EEA Design System - +

Labeled icons

The labeled icons are used as a visual represenation of every available action below data products.

Do's

  • keep the labels as short as possible
  • always choose icons that the users can easily identify

Don'ts

  • don't use more than 5-6 labeled icons at once
  • dont use less than two in one row
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Labels/index.html b/docs/docs/webdev/Components/Labels/index.html index 6872eca77d..2353497d42 100644 --- a/docs/docs/webdev/Components/Labels/index.html +++ b/docs/docs/webdev/Components/Labels/index.html @@ -5,13 +5,13 @@ Label | EEA Design System - +

Label

Labels are used to indicate the different states for items in a list. They bring supplementary meaning by adding an indicative state (label) that is visually distinct (background colour) from other elements.

Do's

  • keep the message consistent on a single list of items and express meaning based on the content in which it is being used (e.g. "canceled" for events)
  • keep the label succinct (1-2 words)

Don'ts

  • don't use 2 labels at the same time (in one list)

When to use

  • when you have items in a list with multiple states (e.g. featured item & generic list item; canceled, rescheduled & upcoming event)

When not to use

  • when all items in a list have the same state (e.g. search list items)
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Lists/index.html b/docs/docs/webdev/Components/Lists/index.html index 9b0a1e7959..276fe66e61 100644 --- a/docs/docs/webdev/Components/Lists/index.html +++ b/docs/docs/webdev/Components/Lists/index.html @@ -5,13 +5,13 @@ List | EEA Design System - +

List

Used to present chunks of information in a concise and scannable way, lists help to organise content related to a single topic, grouping together a set of items or text options.

Ordered lists

Ordered lists display a set of items in a sequential and logical order, indicated by a number in front of the label. Common use cases include counting, ranking or sequencing, but can be used in everything that has a hierarchy. Different list styles can be applied to list items, like numbers, roman numerals or letters, which can be used interchangeably when nesting (e.g. nested item 1 & 2 under item 3).

Do's

  • make sure the items are placed in hierarchical order so that the relation, rank or order is obvious to the user
  • indicate the external links, if linking to any pages external to the EEA
  • for easy to read purpose, try to use labels that are relatively consistent in characters & width

Don'ts

  • do not nest lists deeper than 3 levels

When to use

  • use ordered lists when you need to display items in a specific order or to indicate hierarchy

When not to use

  • do not use it for navigation purpose
  • do not use it when all items have equal value or importance
  • do not use when you have one or more overarching categories that require descriptions

Unordered list

Unordered lists are used to group related content without any particular order, with bullet points placed in front of the labels. Common use cases are much broader than ordered lists. They are used for a set of items that can be arranged in any specific order. Different bullet list styles are available to unordered list items, such as disc, circle, square or hyphen when nesting (eg. 2 sub-points under point 2).

Do's

  • indicate the external links, if linking to any pages external to the EEA
  • for easy to read purpose, try to use labels that are relatively consistent in characters & width

Don'ts

  • do not nest lists deeper than 3 levels in order to avoid clutters

When to use

  • use it when you need to display items that do not have a specific order or hierarchy

When not to use

  • do not use it for navigation purpose
  • do not use it when items can be ranked, counted or sequenced
  • do not use when you have one or more overarching categories or terms require descriptions

Description lists

Description lists are used to display and organise content with a descriptions. Common use cases include glossary, or a list of speakers with their biographies.

Do's

  • keep label short and meaningful
  • order logically according to their hierarchy, significance and degree of relatedness
  • avoid using long sentences
  • try to use labels that are relatively consistent in characters & width
  • add a meaningful description or explanation of each term

Don'ts

  • do not use an active voice
  • do not nest description lists

When to use

  • use a description list when the terms in the list require a specific description or explanation
  • on content pages to add additional information(such as latest update on the content of a page) or link to pages of interest

When not to use

  • do not use it for navigation purpose
  • do not use it when items can be ranked, counted or sequenced
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Loader/index.html b/docs/docs/webdev/Components/Loader/index.html index c1e18480d3..ea322b5176 100644 --- a/docs/docs/webdev/Components/Loader/index.html +++ b/docs/docs/webdev/Components/Loader/index.html @@ -5,13 +5,13 @@ Loader | EEA Design System - +

Loader

Loaders can be used to indicate progress on long actions/waits which meet some or preferably all of these characteristics:

  • the action/wait is blocking user flow. That is, it's difficult or impossible for the user to proceed with the flow she is on without waiting.

    • e.g. The user asked a question and the answer is being retrieved from a server

    • e.g. The user scrolled to the bottom of page feed and new content is being loaded

  • the action is long enough that a user may feel anxious if there is no indication of progress. For short actions or waits having a short-lived throbber is not a great idea because it can confuse users

  • it's difficult or impossible to indicate exact progress. If it's possible to indicate progress (eg percentage complete) then progress bars or widgets are more appropriately communicative and less likely to frustrate users

Dont ‘s

Do not use it for actions that take less than 1 sec.

- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Logo/index.html b/docs/docs/webdev/Components/Logo/index.html index cfbc8c23f1..f901dde451 100644 --- a/docs/docs/webdev/Components/Logo/index.html +++ b/docs/docs/webdev/Components/Logo/index.html @@ -5,13 +5,13 @@ Logo | EEA Design System - +

Logo

To ensure consistency, it is important that the EEA logo appears only in the colours specified in these guidelines.

When applying the logo to images ensure that it is against a light, uncluttered background.

To ensure logo's integrity and visibility, it must always be kept clear of competing text, images or graphic elements. It must be surrounded by a minimum clear space οf 16px as indicated below.

EEA LOGO - Dark version

The only time the white version of the EEA logo appears on is against the dark background of the footer.

- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Messages/index.html b/docs/docs/webdev/Components/Messages/index.html index a712fc5a63..ad1b2f1964 100644 --- a/docs/docs/webdev/Components/Messages/index.html +++ b/docs/docs/webdev/Components/Messages/index.html @@ -5,13 +5,13 @@ Messages | EEA Design System - +

Messages

Messages component contains important information to alert users to take a certain actions.

Do's

  • keep the message brief and clear
  • use consistent messages for the same information/success/warning/error throughout your site

Don'ts

  • overuse messages - users may ignore them and they can get in the way of a user completing their task
  • write messages that are neutral. For example, instead of The postal code you entered is invalid, the message should say Please enter a valid postal code

When to use

  • when the information is essential to convey to the users in order to go to the next step
  • success message: the user has performed an action which was successfully completed
  • warning message: the user needs to know about the potential dangers of completing their task (for example: "you are about replace/erase your data")
  • error message: the user tried to perform an action that failed because of a problem (for example: a file could not be uploaded because it wasn't the correct type of file)

When not to use

  • don't use to show non critical information
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Modal/index.html b/docs/docs/webdev/Components/Modal/index.html index ac99621068..c05df44891 100644 --- a/docs/docs/webdev/Components/Modal/index.html +++ b/docs/docs/webdev/Components/Modal/index.html @@ -5,13 +5,13 @@ Modal | EEA Design System - +

Modal

Modals appear on top of the main content and require user interaction. This dialog disables the main content until the user explicitly interacts with the modal dialog.

Do’s

  • use modal dialogs for important warnings, to prevent or correct critical errors
  • use modal dialogs to request the user to enter information critical to continuing the current process
  • modal dialogs can be used to fragment a complex workflow into simpler steps

Don’ts

  • do not use modal dialogs for nonessential information that is not related to the current user flow
  • avoid modal dialogs that interrupt high-stake processes
  • avoid modal dialogues for complex decision making that require additional sources of information unavailable in the modal
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Pagination/index.html b/docs/docs/webdev/Components/Pagination/index.html index d067b29a93..41882bcffb 100644 --- a/docs/docs/webdev/Components/Pagination/index.html +++ b/docs/docs/webdev/Components/Pagination/index.html @@ -5,13 +5,13 @@ Pagination | EEA Design System - +

Pagination

Pagination component is the control to navigate through multiple pages.

Do's

  • place the pagination below the list of items

Don'ts

  • don't replace this component with an "infinite scrolling" feature

When to use

  • to show long lists otherwise redundant scrolling in one page

When not to use

  • don't use to break unrelated content on different pages
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Popup/index.html b/docs/docs/webdev/Components/Popup/index.html index f9e6c63b7b..295b0490de 100644 --- a/docs/docs/webdev/Components/Popup/index.html +++ b/docs/docs/webdev/Components/Popup/index.html @@ -5,14 +5,14 @@ Popup | EEA Design System - +

Popup

A popup (also known as an overlay) is a window or dialog that appears on top of the page content. A popup can be classified according to two dimensions:

  • whether the user can interact with the rest of the page, and it is called 'Modal' when the content on the page is disabled until the user explicitly interacts with the overlay or 'Nonmodal' when users can still interact with the background content (for example, by selecting links or tapping buttons) while the overlay remains visible
  • whether the background is dimmed the popup is called a 'Lightbox'

Do’s

  • present the content in the popup when it’s contextually relevant to the user
  • if you must present critical information (e.g., important warnings to prevent or correct errors) in a popup, be sure to show only one at a time

Don’ts

  • do not show a popup before the main page content loads
  • do not display a popup right after the user logs in
  • you should not ask for feedback before people have done anything meaningful
  • do not show multiple popups one after another
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Progress/index.html b/docs/docs/webdev/Components/Progress/index.html index 39e5e9c4d2..1af2aeeb68 100644 --- a/docs/docs/webdev/Components/Progress/index.html +++ b/docs/docs/webdev/Components/Progress/index.html @@ -5,13 +5,13 @@ Progress | EEA Design System - +

Progress

Progress indicators tell users that more time is needed to process the last user action (for instance, to load a file, or to install a new update), and how much time remains.

Do’s

  • use a progress indicator for any action that takes longer than about 1.0 second
  • use Looped animation only for fast actions. The animated-spinner icon is an example of this common progress indicator. This indicator should be used for actions that take between 2-10 seconds
  • percent-done animation: Use for actions that take 10 seconds or more.

Don’ts

  • do not use static progress indicators
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Quote/Quote/index.html b/docs/docs/webdev/Components/Quote/Quote/index.html index 3e1a5e1d8e..d378eec833 100644 --- a/docs/docs/webdev/Components/Quote/Quote/index.html +++ b/docs/docs/webdev/Components/Quote/Quote/index.html @@ -5,13 +5,13 @@ Quote | EEA Design System - +

Quote

Quote is a key phrase, quotation, or excerpt that has been pulled from an article and used as a page layout graphic element, serving to entice readers into the article or to highlight a key topic.

Dont's

  • Do not use more than one quote per page
  • Do not use long text or job title
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Quote/Testimonial/index.html b/docs/docs/webdev/Components/Quote/Testimonial/index.html index 019cabf63f..e05f441d49 100644 --- a/docs/docs/webdev/Components/Quote/Testimonial/index.html +++ b/docs/docs/webdev/Components/Quote/Testimonial/index.html @@ -5,13 +5,13 @@ Testimonial | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Search/Filters/index.html b/docs/docs/webdev/Components/Search/Filters/index.html index 542f19742c..61ae4f3f44 100644 --- a/docs/docs/webdev/Components/Search/Filters/index.html +++ b/docs/docs/webdev/Components/Search/Filters/index.html @@ -5,13 +5,13 @@ Filters | EEA Design System - +

Filters

The filter options must cover the most important aspects of whatever users will be filtering, based on relevance to users’ needs.

To design a filter that serves our users, we need to answer the following questions:

  • which characteristics are most influential to users in making their choice?

  • what words do users use to describe these characteristics?

  • do users understand our labels, or do they look like jargon to them?

  • which filter values are the most popular or most used?

    How to use Search filters

  • make sure users can find the search filters:

    • on desktop, users tend to find and use them easily when they are placed to the top and top left area of the page
    • on mobile where usually they are behind a button or drawer Keep them at the top and don’t rely on just an icon. Remove any ambiguity by adding a label to the icon or removing the icon altogether and just have text
  • ensure the options are relevant to users. When it comes to filters, matching the user’s mental model of how they would choose something in the physical world, is important in helping them choose something on a website

  • clearly display the selections to users. Feedback is an important heuristic for the usability of a website. So, once users have found the filters, understood the options they have, and made their selections – it’s important to let them know their choices have been applied to the list of products

  • allow a combination of filters. A big part of filters’ effectiveness will come down to using a number of them at the same time, letting the filters interact to produce the best results

  • live filtering updates. Live update for filtering UIs is great because the user gets to immediately see the changed results they are getting

  • include a ‘Clear all’ interaction. Let the users clear all applied filters with one click to action

  • show the number of results. Another key element in communicating feedback is to display the number of results. This provides users with feedback as to how effective their input was to reduce the result list and save time

  • make Important filters easily found. Users often do not reach useful filters because they are hidden at the bottom of a long menu. Filters at the top of the menu are the most used ones

Don’ts

Do not use live filtering updates

  • on mobile devices. Their screens are simply too small to pack the results, filters, and the live update feedback, without a visual overload

  • when handling a lot of data. For users doing a lot of research, having to wait for the results to update after each individual filter would be simply unbearable

In this case let the user batch their filters and click on an apply button before any actual updating takes place.

- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Search/Searchbox/index.html b/docs/docs/webdev/Components/Search/Searchbox/index.html index b8245094e7..09032b5c55 100644 --- a/docs/docs/webdev/Components/Search/Searchbox/index.html +++ b/docs/docs/webdev/Components/Search/Searchbox/index.html @@ -5,13 +5,13 @@ Searchbox | EEA Design System - +

Searchbox

Search lets users assert independence from websites' attempt to direct how they use it. Therefore, many users go straight to the homepage search function.

Search is also users' escape hatch when they are stuck in navigation. When they cannot find a reasonable place to go next, they often turn to the site's search function. This is why you should make search available from every page on the site; you cannot predict where users will be when they decide they are lost.

Do's

  • use placeholder text. Placeholder text provides context as to what can be searched and describes the action of the input

  • use a magnifying glass icon. The magnifying glass is universally recognized as a symbol for search and one which users can easily identify

  • provide a button to submit search queries. Inputs should be accessible. Ensure users can return results using their keyboard as well as clicking a button or the magnifying glass icon

  • consider the search icon position. In most cases, it is beneficial to place the Icon to the right of placeholder text. This allows the Icon to act as the submit button and makes more sense hierarchically as queries are entered first, and results returned after

  • use input widths which are appropriate for the typical query length. The width of the Input field should be wide enough to contain the typical search query. If an Input field is too narrow, it results in scrolling and decreases usability. It is recommended to use a minimum width of 27 characters

- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Search/Suggestions/index.html b/docs/docs/webdev/Components/Search/Suggestions/index.html index 99640930bb..d28b8859d0 100644 --- a/docs/docs/webdev/Components/Search/Suggestions/index.html +++ b/docs/docs/webdev/Components/Search/Suggestions/index.html @@ -5,13 +5,13 @@ Suggestions | EEA Design System - +

Suggestions

Auto-suggestion is a powerful tool that reduces data input. Typical users are very poor at query formulation: if they don’t get good results on the first try, later search attempts rarely succeed. When autocomplete suggestions work well, they help the user articulate better search queries.

Usage

  • ensure that auto-suggestions are useful. Poorly designed auto-suggestions can confuse and distract users. Thus, use spelling auto-corrections, recognition of root words, and predictive text in order to improve the tool

  • present less than 10 items in the list of suggestions (and without a scrollbar) so the information doesn’t become overwhelming

  • allow for keyboard navigation for the list of suggestions. Once a user scrolls down past the last item, they should return to the top of the list. The Esc key should allow users to exit the list

  • highlight differences between the inputted information and suggested information. For example, the input text might have a standard weight, while suggested terms are bolded

- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Segment/index.html b/docs/docs/webdev/Components/Segment/index.html index 2325c5d459..e20bee3d06 100644 --- a/docs/docs/webdev/Components/Segment/index.html +++ b/docs/docs/webdev/Components/Segment/index.html @@ -5,13 +5,13 @@ Segment | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Statistic/index.html b/docs/docs/webdev/Components/Statistic/index.html index 449300eaa3..0f95b9f842 100644 --- a/docs/docs/webdev/Components/Statistic/index.html +++ b/docs/docs/webdev/Components/Statistic/index.html @@ -5,13 +5,13 @@ Statistic | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Tab/index.html b/docs/docs/webdev/Components/Tab/index.html index ea7703e079..d5b37def8d 100644 --- a/docs/docs/webdev/Components/Tab/index.html +++ b/docs/docs/webdev/Components/Tab/index.html @@ -5,14 +5,14 @@ Tab | EEA Design System - +

Tab

The tabs component lets users navigate between related sections of content, displaying one section at a time.

Do’s

Tabs can be useful for users to quickly switch between related information if:

  • your content can be usefully separated into sections
  • the first section is more relevant than the others for most users
  • users will not need to view all the sections at once

Don’ts

Tabs hide content from users and not everyone will notice them or understand how they work. Do not use tabs if your users might need to:

  • read all the content in order, for example, to understand a step-by-step process
  • compare information in different tabs

Having to memorize information and switch between tabs can be frustrating. Test your content without tabs first.

Consider if it is better to:

  • simplify and reduce the amount of content
  • split the content across multiple pages
  • keep the content on a single page, separated by headings
  • use a table of contents to let users navigate quickly to specific sections of content

Tab labels

  • use short tab labels to appear in a single row. In exceptions, they can use a second line if needed, with a tab max width of 250px. Alternatively, you can use scrollable tabs to allow room for longer titles
  • don’t truncate labels unless required, as truncated text can impede comprehension
  • tab labels should consist of 1 – 2 words: Labels on tabs should clearly describe their function or destination within 2 words at most. Constraining yourself to 1 – 2 words will also help you in thinking more about selecting the best words for your tab labels.
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Table/index.html b/docs/docs/webdev/Components/Table/index.html index 6702655545..b1b97c6964 100644 --- a/docs/docs/webdev/Components/Table/index.html +++ b/docs/docs/webdev/Components/Table/index.html @@ -5,13 +5,13 @@ Table | EEA Design System - +

Table

Tables are used to structure complex data in an organised way that is more user friendly and discoverable.

Do's

  • reduce the table width to fit the content
  • align content left to right within cells
  • use a dash ( - ) in null data cells
  • adjusts the styling to render a small/large table

Don'ts

  • don't spell out numbers
  • don't use colour alone to convey information

When to use

  • use when you want to show structured information, or static data
  • use when you want to help users to compare information

When not to use

  • when you don't have any relationship among content you want to present
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Tags/index.html b/docs/docs/webdev/Components/Tags/index.html index 6a853a5d5d..2d9628378b 100644 --- a/docs/docs/webdev/Components/Tags/index.html +++ b/docs/docs/webdev/Components/Tags/index.html @@ -5,13 +5,13 @@ Tags | EEA Design System - +

Tags

Labels, Tags, or Badges are all types of classification component that help to categorize, organize, and label elements. Tags are used to call attention to new or updated content.

Do's

  • use them to draw attention to new, important content. Tags can focus attention on important content on that might otherwise be missed
  • when needed to filter results with one or more tags
  • to indicate the number of new or unread items within a container. For example, to indicate the number of unread emails within a person’s inbox

Don'ts

  • if your tags aren’t interactive, disable hover, focus, and active styles
  • don’t mix interactive and static tags
  • don’t overdo it. If everything on a page is called out as important, nothing commands unique attention.
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Timeline/index.html b/docs/docs/webdev/Components/Timeline/index.html index 3798ba6a4b..194784cf22 100644 --- a/docs/docs/webdev/Components/Timeline/index.html +++ b/docs/docs/webdev/Components/Timeline/index.html @@ -5,13 +5,13 @@ Timeline | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Visuals/Charts/index.html b/docs/docs/webdev/Components/Visuals/Charts/index.html index ab408ac656..b5e2dedefb 100644 --- a/docs/docs/webdev/Components/Visuals/Charts/index.html +++ b/docs/docs/webdev/Components/Visuals/Charts/index.html @@ -5,13 +5,13 @@ Charts | EEA Design System - +

Charts

Static and Interactive

Data accuracy and integrity come first. Don’t distort or confuse the information for embellishment or partiality. Emphasize clarity and transparency. Reduce cognitive load and focus on what matters. Every action, color, and visual element should support data insights and understanding.

More information can be referenced here https://www.eea.europa.eu/data-and-maps/daviz/learn-more/chart-dos-and-donts

Use the interactive chart if:

  • you want to give the user the possibility to visually filter data

  • you want the user to gain insights before filtering large datasets

Do not use the interactive chart if:

  • you want to visualize data without using it for filtering

  • you are not using the visual filter bar

- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Visuals/Dashboard/index.html b/docs/docs/webdev/Components/Visuals/Dashboard/index.html index 887a54a854..67a3f77991 100644 --- a/docs/docs/webdev/Components/Visuals/Dashboard/index.html +++ b/docs/docs/webdev/Components/Visuals/Dashboard/index.html @@ -5,13 +5,13 @@ Dashboard | EEA Design System - +

Dashboard

A good dashboard design means:

  • information available at the fingertip
  • metrics are clear
  • intuitive design
  • customizable
  • summarized data

Do’s

  • reside on a single screen
  • support the aims and objectives of the intended user
  • show what the underlying data means:  This can be done through adequate labelling, logical grouping of related visualisations and the use of clear statistical and verbal descriptions
  • summarise data and provide a means to dig deeper into the data 
  • make optimal use of the available space: Double your margins

Don’ts

  • don’t hide information or rely on interactions too much
  • don’t flood the user with data
- + \ No newline at end of file diff --git a/docs/docs/webdev/Components/Visuals/Maps/index.html b/docs/docs/webdev/Components/Visuals/Maps/index.html index 8381b276e7..fc1adf355c 100644 --- a/docs/docs/webdev/Components/Visuals/Maps/index.html +++ b/docs/docs/webdev/Components/Visuals/Maps/index.html @@ -5,13 +5,13 @@ Maps | EEA Design System - +

Maps

Static

There are five main design principles in map design.

  • legibility
  • visual contrast
  • figure-ground organization
  • hierarchical organization, and
  • balance

Together these principles form a system for seeing and understanding the relative importance of the content in the map and on the page.

What are the qualities of a good map?

  • clear idea of what the map is trying to demonstrate
  • easy to interpret legend or key
  • good use of symbols to demonstrate a clear point
  • good sources/metadata
  • clear features not overcrowded

Styles

  • do not use underlined text! This is difficult for low-vision users to read and indicates a possible hyperlink
  • italics should be used as little as possible, for water labels and short labels only
  • bolding of fonts is a good way to call out features, but avoid it for continuous, readable text
  • although ALL CAPS labels stand out, they are harder to read and should be used sparingly

Map Objects

  • avoid overlapping points or annotations, when possible. Try to place them offset from a line
  • there should be visible whitespace between symbols; touching symbols blend together for users with low vision
  • there should be a 2x size difference in levels of information

Colors

  • use a limited color palette. Limited color palette works the best for all UIs, and map UI is not an exception. It’s much easier to create visual harmony with a limited color palette. You should use between 10 to 12 colors for a full-body color palette, depending on the complexity of your map. Choose colors for individuals with visual impairments such as color-blindness (i.e. don’t use red-green color schemes)
  • try to use the same hue for similar features. For example, features related to transportation (bus stops, railway stations, etc.) should share the same hue. The same hue will help users to decode visual elements without reading text, and this will help you to create a more cohesive UI.
  • always consider accessibility. Many people have limited color vision, so you also need to take this into account when selecting colors to ensure that you have a proper contrast ratio

Text

  • choose fonts that have a variety of styles, such as bold, extra bold, italic, bold italic light, etc to differentiate between different kinds of features on your map
  • use one version of fonts for the map body and one for the explainer text outside the map

Interactive Maps

Interactive maps are high risk, high reward. Highly interactive maps can be too difficult for new users, yet they can also allow users to learn and explore at their own pace. It is always important to test designs on multiple people with varying degrees of technical expertise to see how they interact differently with the layout. Interactive map design should reflect what the cartographer is trying to convey (beauty vs. function) and never sacrifice visual hierarchy or great styling for interactivity.

Tips for designing effective interactive maps:

  • simplify the interface
  • panels should be the minimum possible size so they don’t clutter the space
  • don’t innovate to the point where users don’t know what to do
  • use panel opacity and margins to help them blend with your basemap and look cohesive
  • leave space for the maps to be used on mobile devices. This means avoiding permanent panels

Pop-ups and markers

  • keep pop-ups concise
  • only one pop-up on the screen at a time (generally)
  • cluster markers for better readability
  • use a legend when you have multiple types of markers
  • remove unnecessary padding and margins from popups
  • use a slight shadow to “lift” pop-ups off the map
- + \ No newline at end of file diff --git a/docs/docs/webdev/Guidelines/colours/index.html b/docs/docs/webdev/Guidelines/colours/index.html index 87adf73903..f7831c7df2 100644 --- a/docs/docs/webdev/Guidelines/colours/index.html +++ b/docs/docs/webdev/Guidelines/colours/index.html @@ -5,14 +5,14 @@ Colours | EEA Design System - +

Colours

Communication is key

Although we value an aesthetically pleasing use of colour, clear communication is our focus. We use colours to support the purpose of the content, communicating things like hierarchy of information, interactive states, and the difference between distinct elements.

Accessibility

Accessibility is crucial and AA colour contrast must be achieved. It is up to the designer to ensure these standards are met but please refer to the accessibility guide for support. The colour system is designed to generate themes that meet WCAG 2.1 compliant contrast ratios. This makes things easier to find, identify, and interact with. It also makes the whole experience more accessible for visitors who are colour blind or who have low vision. However, you should never convey information using colour alone.

Legend:
AA: Compatible with WCAG AA requirements
AAA: Compatible with WCAG AAA requirements
AA L: Compatible with WCAG AA requirements only for Large text (WCAG defines large text as text that is 18pt and larger, or 14pt and larger if it is bold.)

You can find more on WCAG requirements here

Brand Colours

This colour should be eye-catching but not harsh. It can be liberally applied to your layout as its main identity. A primary colour is the colour displayed most frequently across your screens and components. Brand colours are extracted from the EEA logo in order to help users to easily identify the brand.

#007B6C
EEA GREEN
#004B7F
EEA BLUE

Shades

#C8FFF8
#A0E5DC
#78CAC0
#50B0A4
#289588
#007B6C
#005248

#A0D7FF
#47B3FF
#0A99FF
#0083E0
#006BB8
#004B7F
#003052

Supplementary colours

These colours highlight or complement the primary colours. These are to be used sparingly to make the UI elements stand out. These colours can be used together together or separately.

#3D5265
AAA
#F9F9F9
AAA
ΕΕΑ main background colour is white but the secondary colours can also be used as background to compliment text elements or components.

You can use #F9F9F9 as background with #3D5265 text (10.44:1 AAA) or, you can use #3D5265 background with #F9F9F9 text (10.44:1 AAA)

Shades

#DAE8F4
#ACCAE5
#87A7C3
#6989A5
#4C677F
#3D5265
#2E3E4C

#FFFFFF
#F9F9F9
#E6E7E8
#BCBEC0
#747678
#323232
#000000

Core colours

#3D5265
Text colour
#FFFFFF
Background colour
#007B6C
Highlight
(EEA Green)
#006BB8
Default
#004B7F
Hover
#753AAD
Visited
#003052
Active

Discrete colours

#3D5265
Usually used with a small text style
#323232
Used with a background

State colours

These are the colours that communicate purpose. They help users convey messages. For example, Green has a positive connotation. We use Green to convey success, confirmation messages, etc.

#B83230
ERROR
#FF9933
WARNING
#007B6C
SUCCESS
#004B7F
INFO









Thematic Platforms

info

All thematic platforms use EEA Supplementary colours, state colours, link colours and discrete colours.


Biodiversity

Brand Colours

This colour should be eye-catching but not harsh. It can be liberally applied to your layout as its main identity. A primary colour is the colour displayed most frequently across your screens and components. Brand colours are extracted from the Biodiversity logo in order to help users to easily identify the brand.

#289588
#FAC50D

Shades

#C8FFF8
#A0E5DC
#78CAC0
#50B0A4
#289588
#007B6C
#005248

#FEF6CD
#FBEC9B
#FAD936
#FAC50D
#FDAF20
#FF9933
#C35527

Core colours

#3D5265
Text colour
#FFFFFF
Background colour
#005248
Elements
#289588
Highlight










Forest Information System

Brand Colours

This colour should be eye-catching but not harsh. It can be liberally applied to your layout as its main identity. A primary colour is the colour displayed most frequently across your screens and components. Brand colours are extracted from the Forest information system logo in order to help users to easily identify the brand.

#007B6C
#005248

Shades

#C8FFF8
#A0E5DC
#78CAC0
#50B0A4
#289588
#007B6C
#005248

Core colours

#3D5265
Text colour
#FFFFFF
Background colour
#005248
Elements
#007B6C
Highlight










Wise Freshwater

Brand Colours

This colour should be eye-catching but not harsh. It can be liberally applied to your layout as its main identity. A primary colour is the colour displayed most frequently across your screens and components. Brand colours are extracted from the Wise Freshwater logo in order to help users to easily identify the brand.

#0083E0
#004B7F

Shades

#A0D7FF
#47B3FF
#0A99FF
#0083E0
#006BB8
#004B7F
#003052

Core colours

#3D5265
Text colour
#FFFFFF
Background colour
#0083E0
Elements
#004B7F
Highlight










Wise Marine

Brand Colours

This colour should be eye-catching but not harsh. It can be liberally applied to your layout as its main identity. A primary colour is the colour displayed most frequently across your screens and components. Brand colours are extracted from the Wise Marine logo in order to help users to easily identify the brand.

#004B7F
#0083E0

Shades

#A0D7FF
#47B3FF
#0A99FF
#0083E0
#006BB8
#004B7F
#003052

Core colours

#3D5265
Text colour
#FFFFFF
Background colour
#0083E0
Elements
#004B7F
Highlight









EEA complete colour palette

Not all colours have to be used - sometimes a simple colour scheme works best. Accessible text and background colour combinations are included and marked with their accesibility level.

#FFF6EC
brown-0
#FFEDD8
brown-1
#E7BC91
brown-2
#BC8A5F
brown-3
#8B5E34
brown-4
#603808
brown-5
#3D2201
brown-6

#EFEBF2
purple-0
#DFD6E7
purple-1
#BEADCE
purple-2
#9E84B6
purple-3
#753AAD
purple-4
#5C3285
purple-5
#3C096C
purple-6
#FBEEF8
red-0
#F6DDF0
red-1
#E7B2C0
red-2
#D78890
red-3
#C65B59
red-4
#B83230
red-5
#5C1918
red-6

#FEF6CD
yellow-0
#FBEC9B
yellow-1
#FAD936
yellow-2
#FAC50D
yellow-3
#FDAF20
yellow-4
#FF9933
yellow-5
#C35527
yellow-6
#C8FFF8
green-0
#A0E5DC
green-1
#78CAC0
green-2
#50B0A4
green-3
#289588
green-4
#007B6C
green-5
#005248
green-6

#A0D7FF
blue-0
#47B3FF
blue-1
#0A99FF
blue-2
#0083E0
blue-3
#006BB8
blue-4
#004B7F
blue-5
#003052
blue-6
#DAE8F4
blue-grey-0
#ACCAE5
blue-grey-1
#87A7C3
blue-grey-2
#6989A5
blue-grey-3
#4C677F
blue-grey-4
#3D5265
blue-grey-5
#2E3E4C
blue-grey-6

#FFFFFF
grey-0
#F9F9F9
grey-1
#E6E7E8
grey-2
#BCBEC0
grey-3
#747678
grey-4
#323232
grey-5
#000000
grey-6

Tools for creating colour palettes

You can use the following tools for creating colour wheels and additional shades for every main colour at each of EEA's network sites.

https://color.adobe.com/create/color-wheel

https://coolors.co/

Colours for maps

For optional creation of additional colour shades to use in maps and charts you can use the following tools.

https://colorbrewer2.org

https://carto.com/carto-colors/

- + \ No newline at end of file diff --git a/docs/docs/webdev/Guidelines/iconography/index.html b/docs/docs/webdev/Guidelines/iconography/index.html index 042f409ccd..686bdca4c8 100644 --- a/docs/docs/webdev/Guidelines/iconography/index.html +++ b/docs/docs/webdev/Guidelines/iconography/index.html @@ -5,14 +5,14 @@ Iconography | EEA Design System - +

Iconography

In our websites we use the Remix icon set

Remix Icon is a set of open-source neutral-style system symbols elaborately crafted for designers and developers. All of the icons are free for both personal and commercial use. (http://remixicon.com/)

We use icons to help our users understand the core idea of the content quickly or enhance the aesthetic appeal of the interface.

Consistency is key with icons, and all your icons should be the same size when you build them. Our grid is based on 8s, you'd want to build at 16, 24, or 32.

Choose a common size to build all your icons to, and then allow your engineers to scale to other sizes that might be needed by other designers. You don't want to build the same icon over and over at a multitude of sizes.

For product icons, use 1 color. Anything more than that and your components are going to become too complex and difficult for other designers to leverage. Anything with 3 or more colors is an illustration, not an icon.

Grids

The pixel grid is the fundamental grid that uses the smallest increment: a pixel. When building icons, you always want to align objects to the pixel grid, especially straight lines. But, you can build other shapes on the pixel grid. You want to build things on the pixel grid, not just because it will render more nicely, but because it makes your life easier. Spacing things evenly is much easier when you're using a grid. It helps you stay consistent with your placement, and overall will make your icons look better.

The optical grid helps us figure out where the center of mass of the icon is, as well as how large it is perceived by the human eye. Circles and curved objects take up less visual space than squares. It is best to put your icons in a fixed size container so that they’re all identical dimensions when exported. Adding this intrinsic padding supports the optical/perceptive weighting without additional effort in dev later.

In building the optical grid, you should give padding at the edge that’s equal to your stroke weight, or possibly double if using a 1px stroke.

Strokes and fills

Making sure our icons are all styled the same way is very important. We might have use cases for applying a fill to show something is selected, for instance, but you definitely want to create a set with one style, and possibly create the other variant.

Typically, filled icons have higher recognizability. Stroked icons give us great ability to create tiny details. When choosing which style is more appropriate, you should also consider your overall brand.

If you're going to create stroked icons, strokes all need to be the same weight. The space between strokes not be thinner than your stroke weight.

Don’ts

When possible, avoid type in icons. Icons are meant to be global. If you do need type (for instance, currency symbols), draw it yourself, rather than using a typeface.

Icon set

ri-home-line

ri-home-fill

ri-home-2-line

ri-home-2-fill

ri-home-3-line

ri-home-3-fill

ri-home-4-line

ri-home-4-fill

ri-home-5-line

ri-home-5-fill

ri-home-6-line

ri-home-6-fill

ri-home-7-line

ri-home-7-fill

ri-home-8-line

ri-home-8-fill

ri-home-gear-line

ri-home-gear-fill

ri-home-wifi-line

ri-home-wifi-fill

ri-home-smile-line

ri-home-smile-fill

ri-home-smile-2-line

ri-home-smile-2-fill

ri-home-heart-line

ri-home-heart-fill

ri-building-line

ri-building-fill

ri-building-2-line

ri-building-2-fill

ri-building-3-line

ri-building-3-fill

ri-building-4-line

ri-building-4-fill

ri-hotel-line

ri-hotel-fill

ri-community-line

ri-community-fill

ri-government-line

ri-government-fill

ri-bank-line

ri-bank-fill

ri-store-line

ri-store-fill

ri-store-2-line

ri-store-2-fill

ri-store-3-line

ri-store-3-fill

ri-hospital-line

ri-hospital-fill

ri-ancient-gate-line

ri-ancient-gate-fill

ri-ancient-pavilion-line

ri-ancient-pavilion-fill

Buildings

ri-mail-line

ri-mail-fill

ri-mail-open-line

ri-mail-open-fill

ri-mail-send-line

ri-mail-send-fill

ri-mail-unread-line

ri-mail-unread-fill

ri-mail-add-line

ri-mail-add-fill

ri-mail-check-line

ri-mail-check-fill

ri-mail-close-line

ri-mail-close-fill

ri-mail-download-line

ri-mail-download-fill

ri-mail-forbid-line

ri-mail-forbid-fill

ri-mail-lock-line

ri-mail-lock-fill

ri-mail-settings-line

ri-mail-settings-fill

ri-mail-star-line

ri-mail-star-fill

ri-mail-volume-line

ri-mail-volume-fill

ri-inbox-line

ri-inbox-fill

ri-inbox-archive-line

ri-inbox-archive-fill

ri-inbox-unarchive-line

ri-inbox-unarchive-fill

ri-cloud-line

ri-cloud-fill

ri-cloud-off-line

ri-cloud-off-fill

ri-attachment-line

ri-attachment-fill

ri-profile-line

ri-profile-fill

ri-archive-line

ri-archive-fill

ri-archive-drawer-line

ri-archive-drawer-fill

ri-at-line

ri-at-fill

ri-award-line

ri-award-fill

ri-medal-line

ri-medal-fill

ri-medal-2-line

ri-medal-2-fill

ri-bar-chart-line

ri-bar-chart-fill

ri-bar-chart-horizontal-line

ri-bar-chart-horizontal-fill

ri-bar-chart-2-line

ri-bar-chart-2-fill

ri-bar-chart-box-line

ri-bar-chart-box-fill

ri-bar-chart-grouped-line

ri-bar-chart-grouped-fill

ri-bubble-chart-line

ri-bubble-chart-fill

ri-pie-chart-line

ri-pie-chart-fill

ri-pie-chart-2-line

ri-pie-chart-2-fill

ri-pie-chart-box-line

ri-pie-chart-box-fill

ri-donut-chart-line

ri-donut-chart-fill

ri-line-chart-line

ri-line-chart-fill

ri-bookmark-line

ri-bookmark-fill

ri-bookmark-2-line

ri-bookmark-2-fill

ri-bookmark-3-line

ri-bookmark-3-fill

ri-briefcase-line

ri-briefcase-fill

ri-briefcase-2-line

ri-briefcase-2-fill

ri-briefcase-3-line

ri-briefcase-3-fill

ri-briefcase-4-line

ri-briefcase-4-fill

ri-briefcase-5-line

ri-briefcase-5-fill

ri-calculator-line

ri-calculator-fill

ri-calendar-line

ri-calendar-fill

ri-calendar-2-line

ri-calendar-2-fill

ri-calendar-event-line

ri-calendar-event-fill

ri-calendar-todo-line

ri-calendar-todo-fill

ri-calendar-check-line

ri-calendar-check-fill

ri-customer-service-line

ri-customer-service-fill

ri-customer-service-2-line

ri-customer-service-2-fill

ri-flag-line

ri-flag-fill

ri-flag-2-line

ri-flag-2-fill

ri-global-line

ri-global-fill

ri-honour-line

ri-honour-fill

ri-links-line

ri-links-fill

ri-printer-line

ri-printer-fill

ri-printer-cloud-line

ri-printer-cloud-fill

ri-record-mail-line

ri-record-mail-fill

ri-reply-line

ri-reply-fill

ri-reply-all-line

ri-reply-all-fill

ri-send-plane-line

ri-send-plane-fill

ri-send-plane-2-line

ri-send-plane-2-fill

ri-projector-line

ri-projector-fill

ri-projector-2-line

ri-projector-2-fill

ri-slideshow-line

ri-slideshow-fill

ri-slideshow-2-line

ri-slideshow-2-fill

ri-slideshow-3-line

ri-slideshow-3-fill

ri-slideshow-4-line

ri-slideshow-4-fill

ri-window-line

ri-window-fill

ri-window-2-line

ri-window-2-fill

ri-stack-line

ri-stack-fill

ri-service-line

ri-service-fill

ri-registered-line

ri-registered-fill

ri-trademark-line

ri-trademark-fill

ri-advertisement-line

ri-advertisement-fill

ri-copyleft-line

ri-copyleft-fill

ri-copyright-line

ri-copyright-fill

ri-creative-commons-line

ri-creative-commons-fill

ri-creative-commons-by-line

ri-creative-commons-by-fill

ri-creative-commons-nc-line

ri-creative-commons-nc-fill

ri-creative-commons-nd-line

ri-creative-commons-nd-fill

ri-creative-commons-sa-line

ri-creative-commons-sa-fill

ri-creative-commons-zero-line

ri-creative-commons-zero-fill

Business

ri-chat-1-line

ri-chat-1-fill

ri-chat-2-line

ri-chat-2-fill

ri-chat-3-line

ri-chat-3-fill

ri-chat-4-line

ri-chat-4-fill

ri-message-line

ri-message-fill

ri-message-2-line

ri-message-2-fill

ri-message-3-line

ri-message-3-fill

ri-chat-check-line

ri-chat-check-fill

ri-chat-delete-line

ri-chat-delete-fill

ri-chat-forward-line

ri-chat-forward-fill

ri-chat-upload-line

ri-chat-upload-fill

ri-chat-download-line

ri-chat-download-fill

ri-chat-new-line

ri-chat-new-fill

ri-chat-settings-line

ri-chat-settings-fill

ri-chat-smile-line

ri-chat-smile-fill

ri-chat-smile-2-line

ri-chat-smile-2-fill

ri-chat-smile-3-line

ri-chat-smile-3-fill

ri-chat-heart-line

ri-chat-heart-fill

ri-chat-off-line

ri-chat-off-fill

ri-feedback-line

ri-feedback-fill

ri-discuss-line

ri-discuss-fill

ri-question-answer-line

ri-question-answer-fill

ri-questionnaire-line

ri-questionnaire-fill

ri-video-chat-line

ri-video-chat-fill

ri-chat-voice-line

ri-chat-voice-fill

ri-chat-quote-line

ri-chat-quote-fill

ri-chat-follow-up-line

ri-chat-follow-up-fill

ri-chat-poll-line

ri-chat-poll-fill

ri-chat-history-line

ri-chat-history-fill

ri-chat-private-line

ri-chat-private-fill

Communication

ri-pencil-line

ri-pencil-fill

ri-edit-line

ri-edit-fill

ri-edit-2-line

ri-edit-2-fill

ri-ball-pen-line

ri-ball-pen-fill

ri-quill-pen-line

ri-quill-pen-fill

ri-pen-nib-line

ri-pen-nib-fill

ri-ink-bottle-line

ri-ink-bottle-fill

ri-mark-pen-line

ri-mark-pen-fill

ri-markup-line

ri-markup-fill

ri-edit-box-line

ri-edit-box-fill

ri-edit-circle-line

ri-edit-circle-fill

ri-sip-line

ri-sip-fill

ri-brush-line

ri-brush-fill

ri-brush-2-line

ri-brush-2-fill

ri-brush-3-line

ri-brush-3-fill

ri-brush-4-line

ri-brush-4-fill

ri-paint-brush-line

ri-paint-brush-fill

ri-contrast-line

ri-contrast-fill

ri-contrast-2-line

ri-contrast-2-fill

ri-drop-line

ri-drop-fill

ri-blur-off-line

ri-blur-off-fill

ri-contrast-drop-line

ri-contrast-drop-fill

ri-contrast-drop-2-line

ri-contrast-drop-2-fill

ri-compasses-line

ri-compasses-fill

ri-compasses-2-line

ri-compasses-2-fill

ri-scissors-line

ri-scissors-fill

ri-scissors-cut-line

ri-scissors-cut-fill

ri-scissors-2-line

ri-scissors-2-fill

ri-slice-line

ri-slice-fill

ri-eraser-line

ri-eraser-fill

ri-ruler-line

ri-ruler-fill

ri-ruler-2-line

ri-ruler-2-fill

ri-pencil-ruler-line

ri-pencil-ruler-fill

ri-pencil-ruler-2-line

ri-pencil-ruler-2-fill

ri-t-box-line

ri-t-box-fill

ri-input-method-line

ri-input-method-fill

ri-artboard-line

ri-artboard-fill

ri-artboard-2-line

ri-artboard-2-fill

ri-crop-line

ri-crop-fill

ri-crop-2-line

ri-crop-2-fill

ri-screenshot-line

ri-screenshot-fill

ri-screenshot-2-line

ri-screenshot-2-fill

ri-drag-move-line

ri-drag-move-fill

ri-drag-move-2-line

ri-drag-move-2-fill

ri-focus-line

ri-focus-fill

ri-focus-2-line

ri-focus-2-fill

ri-focus-3-line

ri-focus-3-fill

ri-paint-line

ri-paint-fill

ri-palette-line

ri-palette-fill

ri-pantone-line

ri-pantone-fill

ri-shape-line

ri-shape-fill

ri-shape-2-line

ri-shape-2-fill

ri-magic-line

ri-magic-fill

ri-anticlockwise-line

ri-anticlockwise-fill

ri-anticlockwise-2-line

ri-anticlockwise-2-fill

ri-clockwise-line

ri-clockwise-fill

ri-clockwise-2-line

ri-clockwise-2-fill

ri-hammer-line

ri-hammer-fill

ri-tools-line

ri-tools-fill

ri-drag-drop-line

ri-drag-drop-fill

ri-table-line

ri-table-fill

ri-table-alt-line

ri-table-alt-fill

ri-layout-line

ri-layout-fill

ri-layout-2-line

ri-layout-2-fill

ri-layout-3-line

ri-layout-3-fill

ri-layout-4-line

ri-layout-4-fill

ri-layout-5-line

ri-layout-5-fill

ri-layout-6-line

ri-layout-6-fill

ri-layout-column-line

ri-layout-column-fill

ri-layout-row-line

ri-layout-row-fill

ri-layout-top-line

ri-layout-top-fill

ri-layout-right-line

ri-layout-right-fill

ri-layout-bottom-line

ri-layout-bottom-fill

ri-layout-left-line

ri-layout-left-fill

ri-layout-top-2-line

ri-layout-top-2-fill

ri-layout-right-2-line

ri-layout-right-2-fill

ri-layout-bottom-2-line

ri-layout-bottom-2-fill

ri-layout-left-2-line

ri-layout-left-2-fill

ri-layout-grid-line

ri-layout-grid-fill

ri-layout-masonry-line

ri-layout-masonry-fill

ri-collage-line

ri-collage-fill

ri-grid-line

ri-grid-fill

Design

ri-bug-line

ri-bug-fill

ri-bug-2-line

ri-bug-2-fill

ri-code-line

ri-code-fill

ri-code-s-line

ri-code-s-fill

ri-code-s-slash-line

ri-code-s-slash-fill

ri-code-box-line

ri-code-box-fill

ri-terminal-box-line

ri-terminal-box-fill

ri-terminal-line

ri-terminal-fill

ri-terminal-window-line

ri-terminal-window-fill

ri-parentheses-line

ri-parentheses-fill

ri-brackets-line

ri-brackets-fill

ri-braces-line

ri-braces-fill

ri-command-line

ri-command-fill

ri-cursor-line

ri-cursor-fill

ri-git-commit-line

ri-git-commit-fill

ri-git-pull-request-line

ri-git-pull-request-fill

ri-git-merge-line

ri-git-merge-fill

ri-git-branch-line

ri-git-branch-fill

ri-git-repository-line

ri-git-repository-fill

ri-git-repository-commits-line

ri-git-repository-commits-fill

ri-git-repository-private-line

ri-git-repository-private-fill

ri-html5-line

ri-html5-fill

ri-css3-line

ri-css3-fill

Development

ri-tv-line

ri-tv-fill

ri-tv-2-line

ri-tv-2-fill

ri-computer-line

ri-computer-fill

ri-mac-line

ri-mac-fill

ri-macbook-line

ri-macbook-fill

ri-cellphone-line

ri-cellphone-fill

ri-smartphone-line

ri-smartphone-fill

ri-tablet-line

ri-tablet-fill

ri-device-line

ri-device-fill

ri-phone-line

ri-phone-fill

ri-database-line

ri-database-fill

ri-database-2-line

ri-database-2-fill

ri-server-line

ri-server-fill

ri-hard-drive-line

ri-hard-drive-fill

ri-hard-drive-2-line

ri-hard-drive-2-fill

ri-install-line

ri-install-fill

ri-uninstall-line

ri-uninstall-fill

ri-save-line

ri-save-fill

ri-save-2-line

ri-save-2-fill

ri-save-3-line

ri-save-3-fill

ri-sd-card-line

ri-sd-card-fill

ri-sd-card-mini-line

ri-sd-card-mini-fill

ri-sim-card-line

ri-sim-card-fill

ri-sim-card-2-line

ri-sim-card-2-fill

ri-dual-sim-1-line

ri-dual-sim-1-fill

ri-dual-sim-2-line

ri-dual-sim-2-fill

ri-u-disk-line

ri-u-disk-fill

ri-battery-line

ri-battery-fill

ri-battery-charge-line

ri-battery-charge-fill

ri-battery-low-line

ri-battery-low-fill

ri-battery-2-line

ri-battery-2-fill

ri-battery-2-charge-line

ri-battery-2-charge-fill

ri-battery-saver-line

ri-battery-saver-fill

ri-battery-share-line

ri-battery-share-fill

ri-cast-line

ri-cast-fill

ri-airplay-line

ri-airplay-fill

ri-cpu-line

ri-cpu-fill

ri-gradienter-line

ri-gradienter-fill

ri-keyboard-line

ri-keyboard-fill

ri-keyboard-box-line

ri-keyboard-box-fill

ri-mouse-line

ri-mouse-fill

ri-sensor-line

ri-sensor-fill

ri-router-line

ri-router-fill

ri-radar-line

ri-radar-fill

ri-gamepad-line

ri-gamepad-fill

ri-remote-control-line

ri-remote-control-fill

ri-remote-control-2-line

ri-remote-control-2-fill

ri-device-recover-line

ri-device-recover-fill

ri-hotspot-line

ri-hotspot-fill

ri-phone-find-line

ri-phone-find-fill

ri-phone-lock-line

ri-phone-lock-fill

ri-rotate-lock-line

ri-rotate-lock-fill

ri-restart-line

ri-restart-fill

ri-shut-down-line

ri-shut-down-fill

ri-fingerprint-line

ri-fingerprint-fill

ri-fingerprint-2-line

ri-fingerprint-2-fill

ri-barcode-line

ri-barcode-fill

ri-barcode-box-line

ri-barcode-box-fill

ri-qr-code-line

ri-qr-code-fill

ri-qr-scan-line

ri-qr-scan-fill

ri-qr-scan-2-line

ri-qr-scan-2-fill

ri-scan-line

ri-scan-fill

ri-scan-2-line

ri-scan-2-fill

ri-rss-line

ri-rss-fill

ri-gps-line

ri-gps-fill

ri-base-station-line

ri-base-station-fill

ri-bluetooth-line

ri-bluetooth-fill

ri-bluetooth-connect-line

ri-bluetooth-connect-fill

ri-wifi-line

ri-wifi-fill

ri-wifi-off-line

ri-wifi-off-fill

ri-signal-wifi-line

ri-signal-wifi-fill

ri-signal-wifi-1-line

ri-signal-wifi-1-fill

ri-signal-wifi-2-line

ri-signal-wifi-2-fill

ri-signal-wifi-3-line

ri-signal-wifi-3-fill

ri-signal-wifi-error-line

ri-signal-wifi-error-fill

ri-signal-wifi-off-line

ri-signal-wifi-off-fill

ri-wireless-charging-line

ri-wireless-charging-fill

ri-dashboard-2-line

ri-dashboard-2-fill

ri-dashboard-3-line

ri-dashboard-3-fill

ri-usb-line

ri-usb-fill

Device

ri-file-line

ri-file-fill

ri-file-2-line

ri-file-2-fill

ri-file-3-line

ri-file-3-fill

ri-file-4-line

ri-file-4-fill

ri-sticky-note-line

ri-sticky-note-fill

ri-sticky-note-2-line

ri-sticky-note-2-fill

ri-file-edit-line

ri-file-edit-fill

ri-draft-line

ri-draft-fill

ri-file-paper-line

ri-file-paper-fill

ri-file-paper-2-line

ri-file-paper-2-fill

ri-file-text-line

ri-file-text-fill

ri-file-list-line

ri-file-list-fill

ri-file-list-2-line

ri-file-list-2-fill

ri-file-list-3-line

ri-file-list-3-fill

ri-bill-line

ri-bill-fill

ri-file-copy-line

ri-file-copy-fill

ri-file-copy-2-line

ri-file-copy-2-fill

ri-clipboard-line

ri-clipboard-fill

ri-survey-line

ri-survey-fill

ri-article-line

ri-article-fill

ri-newspaper-line

ri-newspaper-fill

ri-file-zip-line

ri-file-zip-fill

ri-file-mark-line

ri-file-mark-fill

ri-task-line

ri-task-fill

ri-todo-line

ri-todo-fill

ri-book-line

ri-book-fill

ri-book-mark-line

ri-book-mark-fill

ri-book-2-line

ri-book-2-fill

ri-book-3-line

ri-book-3-fill

ri-book-open-line

ri-book-open-fill

ri-book-read-line

ri-book-read-fill

ri-contacts-book-line

ri-contacts-book-fill

ri-contacts-book-2-line

ri-contacts-book-2-fill

ri-contacts-book-upload-line

ri-contacts-book-upload-fill

ri-booklet-line

ri-booklet-fill

ri-file-code-line

ri-file-code-fill

ri-file-pdf-line

ri-file-pdf-fill

ri-file-word-line

ri-file-word-fill

ri-file-ppt-line

ri-file-ppt-fill

ri-file-excel-line

ri-file-excel-fill

ri-file-word-2-line

ri-file-word-2-fill

ri-file-ppt-2-line

ri-file-ppt-2-fill

ri-file-excel-2-line

ri-file-excel-2-fill

ri-file-hwp-line

ri-file-hwp-fill

ri-keynote-line

ri-keynote-fill

ri-numbers-line

ri-numbers-fill

ri-pages-line

ri-pages-fill

ri-file-search-line

ri-file-search-fill

ri-file-add-line

ri-file-add-fill

ri-file-reduce-line

ri-file-reduce-fill

ri-file-settings-line

ri-file-settings-fill

ri-file-upload-line

ri-file-upload-fill

ri-file-transfer-line

ri-file-transfer-fill

ri-file-download-line

ri-file-download-fill

ri-file-lock-line

ri-file-lock-fill

ri-file-chart-line

ri-file-chart-fill

ri-file-chart-2-line

ri-file-chart-2-fill

ri-file-music-line

ri-file-music-fill

ri-file-gif-line

ri-file-gif-fill

ri-file-forbid-line

ri-file-forbid-fill

ri-file-info-line

ri-file-info-fill

ri-file-warning-line

ri-file-warning-fill

ri-file-unknow-line

ri-file-unknow-fill

ri-file-user-line

ri-file-user-fill

ri-file-shield-line

ri-file-shield-fill

ri-file-shield-2-line

ri-file-shield-2-fill

ri-file-damage-line

ri-file-damage-fill

ri-file-history-line

ri-file-history-fill

ri-file-shred-line

ri-file-shred-fill

ri-file-cloud-line

ri-file-cloud-fill

ri-folder-line

ri-folder-fill

ri-folder-2-line

ri-folder-2-fill

ri-folder-3-line

ri-folder-3-fill

ri-folder-4-line

ri-folder-4-fill

ri-folder-5-line

ri-folder-5-fill

ri-folders-line

ri-folders-fill

ri-folder-add-line

ri-folder-add-fill

ri-folder-reduce-line

ri-folder-reduce-fill

ri-folder-settings-line

ri-folder-settings-fill

ri-folder-upload-line

ri-folder-upload-fill

ri-folder-transfer-line

ri-folder-transfer-fill

ri-folder-download-line

ri-folder-download-fill

ri-folder-lock-line

ri-folder-lock-fill

ri-folder-chart-line

ri-folder-chart-fill

ri-folder-chart-2-line

ri-folder-chart-2-fill

ri-folder-music-line

ri-folder-music-fill

ri-folder-forbid-line

ri-folder-forbid-fill

ri-folder-info-line

ri-folder-info-fill

ri-folder-warning-line

ri-folder-warning-fill

ri-folder-unknow-line

ri-folder-unknow-fill

ri-folder-user-line

ri-folder-user-fill

ri-folder-shield-line

ri-folder-shield-fill

ri-folder-shield-2-line

ri-folder-shield-2-fill

ri-folder-shared-line

ri-folder-shared-fill

ri-folder-received-line

ri-folder-received-fill

ri-folder-open-line

ri-folder-open-fill

ri-folder-keyhole-line

ri-folder-keyhole-fill

ri-folder-zip-line

ri-folder-zip-fill

ri-folder-history-line

ri-folder-history-fill

ri-markdown-line

ri-markdown-fill

Document

ri-bold

ri-italic

ri-heading

ri-text

ri-font-color

ri-font-size

ri-font-size-2

ri-underline

ri-emphasis

ri-emphasis-cn

ri-strikethrough

ri-strikethrough-2

ri-format-clear

ri-align-left

ri-align-center

ri-align-right

ri-align-justify

ri-align-top

ri-align-vertically

ri-align-bottom

ri-list-check

ri-list-check-2

ri-list-ordered

ri-list-unordered

ri-indent-decrease

ri-indent-increase

ri-line-height

ri-text-spacing

ri-text-wrap

ri-attachment-2

ri-link

ri-link-unlink

ri-link-m

ri-link-unlink-m

ri-separator

ri-space

ri-page-separator

ri-code-view

ri-double-quotes-l

ri-double-quotes-r

ri-single-quotes-l

ri-single-quotes-r

ri-table-2

ri-subscript

ri-subscript-2

ri-superscript

ri-superscript-2

ri-paragraph

ri-text-direction-l

ri-text-direction-r

ri-functions

ri-omega

ri-hashtag

ri-asterisk

ri-question-mark

ri-translate

ri-translate-2

ri-a-b

ri-english-input

ri-pinyin-input

ri-wubi-input

ri-input-cursor-move

ri-number-1

ri-number-2

ri-number-3

ri-number-4

ri-number-5

ri-number-6

ri-number-7

ri-number-8

ri-number-9

ri-number-0

ri-sort-asc

ri-sort-desc

ri-bring-forward

ri-send-backward

ri-bring-to-front

ri-send-to-back

ri-h-1

ri-h-2

ri-h-3

ri-h-4

ri-h-5

ri-h-6

ri-insert-column-left

ri-insert-column-right

ri-insert-row-top

ri-insert-row-bottom

ri-delete-column

ri-delete-row

ri-merge-cells-horizontal

ri-merge-cells-vertical

ri-split-cells-horizontal

ri-split-cells-vertical

ri-flow-chart

ri-mind-map

ri-node-tree

ri-organization-chart

ri-rounded-corner

Editor

ri-wallet-line

ri-wallet-fill

ri-wallet-2-line

ri-wallet-2-fill

ri-wallet-3-line

ri-wallet-3-fill

ri-bank-card-line

ri-bank-card-fill

ri-bank-card-2-line

ri-bank-card-2-fill

ri-secure-payment-line

ri-secure-payment-fill

ri-refund-line

ri-refund-fill

ri-refund-2-line

ri-refund-2-fill

ri-safe-line

ri-safe-fill

ri-safe-2-line

ri-safe-2-fill

ri-price-tag-line

ri-price-tag-fill

ri-price-tag-2-line

ri-price-tag-2-fill

ri-price-tag-3-line

ri-price-tag-3-fill

ri-ticket-line

ri-ticket-fill

ri-ticket-2-line

ri-ticket-2-fill

ri-coupon-line

ri-coupon-fill

ri-coupon-2-line

ri-coupon-2-fill

ri-coupon-3-line

ri-coupon-3-fill

ri-coupon-4-line

ri-coupon-4-fill

ri-coupon-5-line

ri-coupon-5-fill

ri-shopping-bag-line

ri-shopping-bag-fill

ri-shopping-bag-2-line

ri-shopping-bag-2-fill

ri-shopping-bag-3-line

ri-shopping-bag-3-fill

ri-shopping-basket-line

ri-shopping-basket-fill

ri-shopping-basket-2-line

ri-shopping-basket-2-fill

ri-shopping-cart-line

ri-shopping-cart-fill

ri-shopping-cart-2-line

ri-shopping-cart-2-fill

ri-vip-line

ri-vip-fill

ri-vip-crown-line

ri-vip-crown-fill

ri-vip-crown-2-line

ri-vip-crown-2-fill

ri-vip-diamond-line

ri-vip-diamond-fill

ri-trophy-line

ri-trophy-fill

ri-exchange-line

ri-exchange-fill

ri-exchange-box-line

ri-exchange-box-fill

ri-swap-line

ri-swap-fill

ri-swap-box-line

ri-swap-box-fill

ri-exchange-dollar-line

ri-exchange-dollar-fill

ri-exchange-cny-line

ri-exchange-cny-fill

ri-exchange-funds-line

ri-exchange-funds-fill

ri-increase-decrease-line

ri-increase-decrease-fill

ri-percent-line

ri-percent-fill

ri-copper-coin-line

ri-copper-coin-fill

ri-copper-diamond-line

ri-copper-diamond-fill

ri-money-cny-box-line

ri-money-cny-box-fill

ri-money-cny-circle-line

ri-money-cny-circle-fill

ri-money-dollar-box-line

ri-money-dollar-box-fill

ri-money-dollar-circle-line

ri-money-dollar-circle-fill

ri-money-euro-box-line

ri-money-euro-box-fill

ri-money-euro-circle-line

ri-money-euro-circle-fill

ri-money-pound-box-line

ri-money-pound-box-fill

ri-money-pound-circle-line

ri-money-pound-circle-fill

ri-bit-coin-line

ri-bit-coin-fill

ri-coin-line

ri-coin-fill

ri-coins-line

ri-coins-fill

ri-currency-line

ri-currency-fill

ri-funds-line

ri-funds-fill

ri-funds-box-line

ri-funds-box-fill

ri-red-packet-line

ri-red-packet-fill

ri-water-flash-line

ri-water-flash-fill

ri-stock-line

ri-stock-fill

ri-auction-line

ri-auction-fill

ri-gift-line

ri-gift-fill

ri-gift-2-line

ri-gift-2-fill

ri-hand-coin-line

ri-hand-coin-fill

ri-hand-heart-line

ri-hand-heart-fill

ri-24-hours-line

ri-24-hours-fill

Finance

ri-heart-line

ri-heart-fill

ri-heart-2-line

ri-heart-2-fill

ri-heart-3-line

ri-heart-3-fill

ri-heart-add-line

ri-heart-add-fill

ri-dislike-line

ri-dislike-fill

ri-hearts-line

ri-hearts-fill

ri-heart-pulse-line

ri-heart-pulse-fill

ri-pulse-line

ri-pulse-fill

ri-empathize-line

ri-empathize-fill

ri-nurse-line

ri-nurse-fill

ri-dossier-line

ri-dossier-fill

ri-health-book-line

ri-health-book-fill

ri-first-aid-kit-line

ri-first-aid-kit-fill

ri-capsule-line

ri-capsule-fill

ri-medicine-bottle-line

ri-medicine-bottle-fill

ri-flask-line

ri-flask-fill

ri-test-tube-line

ri-test-tube-fill

ri-microscope-line

ri-microscope-fill

ri-hand-sanitizer-line

ri-hand-sanitizer-fill

ri-mental-health-line

ri-mental-health-fill

ri-psychotherapy-line

ri-psychotherapy-fill

ri-stethoscope-line

ri-stethoscope-fill

ri-syringe-line

ri-syringe-fill

ri-thermometer-line

ri-thermometer-fill

ri-infrared-thermometer-line

ri-infrared-thermometer-fill

ri-surgical-mask-line

ri-surgical-mask-fill

ri-virus-line

ri-virus-fill

ri-lungs-line

ri-lungs-fill

ri-rest-time-line

ri-rest-time-fill

ri-zzz-line

ri-zzz-fill

Health & Medical

ri-alipay-line

ri-alipay-fill

ri-amazon-line

ri-amazon-fill

ri-android-line

ri-android-fill

ri-angularjs-line

ri-angularjs-fill

ri-app-store-line

ri-app-store-fill

ri-apple-line

ri-apple-fill

ri-baidu-line

ri-baidu-fill

ri-behance-line

ri-behance-fill

ri-bilibili-line

ri-bilibili-fill

ri-centos-line

ri-centos-fill

ri-chrome-line

ri-chrome-fill

ri-codepen-line

ri-codepen-fill

ri-coreos-line

ri-coreos-fill

ri-dingding-line

ri-dingding-fill

ri-discord-line

ri-discord-fill

ri-disqus-line

ri-disqus-fill

ri-douban-line

ri-douban-fill

ri-dribbble-line

ri-dribbble-fill

ri-drive-line

ri-drive-fill

ri-dropbox-line

ri-dropbox-fill

ri-edge-line

ri-edge-fill

ri-evernote-line

ri-evernote-fill

ri-facebook-line

ri-facebook-fill

ri-facebook-circle-line

ri-facebook-circle-fill

ri-facebook-box-line

ri-facebook-box-fill

ri-finder-line

ri-finder-fill

ri-firefox-line

ri-firefox-fill

ri-flutter-line

ri-flutter-fill

ri-gatsby-line

ri-gatsby-fill

ri-github-line

ri-github-fill

ri-gitlab-line

ri-gitlab-fill

ri-google-line

ri-google-fill

ri-google-play-line

ri-google-play-fill

ri-honor-of-kings-line

ri-honor-of-kings-fill

ri-ie-line

ri-ie-fill

ri-instagram-line

ri-instagram-fill

ri-invision-line

ri-invision-fill

ri-kakao-talk-line

ri-kakao-talk-fill

ri-line-line

ri-line-fill

ri-linkedin-line

ri-linkedin-fill

ri-linkedin-box-line

ri-linkedin-box-fill

ri-mastercard-line

ri-mastercard-fill

ri-mastodon-line

ri-mastodon-fill

ri-medium-line

ri-medium-fill

ri-messenger-line

ri-messenger-fill

ri-microsoft-line

ri-microsoft-fill

ri-mini-program-line

ri-mini-program-fill

ri-netease-cloud-music-line

ri-netease-cloud-music-fill

ri-netflix-line

ri-netflix-fill

ri-npmjs-line

ri-npmjs-fill

ri-open-source-line

ri-open-source-fill

ri-opera-line

ri-opera-fill

ri-patreon-line

ri-patreon-fill

ri-paypal-line

ri-paypal-fill

ri-pinterest-line

ri-pinterest-fill

ri-pixelfed-line

ri-pixelfed-fill

ri-playstation-line

ri-playstation-fill

ri-product-hunt-line

ri-product-hunt-fill

ri-qq-line

ri-qq-fill

ri-reactjs-line

ri-reactjs-fill

ri-reddit-line

ri-reddit-fill

ri-remixicon-line

ri-remixicon-fill

ri-safari-line

ri-safari-fill

ri-skype-line

ri-skype-fill

ri-slack-line

ri-slack-fill

ri-snapchat-line

ri-snapchat-fill

ri-soundcloud-line

ri-soundcloud-fill

ri-spectrum-line

ri-spectrum-fill

ri-spotify-line

ri-spotify-fill

ri-stack-overflow-line

ri-stack-overflow-fill

ri-stackshare-line

ri-stackshare-fill

ri-steam-line

ri-steam-fill

ri-switch-line

ri-switch-fill

ri-taobao-line

ri-taobao-fill

ri-telegram-line

ri-telegram-fill

ri-trello-line

ri-trello-fill

ri-tumblr-line

ri-tumblr-fill

ri-twitch-line

ri-twitch-fill

ri-twitter-line

ri-twitter-fill

ri-ubuntu-line

ri-ubuntu-fill

ri-unsplash-line

ri-unsplash-fill

ri-vimeo-line

ri-vimeo-fill

ri-visa-line

ri-visa-fill

ri-vuejs-line

ri-vuejs-fill

ri-wechat-line

ri-wechat-fill

ri-wechat-2-line

ri-wechat-2-fill

ri-wechat-pay-line

ri-wechat-pay-fill

ri-weibo-line

ri-weibo-fill

ri-whatsapp-line

ri-whatsapp-fill

ri-windows-line

ri-windows-fill

ri-xbox-line

ri-xbox-fill

ri-xing-line

ri-xing-fill

ri-youtube-line

ri-youtube-fill

ri-zcool-line

ri-zcool-fill

ri-zhihu-line

ri-zhihu-fill

Logos

ri-map-pin-line

ri-map-pin-fill

ri-map-pin-2-line

ri-map-pin-2-fill

ri-map-pin-3-line

ri-map-pin-3-fill

ri-map-pin-4-line

ri-map-pin-4-fill

ri-map-pin-5-line

ri-map-pin-5-fill

ri-map-pin-add-line

ri-map-pin-add-fill

ri-map-pin-range-line

ri-map-pin-range-fill

ri-map-pin-time-line

ri-map-pin-time-fill

ri-map-pin-user-line

ri-map-pin-user-fill

ri-pin-distance-line

ri-pin-distance-fill

ri-pushpin-line

ri-pushpin-fill

ri-pushpin-2-line

ri-pushpin-2-fill

ri-compass-line

ri-compass-fill

ri-compass-2-line

ri-compass-2-fill

ri-compass-3-line

ri-compass-3-fill

ri-compass-4-line

ri-compass-4-fill

ri-compass-discover-line

ri-compass-discover-fill

ri-anchor-line

ri-anchor-fill

ri-china-railway-line

ri-china-railway-fill

ri-space-ship-line

ri-space-ship-fill

ri-rocket-line

ri-rocket-fill

ri-rocket-2-line

ri-rocket-2-fill

ri-map-line

ri-map-fill

ri-map-2-line

ri-map-2-fill

ri-treasure-map-line

ri-treasure-map-fill

ri-road-map-line

ri-road-map-fill

ri-earth-line

ri-earth-fill

ri-globe-line

ri-globe-fill

ri-parking-line

ri-parking-fill

ri-parking-box-line

ri-parking-box-fill

ri-route-line

ri-route-fill

ri-guide-line

ri-guide-fill

ri-gas-station-line

ri-gas-station-fill

ri-charging-pile-line

ri-charging-pile-fill

ri-charging-pile-2-line

ri-charging-pile-2-fill

ri-car-line

ri-car-fill

ri-car-washing-line

ri-car-washing-fill

ri-roadster-line

ri-roadster-fill

ri-taxi-line

ri-taxi-fill

ri-taxi-wifi-line

ri-taxi-wifi-fill

ri-police-car-line

ri-police-car-fill

ri-bus-line

ri-bus-fill

ri-bus-2-line

ri-bus-2-fill

ri-bus-wifi-line

ri-bus-wifi-fill

ri-truck-line

ri-truck-fill

ri-train-line

ri-train-fill

ri-train-wifi-line

ri-train-wifi-fill

ri-subway-line

ri-subway-fill

ri-subway-wifi-line

ri-subway-wifi-fill

ri-flight-takeoff-line

ri-flight-takeoff-fill

ri-flight-land-line

ri-flight-land-fill

ri-plane-line

ri-plane-fill

ri-sailboat-line

ri-sailboat-fill

ri-ship-line

ri-ship-fill

ri-ship-2-line

ri-ship-2-fill

ri-bike-line

ri-bike-fill

ri-e-bike-line

ri-e-bike-fill

ri-e-bike-2-line

ri-e-bike-2-fill

ri-takeaway-line

ri-takeaway-fill

ri-motorbike-line

ri-motorbike-fill

ri-caravan-line

ri-caravan-fill

ri-walk-line

ri-walk-fill

ri-run-line

ri-run-fill

ri-riding-line

ri-riding-fill

ri-barricade-line

ri-barricade-fill

ri-footprint-line

ri-footprint-fill

ri-traffic-light-line

ri-traffic-light-fill

ri-signal-tower-line

ri-signal-tower-fill

ri-restaurant-line

ri-restaurant-fill

ri-restaurant-2-line

ri-restaurant-2-fill

ri-cup-line

ri-cup-fill

ri-goblet-line

ri-goblet-fill

ri-hotel-bed-line

ri-hotel-bed-fill

ri-navigation-line

ri-navigation-fill

ri-oil-line

ri-oil-fill

ri-direction-line

ri-direction-fill

ri-steering-line

ri-steering-fill

ri-steering-2-line

ri-steering-2-fill

ri-lifebuoy-line

ri-lifebuoy-fill

ri-passport-line

ri-passport-fill

ri-suitcase-line

ri-suitcase-fill

ri-suitcase-2-line

ri-suitcase-2-fill

ri-suitcase-3-line

ri-suitcase-3-fill

ri-luggage-deposit-line

ri-luggage-deposit-fill

ri-luggage-cart-line

ri-luggage-cart-fill

Map

ri-image-line

ri-image-fill

ri-image-2-line

ri-image-2-fill

ri-image-add-line

ri-image-add-fill

ri-image-edit-line

ri-image-edit-fill

ri-landscape-line

ri-landscape-fill

ri-gallery-line

ri-gallery-fill

ri-gallery-upload-line

ri-gallery-upload-fill

ri-video-line

ri-video-fill

ri-movie-line

ri-movie-fill

ri-movie-2-line

ri-movie-2-fill

ri-film-line

ri-film-fill

ri-clapperboard-line

ri-clapperboard-fill

ri-vidicon-line

ri-vidicon-fill

ri-vidicon-2-line

ri-vidicon-2-fill

ri-live-line

ri-live-fill

ri-video-add-line

ri-video-add-fill

ri-video-upload-line

ri-video-upload-fill

ri-video-download-line

ri-video-download-fill

ri-dv-line

ri-dv-fill

ri-camera-line

ri-camera-fill

ri-camera-off-line

ri-camera-off-fill

ri-camera-2-line

ri-camera-2-fill

ri-camera-3-line

ri-camera-3-fill

ri-camera-lens-line

ri-camera-lens-fill

ri-camera-switch-line

ri-camera-switch-fill

ri-polaroid-line

ri-polaroid-fill

ri-polaroid-2-line

ri-polaroid-2-fill

ri-phone-camera-line

ri-phone-camera-fill

ri-webcam-line

ri-webcam-fill

ri-mv-line

ri-mv-fill

ri-music-line

ri-music-fill

ri-music-2-line

ri-music-2-fill

ri-disc-line

ri-disc-fill

ri-album-line

ri-album-fill

ri-dvd-line

ri-dvd-fill

ri-headphone-line

ri-headphone-fill

ri-radio-line

ri-radio-fill

ri-radio-2-line

ri-radio-2-fill

ri-tape-line

ri-tape-fill

ri-mic-line

ri-mic-fill

ri-mic-2-line

ri-mic-2-fill

ri-mic-off-line

ri-mic-off-fill

ri-volume-down-line

ri-volume-down-fill

ri-volume-mute-line

ri-volume-mute-fill

ri-volume-up-line

ri-volume-up-fill

ri-volume-vibrate-line

ri-volume-vibrate-fill

ri-volume-off-vibrate-line

ri-volume-off-vibrate-fill

ri-speaker-line

ri-speaker-fill

ri-speaker-2-line

ri-speaker-2-fill

ri-speaker-3-line

ri-speaker-3-fill

ri-surround-sound-line

ri-surround-sound-fill

ri-broadcast-line

ri-broadcast-fill

ri-notification-line

ri-notification-fill

ri-notification-2-line

ri-notification-2-fill

ri-notification-3-line

ri-notification-3-fill

ri-notification-4-line

ri-notification-4-fill

ri-notification-off-line

ri-notification-off-fill

ri-play-circle-line

ri-play-circle-fill

ri-pause-circle-line

ri-pause-circle-fill

ri-record-circle-line

ri-record-circle-fill

ri-stop-circle-line

ri-stop-circle-fill

ri-eject-line

ri-eject-fill

ri-play-line

ri-play-fill

ri-pause-line

ri-pause-fill

ri-stop-line

ri-stop-fill

ri-rewind-line

ri-rewind-fill

ri-speed-line

ri-speed-fill

ri-skip-back-line

ri-skip-back-fill

ri-skip-forward-line

ri-skip-forward-fill

ri-play-mini-line

ri-play-mini-fill

ri-pause-mini-line

ri-pause-mini-fill

ri-stop-mini-line

ri-stop-mini-fill

ri-rewind-mini-line

ri-rewind-mini-fill

ri-speed-mini-line

ri-speed-mini-fill

ri-skip-back-mini-line

ri-skip-back-mini-fill

ri-skip-forward-mini-line

ri-skip-forward-mini-fill

ri-repeat-line

ri-repeat-fill

ri-repeat-2-line

ri-repeat-2-fill

ri-repeat-one-line

ri-repeat-one-fill

ri-order-play-line

ri-order-play-fill

ri-shuffle-line

ri-shuffle-fill

ri-play-list-line

ri-play-list-fill

ri-play-list-2-line

ri-play-list-2-fill

ri-play-list-add-line

ri-play-list-add-fill

ri-fullscreen-line

ri-fullscreen-fill

ri-fullscreen-exit-line

ri-fullscreen-exit-fill

ri-equalizer-line

ri-equalizer-fill

ri-sound-module-line

ri-sound-module-fill

ri-rhythm-line

ri-rhythm-fill

ri-voiceprint-line

ri-voiceprint-fill

ri-hq-line

ri-hq-fill

ri-hd-line

ri-hd-fill

ri-4k-line

ri-4k-fill

ri-closed-captioning-line

ri-closed-captioning-fill

ri-aspect-ratio-line

ri-aspect-ratio-fill

ri-picture-in-picture-line

ri-picture-in-picture-fill

ri-picture-in-picture-2-line

ri-picture-in-picture-2-fill

ri-picture-in-picture-exit-line

ri-picture-in-picture-exit-fill

Media

ri-apps-line

ri-apps-fill

ri-apps-2-line

ri-apps-2-fill

ri-function-line

ri-function-fill

ri-dashboard-line

ri-dashboard-fill

ri-menu-line

ri-menu-fill

ri-menu-2-line

ri-menu-2-fill

ri-menu-3-line

ri-menu-3-fill

ri-menu-4-line

ri-menu-4-fill

ri-menu-5-line

ri-menu-5-fill

ri-menu-add-line

ri-menu-add-fill

ri-menu-fold-line

ri-menu-fold-fill

ri-menu-unfold-line

ri-menu-unfold-fill

ri-more-line

ri-more-fill

ri-more-2-line

ri-more-2-fill

ri-star-line

ri-star-fill

ri-star-s-line

ri-star-s-fill

ri-star-half-line

ri-star-half-fill

ri-star-half-s-line

ri-star-half-s-fill

ri-settings-line

ri-settings-fill

ri-settings-2-line

ri-settings-2-fill

ri-settings-3-line

ri-settings-3-fill

ri-settings-4-line

ri-settings-4-fill

ri-settings-5-line

ri-settings-5-fill

ri-settings-6-line

ri-settings-6-fill

ri-list-settings-line

ri-list-settings-fill

ri-forbid-line

ri-forbid-fill

ri-forbid-2-line

ri-forbid-2-fill

ri-information-line

ri-information-fill

ri-error-warning-line

ri-error-warning-fill

ri-question-line

ri-question-fill

ri-alert-line

ri-alert-fill

ri-spam-line

ri-spam-fill

ri-spam-2-line

ri-spam-2-fill

ri-spam-3-line

ri-spam-3-fill

ri-checkbox-blank-line

ri-checkbox-blank-fill

ri-checkbox-line

ri-checkbox-fill

ri-checkbox-indeterminate-line

ri-checkbox-indeterminate-fill

ri-add-box-line

ri-add-box-fill

ri-checkbox-blank-circle-line

ri-checkbox-blank-circle-fill

ri-checkbox-circle-line

ri-checkbox-circle-fill

ri-indeterminate-circle-line

ri-indeterminate-circle-fill

ri-add-circle-line

ri-add-circle-fill

ri-close-circle-line

ri-close-circle-fill

ri-radio-button-line

ri-radio-button-fill

ri-checkbox-multiple-blank-line

ri-checkbox-multiple-blank-fill

ri-checkbox-multiple-line

ri-checkbox-multiple-fill

ri-check-line

ri-check-fill

ri-check-double-line

ri-check-double-fill

ri-close-line

ri-close-fill

ri-add-line

ri-add-fill

ri-subtract-line

ri-subtract-fill

ri-divide-line

ri-divide-fill

ri-arrow-left-up-line

ri-arrow-left-up-fill

ri-arrow-up-line

ri-arrow-up-fill

ri-arrow-right-up-line

ri-arrow-right-up-fill

ri-arrow-right-line

ri-arrow-right-fill

ri-arrow-right-down-line

ri-arrow-right-down-fill

ri-arrow-down-line

ri-arrow-down-fill

ri-arrow-left-down-line

ri-arrow-left-down-fill

ri-arrow-left-line

ri-arrow-left-fill

ri-arrow-up-circle-line

ri-arrow-up-circle-fill

ri-arrow-right-circle-line

ri-arrow-right-circle-fill

ri-arrow-down-circle-line

ri-arrow-down-circle-fill

ri-arrow-left-circle-line

ri-arrow-left-circle-fill

ri-arrow-up-s-line

ri-arrow-up-s-fill

ri-arrow-down-s-line

ri-arrow-down-s-fill

ri-arrow-right-s-line

ri-arrow-right-s-fill

ri-arrow-left-s-line

ri-arrow-left-s-fill

ri-arrow-drop-up-line

ri-arrow-drop-up-fill

ri-arrow-drop-right-line

ri-arrow-drop-right-fill

ri-arrow-drop-down-line

ri-arrow-drop-down-fill

ri-arrow-drop-left-line

ri-arrow-drop-left-fill

ri-arrow-left-right-line

ri-arrow-left-right-fill

ri-arrow-up-down-line

ri-arrow-up-down-fill

ri-arrow-go-back-line

ri-arrow-go-back-fill

ri-arrow-go-forward-line

ri-arrow-go-forward-fill

ri-download-line

ri-download-fill

ri-upload-line

ri-upload-fill

ri-download-2-line

ri-download-2-fill

ri-upload-2-line

ri-upload-2-fill

ri-download-cloud-line

ri-download-cloud-fill

ri-download-cloud-2-line

ri-download-cloud-2-fill

ri-upload-cloud-line

ri-upload-cloud-fill

ri-upload-cloud-2-line

ri-upload-cloud-2-fill

ri-login-box-line

ri-login-box-fill

ri-logout-box-line

ri-logout-box-fill

ri-logout-box-r-line

ri-logout-box-r-fill

ri-login-circle-line

ri-login-circle-fill

ri-logout-circle-line

ri-logout-circle-fill

ri-logout-circle-r-line

ri-logout-circle-r-fill

ri-refresh-line

ri-refresh-fill

ri-shield-line

ri-shield-fill

ri-shield-cross-line

ri-shield-cross-fill

ri-shield-flash-line

ri-shield-flash-fill

ri-shield-star-line

ri-shield-star-fill

ri-shield-user-line

ri-shield-user-fill

ri-shield-keyhole-line

ri-shield-keyhole-fill

ri-shield-check-line

ri-shield-check-fill

ri-delete-back-line

ri-delete-back-fill

ri-delete-back-2-line

ri-delete-back-2-fill

ri-delete-bin-line

ri-delete-bin-fill

ri-delete-bin-2-line

ri-delete-bin-2-fill

ri-delete-bin-3-line

ri-delete-bin-3-fill

ri-delete-bin-4-line

ri-delete-bin-4-fill

ri-delete-bin-5-line

ri-delete-bin-5-fill

ri-delete-bin-6-line

ri-delete-bin-6-fill

ri-delete-bin-7-line

ri-delete-bin-7-fill

ri-lock-line

ri-lock-fill

ri-lock-2-line

ri-lock-2-fill

ri-lock-password-line

ri-lock-password-fill

ri-lock-unlock-line

ri-lock-unlock-fill

ri-eye-line

ri-eye-fill

ri-eye-off-line

ri-eye-off-fill

ri-eye-2-line

ri-eye-2-fill

ri-eye-close-line

ri-eye-close-fill

ri-search-line

ri-search-fill

ri-search-2-line

ri-search-2-fill

ri-search-eye-line

ri-search-eye-fill

ri-zoom-in-line

ri-zoom-in-fill

ri-zoom-out-line

ri-zoom-out-fill

ri-find-replace-line

ri-find-replace-fill

ri-share-line

ri-share-fill

ri-share-box-line

ri-share-box-fill

ri-share-circle-line

ri-share-circle-fill

ri-share-forward-line

ri-share-forward-fill

ri-share-forward-2-line

ri-share-forward-2-fill

ri-share-forward-box-line

ri-share-forward-box-fill

ri-side-bar-line

ri-side-bar-fill

ri-time-line

ri-time-fill

ri-timer-line

ri-timer-fill

ri-timer-2-line

ri-timer-2-fill

ri-timer-flash-line

ri-timer-flash-fill

ri-alarm-line

ri-alarm-fill

ri-history-line

ri-history-fill

ri-thumb-down-line

ri-thumb-down-fill

ri-thumb-up-line

ri-thumb-up-fill

ri-alarm-warning-line

ri-alarm-warning-fill

ri-notification-badge-line

ri-notification-badge-fill

ri-toggle-line

ri-toggle-fill

ri-filter-line

ri-filter-fill

ri-filter-2-line

ri-filter-2-fill

ri-filter-3-line

ri-filter-3-fill

ri-filter-off-line

ri-filter-off-fill

ri-loader-line

ri-loader-fill

ri-loader-2-line

ri-loader-2-fill

ri-loader-3-line

ri-loader-3-fill

ri-loader-4-line

ri-loader-4-fill

ri-loader-5-line

ri-loader-5-fill

ri-external-link-line

ri-external-link-fill

System

ri-user-line

ri-user-fill

ri-user-2-line

ri-user-2-fill

ri-user-3-line

ri-user-3-fill

ri-user-4-line

ri-user-4-fill

ri-user-5-line

ri-user-5-fill

ri-user-6-line

ri-user-6-fill

ri-user-smile-line

ri-user-smile-fill

ri-account-box-line

ri-account-box-fill

ri-account-circle-line

ri-account-circle-fill

ri-account-pin-box-line

ri-account-pin-box-fill

ri-account-pin-circle-line

ri-account-pin-circle-fill

ri-user-add-line

ri-user-add-fill

ri-user-follow-line

ri-user-follow-fill

ri-user-unfollow-line

ri-user-unfollow-fill

ri-user-shared-line

ri-user-shared-fill

ri-user-shared-2-line

ri-user-shared-2-fill

ri-user-received-line

ri-user-received-fill

ri-user-received-2-line

ri-user-received-2-fill

ri-user-location-line

ri-user-location-fill

ri-user-search-line

ri-user-search-fill

ri-user-settings-line

ri-user-settings-fill

ri-user-star-line

ri-user-star-fill

ri-user-heart-line

ri-user-heart-fill

ri-admin-line

ri-admin-fill

ri-contacts-line

ri-contacts-fill

ri-group-line

ri-group-fill

ri-group-2-line

ri-group-2-fill

ri-team-line

ri-team-fill

ri-user-voice-line

ri-user-voice-fill

ri-emotion-line

ri-emotion-fill

ri-emotion-2-line

ri-emotion-2-fill

ri-emotion-happy-line

ri-emotion-happy-fill

ri-emotion-normal-line

ri-emotion-normal-fill

ri-emotion-unhappy-line

ri-emotion-unhappy-fill

ri-emotion-laugh-line

ri-emotion-laugh-fill

ri-emotion-sad-line

ri-emotion-sad-fill

ri-skull-line

ri-skull-fill

ri-skull-2-line

ri-skull-2-fill

ri-men-line

ri-men-fill

ri-women-line

ri-women-fill

ri-travesti-line

ri-travesti-fill

ri-genderless-line

ri-genderless-fill

ri-open-arm-line

ri-open-arm-fill

ri-body-scan-line

ri-body-scan-fill

ri-parent-line

ri-parent-fill

ri-robot-line

ri-robot-fill

ri-aliens-line

ri-aliens-fill

ri-bear-smile-line

ri-bear-smile-fill

ri-mickey-line

ri-mickey-fill

ri-criminal-line

ri-criminal-fill

ri-ghost-line

ri-ghost-fill

ri-ghost-2-line

ri-ghost-2-fill

ri-ghost-smile-line

ri-ghost-smile-fill

ri-star-smile-line

ri-star-smile-fill

ri-spy-line

ri-spy-fill

User & Faces

ri-sun-line

ri-sun-fill

ri-moon-line

ri-moon-fill

ri-flashlight-line

ri-flashlight-fill

ri-cloudy-line

ri-cloudy-fill

ri-cloudy-2-line

ri-cloudy-2-fill

ri-mist-line

ri-mist-fill

ri-foggy-line

ri-foggy-fill

ri-cloud-windy-line

ri-cloud-windy-fill

ri-windy-line

ri-windy-fill

ri-rainy-line

ri-rainy-fill

ri-drizzle-line

ri-drizzle-fill

ri-showers-line

ri-showers-fill

ri-heavy-showers-line

ri-heavy-showers-fill

ri-thunderstorms-line

ri-thunderstorms-fill

ri-hail-line

ri-hail-fill

ri-snowy-line

ri-snowy-fill

ri-sun-cloudy-line

ri-sun-cloudy-fill

ri-moon-cloudy-line

ri-moon-cloudy-fill

ri-tornado-line

ri-tornado-fill

ri-typhoon-line

ri-typhoon-fill

ri-haze-line

ri-haze-fill

ri-haze-2-line

ri-haze-2-fill

ri-sun-foggy-line

ri-sun-foggy-fill

ri-moon-foggy-line

ri-moon-foggy-fill

ri-moon-clear-line

ri-moon-clear-fill

ri-temp-hot-line

ri-temp-hot-fill

ri-temp-cold-line

ri-temp-cold-fill

ri-celsius-line

ri-celsius-fill

ri-fahrenheit-line

ri-fahrenheit-fill

ri-fire-line

ri-fire-fill

ri-blaze-line

ri-blaze-fill

ri-earthquake-line

ri-earthquake-fill

ri-flood-line

ri-flood-fill

ri-meteor-line

ri-meteor-fill

ri-rainbow-line

ri-rainbow-fill

Weather

ri-basketball-line

ri-basketball-fill

ri-bell-line

ri-bell-fill

ri-billiards-line

ri-billiards-fill

ri-boxing-line

ri-boxing-fill

ri-cake-line

ri-cake-fill

ri-cake-2-line

ri-cake-2-fill

ri-cake-3-line

ri-cake-3-fill

ri-door-lock-line

ri-door-lock-fill

ri-door-lock-box-line

ri-door-lock-box-fill

ri-football-line

ri-football-fill

ri-game-line

ri-game-fill

ri-handbag-line

ri-handbag-fill

ri-key-line

ri-key-fill

ri-key-2-line

ri-key-2-fill

ri-knife-line

ri-knife-fill

ri-knife-blood-line

ri-knife-blood-fill

ri-lightbulb-line

ri-lightbulb-fill

ri-lightbulb-flash-line

ri-lightbulb-flash-fill

ri-outlet-line

ri-outlet-fill

ri-outlet-2-line

ri-outlet-2-fill

ri-ping-pong-line

ri-ping-pong-fill

ri-plug-line

ri-plug-fill

ri-plug-2-line

ri-plug-2-fill

ri-reserved-line

ri-reserved-fill

ri-shirt-line

ri-shirt-fill

ri-sword-line

ri-sword-fill

ri-t-shirt-line

ri-t-shirt-fill

ri-t-shirt-2-line

ri-t-shirt-2-fill

ri-t-shirt-air-line

ri-t-shirt-air-fill

ri-umbrella-line

ri-umbrella-fill

ri-character-recognition-line

ri-character-recognition-fill

ri-voice-recognition-line

ri-voice-recognition-fill

ri-leaf-line

ri-leaf-fill

ri-plant-line

ri-plant-fill

ri-seedling-line

ri-seedling-fill

ri-recycle-line

ri-recycle-fill

ri-scales-line

ri-scales-fill

ri-scales-2-line

ri-scales-2-fill

ri-scales-3-line

ri-scales-3-fill

ri-fridge-line

ri-fridge-fill

ri-wheelchair-line

ri-wheelchair-fill

ri-cactus-line

ri-cactus-fill

ri-door-line

ri-door-fill

ri-door-open-line

ri-door-open-fill

ri-door-closed-line

ri-door-closed-fill

Others

- + \ No newline at end of file diff --git a/docs/docs/webdev/Guidelines/images/index.html b/docs/docs/webdev/Guidelines/images/index.html index dcc41988f7..645105fb57 100644 --- a/docs/docs/webdev/Guidelines/images/index.html +++ b/docs/docs/webdev/Guidelines/images/index.html @@ -5,7 +5,7 @@ Use of images | EEA Design System - + @@ -14,7 +14,7 @@ To acknowledge a copyrighted work add three things to the image, the copyright symbol, the year of the copyright, and the name of the copyright holder.

Best practices

  • your visual content is relevant to the topic of the webpage
  • only add an image whenever it adds value to the webpage
  • place images near the relevant text
  • the most important image should be near the top of the webpage
  • avoid embedding text in images, not all users can access them (page translation tools can't read images)
  • text in HTML, provide alt text for images; follow rules of accessibility
  • create good content is equally important as visual content for images

Widely supported image formats

File type (short)File type (long)File extension
GIFgraphics Interchange Format.gif
JPEGjoint Photographic Expert Group image.jpeg .jpg
PNGportable Network Graphics.png
SVGscalable Vector Graphics.svg

Raster graphic

Raster images are pixel-based. When you scale up a raster image you'll see jagged and blurry edges.

GIF (Graphics Interchange Format)

  • fewer colours, file size is smaller than JPEG
  • interlaced progressive loading, low-quality version first, more detailed image is loaded next
  • fewer colours, file size is smaller than JPEG
  • does not lose any data with compression
  • best use for web graphics with few colours only, and line drawings

JPG/JPEG (Joint Photographic-Experts-Group)

  • can display millions of colours, use JPEG format for photographs, still images, shading with light and dark
  • use JPEG when file size is more important than the quality of the image
  • optimising JPEG images; 60% - 75% is usually optimal for web publishing 16-bit data format
  • compatible across many platforms and image editors

PNG (Portable Network Graphics)

  • support transparency (alpha channel), allow a translucent look
  • lossless compression, no loss of data
  • manage high-contrast or detailed images better than JPEG
  • they can go down to very small file sizes when there are limited colours, use an 8-bit colour palette instead of a 24 colour palette
  • PNG images can be used in any colour background still maintain the original appearance

Vector graphic

Vector image format can produce results with high fidelity at every resolution setting. It is an ideal format for high-resolution screens. If you zoom into a vector graphic it will always remain the same quality.

SVG (Scalable Vector Graphics)

  • SVG is in vector format – it does not lose any data when compressed
  • SVG formats are supported by most contemporary browsers
  • the image file size is lightweight and compressible supports transparency

Editing visuals

  • don't apply effects, gradients, borders or filters. It can make the picture look manipulated
  • don't pick photos with frames, rounded corners or drop shadows
  • cropping. Pay attention to the copyright. In some cases you need prior consent from the author to alter the image
- + \ No newline at end of file diff --git a/docs/docs/webdev/Guidelines/intro/index.html b/docs/docs/webdev/Guidelines/intro/index.html index 5e11654fcf..c16757cf15 100644 --- a/docs/docs/webdev/Guidelines/intro/index.html +++ b/docs/docs/webdev/Guidelines/intro/index.html @@ -5,14 +5,14 @@ Intro | EEA Design System - +

Intro

Guidelines

The DS v1 is the EEA's design system, created with a set of guiding principles that followed throughout the process. By following a user-centered design approach and best UX practices, the DS v1 is the result of in-depth research into the users' needs and goals, offering solutions that are assessed, tested and revised continuously. All components included in the DS v1 follow the Web Content Accessibility Guidelines (WCAG).

The main characteristics of our design system are:

  • Minimal use of drop shadows
  • Sharp edges and corners
  • Uncluttered, distraction-free design
  • High readability with clear typography
  • Easily adjusted for responsive design

We emphasize more on functionality rather than appearance and in parallel we try to offer a consistent appearance irrespective of the screen resolution and types of devices. Trying not to use unnecessary designing elements, we focus on faster site designing and minimum loading time.

- + \ No newline at end of file diff --git a/docs/docs/webdev/Guidelines/spacing/index.html b/docs/docs/webdev/Guidelines/spacing/index.html index 8d436f2342..595b82841f 100644 --- a/docs/docs/webdev/Guidelines/spacing/index.html +++ b/docs/docs/webdev/Guidelines/spacing/index.html @@ -5,7 +5,7 @@ Spacing | EEA Design System - + @@ -13,7 +13,7 @@

Spacing

To ensure that layouts are visually balanced, most measurements align to 8px, which corresponds to both spacing and the overall layout. Consistent spacing creates visual balance that makes the user interface (UI) easier for merchants to scan. Apply consistent spacing to improve the quality of the UI. Components are sized in 8px increments, ensuring a consistent visual rhythm across each screen. Smaller elements, such as icons, can align to a 4px grid, while typography can fall on a 4px baseline grid, meaning that each line’s typographic baseline is spaced in increments of 4px from its neighbor.

Principles

Create visual rhythm
We use incrementally measured spacing to create harmonious arrangements of components and text. This gives the elements a predictable rhythm, which makes the experience as a whole feel intentional and well designed.

Precise but flexible
Beyond mathematical precision, spacing also reacts to the objects it surrounds, giving more space to larger objects, less to small. Optical adjustments can also be made if an element looks off and the spacing needs a nudge to make things feel right.

Two types of spacing scale

Component Spacing
Controls the spacing inside the components.
For components use smaller increments. ( 4px, 8px, 12px, 16px, 20px, 24px, 32px, 36px, 40px, 48px)

Layout Spacing
Controls space between the components.
For layout scale use larger increments (16px, 24px, 32px, 48px, 64px, 96px )

Spacing Gaps in pixels

Token namePixelsTypically used
space-0251pxnot typically used
space-052pxnot typically used
space-14pxseparate related elements and for small padding
space-28pxonly for right and left padding of buttons, form elements and horizontal tabs
space-312pxto separate unrelated elements or groups and for normal padding
space-416pxto separate sub-sections of content
space-520pxto separate sub-sections of content
space-624pxto separate sub-sections of content
space-728pxto separate sections of content
space-832pxto separate sections of content
space-936pxto separate sections of content
space-1040px
space-1144px
space-1248px
space-1352px
space-1456px
space-1560px
space-1664px
space-1768px
space-1872px
space-1976px
space-2080px
space-2496px

Spacing Gaps in rem

Token nameRem
rem-space-0250.063rem
rem-space-050.125rem
rem-space-10.25rem
rem-space-20.5rem
rem-space-30.75rem
rem-space-41rem
rem-space-51.25rem
rem-space-61.5rem
rem-space-71.75rem
rem-space-82rem
rem-space-92.25rem
rem-space-102.5rem
rem-space-112.75rem
rem-space-123rem
rem-space-133.25rem
rem-space-143.5rem
rem-space-153.75rem
rem-space-164rem
rem-space-174.25rem
rem-space-184.5rem
rem-space-194.75rem
rem-space-205rem
rem-space-246rem

Spacing Gaps in em

Token nameRem
em-space-0250.063em
em-space-050.125em
em-space-10.25em
em-space-20.5em
em-space-30.75em
em-space-41em
em-space-51.25em
em-space-61.5em
em-space-71.75em
em-space-82em
em-space-92.25em
em-space-102.5em
em-space-112.75em
em-space-123em
em-space-133.25em
em-space-143.5em
em-space-153.75em
em-space-164em
em-space-174.25em
em-space-184.5em
em-space-194.75em
em-space-205em
em-space-246em
- + \ No newline at end of file diff --git a/docs/docs/webdev/Guidelines/typography/index.html b/docs/docs/webdev/Guidelines/typography/index.html index 0af89739a8..b93867e6fa 100644 --- a/docs/docs/webdev/Guidelines/typography/index.html +++ b/docs/docs/webdev/Guidelines/typography/index.html @@ -5,7 +5,7 @@ Typography | EEA Design System - + @@ -16,7 +16,7 @@ but 150% tends to be the most quoted sweet spot (and a WCAG recommendation). You should experiment to see what looks best with your text. The line-height value is always divisible by 4 to support the grid.

This is why for body text we use 150% line height, while for headers we use 120% due to the larger font size where using 150% would add too much space between the heading lines.


Letter spacing

Letter spacing (also known as character spacing or tracking ) is the adjustment of the horizontal white space between the letters in a block of text. Unlike kerning, which affects only designated pairs of letters, letterspacing affects every pair. By adjusting letter spacing to the environment you are working with you will help readers consume your information faster, and more efficiently. The fun part is that they won’t even notice it!

Headings -0.015em (-1.5%)

Body 0%

Caption and Small text 0.01em (1%)


Text color

Body text color is blue-grey-5 (#3D5265)

Color also plays a key role in an interface’s typographic hierarchy, often by established types like:

  • Brand colors and supplementary colors, for most interface text whether body or heading.
  • Interactive, not just for links but also flat buttons, tab labels, and more
  • Disabled, often resulting is especially lower contrast treatments
  • Error, usually red, for the highest contrast with its surroundings

Line length

Line-length is the number of characters displayed in a single line. Lines that are too long or too short can distract readers. For readability, limit to no more than 80 characters including spaces for desktop. Line length for mobile is recommended to use 40 to 60 characters including space per line.


Base Font Size

We set 16px (1rem) as the base font size for body text to ensure readability. It is the default font size for most browsers.


Desktop Styles

Heading 1

Font Size: 44px or 2.75rem
Letter spacing: -0.015em (-1.5%)
Line height: 1.2 (120%)

Heading 2

Font Size: 32px or 2rem
Letter spacing: -0.015em (-1.5%)
Line height: 1.2 (120%)

Heading 3

Font Size: 26px or 1.625rem
Letter spacing: -0.015em (-1.5%)
Line height: 1.2 (120%)

Heading 4

Font Size: 20px or 1.25rem
Letter spacing: -0.015em (-1.5%)
Line height: 1.2 (120%)
Heading 5
Font Size: 18px or 1.125rem
Letter spacing: -0.015em (-1.5%)
Line height: 1.2 (120%)

Body text

Font Size: 16px or 1rem
Letter spacing: 0 (0%)
Line height: 1.5 (150%)

Caption text

Font Size: 14px or 0.875rem
Letter spacing: 0.01 (1%)
Line height: 1.5 (150%)

Small text

Font Size: 12px or 0.75rem
Letter spacing: 0.01 (1%)
Line height: 1.5 (150%)

Mobile Styles

Heading 1

Font Size: 30px or 1.875rem
Letter spacing: -0.015em (-1.5%)
Line height: 1.2 (120%)

Heading 2

Font Size: 24px or 1.5rem
Letter spacing: -0.015em (-1.5%)
Line height: 1.2 (120%)

Heading 3

Font Size: 20px or 1.25rem
Letter spacing: -0.015em (-1.5%)
Line height: 1.2 (120%)

Heading 4

Font Size: 18px or 1.125rem
Letter spacing: -0.015em (-1.5%)
Line height: 1.2 (120%)

Body

Font Size: 16px or 1rem
Letter spacing: 0 (0%)
Line height: 1.5 (150%)

Caption

Font Size: 14px or 0.875rem
Letter spacing: 0.01em (1%)
Line height: 1.5 (150%)

Small text

Font Size: 12px or 0.75rem
Letter spacing: 0.01em (1%)
Line height: 1.5 (150%)

Typography tokens

Weight

Token nameValueStyle
font-weight-1100Thin
font-weight-2200Light
font-weight-3300Book
font-weight-4400Regular
font-weight-5500Medium
font-weight-6600SemiBold
font-weight-7700Bold
font-weight-8800ExtraBold
font-weight-9900Black

Line height

Token nameValue(no unit)
font-lineheight-00.95
font-lineheight-01.1
font-lineheight-11.2
font-lineheight-21.375
font-lineheight-31.5
font-lineheight-41.75
font-lineheight-52

Letter spacing

Token nameValue(em)
font-letterspacing-000-.02
font-letterspacing-00-.015
font-letterspacing-0-.01
font-letterspacing-1.01
font-letterspacing-2.015
font-letterspacing-3.02
font-letterspacing-4.075
font-letterspacing-5.15

Font size

Token nameValue(rem)Value(px)
font-size-00.7512
font-size-0.87514
font-size-1116
font-size-21.12518
font-size-31.2520
font-size-41.524
font-size-51.62526
font-size-61.87530
font-size-7232
font-size-82.2536
font-size-92.540
font-size-102.7544

Font size fluid

Token nameValue
font-size-fluid-0clamp(1.125rem, 2vw, 1.25rem)
font-size-fluid-1clamp(1.25rem, 4vw, 1.625rem)
font-size-fluid-2clamp(1.5rem, 6vw, 2rem)
font-size-fluid-3clamp(1.875rem, 9vw, 2.75rem)
- + \ No newline at end of file diff --git a/docs/docs/webdev/Resources/developer-guidelines/index.html b/docs/docs/webdev/Resources/developer-guidelines/index.html index f17ec6a709..5ffee15956 100644 --- a/docs/docs/webdev/Resources/developer-guidelines/index.html +++ b/docs/docs/webdev/Resources/developer-guidelines/index.html @@ -5,7 +5,7 @@ Developer Guidelines | EEA Design System - + @@ -71,7 +71,7 @@ guidelines as to what combinations of props and variations are allowed, to ensure a consistent look and feel. One place to document these constraints is in the control options we have in Storybook.

- + \ No newline at end of file diff --git a/docs/docs/webdev/Resources/theming-guidelines/index.html b/docs/docs/webdev/Resources/theming-guidelines/index.html index a662bafa51..a15d8102ce 100644 --- a/docs/docs/webdev/Resources/theming-guidelines/index.html +++ b/docs/docs/webdev/Resources/theming-guidelines/index.html @@ -5,7 +5,7 @@ Theming Guidelines | EEA Design System - + @@ -28,7 +28,7 @@ it's simply a job of changing one global variable:

// site.variables
/* This adjusts the meta alignment across all elements */
@metaAlign: right;

The same is true with colors used in components, try to avoid custom values set on components only as they should be part of the site.variables color pallete.

Semantic UI global setting example

We see this rule played out in many places within site.variables:

// site.variables
/*--------------
Form Input
---------------*/
/* This adjusts the default form input across all elements */
@inputBackground : @white;

Then within form.variables we have several rules that make use of the global setting:

// form.variables
/* Text Area */
@textAreaBackground: @inputBackground;

/* Inverted */
@invertedInputBackground: @inputBackground;

Check components design when having odd numbers or images

As written down in the Card component issue, if your component accepts images consider how they would adapt in case there is a mix between portrait and landscapei images.

What about situations where you have an odd number of elements or the body of the components differ in size?

The components need to be checked for such situations and to ensure they are flexible to deal with these mix and match elements.

Ex:

If the card is flex based and the parent wrapper is flex as well, consider adding a max-height to the card body or image wrapper so that they all keep a standard size.

Code formatting

  • CSS and less files should be formatted using prettier. Indent space will be 2 spaces.
  • Files should be edited as Unix files, with LF line endings.
- + \ No newline at end of file diff --git a/docs/docs/webdev/Templates/Grid/index.html b/docs/docs/webdev/Templates/Grid/index.html index 0edf164376..e398334142 100644 --- a/docs/docs/webdev/Templates/Grid/index.html +++ b/docs/docs/webdev/Templates/Grid/index.html @@ -5,7 +5,7 @@ Grid | EEA Design System - + @@ -16,7 +16,7 @@

Don’ts

Do not make gutters too large or the same width as the columns. Oversized gutters will not leave enough room for content and may prevent a layout from appearing unified.

Breakpoints

A breakpoint is the screen size threshold determined by specific layout requirements. At a given breakpoint range, the layout adjusts to suit the screen size and orientation. ΕΕΑ provides responsive layouts based on 4-column, 8-column, and 12-column grids, available for use across different screens, devices, and orientations. Each breakpoint range determines the number of columns, and recommended margins and gutters for each display size.

BreakpointsColumnsGuttersMargins
Mobile320-480px420px or 1.25rem30px or 1.875rem
Tablet481-835px8 20px or 1.25rem40px or 2.5rem
Desktop1025px and above1220px or 1.25rem140px or 8.75rem
- + \ No newline at end of file diff --git a/docs/docs/webdev/Templates/PageHeader/index.html b/docs/docs/webdev/Templates/PageHeader/index.html index 05b5802a66..05ada7b6d3 100644 --- a/docs/docs/webdev/Templates/PageHeader/index.html +++ b/docs/docs/webdev/Templates/PageHeader/index.html @@ -5,13 +5,13 @@ Page Header | EEA Design System - +

Page Header

The page header component provides users with the context of the page. It is always placed just below the site header.

Anatomy

ComponentsMandatoryOptional
Page titleyesno
Meta (content type, published date, modified date, reading time)noyes
Download - Bookmark actionsnoyes
Breadcrumb
The Breadcrumb component provides information on the page and its relationship to the site's hierarchy and structure.
It is optional if your website's navigational structure has less than 3 levels.
noyes
Image copyrightsyesno

Do's

  • ensure the pages contain all the components and elements in the anatomy table above
  • always use a page header when building your internal pages
  • when choosing a background image, make sure it highlights the main object related to the content and is meaningful
  • choose image copyright text colors accordingly, use light font color on darker images and darker font color on lighter ones

Don'ts

  • don't use more than one-page header per page
  • do not use a background image unless there is a communication need, as it might be a distraction

When to use

  • to highlight the topic of the page, or to show important information about the page

When not to use

  • the page header is not used for the homepage of the website
- + \ No newline at end of file diff --git a/docs/docs/webdev/Templates/SiteFooter/index.html b/docs/docs/webdev/Templates/SiteFooter/index.html index ae73d81e44..75cb45bdf9 100644 --- a/docs/docs/webdev/Templates/SiteFooter/index.html +++ b/docs/docs/webdev/Templates/SiteFooter/index.html @@ -5,13 +5,13 @@ Site Footer | EEA Design System - +

Site Footer

The core footer provides supplementary information such as copyright, legal, privacy, social media, contact information and links to other important sites within the EEA. It is always placed at the bottom of every page. Always use a footer when building your page

Anatomy

Νο.ComponentsMandatoryDescription
1EEA logoyesLogo of European Environment Agency (EEA)
2EIONET logoyesLogo of European Environment Information and Observation Network
3Contact information
yesLinks to the associated services available through the EEA site
4Social mediayesLinks to social EEA's social media
5Environmental information systemsyesEuropean Information Systems
6Legal navigationyesContains legal information links - consistent throughout the family sites
7Content owner detailsyesIndicates ownership over the site's content

Do's

  • make sure the footer contain all the elements in the anatomy table above

Don'ts

  • don't use more than one footer per page
- + \ No newline at end of file diff --git a/docs/docs/webdev/Templates/SiteHeader/index.html b/docs/docs/webdev/Templates/SiteHeader/index.html index d8a8b6ddd9..a350485765 100644 --- a/docs/docs/webdev/Templates/SiteHeader/index.html +++ b/docs/docs/webdev/Templates/SiteHeader/index.html @@ -5,13 +5,13 @@ Site Header | EEA Design System - +

Site Header

The EEA header shows users that they are on EEA portal and which service they are using.

Anatomy

Νο.ComponentsMandatoryDescription
1Official EU website statementyesAll official European Union website addresses are in the europa.eu domain
2Environmental Information systemsyesComplete list of EEA's thematic websites
3Languages
yesLanguage select
4EEA IdentityyesLogo of European Environmental Agency
5MenuyesMain navigation of the website
6SearchyesEnables the user to search and retrieve related information from using keywords

Do’s

  • You must use the EEA header at the top of every page if your service is being hosted on one of these domains:
    • Eea.europa.eu
  • Make sure that contain all mandatory element from the Anatomy table

Dont’s

  • You must not use the EEA header if your service is not being hosted in one of the above domains.
- + \ No newline at end of file diff --git a/docs/docs/webdev/Utilities/intro/index.html b/docs/docs/webdev/Utilities/intro/index.html index 41f79457b7..24997150bb 100644 --- a/docs/docs/webdev/Utilities/intro/index.html +++ b/docs/docs/webdev/Utilities/intro/index.html @@ -5,13 +5,13 @@ Utilities | EEA Design System - + - + \ No newline at end of file diff --git a/docs/docs/whatsnew/index.html b/docs/docs/whatsnew/index.html index 0a60b7245f..4c41aa7650 100644 --- a/docs/docs/whatsnew/index.html +++ b/docs/docs/whatsnew/index.html @@ -5,13 +5,13 @@ What's new | EEA Design System - +
-

What's new

EEA Design System (1.0)

Components ready to be used

The following components are ready to be used as Volto blocks, slate integration, or via the advanced block styler:

  • Accordion block
  • Call to Action block
  • Callout - part of the Description block, slate
  • Card - part of the Teaser block and Listing block, it includes several variations like round card e.g., used for Avatar
  • Divider block
  • Headings slate
  • Hero block
  • Item block - used for text with an icon (remixicon or custom SVG/image) on the left/right
  • List slate - ordered and unordered
  • Quote block
  • Statistic block
  • Tag block
  • Table block
  • Tabs block
  • Timeline block

Future releases

Below is a non-exhaustive list of the work-in-progress which is planned for future releases:

  • Navigation Portlet (used on the left/right hand of content)
  • Spacing/padding system. We want to add the ability for editors to consistently apply various spacing/padding on certain components in order to allow a better alignment when components are used together.
  • Improve docusaurus and storybook with more components, controls, and variations in order to better reflect what is possible in Volto.

Generated by auto-changelog.

Unreleased - 2023-04-07T19:47:24.545Z

🚀 New Features

  • feat(storybook): components keyboard and screen reader optimization #324 from eea/design-system-accessibility 85faff7

🐛 Bug Fixes

  • fix: dont run isInternalURL twice a48984e
  • fix: github autoformat be97749
  • fix(cards): focus outline for header needed for the overflow hidden solution with max title lines 849a7a8
  • fix(header): external url in header now takes you to the correct url #330 from eea/header-external-url-fix 086c61d
  • fix(item): flex variant on edit when inside blockchooser #333 from eea/fix-item-csss 65b9099
  • fix: external url in header 9e3aea6
  • fix: check if client method change 7c53b83
  • fix(item): use child selector instead of descendent as it interferes with blockchooser refs #157040 ad4ca37
  • fix(tag): fix in args 18eaaf4

💅 Enhancements

  • refactor(megaMenu): align menu items with demo site for better testing 82a5c84
  • refactor(breadcrumbs): updates on structure and story for accessibility 770c8c0
  • change(logo): update eionet svg 3c87fc7
  • refactor(downloadLabeledIcon): accessibility fix df3935d
  • refactor(languageLabeledIcon): accessibility fix 61edd9e
  • refactor(megaMenu): Restructure Topics and Countries lists d816e7a
  • refactor(newTabLabeledIcon): accessibility fix 211e40a
  • refactor(comment): accessibility fixes and text button update dad8cb6
  • change(mega-menu): use lists for navigation, enhance voice over support for better accessibility d13137f
  • change(storybook): removed links for Label and Comment that we implement without a link ee0bfdf
  • refactor(card): fix header outline not showing issue 48fc2e2
  • refactor(header): firefox accessibility errors fix c7d35b9
  • change(ContextNavigation): accessibility updates, not restructuring of the volto component 03fe83d
  • refactor(modal): restructure close icon as button f1b836e
  • refactor(label): add href attribute to links 05f664d
  • refactor(inpageNavigation): restructure as a button 48e22ac
  • refactor(labeledIconGroup): group updates for all labeled icons a679d9d
  • change(breadcrumbs): label modification for better screen reader output c967bef
  • refactor(checkbox): accessibility fix 3b3047f
  • change(card): simplified headerLineHeightOffset used as margin top for cards header ca61105
  • refactor(megaMenu): clean up function after test 883eb73
  • change(mega-menu): added code to align countries left column subtitle with the right column 1aa33dd
  • change(mega-menu): sub-title padding tweaks for better spacing normalization e08668d
  • change(logos): updated eionet logo used in the site footer #318 from eea/footer-logo-update 70671d0
  • change(breadcrumbs,mega-menu): better screen readers support, see links instead of groups #309 from eea/firefox-accessibility-tab-issues d6b0b4a
  • change(breadcrumbs): fixed sizing of breadcrumbs list items 1761e98
  • change(checkbox): toggle hover color correction 4f4d0df
  • change(card): add links to teaser titles cc64c74
  • change(inpageNavigation): story improvements ade63c6

🏠 Internal changes

  • style(megaMenu): remove comments and unused properties fa5f8f8

🏠 Documentation changes

1.0.6 - 2023-03-29

🚀 New Features

  • feat: add viewport-(width/height) less functions and fixed banner image url #329 from eea/develop e8e70bd
  • feat: add viewport-(width/height) less functions 68300a3

💅 Enhancements

  • change(docusaurus): set full class name for remix icons f435e10
  • refactor(Banner.jsx): use flattenToAppURL helper function to get image source URL 24b13d7

🏠 Internal changes

  • style(theme): update container width and margins in eea theme 3e4446a

🛠️ Others

  • horizontal overflow hidden in view mode f395f27

1.0.5 - 2023-03-28

🚀 New Features

  • feat: improve full-width class 70bba7e

🐛 Bug Fixes

  • fix(banner): Add missing divider for time tag #327 from eea/banner-metadata c46a583
  • fix(banner): Add missing divider for time tag 7d68c39

1.0.4 - 2023-03-27

🚀 New Features

  • feat(copyright): Add copyright prefix - Image - refs #250724 6a72772

🏠 Internal changes

  • style(copyright): Cleanup useless min-height - refs #250724 f2457df

🛠️ Others

1.0.3 - 2023-03-24

🐛 Bug Fixes

  • fix: improve full-width class 9322259
  • fix(header): Remove z-index from subsite logo #320 from eea/subsite-logo 5091100
  • fix(header): Remove z-index from subsite logo d433a97

💅 Enhancements

  • change(header): Add search popup customizations from eea-website-theme 43e5a78
  • change(popup): create custom popup for better accessibility 036aac9
  • change(popup): added most important popup properties from Semantic ui implementation 61f65bc
  • change(banner): use custom-made Popup for better accessibility 10d0fcf
  • change(banner): use custom-made Popup for better accessibility 9108bee
  • change(popup): added also the basic property a4497ac
  • change(colors): update gray-4 color value #321 from eea/update-gray-4 f458ff0
  • change(banner): MetadataField now uses proper time tag when value is datetime b4c4d34
  • refactor(tokens): updated gray-4 b890df7
  • change(footer): Fix error and empty div if no social links are present #319 from eea/footer-social 8922246
  • change(footer): Fix error and empty div if no social links are present 5d934a6

🛠️ Others

1.0.2 - 2023-03-14

🐛 Bug Fixes

  • fix(megamenu): topic menu title is now placed before content 6004bcb
  • fix(megamenu): removed in depth nav_title renaming that set title wrongly to a-z topics 899ca0e

💅 Enhancements

  • change(megamenu): removed special styling from at a glance mega menu section fd0c4c8
  • change(footer): renamed thematic information platforms to environmental information systems e7004a7
  • change(docusaurus): updated static image of footer sections 4ff3185

🏠 Documentation changes

  • docs(What's new): Update 'What's new' d7ed9d6

🛠️ Others

  • fixed accordion selector typo f4cabc8

1.0.1 - 2023-03-13

1.0.0 - 2023-03-13

🐛 Bug Fixes

  • fix(Footer): Open internal links within the same page 5b3e409

💅 Enhancements

  • change(banner): use huge scale instead of full image for better performance 381c58e

1.0.0-beta.6 - 2023-03-10

🚀 New Features

  • feat(site): serve Roboto fonts from eea design system package instead of google fonts #311 from eea/roboto-library f6a1b3e

🐛 Bug Fixes

  • fix: full-width is now properly sized 6e2e348
  • fix(storybook): add fontDisplay 078966a

💅 Enhancements

  • change(image): copyright position fixes, moved image floating to image-block-container 53422e0
  • change(colors:) update the design system colour palette #312 from eea/update-color-palette a5fb694
  • refactor(docusaurus): added roboto library 19de7b1
  • refactor(storybook): added roboto library e991621
  • refactor(tokens): update colours 3a2c1e1
  • refactor(storybook): restored site variables a48478b
  • change(copyright): implemented copyright hover design 6b12441

🏠 Internal changes

  • chore(storybook): switched google fonts to true 4a8cae4
  • chore(colours): changed back yellow 6 87c9bbc
  • chore(lint): lint 9b0f125
  • chore(storybook): lint 29bc809

🏠 Documentation changes

  • docs(colours): colours update 161007e
  • docs(colours): accessibility ee342aa

🛠️ Others

1.0.0-beta.5 - 2023-03-07

💅 Enhancements

  • change(carousel): tweak size of carousel dots for better touch interaction e1fb823
  • change(footer): removed min width and height from links ac33219

🏠 Internal changes

  • style(hiddenStructure): Add hiddenStructure utility to be used with h1 heading on frontpage - refs #158717 672cca2

🛠️ Others

  • fixed less build failure due to changes in footer.less 190bc8c
  • lazyload bg img on footer also ae07162
  • lazyload footer images a0633c9
  • Increase performance - mobile friendly 07d86c8
  • better useOnScreen hook c214b6b
  • role change for accessibility 5e758e0
  • minimum tap dimension for mobile a25e9a8
  • Release 1.0.0-beta.5 e4417e1
  • Add Sonarqube tag using eea-website-frontend addons list b227cf8
  • feature(mobile): increased performance by lazy loading footer images #303 from eea/increase_performance 80d1df1
  • useOnScreen default export 3e6cfdd
  • use aria-labels on dropdown 27e1443
  • prettier a7f8384

1.0.0-beta.4 - 2023-03-01

🚀 New Features

  • feat(footer): Add footer description 2ad0f71
  • feat(footer): Add footer description #306 from eea/footer-description bf655d1

🐛 Bug Fixes

  • fix(footer): Don't show empty row if description is not present 2ca7f7d
  • fix(footer): Add class for children 3c50d15
  • fix(search): Fix search links color #307 from eea/search-accessibility a76f48b
  • fix(search): Fix search links color 69c42ef

💅 Enhancements

  • change(carousel): tweak card width and padding for better arrow alignment e184f70
  • change(storybook): include footer description in storybook e904aa0

🛠️ Others

1.0.0-beta.3 - 2023-02-21

🚀 New Features

  • feat(accordion): storybook accessibility by using buttons for titles #297 from eea/accessibility-accordion 809d52b

🐛 Bug Fixes

  • fix(dropdown): remove close on blur so that we can navigate links using keyboard 5442715

💅 Enhancements

  • change(language): dropdown to use links for proper keyboard navigation 6a7de30
  • refactor(images): cleared unused/renamed images assets 821f5c1
  • refactor(Accessibility): add box-shadow on focus-visible components b1adcc3
  • refactor(images): remove unused docusaurus svgs c5ef14c
  • refactor(header): add escape key functionality, actions from div to button to have proper focus state 8081aa4
  • change(language): restore dropdown duplication in order to properly show and hide language dropdown cb28888
  • change(search): to reflect changes from eea-website-theme 2cc35e0
  • refactor(footer): update p with h3 heading tag for header ca1477b
  • refactor(footer images): removed unused/renamed 186de6b
  • refactor(Accordion): div titles to buttons, test in mobile mega menu accordions eaad4b4
  • refactor(docusaurus): cleanup decorative images fedc4d4
  • change(accessibility): style outline instead of box-shadow 53209f3
  • refactor(Footer): update mobile header size 01ab7f0
  • change(header): set the logo class directly on the link f8fba50
  • refactor(images): clear docusaurus unused pngs db5c611
  • refactor(header-images): removed unused 8250d94
  • change(language): hide language dropdown by default cc6064f
  • change(header): top dropdown menu keyboard navigation #293 from eea/accessibility-megamenu-searchbox 1e6fa65
  • change(button): set focus styling for buttons 33ebfca
  • change(footer): Avoid devtools warning in FooterActions #304 from eea/avoid_warning d774824
  • change(footer): Accessibility update p with h3 heading tag for theme sites title #302 from eea/footer-accessibility 5bf70de
  • change(documentation): Rename all image files to follow the agreed convention #301 from eea/refactor-image-filenames cfe44ef

🏠 Internal changes

  • style(header): react syntax fix 3add127
  • chore(docusaurus): ignore website/.yarn 0b33ffd

🏠 Documentation changes

  • docs(guidelines): add image name convention 290747c

🛠️ Others

1.0.0-beta.2 - 2023-02-13

🐛 Bug Fixes

  • fix(footer): action and copyright #300 from eea/develop 579f3e4
  • fix(footer): action or copyright links are simple a tags for external link 9af5070
  • fix(accessibility): added navigation and footer id's for skip link 48354b9

💅 Enhancements

  • change(footer): typos and modified footer links to be center aligned ac23f04
  • change(footer): added gap for actions and copyright 7d32ddd
  • change(footer): modified footer gap b8a820a
  • change(footer): removed extra text and date from copyright section af47bbe
  • change(navigation): raise z-index of go to top link 485ca72

🏠 Internal changes

  • chore(docs): Update eea.hbs template to beta - refs #158717 196538e

🛠️ Others

1.0.0-beta.1 - 2023-02-09

🚀 New Features

  • feat(search): Add search suggestions style 6b2b77b
  • feat(search): Add search suggestions style #296 from eea/search-suggestions 3b0c956

💅 Enhancements

  • change(search): Add proper margin for search popup 190c9f5

🛠️ Others

1.0.0-alpha.15 - 2023-02-08

🚀 New Features

  • feat(Card): add teaser card grid story 53cac0b
  • feat(utilities): Complete list of text-align utilities - refs #160747 224fab6
  • feat(small): CSS for small HTML tag - refs #160747 ad3c0ad
  • feat(fw-light): Add font weight light utility - refs #160747 c44cf57

🐛 Bug Fixes

  • fix(card): teaser card dimensions on tablet size #290 from eea/teaser-card-grid 013fdf5

💅 Enhancements

  • change(card): added extra content for teaser card story 30690ae
  • refactor(style-menu): add text-color to paragraphs styles #291 from eea/stylemenu-theme-colors 2d78307
  • change(header): Small fix in search popup #292 from eea/search-popup 86c1305
  • refactor(style-menu): add text-color to paragraphs styles 3446bc2
  • change(color): darkCyan is now replaced everywhere by the new green ef3791d
  • change(header): Small fix in search popup 3d622ea

🛠️ Others

1.0.0-alpha.14 - 2023-01-30

💅 Enhancements

  • change(mobile menu): integrate a-z topic with menu rendering logic #287 from eea/develop 05d4c04
  • change(mobile menu): integrate a-z topic with menu rendering logic 246d3d8

🛠️ Others

1.0.0-alpha.13.1 - 2023-01-30

💅 Enhancements

  • change(mobile menu): hardcode a-z topics to '/en/topics-in-depth' #286 from eea/develop 6436224
  • change(mobile menu): hardcode a-z topics to '/en/topics-in-depth' 5235b52

🛠️ Others

1.0.0-alpha.13 - 2023-01-27

🚀 New Features

  • feat(utilities): added has--bg--top center and bottom utility classes 051e6d7

🐛 Bug Fixes

  • fix(header): update green color used in page header #284 from eea/fix-banner-background 29d54db

💅 Enhancements

  • change(site): added fixes from customVolto.css to design package 51ba9b5
  • refactor(Banner): update banner background green color fd4a552
  • change(mobile menu): changed link for a-z topics to point to in depth 721bf23

🛠️ Others

  • 1.0.0-alpha.13 release #285 from eea/develop c966940
  • bump next version to alpha 13 897e906
  • Back to dev 5780dc7

1.0.0-alpha.12 - 2023-01-24

🚀 New Features

  • feat(card, colors): visited color change and title on image option for cards #283 from eea/develop e638ee6

🐛 Bug Fixes

  • fix(mobile menu): sub links when an accordion section is active bb3be81

💅 Enhancements

  • refactor(Card): create card template for stories 2fa77f3
  • refactor(Card): add image with title css 6e6e63e
  • change(card): implement title on image within image section ff6cc60
  • change(card): added image card section, tweaked mobile heading size 0f879e1
  • change(cards): moved image gradient overlay to a mixin.less file 8b4928a
  • refactor(card): Update titles value and size c35ad5c
  • refactor(docusaurus): applied image naming convention ee7bc29
  • change(cards): added image for all storybook card examples 3f19413
  • change(banner): restored label value of metadata field when type isn't date 571a4f2
  • change(card): title padding value for a more balance look 74b6556
  • change(card): removed uppercase transform from title on image 2948ae1
  • change(colors, Docusaurus): Visited link colour change and thematic logo replacement #278 from eea/refactor-visited-link f82d978
  • refactor(storybook): visited link variables b209b2f

🏠 Documentation changes

  • docs(colors): visited link update ece77fe

🛠️ Others

  • fix typos in footer gradient variables 4006640
  • change version to alpha 12 instead of 1 final 3225025
  • feature(card): new card variation with title on top of image #267 from eea/title-on-image-card 2c0ca95
  • Back to dev 477d997

1.0.0-alpha.11 - 2023-01-17

🚀 New Features

  • feat(docusaurus): Header and footer elements section #277 0df271c

🐛 Bug Fixes

  • fix(banner): storybook date input and simplified gradient opacity 7674d76
  • fix(banner): re-added title class on banner title 6d15799

💅 Enhancements

  • refactor(banner): sync storybook and Volto component c9087cc
  • change(banner): removed margin from title 17e592c
  • refactor(banner): sync storybook and Volto component #275 from eea/sync-page-banner-theme 4331fb4

🏠 Documentation changes

  • docs(footer): updates on header elements b41c550
  • docs(footer): add elements anatomy d9f0872

🛠️ Others

  • add(banner): banner title css d003247
  • Release 1.0.0-alpha.11 07e8f85
  • renamed image elements as requested in review 8541fb6
  • remove(banner-gradiant): image gradiant in favour of text 1b58520
  • update(gradient): use 8deg angle 6fd597d
  • update(gradiant): make it 0deg 1bb2696
  • remove(comment) referencing old verison of title 4226d42

1.0.0-alpha.10 - 2023-01-13

🐛 Bug Fixes

  • fix(subsite): Fix logo size on subsite section 65fff54
  • fix(subsite): Fix logo size on subsite section #279 from eea/subsite-fixes 8f6cf94
  • fix(mega-menu): show sub grid only if there are children ddfbd82

🛠️ Others

  • Add variable definitions 293fe65
  • Release 1.0.0-alpha.10 7014d08
  • Add Sonarqube tag using advisory-board-frontend addons list ef58a6f
  • Back to dev 31d4616

1.0.0-alpha.9 - 2022-12-28

💅 Enhancements

  • change(contextnav): Default title is text, custom title is link #273 from eea/context-nav-link-title ef7bdb7

🛠️ Others

  • Show document and folder content-type in Navigation listing 8471db3
  • Default title is text, custom title is link 1ae95b0
  • Context nav title link to # a27a6b7

1.0.0-alpha.8 - 2022-12-23

🚀 New Features

  • feat(copyright): Align copyright options with Volto integration - refs #158210 6bac7f6

💅 Enhancements

  • refactor(logo): import theme site logos to the story 2f29136
  • refactor(logo): update logo and mega search gradient e11f44d
  • refactor(logos): convert logo names to lowercase 07b8228
  • change(item): use default logic of setting align class on content 6b5b47c
  • refactor(logo): update logo 170efe5
  • refactor(logos): convert storybook logo names to lowercase c4b24ec
  • refactor(logo): add eea roboto font logo variations de1224a
  • refactor(logo): add container and segment to logo story 61eff16
  • change(item): removed requirement for aligned classes to be on content 30c0d5d
  • change(logos): cleanup eea logo reference to only eea-logo and eea-logo-white.svg 2796e05

🏠 Internal changes

  • chore(npmignore): Reduce npmjs package size 164c8a5
  • chore(npmignore): Reduce npmjs package size ade9d5b
  • chore(docs): renamed logo mdx to md 52e9d46

🏠 Documentation changes

  • docs(logos): svgs without classes 28a5833
  • docs(logos): add dark mode logos ccc1609
  • docs(logo): update eea logos and add logo wrapper 91cdd66
  • docs(logo): update logos on docusaurus 760e101
  • docs(logos): updated svgs dc224e1
  • docs(logos): add thematic logos 5a21a30
  • docs(logos): add zipped svgs for download 5855bf8
  • docs(logos): wisef logo update 8f90b59
  • docs(logos): move to static, add download 8c1fd5f
  • docs(logos): improve eea logo visibility 82188ab
  • docs(logos): change eea logo to svg f57b846

🛠️ Others

  • logo update or docusaurus thematic logo listing #274 from eea/develop dde90be
  • (feat): Add ability to disable the language select from website top menu - refs #158616 411c8e4
  • Proof reading page header section 230239e
  • bump package version b4628be
  • feature(docusaurus, storybook): logos selection for sites plus inverted options #253 from eea/doc-logo-page dbfc90d
  • Add Sonarqube tag using advisory-board-frontend addons list c4769e9
  • test(Jenkins): Run tests and cypress with latest canary @plone/volto 92feea0

1.0.0-alpha.7 - 2022-12-16

🚀 New Features

  • feat(item): normalized size for image or icon items #258 from eea/refactor-items 945170f

🐛 Bug Fixes

  • fix(card): rounded after removal of has--rounded--true style class d4727af
  • fix(item): removed margin set for description which pushed the text from icon d9d4031
  • fix(project): Proper paths if volto-eea-design-system package is not installed, but in development #270 from eea/correct_paths 0f8ee8d

💅 Enhancements

  • refactor(item): update icon variations and paddings 6a407b3
  • refactor(item): update spacing 2fd91c4
  • refactor(item): initial values for new sizes & add description class 3546296
  • refactor(item): add icon and more size options 1120bb6
  • refactor(item): update image and icon sizes b802573
  • change(item): set same height as width on item images 69cbd23
  • refactor(item): update item part 2 9812ae2
  • change(item): rename large to big class 24ff127
  • change(item): added tiny size that outputs 24px icon sizes 2ea9636
  • change(image): added preview image size default to 400px a0aa867
  • refactor(item): update operator for condition controls 149ccb2

🛠️ Others

  • Proper paths if the package is not installed, but in development 7a2655f
  • Update .project.eslintrc.js a2fd3f2
  • added back descriptionDistance variable until package release 3af811a
  • Release 1.0.0-alpha.7 7e66bcc
  • Add Sonarqube tag using cca-frontend addons list ce47e9b
  • Back to dev cb531c9

1.0.0-alpha.6 - 2022-12-07

🚀 New Features

  • feat(copyright): create copyright component and import it in banner 8fcde9d
  • feat(Header): add hideSearch prop 13ddfe5
  • feat(Docusaurus): Image copyright information #257 from eea/image-copyright-info 2119515

🐛 Bug Fixes

  • fix(tags): content gap when using tags-content wrapper c4eb9b8

💅 Enhancements

  • refactor(hero): add copyright component to hero 0fa88fa
  • change(copyright): implementation to add classes on content sections e10bde6
  • change(copyright): removed color variant 747b8a2
  • change(copyright): removed copyrightVariant from Banner and Hero stories ac62e07
  • change(tagList): modified implementation to align to volto-tags-block 7a57a3d
  • refactor(copyright): remove data section 52cb09d
  • change(copyright): line height to match page header implementation a56254e
  • change(copyright): now uses text color css variable with fallback to white ee7268b

🏠 Documentation changes

  • docs(copyright): copyright documentation a90ed76

🛠️ Others

  • Update usage_markdown.md f76d4a2
  • grammar fixes cb2a5a5
  • Release 1.0.0-alpha.6 6ca32f0
  • feature(copyright): image information #250 from eea/feature-copyright a8618c7
  • lint fix by introducing local variable tagsGap 7b6c0ae
  • Update 3-images.md 1b0ef03

1.0.0-alpha.5 - 2022-11-29

🚀 New Features

  • feat(Iconography): import and showcase remix icons 777112f

🐛 Bug Fixes

  • fix(docusaurus): right bar overflow fix 197c763
  • fix(lists): bullet position by using padding instead of margin 0ecae2e
  • fix(label): color for yellow variant as white isn't accessible on yellow color 91d8880
  • fix(contentBox): avoid text decoration for header-link added on cards 3ccb592
  • fix(label): margin value for ribbon image left and right margin f8e1129

💅 Enhancements

  • refactor(docusaurus): eea color palette in separate file 6c855df
  • refactor(docusaurus): classes for color boxes 80219d5
  • refactor(docusaurus): move supplementary, state and link colors to partials 2776be3
  • refactor(docusaurus): fix side menu / moved more content in palette partial f5b7077
  • change(tag): set gap on tags element for margin between tag elements 726bc6d

🏠 Internal changes

  • chore(colours): fix wrong class name 51ad0a8

🏠 Documentation changes

  • docs(docusaurus): Iconography updates, thematic platforms 2a0e596
  • docs(colors): thematic pages integration ea7a422
  • docs(docusaurus): color updates cc13b54
  • docs(colors): fix swatches accessibility 306cb74
  • docs(docusaurus): typography and colors fixes according to comments on PR ae20a72
  • docs(colours): adjust logos heights 854d4fb
  • docs(typography): merge designer and dev units 65c240e
  • docs(typography): readded extra font sizes, fixed fluid a4a5d89
  • docs(typography): changed em to percentages d417600
  • docs(colors): minors updates and instructions 84ac882
  • docs(colors): blue-grey-6 adjustment e7ab2d1
  • docs(colours): added active colour 574f7a9
  • docs(colors): switch FISE logo to png 335471f
  • docs(colors): updated visited 0248fd1
  • docs(FISE): replaced logo f7d8331

🛠️ Others

  • perf(docusaurus): added remixicon and roboto locally b67b1a7
  • feature(Docusaurus): Updates on color palette information including thematic websites #231 from eea/refactor-docusaurus ec7843d
  • Upgrade Jenkinsfile storybook to yarn 3 d20de8d
  • Back to dev 563fbc5

1.0.0-alpha.4 - 2022-11-22

🐛 Bug Fixes

  • fix(cards-storybook): load slick carousel css for arrow and pagination styles 1159b1b

💅 Enhancements

  • change(cards): refactor cards theming implementation d4e4542
  • change(cards): allow rounded, inverted and theme parameter to be set by has classes 4b4ad89
  • change(card): expect has classes on the card directly 6a9e38b
  • change(utilities): added has text classes to the text alignment utilities e6974c6
  • change(utilities): modified class name for text align using has naming 579a0cb
  • change(theme): ensure that only direct children of container have a default top and bottom margin 7f8b8dc
  • change(build): upgrade action to trigger workflow and wait to latest version c63ad3f
  • refactor(card): theming implementation to allow has theming classes #265 from eea/card-refactoring 24edc99
  • change(theme): add slick-carousel dependency f2eec7d

🛠️ Others

1.0.0-alpha.3 - 2022-11-16

🚀 New Features

  • feat(Header): Add subsite section styling #263 from eea/subsite 00398b8

🐛 Bug Fixes

  • fix(search): position now changed by default to absolute from relative 51b08fc
  • fix(megaMenu): remove paddings for buttons added by active class ec33ebf

💅 Enhancements

  • change(components): load overrides files for our defined semantic files adde7a9
  • change(container): fullwidth now take into account devices without hover 5a35a65
  • change(container): ensure only the top level elements behave like containers 98b85d1
  • change(container): modified column-block grid to remove margin and padding when using full width class 35c1cee
  • change(mega-menu): hide home link and accordion content from mobile menu 1a69172
  • change(container): width from min width 1280px to 1365px max width 66e551e
  • change(container): removed app extras and view setting of layout sizes f6dc1ee
  • change(views): customized DefaultView to pass class into page-document area 91123aa
  • refactor(megaMenu): desktop - use buttons for menu section titles and readjust content cb9315f
  • refactor(megaMenu): add nav_title and nav_description attributes 0d7a568
  • refactor(megaMenu): style sub-title and nav-description b2a48fd
  • refactor(sidemenu): add third level list and items & update active indication e2d87da
  • change(columns): implement narrow, container and wide width classes 9696b54
  • change(container): story to add classes that modify the max width of the containers 37948f8
  • change(container): affect only left and right margin of containers 183265b
  • change(containers): modified class names after layout checks 1dc3689
  • refactor(sidemenu): add is_in_path and is_current attributes for an active example a3fe7fd
  • change(container): story to avoid adding containerwidth property to container div c13d83c
  • refactor(megaMenu): mobile - use buttons for menu section titles a7b632f
  • refactor(megaMenu): update padding variables c5f2583
  • change(views): moved narrow style bellow the default container width styles 72fa58d
  • change(listing): removed container from default view page-document area 69f3d8f
  • change(views): rename classes names to width_view and added app extras layout component 745b772
  • change(container): use important flag for left and right margin a49c83a
  • change(container): add variables for edit and add section of containers f2e2c33
  • refactor(megaMenu): update sub-title paddings 992f919
  • change(site): add a 1rem margin top and bottom on all styled classes dabf6c1
  • change(homepage): removed hiding of staging banner from homepage 4ba2cd7
  • change(container): unset values of page-document on 1200+ browser width dd5bea3
  • change(megamenu): set children to be appended to the right of the menu title b69c23a
  • change(theme): modified wide width to point to 1320px as it's perfectly divisible by 4 8f82573
  • change(theme): modified wide width to point to 1368px as it's perfectly divisible by 4 2349fee
  • change(container): renamed content-text-width to container-text-width 6f788c2
  • change(listing): provide ui container fallback if no class is passed to default view af9e94d
  • change(narrow-view): re-added container class to page-document 56b44a6
  • change(view): set container width for view-viewview class as well 29dc324

🏠 Internal changes

  • style: load header/footer overrides e5b5e0f
  • style(megaMenu): restore item description color 8a19bbb
  • style(megaMenu): restore accordion content bottom padding 8e0c5a7

🛠️ Others

  • Add subsite styling e79c0ed
  • WIP settings column grid width when using full size class affc7ac
  • code cleanup 2cdc3e5
  • fix eslint 30c52e4
  • test(estlint): Fix .project.eslintrc.js aaeaa07
  • modified left value of full width classes with toolbars 70d82d4
  • Release 1.0.0-alpha.3 8fc86a7
  • feature(content): added NarrowView useful for modifying the containers from content-area d937df7
  • jslint fix 9846159
  • Feature(container): flexible container size #260 from eea/feature-flexible-container 8f84c5b
  • Add Sonarqube tag using circularity-frontend addons list 76a41c7
  • fix broken variable call for contentBox.variables introduced in previous commit by mistake d249c11
  • clean up 89f3cb3
  • removed console log from code fad86ae

1.0.0-alpha.2 - 2022-10-28

💅 Enhancements

  • change(documentation): grammarly proof-read suggestions 9f609be
  • refactor(volto-slate): Upgrade to @plone/volto-slate - refs #153447 853d9d1

🏠 Internal changes

🛠️ Others

  • test(cypress): Upgrade to Cypress 10 / Razzle 4 c1c1f4b
  • more explanations a8b2272
  • add announcement bar, showing that EEA DS is WIP e14aeac
  • Update dependencies ee30a2b

1.0.0-alpha.1 - 2022-10-20

💅 Enhancements

  • refactor(footer): update svg and tablet contact link sizes 6aba061
  • change(blockquote): renamed to Callout reflecting the correct naming from Storybook 61a518c
  • change(footer): Shadow removed from logo & tablet updates #252 from eea/fix-footer 6df783d
  • change(colors): updated theme classes for text to use css variable colors cb089fd

🏠 Internal changes

  • style(footer): reduce social icons margin f6a9cf7

🏠 Documentation changes

  • docs(alpha): Update included components in 1.0 alpha version - refs #154387 fcc5af9
  • docs(callout): Rename Blockqoute to Callout in docusaurus - refs #154387 8d733ac

🛠️ Others

0.9.6 - 2022-12-16

🛠️ Others

  • Release 0.9.6 ae19b83
  • feature(copyright): image information #250 from eea/feature-copyright 7b323ed
  • Release-it 1f5671d

0.9.5 - 2022-10-20

🐛 Bug Fixes

  • fix(statistic): margin and slate colors when using the inverted options f263dea

0.9.4 - 2022-10-19

🐛 Bug Fixes

  • fix(edit-interface): block chooser and power user menu item colors when inside content-box 7aee4f1
  • fix(header): hero text going over the logo and menu on mobile resolutions 1434508
  • fix(content-box): z-index of box-inner and added underline to slate links c8b7c7e
  • fix(content-box): adding of underline to links c2f5f0f

💅 Enhancements

  • change(banner,colors): content box theme aware colors banner changes#254 from eea/develop bcb9a8c
  • change(Banner): Add subtitle subcomponent bb67f4c
  • change(item): moved svg filter definitions to item.overrides de70366
  • change(accordion): accordion titles with themes colors can now be modified by css variables e2ac13e
  • change(colors): in lists and callouts to allow color changes 940d1b8
  • change(colors): added backgroundColorSupplementary color variable 1f5262a
  • change(list,bullet): color is no longer primary instead it's text color css variant 8c04670
  • change(statistics): use theme colors with css variable for easy color customization fb72a01
  • change(Banner): Show label in metadata field 1acda3c
  • change(tags, items): use text color with css variable for content color for easy customization 6660e2e
  • change(styling): modified naming of theme css variables a332961
  • change(colors): added backgroundColor color variable b7e6831
  • change(quote): use secondary css var for easier color replacement 7a32312
  • change(statistics): tweaked margin of statistics so that they don't overflow over context boxes b4a8e33
  • change(accordion): allow customization of accordion title background color 6590baf
  • change(colors): introduced css variables for primary colors #247 ac80825
  • change(content-box): override primary text color to white as well 28b43c7

🛠️ Others

  • Include changes in the storybook a4d9fa4

0.9.3 - 2022-10-04

🐛 Bug Fixes

  • fix(card, contentBox): meta font size, removed header override of cards a7f94b9
  • fix(List): Ordered list item story - refs #155248 c70a2bc
  • fix(OrderedList): li third level margin left - refs #155248 fba5cb9
  • fix(cards): inherit color of card description ceda799
  • fix(accordion): Fix content default padding - refs #153783 566adf7

💅 Enhancements

  • change(site): committed fixed from custom into eea design package 9b9a1fd
  • change(jenkins): added yarn policy for storybook building 3d1b844
  • change(docusaurus): typography updates 60a93a4
  • change(item): added item image coloring when applying theming classes 0403fe4
  • change(accordion, site): change text color to tertiary instead of black 4641058
  • change(accordion): allow customization of accordion title with css variables 15e7d27
  • change(content-box): added css variables that will set text color and background for children 86cac53
  • change(tabs): allow customization of tab active and hover color 4370f42
  • change(tabs): color for tabs-block section 6778c92
  • change(cards): by default date is set to appear on the right of the meta section b7b80e8
  • change(cards): carousel dots are now relative positioned daa40a4

🏠 Documentation changes

  • docs(typography): update, local fonts 39a32d9
  • docs(typography): token fix to match used values for heightheight and letterspacing 91693ec
  • docs(typography): token fix to match used values for lineheight ff41b56
  • docs(typography): remove semibold 6eb3e08

🛠️ Others

  • test(cypress): Fix md5 dependency 17f618e

0.9.2 - 2022-09-27

0.9.1 - 2022-09-27

💅 Enhancements

  • change(cards): added ability to change the text alignment using css variables ed532ac
  • change(styles): use flex-end values only instead of end to avoid babel warning 24244b2
  • change(rounded): image size, border radius to ensure more image are turned into rounded options 51e23c1

🛠️ Others

  • Merge pull request #243 from eea/develop 576564c
  • Add Sonarqube tag using eea-website-frontend addons list 4a5be6e
  • Back to dev b251255

0.9.0 - 2022-09-19

🚀 New Features

  • feat(countUp): intall countup package and import it in statistics 10ba7cf
  • feat(docusaurus): custom editUrl function for the components usage pages - taskman refs #154076 93c4240
  • feat(site): Styling scroll-to-text fragments #238 1883fcf
  • feat(docusaurus): added Edit this page link in footer of each page - taskman refs #154076 2cf8746

🐛 Bug Fixes

  • fix(header): Prevent dropdown closing when clicking inside content 838f340
  • fix(cards): position of bullets and arrow clicking on events page 148723 22ef828
  • fix(cards): rounded images show up now even when card parent is cards 48f5e81
  • fix(statistic): add a min-width to content so unwrapped statistics don't break 7c5d511
  • fix(sideNavigation): add role list to list item 58f322b
  • fix(sideNavigation): remove unused useState import f9ea677

💅 Enhancements

  • refactor(sideNavigation): implement the design to the initial navigation & make component dynamic b673d63
  • refactor(header): update top bar 626bdd5
  • refactor(statistic): create custom export and add links 9f9ed56
  • refactor(statistic): update inverted style and add background variations 7578dc6
  • refactor(statistic): remove horizontal display on mobiles & update columns control 58f00e1
  • refactor(header): minor fixes spotted in testing 0f0f3ab
  • refactor(header): update main section heights d669f01
  • refactor(sideNavigation): remove green border and divider 939cd9b
  • refactor(link): update colors for link states 3e9f599
  • change(cards): styles img tag outside of .image ee89274
  • refactor(sideNavigation): update controls a3e8430
  • refactor(statistic): fix firefox issue for fit content 87aa113
  • change(statistics): rearrange controls order b19ae70
  • refactor(statistic): add max width to wrap text for all content 758f8ce
  • refactor(statistic): add max width to label so it wraps the text 824a127
  • change(Side menu & in page navigation): styling according to figma design #221 b2df858
  • change(header): align header with latest figma changes #232 135cd68
  • change(cards): integration when cards also contain call to action buttons f0d8766
  • refactor(iconography): icon group headings b9ccd80
  • refactor(header): add variables for some sizes 8eae84e
  • refactor(Statisctic): Rename slateVariation to extraVariation a07c589
  • change(docusaurus): started example on how to add headings for iconography 53cf843
  • change(cards): remove center alignment of rounded cards body area, only the image is now centered fdfac48
  • change(color): updated link colors #234 feabfe7
  • change(mockup): Access to figma style tokens 0bb25be
  • refactor(statistic): update margin 5190f56
  • refactor(button): adjust vertical margin db6d441

🏠 Internal changes

  • style(statistic): update decimal point 7976aa4
  • style(link): update visited link color d3b18b3

🏠 Documentation changes

  • docs(iconography): added icons, guidelines 0073f1d

🛠️ Others

  • Delete 2-test-new-page.md 749eff9
  • Create 2-test-new-page ab623ff
  • Release 0.9.0 eb7e2e5
  • stylelint fix 114e3f9
  • Move text fragments style to site.overrides 8368cbe
  • Styling scroll-to-text fragments 1bb3914
  • Update Header.stories.js 9036c74
  • feature(Docusaurus): Reflect usage of remixicon in iconography page #239 0802b32
  • Update 1-design.md 146115a
  • Test workflow for contribution - taskman refs #154076 dcb924f
  • perf(figma): access to style tokens 27d8dbe
  • Rename 2-test-new-page to 2-test-new-page.md 4e3be10

0.8.1 - 2022-08-26

🐛 Bug Fixes

  • fix(message): fix size controls ee51e1d
  • fix(docusaurus): intro page hero title color now that headers are using tertiary color 618e3cb

💅 Enhancements

  • refactor(message): restore semantic variables 1c16621
  • refactor(messages): mix semantc and token colors for messages 12efa75
  • refactor(emotiveColors): temp update for tests 61a720c
  • change(footer): removed line between sections and moved actions back to the bottom of footer d9f33e4
  • change(storybook): headings storybook now uses tertiary color by default reflecting site options 1061e77
  • refactor(message): add container to story 1259ece
  • refactor(message): remove override with custom background color on error 9b40cd7
  • refactor(message): add header controls 960c2f7
  • change(message): use semantic colors for messages #204 from eea/refactor-message 22d2c43

🏠 Documentation changes

  • docs(figma): added figma files to repo 6bd4144

0.8.0 - 2022-08-20

🚀 New Features

  • feat(IconCard): card with icon instead of image a85a179

🐛 Bug Fixes

  • fix(docusaurus): typography guideline now has real font values for headings, body, caption and small text 9508db9
  • fix(card): fix content gaps, adjust new meta section and update text color for default f1a78e1
  • fix(item): remove duplicate argType dde0be5
  • fix(iconCard): add aria-label at links 44f64c7
  • fix(card): merge fix df440ec
  • fix(heroblock): color even on edit page by inheriting color instead of using the tertiary color ac53fb7
  • fix(tab): add tabindex for accessibility error ab512be
  • fix(carousel): restore missing variable 1728312
  • fix(carousel): restore flex grow for cards and opacity for arrows ce71305

💅 Enhancements

  • refactor(carousel) add links in carousel cards & update structure and variables of less files f99cb21
  • refactor(iconCard): add control for variations and link 5e1b6a1
  • change(docusaurus, fonts): documented font letter spacing modification 522712a
  • refactor(card): css updates for card variations and styling updates c8b4a43
  • refactor(publicationCard): add links and fix accessibily issue 80adf6c
  • refactor(card): add new section in meta and remove links bfb82ae
  • refactor(item): add stackable functionality 8d714fa
  • refactor(card): update meta section and controls 5e28e12
  • refactor(roundedCard): remove unnecessary code and controls and add all variations 6305c54
  • refactor(roundedCard): add optional link for image and header a6d3bf2
  • refactor(card): add tertiary hover and update css selectors ca06948
  • change(fonts): updated font sizes with values given in figma 4b0ae48
  • change(style): color, space and adjust line-height as described in docusaurus 3366da2
  • change(headings): only h2-h6 get tertiary color 7d81308
  • change(site): removed Archivo import as we should only use Roboto font a6af056
  • change(docusaurus): use tertiary color for headings and body color mirroring the design system styles 145fe73
  • change(fonts): modified headings font size as well as line height f0771ea
  • change(fonts): updated font sizes with values given in figma f16eef7
  • change(docusaurus): use Roboto font from google fonts also for docusaurus adca8e9
  • change(headers): added headerColor variable so that thematic sites can easily choose another heading color f09d2c5
  • change(fonts): typo fixes for typography section of docusaurus cae4b02
  • change(fonts): modified footer and header values afer global font size changes f160d35
  • refactor(iconCards): run prettier fe84e46
  • change(typography): inherit header colors with @headerColor variable 91d9357
  • change(breadcrumb): use tertiary color also for breadcrumb c5cbd44
  • change(heading): on homepage on the first hero set font size to h1 and inherit color 5711096
  • refactor(carousel): update card titles to display styling fix edd966b
  • change(docusaurus): use the tertiary color for body and heading colors 11c4ed4
  • change(typography): modified lineheight-0 after headers now use 1.2 instead of 1.25 04d78a8
  • refactor(card): add links to cards and replace description with title in carousel 0258737

🛠️ Others

  • feature(heading): and cards refactoring #227 from eea/develop 334fbda
  • Update package.json 3870cf3
  • Header refactor 153536 #226 from eea/header-refactor-153536 87a6fe7
  • feature(item): icon is now stackable moving the icon on top #220 b716acf

0.7.6 - 2022-08-15

💅 Enhancements

  • change(footer): Footer updates 147837 #225 fa9ae58
  • refactor(footer): initial redesign of main section 8e85617
  • refactor(footer): restructure theme sites logo columns dcba45a
  • change(footer): set actions before thematic section on mobile db25f96
  • change(footer): fix missing key warning from react dev 77f72d5
  • change(footer): Footer updates 147837 #222 32fed23

0.7.5 - 2022-08-11

💅 Enhancements

  • change(megamenu): mobile improvements with See all links, active elements and non accordion children #224 6767b99
  • change(megamenu): render accordion only if children have children be63ce2
  • change(megamenu): mobile menu design tweaks as seen in latest figma 26d74dc
  • change(megamenu): removed icon from at a change menu items and they are no longer bold as requested 043e772
  • change(megamenu): reset first level panels after each item pass 175351b
  • change(megamenu): mobile menu improvements #223 b3cabfe
  • change(megamenu): fixed key error warnings 075bf01
  • change(megamenu): handle default active sub accordion 6192a99
  • change(megamenu): enable active border only for items not titles fb0b869

🛠️ Others

0.7.3 - 2022-08-04

💅 Enhancements

  • change(megamenu): added icon on mega menu header section d0ad4d8

0.7.2 - 2022-08-03

🐛 Bug Fixes

  • fix(contentBox): z-index of content hidden by bg when using content-box-inner c5a7dac

🛠️ Others

  • Set focus on search input field in the popup on click d12c051
  • Make cypress tests work with both slate and draft selectors 4d8e5b1

0.7.1 - 2022-08-01

0.7.0 - 2022-08-01

🚀 New Features

  • feat(accordion,buttons): primary, secondary and tertiary variations #209 c34617f

🐛 Bug Fixes

  • fix(megamenu): key warning errors 4ecd279
  • fix(container): add padding also for block editors when we are on the add page not just edit b857aad
  • fix(header): bump opacity of gradient class to get rid of green hue of header text 2011b40
  • fix(header): remove console log 3a20023

💅 Enhancements

  • refactor(callToAction): add tertiary variant and restructure exports ac6695a
  • refactor(accordion): add color variations 3504c15
  • change(megamenu): WIP bringing back rendering of item with callback and path modification 6e43d43
  • refactor(megaMenu): add slide down transition and update targetRefs on close 9667157
  • change(megamenu): use renderMenuItem in order to render menu items 9ed5cbd
  • change(footer): replaced eionet logo with an svg variant and tweaked size of eionet to match size of eea logo 32ce462
  • refactor(callToAction): update tertiary state colors 159668a
  • change(accordion): style default accordion using the grey from semantic ui e24907d
  • refactor(accordion): add variations and create a default export 4a9c68f
  • refactor(colors): add tertiary shades for element states 1e24a7e
  • change(tests): try to modify tests to use slate instead of draft a2e2485
  • change(megamenu): set active class on storybook list items 112bff1
  • change(megamenu): add border for active element of menu 5e7dfa5
  • change(package): condition modification of navDepth settings dd21dad
  • change(mega menu): use non variable to fix build of volto-kitkat-frontend 3ecd652
  • change(header): prefix mega-menu active class for adding border 32898cb
  • change(tests): use data-slate-editor instead of contents that was found in draft js instead of slate 1e0413c
  • change(stories): hide variant control from button link story 43f8c41
  • change(stories): hide variant control from button link story aea7126

🛠️ Others

  • feature(theme): added context navigation component story and default style 5a6955f
  • feature(megamenu): open default accordions on mobile navigation based on pathname cc299c1
  • fix eslint warnings 3b30282
  • bump release version to 0.7.0 fa82cbd
  • Theme fixes, mega menu selected element both in desktop and mobile #211 b482729
  • feature(mega-menu): added menu slide down animation #208 4360d0e

0.6.5 - 2022-07-06

🐛 Bug Fixes

  • fix(header): double click to close dropdown is no longer required b8a2ed0
  • fix(header): menu generation when atAGlance isn't found d68b03c
  • fix(menu): removed minHeight that enlarged the global menu 133be1e
  • fix(hero): image dimensions when full width and height isn't enabled 4114f73
  • fix(contentBox): removed negative z-index that hid fullwidth bg color bd60faf

💅 Enhancements

  • change(hero): tweaked hero block height and padding 994b6f8
  • change(item): tweak size and padding of icon when used inside item dbdef19
  • change(typography): updated letterspacing values and clarified values used for certain type tokens 8a13bf8
  • change(item): enable theming for icon and text color and added tertiary option 6d4444f
  • change(header): top section chevron sizes and margin as requested in enhancements document b307c74
  • change(cards): add underline to links when applied to headers and use tertiary color by default 874f956
  • change(utilities): wrap in quotes h2 and h3 of quoted-wrapper 8aa4716
  • change(package): bump package version to 0.6.5 denoting bug fixes release 0585aeb

0.6.1 - 2022-07-01

🚀 New Features

  • feat(UnderlinedTitle): create story and necessary utilities 8beb56b
  • feat(headers): added underlined titles with theming support af67561

💅 Enhancements

  • refactor(heading): move underline story and update controls 2c9bfd2
  • refactor(underlineTitle): add content box for different variations 0878915
  • refactor(underlinedTitle): add control for changing heading size 211f515
  • refactor(underlinedTitle): Restore text variation dropdown control bd8c611
  • refactor(utilities): add color variation for headings and text 7e3a779
  • refactor(utilities): update border bottom utility and restore line height for headings 7fe4a7b
  • refactor(headings): update the line height of headers according to docusaurus instructions 9da19b3

🏠 Internal changes

  • chore(countup): package for statistics 26fcd09

0.6.0 - 2022-07-01

🐛 Bug Fixes

  • fix(item): adjust the container in stories a848c46
  • fix(tag): align start for tags on mobile, update path for Tag List and add containers b9de845
  • fix(item): update image width & height on mobiles and add 3 line clamp for description 0cd2c46
  • fix(pageheader): metadata font size on mobile to be readable 0a9b1fa
  • fix(breadcrumb): fixed variable name for breadcrumb item 2b547eb

💅 Enhancements

  • refactor(Item):create item story with custom default class 069ae02
  • refactor(pagination): add pastanage menu overrides and remove any eea theme css from default story 5080810
  • refactor(item): update variables from px to rem 30eed78
  • refactor(Item):add default item mobile padding 3518465
  • change(site): added fixes from custom 0fe4d80
  • refactor(Pagination): add default pagination stopry and rename previous as Secondary a5e3e13
  • refactor(pagination): comment out secondary pagination and its styling bcf4cff
  • refactor(tags): remove content class and add flex wrap d6333ca
  • change(logo): use a real svg logo for white eea logo 3b80dc7
  • change(header): show eea information systems on tablet as well ce82ceb
  • refactor(tokens): update letter spacing tokens 5f8753b
  • change(letterspacing): updated letter spacing positive values b31818f
  • change(pageheader): add bottom margin on mobile for sharing dropdown actions d3cda47
  • change(pageheader): removed blogger, reddit and stumbleupon sharing links e4acc4e
  • refactor(Item): add default item background color c978c8d
  • change(package): bump package version 1f01f72

🏠 Internal changes

  • style(item): update item image e585e9d

🏠 Documentation changes

  • docs(colors): token usage c433ec6
  • docs(Docusaurus): typography and spacing updates 48d1269
  • docs(Docusaurus): various fixes a972a31
  • docs(typography): updates 66d95e4

🛠️ Others

  • Tabs block custom border left/top ca4cce0
  • Fix sidebar tabs in Volto CSS c287db5

0.5.5 - 2022-06-23

🐛 Bug Fixes

  • fix(contentBox): color of cards when inside content-boxes 76a4520

💅 Enhancements

  • change(homepage): moved fixes of homepage to custom and colored carousel arrow 0a226ef

0.5.4 - 2022-06-16

🐛 Bug Fixes

  • fix(block-style): Content box preview in sidebar 6362766
  • fix(header): ensure transparency goes as high as the search icon 4470e13

💅 Enhancements

  • change(contentBox): add background as before element instead of using full-width 7e0a596
  • change(content-box): content box links are now underlined f7976f5
  • change(homepage): added fixes from custom c3e0333
  • change(hero): add margin top with the height of the top section on edit fefa6bb
  • change(cards): fix default card color when inside content-boxes 6fdf3aa
  • change(container): removed override of content-box-inner container 66fe7d4

0.5.3 - 2022-06-16

🐛 Bug Fixes

  • fix(homepage): hero and homepage fixes for #151156 #198 43d4efc
  • fix(header): fixed top section width on edit page ce5898b

💅 Enhancements

  • change(hero): added min height to hero-block-image-wrapper 3cc37c0
  • change(hero): spaced hero block has a 3rem margin top and bottom c463b03
  • change(hero): added extra top margin on hero-block-body from tablet and up within homepage 64142c3
  • change(hero): tweak min height of hero block e1271b4
  • change(card,contentBox): use inherit for text color to inherit black from body c1ba3b6
  • change(container): on section-edit modify only left and right padding values fe6e3ec
  • change(utilities): bump z-index of overlay class ede3209
  • change(hero): fixed variable reference for margin of body from homepage 092b90b

0.5.2 - 2022-06-14

🚀 New Features

  • feat(contentBox) : add new Content Box component 2ebbb47
  • feat(ContentBox): Add primary, secondary, tertiary themes 87cb2fe
  • feat(ContentBox): Update storybook with available themes 93b26b2

💅 Enhancements

  • refactor(contentBox): restructure the component to be more flexible f0d2de6

🏠 Internal changes

  • chore(contentBox) : add lint changes 5aaf740

🛠️ Others

0.5.1 - 2022-06-13

💅 Enhancements

  • change(header): changed homepage text color 64ce8b6
  • change(hero): added styles for adding dark overlay to hero bf1d292
  • change(homepage): hide stagingBanner on homepage fb6e319
  • change(header): use variable for homepage hero-block padding 89ff344
  • change(tokens): modified grey-4 color to point to a 10% shade from original color b406283
  • change(header): added min-height for mega menu needed for 1 items menus 18814f4
  • change(hero): hero section block integration #192 4ea2f40

🛠️ Others

0.5.0 - 2022-06-11

🚀 New Features

  • feat(hero): added storybook implementation of hero component #172 17b9d16
  • feat(hero): add hero block component and stories 6019fc8

🐛 Bug Fixes

  • fix(header): Internal links in mega menu d8ca135
  • fix(header): show active menu when clicking on children a54fa67
  • fix(header): accessibility and dropdown possition fixes 505ac36
  • fix(header): fix accessibility issue by David 783dcec
  • fix(header): dropdowns disappear on resize 52338fd
  • fix(header-topdropdown): dedupe html elements for topdropdowns cd8a2a7
  • fix(header): transparency class should apply on the current bg color or image f9a0033
  • fix(header): mobile dropdown now visible 34371b4
  • fix(header): dropdown disappears after window resize #116 fc7dd8b
  • fix(header-topdropdown): dedupe html dropdown elements for topdropdowns #115 f10a7a8

💅 Enhancements

  • refactor(megaMenu): update mega menu in header component 2d1ce45
  • refactor(header): update structure and variables of top bar af70909
  • change(header): renamed mega menu items href attribute to url 3ed8144
  • refactor(header): update main section and and add color variations f2f0fd1
  • refactor(header): minor updates on colors and widths a70129f
  • refactor(hero): add full-heigh control to adjust height a45cb7c
  • change(header): disable sticky setting until feature is more stable 1d7af95
  • refactor(hero):make button variant and inverted different button controls 7e182ca
  • refactor(header):main bar sticky on scroll up 9c9e7c6
  • refactor(headings): update heading sizes for mobile 19f3cca
  • change(header): hide first link(home) from header menu on site ae7f3b9
  • change(megamenu): typo correction and key setting on list.items 96d2c4f
  • change(header): use Link instead of a tag for menu items 9812b3f
  • refactor(header): add control for inverted logo 023ca45
  • refactor(hero): move quoted utility to h2 tag 7376676
  • refactor(header): add link for menu title inside desktop mega menu 24355d0
  • refactor(utilities): update hex with color token 8dc65ef
  • refactor(header): and mega menu to latest spec #114 44fcf68
  • refactor(header): update search input and file endings afab36f
  • refactor(header): add control that toggles transparency class on main section b8d4bdb
  • refactor(header): restore union dropdown after implementation 7e98bab
  • refactor(header): minor responsive fixes 16a0006
  • refactor(hero): align hero's text and meta seperately 4fa958f
  • refactor(hero):add button variant controls f362a7b
  • refactor(header): update search input 368962e
  • change(header): mark top level active menu item 665c449
  • refactor(hero):prettier & style changes d846884
  • refactor(header): add control for main section stickiness 2f07572
  • change(header): use viewport width for changing mobile text in header dropdowns b50fa58
  • refactor(header): add fluid font sizes 5f2743e
  • refactor(header) add position sticky & transparent for main section 29df772
  • refactor(hero): update variables with new design tokens 1d97922
  • refactor(Language List): render language dropdown as ul and li elements 3617442
  • change(header): introduced item class to the mega menu link content 00ca376
  • refactor(Language List): add less variables 7ccc1cc
  • change(header): disabled active menu when clicking on globalnav links 3f7b5ee
  • change(header): target link instead of span directly 9e865fb
  • refactor(header): remove unused imports 7e232db

🛠️ Others

  • Add item themes; override .block .ui.image width based on size 06010db
  • Move item icon themes to item.overrides 31e8921
  • Override only the width 8d49270
  • Override tile image in .block parrent 005655d
  • Update package.json 9dc3816
  • feature(item): added themes to item icons #190 a6a2907
  • update storybook header.topdropdown e58ac08
  • use volto-screen-helper width ea156aa
  • Add divider content for metadata field in Banner 327ad1c
  • rename to viewportWidth 32162e7
  • don't connect component to store 470b8ba
  • Add end of line 51639d8
  • behave as mobile under 480 only 11b99e1
  • make it account for all mobile-s,m,l 69e23ae

0.4.5 - 2022-06-08

💅 Enhancements

  • change(tabs): Add style for tabs accordion template #187 fb8adbf
  • change(footer): avoid react error by providing key prop to grid column ef0b193

🛠️ Others

0.4.4 - 2022-06-08

🚀 New Features

  • feat(divider): create story for divider b10a2e0

🐛 Bug Fixes

  • fix(divider): restore space between classes c595c15
  • fix(divider): Text colors and transform e524e10
  • fix(footer): story aria labels for social media links 254bdc7

💅 Enhancements

  • refactor(footer): update logos and less structure 66b8e0f
  • refactor(footer): first footer updates d18a2ee
  • refactor(footer): logo updates and adjustments 101bc9d
  • refactor(footer): use tokens and adjust spacing 2cb1669
  • change(footer): moved SubFooter logic to SubFooter.jsx from Footer story 902383a
  • refactor(Divider):add divider with content inside story e2d66dc
  • change(footer): added managed by section as properties 9328fc3
  • refactor(divider): remove custom divider d4870d2
  • refactor(Divider_:remove green color class & add tertiary 95f3018
  • refactor(footer): use remix icons for social links 5ef9aa2
  • refactor(Divider):remove clean class and use fitted prop 8d2be35
  • change(Divider): Rename color property to theme 0deffc8
  • refactor(footer): update links and logo align 7afbab9
  • change(footer): tweaked column sizes to the values before my changes fdf2718
  • refactor(footer): to latest figma design #182 3e0ba2b
  • refactor(footer): move subfooter logic to the proper component #185 3034577
  • refactor(footer): update controls b0b872b
  • refactor(testimonial): update divider 784450a
  • refactor(testimonial): changed divider color to secondary 84282f9
  • refactor(divider): remove custom divider from theme config a0409e8

🏠 Documentation changes

  • docs(divider): switch to secondary color 239844b
  • docs(divider): showcase path fix d5ea03f

🛠️ Others

0.4.3 - 2022-06-03

🐛 Bug Fixes

  • fix(edit): Fix columns/accordion inner toolbar padding fafbb52

💅 Enhancements

  • change(docusaurus): completed removal of description from guides 42424b9

0.4.2 - 2022-06-02

💅 Enhancements

  • change(docusaurus): moved color swatches around in the color guide 8a395fc
  • change(docusaurus): removed description from components and introduced category listing f220bf0
  • change(docusaurus): rename gap to space and added em spaces f5b042d
  • change(docusaurus): moved extra docs to webdev section 1ce0797
  • change(docusaurus): moved md_components files into webdev/md_components 73c1c08
  • change(docusaurus): added category yml for all sections 1740572
  • change(docusaurus): color guideline updates and spacing tokens documentation #148 c1154ba
  • change(docusaurus): modified story links to avoid broken usage tabs 78dc8d8
  • change(docusaurus): renamed several file id's so that they match the incremental naming sequence 11299c9

🏠 Documentation changes

  • docs(Docusaurus): timeline, testimonial, quote and tags aaa54ec
  • docs(spacing): add relative gap tokens 92abc8f
  • docs(colors): updated colors a28c99e
  • docs(tags/content): new page about tags and content 60be402
  • docs(Docusaurus): labeled icons f6a0f61
  • docs(typography): add font size and line height tokens 2ff65e4
  • docs(spacing): add spacing gap tokens 2d53727
  • docs(spacing): add missing gaps 442db46
  • docs(docusaurus): minor fix 6e66513
  • docs(spacing): aligned images e946fe5
  • docs(spacing): new image fcd3294

🛠️ Others

  • merge changes from develop into docusaurus token documentation a940138
  • perf(docs): restructuring order 8f4134d

0.4.1 - 2022-06-02

🚀 New Features

  • feat(languageLabeledIcon) : add new component 110558e
  • feat(LanguageLabeledIcon):add new component d00200c
  • feat(newTabLabeledIcon) : add new component 8f5cd31
  • feat(labeledIconGroup) : add new component 787d648
  • feat(DownLoadLabeledIcon) : add new component 6ea2fa1

🐛 Bug Fixes

  • fix(LabeledIcon) : fix lint errors 91b042f
  • fix(LabeledIconGroup) : fix links for tests daa1065
  • fix(LanguageLabeledIcon):bug fix & languages change 1436e2b
  • fix(LabeledIconGroup):fix based on Langauge & Download Labeled icon components changes 3015864
  • fix(newTabLabeledIcon) : add link item b1a9ada
  • fix(Labeled Icons):minor bug fix 00f3022

💅 Enhancements

  • refactor(labeledIcons): adjust new tab labeled icon to figma and replace px with rems 904615d
  • refactor(LanguageLabeledIcon):implement with pop up 0f3dd8f
  • refactor(labeledIcon): add group wrapper in labeled icon stories 4b7dd31
  • refactor(DownloadLabeledIcon):implement with pop up aa61f9b
  • refactor(labeledIcons): adjust language labeled icon to figma 5741e3d
  • refactor(labeledIcons): adjust download icon to figma and replace px with rems 4ae8530
  • refactor(LanguageLabeledIcons):minor storybook change 78f5544
  • refactor(LanguageLabeledIcon): set language code to uppercase and minor storybook change ac28693
  • refactor(labeledIcon): adjust paddings 9c1ecdd
  • refactor(labeledIcons): update margins for group labeled icons 5fa5ca9
  • refactor(labeledIcons): add variable for icon color 9f9d3cb
  • refactor(labeledIcons): update colors on download links c042642

🏠 Internal changes

  • chore(labeledIconGroup) : lint changes 535cee4
  • style(downloadLabeledIcon) : fix styling 6d8e3ac
  • style(downloadLabeledIcon) : fix alignment 4558017
  • chore(LabeledIconGroup) : lint changes ab36476

0.4.0 - 2022-06-01

🚀 New Features

  • feat(Carousel): create carousel for cards 2b0d737
  • feat(ItemwithIcons): Initial Item group with icons, new item variation 7f4ea47
  • feat(utilities): add file and basic utilities 05c88b2
  • feat(utilities): add file with basic utilities classes #173 855185f

🐛 Bug Fixes

  • fix(tokens): hsla function for shadows b8e5d37
  • fix(tokens): remove css var from less file a9c4224
  • fix(carousel):add storybook controls descriptions 269a603
  • fix(item): remove image width css from item.less 7b21cb2
  • fix(table): Set responsive breakpoint to @tabletBreakpoint 067e018

💅 Enhancements

  • refactor(item): import item.less in theme definitions c516374
  • refactor(Label):add corner,ribbon & basic label stories and styles e2bbbb9
  • refactor(Label):style changes based on label importance class ce4d5d1
  • change(tokens): rename gap to space and added em spaces 719efc4
  • refactor(item): add classes for size, set default to tile and add controls for grouped items d5a0405
  • refactor(tokens): add borders, shadows, shapes and z-index tokens 7069106
  • change(tokens): name spacing tokens gaps and added missing values up to 80px as documented 9fbd912
  • refactor(quote): Rename sourceInfo to extra info 76c2b40
  • refactor(item): WIP replacing unstackable with row e3a44de
  • refactor(tocens): add color design tokens 13bb165
  • refactor(item): adjust margins to match figma designs 6334581
  • refactor(carousel): remove title from story and color on card hover 12a1d7c
  • change(tokens): updated sizes with 4-8-16px increments 1f53d65
  • change(tokens): added size tokens to be used for width of elements cda5dea
  • change(utilities): values need important rule 96150d9
  • change(tokens): added also rem space values aedbbdd
  • change(tokens): updated z-index tokens with negative values 404efe4
  • refactor(tokens): add 14px font size token 8d8695d
  • refactor(docusaurus): restructured and improved sections navigation #174 b47b026
  • refactor(tokens): add 12 and 14px font size token #176 3681147
  • refactor(tokens): remove conditional border radius f0fe5ad

🏠 Documentation changes

  • docs(website): created new sections, improved website navigation 243f0be
  • docs(homepage): adding design system homepage with links for upcoming sections c9a9685
  • docs(docusaurus): copyedit, improved navigation 998762a
  • docs(website): restructuring, moved current DS docs to new folder 8bb612f
  • docs(homepage): copy editing ee37d6f

🛠️ Others

  • Release 0.4.0 f4bc509
  • feature(homepage): added Item group with icons #167 2ec99f5
  • feature(tokens): added borders, z-index, shadows tokens #171 74c1788
  • feature(tokens): added initial color design tokens #169 da3eae0
  • perf(carousel): added slick library ca9be51

0.3.1 - 2022-05-19

🐛 Bug Fixes

  • fix(input,segment): toggle inputs and padding fixes within Volto sidebar forms de030d6

💅 Enhancements

  • change(login): restored width of login container to 376px 0564293

0.3.0 - 2022-05-17

🚀 New Features

  • feat(Callout):create Callout component with Blockquote style 3d486b1
  • feat(callout): Align the Callout component with Volto slate component e9343ff

🐛 Bug Fixes

  • fix(testimonial): fix storybook arg names b9df52f
  • fix(table): tweak responsive table for extra long headers 7f9f9e2
  • fix(quote): fix color and padding issue 310d6b3
  • fix(accordion): Fix accordion active title color 57af165
  • fix(testimonial): remove info arguement 9593d95

💅 Enhancements

  • refactor(Table):add responsive mobile table story and styles aed69e6
  • refactor(testimonial): adjust to volto design | fix avatar image size 546070e
  • refactor(Quote):rename Pullquote component to Quote 9384a0c
  • refactor(Quote):rename Quote.Metadata to Quote.SourceInfo dfae8b1
  • refactor(Quote): rename Author to Source 6d400f6
  • refactor(Quote):move Testimonial component under Quote folder e2467c2
  • refactor(testimonial): readjust rounded card b419334
  • refactor(Table):wrap table with semantic ui container 24ac2bb
  • refactor(Testimonial):minor storybook bug fix 7b6d128
  • refactor(Callout): wrap story with semantic ui container ead362d
  • refactor(quote): update action name to match the functionality caf2e35
  • refactor(table): add borders to responsive table with celled attribute 8a71a67
  • change(table): make use of headerSortableWhiteSpace variable fd836fb
  • change(table): use the @mobileLandscapeBreakpoint for max 480px media query 90880ab
  • refactor(Quote):rename pullquote to Quote in Testimonial f54da19
  • refactor(Testimonial): change card class name e995c32
  • refactor(Testimonial): prettier changes 904594b

🛠️ Others

  • feature(tokens): added tokens folder for design tokens we can use in the system a542172
  • perf(lint): fix f2ef3ab
  • Release 0.3.0 8724b28

0.2.4 - 2022-05-13

💅 Enhancements

  • change(segment): brought back overrides from pastanaga into our theme 14efd02
  • change(container): removed padding from containers restoring thus the defaults c2ed813
  • change(grid-story): added container as grid width is influenced by container width 459f481
  • change(breadcrumb): removed padding from breadcrumb added by container c5df567
  • change(container): modified all outputted widths to align to grid 9f29cef
  • change(breakpoints): restore Semantic UI breakpoints, adding extra needed values e7f5b1e
  • change(container): restore maxWidth to 100% now that the last value is 1120px 8b55c58
  • change(header): wrap header globalnav links useful for editing section 10d4f56
  • change(breadcrumb): added vertical variant to the breadcrumbs like we do in Volto f405f84
  • change(breakpoints): added also contentBreakpoint for backward compatibility b6c9212

🛠️ Others

  • [JENKINSFILE] Add failure comment, no jenkins fail c325bf1
  • prettier changes 134da52
  • [JENKINSFILE] format PR comments 739438c
  • [JENKINSFILE] mention comment author in comment 39a26aa
  • [JENKINSFILE] remove debug, add error per stage 903eecd

0.2.3 - 2022-04-29

🚀 New Features

  • feat(CallToAction):add feat call to action ab53642

💅 Enhancements

  • refactor(button): add container to stories 6c02c19
  • refactor(tab): update vertical tab columns and content b473fab
  • refactor(call to action):render call to action with Button as="a" e7dfabf
  • refactor(button): update inverted button colors c822021
  • refactor(Tab):scrollbar change in mobile & vertical tab fix 0e34cbf
  • change(banner): added icon class to share icons 48e866e
  • refactor(Button): move button to forms folder 94996fc
  • refactor(Tab):minor change in secondary pointing menu variables 280b6c4

🏠 Documentation changes

  • docs(button): import call to action stories e4eed44

0.2.2 - 2022-04-22

🐛 Bug Fixes

  • fix(publicationCard): restore line endings 582859e
  • fix(form): added back overrides from Pastanaga theme a3f7ff8
  • fix(OrderedList) : add list only if sub list exists 8acbc8d
  • fix(label): update highlight label color d55bbb0
  • fix(publication card): run prettier 81a5bfc
  • fix(avatar) : fix naming convention for arg 84fc5fa
  • fix(tab): restore mobile font sizes 58f39be
  • fix(addForm): add min height to add form and fixed block chooser overflow ca4415d
  • fix(OrderedList): adjust margins to fourth sublists 663d384
  • fix(dropdown): being hidden because of third party css 7d353df
  • fix(modal): overflow hidden as clearfix of last child from modal b4923f5
  • fix(RelatedContent):fix merge conflict adc34bf
  • fix(button): labeled class needs to be placed after left or right keyword 53d1204

💅 Enhancements

  • refactor(card): prettier fixes e10e3d6
  • refactor(card): add card variations e16d05b
  • refactor(card): remove stories 0deb0ca
  • refactor(card):delete primary and secondary card stories 1f95d22
  • refactor(Avatar) : remake avatar as card variant ea77cdd
  • refactor(card): add styles for card variations 7407bd3
  • refactor(storybook): add story with related content inside of a tab dca008a
  • refactor(card): Rename variables from avatar to rounded be01316
  • refactor(avatar): update less variables and layer structure f965db1
  • refactor(PublicationCard):remake publication card to be a semantic card variation 5a0c6ab
  • change(button): simplified button styling fe892d6
  • change(button): simplified storybook naming and examples 9a7df4f
  • refactor(Avatar) : convert avatar component to card variation 2004a94
  • refactor(Related Content): change in grid and add see all button 955450e
  • change(button): added back button.overrides from pastanaga theme 3b55acb
  • refactor(card): add card class control 68c91a9
  • refactor(card):delete publication card variables & overrides files 6be8a03
  • refactor(OrderedList): rename TOC to Ordered List and add container to the story e00c4db
  • refactor(card): add card grid fluid story with no columns f38251c
  • refactor(list): remove horizontal control 1f5e576
  • refactor(avatarGrid): update less variables and layer structure db554a8
  • refactor(Related Content):show button when there are more hidden cards 57ff1c8
  • refactor(RelatedContent):change to use new card variant instead of publication card component 7cf424a
  • change(breadcrumb): brought back pastanaga overrides to breadcrumbs bca1c93
  • refactor(card):delete publication card folder & story 68bf773
  • change(buttons): modified basic and circular variant behavior c06fed9
  • refactor(card):tertiary variation minor story update 87b8dca
  • refactor(DescriptionList): add container to story d647c1a
  • refactor(List):render ordered list with ol,li tags 87813c1
  • refactor(OrderedList) : change table of contents story to ordered list cb6197c
  • refactor(publicationCard): update tag and name variables c109ad9
  • refactor(UnorderedList): update list as ul, list items as li and add container to strory 2c096e1
  • refactor(card):organize controls and minor bug fixes f3f6e35
  • refactor(less variables): publication card style changes c5a84e9
  • refactor(less variables): add less to related content e1a5543
  • refactor(RelatedContent):delete publication card component 2ed0ed4
  • change(button): basic button is again without padding, border and background 5a907c7
  • refactor(PublicationCard):remove link wrapper 5911a0d
  • refactor(less variables): change publication card height per viewport d7a5256
  • refactor(Timeline):change timeline icons b2fe0bf
  • refactor(publicationCard): replace px with rems 53bf8da
  • refactor(Related Content): change in related content grid bf856ce
  • refactor(List):render description list with dl,dt,dd tags ec669a7
  • change(button): show only labeled variant for buttons with icons bf49944
  • refactor(card): import image for rounded card ca5a47e
  • refactor(progress): add container to story dfb33bb
  • refactor(storybook): add publication card story with different description sizes 23af97b
  • refactor(List):render default list with dl & dt tags ece2280
  • refactor(storybook): add publication cards stories with longer description 37adefa
  • change(button): basic icon buttons no longer have box shadows c2f3ea3
  • refactor(card): remove story afc5f79
  • refactor(less variables): change card description line number per device 6946fda
  • refactor(card): update rounded card image path 8db3a85
  • refactor(DefaultList): add container to story f971193
  • change(button): bumped z-index of sidenav expand button 445ed8a
  • change(progress,label): color accessibility fixes #151 09cf6e3
  • change(button): text button now has an underline with a focus border like other buttons cdd9043
  • refactor(card): update card variation grids path 756589c
  • refactor(card): minor fixes 3a880d7
  • change(button): primary color is blue and secondary is green 53e0a0c
  • refactor(List):change styles to match with the tags lists are rendered 2673890
  • refactor(progress): update colors for accessibility ea2f454
  • refactor(card): move avatarGrid & relatedContent to Card folder 1959d52
  • refactor(Timeline): change storybook timeline colors to fix accessibility issues 79da8dc
  • change(segment): restore light grey background color for secondary segments 8716b08
  • refactor(relatedContent): adjust column paddings 8a1520d
  • refactor(storybook): clear up code 3ada154
  • refactor(card): use the rounded class for avatar grid 8c000f3
  • refactor(card) Update rounded card class 140b587
  • refactor(avatar): add variable for image border radius c23341c
  • refactor(label): add container to story 565101f
  • refactor(progress): update value color for accessibility error 6fc76f8
  • refactor(card):use jsx extension 413d328

🏠 Internal changes

  • chore(Avatar) : add container to stories 41b748c
  • style(OrderedList): prettier fixes ed95e4d

🛠️ Others

0.2.1 - 2022-04-08

🐛 Bug Fixes

  • fix(version): Switch to 2.0.0.alpha.1 83b8b8e

🛠️ Others

  • cleanup(loader): Remove useless HTML d1d180c

0.2.0 - 2022-04-04

🚀 New Features

  • feat(card) : add new default card color-schme 965adea
  • feat(label): Handle slate links and footnotes f382431

🐛 Bug Fixes

  • fix(buttons,toggles): border and background color when active 147629 #139 ea36f31
  • fix(checkboxes): background color when they are toggles 4b6ab67
  • fix(buttons): border set on basic buttons appearing on svg elements of Volto UI 69ca73f
  • fix(label): Zotero/Footnotes inside label 0ee4d58
  • fix(card) : add control for image url in storybook b28e530
  • fix(less variables):change font family e4bca9e
  • fix(storybook):minor bug fix 9fc53bc
  • fix(tag): fixes merged theme config eb30363
  • fix(Banner): prop types fix a270e5b

💅 Enhancements

  • refactor(tag): splits Tags component to TagList and tag, changes default tags style 78a5f8c
  • refactor(Banner):add banner share pop up in banner story c9688b2
  • refactor(tag): remove classes and actions that add background color ce9b6f9
  • refactor(Banner):change banner's image wrapper implementation 9153dd1
  • change(package): bump release version to 1.10.0 7e984c1
  • refactor(card): align cards and images, update less variables d47c978
  • refactor(card): add class inverted for default card 919a56e
  • refactor(tag): changes component name e1db068
  • refactor(tag): changes color metallicBlue to bottleGreen e4b68ac
  • refactor(less variables): change tag list mobile view fcded3d
  • refactor(tagList): update story to not use tag color classes 8b5b61b
  • refactor(Banner):minor bug fix ff8c352
  • refactor(Banner): add metadata field sub component 327b7e7
  • refactor(banner): add and adjust remix icon for banner action 1bf3ffa
  • refactor(banner): replace px with rem and adjust share popup padding a568329
  • refactor(Banner):add type class to metadata field and apply styles to it 86a2866
  • refactor(less variables):change tag list styles 8670087
  • refactor(banner): share items display flex on desktop 3ff8684
  • change(banner): added background gradient, share popup, metadata show and hide #136 2f5dcca
  • refactor(banner): update gradient 570ee1e
  • refactor(tags): removes hardcoded ':' ea58e86
  • refactor(card): remove card border bc77739

🏠 Internal changes

  • style(card) : add lint and prettier changes 9d9a773
  • style(tag): remove comments 501fcdf
  • style(tag): stylelint and prettier changes 08b6386

🛠️ Others

0.1.9 - 2022-03-25

🚀 New Features

  • feat(all): 1.9 release #124 0d3f6fb
  • feat(callout): Align volto-slate callout with blockquote style 9e0bb49

🐛 Bug Fixes

  • fix(inpageNavigation): restore hidden on top functionality c554e6e
  • fix(list): Fix TOC margin on 3rd level f17da79
  • fix(inpageNavigation) : add smooth scroll animation 42f6564

💅 Enhancements

  • refactor(footer): update visual and mobile margins 64f05af
  • refactor(header): restore union dropdown after implementation a7029c5
  • refactor(pullquote): adjust to the new figma design 78e4606
  • refactor(breadcrumb): adjust font sizes and import remix divider 5fcabaf
  • change(header): use viewport width for changing mobile text in header dropdowns 5a7868e
  • refactor(inpageNavigation): adjust to the new figma design 4073acf
  • refactor(tab): add max width for tab items 366d279
  • refactor(less variables):change pullquote styles 9ad94bb
  • refactor(Pullquote):change quote positions and add Pullquote.Metadata sub component 6bce35f
  • refactor(inpageNavigation): Update to remix icons 19a6061
  • refactor(inpageNavigation) : move icon & text to be in column 0953910
  • change(breadcrumbs): modified breadcrumbs template to behave like breadrumb template 490a559
  • change(package): bump release version to 1.9.0 43a6e4b
  • refactor(breadcrumb): adjust font sizes and import remix divider #120 09a3a01
  • change(menu): modified secondaryPointingItemMaxWidth to a value that equals to 250 ea138a1
  • refactor(pullquote): introduce meta section, use remix icons, integrate slate callouts #119 fd740c9
  • refactor(footer): updated visuals and gradients #117 e5c6d18
  • change(scrollToTop): feature inpage navigation revamp #121 3cf20a8
  • refactor(footer): update visual and gradient 764ec23
  • change(header): use 12px font size for mobile resolution dropdowns 6dad0fa
  • change(nav): added navDepth to 3 in order to enable mega menu integration c4f73fd

🏠 Internal changes

  • style(inpageNavigation) : lint changes 3641d78
  • style(inpageNavigation) : add less variables 0699c70
  • style(pullquote): create variable for icon font size fea9b0a
  • style(inpageNavigation) : add lint & prettier changes f8dd012
  • style(inpageNavigation): remove comment 1aee011

🛠️ Others

0.1.8 - 2022-03-18

🐛 Bug Fixes

  • fix(card): avoid long links from spilling outside of card body area 95b8951

💅 Enhancements

  • change(typography): set heading sizes as detailed in docusaurus typography section 189bf20
  • change(docusaurus): content tweaks, inpage navigation section #112 b62d1b1

🏠 Internal changes

  • chore(docusaurus): fixed grid tablet breakpoint value c7fbc09

🏠 Documentation changes

  • docs(docusaurus): capitalization remove bf8fa44
  • docs(docusaurus): update 1c04976
  • docs(docusaurus): comment address on pr 112 6e4fe3b
  • docs(docusaurus): color minor update 13f9fda
  • docs(docusaurus): tabs and breadcrump update d0547e5

🛠️ Others

  • doc(colours): add more content ec66248
  • Add divider content for metadata field in Banner f1e34bd
  • Release 1.8.0 fd6ba04

0.1.7 - 2022-03-15

🚀 New Features

  • feat(less): add global gap sizes 3c83f20
  • feat(icons): import remix css 29967fb

🐛 Bug Fixes

  • fix(menu): fix border overflow for tabs and pagination e88721f
  • fix(accordion): responsive and accessibility issues c225935

💅 Enhancements

  • refactor(menu): update paddings for tabs and pagination 533a509
  • refactor(accordion): import semantic icon for remix arrows 9aa77d8
  • refactor(all) icons, accordion, button and menu itml #108 52ed2ca
  • change(storybook): segment stories now contain several elements 98a7654
  • change(table): inherit header alignment instead of hard-coding values ebb5193
  • refactor(icons): add remix icons c4c1a92
  • refactor(container): restore mobile width to auto 2df184c
  • refactor(button): update action button hover color bb09d71

🏠 Internal changes

  • chore(docusaurus): docs delete 5f9d733

🏠 Documentation changes

  • docs(colors): corrections da64c4c
  • docs(list): default list showcase 8ded062

🛠️ Others

  • bug(form): input min-width more specific to not break volto interface 3f5b5d4
  • Update package.json 3dba28b

0.1.6 - 2022-03-11

🚀 New Features

  • feat(cards): add custom display for volto-block-image-cards 645096a
  • feat(PublicationCard):create publication card component & styles 3e5f9b7
  • feat(PublicationCard):create publication card component & styles 12cdd5d
  • feat(Related Content): create Related Content component 77eda95
  • feat(Related Content): create Related Content component 08d495b
  • feat(pagination,related) added several r3 components #105 08d47c1

🐛 Bug Fixes

  • fix(Related Content): limit publication card number to 4 e7df032
  • fix(less variables):rename publication card variables 55c6fb8
  • fix(Publication Card): add link to card and arg name fix 36a7c96
  • fix(radio): fix bullet scaling issue with firefox 5f02c95
  • fix(radio): fix bullet scaling issue with firefox dbb2e27

💅 Enhancements

  • refactor(form): remove custom classes and add container to form items 6b5442a
  • refactor(form): remove custom classes and add container to form items d1ec083
  • refactor(form): update form wrapper component a719576
  • refactor(form): update form wrapper component 0736ec7
  • refactor(form): adjust form items to volto theming 4213cfb
  • refactor(form): adjust form items to volto theming 374ffbc
  • refactor(breadcrumb): remove custom class anf and new variables b3cb83d
  • refactor(breadcrumb): remove custom class anf and new variables d5808ad
  • refactor(storybook): clear up unnecessary form elements controls f7e7d5b
  • refactor(storybook): small change in unordered list story 3ffd872
  • refactor(storybook): small change in unordered list story 6ce16e9
  • refactor(pagination): fix menu overrides for tabs that affects pagination fe8c4ca
  • refactor(pagination): fix menu overrides for tabs that affects pagination 3f4b726
  • refactor(Loader):remove image & add background image 70fe041
  • refactor(Loader):remove image & add background image ac38126
  • refactor(list): remove selection control a09b179
  • refactor(list): remove selection control 17bf710
  • refactor(storybook):unordered list minor change df2b727
  • refactor(storybook):unordered list minor change ef6db73
  • refactor(colors): remove metalic blue color b2f95b6
  • refactor(colors): remove metalic blue color 1eea33f
  • refactor(button): update variables b1774d8
  • refactor(button): update variables 061f3e3
  • change(blockquote): treat slate as a variation of blockquote component 19bd9a5
  • refactor(container): remove important from rules e984771
  • refactor(storybook):add textarea control to add/remove fluid class 475f540
  • refactor(container): remove important from rules 1cc6984
  • refactor(storybook): add required attribute to form fields fecee27
  • refactor(progressBar): update progress bar colors with vars c4ef1f0
  • refactor(progressBar): update progress bar colors with vars a44d73c
  • refactor(storybook): add required attribute to form fields 21da79e
  • refactor(list): adjust bullet size 2b29e4e
  • refactor(list): adjust bullet size 61c341c
  • refactor(statistic): add inverted background to global variables 1427e70
  • refactor(statistic): add inverted background to global variables ea25dfa
  • refactor(statistic): remove custom class 46cc560
  • refactor(container): update mobile width d548a44
  • refactor(grid): replace px with rem units e792f51
  • refactor(statistic): remove custom class b5c8e7c
  • change(docusaurus): updated template to change what's new title 3e15f4d
  • change(footer): added display variable for footer site logos d5b3c2f
  • refactor(grid): replace px with rem units f0331d0
  • change(github): auto deploy only on develop branch 11d6b4e
  • refactor(header): implementation in preparation for Volto integration #20 #89 95b136d
  • change(github): trigger autobuild when modifying templates contents 46094b1

🏠 Internal changes

  • style(list): prettier fixes f9e3b05
  • style(list): prettier fixes 8eb715b
  • chore(github): merge changes from develop to develop-itml 063bd6e
  • chore(github): build deployment only on develop branch a5a1b08
  • chore(github): build deployment only on develop branch bb455aa
  • chore(github): merge changes from develop to develop-itml 129c12f

🛠️ Others

  • Revert "chore(github): merge changes from develop to develop-itml" ca9520f
  • refactor breadcrumbs component, make it functional and customizable e902d69
  • rollback(cards): move custom display to volto-block-image-cards 2564b1e
  • bring back segment wrapper and make it attached 8458f03
  • no display: flex for blockquote added from slate 5595ce1
  • Add rule about code length a5f3652
  • Add indenting rule 15c44cb
  • fix warning related to proptype 946c6c6
  • fix profile section css overflow db5126f
  • Add rule about import sorting 804e188
  • don't use volto-slate 6a02976
  • remove segment custom width 1d3ea40
  • Add rule about naming vars 8f9020f
  • update style for accordion title 0b0d678
  • Release 1.6.0 e771e65
  • update bbcab87
  • add margin to <br> element to simulate gap as in design c6685c1
  • make breadcrumbs default size as tiny 589581f
  • remove uneeded style 82a8fb1
  • Add rule about hardcoded values e04e0df
  • Add file mode rule 65c9a93
  • Add DRY rule 66c9c3a
  • set profile section overflow to auto 71ab47f
  • Add Sonarqube tag using eea-website-frontend addons list 647a6e3
  • removed override already present in card.less 50d2ab2
  • update 7a1d482
  • Add functional components rule; add classnames rule 91a0b06
  • added comment about need for removal of this fix later 65b8166

0.1.5 - 2022-03-08

🚀 New Features

  • feat(cards): add custom display for volto-block-image-cards f49ffb6
  • feat(KeyContent): add new component 2534c54
  • feat(docusaurus): Updated developer guidelines ca146ff
  • feat(storybook): add testimonial component 55d9747
  • feat(storybook): add AvatarGrid component b668445
  • feat(storybook):add Loader component f675834

🐛 Bug Fixes

  • fix(breakpoints): fix largest screen breakpoint bug on scaling e4a11c8
  • fix(profile): section css overflow and padding issues #95 bb9eb0f
  • fix(storybook): lint auto changes for AvatarGrid b8e74f1
  • fix(components): add grid structure to various components cc33546
  • fix(header) re-added span tags removed in pull request #74 00702d7

💅 Enhancements

  • refactor(button): styling updates 37afda5
  • refactor(tab): updates on variables and overrides 54bf703
  • change(blockquote): treat slate as a variation of blockquote component 5e8a8b8
  • change(footer): added display variable for footer site logos 2f942b4
  • refactor(checkbox/radio): remove header from message and adjust top position of bullet 4a072b3
  • refactor(color): remove secondaryColorDarken variable 74c8ba0
  • change(docusaurus): updated template to change what's new title 58f58c8
  • change(github): auto deploy only on develop branch bfa35a3
  • refactor(header): implementation in preparation for Volto integration #20 #97 cddda20
  • refactor(breadcrumbs): component, make it functional and pluggable #32 #94 9f42e80
  • change(card): added styles for volto cards integration #92 a46ac21
  • refactor(grid): remove column count from example ac0e9cf
  • change(github): trigger autobuild when modifying templates contents 5f7d152
  • refactor(grid): remove custom grid 1d978a9
  • refactor(Form):change form field wrapper implementation 73cdd6d
  • refactor(message): update colors to match design 633ce31
  • refactor(checkbox/radio): update variables and remove important rules ad533b4
  • refactor(less variables): add variables to less for new components 47df026
  • refactor(Tab): fix vertical tab alignment 401bdf2
  • refactor(lint changes): add lint changes 6f6847f
  • refactor(inpageNavigation): adjust to volto theming 62f74ea
  • refactor(message): updates on styling b4cf850
  • refactor(banner): update class name ef0969b
  • change(github): use develop for auto pushing a32a723

🏠 Internal changes

  • style(design-system): unix eol 631fa90
  • style(checkbox/radio): prettier fixes a04939f
  • style(design-system): unix eol 3c753f0
  • style(message): stylelint fix 5b75057

🏠 Documentation changes

  • docs(docusaurus): visuals guidelines 544a950
  • docs(docusaurus): search guidelines 0fb229d
  • docs(docusaurus): loader page 892a25d

🛠️ Others

  • Reformat header.less 1f99dfc
  • Close menu when changing path 65daea9
  • refactor breadcrumbs component, make it functional and customizable 4ec374e
  • rollback(cards): move custom display to volto-block-image-cards 79d4c89
  • Open overlay menu on global menu click cc749bc
  • bring back segment wrapper and make it attached 9f413ff
  • Use renderMenuItem also in mobile menu 02de0bb
  • Fix clicking outside closes menu af52664
  • Cleanup args in header story 2bf6a30
  • fix warning related to proptype 824b9be
  • fix profile section css overflow 8fd2654
  • don't use volto-slate 70ca3d4
  • remove segment custom width 4a60d84
  • update 96f4af0
  • Fix TopDropdownMenu component rendering in mobile a4626de
  • Add usePrevious hook 797faba
  • make breadcrumbs default size as tiny 3c8e1c6
  • Update package.json fa020cb
  • Add rule about hardcoded values 0c6912c
  • set profile section overflow to auto 8db62bb
  • added comment about need for removal of this fix later 6fdbd71
  • Add Sonarqube tag using eea-website-frontend addons list 6051724
  • removed override already present in card.less 93c4e5a
  • Remove console.log calls 8a3a4cb
  • update 81bb7d4
  • Update comment ffa2400
  • merge develop into this branch ad5b388
  • WIP a8d97f1
  • Use header.less from develop branch 99edbc6
  • WIP 57b5783
  • WIP 785da36
  • WIP 5d1eba9
  • adds Tags e37fc19
  • Add useClickOutside hook 70364c8
  • Implement outside click handling fa6f818
  • Simplify overlay menu template 28b0478
  • fixes less variables, fixes tags positioning cc19b9b
  • WIP 15bc0f4
  • no display: flex for blockquote added from slate 312a893
  • Add rule about code length 318cd48
  • Add indenting rule d589685
  • Add rule about import sorting cd337c1
  • Add rule about naming vars b112de0
  • Bring back classNames from header subpopup e477a51
  • removes tags hashtag from jsx 6b8b3e9
  • WIP d481324
  • fixes undefined on empty classes 4b29080
  • stylelint changes a5ab830
  • Footer link color @white 578e4f7
  • add margin to <br> element to simulate gap as in design 9ab9a97
  • impors colors from site variables 6117267
  • small fix for the link in footer action 72df049
  • remove uneeded style 66e9064
  • use proper naming conventions for var naming 596e314
  • Add file mode rule 805baa7
  • use less variables b43ac8d
  • Add DRY rule 2f1584e
  • Add functional components rule; add classnames rule 1b2915e
  • fix z-index of header 7d2a5d6
  • Remove comment 7d120b1

0.1.4 - 2022-03-01

💅 Enhancements

  • refactor(pagination): adjust to volto theming 06cc3b6
  • refactor(Form):create form field wrapper file 95b9934
  • refactor(megaMenu): update margins for menu items 230e476
  • refactor(megaMenu): update gradient 47f2ea4

🏠 Documentation changes

  • docs(docusaurus): divider page c6bb238

🛠️ Others

0.1.4-beta.0 - 2022-02-25

🚀 New Features

  • feat(github): added feature and bug reports templates with our guidelines as checkboxes 1549093

0.1.3 - 2022-02-25

🐛 Bug Fixes

  • fix(all): change eol to unix 62e7224
  • fix(banner): separate url value f9c9140
  • fix(all): merge eol c68f6e0
  • fix(blockquote): align self property now uses a valid entry ec76163

💅 Enhancements

  • refactor(megaMenu): new implementation ff013af
  • change(volto): removed customizations made for ims theme from volto-eea-design-system bc8d514
  • refactor(Timeline): divide to sub components and change files to .jsx 3e2bd3b
  • refactor(header): update variables 4e5d08d
  • refactor(Header): link header's menu to mega menu 08406d8
  • refactor(Menu): change mega menu implementation 455a51b
  • refactor(Grid):minor changes and delete extra files 272585d
  • refactor(timeline): adjust to volto theming b98641a
  • refactor(megaMenu): fix link hover issue for tablet 564e972
  • refactor(header): add remix icons and minor updates c9c97dd
  • refactor(Header): change header buttons implementation 6608b8c
  • refactor(Header): add sub components and change existing Main 74c35a3
  • refactor(table): adjust to volto theming ab7a0e8
  • refactor(Footer): delete Actions & ThemeSites files and clear imports 7a78456
  • refactor(header): update variables 326655a
  • refactor(Breadcrumb): add react router link and minor bug fix 073a3a3
  • refactor(Header): show menu on search & minor bug fix 4d49a8a
  • refactor(List): add extra default list story 95665cd
  • change(docusaurus) change generation of what's new section and bump package version 6c35cff
  • refactor(Footer): minor code changes 67cb4bc
  • refactor(Menu): add class to mega menu items for styling 19baa34
  • change(accordion): modified default accordion stories titles with real accordion names cf11cc8
  • refactor(Header): accessibility image alt fix a7347a6
  • refactor(header): adjust to volto in progress 760beca
  • refactor(Header): header items as storybook arguments 388c752
  • refactor(banner): update less variables 35b0a98
  • refactor(banner): actions as buttons; don't hardcode url for banner image; subcomponentize Banner, add Banner.Action; add developer guidelines on inline styles and line endings; 6dd5a41
  • refactor(blockquote): fix responsive margins and sizes rems 209f94f
  • refactor(Input): label position and style change 970074a
  • refactor(header): update dropdown menu 32eb0fa
  • refactor(timeline): theming updates c80c9aa
  • refactor(Blockquote):remove image stories a6357ca
  • change(docusaurus) proofread blockquote usage section and removed unused api section 0bb29fd
  • change(infrastructure) cherry-pick fix 9639243 skipping jenkins on auto commits fc744cd
  • change(ci) build storybook and docusaurus only when pushing to develop-itml branch 4de0cbf
  • change(infrastructure): modify whats new doc when committing the auto deployment 39df33e
  • change(blockquote): introduce float argument for blockquote with image storybook 8fc7290
  • refactor(pullquote): add word break 2245e53
  • refactor(Banner): minor bug fix b9073b6
  • refactor(table): fix th font weight a96a0a7
  • refactor(comment): remove avatar border radius d42c37b
  • refactor(banner): adjust title size 7a24d9c
  • refactor(Image): change image path a580da6
  • change(infrastructure): specify that docs folder contains changes for deployment a1ca915

🏠 Internal changes

  • style(input) prettier fixes e83fa0c
  • chore(storybook): prettier fix 354c7b3
  • chore(design system): technical commit for edw integration tests 9f76035
  • style(storybook): prettier fixes 3c9ad34
  • chore(infrastructure) updated branch with changes from bitbucket 77866f8

🛠️ Others

  • doc(colours):fix color to better show primary ones 705b789
  • doc(colours):change font size to fit text in one line 4ad7516
  • bump package release to 1.3.0 f3cfe4f
  • Refactor banner into content subcomponent f8df238
  • lint fixes cda322d
  • rollback don'ts grammar change and disable unresolved import for Banner.stories.jsx a1bd715
  • Add space line in component d4d1a5f

0.1.2 - 2022-02-17

🚀 New Features

  • feat(blockquote) added blockquote styles as a custom module d30662e

🐛 Bug Fixes

  • fix(inpageNavigation): hide at the top of the page 97ef500
  • fix(footer):missing image ac91a29
  • fix(comment):fix broken image 8125dc1
  • fix(message): fix font loading fdc498e
  • fix(logo): logo change 5f8c8af

💅 Enhancements

  • refactor(storybook): multiple components fixes 4a3ff51
  • change(infrastructure) re-enable integration tests for auto release stack ce8daf8
  • refactor(storybook): global site files styling update f3770f1
  • refactor(storybook): multiple components 9277aac
  • refactor(footer) adjust to volto theming update a59f1c3
  • refactor(header): minor styling update dd6b55c
  • refactor(Header): change header mega menu 7559b57
  • refactor(banner): adjust to volto theming 451b949
  • refactor(accordion): minor styling update aeaf25f
  • refactor(footer): adjust to volto theming bdff176
  • refactor(footer):mobile responsiveness 14822be
  • refactor(storybook): main and custom less files update 1607760
  • refactor(timeline): update after removing timeline addon f54d380
  • refactor(Footer): replace with subcomponents 378c652
  • refactor(Header): header change 029e850
  • refactor(Header): change header bar 2b766fd
  • change(docusaurus) use itml branch for docusaurus deployment 6e286c5
  • refactor(accordion): adjust to volto theming 971fcb8
  • refactor(Header): add sub components 7f955db
  • change(docusaurus) tweak auto deployment to always commit changes from docs a2940da
  • refactor(banner): less and variables files created d5b1a8a
  • refactor(label): adjust to volto theming 3c945e1
  • refactor(message): adjust to volto theming 3e950fc
  • refactor(Footer): add sub components and props c3d1487
  • refactor(modal): modal and confirm adjust to volto theming 83b60e9
  • refactor(comment): adjust to volto theming 84348c3
  • refactor(storybook):adjust headings 32f64f9
  • refactor(Header): add comments to header menu c2c83b2
  • refactor(Accordion): clear up accordion stories code 4e59b8f
  • refactor(segmant): adjust to volto theming 3ab211e
  • refactor(button) minor styling update 8782bb2
  • refactor(banner): change image position cdd76d5
  • refactor(breadcrumbs): update less variables 640817e
  • refactor(list): adjust to volto theming 1079c73
  • refactor(timeline):adjust timeline module 213eb11
  • refactor(blockquote):adjust to volto theming 5eec87f
  • refactor(progress): add progress bar colors ccf3c98
  • refactor(pullquote):adjust to volto theming fee4466
  • refactor(Header): change mobile mega menu c7ecf18
  • refactor(statistic): adjust to volto theming b726e49
  • refactor(button) adjust to volto theming eb257f8
  • refactor(form): minor styling update 79934b2
  • refactor(Footer): create Actions & Sites sub components 446840b
  • refactor(inpageNavigation): adjust to volto theming 85c631a
  • refactor(Inpage Navigation): changed button's display 36e5b4f
  • enhancement(docusaurus) modified headings to be within release versions 19ace30
  • refactor(storybook): move components to ui folder cb91f88
  • refactor(Header): change mega menu de0fc6b
  • refactor(Pullquote): divide Pullquote to sub components 34413c4
  • enhancement(docusaurus) replace changelog when auto-building docs Refs #145331 da25c0e
  • refactor(popup): adjust to volto theming d0d192d
  • refactor(card):adjust to volto theming 2ab6f91
  • refactor(item): adjust to volto theming 89a16af
  • refactor(pullquotes) remove unnecessary variables e0d20a3
  • refactor(progress):adjust to volto theming d1ab950
  • refactor(blockquote) change variables names 36fd5be
  • refactor(comment): adjust font sizes 0311ed1
  • refactor(InpageNavigation): clear up code 1d7afdc
  • refactor(container): change variable name for computer padding 26d123f
  • refactor(inpageNavigation): remove imports 25c1d1c
  • refactor(storybook): update ui index components exports ce78d47
  • change(infrastructure) auto build storybook when pushing to develop-itml branch of volto-eea-design-system e9aa5bc
  • refactor(storybook): delete demo stories 8b58d02
  • change(docusaurus) align deployment steps for building docusaurus 37e4ce0
  • refactor(storybook): remove components from customizations folder 8930ede
  • refactor(tab): minor styling update 1252ad0
  • refactor(comment): change avatar src e5f9c4c
  • refactor(banner) : change file type and folder 878742b
  • refactor(form elements):changed text 919beea
  • refactor(Image): change image src b971084
  • refactor(Pullquote): add component propTypes d32c5e6
  • refactor(blockquote): adjust font sizes d71a3ce
  • refactor(footer): update font sizes 1c91c35
  • refactor(Blockquote): add component proTypes ea02649
  • refactor(logo): update image f611372
  • refactor(docusaurus): restore config f2c5239
  • refactor(blockquote): update component name 572e655
  • refactor(header): fix story header import ceda6c7
  • change(infrastructure) auto build docusaurus when pushing to develop-itml branch 7bebdf5
  • refactor(storybook): remove components from customization folder 4a9bb9b
  • refactor(banner):story rename 56ff603
  • change(testing) removed navigation from cypress tests until component is finished 5549f4c
  • refactor(Segment): change to .jsx extension 5cb35d8
  • refactor(Pullquote): change to .jsx extension 564cf7e
  • refactor(PopUp):change to .jsx extension dcb24ff
  • refactor(InpageNavigation): change to .jsx extension dfefce3
  • refactor(Blockquote): change to .jsx extension 44a1645
  • refactor(heading): story name update aa10f34

🏠 Internal changes

  • style(footer): prettier fix 902c257
  • style(storybook): prettier fixes 59f941d

🏠 Documentation changes

  • docs(docusaurus):multiple page updates 2aba73e
  • docs(docusaurus):update page content 565697f
  • docs(grid):update components grid 60eb083
  • docs(docusaurus): page adjustments 0641eac
  • docs(docusaurus):updated various pages f860176
  • docs(docusaurus): logo change 3af5e5c

🛠️ Others

  • added sortable table stories and descriptions 6d44dd7
  • Layout components theming 5861013
  • recovered files from origin a4ac04f
  • grid component & stories changes 4a5752e
  • Updated what's new section with actual commits from volto-eea-design-system repo fc5e3c3
  • Docusaurus title possible fix. db699e7
  • form elements stories added description & default values 6b4f6eb
  • removed API tabs 58aa928
  • Layout updates 854f388
  • Refs #142123 removed extra customization of semantic.less: ab9de81
  • added page-header,footer and grid in docusaurus 660c8e3
  • Manual docs build and commit 666eb6a
  • added svg & png files f1338d5
  • added missing components to docusaurus 934dfd8
  • Control descriptions updated 56581eb
  • Grid updates 700332d
  • Button theming update 0ec68b6
  • site variebales & overrides changes 7251162
  • Table and Tabs theming 49f0860
  • Responsiveness updates 48e1351
  • added various components to docusaurus 550d719
  • Checkbox and radio updates 24652a2
  • remove images from typography and colour docs 8493e92
  • added guidelines' text and finished all components 02d75fc
  • added more missing components in docusaurus 8be8263
  • Prettier changes on docusaurus 5f1e5eb
  • Grid updates ae09945
  • Minor fixes for tests 3bdf306
  • Layout updates 8b7a4dc
  • Footer and TOC theming bb3d3c4
  • Refs #145331 manually commit changelog until autobuild is stabilized 93168b0
  • label component changes df8c0ff
  • added several sections to the theming guidelines ff1a649
  • Updated removed files. 84f9b8c
  • added more docusaurus components 52a3b9e
  • Progress Bar 9f2efc9
  • Modal and Confirm updates 3b306c6
  • Add proper changes to whatsnew meant in previous commit 40f78e3
  • Form Descriptions de0dfbc
  • Prettier fixes 1337e6f
  • Deleted files b82f982
  • add new images for spacing 7b7b2c4
  • Messages Theming ad621a3
  • added new content to docusaurus 1c83452
  • Minor less updates a36a8bb
  • Tabs and lists updates e37eef1
  • Inpage nav and timeline components 76f0f82
  • Prettier updated files 679b9d2
  • dropdown initial d8aef26
  • Prettier changes f068af0
  • List initial 6d3b969
  • List story updated e96a6f6
  • Statistics updates 74bf639
  • styling c169cc0
  • timeline comp storybook changes 1f42686
  • feature(docusaurus) added theming guidelines ded1f04
  • Properly commented out integration tests. 48b3a15
  • Reattempting commented out integrations tests. 3dd8211
  • Button theming 4231e1c
  • Card initial 06dace5
  • form element storybook changes c4b06aa
  • Pagination theming 2a80175
  • Accordion theming 8061bf9
  • global var updates and radio story 9526ee2
  • created pullquote component & stories df35563
  • Item stories added description & default values 9d459f2
  • storybook clean up code bffd326
  • List updates 28f1b53
  • Button classes updates 788c289
  • Prettier fixes 678c9be
  • Removed header title from partial docusaurus components. ed7c45e
  • created banner component and stories 9be170f
  • Breadcrumb stories description & defaultValue -- clean up code 186ab65
  • Refs #142123 added customization of semantic.less: 1e02356
  • Card stories added description & default values f6b408f
  • Statistic and accordion updates 16064ce
  • breadcrumb component & stories changes 5bceb98
  • Container initial 3eb7155
  • doc(docusaurus):Fix text for various parts bfd3fa2
  • blockquote component & stories 879b640
  • Refs #143412 removed doc comments breaking doc building e6a6756
  • Popup updates ce2d641
  • Global variables for colors and borders added 6e5fbd6
  • Tab stories changes 5429cfb
  • Confirm stories added description & default value 85cda14
  • Kebab case class names b41cd07
  • Card and Comment class updates 3899465
  • Accordion updates c97ba39
  • item stories changes 772e41f
  • Accordion class updates 9cdde86
  • Comment stories added description & default value cb6f25b
  • Accrodion stories description & default value ab8fb88
  • Pullquotes updates c598421
  • Modal and confirm class updates 0ae47e6
  • Tab and paggination updates 96796ff
  • Form Updates e986a9f
  • Classes renamed 73c8c3d
  • List and item less updates ce0de17
  • Confirm theming 36e20ce
  • container overrides changes 4b3970b
  • Docusaurus theming fc4a8c5
  • refacto(headings): update mobile headings sizes b2e9f83
  • list stories and style changes c61db53
  • Tab theming e31e6c3
  • Message and pagination classes updates c230687
  • Segment initial d5724fe
  • Refs #143412 removed doc comments from api_markdown breaking doc building efeacba
  • Timeline and responsiveness updates 1ed1524
  • Refs #142123 use swap font-display for performance reasons 083738f
  • Breadcrumb stories minor changes 3d0d17c
  • Table component stories minor change 0bf4083
  • List stories changes a64b304
  • blockquote component minor changes cdf71a8
  • ckeckbox stories minor change 6d6e508
  • image component storybook changes 91290ec
  • button overrides changes d5b78dd
  • accordion overrides changes fdcf7d5
  • Accordion component and stories changes 5079247
  • Card theming 23bbb9d
  • statistic overrides changes 2b11cb5
  • Refs #143412 build docs only on pull request like we do with storybook 473bb87
  • Card component stories minor change | added link icon deb423a
  • comment component stories changes f1c5e75
  • Accordion component bug fixed 815e91d
  • Refs #145331 use iso date to release so that we see also time ceedf08
  • correct connfig for doco 93e1313
  • Item updates fae93d4
  • added layout grid 2e6be55
  • tab overrides changes 87aaf32
  • message overrides changes 6dccfca
  • segment storie changes 296371f
  • progress component stories changes df10c2e
  • message comp storybook changes c86b405
  • Accordion cmponent stories | minor bug fix 6de0d81
  • Refs #145331 add all changes when auto building docusaurus ce11cce
  • perf(timeline):removed semantic timeline package 0aeb34a
  • Tablet Breakpoint update b229c27
  • Refs #143412 set storyBook Url to eea.github.io b7fdecb
  • bump package version to signaling of a major release c835f1d
  • small commit to trigger deployment of storybook and docusaurus be46ea3
  • doc(accordion):revert previous change 3de02da
  • fix typo for caption @desktop line-height pixel number 1671552
  • Commented out integration tests. 574cfec
  • popup overrides changes a9555e3
  • container component stories fixes 692cfce
  • Added timeline to package json fixed f2e93e0
  • Refs #142123 modified import of volto-eea-design-system icon.less: a7fab7d
  • Refs #142123 reference icon.less from this package: 5616e6d
  • Menu component stories change 2797716
  • Image stories minor change ddb9f1d
  • card component stories changes 6ccba1e
  • Added timeline to package json 93031d6
  • table stories code clean up b7b2a56
  • Refs #143412 removed extra baseUrl from docusaurus config 79f36da
  • Accordion stories minor change ffe808a
  • Theme assets 3f4bea4
  • Merged with develop 167ec9f

0.1.2-beta.2 - 2022-01-03

0.1.2-beta.1 - 2021-12-22

🛠️ Others

  • Tab component stories minor changes 4690a6f
  • Comment component stories minor changes a87cb6a
  • Form stories changes fc30c90
  • Grid component stories minor changes 798fdd0
  • Image component stories minor changes be93385
  • Menu component stories minor changes cb1f9a8
  • Dropdown component stories minor changes 57cf954
  • Header component stories minor changes 264fd46
  • Confirn component minor changes 9a00bc1
  • Item component stories minor changes 6994fa0
  • Label component stories changes 5cc5843
  • Container component stories minor changes e6e40b3
  • Message component stories minor changes ba9d377
  • Breadcrumb component stories minor changes ff7a176
  • Modal component stories minor changes af1fe6a
  • List stories changes 0016042
  • Button component stories minor changes 690dfd2
  • Radio component stories minor changes 84eac30
  • Progress component stories minor changes e676357
  • Pagination component stories minor changes b1af226
  • Segment component stories minor changes 5f8c7ef
  • Refs #143412 eslint fixes for component stories badcb91
  • Table component stories minor changes 7c104b8
  • Refs #143412 more eslint fixes a88c091
  • Refs #143412 warn for broken links instead of throwing bd5821c
  • Refs #143412 merge changes from develop-itml to develop branch bca28b9
  • made tabs dynamic for api tab ea37ecb
  • Basic storybook/Docusaurus components 840ab60
  • created List directory & srories based on semantic-ui List component 51f1901
  • made tabs as component easy to call for other components 07bae49
  • Popup Component | minor fixes 2ff9908
  • created stories for Tab component 95e3a73
  • created Table directory and stories based on semantic-ui Table component e16115d
  • List component stories - minor changes de11343
  • created stories for Comment component a20f884
  • created stories for Grid component 360d2a8
  • created stories for Image component 3c1d2bc
  • created stories for Menu component 17e3b37
  • Added untracked files 75f0afd
  • created Dropdown stories d6a2538
  • created Header component stories b833979
  • created stories for semantic-ui Confirm component 6fddccc
  • created Statistic directory and stories with semantic-ui Statistic component cd62498
  • created Item component stories 90ec2be
  • created stories for Container component 41934f6
  • created Label component stories 71732f6
  • created Message component stories adcbeab
  • created Modal component stories c25409d
  • Breadcrumb component stories and minor changes 6264d92
  • created Pagination component stories 57cdad3
  • created Segment component stories d8d01d7
  • created stories for Radio component 1fd062d
  • Menu stories minor changes 6ba5e0d
  • Statistic component stories minor changes 3c874a5
  • Card component stories minor changes 290bda8
  • Accrordion stories minor changes 2ee3f59
  • renamed Demo folder to Layout b9f6d05
  • remove test exclusion 94dba3e
  • Accordion component stories minor changes e672d59
  • fix docusaurus url (removed trailing /) b6c59fc
  • Item component stories - minor changes f0a9902
  • eea logos and assets b435b51

0.1.2-beta.0 - 2021-12-18

🛠️ Others

  • Refs #140454 added github action to build docusaurus to the develop branch abe6a72

0.1.1 - 2021-12-16

🛠️ Others

  • Refs #140454 changed the following to volto-eea-design-system: 6791d41
  • Refs #140454 corrected base url for docusaurus website build 98271b3
  • Initial test changes on design system/docusaurus. 9dad612
  • After prettier check 9ec40b4
  • Refs #140454 restore SearchWidget.jsx content and removed dummy text from docs intro page 7505df8
  • Refs #140454 added references to eea and the storybook in the docusaurus footer 42bbfcd
  • Refs #140454 lint fixes 9502f2b
  • Add SonarQube badges a4e0a40
  • Refs #140454 brought changes from develop-itml and upgrades docusaurus 207c873
  • Refs #140454 removed extra content not needed by the docusaurus site bc68ebe
  • Refs #140454 updated docusaurus to latest beta d68ed8a

0.1.1-beta.0 - 2021-12-09

🛠️ Others

  • Refs #140454 moved header and footer templates from volto-ims-theme: e2d5e56
  • Refs #140454 added website folder with docusaurus site skeleton 6fd15f4
  • Refs #142794 added commented implementation of the header and footer area: 773ad87
  • Refs #140454 changed the following: 4137ec4
  • Refs #140454 removed storybook from volto-eea-design-system: a129ffb
  • Refs #140454 added storybook as a dev dependency: e04ae4e
  • Refs #140454 updated Breadcrumbs.jsx to latest version: 63fe507
  • Refs #140454 we should use jsx and not mdx for storybook tests 3668e66
  • Refs #140454 updated eea-design-system readme with extra info on package contents d2efc3d
  • Refs #142010 - Optimize Volto-addons gitflow pipelines 3af46d2
  • Refs #140454 Renamed folders of docusaurus website: 15bca74
  • Add demo story 757c409
  • Refs #142794 enabled minimum css so that header looks decent adbe233
  • Refs #140454 use the develop branch for the readme linking, it's always more up to date 23dcf16
  • Refs #140454 added missing themes reference for the eea theme e9ca244
  • Refs #140454 modified assets imports after move to volto-eea-design-system 2250cc7
  • Load footer in segment 80d38a9
  • Refs #140454 bump package version to 1.1.0 from 0.1.1 from develop branch: 1314039
  • Refs #142794 keep toolbalWidth variables in case design system runs in an older version of Volto 1a8b305
  • Refs #142794 changed the following: fbb80b1
  • Refs #140454 moved storybook scripts to the scripts section 705c4c3
  • Refs #140454 removed dangling comma 514f24d
  • Refs #140454 changed link to the start of the docs 0e16fdf
  • Refs #140454 add h1 to the list of elements that are max 800px and centered 7d3c30f
  • Add Sonarqube tag using ims-frontend addons list 8d657d0

0.1.0 - 2021-11-17

🛠️ Others

  • Refs #140454 changed the following to volto-eea-design-system: 40d2af6
  • Refs #141204 elements folder now has the variables and overrides from pastanaga theme 595b4e6
  • Refs #141204 use font awesome from SemanticUI instead of Pastanaga: 4e273ca
  • Refs #141204 removed the components customizations from volto-eea-design-system: c98c260
  • Refs #141204 added customizations folder from volto-ims-theme to volto-eea-design-system: ff4bf44
  • Refs #141204 modules folder now has the variables and overrides from pastanaga theme f2841b6
  • Refs #141204 customized Comments.jsx to remove unnecessary container b2e95d7
  • Refs #132149 added initial commit for volto-eea-design-system: 2934b91
  • Refs #141204 collection folder now has the variables and overrides from pastanaga: 213d496
  • Refs #141204 removed search widget customization, we can use volto-ims-theme for that file b7e8b0c
  • Refs #141204 stylelint quick fixes 5595925
  • Refs #141204 changed the following: 769f4f9
  • Refs #141204 changed the following to the eea theme: 06d8d86
  • Refs #141204 eea site.variables now use all values from pastanaga's site.variables 6535c0f
  • Refs #141204 simplified container overrides: 5125003
  • Release 1.0.0 177d0ce
  • Refs #141204 globals folder now has the variables and overrides from pastanaga theme 116a0c3
  • Refs #141204 changed the following: 2e7f423
  • Refs #141204 modules folder now has the variables and overrides from pastanaga theme: 27a201d
  • Refs #141204 text elements are now with a max width and centered within content-area: bbed7bb
  • Refs #141204 added main.variables entries from pastanaga to eea theme 1cbbc55
  • Refs #141204 modified theme image imports for component customizations ef3238a
  • Refs #141204 modified container width to be auto: 2e8d2e0
  • Refs #141204 modified several icons to use the \f values instead of \e: c397145
  • Refs #141204 changed the following: c518eda
  • Refs #141204 ensure that main column isn't enlarged over the sidebar section on edit f7a2868
  • Refs #141204 changed the following to the form styling: eb92e05
  • Refs #141204 modified path of theme folder location for image selection f8cca45
  • Refs #141204 added missing mobileScrollbarWidth variables introduced as part of the mobile navigation pull request 444c78d
  • Refs #140454 reference font and image path from ~volto-themes instead of relative ec93ed3
  • Refs #141204 ensure that Volto doesn't crash when site module is set to eea: 51f2f27
  • Refs #141204 added tiny size prop to Breadcrumbs in order to have it as 12px 56a12e2

0.0.1 - 2021-11-17

🛠️ Others

- +

What's new

EEA Design System (1.0)

Components ready to be used

The following components are ready to be used as Volto blocks, slate integration, or via the advanced block styler:

  • Accordion block
  • Call to Action block
  • Callout - part of the Description block, slate
  • Card - part of the Teaser block and Listing block, it includes several variations like round card e.g., used for Avatar
  • Divider block
  • Headings slate
  • Hero block
  • Item block - used for text with an icon (remixicon or custom SVG/image) on the left/right
  • List slate - ordered and unordered
  • Quote block
  • Statistic block
  • Tag block
  • Table block
  • Tabs block
  • Timeline block

Future releases

Below is a non-exhaustive list of the work-in-progress which is planned for future releases:

  • Navigation Portlet (used on the left/right hand of content)
  • Spacing/padding system. We want to add the ability for editors to consistently apply various spacing/padding on certain components in order to allow a better alignment when components are used together.
  • Improve docusaurus and storybook with more components, controls, and variations in order to better reflect what is possible in Volto.

Generated by auto-changelog.

Unreleased - 2023-04-10T10:02:30.133Z

🚀 New Features

  • feat(storybook): components keyboard and screen reader optimization #324 from eea/design-system-accessibility 85faff7

🐛 Bug Fixes

  • fix: dont run isInternalURL twice a48984e
  • fix: github autoformat be97749
  • fix(cards): focus outline for header needed for the overflow hidden solution with max title lines 849a7a8
  • fix: external url in header 9e3aea6
  • fix: check if client method change 7c53b83
  • fix(item): use child selector instead of descendent as it interferes with blockchooser refs #157040 ad4ca37
  • fix(header): external url in header now takes you to the correct url #330 from eea/header-external-url-fix 086c61d
  • fix(item): flex variant on edit when inside blockchooser #333 from eea/fix-item-csss 65b9099
  • fix(tag): fix in args 18eaaf4

💅 Enhancements

  • refactor(megaMenu): align menu items with demo site for better testing 82a5c84
  • refactor(breadcrumbs): updates on structure and story for accessibility 770c8c0
  • change(logo): update eionet svg 3c87fc7
  • refactor(downloadLabeledIcon): accessibility fix df3935d
  • refactor(languageLabeledIcon): accessibility fix 61edd9e
  • refactor(megaMenu): Restructure Topics and Countries lists d816e7a
  • refactor(newTabLabeledIcon): accessibility fix 211e40a
  • refactor(comment): accessibility fixes and text button update dad8cb6
  • change(mega-menu): use lists for navigation, enhance voice over support for better accessibility d13137f
  • change(storybook): removed links for Label and Comment that we implement without a link ee0bfdf
  • refactor(card): fix header outline not showing issue 48fc2e2
  • refactor(header): firefox accessibility errors fix c7d35b9
  • change(ContextNavigation): accessibility updates, not restructuring of the volto component 03fe83d
  • refactor(modal): restructure close icon as button f1b836e
  • refactor(label): add href attribute to links 05f664d
  • refactor(inpageNavigation): restructure as a button 48e22ac
  • refactor(labeledIconGroup): group updates for all labeled icons a679d9d
  • change(breadcrumbs): label modification for better screen reader output c967bef
  • refactor(checkbox): accessibility fix 3b3047f
  • change(card): simplified headerLineHeightOffset used as margin top for cards header ca61105
  • change(logos): updated eionet logo used in the site footer #318 from eea/footer-logo-update 70671d0
  • refactor(megaMenu): clean up function after test 883eb73
  • change(mega-menu): added code to align countries left column subtitle with the right column 1aa33dd
  • change(breadcrumbs): fixed sizing of breadcrumbs list items 1761e98
  • change(breadcrumbs,mega-menu): better screen readers support, see links instead of groups #309 from eea/firefox-accessibility-tab-issues d6b0b4a
  • change(mega-menu): sub-title padding tweaks for better spacing normalization e08668d
  • change(checkbox): toggle hover color correction 4f4d0df
  • change(card): add links to teaser titles cc64c74
  • change(inpageNavigation): story improvements ade63c6

🏠 Internal changes

  • style(megaMenu): remove comments and unused properties fa5f8f8

🏠 Documentation changes

1.0.6 - 2023-03-29

🚀 New Features

  • feat: add viewport-(width/height) less functions and fixed banner image url #329 from eea/develop e8e70bd
  • feat: add viewport-(width/height) less functions 68300a3

💅 Enhancements

  • change(docusaurus): set full class name for remix icons f435e10
  • refactor(Banner.jsx): use flattenToAppURL helper function to get image source URL 24b13d7

🏠 Internal changes

  • style(theme): update container width and margins in eea theme 3e4446a

🛠️ Others

  • horizontal overflow hidden in view mode f395f27

1.0.5 - 2023-03-28

🚀 New Features

  • feat: improve full-width class 70bba7e

🐛 Bug Fixes

  • fix(banner): Add missing divider for time tag #327 from eea/banner-metadata c46a583
  • fix(banner): Add missing divider for time tag 7d68c39

1.0.4 - 2023-03-27

🚀 New Features

  • feat(copyright): Add copyright prefix - Image - refs #250724 6a72772

🏠 Internal changes

  • style(copyright): Cleanup useless min-height - refs #250724 f2457df

🛠️ Others

1.0.3 - 2023-03-24

🐛 Bug Fixes

  • fix: improve full-width class 9322259
  • fix(header): Remove z-index from subsite logo #320 from eea/subsite-logo 5091100
  • fix(header): Remove z-index from subsite logo d433a97

💅 Enhancements

  • change(header): Add search popup customizations from eea-website-theme 43e5a78
  • change(popup): create custom popup for better accessibility 036aac9
  • change(popup): added most important popup properties from Semantic ui implementation 61f65bc
  • change(banner): use custom-made Popup for better accessibility 10d0fcf
  • change(banner): use custom-made Popup for better accessibility 9108bee
  • change(popup): added also the basic property a4497ac
  • change(colors): update gray-4 color value #321 from eea/update-gray-4 f458ff0
  • change(banner): MetadataField now uses proper time tag when value is datetime b4c4d34
  • refactor(tokens): updated gray-4 b890df7
  • change(footer): Fix error and empty div if no social links are present #319 from eea/footer-social 8922246
  • change(footer): Fix error and empty div if no social links are present 5d934a6

🛠️ Others

1.0.2 - 2023-03-14

🐛 Bug Fixes

  • fix(megamenu): topic menu title is now placed before content 6004bcb
  • fix(megamenu): removed in depth nav_title renaming that set title wrongly to a-z topics 899ca0e

💅 Enhancements

  • change(megamenu): removed special styling from at a glance mega menu section fd0c4c8
  • change(footer): renamed thematic information platforms to environmental information systems e7004a7
  • change(docusaurus): updated static image of footer sections 4ff3185

🏠 Documentation changes

  • docs(What's new): Update 'What's new' d7ed9d6

🛠️ Others

  • fixed accordion selector typo f4cabc8

1.0.1 - 2023-03-13

1.0.0 - 2023-03-13

🐛 Bug Fixes

  • fix(Footer): Open internal links within the same page 5b3e409

💅 Enhancements

  • change(banner): use huge scale instead of full image for better performance 381c58e

1.0.0-beta.6 - 2023-03-10

🚀 New Features

  • feat(site): serve Roboto fonts from eea design system package instead of google fonts #311 from eea/roboto-library f6a1b3e

🐛 Bug Fixes

  • fix: full-width is now properly sized 6e2e348
  • fix(storybook): add fontDisplay 078966a

💅 Enhancements

  • change(image): copyright position fixes, moved image floating to image-block-container 53422e0
  • change(colors:) update the design system colour palette #312 from eea/update-color-palette a5fb694
  • refactor(docusaurus): added roboto library 19de7b1
  • refactor(storybook): added roboto library e991621
  • refactor(tokens): update colours 3a2c1e1
  • refactor(storybook): restored site variables a48478b
  • change(copyright): implemented copyright hover design 6b12441

🏠 Internal changes

  • chore(storybook): switched google fonts to true 4a8cae4
  • chore(colours): changed back yellow 6 87c9bbc
  • chore(lint): lint 9b0f125
  • chore(storybook): lint 29bc809

🏠 Documentation changes

  • docs(colours): colours update 161007e
  • docs(colours): accessibility ee342aa

🛠️ Others

1.0.0-beta.5 - 2023-03-07

💅 Enhancements

  • change(carousel): tweak size of carousel dots for better touch interaction e1fb823
  • change(footer): removed min width and height from links ac33219

🏠 Internal changes

  • style(hiddenStructure): Add hiddenStructure utility to be used with h1 heading on frontpage - refs #158717 672cca2

🛠️ Others

  • fixed less build failure due to changes in footer.less 190bc8c
  • lazyload bg img on footer also ae07162
  • lazyload footer images a0633c9
  • Increase performance - mobile friendly 07d86c8
  • better useOnScreen hook c214b6b
  • role change for accessibility 5e758e0
  • minimum tap dimension for mobile a25e9a8
  • Release 1.0.0-beta.5 e4417e1
  • Add Sonarqube tag using eea-website-frontend addons list b227cf8
  • feature(mobile): increased performance by lazy loading footer images #303 from eea/increase_performance 80d1df1
  • useOnScreen default export 3e6cfdd
  • use aria-labels on dropdown 27e1443
  • prettier a7f8384

1.0.0-beta.4 - 2023-03-01

🚀 New Features

  • feat(footer): Add footer description 2ad0f71
  • feat(footer): Add footer description #306 from eea/footer-description bf655d1

🐛 Bug Fixes

  • fix(footer): Don't show empty row if description is not present 2ca7f7d
  • fix(footer): Add class for children 3c50d15
  • fix(search): Fix search links color #307 from eea/search-accessibility a76f48b
  • fix(search): Fix search links color 69c42ef

💅 Enhancements

  • change(carousel): tweak card width and padding for better arrow alignment e184f70
  • change(storybook): include footer description in storybook e904aa0

🛠️ Others

1.0.0-beta.3 - 2023-02-21

🚀 New Features

  • feat(accordion): storybook accessibility by using buttons for titles #297 from eea/accessibility-accordion 809d52b

🐛 Bug Fixes

  • fix(dropdown): remove close on blur so that we can navigate links using keyboard 5442715

💅 Enhancements

  • change(language): dropdown to use links for proper keyboard navigation 6a7de30
  • refactor(images): cleared unused/renamed images assets 821f5c1
  • refactor(Accessibility): add box-shadow on focus-visible components b1adcc3
  • refactor(images): remove unused docusaurus svgs c5ef14c
  • refactor(header): add escape key functionality, actions from div to button to have proper focus state 8081aa4
  • change(language): restore dropdown duplication in order to properly show and hide language dropdown cb28888
  • change(search): to reflect changes from eea-website-theme 2cc35e0
  • refactor(footer): update p with h3 heading tag for header ca1477b
  • refactor(footer images): removed unused/renamed 186de6b
  • refactor(Accordion): div titles to buttons, test in mobile mega menu accordions eaad4b4
  • refactor(docusaurus): cleanup decorative images fedc4d4
  • change(accessibility): style outline instead of box-shadow 53209f3
  • refactor(Footer): update mobile header size 01ab7f0
  • change(header): set the logo class directly on the link f8fba50
  • refactor(images): clear docusaurus unused pngs db5c611
  • refactor(header-images): removed unused 8250d94
  • change(language): hide language dropdown by default cc6064f
  • change(header): top dropdown menu keyboard navigation #293 from eea/accessibility-megamenu-searchbox 1e6fa65
  • change(button): set focus styling for buttons 33ebfca
  • change(footer): Avoid devtools warning in FooterActions #304 from eea/avoid_warning d774824
  • change(footer): Accessibility update p with h3 heading tag for theme sites title #302 from eea/footer-accessibility 5bf70de
  • change(documentation): Rename all image files to follow the agreed convention #301 from eea/refactor-image-filenames cfe44ef

🏠 Internal changes

  • style(header): react syntax fix 3add127
  • chore(docusaurus): ignore website/.yarn 0b33ffd

🏠 Documentation changes

  • docs(guidelines): add image name convention 290747c

🛠️ Others

1.0.0-beta.2 - 2023-02-13

🐛 Bug Fixes

  • fix(footer): action and copyright #300 from eea/develop 579f3e4
  • fix(footer): action or copyright links are simple a tags for external link 9af5070
  • fix(accessibility): added navigation and footer id's for skip link 48354b9

💅 Enhancements

  • change(footer): typos and modified footer links to be center aligned ac23f04
  • change(footer): added gap for actions and copyright 7d32ddd
  • change(footer): modified footer gap b8a820a
  • change(footer): removed extra text and date from copyright section af47bbe
  • change(navigation): raise z-index of go to top link 485ca72

🏠 Internal changes

  • chore(docs): Update eea.hbs template to beta - refs #158717 196538e

🛠️ Others

1.0.0-beta.1 - 2023-02-09

🚀 New Features

  • feat(search): Add search suggestions style 6b2b77b
  • feat(search): Add search suggestions style #296 from eea/search-suggestions 3b0c956

💅 Enhancements

  • change(search): Add proper margin for search popup 190c9f5

🛠️ Others

1.0.0-alpha.15 - 2023-02-08

🚀 New Features

  • feat(Card): add teaser card grid story 53cac0b
  • feat(utilities): Complete list of text-align utilities - refs #160747 224fab6
  • feat(small): CSS for small HTML tag - refs #160747 ad3c0ad
  • feat(fw-light): Add font weight light utility - refs #160747 c44cf57

🐛 Bug Fixes

  • fix(card): teaser card dimensions on tablet size #290 from eea/teaser-card-grid 013fdf5

💅 Enhancements

  • change(card): added extra content for teaser card story 30690ae
  • refactor(style-menu): add text-color to paragraphs styles #291 from eea/stylemenu-theme-colors 2d78307
  • change(header): Small fix in search popup #292 from eea/search-popup 86c1305
  • refactor(style-menu): add text-color to paragraphs styles 3446bc2
  • change(color): darkCyan is now replaced everywhere by the new green ef3791d
  • change(header): Small fix in search popup 3d622ea

🛠️ Others

1.0.0-alpha.14 - 2023-01-30

💅 Enhancements

  • change(mobile menu): integrate a-z topic with menu rendering logic #287 from eea/develop 05d4c04
  • change(mobile menu): integrate a-z topic with menu rendering logic 246d3d8

🛠️ Others

1.0.0-alpha.13.1 - 2023-01-30

💅 Enhancements

  • change(mobile menu): hardcode a-z topics to '/en/topics-in-depth' #286 from eea/develop 6436224
  • change(mobile menu): hardcode a-z topics to '/en/topics-in-depth' 5235b52

🛠️ Others

1.0.0-alpha.13 - 2023-01-27

🚀 New Features

  • feat(utilities): added has--bg--top center and bottom utility classes 051e6d7

🐛 Bug Fixes

  • fix(header): update green color used in page header #284 from eea/fix-banner-background 29d54db

💅 Enhancements

  • change(site): added fixes from customVolto.css to design package 51ba9b5
  • refactor(Banner): update banner background green color fd4a552
  • change(mobile menu): changed link for a-z topics to point to in depth 721bf23

🛠️ Others

  • 1.0.0-alpha.13 release #285 from eea/develop c966940
  • bump next version to alpha 13 897e906
  • Back to dev 5780dc7

1.0.0-alpha.12 - 2023-01-24

🚀 New Features

  • feat(card, colors): visited color change and title on image option for cards #283 from eea/develop e638ee6

🐛 Bug Fixes

  • fix(mobile menu): sub links when an accordion section is active bb3be81

💅 Enhancements

  • refactor(Card): create card template for stories 2fa77f3
  • refactor(Card): add image with title css 6e6e63e
  • change(card): implement title on image within image section ff6cc60
  • change(card): added image card section, tweaked mobile heading size 0f879e1
  • change(cards): moved image gradient overlay to a mixin.less file 8b4928a
  • refactor(card): Update titles value and size c35ad5c
  • refactor(docusaurus): applied image naming convention ee7bc29
  • change(cards): added image for all storybook card examples 3f19413
  • change(banner): restored label value of metadata field when type isn't date 571a4f2
  • change(card): title padding value for a more balance look 74b6556
  • change(card): removed uppercase transform from title on image 2948ae1
  • change(colors, Docusaurus): Visited link colour change and thematic logo replacement #278 from eea/refactor-visited-link f82d978
  • refactor(storybook): visited link variables b209b2f

🏠 Documentation changes

  • docs(colors): visited link update ece77fe

🛠️ Others

  • fix typos in footer gradient variables 4006640
  • change version to alpha 12 instead of 1 final 3225025
  • feature(card): new card variation with title on top of image #267 from eea/title-on-image-card 2c0ca95
  • Back to dev 477d997

1.0.0-alpha.11 - 2023-01-17

🚀 New Features

  • feat(docusaurus): Header and footer elements section #277 0df271c

🐛 Bug Fixes

  • fix(banner): storybook date input and simplified gradient opacity 7674d76
  • fix(banner): re-added title class on banner title 6d15799

💅 Enhancements

  • refactor(banner): sync storybook and Volto component c9087cc
  • change(banner): removed margin from title 17e592c
  • refactor(banner): sync storybook and Volto component #275 from eea/sync-page-banner-theme 4331fb4

🏠 Documentation changes

  • docs(footer): updates on header elements b41c550
  • docs(footer): add elements anatomy d9f0872

🛠️ Others

  • add(banner): banner title css d003247
  • Release 1.0.0-alpha.11 07e8f85
  • renamed image elements as requested in review 8541fb6
  • remove(banner-gradiant): image gradiant in favour of text 1b58520
  • update(gradient): use 8deg angle 6fd597d
  • update(gradiant): make it 0deg 1bb2696
  • remove(comment) referencing old verison of title 4226d42

1.0.0-alpha.10 - 2023-01-13

🐛 Bug Fixes

  • fix(subsite): Fix logo size on subsite section 65fff54
  • fix(subsite): Fix logo size on subsite section #279 from eea/subsite-fixes 8f6cf94
  • fix(mega-menu): show sub grid only if there are children ddfbd82

🛠️ Others

  • Add variable definitions 293fe65
  • Release 1.0.0-alpha.10 7014d08
  • Add Sonarqube tag using advisory-board-frontend addons list ef58a6f
  • Back to dev 31d4616

1.0.0-alpha.9 - 2022-12-28

💅 Enhancements

  • change(contextnav): Default title is text, custom title is link #273 from eea/context-nav-link-title ef7bdb7

🛠️ Others

  • Show document and folder content-type in Navigation listing 8471db3
  • Default title is text, custom title is link 1ae95b0
  • Context nav title link to # a27a6b7

1.0.0-alpha.8 - 2022-12-23

🚀 New Features

  • feat(copyright): Align copyright options with Volto integration - refs #158210 6bac7f6

💅 Enhancements

  • refactor(logo): import theme site logos to the story 2f29136
  • refactor(logo): update logo and mega search gradient e11f44d
  • refactor(logos): convert logo names to lowercase 07b8228
  • change(item): use default logic of setting align class on content 6b5b47c
  • refactor(logo): update logo 170efe5
  • refactor(logos): convert storybook logo names to lowercase c4b24ec
  • refactor(logo): add eea roboto font logo variations de1224a
  • refactor(logo): add container and segment to logo story 61eff16
  • change(item): removed requirement for aligned classes to be on content 30c0d5d
  • change(logos): cleanup eea logo reference to only eea-logo and eea-logo-white.svg 2796e05

🏠 Internal changes

  • chore(npmignore): Reduce npmjs package size 164c8a5
  • chore(npmignore): Reduce npmjs package size ade9d5b
  • chore(docs): renamed logo mdx to md 52e9d46

🏠 Documentation changes

  • docs(logos): svgs without classes 28a5833
  • docs(logos): add dark mode logos ccc1609
  • docs(logo): update eea logos and add logo wrapper 91cdd66
  • docs(logo): update logos on docusaurus 760e101
  • docs(logos): updated svgs dc224e1
  • docs(logos): add thematic logos 5a21a30
  • docs(logos): add zipped svgs for download 5855bf8
  • docs(logos): wisef logo update 8f90b59
  • docs(logos): move to static, add download 8c1fd5f
  • docs(logos): improve eea logo visibility 82188ab
  • docs(logos): change eea logo to svg f57b846

🛠️ Others

  • logo update or docusaurus thematic logo listing #274 from eea/develop dde90be
  • (feat): Add ability to disable the language select from website top menu - refs #158616 411c8e4
  • Proof reading page header section 230239e
  • bump package version b4628be
  • feature(docusaurus, storybook): logos selection for sites plus inverted options #253 from eea/doc-logo-page dbfc90d
  • Add Sonarqube tag using advisory-board-frontend addons list c4769e9
  • test(Jenkins): Run tests and cypress with latest canary @plone/volto 92feea0

1.0.0-alpha.7 - 2022-12-16

🚀 New Features

  • feat(item): normalized size for image or icon items #258 from eea/refactor-items 945170f

🐛 Bug Fixes

  • fix(card): rounded after removal of has--rounded--true style class d4727af
  • fix(item): removed margin set for description which pushed the text from icon d9d4031
  • fix(project): Proper paths if volto-eea-design-system package is not installed, but in development #270 from eea/correct_paths 0f8ee8d

💅 Enhancements

  • refactor(item): update icon variations and paddings 6a407b3
  • refactor(item): update spacing 2fd91c4
  • refactor(item): initial values for new sizes & add description class 3546296
  • refactor(item): add icon and more size options 1120bb6
  • refactor(item): update image and icon sizes b802573
  • change(item): set same height as width on item images 69cbd23
  • refactor(item): update item part 2 9812ae2
  • change(item): rename large to big class 24ff127
  • change(item): added tiny size that outputs 24px icon sizes 2ea9636
  • change(image): added preview image size default to 400px a0aa867
  • refactor(item): update operator for condition controls 149ccb2

🛠️ Others

  • Proper paths if the package is not installed, but in development 7a2655f
  • Update .project.eslintrc.js a2fd3f2
  • added back descriptionDistance variable until package release 3af811a
  • Release 1.0.0-alpha.7 7e66bcc
  • Add Sonarqube tag using cca-frontend addons list ce47e9b
  • Back to dev cb531c9

1.0.0-alpha.6 - 2022-12-07

🚀 New Features

  • feat(copyright): create copyright component and import it in banner 8fcde9d
  • feat(Header): add hideSearch prop 13ddfe5
  • feat(Docusaurus): Image copyright information #257 from eea/image-copyright-info 2119515

🐛 Bug Fixes

  • fix(tags): content gap when using tags-content wrapper c4eb9b8

💅 Enhancements

  • refactor(hero): add copyright component to hero 0fa88fa
  • change(copyright): implementation to add classes on content sections e10bde6
  • change(copyright): removed color variant 747b8a2
  • change(copyright): removed copyrightVariant from Banner and Hero stories ac62e07
  • change(tagList): modified implementation to align to volto-tags-block 7a57a3d
  • refactor(copyright): remove data section 52cb09d
  • change(copyright): line height to match page header implementation a56254e
  • change(copyright): now uses text color css variable with fallback to white ee7268b

🏠 Documentation changes

  • docs(copyright): copyright documentation a90ed76

🛠️ Others

  • Update usage_markdown.md f76d4a2
  • grammar fixes cb2a5a5
  • Release 1.0.0-alpha.6 6ca32f0
  • feature(copyright): image information #250 from eea/feature-copyright a8618c7
  • lint fix by introducing local variable tagsGap 7b6c0ae
  • Update 3-images.md 1b0ef03

1.0.0-alpha.5 - 2022-11-29

🚀 New Features

  • feat(Iconography): import and showcase remix icons 777112f

🐛 Bug Fixes

  • fix(docusaurus): right bar overflow fix 197c763
  • fix(lists): bullet position by using padding instead of margin 0ecae2e
  • fix(label): color for yellow variant as white isn't accessible on yellow color 91d8880
  • fix(contentBox): avoid text decoration for header-link added on cards 3ccb592
  • fix(label): margin value for ribbon image left and right margin f8e1129

💅 Enhancements

  • refactor(docusaurus): eea color palette in separate file 6c855df
  • refactor(docusaurus): classes for color boxes 80219d5
  • refactor(docusaurus): move supplementary, state and link colors to partials 2776be3
  • refactor(docusaurus): fix side menu / moved more content in palette partial f5b7077
  • change(tag): set gap on tags element for margin between tag elements 726bc6d

🏠 Internal changes

  • chore(colours): fix wrong class name 51ad0a8

🏠 Documentation changes

  • docs(docusaurus): Iconography updates, thematic platforms 2a0e596
  • docs(colors): thematic pages integration ea7a422
  • docs(docusaurus): color updates cc13b54
  • docs(colors): fix swatches accessibility 306cb74
  • docs(docusaurus): typography and colors fixes according to comments on PR ae20a72
  • docs(colours): adjust logos heights 854d4fb
  • docs(typography): merge designer and dev units 65c240e
  • docs(typography): readded extra font sizes, fixed fluid a4a5d89
  • docs(typography): changed em to percentages d417600
  • docs(colors): minors updates and instructions 84ac882
  • docs(colors): blue-grey-6 adjustment e7ab2d1
  • docs(colours): added active colour 574f7a9
  • docs(colors): switch FISE logo to png 335471f
  • docs(colors): updated visited 0248fd1
  • docs(FISE): replaced logo f7d8331

🛠️ Others

  • perf(docusaurus): added remixicon and roboto locally b67b1a7
  • feature(Docusaurus): Updates on color palette information including thematic websites #231 from eea/refactor-docusaurus ec7843d
  • Upgrade Jenkinsfile storybook to yarn 3 d20de8d
  • Back to dev 563fbc5

1.0.0-alpha.4 - 2022-11-22

🐛 Bug Fixes

  • fix(cards-storybook): load slick carousel css for arrow and pagination styles 1159b1b

💅 Enhancements

  • change(cards): refactor cards theming implementation d4e4542
  • change(cards): allow rounded, inverted and theme parameter to be set by has classes 4b4ad89
  • change(card): expect has classes on the card directly 6a9e38b
  • change(utilities): added has text classes to the text alignment utilities e6974c6
  • change(utilities): modified class name for text align using has naming 579a0cb
  • change(theme): ensure that only direct children of container have a default top and bottom margin 7f8b8dc
  • change(build): upgrade action to trigger workflow and wait to latest version c63ad3f
  • refactor(card): theming implementation to allow has theming classes #265 from eea/card-refactoring 24edc99
  • change(theme): add slick-carousel dependency f2eec7d

🛠️ Others

1.0.0-alpha.3 - 2022-11-16

🚀 New Features

  • feat(Header): Add subsite section styling #263 from eea/subsite 00398b8

🐛 Bug Fixes

  • fix(search): position now changed by default to absolute from relative 51b08fc
  • fix(megaMenu): remove paddings for buttons added by active class ec33ebf

💅 Enhancements

  • change(components): load overrides files for our defined semantic files adde7a9
  • change(container): fullwidth now take into account devices without hover 5a35a65
  • change(container): ensure only the top level elements behave like containers 98b85d1
  • change(container): modified column-block grid to remove margin and padding when using full width class 35c1cee
  • change(mega-menu): hide home link and accordion content from mobile menu 1a69172
  • change(container): width from min width 1280px to 1365px max width 66e551e
  • change(container): removed app extras and view setting of layout sizes f6dc1ee
  • change(views): customized DefaultView to pass class into page-document area 91123aa
  • refactor(megaMenu): desktop - use buttons for menu section titles and readjust content cb9315f
  • refactor(megaMenu): add nav_title and nav_description attributes 0d7a568
  • refactor(megaMenu): style sub-title and nav-description b2a48fd
  • refactor(sidemenu): add third level list and items & update active indication e2d87da
  • change(columns): implement narrow, container and wide width classes 9696b54
  • change(container): story to add classes that modify the max width of the containers 37948f8
  • change(container): affect only left and right margin of containers 183265b
  • change(containers): modified class names after layout checks 1dc3689
  • refactor(sidemenu): add is_in_path and is_current attributes for an active example a3fe7fd
  • change(container): story to avoid adding containerwidth property to container div c13d83c
  • refactor(megaMenu): mobile - use buttons for menu section titles a7b632f
  • refactor(megaMenu): update padding variables c5f2583
  • change(views): moved narrow style bellow the default container width styles 72fa58d
  • change(listing): removed container from default view page-document area 69f3d8f
  • change(views): rename classes names to width_view and added app extras layout component 745b772
  • change(container): use important flag for left and right margin a49c83a
  • change(container): add variables for edit and add section of containers f2e2c33
  • refactor(megaMenu): update sub-title paddings 992f919
  • change(site): add a 1rem margin top and bottom on all styled classes dabf6c1
  • change(homepage): removed hiding of staging banner from homepage 4ba2cd7
  • change(container): unset values of page-document on 1200+ browser width dd5bea3
  • change(megamenu): set children to be appended to the right of the menu title b69c23a
  • change(theme): modified wide width to point to 1320px as it's perfectly divisible by 4 8f82573
  • change(theme): modified wide width to point to 1368px as it's perfectly divisible by 4 2349fee
  • change(container): renamed content-text-width to container-text-width 6f788c2
  • change(listing): provide ui container fallback if no class is passed to default view af9e94d
  • change(narrow-view): re-added container class to page-document 56b44a6
  • change(view): set container width for view-viewview class as well 29dc324

🏠 Internal changes

  • style: load header/footer overrides e5b5e0f
  • style(megaMenu): restore item description color 8a19bbb
  • style(megaMenu): restore accordion content bottom padding 8e0c5a7

🛠️ Others

  • Add subsite styling e79c0ed
  • WIP settings column grid width when using full size class affc7ac
  • code cleanup 2cdc3e5
  • fix eslint 30c52e4
  • test(estlint): Fix .project.eslintrc.js aaeaa07
  • modified left value of full width classes with toolbars 70d82d4
  • Release 1.0.0-alpha.3 8fc86a7
  • feature(content): added NarrowView useful for modifying the containers from content-area d937df7
  • jslint fix 9846159
  • Feature(container): flexible container size #260 from eea/feature-flexible-container 8f84c5b
  • Add Sonarqube tag using circularity-frontend addons list 76a41c7
  • fix broken variable call for contentBox.variables introduced in previous commit by mistake d249c11
  • clean up 89f3cb3
  • removed console log from code fad86ae

1.0.0-alpha.2 - 2022-10-28

💅 Enhancements

  • change(documentation): grammarly proof-read suggestions 9f609be
  • refactor(volto-slate): Upgrade to @plone/volto-slate - refs #153447 853d9d1

🏠 Internal changes

🛠️ Others

  • test(cypress): Upgrade to Cypress 10 / Razzle 4 c1c1f4b
  • more explanations a8b2272
  • add announcement bar, showing that EEA DS is WIP e14aeac
  • Update dependencies ee30a2b

1.0.0-alpha.1 - 2022-10-20

💅 Enhancements

  • refactor(footer): update svg and tablet contact link sizes 6aba061
  • change(blockquote): renamed to Callout reflecting the correct naming from Storybook 61a518c
  • change(footer): Shadow removed from logo & tablet updates #252 from eea/fix-footer 6df783d
  • change(colors): updated theme classes for text to use css variable colors cb089fd

🏠 Internal changes

  • style(footer): reduce social icons margin f6a9cf7

🏠 Documentation changes

  • docs(alpha): Update included components in 1.0 alpha version - refs #154387 fcc5af9
  • docs(callout): Rename Blockqoute to Callout in docusaurus - refs #154387 8d733ac

🛠️ Others

0.9.6 - 2022-12-16

🛠️ Others

  • Release 0.9.6 ae19b83
  • feature(copyright): image information #250 from eea/feature-copyright 7b323ed
  • Release-it 1f5671d

0.9.5 - 2022-10-20

🐛 Bug Fixes

  • fix(statistic): margin and slate colors when using the inverted options f263dea

0.9.4 - 2022-10-19

🐛 Bug Fixes

  • fix(edit-interface): block chooser and power user menu item colors when inside content-box 7aee4f1
  • fix(header): hero text going over the logo and menu on mobile resolutions 1434508
  • fix(content-box): z-index of box-inner and added underline to slate links c8b7c7e
  • fix(content-box): adding of underline to links c2f5f0f

💅 Enhancements

  • change(banner,colors): content box theme aware colors banner changes#254 from eea/develop bcb9a8c
  • change(Banner): Add subtitle subcomponent bb67f4c
  • change(item): moved svg filter definitions to item.overrides de70366
  • change(accordion): accordion titles with themes colors can now be modified by css variables e2ac13e
  • change(colors): in lists and callouts to allow color changes 940d1b8
  • change(colors): added backgroundColorSupplementary color variable 1f5262a
  • change(list,bullet): color is no longer primary instead it's text color css variant 8c04670
  • change(statistics): use theme colors with css variable for easy color customization fb72a01
  • change(Banner): Show label in metadata field 1acda3c
  • change(tags, items): use text color with css variable for content color for easy customization 6660e2e
  • change(styling): modified naming of theme css variables a332961
  • change(colors): added backgroundColor color variable b7e6831
  • change(quote): use secondary css var for easier color replacement 7a32312
  • change(statistics): tweaked margin of statistics so that they don't overflow over context boxes b4a8e33
  • change(accordion): allow customization of accordion title background color 6590baf
  • change(colors): introduced css variables for primary colors #247 ac80825
  • change(content-box): override primary text color to white as well 28b43c7

🛠️ Others

  • Include changes in the storybook a4d9fa4

0.9.3 - 2022-10-04

🐛 Bug Fixes

  • fix(card, contentBox): meta font size, removed header override of cards a7f94b9
  • fix(List): Ordered list item story - refs #155248 c70a2bc
  • fix(OrderedList): li third level margin left - refs #155248 fba5cb9
  • fix(cards): inherit color of card description ceda799
  • fix(accordion): Fix content default padding - refs #153783 566adf7

💅 Enhancements

  • change(site): committed fixed from custom into eea design package 9b9a1fd
  • change(jenkins): added yarn policy for storybook building 3d1b844
  • change(docusaurus): typography updates 60a93a4
  • change(item): added item image coloring when applying theming classes 0403fe4
  • change(accordion, site): change text color to tertiary instead of black 4641058
  • change(accordion): allow customization of accordion title with css variables 15e7d27
  • change(content-box): added css variables that will set text color and background for children 86cac53
  • change(tabs): allow customization of tab active and hover color 4370f42
  • change(tabs): color for tabs-block section 6778c92
  • change(cards): by default date is set to appear on the right of the meta section b7b80e8
  • change(cards): carousel dots are now relative positioned daa40a4

🏠 Documentation changes

  • docs(typography): update, local fonts 39a32d9
  • docs(typography): token fix to match used values for heightheight and letterspacing 91693ec
  • docs(typography): token fix to match used values for lineheight ff41b56
  • docs(typography): remove semibold 6eb3e08

🛠️ Others

  • test(cypress): Fix md5 dependency 17f618e

0.9.2 - 2022-09-27

0.9.1 - 2022-09-27

💅 Enhancements

  • change(cards): added ability to change the text alignment using css variables ed532ac
  • change(styles): use flex-end values only instead of end to avoid babel warning 24244b2
  • change(rounded): image size, border radius to ensure more image are turned into rounded options 51e23c1

🛠️ Others

  • Merge pull request #243 from eea/develop 576564c
  • Add Sonarqube tag using eea-website-frontend addons list 4a5be6e
  • Back to dev b251255

0.9.0 - 2022-09-19

🚀 New Features

  • feat(countUp): intall countup package and import it in statistics 10ba7cf
  • feat(docusaurus): custom editUrl function for the components usage pages - taskman refs #154076 93c4240
  • feat(site): Styling scroll-to-text fragments #238 1883fcf
  • feat(docusaurus): added Edit this page link in footer of each page - taskman refs #154076 2cf8746

🐛 Bug Fixes

  • fix(header): Prevent dropdown closing when clicking inside content 838f340
  • fix(cards): position of bullets and arrow clicking on events page 148723 22ef828
  • fix(cards): rounded images show up now even when card parent is cards 48f5e81
  • fix(statistic): add a min-width to content so unwrapped statistics don't break 7c5d511
  • fix(sideNavigation): add role list to list item 58f322b
  • fix(sideNavigation): remove unused useState import f9ea677

💅 Enhancements

  • refactor(sideNavigation): implement the design to the initial navigation & make component dynamic b673d63
  • refactor(header): update top bar 626bdd5
  • refactor(statistic): create custom export and add links 9f9ed56
  • refactor(statistic): update inverted style and add background variations 7578dc6
  • refactor(statistic): remove horizontal display on mobiles & update columns control 58f00e1
  • refactor(header): minor fixes spotted in testing 0f0f3ab
  • refactor(header): update main section heights d669f01
  • refactor(sideNavigation): remove green border and divider 939cd9b
  • refactor(link): update colors for link states 3e9f599
  • change(cards): styles img tag outside of .image ee89274
  • refactor(sideNavigation): update controls a3e8430
  • refactor(statistic): fix firefox issue for fit content 87aa113
  • change(statistics): rearrange controls order b19ae70
  • refactor(statistic): add max width to wrap text for all content 758f8ce
  • refactor(statistic): add max width to label so it wraps the text 824a127
  • change(Side menu & in page navigation): styling according to figma design #221 b2df858
  • change(header): align header with latest figma changes #232 135cd68
  • change(cards): integration when cards also contain call to action buttons f0d8766
  • refactor(iconography): icon group headings b9ccd80
  • refactor(header): add variables for some sizes 8eae84e
  • refactor(Statisctic): Rename slateVariation to extraVariation a07c589
  • change(docusaurus): started example on how to add headings for iconography 53cf843
  • change(cards): remove center alignment of rounded cards body area, only the image is now centered fdfac48
  • change(color): updated link colors #234 feabfe7
  • change(mockup): Access to figma style tokens 0bb25be
  • refactor(statistic): update margin 5190f56
  • refactor(button): adjust vertical margin db6d441

🏠 Internal changes

  • style(statistic): update decimal point 7976aa4
  • style(link): update visited link color d3b18b3

🏠 Documentation changes

  • docs(iconography): added icons, guidelines 0073f1d

🛠️ Others

  • Delete 2-test-new-page.md 749eff9
  • Create 2-test-new-page ab623ff
  • Release 0.9.0 eb7e2e5
  • stylelint fix 114e3f9
  • Move text fragments style to site.overrides 8368cbe
  • Styling scroll-to-text fragments 1bb3914
  • Update Header.stories.js 9036c74
  • feature(Docusaurus): Reflect usage of remixicon in iconography page #239 0802b32
  • Update 1-design.md 146115a
  • Test workflow for contribution - taskman refs #154076 dcb924f
  • perf(figma): access to style tokens 27d8dbe
  • Rename 2-test-new-page to 2-test-new-page.md 4e3be10

0.8.1 - 2022-08-26

🐛 Bug Fixes

  • fix(message): fix size controls ee51e1d
  • fix(docusaurus): intro page hero title color now that headers are using tertiary color 618e3cb

💅 Enhancements

  • refactor(message): restore semantic variables 1c16621
  • refactor(messages): mix semantc and token colors for messages 12efa75
  • refactor(emotiveColors): temp update for tests 61a720c
  • change(footer): removed line between sections and moved actions back to the bottom of footer d9f33e4
  • change(storybook): headings storybook now uses tertiary color by default reflecting site options 1061e77
  • refactor(message): add container to story 1259ece
  • refactor(message): remove override with custom background color on error 9b40cd7
  • refactor(message): add header controls 960c2f7
  • change(message): use semantic colors for messages #204 from eea/refactor-message 22d2c43

🏠 Documentation changes

  • docs(figma): added figma files to repo 6bd4144

0.8.0 - 2022-08-20

🚀 New Features

  • feat(IconCard): card with icon instead of image a85a179

🐛 Bug Fixes

  • fix(docusaurus): typography guideline now has real font values for headings, body, caption and small text 9508db9
  • fix(card): fix content gaps, adjust new meta section and update text color for default f1a78e1
  • fix(item): remove duplicate argType dde0be5
  • fix(iconCard): add aria-label at links 44f64c7
  • fix(card): merge fix df440ec
  • fix(heroblock): color even on edit page by inheriting color instead of using the tertiary color ac53fb7
  • fix(tab): add tabindex for accessibility error ab512be
  • fix(carousel): restore missing variable 1728312
  • fix(carousel): restore flex grow for cards and opacity for arrows ce71305

💅 Enhancements

  • refactor(carousel) add links in carousel cards & update structure and variables of less files f99cb21
  • refactor(iconCard): add control for variations and link 5e1b6a1
  • change(docusaurus, fonts): documented font letter spacing modification 522712a
  • refactor(card): css updates for card variations and styling updates c8b4a43
  • refactor(publicationCard): add links and fix accessibily issue 80adf6c
  • refactor(card): add new section in meta and remove links bfb82ae
  • refactor(item): add stackable functionality 8d714fa
  • refactor(card): update meta section and controls 5e28e12
  • refactor(roundedCard): remove unnecessary code and controls and add all variations 6305c54
  • refactor(roundedCard): add optional link for image and header a6d3bf2
  • refactor(card): add tertiary hover and update css selectors ca06948
  • change(fonts): updated font sizes with values given in figma 4b0ae48
  • change(style): color, space and adjust line-height as described in docusaurus 3366da2
  • change(headings): only h2-h6 get tertiary color 7d81308
  • change(site): removed Archivo import as we should only use Roboto font a6af056
  • change(docusaurus): use tertiary color for headings and body color mirroring the design system styles 145fe73
  • change(fonts): modified headings font size as well as line height f0771ea
  • change(fonts): updated font sizes with values given in figma f16eef7
  • change(docusaurus): use Roboto font from google fonts also for docusaurus adca8e9
  • change(headers): added headerColor variable so that thematic sites can easily choose another heading color f09d2c5
  • change(fonts): typo fixes for typography section of docusaurus cae4b02
  • change(fonts): modified footer and header values afer global font size changes f160d35
  • refactor(iconCards): run prettier fe84e46
  • change(typography): inherit header colors with @headerColor variable 91d9357
  • change(breadcrumb): use tertiary color also for breadcrumb c5cbd44
  • change(heading): on homepage on the first hero set font size to h1 and inherit color 5711096
  • refactor(carousel): update card titles to display styling fix edd966b
  • change(docusaurus): use the tertiary color for body and heading colors 11c4ed4
  • change(typography): modified lineheight-0 after headers now use 1.2 instead of 1.25 04d78a8
  • refactor(card): add links to cards and replace description with title in carousel 0258737

🛠️ Others

  • feature(heading): and cards refactoring #227 from eea/develop 334fbda
  • Update package.json 3870cf3
  • Header refactor 153536 #226 from eea/header-refactor-153536 87a6fe7
  • feature(item): icon is now stackable moving the icon on top #220 b716acf

0.7.6 - 2022-08-15

💅 Enhancements

  • change(footer): Footer updates 147837 #225 fa9ae58
  • refactor(footer): initial redesign of main section 8e85617
  • refactor(footer): restructure theme sites logo columns dcba45a
  • change(footer): set actions before thematic section on mobile db25f96
  • change(footer): fix missing key warning from react dev 77f72d5
  • change(footer): Footer updates 147837 #222 32fed23

0.7.5 - 2022-08-11

💅 Enhancements

  • change(megamenu): mobile improvements with See all links, active elements and non accordion children #224 6767b99
  • change(megamenu): render accordion only if children have children be63ce2
  • change(megamenu): mobile menu design tweaks as seen in latest figma 26d74dc
  • change(megamenu): removed icon from at a change menu items and they are no longer bold as requested 043e772
  • change(megamenu): reset first level panels after each item pass 175351b
  • change(megamenu): mobile menu improvements #223 b3cabfe
  • change(megamenu): fixed key error warnings 075bf01
  • change(megamenu): handle default active sub accordion 6192a99
  • change(megamenu): enable active border only for items not titles fb0b869

🛠️ Others

0.7.3 - 2022-08-04

💅 Enhancements

  • change(megamenu): added icon on mega menu header section d0ad4d8

0.7.2 - 2022-08-03

🐛 Bug Fixes

  • fix(contentBox): z-index of content hidden by bg when using content-box-inner c5a7dac

🛠️ Others

  • Set focus on search input field in the popup on click d12c051
  • Make cypress tests work with both slate and draft selectors 4d8e5b1

0.7.1 - 2022-08-01

0.7.0 - 2022-08-01

🚀 New Features

  • feat(accordion,buttons): primary, secondary and tertiary variations #209 c34617f

🐛 Bug Fixes

  • fix(megamenu): key warning errors 4ecd279
  • fix(container): add padding also for block editors when we are on the add page not just edit b857aad
  • fix(header): bump opacity of gradient class to get rid of green hue of header text 2011b40
  • fix(header): remove console log 3a20023

💅 Enhancements

  • refactor(callToAction): add tertiary variant and restructure exports ac6695a
  • refactor(accordion): add color variations 3504c15
  • change(megamenu): WIP bringing back rendering of item with callback and path modification 6e43d43
  • refactor(megaMenu): add slide down transition and update targetRefs on close 9667157
  • change(megamenu): use renderMenuItem in order to render menu items 9ed5cbd
  • change(footer): replaced eionet logo with an svg variant and tweaked size of eionet to match size of eea logo 32ce462
  • refactor(callToAction): update tertiary state colors 159668a
  • change(accordion): style default accordion using the grey from semantic ui e24907d
  • refactor(accordion): add variations and create a default export 4a9c68f
  • refactor(colors): add tertiary shades for element states 1e24a7e
  • change(tests): try to modify tests to use slate instead of draft a2e2485
  • change(megamenu): set active class on storybook list items 112bff1
  • change(megamenu): add border for active element of menu 5e7dfa5
  • change(package): condition modification of navDepth settings dd21dad
  • change(mega menu): use non variable to fix build of volto-kitkat-frontend 3ecd652
  • change(header): prefix mega-menu active class for adding border 32898cb
  • change(tests): use data-slate-editor instead of contents that was found in draft js instead of slate 1e0413c
  • change(stories): hide variant control from button link story 43f8c41
  • change(stories): hide variant control from button link story aea7126

🛠️ Others

  • feature(theme): added context navigation component story and default style 5a6955f
  • feature(megamenu): open default accordions on mobile navigation based on pathname cc299c1
  • fix eslint warnings 3b30282
  • bump release version to 0.7.0 fa82cbd
  • Theme fixes, mega menu selected element both in desktop and mobile #211 b482729
  • feature(mega-menu): added menu slide down animation #208 4360d0e

0.6.5 - 2022-07-06

🐛 Bug Fixes

  • fix(header): double click to close dropdown is no longer required b8a2ed0
  • fix(header): menu generation when atAGlance isn't found d68b03c
  • fix(menu): removed minHeight that enlarged the global menu 133be1e
  • fix(hero): image dimensions when full width and height isn't enabled 4114f73
  • fix(contentBox): removed negative z-index that hid fullwidth bg color bd60faf

💅 Enhancements

  • change(hero): tweaked hero block height and padding 994b6f8
  • change(item): tweak size and padding of icon when used inside item dbdef19
  • change(typography): updated letterspacing values and clarified values used for certain type tokens 8a13bf8
  • change(item): enable theming for icon and text color and added tertiary option 6d4444f
  • change(header): top section chevron sizes and margin as requested in enhancements document b307c74
  • change(cards): add underline to links when applied to headers and use tertiary color by default 874f956
  • change(utilities): wrap in quotes h2 and h3 of quoted-wrapper 8aa4716
  • change(package): bump package version to 0.6.5 denoting bug fixes release 0585aeb

0.6.1 - 2022-07-01

🚀 New Features

  • feat(UnderlinedTitle): create story and necessary utilities 8beb56b
  • feat(headers): added underlined titles with theming support af67561

💅 Enhancements

  • refactor(heading): move underline story and update controls 2c9bfd2
  • refactor(underlineTitle): add content box for different variations 0878915
  • refactor(underlinedTitle): add control for changing heading size 211f515
  • refactor(underlinedTitle): Restore text variation dropdown control bd8c611
  • refactor(utilities): add color variation for headings and text 7e3a779
  • refactor(utilities): update border bottom utility and restore line height for headings 7fe4a7b
  • refactor(headings): update the line height of headers according to docusaurus instructions 9da19b3

🏠 Internal changes

  • chore(countup): package for statistics 26fcd09

0.6.0 - 2022-07-01

🐛 Bug Fixes

  • fix(item): adjust the container in stories a848c46
  • fix(tag): align start for tags on mobile, update path for Tag List and add containers b9de845
  • fix(item): update image width & height on mobiles and add 3 line clamp for description 0cd2c46
  • fix(pageheader): metadata font size on mobile to be readable 0a9b1fa
  • fix(breadcrumb): fixed variable name for breadcrumb item 2b547eb

💅 Enhancements

  • refactor(Item):create item story with custom default class 069ae02
  • refactor(pagination): add pastanage menu overrides and remove any eea theme css from default story 5080810
  • refactor(item): update variables from px to rem 30eed78
  • refactor(Item):add default item mobile padding 3518465
  • change(site): added fixes from custom 0fe4d80
  • refactor(Pagination): add default pagination stopry and rename previous as Secondary a5e3e13
  • refactor(pagination): comment out secondary pagination and its styling bcf4cff
  • refactor(tags): remove content class and add flex wrap d6333ca
  • change(logo): use a real svg logo for white eea logo 3b80dc7
  • change(header): show eea information systems on tablet as well ce82ceb
  • refactor(tokens): update letter spacing tokens 5f8753b
  • change(letterspacing): updated letter spacing positive values b31818f
  • change(pageheader): add bottom margin on mobile for sharing dropdown actions d3cda47
  • change(pageheader): removed blogger, reddit and stumbleupon sharing links e4acc4e
  • refactor(Item): add default item background color c978c8d
  • change(package): bump package version 1f01f72

🏠 Internal changes

  • style(item): update item image e585e9d

🏠 Documentation changes

  • docs(colors): token usage c433ec6
  • docs(Docusaurus): typography and spacing updates 48d1269
  • docs(Docusaurus): various fixes a972a31
  • docs(typography): updates 66d95e4

🛠️ Others

  • Tabs block custom border left/top ca4cce0
  • Fix sidebar tabs in Volto CSS c287db5

0.5.5 - 2022-06-23

🐛 Bug Fixes

  • fix(contentBox): color of cards when inside content-boxes 76a4520

💅 Enhancements

  • change(homepage): moved fixes of homepage to custom and colored carousel arrow 0a226ef

0.5.4 - 2022-06-16

🐛 Bug Fixes

  • fix(block-style): Content box preview in sidebar 6362766
  • fix(header): ensure transparency goes as high as the search icon 4470e13

💅 Enhancements

  • change(contentBox): add background as before element instead of using full-width 7e0a596
  • change(content-box): content box links are now underlined f7976f5
  • change(homepage): added fixes from custom c3e0333
  • change(hero): add margin top with the height of the top section on edit fefa6bb
  • change(cards): fix default card color when inside content-boxes 6fdf3aa
  • change(container): removed override of content-box-inner container 66fe7d4

0.5.3 - 2022-06-16

🐛 Bug Fixes

  • fix(homepage): hero and homepage fixes for #151156 #198 43d4efc
  • fix(header): fixed top section width on edit page ce5898b

💅 Enhancements

  • change(hero): added min height to hero-block-image-wrapper 3cc37c0
  • change(hero): spaced hero block has a 3rem margin top and bottom c463b03
  • change(hero): added extra top margin on hero-block-body from tablet and up within homepage 64142c3
  • change(hero): tweak min height of hero block e1271b4
  • change(card,contentBox): use inherit for text color to inherit black from body c1ba3b6
  • change(container): on section-edit modify only left and right padding values fe6e3ec
  • change(utilities): bump z-index of overlay class ede3209
  • change(hero): fixed variable reference for margin of body from homepage 092b90b

0.5.2 - 2022-06-14

🚀 New Features

  • feat(contentBox) : add new Content Box component 2ebbb47
  • feat(ContentBox): Add primary, secondary, tertiary themes 87cb2fe
  • feat(ContentBox): Update storybook with available themes 93b26b2

💅 Enhancements

  • refactor(contentBox): restructure the component to be more flexible f0d2de6

🏠 Internal changes

  • chore(contentBox) : add lint changes 5aaf740

🛠️ Others

0.5.1 - 2022-06-13

💅 Enhancements

  • change(header): changed homepage text color 64ce8b6
  • change(hero): added styles for adding dark overlay to hero bf1d292
  • change(homepage): hide stagingBanner on homepage fb6e319
  • change(header): use variable for homepage hero-block padding 89ff344
  • change(tokens): modified grey-4 color to point to a 10% shade from original color b406283
  • change(header): added min-height for mega menu needed for 1 items menus 18814f4
  • change(hero): hero section block integration #192 4ea2f40

🛠️ Others

0.5.0 - 2022-06-11

🚀 New Features

  • feat(hero): added storybook implementation of hero component #172 17b9d16
  • feat(hero): add hero block component and stories 6019fc8

🐛 Bug Fixes

  • fix(header): Internal links in mega menu d8ca135
  • fix(header): show active menu when clicking on children a54fa67
  • fix(header): accessibility and dropdown possition fixes 505ac36
  • fix(header): fix accessibility issue by David 783dcec
  • fix(header): dropdowns disappear on resize 52338fd
  • fix(header-topdropdown): dedupe html elements for topdropdowns cd8a2a7
  • fix(header): transparency class should apply on the current bg color or image f9a0033
  • fix(header): mobile dropdown now visible 34371b4
  • fix(header): dropdown disappears after window resize #116 fc7dd8b
  • fix(header-topdropdown): dedupe html dropdown elements for topdropdowns #115 f10a7a8

💅 Enhancements

  • refactor(megaMenu): update mega menu in header component 2d1ce45
  • refactor(header): update structure and variables of top bar af70909
  • change(header): renamed mega menu items href attribute to url 3ed8144
  • refactor(header): update main section and and add color variations f2f0fd1
  • refactor(header): minor updates on colors and widths a70129f
  • refactor(hero): add full-heigh control to adjust height a45cb7c
  • change(header): disable sticky setting until feature is more stable 1d7af95
  • refactor(hero):make button variant and inverted different button controls 7e182ca
  • refactor(header):main bar sticky on scroll up 9c9e7c6
  • refactor(headings): update heading sizes for mobile 19f3cca
  • change(header): hide first link(home) from header menu on site ae7f3b9
  • change(megamenu): typo correction and key setting on list.items 96d2c4f
  • change(header): use Link instead of a tag for menu items 9812b3f
  • refactor(header): add control for inverted logo 023ca45
  • refactor(hero): move quoted utility to h2 tag 7376676
  • refactor(header): add link for menu title inside desktop mega menu 24355d0
  • refactor(utilities): update hex with color token 8dc65ef
  • refactor(header): and mega menu to latest spec #114 44fcf68
  • refactor(header): update search input and file endings afab36f
  • refactor(header): add control that toggles transparency class on main section b8d4bdb
  • refactor(header): restore union dropdown after implementation 7e98bab
  • refactor(header): minor responsive fixes 16a0006
  • refactor(hero): align hero's text and meta seperately 4fa958f
  • refactor(hero):add button variant controls f362a7b
  • refactor(header): update search input 368962e
  • change(header): mark top level active menu item 665c449
  • refactor(hero):prettier & style changes d846884
  • refactor(header): add control for main section stickiness 2f07572
  • change(header): use viewport width for changing mobile text in header dropdowns b50fa58
  • refactor(header): add fluid font sizes 5f2743e
  • refactor(header) add position sticky & transparent for main section 29df772
  • refactor(hero): update variables with new design tokens 1d97922
  • refactor(Language List): render language dropdown as ul and li elements 3617442
  • change(header): introduced item class to the mega menu link content 00ca376
  • refactor(Language List): add less variables 7ccc1cc
  • change(header): disabled active menu when clicking on globalnav links 3f7b5ee
  • change(header): target link instead of span directly 9e865fb
  • refactor(header): remove unused imports 7e232db

🛠️ Others

  • Add item themes; override .block .ui.image width based on size 06010db
  • Move item icon themes to item.overrides 31e8921
  • Override only the width 8d49270
  • Override tile image in .block parrent 005655d
  • Update package.json 9dc3816
  • feature(item): added themes to item icons #190 a6a2907
  • update storybook header.topdropdown e58ac08
  • use volto-screen-helper width ea156aa
  • Add divider content for metadata field in Banner 327ad1c
  • rename to viewportWidth 32162e7
  • don't connect component to store 470b8ba
  • Add end of line 51639d8
  • behave as mobile under 480 only 11b99e1
  • make it account for all mobile-s,m,l 69e23ae

0.4.5 - 2022-06-08

💅 Enhancements

  • change(tabs): Add style for tabs accordion template #187 fb8adbf
  • change(footer): avoid react error by providing key prop to grid column ef0b193

🛠️ Others

0.4.4 - 2022-06-08

🚀 New Features

  • feat(divider): create story for divider b10a2e0

🐛 Bug Fixes

  • fix(divider): restore space between classes c595c15
  • fix(divider): Text colors and transform e524e10
  • fix(footer): story aria labels for social media links 254bdc7

💅 Enhancements

  • refactor(footer): update logos and less structure 66b8e0f
  • refactor(footer): first footer updates d18a2ee
  • refactor(footer): logo updates and adjustments 101bc9d
  • refactor(footer): use tokens and adjust spacing 2cb1669
  • change(footer): moved SubFooter logic to SubFooter.jsx from Footer story 902383a
  • refactor(Divider):add divider with content inside story e2d66dc
  • change(footer): added managed by section as properties 9328fc3
  • refactor(divider): remove custom divider d4870d2
  • refactor(Divider_:remove green color class & add tertiary 95f3018
  • refactor(footer): use remix icons for social links 5ef9aa2
  • refactor(Divider):remove clean class and use fitted prop 8d2be35
  • change(Divider): Rename color property to theme 0deffc8
  • refactor(footer): update links and logo align 7afbab9
  • change(footer): tweaked column sizes to the values before my changes fdf2718
  • refactor(footer): to latest figma design #182 3e0ba2b
  • refactor(footer): move subfooter logic to the proper component #185 3034577
  • refactor(footer): update controls b0b872b
  • refactor(testimonial): update divider 784450a
  • refactor(testimonial): changed divider color to secondary 84282f9
  • refactor(divider): remove custom divider from theme config a0409e8

🏠 Documentation changes

  • docs(divider): switch to secondary color 239844b
  • docs(divider): showcase path fix d5ea03f

🛠️ Others

0.4.3 - 2022-06-03

🐛 Bug Fixes

  • fix(edit): Fix columns/accordion inner toolbar padding fafbb52

💅 Enhancements

  • change(docusaurus): completed removal of description from guides 42424b9

0.4.2 - 2022-06-02

💅 Enhancements

  • change(docusaurus): moved color swatches around in the color guide 8a395fc
  • change(docusaurus): removed description from components and introduced category listing f220bf0
  • change(docusaurus): rename gap to space and added em spaces f5b042d
  • change(docusaurus): moved extra docs to webdev section 1ce0797
  • change(docusaurus): moved md_components files into webdev/md_components 73c1c08
  • change(docusaurus): added category yml for all sections 1740572
  • change(docusaurus): color guideline updates and spacing tokens documentation #148 c1154ba
  • change(docusaurus): modified story links to avoid broken usage tabs 78dc8d8
  • change(docusaurus): renamed several file id's so that they match the incremental naming sequence 11299c9

🏠 Documentation changes

  • docs(Docusaurus): timeline, testimonial, quote and tags aaa54ec
  • docs(spacing): add relative gap tokens 92abc8f
  • docs(colors): updated colors a28c99e
  • docs(tags/content): new page about tags and content 60be402
  • docs(Docusaurus): labeled icons f6a0f61
  • docs(typography): add font size and line height tokens 2ff65e4
  • docs(spacing): add spacing gap tokens 2d53727
  • docs(spacing): add missing gaps 442db46
  • docs(docusaurus): minor fix 6e66513
  • docs(spacing): aligned images e946fe5
  • docs(spacing): new image fcd3294

🛠️ Others

  • merge changes from develop into docusaurus token documentation a940138
  • perf(docs): restructuring order 8f4134d

0.4.1 - 2022-06-02

🚀 New Features

  • feat(languageLabeledIcon) : add new component 110558e
  • feat(LanguageLabeledIcon):add new component d00200c
  • feat(newTabLabeledIcon) : add new component 8f5cd31
  • feat(labeledIconGroup) : add new component 787d648
  • feat(DownLoadLabeledIcon) : add new component 6ea2fa1

🐛 Bug Fixes

  • fix(LabeledIcon) : fix lint errors 91b042f
  • fix(LabeledIconGroup) : fix links for tests daa1065
  • fix(LanguageLabeledIcon):bug fix & languages change 1436e2b
  • fix(LabeledIconGroup):fix based on Langauge & Download Labeled icon components changes 3015864
  • fix(newTabLabeledIcon) : add link item b1a9ada
  • fix(Labeled Icons):minor bug fix 00f3022

💅 Enhancements

  • refactor(labeledIcons): adjust new tab labeled icon to figma and replace px with rems 904615d
  • refactor(LanguageLabeledIcon):implement with pop up 0f3dd8f
  • refactor(labeledIcon): add group wrapper in labeled icon stories 4b7dd31
  • refactor(DownloadLabeledIcon):implement with pop up aa61f9b
  • refactor(labeledIcons): adjust language labeled icon to figma 5741e3d
  • refactor(labeledIcons): adjust download icon to figma and replace px with rems 4ae8530
  • refactor(LanguageLabeledIcons):minor storybook change 78f5544
  • refactor(LanguageLabeledIcon): set language code to uppercase and minor storybook change ac28693
  • refactor(labeledIcon): adjust paddings 9c1ecdd
  • refactor(labeledIcons): update margins for group labeled icons 5fa5ca9
  • refactor(labeledIcons): add variable for icon color 9f9d3cb
  • refactor(labeledIcons): update colors on download links c042642

🏠 Internal changes

  • chore(labeledIconGroup) : lint changes 535cee4
  • style(downloadLabeledIcon) : fix styling 6d8e3ac
  • style(downloadLabeledIcon) : fix alignment 4558017
  • chore(LabeledIconGroup) : lint changes ab36476

0.4.0 - 2022-06-01

🚀 New Features

  • feat(Carousel): create carousel for cards 2b0d737
  • feat(ItemwithIcons): Initial Item group with icons, new item variation 7f4ea47
  • feat(utilities): add file and basic utilities 05c88b2
  • feat(utilities): add file with basic utilities classes #173 855185f

🐛 Bug Fixes

  • fix(tokens): hsla function for shadows b8e5d37
  • fix(tokens): remove css var from less file a9c4224
  • fix(carousel):add storybook controls descriptions 269a603
  • fix(item): remove image width css from item.less 7b21cb2
  • fix(table): Set responsive breakpoint to @tabletBreakpoint 067e018

💅 Enhancements

  • refactor(item): import item.less in theme definitions c516374
  • refactor(Label):add corner,ribbon & basic label stories and styles e2bbbb9
  • refactor(Label):style changes based on label importance class ce4d5d1
  • change(tokens): rename gap to space and added em spaces 719efc4
  • refactor(item): add classes for size, set default to tile and add controls for grouped items d5a0405
  • refactor(tokens): add borders, shadows, shapes and z-index tokens 7069106
  • change(tokens): name spacing tokens gaps and added missing values up to 80px as documented 9fbd912
  • refactor(quote): Rename sourceInfo to extra info 76c2b40
  • refactor(item): WIP replacing unstackable with row e3a44de
  • refactor(tocens): add color design tokens 13bb165
  • refactor(item): adjust margins to match figma designs 6334581
  • refactor(carousel): remove title from story and color on card hover 12a1d7c
  • change(tokens): updated sizes with 4-8-16px increments 1f53d65
  • change(tokens): added size tokens to be used for width of elements cda5dea
  • change(utilities): values need important rule 96150d9
  • change(tokens): added also rem space values aedbbdd
  • change(tokens): updated z-index tokens with negative values 404efe4
  • refactor(tokens): add 14px font size token 8d8695d
  • refactor(docusaurus): restructured and improved sections navigation #174 b47b026
  • refactor(tokens): add 12 and 14px font size token #176 3681147
  • refactor(tokens): remove conditional border radius f0fe5ad

🏠 Documentation changes

  • docs(website): created new sections, improved website navigation 243f0be
  • docs(homepage): adding design system homepage with links for upcoming sections c9a9685
  • docs(docusaurus): copyedit, improved navigation 998762a
  • docs(website): restructuring, moved current DS docs to new folder 8bb612f
  • docs(homepage): copy editing ee37d6f

🛠️ Others

  • Release 0.4.0 f4bc509
  • feature(homepage): added Item group with icons #167 2ec99f5
  • feature(tokens): added borders, z-index, shadows tokens #171 74c1788
  • feature(tokens): added initial color design tokens #169 da3eae0
  • perf(carousel): added slick library ca9be51

0.3.1 - 2022-05-19

🐛 Bug Fixes

  • fix(input,segment): toggle inputs and padding fixes within Volto sidebar forms de030d6

💅 Enhancements

  • change(login): restored width of login container to 376px 0564293

0.3.0 - 2022-05-17

🚀 New Features

  • feat(Callout):create Callout component with Blockquote style 3d486b1
  • feat(callout): Align the Callout component with Volto slate component e9343ff

🐛 Bug Fixes

  • fix(testimonial): fix storybook arg names b9df52f
  • fix(table): tweak responsive table for extra long headers 7f9f9e2
  • fix(quote): fix color and padding issue 310d6b3
  • fix(accordion): Fix accordion active title color 57af165
  • fix(testimonial): remove info arguement 9593d95

💅 Enhancements

  • refactor(Table):add responsive mobile table story and styles aed69e6
  • refactor(testimonial): adjust to volto design | fix avatar image size 546070e
  • refactor(Quote):rename Pullquote component to Quote 9384a0c
  • refactor(Quote):rename Quote.Metadata to Quote.SourceInfo dfae8b1
  • refactor(Quote): rename Author to Source 6d400f6
  • refactor(Quote):move Testimonial component under Quote folder e2467c2
  • refactor(testimonial): readjust rounded card b419334
  • refactor(Table):wrap table with semantic ui container 24ac2bb
  • refactor(Testimonial):minor storybook bug fix 7b6d128
  • refactor(Callout): wrap story with semantic ui container ead362d
  • refactor(quote): update action name to match the functionality caf2e35
  • refactor(table): add borders to responsive table with celled attribute 8a71a67
  • change(table): make use of headerSortableWhiteSpace variable fd836fb
  • change(table): use the @mobileLandscapeBreakpoint for max 480px media query 90880ab
  • refactor(Quote):rename pullquote to Quote in Testimonial f54da19
  • refactor(Testimonial): change card class name e995c32
  • refactor(Testimonial): prettier changes 904594b

🛠️ Others

  • feature(tokens): added tokens folder for design tokens we can use in the system a542172
  • perf(lint): fix f2ef3ab
  • Release 0.3.0 8724b28

0.2.4 - 2022-05-13

💅 Enhancements

  • change(segment): brought back overrides from pastanaga into our theme 14efd02
  • change(container): removed padding from containers restoring thus the defaults c2ed813
  • change(grid-story): added container as grid width is influenced by container width 459f481
  • change(breadcrumb): removed padding from breadcrumb added by container c5df567
  • change(container): modified all outputted widths to align to grid 9f29cef
  • change(breakpoints): restore Semantic UI breakpoints, adding extra needed values e7f5b1e
  • change(container): restore maxWidth to 100% now that the last value is 1120px 8b55c58
  • change(header): wrap header globalnav links useful for editing section 10d4f56
  • change(breadcrumb): added vertical variant to the breadcrumbs like we do in Volto f405f84
  • change(breakpoints): added also contentBreakpoint for backward compatibility b6c9212

🛠️ Others

  • [JENKINSFILE] Add failure comment, no jenkins fail c325bf1
  • prettier changes 134da52
  • [JENKINSFILE] format PR comments 739438c
  • [JENKINSFILE] mention comment author in comment 39a26aa
  • [JENKINSFILE] remove debug, add error per stage 903eecd

0.2.3 - 2022-04-29

🚀 New Features

  • feat(CallToAction):add feat call to action ab53642

💅 Enhancements

  • refactor(button): add container to stories 6c02c19
  • refactor(tab): update vertical tab columns and content b473fab
  • refactor(call to action):render call to action with Button as="a" e7dfabf
  • refactor(button): update inverted button colors c822021
  • refactor(Tab):scrollbar change in mobile & vertical tab fix 0e34cbf
  • change(banner): added icon class to share icons 48e866e
  • refactor(Button): move button to forms folder 94996fc
  • refactor(Tab):minor change in secondary pointing menu variables 280b6c4

🏠 Documentation changes

  • docs(button): import call to action stories e4eed44

0.2.2 - 2022-04-22

🐛 Bug Fixes

  • fix(publicationCard): restore line endings 582859e
  • fix(form): added back overrides from Pastanaga theme a3f7ff8
  • fix(OrderedList) : add list only if sub list exists 8acbc8d
  • fix(label): update highlight label color d55bbb0
  • fix(publication card): run prettier 81a5bfc
  • fix(avatar) : fix naming convention for arg 84fc5fa
  • fix(tab): restore mobile font sizes 58f39be
  • fix(addForm): add min height to add form and fixed block chooser overflow ca4415d
  • fix(OrderedList): adjust margins to fourth sublists 663d384
  • fix(dropdown): being hidden because of third party css 7d353df
  • fix(modal): overflow hidden as clearfix of last child from modal b4923f5
  • fix(RelatedContent):fix merge conflict adc34bf
  • fix(button): labeled class needs to be placed after left or right keyword 53d1204

💅 Enhancements

  • refactor(card): prettier fixes e10e3d6
  • refactor(card): add card variations e16d05b
  • refactor(card): remove stories 0deb0ca
  • refactor(card):delete primary and secondary card stories 1f95d22
  • refactor(Avatar) : remake avatar as card variant ea77cdd
  • refactor(card): add styles for card variations 7407bd3
  • refactor(storybook): add story with related content inside of a tab dca008a
  • refactor(card): Rename variables from avatar to rounded be01316
  • refactor(avatar): update less variables and layer structure f965db1
  • refactor(PublicationCard):remake publication card to be a semantic card variation 5a0c6ab
  • change(button): simplified button styling fe892d6
  • change(button): simplified storybook naming and examples 9a7df4f
  • refactor(Avatar) : convert avatar component to card variation 2004a94
  • refactor(Related Content): change in grid and add see all button 955450e
  • change(button): added back button.overrides from pastanaga theme 3b55acb
  • refactor(card): add card class control 68c91a9
  • refactor(card):delete publication card variables & overrides files 6be8a03
  • refactor(OrderedList): rename TOC to Ordered List and add container to the story e00c4db
  • refactor(card): add card grid fluid story with no columns f38251c
  • refactor(list): remove horizontal control 1f5e576
  • refactor(avatarGrid): update less variables and layer structure db554a8
  • refactor(Related Content):show button when there are more hidden cards 57ff1c8
  • refactor(RelatedContent):change to use new card variant instead of publication card component 7cf424a
  • change(breadcrumb): brought back pastanaga overrides to breadcrumbs bca1c93
  • refactor(card):delete publication card folder & story 68bf773
  • change(buttons): modified basic and circular variant behavior c06fed9
  • refactor(card):tertiary variation minor story update 87b8dca
  • refactor(DescriptionList): add container to story d647c1a
  • refactor(List):render ordered list with ol,li tags 87813c1
  • refactor(OrderedList) : change table of contents story to ordered list cb6197c
  • refactor(publicationCard): update tag and name variables c109ad9
  • refactor(UnorderedList): update list as ul, list items as li and add container to strory 2c096e1
  • refactor(card):organize controls and minor bug fixes f3f6e35
  • refactor(less variables): publication card style changes c5a84e9
  • refactor(less variables): add less to related content e1a5543
  • refactor(RelatedContent):delete publication card component 2ed0ed4
  • change(button): basic button is again without padding, border and background 5a907c7
  • refactor(PublicationCard):remove link wrapper 5911a0d
  • refactor(less variables): change publication card height per viewport d7a5256
  • refactor(Timeline):change timeline icons b2fe0bf
  • refactor(publicationCard): replace px with rems 53bf8da
  • refactor(Related Content): change in related content grid bf856ce
  • refactor(List):render description list with dl,dt,dd tags ec669a7
  • change(button): show only labeled variant for buttons with icons bf49944
  • refactor(card): import image for rounded card ca5a47e
  • refactor(progress): add container to story dfb33bb
  • refactor(storybook): add publication card story with different description sizes 23af97b
  • refactor(List):render default list with dl & dt tags ece2280
  • refactor(storybook): add publication cards stories with longer description 37adefa
  • change(button): basic icon buttons no longer have box shadows c2f3ea3
  • refactor(card): remove story afc5f79
  • refactor(less variables): change card description line number per device 6946fda
  • refactor(card): update rounded card image path 8db3a85
  • refactor(DefaultList): add container to story f971193
  • change(button): bumped z-index of sidenav expand button 445ed8a
  • change(progress,label): color accessibility fixes #151 09cf6e3
  • change(button): text button now has an underline with a focus border like other buttons cdd9043
  • refactor(card): update card variation grids path 756589c
  • refactor(card): minor fixes 3a880d7
  • change(button): primary color is blue and secondary is green 53e0a0c
  • refactor(List):change styles to match with the tags lists are rendered 2673890
  • refactor(progress): update colors for accessibility ea2f454
  • refactor(card): move avatarGrid & relatedContent to Card folder 1959d52
  • refactor(Timeline): change storybook timeline colors to fix accessibility issues 79da8dc
  • change(segment): restore light grey background color for secondary segments 8716b08
  • refactor(relatedContent): adjust column paddings 8a1520d
  • refactor(storybook): clear up code 3ada154
  • refactor(card): use the rounded class for avatar grid 8c000f3
  • refactor(card) Update rounded card class 140b587
  • refactor(avatar): add variable for image border radius c23341c
  • refactor(label): add container to story 565101f
  • refactor(progress): update value color for accessibility error 6fc76f8
  • refactor(card):use jsx extension 413d328

🏠 Internal changes

  • chore(Avatar) : add container to stories 41b748c
  • style(OrderedList): prettier fixes ed95e4d

🛠️ Others

0.2.1 - 2022-04-08

🐛 Bug Fixes

  • fix(version): Switch to 2.0.0.alpha.1 83b8b8e

🛠️ Others

  • cleanup(loader): Remove useless HTML d1d180c

0.2.0 - 2022-04-04

🚀 New Features

  • feat(card) : add new default card color-schme 965adea
  • feat(label): Handle slate links and footnotes f382431

🐛 Bug Fixes

  • fix(buttons,toggles): border and background color when active 147629 #139 ea36f31
  • fix(checkboxes): background color when they are toggles 4b6ab67
  • fix(buttons): border set on basic buttons appearing on svg elements of Volto UI 69ca73f
  • fix(label): Zotero/Footnotes inside label 0ee4d58
  • fix(card) : add control for image url in storybook b28e530
  • fix(less variables):change font family e4bca9e
  • fix(storybook):minor bug fix 9fc53bc
  • fix(tag): fixes merged theme config eb30363
  • fix(Banner): prop types fix a270e5b

💅 Enhancements

  • refactor(tag): splits Tags component to TagList and tag, changes default tags style 78a5f8c
  • refactor(Banner):add banner share pop up in banner story c9688b2
  • refactor(tag): remove classes and actions that add background color ce9b6f9
  • refactor(Banner):change banner's image wrapper implementation 9153dd1
  • change(package): bump release version to 1.10.0 7e984c1
  • refactor(card): align cards and images, update less variables d47c978
  • refactor(card): add class inverted for default card 919a56e
  • refactor(tag): changes component name e1db068
  • refactor(tag): changes color metallicBlue to bottleGreen e4b68ac
  • refactor(less variables): change tag list mobile view fcded3d
  • refactor(tagList): update story to not use tag color classes 8b5b61b
  • refactor(Banner):minor bug fix ff8c352
  • refactor(Banner): add metadata field sub component 327b7e7
  • refactor(banner): add and adjust remix icon for banner action 1bf3ffa
  • refactor(banner): replace px with rem and adjust share popup padding a568329
  • refactor(Banner):add type class to metadata field and apply styles to it 86a2866
  • refactor(less variables):change tag list styles 8670087
  • refactor(banner): share items display flex on desktop 3ff8684
  • change(banner): added background gradient, share popup, metadata show and hide #136 2f5dcca
  • refactor(banner): update gradient 570ee1e
  • refactor(tags): removes hardcoded ':' ea58e86
  • refactor(card): remove card border bc77739

🏠 Internal changes

  • style(card) : add lint and prettier changes 9d9a773
  • style(tag): remove comments 501fcdf
  • style(tag): stylelint and prettier changes 08b6386

🛠️ Others

0.1.9 - 2022-03-25

🚀 New Features

  • feat(all): 1.9 release #124 0d3f6fb
  • feat(callout): Align volto-slate callout with blockquote style 9e0bb49

🐛 Bug Fixes

  • fix(inpageNavigation): restore hidden on top functionality c554e6e
  • fix(list): Fix TOC margin on 3rd level f17da79
  • fix(inpageNavigation) : add smooth scroll animation 42f6564

💅 Enhancements

  • refactor(footer): update visual and mobile margins 64f05af
  • refactor(header): restore union dropdown after implementation a7029c5
  • refactor(pullquote): adjust to the new figma design 78e4606
  • refactor(breadcrumb): adjust font sizes and import remix divider 5fcabaf
  • change(header): use viewport width for changing mobile text in header dropdowns 5a7868e
  • refactor(inpageNavigation): adjust to the new figma design 4073acf
  • refactor(tab): add max width for tab items 366d279
  • refactor(less variables):change pullquote styles 9ad94bb
  • refactor(Pullquote):change quote positions and add Pullquote.Metadata sub component 6bce35f
  • refactor(inpageNavigation): Update to remix icons 19a6061
  • refactor(inpageNavigation) : move icon & text to be in column 0953910
  • change(breadcrumbs): modified breadcrumbs template to behave like breadrumb template 490a559
  • change(package): bump release version to 1.9.0 43a6e4b
  • refactor(breadcrumb): adjust font sizes and import remix divider #120 09a3a01
  • change(menu): modified secondaryPointingItemMaxWidth to a value that equals to 250 ea138a1
  • refactor(pullquote): introduce meta section, use remix icons, integrate slate callouts #119 fd740c9
  • refactor(footer): updated visuals and gradients #117 e5c6d18
  • change(scrollToTop): feature inpage navigation revamp #121 3cf20a8
  • refactor(footer): update visual and gradient 764ec23
  • change(header): use 12px font size for mobile resolution dropdowns 6dad0fa
  • change(nav): added navDepth to 3 in order to enable mega menu integration c4f73fd

🏠 Internal changes

  • style(inpageNavigation) : lint changes 3641d78
  • style(inpageNavigation) : add less variables 0699c70
  • style(pullquote): create variable for icon font size fea9b0a
  • style(inpageNavigation) : add lint & prettier changes f8dd012
  • style(inpageNavigation): remove comment 1aee011

🛠️ Others

0.1.8 - 2022-03-18

🐛 Bug Fixes

  • fix(card): avoid long links from spilling outside of card body area 95b8951

💅 Enhancements

  • change(typography): set heading sizes as detailed in docusaurus typography section 189bf20
  • change(docusaurus): content tweaks, inpage navigation section #112 b62d1b1

🏠 Internal changes

  • chore(docusaurus): fixed grid tablet breakpoint value c7fbc09

🏠 Documentation changes

  • docs(docusaurus): capitalization remove bf8fa44
  • docs(docusaurus): update 1c04976
  • docs(docusaurus): comment address on pr 112 6e4fe3b
  • docs(docusaurus): color minor update 13f9fda
  • docs(docusaurus): tabs and breadcrump update d0547e5

🛠️ Others

  • doc(colours): add more content ec66248
  • Add divider content for metadata field in Banner f1e34bd
  • Release 1.8.0 fd6ba04

0.1.7 - 2022-03-15

🚀 New Features

  • feat(less): add global gap sizes 3c83f20
  • feat(icons): import remix css 29967fb

🐛 Bug Fixes

  • fix(menu): fix border overflow for tabs and pagination e88721f
  • fix(accordion): responsive and accessibility issues c225935

💅 Enhancements

  • refactor(menu): update paddings for tabs and pagination 533a509
  • refactor(accordion): import semantic icon for remix arrows 9aa77d8
  • refactor(all) icons, accordion, button and menu itml #108 52ed2ca
  • change(storybook): segment stories now contain several elements 98a7654
  • change(table): inherit header alignment instead of hard-coding values ebb5193
  • refactor(icons): add remix icons c4c1a92
  • refactor(container): restore mobile width to auto 2df184c
  • refactor(button): update action button hover color bb09d71

🏠 Internal changes

  • chore(docusaurus): docs delete 5f9d733

🏠 Documentation changes

  • docs(colors): corrections da64c4c
  • docs(list): default list showcase 8ded062

🛠️ Others

  • bug(form): input min-width more specific to not break volto interface 3f5b5d4
  • Update package.json 3dba28b

0.1.6 - 2022-03-11

🚀 New Features

  • feat(cards): add custom display for volto-block-image-cards 645096a
  • feat(PublicationCard):create publication card component & styles 3e5f9b7
  • feat(PublicationCard):create publication card component & styles 12cdd5d
  • feat(Related Content): create Related Content component 77eda95
  • feat(Related Content): create Related Content component 08d495b
  • feat(pagination,related) added several r3 components #105 08d47c1

🐛 Bug Fixes

  • fix(Related Content): limit publication card number to 4 e7df032
  • fix(less variables):rename publication card variables 55c6fb8
  • fix(Publication Card): add link to card and arg name fix 36a7c96
  • fix(radio): fix bullet scaling issue with firefox 5f02c95
  • fix(radio): fix bullet scaling issue with firefox dbb2e27

💅 Enhancements

  • refactor(form): remove custom classes and add container to form items 6b5442a
  • refactor(form): remove custom classes and add container to form items d1ec083
  • refactor(form): update form wrapper component a719576
  • refactor(form): update form wrapper component 0736ec7
  • refactor(form): adjust form items to volto theming 4213cfb
  • refactor(form): adjust form items to volto theming 374ffbc
  • refactor(breadcrumb): remove custom class anf and new variables b3cb83d
  • refactor(breadcrumb): remove custom class anf and new variables d5808ad
  • refactor(storybook): clear up unnecessary form elements controls f7e7d5b
  • refactor(storybook): small change in unordered list story 3ffd872
  • refactor(storybook): small change in unordered list story 6ce16e9
  • refactor(pagination): fix menu overrides for tabs that affects pagination fe8c4ca
  • refactor(pagination): fix menu overrides for tabs that affects pagination 3f4b726
  • refactor(Loader):remove image & add background image 70fe041
  • refactor(Loader):remove image & add background image ac38126
  • refactor(list): remove selection control a09b179
  • refactor(list): remove selection control 17bf710
  • refactor(storybook):unordered list minor change df2b727
  • refactor(storybook):unordered list minor change ef6db73
  • refactor(colors): remove metalic blue color b2f95b6
  • refactor(colors): remove metalic blue color 1eea33f
  • refactor(button): update variables b1774d8
  • refactor(button): update variables 061f3e3
  • change(blockquote): treat slate as a variation of blockquote component 19bd9a5
  • refactor(container): remove important from rules e984771
  • refactor(storybook):add textarea control to add/remove fluid class 475f540
  • refactor(container): remove important from rules 1cc6984
  • refactor(storybook): add required attribute to form fields fecee27
  • refactor(progressBar): update progress bar colors with vars c4ef1f0
  • refactor(progressBar): update progress bar colors with vars a44d73c
  • refactor(storybook): add required attribute to form fields 21da79e
  • refactor(list): adjust bullet size 2b29e4e
  • refactor(list): adjust bullet size 61c341c
  • refactor(statistic): add inverted background to global variables 1427e70
  • refactor(statistic): add inverted background to global variables ea25dfa
  • refactor(statistic): remove custom class 46cc560
  • refactor(container): update mobile width d548a44
  • refactor(grid): replace px with rem units e792f51
  • refactor(statistic): remove custom class b5c8e7c
  • change(docusaurus): updated template to change what's new title 3e15f4d
  • change(footer): added display variable for footer site logos d5b3c2f
  • refactor(grid): replace px with rem units f0331d0
  • change(github): auto deploy only on develop branch 11d6b4e
  • refactor(header): implementation in preparation for Volto integration #20 #89 95b136d
  • change(github): trigger autobuild when modifying templates contents 46094b1

🏠 Internal changes

  • style(list): prettier fixes f9e3b05
  • style(list): prettier fixes 8eb715b
  • chore(github): merge changes from develop to develop-itml 063bd6e
  • chore(github): build deployment only on develop branch a5a1b08
  • chore(github): build deployment only on develop branch bb455aa
  • chore(github): merge changes from develop to develop-itml 129c12f

🛠️ Others

  • Revert "chore(github): merge changes from develop to develop-itml" ca9520f
  • refactor breadcrumbs component, make it functional and customizable e902d69
  • rollback(cards): move custom display to volto-block-image-cards 2564b1e
  • bring back segment wrapper and make it attached 8458f03
  • no display: flex for blockquote added from slate 5595ce1
  • Add rule about code length a5f3652
  • Add indenting rule 15c44cb
  • fix warning related to proptype 946c6c6
  • fix profile section css overflow db5126f
  • Add rule about import sorting 804e188
  • don't use volto-slate 6a02976
  • remove segment custom width 1d3ea40
  • Add rule about naming vars 8f9020f
  • update style for accordion title 0b0d678
  • Release 1.6.0 e771e65
  • update bbcab87
  • add margin to <br> element to simulate gap as in design c6685c1
  • make breadcrumbs default size as tiny 589581f
  • remove uneeded style 82a8fb1
  • Add rule about hardcoded values e04e0df
  • Add file mode rule 65c9a93
  • Add DRY rule 66c9c3a
  • set profile section overflow to auto 71ab47f
  • Add Sonarqube tag using eea-website-frontend addons list 647a6e3
  • removed override already present in card.less 50d2ab2
  • update 7a1d482
  • Add functional components rule; add classnames rule 91a0b06
  • added comment about need for removal of this fix later 65b8166

0.1.5 - 2022-03-08

🚀 New Features

  • feat(cards): add custom display for volto-block-image-cards f49ffb6
  • feat(KeyContent): add new component 2534c54
  • feat(docusaurus): Updated developer guidelines ca146ff
  • feat(storybook): add testimonial component 55d9747
  • feat(storybook): add AvatarGrid component b668445
  • feat(storybook):add Loader component f675834

🐛 Bug Fixes

  • fix(breakpoints): fix largest screen breakpoint bug on scaling e4a11c8
  • fix(profile): section css overflow and padding issues #95 bb9eb0f
  • fix(storybook): lint auto changes for AvatarGrid b8e74f1
  • fix(components): add grid structure to various components cc33546
  • fix(header) re-added span tags removed in pull request #74 00702d7

💅 Enhancements

  • refactor(button): styling updates 37afda5
  • refactor(tab): updates on variables and overrides 54bf703
  • change(blockquote): treat slate as a variation of blockquote component 5e8a8b8
  • change(footer): added display variable for footer site logos 2f942b4
  • refactor(checkbox/radio): remove header from message and adjust top position of bullet 4a072b3
  • refactor(color): remove secondaryColorDarken variable 74c8ba0
  • change(docusaurus): updated template to change what's new title 58f58c8
  • change(github): auto deploy only on develop branch bfa35a3
  • refactor(header): implementation in preparation for Volto integration #20 #97 cddda20
  • refactor(breadcrumbs): component, make it functional and pluggable #32 #94 9f42e80
  • change(card): added styles for volto cards integration #92 a46ac21
  • refactor(grid): remove column count from example ac0e9cf
  • change(github): trigger autobuild when modifying templates contents 5f7d152
  • refactor(grid): remove custom grid 1d978a9
  • refactor(Form):change form field wrapper implementation 73cdd6d
  • refactor(message): update colors to match design 633ce31
  • refactor(checkbox/radio): update variables and remove important rules ad533b4
  • refactor(less variables): add variables to less for new components 47df026
  • refactor(Tab): fix vertical tab alignment 401bdf2
  • refactor(lint changes): add lint changes 6f6847f
  • refactor(inpageNavigation): adjust to volto theming 62f74ea
  • refactor(message): updates on styling b4cf850
  • refactor(banner): update class name ef0969b
  • change(github): use develop for auto pushing a32a723

🏠 Internal changes

  • style(design-system): unix eol 631fa90
  • style(checkbox/radio): prettier fixes a04939f
  • style(design-system): unix eol 3c753f0
  • style(message): stylelint fix 5b75057

🏠 Documentation changes

  • docs(docusaurus): visuals guidelines 544a950
  • docs(docusaurus): search guidelines 0fb229d
  • docs(docusaurus): loader page 892a25d

🛠️ Others

  • Reformat header.less 1f99dfc
  • Close menu when changing path 65daea9
  • refactor breadcrumbs component, make it functional and customizable 4ec374e
  • rollback(cards): move custom display to volto-block-image-cards 79d4c89
  • Open overlay menu on global menu click cc749bc
  • bring back segment wrapper and make it attached 9f413ff
  • Use renderMenuItem also in mobile menu 02de0bb
  • Fix clicking outside closes menu af52664
  • Cleanup args in header story 2bf6a30
  • fix warning related to proptype 824b9be
  • fix profile section css overflow 8fd2654
  • don't use volto-slate 70ca3d4
  • remove segment custom width 4a60d84
  • update 96f4af0
  • Fix TopDropdownMenu component rendering in mobile a4626de
  • Add usePrevious hook 797faba
  • make breadcrumbs default size as tiny 3c8e1c6
  • Update package.json fa020cb
  • Add rule about hardcoded values 0c6912c
  • set profile section overflow to auto 8db62bb
  • added comment about need for removal of this fix later 6fdbd71
  • Add Sonarqube tag using eea-website-frontend addons list 6051724
  • removed override already present in card.less 93c4e5a
  • Remove console.log calls 8a3a4cb
  • update 81bb7d4
  • Update comment ffa2400
  • merge develop into this branch ad5b388
  • WIP a8d97f1
  • Use header.less from develop branch 99edbc6
  • WIP 57b5783
  • WIP 785da36
  • WIP 5d1eba9
  • adds Tags e37fc19
  • Add useClickOutside hook 70364c8
  • Implement outside click handling fa6f818
  • Simplify overlay menu template 28b0478
  • fixes less variables, fixes tags positioning cc19b9b
  • WIP 15bc0f4
  • no display: flex for blockquote added from slate 312a893
  • Add rule about code length 318cd48
  • Add indenting rule d589685
  • Add rule about import sorting cd337c1
  • Add rule about naming vars b112de0
  • Bring back classNames from header subpopup e477a51
  • removes tags hashtag from jsx 6b8b3e9
  • WIP d481324
  • fixes undefined on empty classes 4b29080
  • stylelint changes a5ab830
  • Footer link color @white 578e4f7
  • add margin to <br> element to simulate gap as in design 9ab9a97
  • impors colors from site variables 6117267
  • small fix for the link in footer action 72df049
  • remove uneeded style 66e9064
  • use proper naming conventions for var naming 596e314
  • Add file mode rule 805baa7
  • use less variables b43ac8d
  • Add DRY rule 2f1584e
  • Add functional components rule; add classnames rule 1b2915e
  • fix z-index of header 7d2a5d6
  • Remove comment 7d120b1

0.1.4 - 2022-03-01

💅 Enhancements

  • refactor(pagination): adjust to volto theming 06cc3b6
  • refactor(Form):create form field wrapper file 95b9934
  • refactor(megaMenu): update margins for menu items 230e476
  • refactor(megaMenu): update gradient 47f2ea4

🏠 Documentation changes

  • docs(docusaurus): divider page c6bb238

🛠️ Others

0.1.4-beta.0 - 2022-02-25

🚀 New Features

  • feat(github): added feature and bug reports templates with our guidelines as checkboxes 1549093

0.1.3 - 2022-02-25

🐛 Bug Fixes

  • fix(all): change eol to unix 62e7224
  • fix(banner): separate url value f9c9140
  • fix(all): merge eol c68f6e0
  • fix(blockquote): align self property now uses a valid entry ec76163

💅 Enhancements

  • refactor(megaMenu): new implementation ff013af
  • change(volto): removed customizations made for ims theme from volto-eea-design-system bc8d514
  • refactor(Timeline): divide to sub components and change files to .jsx 3e2bd3b
  • refactor(header): update variables 4e5d08d
  • refactor(Header): link header's menu to mega menu 08406d8
  • refactor(Menu): change mega menu implementation 455a51b
  • refactor(Grid):minor changes and delete extra files 272585d
  • refactor(timeline): adjust to volto theming b98641a
  • refactor(megaMenu): fix link hover issue for tablet 564e972
  • refactor(header): add remix icons and minor updates c9c97dd
  • refactor(Header): change header buttons implementation 6608b8c
  • refactor(Header): add sub components and change existing Main 74c35a3
  • refactor(table): adjust to volto theming ab7a0e8
  • refactor(Footer): delete Actions & ThemeSites files and clear imports 7a78456
  • refactor(header): update variables 326655a
  • refactor(Breadcrumb): add react router link and minor bug fix 073a3a3
  • refactor(Header): show menu on search & minor bug fix 4d49a8a
  • refactor(List): add extra default list story 95665cd
  • change(docusaurus) change generation of what's new section and bump package version 6c35cff
  • refactor(Footer): minor code changes 67cb4bc
  • refactor(Menu): add class to mega menu items for styling 19baa34
  • change(accordion): modified default accordion stories titles with real accordion names cf11cc8
  • refactor(Header): accessibility image alt fix a7347a6
  • refactor(header): adjust to volto in progress 760beca
  • refactor(Header): header items as storybook arguments 388c752
  • refactor(banner): update less variables 35b0a98
  • refactor(banner): actions as buttons; don't hardcode url for banner image; subcomponentize Banner, add Banner.Action; add developer guidelines on inline styles and line endings; 6dd5a41
  • refactor(blockquote): fix responsive margins and sizes rems 209f94f
  • refactor(Input): label position and style change 970074a
  • refactor(header): update dropdown menu 32eb0fa
  • refactor(timeline): theming updates c80c9aa
  • refactor(Blockquote):remove image stories a6357ca
  • change(docusaurus) proofread blockquote usage section and removed unused api section 0bb29fd
  • change(infrastructure) cherry-pick fix 9639243 skipping jenkins on auto commits fc744cd
  • change(ci) build storybook and docusaurus only when pushing to develop-itml branch 4de0cbf
  • change(infrastructure): modify whats new doc when committing the auto deployment 39df33e
  • change(blockquote): introduce float argument for blockquote with image storybook 8fc7290
  • refactor(pullquote): add word break 2245e53
  • refactor(Banner): minor bug fix b9073b6
  • refactor(table): fix th font weight a96a0a7
  • refactor(comment): remove avatar border radius d42c37b
  • refactor(banner): adjust title size 7a24d9c
  • refactor(Image): change image path a580da6
  • change(infrastructure): specify that docs folder contains changes for deployment a1ca915

🏠 Internal changes

  • style(input) prettier fixes e83fa0c
  • chore(storybook): prettier fix 354c7b3
  • chore(design system): technical commit for edw integration tests 9f76035
  • style(storybook): prettier fixes 3c9ad34
  • chore(infrastructure) updated branch with changes from bitbucket 77866f8

🛠️ Others

  • doc(colours):fix color to better show primary ones 705b789
  • doc(colours):change font size to fit text in one line 4ad7516
  • bump package release to 1.3.0 f3cfe4f
  • Refactor banner into content subcomponent f8df238
  • lint fixes cda322d
  • rollback don'ts grammar change and disable unresolved import for Banner.stories.jsx a1bd715
  • Add space line in component d4d1a5f

0.1.2 - 2022-02-17

🚀 New Features

  • feat(blockquote) added blockquote styles as a custom module d30662e

🐛 Bug Fixes

  • fix(inpageNavigation): hide at the top of the page 97ef500
  • fix(footer):missing image ac91a29
  • fix(comment):fix broken image 8125dc1
  • fix(message): fix font loading fdc498e
  • fix(logo): logo change 5f8c8af

💅 Enhancements

  • refactor(storybook): multiple components fixes 4a3ff51
  • change(infrastructure) re-enable integration tests for auto release stack ce8daf8
  • refactor(storybook): global site files styling update f3770f1
  • refactor(storybook): multiple components 9277aac
  • refactor(footer) adjust to volto theming update a59f1c3
  • refactor(header): minor styling update dd6b55c
  • refactor(Header): change header mega menu 7559b57
  • refactor(banner): adjust to volto theming 451b949
  • refactor(accordion): minor styling update aeaf25f
  • refactor(footer): adjust to volto theming bdff176
  • refactor(footer):mobile responsiveness 14822be
  • refactor(storybook): main and custom less files update 1607760
  • refactor(timeline): update after removing timeline addon f54d380
  • refactor(Footer): replace with subcomponents 378c652
  • refactor(Header): header change 029e850
  • refactor(Header): change header bar 2b766fd
  • change(docusaurus) use itml branch for docusaurus deployment 6e286c5
  • refactor(accordion): adjust to volto theming 971fcb8
  • refactor(Header): add sub components 7f955db
  • change(docusaurus) tweak auto deployment to always commit changes from docs a2940da
  • refactor(banner): less and variables files created d5b1a8a
  • refactor(label): adjust to volto theming 3c945e1
  • refactor(message): adjust to volto theming 3e950fc
  • refactor(Footer): add sub components and props c3d1487
  • refactor(modal): modal and confirm adjust to volto theming 83b60e9
  • refactor(comment): adjust to volto theming 84348c3
  • refactor(storybook):adjust headings 32f64f9
  • refactor(Header): add comments to header menu c2c83b2
  • refactor(Accordion): clear up accordion stories code 4e59b8f
  • refactor(segmant): adjust to volto theming 3ab211e
  • refactor(button) minor styling update 8782bb2
  • refactor(banner): change image position cdd76d5
  • refactor(breadcrumbs): update less variables 640817e
  • refactor(list): adjust to volto theming 1079c73
  • refactor(timeline):adjust timeline module 213eb11
  • refactor(blockquote):adjust to volto theming 5eec87f
  • refactor(progress): add progress bar colors ccf3c98
  • refactor(pullquote):adjust to volto theming fee4466
  • refactor(Header): change mobile mega menu c7ecf18
  • refactor(statistic): adjust to volto theming b726e49
  • refactor(button) adjust to volto theming eb257f8
  • refactor(form): minor styling update 79934b2
  • refactor(Footer): create Actions & Sites sub components 446840b
  • refactor(inpageNavigation): adjust to volto theming 85c631a
  • refactor(Inpage Navigation): changed button's display 36e5b4f
  • enhancement(docusaurus) modified headings to be within release versions 19ace30
  • refactor(storybook): move components to ui folder cb91f88
  • refactor(Header): change mega menu de0fc6b
  • refactor(Pullquote): divide Pullquote to sub components 34413c4
  • enhancement(docusaurus) replace changelog when auto-building docs Refs #145331 da25c0e
  • refactor(popup): adjust to volto theming d0d192d
  • refactor(card):adjust to volto theming 2ab6f91
  • refactor(item): adjust to volto theming 89a16af
  • refactor(pullquotes) remove unnecessary variables e0d20a3
  • refactor(progress):adjust to volto theming d1ab950
  • refactor(blockquote) change variables names 36fd5be
  • refactor(comment): adjust font sizes 0311ed1
  • refactor(InpageNavigation): clear up code 1d7afdc
  • refactor(container): change variable name for computer padding 26d123f
  • refactor(inpageNavigation): remove imports 25c1d1c
  • refactor(storybook): update ui index components exports ce78d47
  • change(infrastructure) auto build storybook when pushing to develop-itml branch of volto-eea-design-system e9aa5bc
  • refactor(storybook): delete demo stories 8b58d02
  • change(docusaurus) align deployment steps for building docusaurus 37e4ce0
  • refactor(storybook): remove components from customizations folder 8930ede
  • refactor(tab): minor styling update 1252ad0
  • refactor(comment): change avatar src e5f9c4c
  • refactor(banner) : change file type and folder 878742b
  • refactor(form elements):changed text 919beea
  • refactor(Image): change image src b971084
  • refactor(Pullquote): add component propTypes d32c5e6
  • refactor(blockquote): adjust font sizes d71a3ce
  • refactor(footer): update font sizes 1c91c35
  • refactor(Blockquote): add component proTypes ea02649
  • refactor(logo): update image f611372
  • refactor(docusaurus): restore config f2c5239
  • refactor(blockquote): update component name 572e655
  • refactor(header): fix story header import ceda6c7
  • change(infrastructure) auto build docusaurus when pushing to develop-itml branch 7bebdf5
  • refactor(storybook): remove components from customization folder 4a9bb9b
  • refactor(banner):story rename 56ff603
  • change(testing) removed navigation from cypress tests until component is finished 5549f4c
  • refactor(Segment): change to .jsx extension 5cb35d8
  • refactor(Pullquote): change to .jsx extension 564cf7e
  • refactor(PopUp):change to .jsx extension dcb24ff
  • refactor(InpageNavigation): change to .jsx extension dfefce3
  • refactor(Blockquote): change to .jsx extension 44a1645
  • refactor(heading): story name update aa10f34

🏠 Internal changes

  • style(footer): prettier fix 902c257
  • style(storybook): prettier fixes 59f941d

🏠 Documentation changes

  • docs(docusaurus):multiple page updates 2aba73e
  • docs(docusaurus):update page content 565697f
  • docs(grid):update components grid 60eb083
  • docs(docusaurus): page adjustments 0641eac
  • docs(docusaurus):updated various pages f860176
  • docs(docusaurus): logo change 3af5e5c

🛠️ Others

  • added sortable table stories and descriptions 6d44dd7
  • Layout components theming 5861013
  • recovered files from origin a4ac04f
  • grid component & stories changes 4a5752e
  • Updated what's new section with actual commits from volto-eea-design-system repo fc5e3c3
  • Docusaurus title possible fix. db699e7
  • form elements stories added description & default values 6b4f6eb
  • removed API tabs 58aa928
  • Layout updates 854f388
  • Refs #142123 removed extra customization of semantic.less: ab9de81
  • added page-header,footer and grid in docusaurus 660c8e3
  • Manual docs build and commit 666eb6a
  • added svg & png files f1338d5
  • added missing components to docusaurus 934dfd8
  • Control descriptions updated 56581eb
  • Grid updates 700332d
  • Button theming update 0ec68b6
  • site variebales & overrides changes 7251162
  • Table and Tabs theming 49f0860
  • Responsiveness updates 48e1351
  • added various components to docusaurus 550d719
  • Checkbox and radio updates 24652a2
  • remove images from typography and colour docs 8493e92
  • added guidelines' text and finished all components 02d75fc
  • added more missing components in docusaurus 8be8263
  • Prettier changes on docusaurus 5f1e5eb
  • Grid updates ae09945
  • Minor fixes for tests 3bdf306
  • Layout updates 8b7a4dc
  • Footer and TOC theming bb3d3c4
  • Refs #145331 manually commit changelog until autobuild is stabilized 93168b0
  • label component changes df8c0ff
  • added several sections to the theming guidelines ff1a649
  • Updated removed files. 84f9b8c
  • added more docusaurus components 52a3b9e
  • Progress Bar 9f2efc9
  • Modal and Confirm updates 3b306c6
  • Add proper changes to whatsnew meant in previous commit 40f78e3
  • Form Descriptions de0dfbc
  • Prettier fixes 1337e6f
  • Deleted files b82f982
  • add new images for spacing 7b7b2c4
  • Messages Theming ad621a3
  • added new content to docusaurus 1c83452
  • Minor less updates a36a8bb
  • Tabs and lists updates e37eef1
  • Inpage nav and timeline components 76f0f82
  • Prettier updated files 679b9d2
  • dropdown initial d8aef26
  • Prettier changes f068af0
  • List initial 6d3b969
  • List story updated e96a6f6
  • Statistics updates 74bf639
  • styling c169cc0
  • timeline comp storybook changes 1f42686
  • feature(docusaurus) added theming guidelines ded1f04
  • Properly commented out integration tests. 48b3a15
  • Reattempting commented out integrations tests. 3dd8211
  • Button theming 4231e1c
  • Card initial 06dace5
  • form element storybook changes c4b06aa
  • Pagination theming 2a80175
  • Accordion theming 8061bf9
  • global var updates and radio story 9526ee2
  • created pullquote component & stories df35563
  • Item stories added description & default values 9d459f2
  • storybook clean up code bffd326
  • List updates 28f1b53
  • Button classes updates 788c289
  • Prettier fixes 678c9be
  • Removed header title from partial docusaurus components. ed7c45e
  • created banner component and stories 9be170f
  • Breadcrumb stories description & defaultValue -- clean up code 186ab65
  • Refs #142123 added customization of semantic.less: 1e02356
  • Card stories added description & default values f6b408f
  • Statistic and accordion updates 16064ce
  • breadcrumb component & stories changes 5bceb98
  • Container initial 3eb7155
  • doc(docusaurus):Fix text for various parts bfd3fa2
  • blockquote component & stories 879b640
  • Refs #143412 removed doc comments breaking doc building e6a6756
  • Popup updates ce2d641
  • Global variables for colors and borders added 6e5fbd6
  • Tab stories changes 5429cfb
  • Confirm stories added description & default value 85cda14
  • Kebab case class names b41cd07
  • Card and Comment class updates 3899465
  • Accordion updates c97ba39
  • item stories changes 772e41f
  • Accordion class updates 9cdde86
  • Comment stories added description & default value cb6f25b
  • Accrodion stories description & default value ab8fb88
  • Pullquotes updates c598421
  • Modal and confirm class updates 0ae47e6
  • Tab and paggination updates 96796ff
  • Form Updates e986a9f
  • Classes renamed 73c8c3d
  • List and item less updates ce0de17
  • Confirm theming 36e20ce
  • container overrides changes 4b3970b
  • Docusaurus theming fc4a8c5
  • refacto(headings): update mobile headings sizes b2e9f83
  • list stories and style changes c61db53
  • Tab theming e31e6c3
  • Message and pagination classes updates c230687
  • Segment initial d5724fe
  • Refs #143412 removed doc comments from api_markdown breaking doc building efeacba
  • Timeline and responsiveness updates 1ed1524
  • Refs #142123 use swap font-display for performance reasons 083738f
  • Breadcrumb stories minor changes 3d0d17c
  • Table component stories minor change 0bf4083
  • List stories changes a64b304
  • blockquote component minor changes cdf71a8
  • ckeckbox stories minor change 6d6e508
  • image component storybook changes 91290ec
  • button overrides changes d5b78dd
  • accordion overrides changes fdcf7d5
  • Accordion component and stories changes 5079247
  • Card theming 23bbb9d
  • statistic overrides changes 2b11cb5
  • Refs #143412 build docs only on pull request like we do with storybook 473bb87
  • Card component stories minor change | added link icon deb423a
  • comment component stories changes f1c5e75
  • Accordion component bug fixed 815e91d
  • Refs #145331 use iso date to release so that we see also time ceedf08
  • correct connfig for doco 93e1313
  • Item updates fae93d4
  • added layout grid 2e6be55
  • tab overrides changes 87aaf32
  • message overrides changes 6dccfca
  • segment storie changes 296371f
  • progress component stories changes df10c2e
  • message comp storybook changes c86b405
  • Accordion cmponent stories | minor bug fix 6de0d81
  • Refs #145331 add all changes when auto building docusaurus ce11cce
  • perf(timeline):removed semantic timeline package 0aeb34a
  • Tablet Breakpoint update b229c27
  • Refs #143412 set storyBook Url to eea.github.io b7fdecb
  • bump package version to signaling of a major release c835f1d
  • small commit to trigger deployment of storybook and docusaurus be46ea3
  • doc(accordion):revert previous change 3de02da
  • fix typo for caption @desktop line-height pixel number 1671552
  • Commented out integration tests. 574cfec
  • popup overrides changes a9555e3
  • container component stories fixes 692cfce
  • Added timeline to package json fixed f2e93e0
  • Refs #142123 modified import of volto-eea-design-system icon.less: a7fab7d
  • Refs #142123 reference icon.less from this package: 5616e6d
  • Menu component stories change 2797716
  • Image stories minor change ddb9f1d
  • card component stories changes 6ccba1e
  • Added timeline to package json 93031d6
  • table stories code clean up b7b2a56
  • Refs #143412 removed extra baseUrl from docusaurus config 79f36da
  • Accordion stories minor change ffe808a
  • Theme assets 3f4bea4
  • Merged with develop 167ec9f

0.1.2-beta.2 - 2022-01-03

0.1.2-beta.1 - 2021-12-22

🛠️ Others

  • Tab component stories minor changes 4690a6f
  • Comment component stories minor changes a87cb6a
  • Form stories changes fc30c90
  • Grid component stories minor changes 798fdd0
  • Image component stories minor changes be93385
  • Menu component stories minor changes cb1f9a8
  • Dropdown component stories minor changes 57cf954
  • Header component stories minor changes 264fd46
  • Confirn component minor changes 9a00bc1
  • Item component stories minor changes 6994fa0
  • Label component stories changes 5cc5843
  • Container component stories minor changes e6e40b3
  • Message component stories minor changes ba9d377
  • Breadcrumb component stories minor changes ff7a176
  • Modal component stories minor changes af1fe6a
  • List stories changes 0016042
  • Button component stories minor changes 690dfd2
  • Radio component stories minor changes 84eac30
  • Progress component stories minor changes e676357
  • Pagination component stories minor changes b1af226
  • Segment component stories minor changes 5f8c7ef
  • Refs #143412 eslint fixes for component stories badcb91
  • Table component stories minor changes 7c104b8
  • Refs #143412 more eslint fixes a88c091
  • Refs #143412 warn for broken links instead of throwing bd5821c
  • Refs #143412 merge changes from develop-itml to develop branch bca28b9
  • made tabs dynamic for api tab ea37ecb
  • Basic storybook/Docusaurus components 840ab60
  • created List directory & srories based on semantic-ui List component 51f1901
  • made tabs as component easy to call for other components 07bae49
  • Popup Component | minor fixes 2ff9908
  • created stories for Tab component 95e3a73
  • created Table directory and stories based on semantic-ui Table component e16115d
  • List component stories - minor changes de11343
  • created stories for Comment component a20f884
  • created stories for Grid component 360d2a8
  • created stories for Image component 3c1d2bc
  • created stories for Menu component 17e3b37
  • Added untracked files 75f0afd
  • created Dropdown stories d6a2538
  • created Header component stories b833979
  • created stories for semantic-ui Confirm component 6fddccc
  • created Statistic directory and stories with semantic-ui Statistic component cd62498
  • created Item component stories 90ec2be
  • created stories for Container component 41934f6
  • created Label component stories 71732f6
  • created Message component stories adcbeab
  • created Modal component stories c25409d
  • Breadcrumb component stories and minor changes 6264d92
  • created Pagination component stories 57cdad3
  • created Segment component stories d8d01d7
  • created stories for Radio component 1fd062d
  • Menu stories minor changes 6ba5e0d
  • Statistic component stories minor changes 3c874a5
  • Card component stories minor changes 290bda8
  • Accrordion stories minor changes 2ee3f59
  • renamed Demo folder to Layout b9f6d05
  • remove test exclusion 94dba3e
  • Accordion component stories minor changes e672d59
  • fix docusaurus url (removed trailing /) b6c59fc
  • Item component stories - minor changes f0a9902
  • eea logos and assets b435b51

0.1.2-beta.0 - 2021-12-18

🛠️ Others

  • Refs #140454 added github action to build docusaurus to the develop branch abe6a72

0.1.1 - 2021-12-16

🛠️ Others

  • Refs #140454 changed the following to volto-eea-design-system: 6791d41
  • Refs #140454 corrected base url for docusaurus website build 98271b3
  • Initial test changes on design system/docusaurus. 9dad612
  • After prettier check 9ec40b4
  • Refs #140454 restore SearchWidget.jsx content and removed dummy text from docs intro page 7505df8
  • Refs #140454 added references to eea and the storybook in the docusaurus footer 42bbfcd
  • Refs #140454 lint fixes 9502f2b
  • Add SonarQube badges a4e0a40
  • Refs #140454 brought changes from develop-itml and upgrades docusaurus 207c873
  • Refs #140454 removed extra content not needed by the docusaurus site bc68ebe
  • Refs #140454 updated docusaurus to latest beta d68ed8a

0.1.1-beta.0 - 2021-12-09

🛠️ Others

  • Refs #140454 moved header and footer templates from volto-ims-theme: e2d5e56
  • Refs #140454 added website folder with docusaurus site skeleton 6fd15f4
  • Refs #142794 added commented implementation of the header and footer area: 773ad87
  • Refs #140454 changed the following: 4137ec4
  • Refs #140454 removed storybook from volto-eea-design-system: a129ffb
  • Refs #140454 added storybook as a dev dependency: e04ae4e
  • Refs #140454 updated Breadcrumbs.jsx to latest version: 63fe507
  • Refs #140454 we should use jsx and not mdx for storybook tests 3668e66
  • Refs #140454 updated eea-design-system readme with extra info on package contents d2efc3d
  • Refs #142010 - Optimize Volto-addons gitflow pipelines 3af46d2
  • Refs #140454 Renamed folders of docusaurus website: 15bca74
  • Add demo story 757c409
  • Refs #142794 enabled minimum css so that header looks decent adbe233
  • Refs #140454 use the develop branch for the readme linking, it's always more up to date 23dcf16
  • Refs #140454 added missing themes reference for the eea theme e9ca244
  • Refs #140454 modified assets imports after move to volto-eea-design-system 2250cc7
  • Load footer in segment 80d38a9
  • Refs #140454 bump package version to 1.1.0 from 0.1.1 from develop branch: 1314039
  • Refs #142794 keep toolbalWidth variables in case design system runs in an older version of Volto 1a8b305
  • Refs #142794 changed the following: fbb80b1
  • Refs #140454 moved storybook scripts to the scripts section 705c4c3
  • Refs #140454 removed dangling comma 514f24d
  • Refs #140454 changed link to the start of the docs 0e16fdf
  • Refs #140454 add h1 to the list of elements that are max 800px and centered 7d3c30f
  • Add Sonarqube tag using ims-frontend addons list 8d657d0

0.1.0 - 2021-11-17

🛠️ Others

  • Refs #140454 changed the following to volto-eea-design-system: 40d2af6
  • Refs #141204 elements folder now has the variables and overrides from pastanaga theme 595b4e6
  • Refs #141204 use font awesome from SemanticUI instead of Pastanaga: 4e273ca
  • Refs #141204 removed the components customizations from volto-eea-design-system: c98c260
  • Refs #141204 added customizations folder from volto-ims-theme to volto-eea-design-system: ff4bf44
  • Refs #141204 modules folder now has the variables and overrides from pastanaga theme f2841b6
  • Refs #141204 customized Comments.jsx to remove unnecessary container b2e95d7
  • Refs #132149 added initial commit for volto-eea-design-system: 2934b91
  • Refs #141204 collection folder now has the variables and overrides from pastanaga: 213d496
  • Refs #141204 removed search widget customization, we can use volto-ims-theme for that file b7e8b0c
  • Refs #141204 stylelint quick fixes 5595925
  • Refs #141204 changed the following: 769f4f9
  • Refs #141204 changed the following to the eea theme: 06d8d86
  • Refs #141204 eea site.variables now use all values from pastanaga's site.variables 6535c0f
  • Refs #141204 simplified container overrides: 5125003
  • Release 1.0.0 177d0ce
  • Refs #141204 globals folder now has the variables and overrides from pastanaga theme 116a0c3
  • Refs #141204 changed the following: 2e7f423
  • Refs #141204 modules folder now has the variables and overrides from pastanaga theme: 27a201d
  • Refs #141204 text elements are now with a max width and centered within content-area: bbed7bb
  • Refs #141204 added main.variables entries from pastanaga to eea theme 1cbbc55
  • Refs #141204 modified theme image imports for component customizations ef3238a
  • Refs #141204 modified container width to be auto: 2e8d2e0
  • Refs #141204 modified several icons to use the \f values instead of \e: c397145
  • Refs #141204 changed the following: c518eda
  • Refs #141204 ensure that main column isn't enlarged over the sidebar section on edit f7a2868
  • Refs #141204 changed the following to the form styling: eb92e05
  • Refs #141204 modified path of theme folder location for image selection f8cca45
  • Refs #141204 added missing mobileScrollbarWidth variables introduced as part of the mobile navigation pull request 444c78d
  • Refs #140454 reference font and image path from ~volto-themes instead of relative ec93ed3
  • Refs #141204 ensure that Volto doesn't crash when site module is set to eea: 51f2f27
  • Refs #141204 added tiny size prop to Breadcrumbs in order to have it as 12px 56a12e2

0.0.1 - 2021-11-17

🛠️ Others

+ \ No newline at end of file diff --git a/docs/index.html b/docs/index.html index d49a3d8b32..1050ea8a24 100644 --- a/docs/index.html +++ b/docs/index.html @@ -5,13 +5,13 @@ Welcome to EEA Design System Homepage | EEA Design System - +

EEA Design System

Creating a consistent user experience for our digital products

I am a...

Web developer

Design system for web developers

Web designer

Design system for web designers

Web content creator

Tips and tricks for writing for the web

Publication writer

Writing manual for publications

Publication designer

Design system for publications

Data scientist

Design system for data scientists

- + \ No newline at end of file diff --git a/website/docs/2-whatsnew.md b/website/docs/2-whatsnew.md index 00944c7ae5..5da9ab9ad7 100644 --- a/website/docs/2-whatsnew.md +++ b/website/docs/2-whatsnew.md @@ -32,7 +32,7 @@ Below is a non-exhaustive list of the work-in-progress which is planned for futu Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). -### [Unreleased](https://github.com/eea/volto-eea-design-system/compare/1.0.6...HEAD) - 2023-04-07T19:47:24.545Z +### [Unreleased](https://github.com/eea/volto-eea-design-system/compare/1.0.6...HEAD) - 2023-04-10T10:02:30.133Z #### :rocket: New Features @@ -43,11 +43,11 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - fix: dont run isInternalURL twice [`a48984e`](https://github.com/eea/volto-eea-design-system/commit/a48984e0cb224944aed3846447c416511d080779) - fix: github autoformat [`be97749`](https://github.com/eea/volto-eea-design-system/commit/be9774981032759b3284a6fb93490a204a817c7a) - fix(cards): focus outline for header needed for the overflow hidden solution with max title lines [`849a7a8`](https://github.com/eea/volto-eea-design-system/commit/849a7a8e3cf801bf0a4d7e9189b603ea15219fcc) -- fix(header): external url in header now takes you to the correct url #330 from eea/header-external-url-fix [`086c61d`](https://github.com/eea/volto-eea-design-system/commit/086c61d683a7ac67dea221aa39ffe4cef05a9a68) -- fix(item): flex variant on edit when inside blockchooser #333 from eea/fix-item-csss [`65b9099`](https://github.com/eea/volto-eea-design-system/commit/65b9099779180feeb7d10384928bb0a3224b947d) - fix: external url in header [`9e3aea6`](https://github.com/eea/volto-eea-design-system/commit/9e3aea649ca6f9446324d5d351cdfcde08332f84) - fix: check if client method change [`7c53b83`](https://github.com/eea/volto-eea-design-system/commit/7c53b83a54e4e7d3c5329c46de03cdf7aabedf13) - fix(item): use child selector instead of descendent as it interferes with blockchooser refs #157040 [`ad4ca37`](https://github.com/eea/volto-eea-design-system/commit/ad4ca3725c595c8dbeaff69f730928313c1779ec) +- fix(header): external url in header now takes you to the correct url #330 from eea/header-external-url-fix [`086c61d`](https://github.com/eea/volto-eea-design-system/commit/086c61d683a7ac67dea221aa39ffe4cef05a9a68) +- fix(item): flex variant on edit when inside blockchooser #333 from eea/fix-item-csss [`65b9099`](https://github.com/eea/volto-eea-design-system/commit/65b9099779180feeb7d10384928bb0a3224b947d) - fix(tag): fix in args [`18eaaf4`](https://github.com/eea/volto-eea-design-system/commit/18eaaf41fa80a3e175341a2ddd7376b8281fee7d) #### :nail_care: Enhancements @@ -72,12 +72,12 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - change(breadcrumbs): label modification for better screen reader output [`c967bef`](https://github.com/eea/volto-eea-design-system/commit/c967bef63ac6f622f5936235dd5590831a674d15) - refactor(checkbox): accessibility fix [`3b3047f`](https://github.com/eea/volto-eea-design-system/commit/3b3047f6a6bdd9e9ad858e6a7ca0c6f6b404e605) - change(card): simplified headerLineHeightOffset used as margin top for cards header [`ca61105`](https://github.com/eea/volto-eea-design-system/commit/ca61105f2f39e6880ce545ba4d54f3568e7b87e2) +- change(logos): updated eionet logo used in the site footer #318 from eea/footer-logo-update [`70671d0`](https://github.com/eea/volto-eea-design-system/commit/70671d03bbc228e3013e382cb51e6764a83b01a8) - refactor(megaMenu): clean up function after test [`883eb73`](https://github.com/eea/volto-eea-design-system/commit/883eb73cbc3db6a1fadd0200118eafdce91b7aab) - change(mega-menu): added code to align countries left column subtitle with the right column [`1aa33dd`](https://github.com/eea/volto-eea-design-system/commit/1aa33dd7ac7154a91515eef688f276d664d5d7f3) -- change(mega-menu): sub-title padding tweaks for better spacing normalization [`e08668d`](https://github.com/eea/volto-eea-design-system/commit/e08668dd9fd948e57628e5582e7a4a7f08d96451) -- change(logos): updated eionet logo used in the site footer #318 from eea/footer-logo-update [`70671d0`](https://github.com/eea/volto-eea-design-system/commit/70671d03bbc228e3013e382cb51e6764a83b01a8) -- change(breadcrumbs,mega-menu): better screen readers support, see links instead of groups #309 from eea/firefox-accessibility-tab-issues [`d6b0b4a`](https://github.com/eea/volto-eea-design-system/commit/d6b0b4adba8f04799491025fb41ac97e875bcce0) - change(breadcrumbs): fixed sizing of breadcrumbs list items [`1761e98`](https://github.com/eea/volto-eea-design-system/commit/1761e984a6ffebbcca0c7b88128a01235fc6b903) +- change(breadcrumbs,mega-menu): better screen readers support, see links instead of groups #309 from eea/firefox-accessibility-tab-issues [`d6b0b4a`](https://github.com/eea/volto-eea-design-system/commit/d6b0b4adba8f04799491025fb41ac97e875bcce0) +- change(mega-menu): sub-title padding tweaks for better spacing normalization [`e08668d`](https://github.com/eea/volto-eea-design-system/commit/e08668dd9fd948e57628e5582e7a4a7f08d96451) - change(checkbox): toggle hover color correction [`4f4d0df`](https://github.com/eea/volto-eea-design-system/commit/4f4d0df7292fdccb89f83feface51639bd5d6559) - change(card): add links to teaser titles [`cc64c74`](https://github.com/eea/volto-eea-design-system/commit/cc64c74a69539af287f424abdf96226635284303) - change(inpageNavigation): story improvements [`ade63c6`](https://github.com/eea/volto-eea-design-system/commit/ade63c6f0b08c62318d31c54568cca29d0f106bc) From 50e8ae539d9b03cc375db23b09e42b0cad20543e Mon Sep 17 00:00:00 2001 From: EEA Jenkins <@users.noreply.github.com> Date: Mon, 10 Apr 2023 10:06:37 +0000 Subject: [PATCH 45/45] Automated release 1.0.7 --- CHANGELOG.md | 18 +----------------- 1 file changed, 1 insertion(+), 17 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d9a93840e1..dc16b488cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file. Dates are d Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). -### [1.0.7](https://github.com/eea/volto-eea-design-system/compare/1.0.6...1.0.7) - 7 April 2023 +### [1.0.7](https://github.com/eea/volto-eea-design-system/compare/1.0.6...1.0.7) - 10 April 2023 #### :rocket: New Features @@ -226,7 +226,6 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - Release 1.0.0-beta.5 [Alin Voinea - [`e4417e1`](https://github.com/eea/volto-eea-design-system/commit/e4417e121477511c350ae3fbe4e70aadb445ed86)] - better useOnScreen hook [Andrei Grigore - [`c214b6b`](https://github.com/eea/volto-eea-design-system/commit/c214b6b76443f81c795ce2f3aa457562ec088b30)] -- Add Sonarqube tag using eea-website-frontend addons list [EEA Jenkins - [`b227cf8`](https://github.com/eea/volto-eea-design-system/commit/b227cf8a8c44b9d91e9fda8a7999fb0a42bacdca)] - feature(mobile): increased performance by lazy loading footer images #303 from eea/increase_performance [ichim-david - [`80d1df1`](https://github.com/eea/volto-eea-design-system/commit/80d1df1c459680331d486f9e8e6a95c9db0adbf6)] - prettier [David Ichim - [`a7f8384`](https://github.com/eea/volto-eea-design-system/commit/a7f838470c1bcc4e2be115d514d92a1b686a5e9b)] - fixed less build failure due to changes in footer.less [David Ichim - [`190bc8c`](https://github.com/eea/volto-eea-design-system/commit/190bc8cfa88191b45808f1e27c6e2737ee3d15b1)] @@ -297,7 +296,6 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). #### :house: Internal changes -- chore(docusaurus): ignore website/.yarn [Giorgos Stamatis - [`0b33ffd`](https://github.com/eea/volto-eea-design-system/commit/0b33ffd1dda61b126e3cc5ff48888124d6aee41b)] - style(header): react syntax fix [Antonis Tarantilis - [`3add127`](https://github.com/eea/volto-eea-design-system/commit/3add1271c785a92bea0ef925d7bc562cef1e0d92)] #### :house: Documentation changes @@ -494,7 +492,6 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - Release 1.0.0-alpha.10 [Alin Voinea - [`7014d08`](https://github.com/eea/volto-eea-design-system/commit/7014d080ce114bd0bc039abeecbd7229333b0971)] - Add variable definitions [kreafox - [`293fe65`](https://github.com/eea/volto-eea-design-system/commit/293fe65e2f24e6290e1286229169a77f9be4750e)] -- Add Sonarqube tag using advisory-board-frontend addons list [EEA Jenkins - [`ef58a6f`](https://github.com/eea/volto-eea-design-system/commit/ef58a6f5ad8deea26b1395a86778fe1159b7617b)] - Back to dev [Alin Voinea - [`31d4616`](https://github.com/eea/volto-eea-design-system/commit/31d461662b9184a7bbe190e86f3c47fab39229fe)] ### [1.0.0-alpha.9](https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.8...1.0.0-alpha.9) - 28 December 2022 @@ -552,7 +549,6 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - bump package version [David Ichim - [`b4628be`](https://github.com/eea/volto-eea-design-system/commit/b4628bed134abc76e38a243d4e98143e19cef989)] - feature(docusaurus, storybook): logos selection for sites plus inverted options #253 from eea/doc-logo-page [ichim-david - [`dbfc90d`](https://github.com/eea/volto-eea-design-system/commit/dbfc90d035dc40e9d4054347f00fde4de486d63d)] - (feat): Add ability to disable the language select from website top menu - refs #158616 [dobri1408 - [`411c8e4`](https://github.com/eea/volto-eea-design-system/commit/411c8e4afaf0b2b9edfdeeecdca22aa4cc41f329)] -- Add Sonarqube tag using advisory-board-frontend addons list [EEA Jenkins - [`c4769e9`](https://github.com/eea/volto-eea-design-system/commit/c4769e987d525f5dcafac8e6cf8a89fd8111667d)] - test(Jenkins): Run tests and cypress with latest canary @plone/volto [Alin Voinea - [`92feea0`](https://github.com/eea/volto-eea-design-system/commit/92feea09796c9ef0530f65fa1d34139905133215)] - Proof reading page header section [ichim-david - [`230239e`](https://github.com/eea/volto-eea-design-system/commit/230239e1b22734fb8606656985bc5e513731e244)] ### [1.0.0-alpha.7](https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.6...1.0.0-alpha.7) - 16 December 2022 @@ -584,7 +580,6 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). #### :hammer_and_wrench: Others - Release 1.0.0-alpha.7 [Alin Voinea - [`7e66bcc`](https://github.com/eea/volto-eea-design-system/commit/7e66bcc296b389bc55073e7f99681534977dce3a)] -- Add Sonarqube tag using cca-frontend addons list [EEA Jenkins - [`ce47e9b`](https://github.com/eea/volto-eea-design-system/commit/ce47e9b163bcb4eda988e3a87718b54ffbd3f99f)] - added back descriptionDistance variable until package release [David Ichim - [`3af811a`](https://github.com/eea/volto-eea-design-system/commit/3af811a8d86a132e16de118697ba5a4302a8a4da)] - Back to dev [Alin Voinea - [`cb531c9`](https://github.com/eea/volto-eea-design-system/commit/cb531c933c907bdbb88c9de0f1df2eb7ce899a4c)] - Proper paths if the package is not installed, but in development [Tiberiu Ichim - [`7a2655f`](https://github.com/eea/volto-eea-design-system/commit/7a2655f7cf9d3c687f172eefcf2b4cff4b12f832)] @@ -672,7 +667,6 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). #### :hammer_and_wrench: Others - feature(Docusaurus): Updates on color palette information including thematic websites #231 from eea/refactor-docusaurus [ichim-david - [`ec7843d`](https://github.com/eea/volto-eea-design-system/commit/ec7843dea07f626dc1c71ae1baa8bb5b0caa52f3)] -- Upgrade Jenkinsfile storybook to yarn 3 [Alin Voinea - [`d20de8d`](https://github.com/eea/volto-eea-design-system/commit/d20de8d6e21a14660b7b5125a80218a8a6f19e62)] - Back to dev [Alin Voinea - [`563fbc5`](https://github.com/eea/volto-eea-design-system/commit/563fbc5fac0d4b0295690d0a3a4e04271753f18a)] - perf(docusaurus): added remixicon and roboto locally [Giorgos Stamatis - [`b67b1a7`](https://github.com/eea/volto-eea-design-system/commit/b67b1a72bc9cdc7c62a25967e81b430f8b62d558)] ### [1.0.0-alpha.4](https://github.com/eea/volto-eea-design-system/compare/1.0.0-alpha.3...1.0.0-alpha.4) - 22 November 2022 @@ -765,7 +759,6 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - modified left value of full width classes with toolbars [David Ichim - [`70d82d4`](https://github.com/eea/volto-eea-design-system/commit/70d82d47fbc2c00a3a709de0d5c087c8443a1eae)] - WIP settings column grid width when using full size class [David Ichim - [`affc7ac`](https://github.com/eea/volto-eea-design-system/commit/affc7ac99527aa92d5a192d90dc8c9ec46a66404)] - fix eslint [Miu Razvan - [`30c52e4`](https://github.com/eea/volto-eea-design-system/commit/30c52e4eb443555ca44c1b35df064e73d52c0a8b)] -- Add Sonarqube tag using circularity-frontend addons list [EEA Jenkins - [`76a41c7`](https://github.com/eea/volto-eea-design-system/commit/76a41c786995fd54afe4d1c345de939f683ffa70)] - fix broken variable call for contentBox.variables introduced in previous commit by mistake [David Ichim - [`d249c11`](https://github.com/eea/volto-eea-design-system/commit/d249c1160d19bedb174a2fde3fdab48d9ce297d4)] - clean up [Miu Razvan - [`89f3cb3`](https://github.com/eea/volto-eea-design-system/commit/89f3cb33d70a14806a953f0acd1807e94169ee5c)] - Feature(container): flexible container size #260 from eea/feature-flexible-container [ichim-david - [`8f84c5b`](https://github.com/eea/volto-eea-design-system/commit/8f84c5b67afe9cbe01b2a44a8f92a9a554e1036a)] @@ -867,7 +860,6 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). #### :nail_care: Enhancements -- change(jenkins): added yarn policy for storybook building [ichim-david - [`3d1b844`](https://github.com/eea/volto-eea-design-system/commit/3d1b844efeea40b99c00c9aa97089e0a0be58a57)] - change(docusaurus): typography updates [ichim-david - [`60a93a4`](https://github.com/eea/volto-eea-design-system/commit/60a93a4aece4e478ae13c2dfe697fd3703aa178a)] - change(accordion): allow customization of accordion title with css variables [David Ichim - [`15e7d27`](https://github.com/eea/volto-eea-design-system/commit/15e7d27f02c640df582f51a51ef36e645723f842)] - change(content-box): added css variables that will set text color and background for children [David Ichim - [`86cac53`](https://github.com/eea/volto-eea-design-system/commit/86cac531cc94386b6022e1be80dba826b39f2443)] @@ -902,7 +894,6 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). #### :hammer_and_wrench: Others - Merge pull request #243 from eea/develop [ichim-david - [`576564c`](https://github.com/eea/volto-eea-design-system/commit/576564ce395ee6ac9e74bcb19d5c4f0b4cd3c33b)] -- Add Sonarqube tag using eea-website-frontend addons list [EEA Jenkins - [`4a5be6e`](https://github.com/eea/volto-eea-design-system/commit/4a5be6eec78dae230626e61ea2c77e7f3c62510d)] - Back to dev [Alin Voinea - [`b251255`](https://github.com/eea/volto-eea-design-system/commit/b251255a7ed14d8290717726d86eaf54b87aa2d4)] ### [0.9.0](https://github.com/eea/volto-eea-design-system/compare/0.8.1...0.9.0) - 19 September 2022 @@ -1658,10 +1649,6 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). #### :hammer_and_wrench: Others - prettier changes [David Ichim - [`134da52`](https://github.com/eea/volto-eea-design-system/commit/134da52549b9d5eac5a12b7ad3005073500ac2c4)] -- [JENKINSFILE] remove debug, add error per stage [valentinab25 - [`903eecd`](https://github.com/eea/volto-eea-design-system/commit/903eecdb6bcbb8d73cff5e447d80c85e2a2c906d)] -- [JENKINSFILE] mention comment author in comment [valentinab25 - [`39a26aa`](https://github.com/eea/volto-eea-design-system/commit/39a26aa1ff0f35e93e8df9f442c29c5ab79ff493)] -- [JENKINSFILE] format PR comments [valentinab25 - [`739438c`](https://github.com/eea/volto-eea-design-system/commit/739438c64950c745d630d1998314a2bed595b23a)] -- [JENKINSFILE] Add failure comment, no jenkins fail [valentinab25 - [`c325bf1`](https://github.com/eea/volto-eea-design-system/commit/c325bf14f3fb0da150f2a56cda0a9f03d8d8a628)] ### [0.2.3](https://github.com/eea/volto-eea-design-system/compare/0.2.2...0.2.3) - 29 April 2022 #### :rocket: New Features @@ -2086,7 +2073,6 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - set profile section overflow to auto [nileshgulia1 - [`71ab47f`](https://github.com/eea/volto-eea-design-system/commit/71ab47f89a433233c14b394c3824e607dd18a393)] - remove segment custom width [nileshgulia1 - [`1d3ea40`](https://github.com/eea/volto-eea-design-system/commit/1d3ea40f98bbdc1eab95b4da739a659b5e29ec16)] - fix profile section css overflow [nileshgulia1 - [`db5126f`](https://github.com/eea/volto-eea-design-system/commit/db5126fc902e191d1e18fb7e4c54877c8d8786e6)] -- Add Sonarqube tag using eea-website-frontend addons list [EEA Jenkins - [`647a6e3`](https://github.com/eea/volto-eea-design-system/commit/647a6e3e2093f2c4884c356eb148453551c8f33f)] - fix warning related to proptype [nileshgulia1 - [`946c6c6`](https://github.com/eea/volto-eea-design-system/commit/946c6c6bc9dece0985ae4b9f9cad6ece2be0ff2c)] - removed override already present in card.less [ichim-david - [`50d2ab2`](https://github.com/eea/volto-eea-design-system/commit/50d2ab26f85c8f409da02ec128cc1df34848ca69)] - update [Miu Razvan - [`bbcab87`](https://github.com/eea/volto-eea-design-system/commit/bbcab87ef4c8475f347f0daf4ab7e428e69c2316)] @@ -2173,7 +2159,6 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - remove segment custom width [nileshgulia1 - [`4a60d84`](https://github.com/eea/volto-eea-design-system/commit/4a60d84d5fe76578b7760aa1dad6eef9a20916a7)] - Reformat header.less [Tiberiu Ichim - [`1f99dfc`](https://github.com/eea/volto-eea-design-system/commit/1f99dfc82c165304ca5600ce5138c1233615ab69)] - fix profile section css overflow [nileshgulia1 - [`8fd2654`](https://github.com/eea/volto-eea-design-system/commit/8fd265413149f1b5e033dffa0fbcb5ef5ecad15f)] -- Add Sonarqube tag using eea-website-frontend addons list [EEA Jenkins - [`6051724`](https://github.com/eea/volto-eea-design-system/commit/6051724437a38675e659c797bb5586ef81286ec0)] - fix warning related to proptype [nileshgulia1 - [`824b9be`](https://github.com/eea/volto-eea-design-system/commit/824b9beff77aae139882cd50a1d670a02ec6f723)] - refactor breadcrumbs component, make it functional and customizable [nileshgulia1 - [`4ec374e`](https://github.com/eea/volto-eea-design-system/commit/4ec374e20565eb0a5aed0ff67a02cd6f77eba1f0)] - removed override already present in card.less [ichim-david - [`93c4e5a`](https://github.com/eea/volto-eea-design-system/commit/93c4e5aac9cc85ff2cc6c04180f6655d5f5616dc)] @@ -2742,7 +2727,6 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - Refs #142010 - Optimize Volto-addons gitflow pipelines [valentinab25 - [`3af46d2`](https://github.com/eea/volto-eea-design-system/commit/3af46d2b14fa0b1ef44736f25b0f9ac93b23d18d)] - Refs #140454 updated eea-design-system readme with extra info on package contents [David Ichim - [`d2efc3d`](https://github.com/eea/volto-eea-design-system/commit/d2efc3ddae7b91efc82cf3bce8fb8e42d696a780)] - Refs #140454 add h1 to the list of elements that are max 800px and centered [David Ichim - [`7d3c30f`](https://github.com/eea/volto-eea-design-system/commit/7d3c30f409aa4cb43810839f8960589456cc1b2e)] -- Add Sonarqube tag using ims-frontend addons list [EEA Jenkins - [`8d657d0`](https://github.com/eea/volto-eea-design-system/commit/8d657d056cde5163cfe90ac66bc973f55d82e5e9)] ### [0.1.0](https://github.com/eea/volto-eea-design-system/compare/0.0.1...0.1.0) - 17 November 2021 #### :hammer_and_wrench: Others

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